Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * Copyright (C) 2003 ATI Inc. <hyu@ati.com> |
Bartlomiej Zolnierkiewicz | 485efc6 | 2007-07-20 01:11:54 +0200 | [diff] [blame] | 3 | * Copyright (C) 2004,2007 Bartlomiej Zolnierkiewicz |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | */ |
| 5 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | #include <linux/types.h> |
| 7 | #include <linux/module.h> |
| 8 | #include <linux/kernel.h> |
| 9 | #include <linux/ioport.h> |
| 10 | #include <linux/pci.h> |
| 11 | #include <linux/hdreg.h> |
| 12 | #include <linux/ide.h> |
| 13 | #include <linux/delay.h> |
| 14 | #include <linux/init.h> |
| 15 | |
| 16 | #include <asm/io.h> |
| 17 | |
| 18 | #define ATIIXP_IDE_PIO_TIMING 0x40 |
| 19 | #define ATIIXP_IDE_MDMA_TIMING 0x44 |
| 20 | #define ATIIXP_IDE_PIO_CONTROL 0x48 |
| 21 | #define ATIIXP_IDE_PIO_MODE 0x4a |
| 22 | #define ATIIXP_IDE_UDMA_CONTROL 0x54 |
| 23 | #define ATIIXP_IDE_UDMA_MODE 0x56 |
| 24 | |
| 25 | typedef struct { |
| 26 | u8 command_width; |
| 27 | u8 recover_width; |
| 28 | } atiixp_ide_timing; |
| 29 | |
| 30 | static atiixp_ide_timing pio_timing[] = { |
| 31 | { 0x05, 0x0d }, |
| 32 | { 0x04, 0x07 }, |
| 33 | { 0x03, 0x04 }, |
| 34 | { 0x02, 0x02 }, |
| 35 | { 0x02, 0x00 }, |
| 36 | }; |
| 37 | |
| 38 | static atiixp_ide_timing mdma_timing[] = { |
| 39 | { 0x07, 0x07 }, |
| 40 | { 0x02, 0x01 }, |
| 41 | { 0x02, 0x00 }, |
| 42 | }; |
| 43 | |
Alan | 6c5f8cc | 2007-01-05 16:36:27 -0800 | [diff] [blame] | 44 | static DEFINE_SPINLOCK(atiixp_lock); |
| 45 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | /** |
Bartlomiej Zolnierkiewicz | 88b2b32 | 2007-10-13 17:47:51 +0200 | [diff] [blame] | 47 | * atiixp_set_pio_mode - set host controller for PIO mode |
| 48 | * @drive: drive |
| 49 | * @pio: PIO mode number |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | * |
| 51 | * Set the interface PIO mode. |
| 52 | */ |
| 53 | |
Bartlomiej Zolnierkiewicz | 88b2b32 | 2007-10-13 17:47:51 +0200 | [diff] [blame] | 54 | static void atiixp_set_pio_mode(ide_drive_t *drive, const u8 pio) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | { |
Bartlomiej Zolnierkiewicz | 3650165 | 2008-02-01 23:09:31 +0100 | [diff] [blame] | 56 | struct pci_dev *dev = to_pci_dev(drive->hwif->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | unsigned long flags; |
| 58 | int timing_shift = (drive->dn & 2) ? 16 : 0 + (drive->dn & 1) ? 0 : 8; |
| 59 | u32 pio_timing_data; |
| 60 | u16 pio_mode_data; |
| 61 | |
Alan | 6c5f8cc | 2007-01-05 16:36:27 -0800 | [diff] [blame] | 62 | spin_lock_irqsave(&atiixp_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | |
| 64 | pci_read_config_word(dev, ATIIXP_IDE_PIO_MODE, &pio_mode_data); |
| 65 | pio_mode_data &= ~(0x07 << (drive->dn * 4)); |
| 66 | pio_mode_data |= (pio << (drive->dn * 4)); |
| 67 | pci_write_config_word(dev, ATIIXP_IDE_PIO_MODE, pio_mode_data); |
| 68 | |
| 69 | pci_read_config_dword(dev, ATIIXP_IDE_PIO_TIMING, &pio_timing_data); |
| 70 | pio_timing_data &= ~(0xff << timing_shift); |
| 71 | pio_timing_data |= (pio_timing[pio].recover_width << timing_shift) | |
| 72 | (pio_timing[pio].command_width << (timing_shift + 4)); |
| 73 | pci_write_config_dword(dev, ATIIXP_IDE_PIO_TIMING, pio_timing_data); |
| 74 | |
Alan | 6c5f8cc | 2007-01-05 16:36:27 -0800 | [diff] [blame] | 75 | spin_unlock_irqrestore(&atiixp_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | } |
| 77 | |
| 78 | /** |
Bartlomiej Zolnierkiewicz | 88b2b32 | 2007-10-13 17:47:51 +0200 | [diff] [blame] | 79 | * atiixp_set_dma_mode - set host controller for DMA mode |
| 80 | * @drive: drive |
| 81 | * @speed: DMA mode |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | * |
Bartlomiej Zolnierkiewicz | 88b2b32 | 2007-10-13 17:47:51 +0200 | [diff] [blame] | 83 | * Set a ATIIXP host controller to the desired DMA mode. This involves |
| 84 | * programming the right timing data into the PCI configuration space. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | */ |
| 86 | |
Bartlomiej Zolnierkiewicz | 88b2b32 | 2007-10-13 17:47:51 +0200 | [diff] [blame] | 87 | static void atiixp_set_dma_mode(ide_drive_t *drive, const u8 speed) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | { |
Bartlomiej Zolnierkiewicz | 3650165 | 2008-02-01 23:09:31 +0100 | [diff] [blame] | 89 | struct pci_dev *dev = to_pci_dev(drive->hwif->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | unsigned long flags; |
| 91 | int timing_shift = (drive->dn & 2) ? 16 : 0 + (drive->dn & 1) ? 0 : 8; |
| 92 | u32 tmp32; |
| 93 | u16 tmp16; |
Bartlomiej Zolnierkiewicz | 8ae60e3 | 2008-01-26 20:13:02 +0100 | [diff] [blame] | 94 | u16 udma_ctl = 0; |
Bartlomiej Zolnierkiewicz | 94c7fa0 | 2007-10-16 22:29:53 +0200 | [diff] [blame] | 95 | |
Alan | 6c5f8cc | 2007-01-05 16:36:27 -0800 | [diff] [blame] | 96 | spin_lock_irqsave(&atiixp_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | |
Bartlomiej Zolnierkiewicz | 8ae60e3 | 2008-01-26 20:13:02 +0100 | [diff] [blame] | 98 | pci_read_config_word(dev, ATIIXP_IDE_UDMA_CONTROL, &udma_ctl); |
| 99 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | if (speed >= XFER_UDMA_0) { |
| 101 | pci_read_config_word(dev, ATIIXP_IDE_UDMA_MODE, &tmp16); |
| 102 | tmp16 &= ~(0x07 << (drive->dn * 4)); |
| 103 | tmp16 |= ((speed & 0x07) << (drive->dn * 4)); |
| 104 | pci_write_config_word(dev, ATIIXP_IDE_UDMA_MODE, tmp16); |
Bartlomiej Zolnierkiewicz | 8ae60e3 | 2008-01-26 20:13:02 +0100 | [diff] [blame] | 105 | |
| 106 | udma_ctl |= (1 << drive->dn); |
| 107 | } else if (speed >= XFER_MW_DMA_0) { |
| 108 | u8 i = speed & 0x03; |
| 109 | |
| 110 | pci_read_config_dword(dev, ATIIXP_IDE_MDMA_TIMING, &tmp32); |
| 111 | tmp32 &= ~(0xff << timing_shift); |
| 112 | tmp32 |= (mdma_timing[i].recover_width << timing_shift) | |
| 113 | (mdma_timing[i].command_width << (timing_shift + 4)); |
| 114 | pci_write_config_dword(dev, ATIIXP_IDE_MDMA_TIMING, tmp32); |
| 115 | |
| 116 | udma_ctl &= ~(1 << drive->dn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | } |
| 118 | |
Bartlomiej Zolnierkiewicz | 8ae60e3 | 2008-01-26 20:13:02 +0100 | [diff] [blame] | 119 | pci_write_config_word(dev, ATIIXP_IDE_UDMA_CONTROL, udma_ctl); |
| 120 | |
Alan | 6c5f8cc | 2007-01-05 16:36:27 -0800 | [diff] [blame] | 121 | spin_unlock_irqrestore(&atiixp_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | } |
| 123 | |
Bartlomiej Zolnierkiewicz | b4d1c73 | 2008-02-02 19:56:29 +0100 | [diff] [blame^] | 124 | static u8 __devinit atiixp_cable_detect(ide_hwif_t *hwif) |
| 125 | { |
| 126 | struct pci_dev *pdev = to_pci_dev(hwif->dev); |
| 127 | u8 udma_mode = 0, ch = hwif->channel; |
| 128 | |
| 129 | pci_read_config_byte(pdev, ATIIXP_IDE_UDMA_MODE + ch, &udma_mode); |
| 130 | |
| 131 | if ((udma_mode & 0x07) >= 0x04 || (udma_mode & 0x70) >= 0x40) |
| 132 | return ATA_CBL_PATA80; |
| 133 | else |
| 134 | return ATA_CBL_PATA40; |
| 135 | } |
| 136 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | * init_hwif_atiixp - fill in the hwif for the ATIIXP |
| 139 | * @hwif: IDE interface |
| 140 | * |
| 141 | * Set up the ide_hwif_t for the ATIIXP interface according to the |
| 142 | * capabilities of the hardware. |
| 143 | */ |
| 144 | |
| 145 | static void __devinit init_hwif_atiixp(ide_hwif_t *hwif) |
| 146 | { |
Bartlomiej Zolnierkiewicz | 26bcb87 | 2007-10-11 23:54:00 +0200 | [diff] [blame] | 147 | hwif->set_pio_mode = &atiixp_set_pio_mode; |
Bartlomiej Zolnierkiewicz | 88b2b32 | 2007-10-13 17:47:51 +0200 | [diff] [blame] | 148 | hwif->set_dma_mode = &atiixp_set_dma_mode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | |
| 150 | if (!hwif->dma_base) |
| 151 | return; |
| 152 | |
Bartlomiej Zolnierkiewicz | b4d1c73 | 2008-02-02 19:56:29 +0100 | [diff] [blame^] | 153 | if (hwif->cbl != ATA_CBL_PATA40_SHORT) |
| 154 | hwif->cbl = atiixp_cable_detect(hwif); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | } |
| 156 | |
Bartlomiej Zolnierkiewicz | 8562043 | 2007-10-20 00:32:34 +0200 | [diff] [blame] | 157 | static const struct ide_port_info atiixp_pci_info[] __devinitdata = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | { /* 0 */ |
| 159 | .name = "ATIIXP", |
| 160 | .init_hwif = init_hwif_atiixp, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | .enablebits = {{0x48,0x01,0x00}, {0x48,0x08,0x00}}, |
Bartlomiej Zolnierkiewicz | 3985ee3 | 2007-10-19 00:30:11 +0200 | [diff] [blame] | 162 | .host_flags = IDE_HFLAG_LEGACY_IRQS | IDE_HFLAG_BOOTABLE, |
Bartlomiej Zolnierkiewicz | 4099d14 | 2007-07-20 01:11:59 +0200 | [diff] [blame] | 163 | .pio_mask = ATA_PIO4, |
Bartlomiej Zolnierkiewicz | 5f8b6c3 | 2007-10-19 00:30:07 +0200 | [diff] [blame] | 164 | .mwdma_mask = ATA_MWDMA2, |
| 165 | .udma_mask = ATA_UDMA5, |
Conke Hu | b25168d | 2007-01-27 13:46:30 +0100 | [diff] [blame] | 166 | },{ /* 1 */ |
| 167 | .name = "SB600_PATA", |
| 168 | .init_hwif = init_hwif_atiixp, |
Conke Hu | b25168d | 2007-01-27 13:46:30 +0100 | [diff] [blame] | 169 | .enablebits = {{0x48,0x01,0x00}, {0x00,0x00,0x00}}, |
Bartlomiej Zolnierkiewicz | 3985ee3 | 2007-10-19 00:30:11 +0200 | [diff] [blame] | 170 | .host_flags = IDE_HFLAG_SINGLE | IDE_HFLAG_LEGACY_IRQS | |
| 171 | IDE_HFLAG_BOOTABLE, |
Bartlomiej Zolnierkiewicz | 4099d14 | 2007-07-20 01:11:59 +0200 | [diff] [blame] | 172 | .pio_mask = ATA_PIO4, |
Bartlomiej Zolnierkiewicz | 5f8b6c3 | 2007-10-19 00:30:07 +0200 | [diff] [blame] | 173 | .mwdma_mask = ATA_MWDMA2, |
| 174 | .udma_mask = ATA_UDMA5, |
Conke Hu | b25168d | 2007-01-27 13:46:30 +0100 | [diff] [blame] | 175 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | }; |
| 177 | |
| 178 | /** |
| 179 | * atiixp_init_one - called when a ATIIXP is found |
| 180 | * @dev: the atiixp device |
| 181 | * @id: the matching pci id |
| 182 | * |
| 183 | * Called when the PCI registration layer (or the IDE initialization) |
| 184 | * finds a device matching our IDE device tables. |
| 185 | */ |
| 186 | |
| 187 | static int __devinit atiixp_init_one(struct pci_dev *dev, const struct pci_device_id *id) |
| 188 | { |
| 189 | return ide_setup_pci_device(dev, &atiixp_pci_info[id->driver_data]); |
| 190 | } |
| 191 | |
Bartlomiej Zolnierkiewicz | 9cbcc5e | 2007-10-16 22:29:56 +0200 | [diff] [blame] | 192 | static const struct pci_device_id atiixp_pci_tbl[] = { |
| 193 | { PCI_VDEVICE(ATI, PCI_DEVICE_ID_ATI_IXP200_IDE), 0 }, |
| 194 | { PCI_VDEVICE(ATI, PCI_DEVICE_ID_ATI_IXP300_IDE), 0 }, |
| 195 | { PCI_VDEVICE(ATI, PCI_DEVICE_ID_ATI_IXP400_IDE), 0 }, |
| 196 | { PCI_VDEVICE(ATI, PCI_DEVICE_ID_ATI_IXP600_IDE), 1 }, |
| 197 | { PCI_VDEVICE(ATI, PCI_DEVICE_ID_ATI_IXP700_IDE), 0 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | { 0, }, |
| 199 | }; |
| 200 | MODULE_DEVICE_TABLE(pci, atiixp_pci_tbl); |
| 201 | |
| 202 | static struct pci_driver driver = { |
| 203 | .name = "ATIIXP_IDE", |
| 204 | .id_table = atiixp_pci_tbl, |
| 205 | .probe = atiixp_init_one, |
| 206 | }; |
| 207 | |
Bartlomiej Zolnierkiewicz | 82ab1ee | 2007-01-27 13:46:56 +0100 | [diff] [blame] | 208 | static int __init atiixp_ide_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | { |
| 210 | return ide_pci_register_driver(&driver); |
| 211 | } |
| 212 | |
| 213 | module_init(atiixp_ide_init); |
| 214 | |
| 215 | MODULE_AUTHOR("HUI YU"); |
| 216 | MODULE_DESCRIPTION("PCI driver module for ATI IXP IDE"); |
| 217 | MODULE_LICENSE("GPL"); |