📄 amd74xx.c
字号:
/* * linux/drivers/ide/amd74xx.c Version 0.05 June 9, 2000 * * Copyright (C) 1999-2000 Andre Hedrick <andre@linux-ide.org> * May be copied or modified under the terms of the GNU General Public License * * Documentation * Publically available from AMD * * Errata * AMD 756: Errata #1 * Single word DMA is not supported by old AMD IDE devices * * AMD 766: Errata #15 * IDE may hang if prefetch is enabled. The BIOS does not enable * prefetch. * * AMD 766: Errata #19 * Poor UDMA100 performance * * AMD 761: Errata #55 * AMD 762: Errata #56 * A problem exists with IDE prefetch and the last page before the * 640K boundary. Users hitting this problem can add a PS/2 mouse * to the system, causing that page to become an EBDA page and not * used by the OS. A full work around is under investigation. * BIOS updates should also avoid this. */#include <linux/config.h>#include <linux/module.h>#include <linux/types.h>#include <linux/kernel.h>#include <linux/delay.h>#include <linux/timer.h>#include <linux/mm.h>#include <linux/ioport.h>#include <linux/blkdev.h>#include <linux/hdreg.h>#include <linux/interrupt.h>#include <linux/init.h>#include <linux/pci.h>#include <linux/ide.h>#include <asm/io.h>#include <asm/irq.h>#include "ide_modes.h"#include "amd74xx.h"#if defined(DISPLAY_VIPER_TIMINGS) && defined(CONFIG_PROC_FS)#include <linux/stat.h>#include <linux/proc_fs.h>static u8 amd74xx_proc = 0;static struct pci_dev *bmide_dev;static int amd74xx_get_info (char *buffer, char **addr, off_t offset, int count){ char *p = buffer; u32 bibma = pci_resource_start(bmide_dev, 4); u8 c0 = 0, c1 = 0; /* * at that point bibma+0x2 et bibma+0xa are byte registers * to investigate: */ c0 = inb((unsigned short)bibma + 0x02); c1 = inb((unsigned short)bibma + 0x0a); p += sprintf(p, "\n " "AMD %04X VIPER Chipset.\n", bmide_dev->device); p += sprintf(p, "--------------- Primary Channel " "---------------- Secondary Channel " "-------------\n"); p += sprintf(p, " %sabled " " %sabled\n", (c0&0x80) ? "dis" : " en", (c1&0x80) ? "dis" : " en"); p += sprintf(p, "--------------- drive0 --------- drive1 " "-------- drive0 ---------- drive1 ------\n"); p += sprintf(p, "DMA enabled: %s %s " " %s %s\n", (c0&0x20) ? "yes" : "no ", (c0&0x40) ? "yes" : "no ", (c1&0x20) ? "yes" : "no ", (c1&0x40) ? "yes" : "no " ); p += sprintf(p, "UDMA\n"); p += sprintf(p, "DMA\n"); p += sprintf(p, "PIO\n"); return p-buffer; /* => must be less than 4k! */}#endif /* defined(DISPLAY_VIPER_TIMINGS) && defined(CONFIG_PROC_FS) */static int amd74xx_mode5_check (struct pci_dev *dev){ switch(dev->device) { case PCI_DEVICE_ID_AMD_VIPER_7411: case PCI_DEVICE_ID_AMD_VIPER_7441: case PCI_DEVICE_ID_AMD_8111_IDE: return 1; default: return 0; }}static unsigned int amd74xx_swdma_check (struct pci_dev *dev){ unsigned int class_rev; if (amd74xx_mode5_check(dev)) return 1; pci_read_config_dword(dev, PCI_CLASS_REVISION, &class_rev); class_rev &= 0xff; return ((int) (class_rev >= 7) ? 1 : 0);}static u8 amd74xx_ratemask (ide_drive_t *drive){ u8 mode; switch(HWIF(drive)->pci_dev->device) { case PCI_DEVICE_ID_AMD_8111_IDE: case PCI_DEVICE_ID_AMD_VIPER_7441: case PCI_DEVICE_ID_AMD_VIPER_7411: mode = 3; break; case PCI_DEVICE_ID_AMD_VIPER_7409: mode = 2; break; case PCI_DEVICE_ID_AMD_COBRA_7401: return 1; default: return 0; } if (!eighty_ninty_three(drive)) mode = min(mode, (u8)1); return mode;}/* * Here is where all the hard work goes to program the chipset. */static int amd74xx_tune_chipset (ide_drive_t *drive, u8 xferspeed){ u8 drive_pci[] = { 0x53, 0x52, 0x51, 0x50 }; u8 drive_pci2[] = { 0x4b, 0x4a, 0x49, 0x48 };#if 0 u8 ultra_rate[] = { 0x42, 0x41, 0x40, 0x44, 0x45, 0x46 }; u8 mwdma_rate[] = { 0x77, 0x21, 0x20 }; u8 swdma_rate[] = { 0xA8, 0x65, 0x42 }; u8 pio_rate[] = { 0xA8, 0x65, 0x42, 0x22, 0x20};#endif ide_hwif_t *hwif = HWIF(drive); struct pci_dev *dev = hwif->pci_dev; u8 speed = ide_rate_filter(amd74xx_ratemask(drive), xferspeed); u8 ultra_timing = 0, dma_pio_timing = 0, pio_timing = 0; pci_read_config_byte(dev, drive_pci[drive->dn], &ultra_timing); pci_read_config_byte(dev, drive_pci2[drive->dn], &dma_pio_timing); pci_read_config_byte(dev, 0x4c, &pio_timing); ultra_timing &= ~0xC7; dma_pio_timing &= ~0xFF; pio_timing &= ~(0x03 << drive->dn); switch(speed) { case XFER_UDMA_7: case XFER_UDMA_6: speed = XFER_UDMA_5; case XFER_UDMA_5: ultra_timing |= 0x46; dma_pio_timing |= 0x20; break; case XFER_UDMA_4: ultra_timing |= 0x45; dma_pio_timing |= 0x20; break; case XFER_UDMA_3: ultra_timing |= 0x44; dma_pio_timing |= 0x20; break; case XFER_UDMA_2: ultra_timing |= 0x40; dma_pio_timing |= 0x20; break; case XFER_UDMA_1: ultra_timing |= 0x41; dma_pio_timing |= 0x20; break; case XFER_UDMA_0: ultra_timing |= 0x42; dma_pio_timing |= 0x20; break; case XFER_MW_DMA_2: dma_pio_timing |= 0x20; break; case XFER_MW_DMA_1: dma_pio_timing |= 0x21; break; case XFER_MW_DMA_0: dma_pio_timing |= 0x77; break; case XFER_SW_DMA_2: dma_pio_timing |= 0x42; break; case XFER_SW_DMA_1: dma_pio_timing |= 0x65; break; case XFER_SW_DMA_0: dma_pio_timing |= 0xA8; break; case XFER_PIO_4: dma_pio_timing |= 0x20; break; case XFER_PIO_3: dma_pio_timing |= 0x22; break; case XFER_PIO_2: dma_pio_timing |= 0x42; break; case XFER_PIO_1: dma_pio_timing |= 0x65; break; case XFER_PIO_0: default: dma_pio_timing |= 0xA8; break; } pio_timing |= (0x03 << drive->dn); pci_write_config_byte(dev, drive_pci[drive->dn], ultra_timing); pci_write_config_byte(dev, drive_pci2[drive->dn], dma_pio_timing); pci_write_config_byte(dev, 0x4c, pio_timing); return (ide_config_drive_speed(drive, speed));}static void amd74xx_tune_drive (ide_drive_t *drive, u8 pio){ pio = ide_get_best_pio_mode(drive, pio, 5, NULL); (void) amd74xx_tune_chipset(drive, (XFER_PIO_0 + pio));}/* * This allows the configuration of ide_pci chipset registers * for cards that learn about the drive's UDMA, DMA, PIO capabilities * after the drive is reported by the OS. */static int config_chipset_for_dma (ide_drive_t *drive){ u8 speed = ide_dma_speed(drive, amd74xx_ratemask(drive)); if (!(speed)) return 0; (void) amd74xx_tune_chipset(drive, speed); return ide_dma_enable(drive);}static int amd74xx_config_drive_xfer_rate (ide_drive_t *drive){ ide_hwif_t *hwif = HWIF(drive); struct hd_driveid *id = drive->id; drive->init_speed = 0; if (id && (id->capability & 1) && drive->autodma) { /* Consult the list of known "bad" drives */ if (hwif->ide_dma_bad_drive(drive)) goto fast_ata_pio; if (id->field_valid & 4) { if (id->dma_ultra & hwif->ultra_mask) { /* Force if Capable UltraDMA */ int dma = config_chipset_for_dma(drive); if ((id->field_valid & 2) && dma) goto try_dma_modes; } } else if (id->field_valid & 2) {try_dma_modes: if ((id->dma_mword & hwif->mwdma_mask) || (id->dma_1word & hwif->swdma_mask)) { /* Force if Capable regular DMA modes */ if (!config_chipset_for_dma(drive)) goto no_dma_set; } } else if (hwif->ide_dma_good_drive(drive) && (id->eide_dma_time < 150)) { /* Consult the list of known "good" drives */ if (!config_chipset_for_dma(drive)) goto no_dma_set; } else { goto fast_ata_pio; } } else if ((id->capability & 8) || (id->field_valid & 2)) {fast_ata_pio:no_dma_set: amd74xx_tune_drive(drive, 5); return hwif->ide_dma_off_quietly(drive); } return hwif->ide_dma_on(drive);}static unsigned int __init init_chipset_amd74xx (struct pci_dev *dev, const char *name){ if (!amd74xx_swdma_check(dev)) printk("%s: disabling single-word DMA support (revision < C4)\n", name);#if defined(DISPLAY_VIPER_TIMINGS) && defined(CONFIG_PROC_FS) if (!amd74xx_proc) { amd74xx_proc = 1; bmide_dev = dev; ide_pci_register_host_proc(&amd74xx_procs[0]); }#endif /* DISPLAY_VIPER_TIMINGS && CONFIG_PROC_FS */ return 0;}static unsigned int __init ata66_amd74xx (ide_hwif_t *hwif){ struct pci_dev *dev = hwif->pci_dev; u8 cable_80_pin[2] = { 0, 0 }; u8 ata66 = 0; u8 tmpbyte; /* * Ultra66 cable detection (from Host View) * 7411, 7441, 0x42, bit0: primary, bit2: secondary 80 pin */ pci_read_config_byte(dev, 0x42, &tmpbyte); /* * 0x42, bit0 is 1 => primary channel * has 80-pin (from host view) */ if (tmpbyte & 0x01) cable_80_pin[0] = 1; /* * 0x42, bit2 is 1 => secondary channel * has 80-pin (from host view) */ if (tmpbyte & 0x04) cable_80_pin[1] = 1; switch(dev->device) { case PCI_DEVICE_ID_AMD_COBRA_7401: cable_80_pin[hwif->channel] = 0; return 0; case PCI_DEVICE_ID_AMD_8111_IDE: case PCI_DEVICE_ID_AMD_VIPER_7441: case PCI_DEVICE_ID_AMD_VIPER_7411: ata66 = (hwif->channel) ? cable_80_pin[1] : cable_80_pin[0]; default: break; } return (unsigned int) ata66;}static void __init init_hwif_amd74xx (ide_hwif_t *hwif){ hwif->autodma = 0; hwif->tuneproc = &amd74xx_tune_drive; hwif->speedproc = &amd74xx_tune_chipset; if (!hwif->dma_base) { hwif->drives[0].autotune = 1; hwif->drives[1].autotune = 1; return; } hwif->atapi_dma = 1; hwif->ultra_mask = 0x3f; hwif->mwdma_mask = 0x07; if (amd74xx_swdma_check(hwif->pci_dev)) hwif->swdma_mask = 0x07; if (!(hwif->udma_four)) hwif->udma_four = ata66_amd74xx(hwif); hwif->ide_dma_check = &amd74xx_config_drive_xfer_rate; if (!noautodma) hwif->autodma = 1; hwif->drives[0].autodma = hwif->autodma; hwif->drives[1].autodma = hwif->autodma;}static void __init init_dma_amd74xx (ide_hwif_t *hwif, unsigned long dmabase){ if (!(hwif->channel)) hwif->OUTB(hwif->INB(dmabase+2) & 0x60, dmabase+2); ide_setup_dma(hwif, dmabase, 8);}extern void ide_setup_pci_device(struct pci_dev *, ide_pci_device_t *);static int __devinit amd74xx_init_one(struct pci_dev *dev, const struct pci_device_id *id){ ide_pci_device_t *d = &amd74xx_chipsets[id->driver_data]; if (dev->device != d->device) BUG(); ide_setup_pci_device(dev, d); MOD_INC_USE_COUNT; return 0;}static struct pci_device_id amd74xx_pci_tbl[] __devinitdata = { { PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_COBRA_7401, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, { PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_VIPER_7409, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 1}, { PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_VIPER_7411, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 2}, { PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_OPUS_7441, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 3}, { PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_8111_IDE, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 4}, { 0, },};static struct pci_driver driver = { .name = "AMD IDE", .id_table = amd74xx_pci_tbl, .probe = amd74xx_init_one,};static int amd74xx_ide_init(void){ return ide_pci_register_driver(&driver);}static void amd74xx_ide_exit(void){ ide_pci_unregister_driver(&driver);}module_init(amd74xx_ide_init);module_exit(amd74xx_ide_exit);MODULE_AUTHOR("Andre Hedrick");MODULE_DESCRIPTION("PCI driver module for AMD IDE");MODULE_LICENSE("GPL");EXPORT_NO_SYMBOLS;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -