Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 1 | /* |
| 2 | * ata-it821x.c - IT821x PATA for new ATA layer |
| 3 | * (C) 2005 Red Hat Inc |
| 4 | * Alan Cox <alan@redhat.com> |
| 5 | * |
| 6 | * based upon |
| 7 | * |
| 8 | * it821x.c |
Jeff Garzik | 85cd725 | 2006-08-31 00:03:49 -0400 | [diff] [blame] | 9 | * |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 10 | * linux/drivers/ide/pci/it821x.c Version 0.09 December 2004 |
| 11 | * |
| 12 | * Copyright (C) 2004 Red Hat <alan@redhat.com> |
| 13 | * |
| 14 | * May be copied or modified under the terms of the GNU General Public License |
| 15 | * Based in part on the ITE vendor provided SCSI driver. |
| 16 | * |
| 17 | * Documentation available from |
| 18 | * http://www.ite.com.tw/pc/IT8212F_V04.pdf |
| 19 | * Some other documents are NDA. |
| 20 | * |
| 21 | * The ITE8212 isn't exactly a standard IDE controller. It has two |
| 22 | * modes. In pass through mode then it is an IDE controller. In its smart |
| 23 | * mode its actually quite a capable hardware raid controller disguised |
| 24 | * as an IDE controller. Smart mode only understands DMA read/write and |
| 25 | * identify, none of the fancier commands apply. The IT8211 is identical |
| 26 | * in other respects but lacks the raid mode. |
| 27 | * |
| 28 | * Errata: |
| 29 | * o Rev 0x10 also requires master/slave hold the same DMA timings and |
| 30 | * cannot do ATAPI MWDMA. |
| 31 | * o The identify data for raid volumes lacks CHS info (technically ok) |
| 32 | * but also fails to set the LBA28 and other bits. We fix these in |
| 33 | * the IDE probe quirk code. |
| 34 | * o If you write LBA48 sized I/O's (ie > 256 sector) in smart mode |
| 35 | * raid then the controller firmware dies |
| 36 | * o Smart mode without RAID doesn't clear all the necessary identify |
| 37 | * bits to reduce the command set to the one used |
| 38 | * |
| 39 | * This has a few impacts on the driver |
| 40 | * - In pass through mode we do all the work you would expect |
| 41 | * - In smart mode the clocking set up is done by the controller generally |
| 42 | * but we must watch the other limits and filter. |
| 43 | * - There are a few extra vendor commands that actually talk to the |
| 44 | * controller but only work PIO with no IRQ. |
| 45 | * |
| 46 | * Vendor areas of the identify block in smart mode are used for the |
| 47 | * timing and policy set up. Each HDD in raid mode also has a serial |
| 48 | * block on the disk. The hardware extra commands are get/set chip status, |
| 49 | * rebuild, get rebuild status. |
| 50 | * |
| 51 | * In Linux the driver supports pass through mode as if the device was |
| 52 | * just another IDE controller. If the smart mode is running then |
| 53 | * volumes are managed by the controller firmware and each IDE "disk" |
| 54 | * is a raid volume. Even more cute - the controller can do automated |
| 55 | * hotplug and rebuild. |
| 56 | * |
| 57 | * The pass through controller itself is a little demented. It has a |
| 58 | * flaw that it has a single set of PIO/MWDMA timings per channel so |
| 59 | * non UDMA devices restrict each others performance. It also has a |
| 60 | * single clock source per channel so mixed UDMA100/133 performance |
| 61 | * isn't perfect and we have to pick a clock. Thankfully none of this |
| 62 | * matters in smart mode. ATAPI DMA is not currently supported. |
| 63 | * |
| 64 | * It seems the smart mode is a win for RAID1/RAID10 but otherwise not. |
| 65 | * |
| 66 | * TODO |
| 67 | * - ATAPI and other speed filtering |
| 68 | * - Command filter in smart mode |
| 69 | * - RAID configuration ioctls |
| 70 | */ |
| 71 | |
| 72 | #include <linux/kernel.h> |
| 73 | #include <linux/module.h> |
| 74 | #include <linux/pci.h> |
| 75 | #include <linux/init.h> |
| 76 | #include <linux/blkdev.h> |
| 77 | #include <linux/delay.h> |
| 78 | #include <scsi/scsi_host.h> |
| 79 | #include <linux/libata.h> |
| 80 | |
| 81 | |
| 82 | #define DRV_NAME "pata_it821x" |
Alan | f535d53 | 2006-11-27 16:14:36 +0000 | [diff] [blame] | 83 | #define DRV_VERSION "0.3.3" |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 84 | |
| 85 | struct it821x_dev |
| 86 | { |
| 87 | unsigned int smart:1, /* Are we in smart raid mode */ |
| 88 | timing10:1; /* Rev 0x10 */ |
| 89 | u8 clock_mode; /* 0, ATA_50 or ATA_66 */ |
| 90 | u8 want[2][2]; /* Mode/Pri log for master slave */ |
| 91 | /* We need these for switching the clock when DMA goes on/off |
| 92 | The high byte is the 66Mhz timing */ |
| 93 | u16 pio[2]; /* Cached PIO values */ |
| 94 | u16 mwdma[2]; /* Cached MWDMA values */ |
| 95 | u16 udma[2]; /* Cached UDMA values (per drive) */ |
| 96 | u16 last_device; /* Master or slave loaded ? */ |
| 97 | }; |
| 98 | |
| 99 | #define ATA_66 0 |
| 100 | #define ATA_50 1 |
| 101 | #define ATA_ANY 2 |
| 102 | |
| 103 | #define UDMA_OFF 0 |
| 104 | #define MWDMA_OFF 0 |
| 105 | |
| 106 | /* |
| 107 | * We allow users to force the card into non raid mode without |
| 108 | * flashing the alternative BIOS. This is also neccessary right now |
| 109 | * for embedded platforms that cannot run a PC BIOS but are using this |
| 110 | * device. |
| 111 | */ |
| 112 | |
| 113 | static int it8212_noraid; |
| 114 | |
| 115 | /** |
| 116 | * it821x_pre_reset - probe |
| 117 | * @ap: ATA port |
| 118 | * |
| 119 | * Set the cable type |
| 120 | */ |
Jeff Garzik | 85cd725 | 2006-08-31 00:03:49 -0400 | [diff] [blame] | 121 | |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 122 | static int it821x_pre_reset(struct ata_port *ap) |
| 123 | { |
| 124 | ap->cbl = ATA_CBL_PATA80; |
| 125 | return ata_std_prereset(ap); |
| 126 | } |
| 127 | |
| 128 | /** |
| 129 | * it821x_error_handler - probe/reset |
| 130 | * @ap: ATA port |
| 131 | * |
| 132 | * Set the cable type and trigger a probe |
| 133 | */ |
Jeff Garzik | 85cd725 | 2006-08-31 00:03:49 -0400 | [diff] [blame] | 134 | |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 135 | static void it821x_error_handler(struct ata_port *ap) |
| 136 | { |
| 137 | return ata_bmdma_drive_eh(ap, it821x_pre_reset, ata_std_softreset, NULL, ata_std_postreset); |
| 138 | } |
| 139 | |
| 140 | /** |
| 141 | * it821x_program - program the PIO/MWDMA registers |
| 142 | * @ap: ATA port |
| 143 | * @adev: Device to program |
| 144 | * @timing: Timing value (66Mhz in top 8bits, 50 in the low 8) |
| 145 | * |
| 146 | * Program the PIO/MWDMA timing for this channel according to the |
| 147 | * current clock. These share the same register so are managed by |
| 148 | * the DMA start/stop sequence as with the old driver. |
| 149 | */ |
| 150 | |
| 151 | static void it821x_program(struct ata_port *ap, struct ata_device *adev, u16 timing) |
| 152 | { |
| 153 | struct pci_dev *pdev = to_pci_dev(ap->host->dev); |
| 154 | struct it821x_dev *itdev = ap->private_data; |
| 155 | int channel = ap->port_no; |
| 156 | u8 conf; |
| 157 | |
| 158 | /* Program PIO/MWDMA timing bits */ |
| 159 | if (itdev->clock_mode == ATA_66) |
| 160 | conf = timing >> 8; |
| 161 | else |
| 162 | conf = timing & 0xFF; |
| 163 | pci_write_config_byte(pdev, 0x54 + 4 * channel, conf); |
| 164 | } |
| 165 | |
| 166 | |
| 167 | /** |
| 168 | * it821x_program_udma - program the UDMA registers |
| 169 | * @ap: ATA port |
| 170 | * @adev: ATA device to update |
| 171 | * @timing: Timing bits. Top 8 are for 66Mhz bottom for 50Mhz |
| 172 | * |
| 173 | * Program the UDMA timing for this drive according to the |
| 174 | * current clock. Handles the dual clocks and also knows about |
| 175 | * the errata on the 0x10 revision. The UDMA errata is partly handled |
| 176 | * here and partly in start_dma. |
| 177 | */ |
| 178 | |
| 179 | static void it821x_program_udma(struct ata_port *ap, struct ata_device *adev, u16 timing) |
| 180 | { |
| 181 | struct it821x_dev *itdev = ap->private_data; |
| 182 | struct pci_dev *pdev = to_pci_dev(ap->host->dev); |
| 183 | int channel = ap->port_no; |
| 184 | int unit = adev->devno; |
| 185 | u8 conf; |
| 186 | |
| 187 | /* Program UDMA timing bits */ |
| 188 | if (itdev->clock_mode == ATA_66) |
| 189 | conf = timing >> 8; |
| 190 | else |
| 191 | conf = timing & 0xFF; |
| 192 | if (itdev->timing10 == 0) |
| 193 | pci_write_config_byte(pdev, 0x56 + 4 * channel + unit, conf); |
| 194 | else { |
| 195 | /* Early revision must be programmed for both together */ |
| 196 | pci_write_config_byte(pdev, 0x56 + 4 * channel, conf); |
| 197 | pci_write_config_byte(pdev, 0x56 + 4 * channel + 1, conf); |
| 198 | } |
| 199 | } |
| 200 | |
| 201 | /** |
| 202 | * it821x_clock_strategy |
| 203 | * @ap: ATA interface |
| 204 | * @adev: ATA device being updated |
| 205 | * |
| 206 | * Select between the 50 and 66Mhz base clocks to get the best |
| 207 | * results for this interface. |
| 208 | */ |
| 209 | |
| 210 | static void it821x_clock_strategy(struct ata_port *ap, struct ata_device *adev) |
| 211 | { |
| 212 | struct pci_dev *pdev = to_pci_dev(ap->host->dev); |
| 213 | struct it821x_dev *itdev = ap->private_data; |
| 214 | u8 unit = adev->devno; |
| 215 | struct ata_device *pair = ata_dev_pair(adev); |
| 216 | |
| 217 | int clock, altclock; |
| 218 | u8 v; |
| 219 | int sel = 0; |
| 220 | |
| 221 | /* Look for the most wanted clocking */ |
| 222 | if (itdev->want[0][0] > itdev->want[1][0]) { |
| 223 | clock = itdev->want[0][1]; |
| 224 | altclock = itdev->want[1][1]; |
| 225 | } else { |
| 226 | clock = itdev->want[1][1]; |
| 227 | altclock = itdev->want[0][1]; |
| 228 | } |
| 229 | |
| 230 | /* Master doesn't care does the slave ? */ |
| 231 | if (clock == ATA_ANY) |
| 232 | clock = altclock; |
| 233 | |
| 234 | /* Nobody cares - keep the same clock */ |
| 235 | if (clock == ATA_ANY) |
| 236 | return; |
| 237 | /* No change */ |
| 238 | if (clock == itdev->clock_mode) |
| 239 | return; |
| 240 | |
| 241 | /* Load this into the controller */ |
| 242 | if (clock == ATA_66) |
| 243 | itdev->clock_mode = ATA_66; |
| 244 | else { |
| 245 | itdev->clock_mode = ATA_50; |
| 246 | sel = 1; |
| 247 | } |
| 248 | pci_read_config_byte(pdev, 0x50, &v); |
| 249 | v &= ~(1 << (1 + ap->port_no)); |
| 250 | v |= sel << (1 + ap->port_no); |
| 251 | pci_write_config_byte(pdev, 0x50, v); |
| 252 | |
| 253 | /* |
| 254 | * Reprogram the UDMA/PIO of the pair drive for the switch |
| 255 | * MWDMA will be dealt with by the dma switcher |
| 256 | */ |
| 257 | if (pair && itdev->udma[1-unit] != UDMA_OFF) { |
| 258 | it821x_program_udma(ap, pair, itdev->udma[1-unit]); |
| 259 | it821x_program(ap, pair, itdev->pio[1-unit]); |
| 260 | } |
| 261 | /* |
| 262 | * Reprogram the UDMA/PIO of our drive for the switch. |
| 263 | * MWDMA will be dealt with by the dma switcher |
| 264 | */ |
| 265 | if (itdev->udma[unit] != UDMA_OFF) { |
| 266 | it821x_program_udma(ap, adev, itdev->udma[unit]); |
| 267 | it821x_program(ap, adev, itdev->pio[unit]); |
| 268 | } |
| 269 | } |
| 270 | |
| 271 | /** |
| 272 | * it821x_passthru_set_piomode - set PIO mode data |
| 273 | * @ap: ATA interface |
| 274 | * @adev: ATA device |
| 275 | * |
| 276 | * Configure for PIO mode. This is complicated as the register is |
| 277 | * shared by PIO and MWDMA and for both channels. |
| 278 | */ |
| 279 | |
| 280 | static void it821x_passthru_set_piomode(struct ata_port *ap, struct ata_device *adev) |
| 281 | { |
| 282 | /* Spec says 89 ref driver uses 88 */ |
| 283 | static const u16 pio[] = { 0xAA88, 0xA382, 0xA181, 0x3332, 0x3121 }; |
| 284 | static const u8 pio_want[] = { ATA_66, ATA_66, ATA_66, ATA_66, ATA_ANY }; |
| 285 | |
| 286 | struct it821x_dev *itdev = ap->private_data; |
| 287 | int unit = adev->devno; |
| 288 | int mode_wanted = adev->pio_mode - XFER_PIO_0; |
Jeff Garzik | 85cd725 | 2006-08-31 00:03:49 -0400 | [diff] [blame] | 289 | |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 290 | /* We prefer 66Mhz clock for PIO 0-3, don't care for PIO4 */ |
| 291 | itdev->want[unit][1] = pio_want[mode_wanted]; |
| 292 | itdev->want[unit][0] = 1; /* PIO is lowest priority */ |
| 293 | itdev->pio[unit] = pio[mode_wanted]; |
| 294 | it821x_clock_strategy(ap, adev); |
| 295 | it821x_program(ap, adev, itdev->pio[unit]); |
| 296 | } |
| 297 | |
| 298 | /** |
| 299 | * it821x_passthru_set_dmamode - set initial DMA mode data |
| 300 | * @ap: ATA interface |
| 301 | * @adev: ATA device |
| 302 | * |
| 303 | * Set up the DMA modes. The actions taken depend heavily on the mode |
Jeff Garzik | 85cd725 | 2006-08-31 00:03:49 -0400 | [diff] [blame] | 304 | * to use. If UDMA is used as is hopefully the usual case then the |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 305 | * timing register is private and we need only consider the clock. If |
| 306 | * we are using MWDMA then we have to manage the setting ourself as |
| 307 | * we switch devices and mode. |
| 308 | */ |
| 309 | |
| 310 | static void it821x_passthru_set_dmamode(struct ata_port *ap, struct ata_device *adev) |
| 311 | { |
| 312 | static const u16 dma[] = { 0x8866, 0x3222, 0x3121 }; |
| 313 | static const u8 mwdma_want[] = { ATA_ANY, ATA_66, ATA_ANY }; |
| 314 | static const u16 udma[] = { 0x4433, 0x4231, 0x3121, 0x2121, 0x1111, 0x2211, 0x1111 }; |
| 315 | static const u8 udma_want[] = { ATA_ANY, ATA_50, ATA_ANY, ATA_66, ATA_66, ATA_50, ATA_66 }; |
| 316 | |
| 317 | struct pci_dev *pdev = to_pci_dev(ap->host->dev); |
| 318 | struct it821x_dev *itdev = ap->private_data; |
| 319 | int channel = ap->port_no; |
| 320 | int unit = adev->devno; |
| 321 | u8 conf; |
| 322 | |
| 323 | if (adev->dma_mode >= XFER_UDMA_0) { |
| 324 | int mode_wanted = adev->dma_mode - XFER_UDMA_0; |
Jeff Garzik | 85cd725 | 2006-08-31 00:03:49 -0400 | [diff] [blame] | 325 | |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 326 | itdev->want[unit][1] = udma_want[mode_wanted]; |
| 327 | itdev->want[unit][0] = 3; /* UDMA is high priority */ |
| 328 | itdev->mwdma[unit] = MWDMA_OFF; |
| 329 | itdev->udma[unit] = udma[mode_wanted]; |
| 330 | if (mode_wanted >= 5) |
| 331 | itdev->udma[unit] |= 0x8080; /* UDMA 5/6 select on */ |
| 332 | |
| 333 | /* UDMA on. Again revision 0x10 must do the pair */ |
| 334 | pci_read_config_byte(pdev, 0x50, &conf); |
| 335 | if (itdev->timing10) |
| 336 | conf &= channel ? 0x9F: 0xE7; |
| 337 | else |
| 338 | conf &= ~ (1 << (3 + 2 * channel + unit)); |
| 339 | pci_write_config_byte(pdev, 0x50, conf); |
| 340 | it821x_clock_strategy(ap, adev); |
| 341 | it821x_program_udma(ap, adev, itdev->udma[unit]); |
| 342 | } else { |
| 343 | int mode_wanted = adev->dma_mode - XFER_MW_DMA_0; |
Jeff Garzik | 85cd725 | 2006-08-31 00:03:49 -0400 | [diff] [blame] | 344 | |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 345 | itdev->want[unit][1] = mwdma_want[mode_wanted]; |
| 346 | itdev->want[unit][0] = 2; /* MWDMA is low priority */ |
| 347 | itdev->mwdma[unit] = dma[mode_wanted]; |
| 348 | itdev->udma[unit] = UDMA_OFF; |
| 349 | |
| 350 | /* UDMA bits off - Revision 0x10 do them in pairs */ |
| 351 | pci_read_config_byte(pdev, 0x50, &conf); |
| 352 | if (itdev->timing10) |
| 353 | conf |= channel ? 0x60: 0x18; |
| 354 | else |
| 355 | conf |= 1 << (3 + 2 * channel + unit); |
| 356 | pci_write_config_byte(pdev, 0x50, conf); |
| 357 | it821x_clock_strategy(ap, adev); |
| 358 | } |
| 359 | } |
| 360 | |
| 361 | /** |
| 362 | * it821x_passthru_dma_start - DMA start callback |
| 363 | * @qc: Command in progress |
| 364 | * |
| 365 | * Usually drivers set the DMA timing at the point the set_dmamode call |
Jeff Garzik | 85cd725 | 2006-08-31 00:03:49 -0400 | [diff] [blame] | 366 | * is made. IT821x however requires we load new timings on the |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 367 | * transitions in some cases. |
| 368 | */ |
| 369 | |
| 370 | static void it821x_passthru_bmdma_start(struct ata_queued_cmd *qc) |
| 371 | { |
| 372 | struct ata_port *ap = qc->ap; |
| 373 | struct ata_device *adev = qc->dev; |
| 374 | struct it821x_dev *itdev = ap->private_data; |
| 375 | int unit = adev->devno; |
| 376 | |
| 377 | if (itdev->mwdma[unit] != MWDMA_OFF) |
| 378 | it821x_program(ap, adev, itdev->mwdma[unit]); |
| 379 | else if (itdev->udma[unit] != UDMA_OFF && itdev->timing10) |
| 380 | it821x_program_udma(ap, adev, itdev->udma[unit]); |
| 381 | ata_bmdma_start(qc); |
| 382 | } |
| 383 | |
| 384 | /** |
| 385 | * it821x_passthru_dma_stop - DMA stop callback |
| 386 | * @qc: ATA command |
| 387 | * |
| 388 | * We loaded new timings in dma_start, as a result we need to restore |
| 389 | * the PIO timings in dma_stop so that the next command issue gets the |
| 390 | * right clock values. |
| 391 | */ |
| 392 | |
| 393 | static void it821x_passthru_bmdma_stop(struct ata_queued_cmd *qc) |
| 394 | { |
| 395 | struct ata_port *ap = qc->ap; |
| 396 | struct ata_device *adev = qc->dev; |
| 397 | struct it821x_dev *itdev = ap->private_data; |
| 398 | int unit = adev->devno; |
| 399 | |
| 400 | ata_bmdma_stop(qc); |
| 401 | if (itdev->mwdma[unit] != MWDMA_OFF) |
| 402 | it821x_program(ap, adev, itdev->pio[unit]); |
| 403 | } |
| 404 | |
| 405 | |
| 406 | /** |
| 407 | * it821x_passthru_dev_select - Select master/slave |
| 408 | * @ap: ATA port |
| 409 | * @device: Device number (not pointer) |
| 410 | * |
| 411 | * Device selection hook. If neccessary perform clock switching |
| 412 | */ |
Jeff Garzik | 85cd725 | 2006-08-31 00:03:49 -0400 | [diff] [blame] | 413 | |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 414 | static void it821x_passthru_dev_select(struct ata_port *ap, |
| 415 | unsigned int device) |
| 416 | { |
| 417 | struct it821x_dev *itdev = ap->private_data; |
| 418 | if (itdev && device != itdev->last_device) { |
| 419 | struct ata_device *adev = &ap->device[device]; |
| 420 | it821x_program(ap, adev, itdev->pio[adev->devno]); |
| 421 | itdev->last_device = device; |
| 422 | } |
| 423 | ata_std_dev_select(ap, device); |
| 424 | } |
| 425 | |
| 426 | /** |
| 427 | * it821x_smart_qc_issue_prot - wrap qc issue prot |
| 428 | * @qc: command |
| 429 | * |
| 430 | * Wrap the command issue sequence for the IT821x. We need to |
| 431 | * perform out own device selection timing loads before the |
| 432 | * usual happenings kick off |
| 433 | */ |
Jeff Garzik | 85cd725 | 2006-08-31 00:03:49 -0400 | [diff] [blame] | 434 | |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 435 | static unsigned int it821x_smart_qc_issue_prot(struct ata_queued_cmd *qc) |
| 436 | { |
| 437 | switch(qc->tf.command) |
| 438 | { |
| 439 | /* Commands the firmware supports */ |
| 440 | case ATA_CMD_READ: |
| 441 | case ATA_CMD_READ_EXT: |
| 442 | case ATA_CMD_WRITE: |
| 443 | case ATA_CMD_WRITE_EXT: |
| 444 | case ATA_CMD_PIO_READ: |
| 445 | case ATA_CMD_PIO_READ_EXT: |
| 446 | case ATA_CMD_PIO_WRITE: |
| 447 | case ATA_CMD_PIO_WRITE_EXT: |
| 448 | case ATA_CMD_READ_MULTI: |
| 449 | case ATA_CMD_READ_MULTI_EXT: |
| 450 | case ATA_CMD_WRITE_MULTI: |
| 451 | case ATA_CMD_WRITE_MULTI_EXT: |
| 452 | case ATA_CMD_ID_ATA: |
| 453 | /* Arguably should just no-op this one */ |
| 454 | case ATA_CMD_SET_FEATURES: |
| 455 | return ata_qc_issue_prot(qc); |
| 456 | } |
| 457 | printk(KERN_DEBUG "it821x: can't process command 0x%02X\n", qc->tf.command); |
| 458 | return AC_ERR_INVALID; |
| 459 | } |
| 460 | |
| 461 | /** |
| 462 | * it821x_passthru_qc_issue_prot - wrap qc issue prot |
| 463 | * @qc: command |
| 464 | * |
| 465 | * Wrap the command issue sequence for the IT821x. We need to |
| 466 | * perform out own device selection timing loads before the |
| 467 | * usual happenings kick off |
| 468 | */ |
Jeff Garzik | 85cd725 | 2006-08-31 00:03:49 -0400 | [diff] [blame] | 469 | |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 470 | static unsigned int it821x_passthru_qc_issue_prot(struct ata_queued_cmd *qc) |
| 471 | { |
| 472 | it821x_passthru_dev_select(qc->ap, qc->dev->devno); |
| 473 | return ata_qc_issue_prot(qc); |
| 474 | } |
| 475 | |
| 476 | /** |
| 477 | * it821x_smart_set_mode - mode setting |
| 478 | * @ap: interface to set up |
Alan | b229a7b | 2007-01-24 11:47:07 +0000 | [diff] [blame] | 479 | * @unused: device that failed (error only) |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 480 | * |
| 481 | * Use a non standard set_mode function. We don't want to be tuned. |
| 482 | * The BIOS configured everything. Our job is not to fiddle. We |
| 483 | * read the dma enabled bits from the PCI configuration of the device |
Jeff Garzik | 85cd725 | 2006-08-31 00:03:49 -0400 | [diff] [blame] | 484 | * and respect them. |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 485 | */ |
Jeff Garzik | 85cd725 | 2006-08-31 00:03:49 -0400 | [diff] [blame] | 486 | |
Alan | b229a7b | 2007-01-24 11:47:07 +0000 | [diff] [blame] | 487 | static int it821x_smart_set_mode(struct ata_port *ap, struct ata_device **unused) |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 488 | { |
| 489 | int dma_enabled = 0; |
| 490 | int i; |
| 491 | |
| 492 | /* Bits 5 and 6 indicate if DMA is active on master/slave */ |
| 493 | /* It is possible that BMDMA isn't allocated */ |
| 494 | if (ap->ioaddr.bmdma_addr) |
Tejun Heo | 0d5ff56 | 2007-02-01 15:06:36 +0900 | [diff] [blame] | 495 | dma_enabled = ioread8(ap->ioaddr.bmdma_addr + ATA_DMA_CMD); |
Jeff Garzik | 85cd725 | 2006-08-31 00:03:49 -0400 | [diff] [blame] | 496 | |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 497 | for (i = 0; i < ATA_MAX_DEVICES; i++) { |
| 498 | struct ata_device *dev = &ap->device[i]; |
| 499 | if (ata_dev_enabled(dev)) { |
| 500 | /* We don't really care */ |
| 501 | dev->pio_mode = XFER_PIO_0; |
| 502 | dev->dma_mode = XFER_MW_DMA_0; |
Jeff Garzik | 85cd725 | 2006-08-31 00:03:49 -0400 | [diff] [blame] | 503 | /* We do need the right mode information for DMA or PIO |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 504 | and this comes from the current configuration flags */ |
| 505 | if (dma_enabled & (1 << (5 + i))) { |
| 506 | dev->xfer_mode = XFER_MW_DMA_0; |
| 507 | dev->xfer_shift = ATA_SHIFT_MWDMA; |
| 508 | dev->flags &= ~ATA_DFLAG_PIO; |
| 509 | } else { |
| 510 | dev->xfer_mode = XFER_PIO_0; |
| 511 | dev->xfer_shift = ATA_SHIFT_PIO; |
| 512 | dev->flags |= ATA_DFLAG_PIO; |
| 513 | } |
| 514 | } |
| 515 | } |
Alan | b229a7b | 2007-01-24 11:47:07 +0000 | [diff] [blame] | 516 | return 0; |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 517 | } |
| 518 | |
| 519 | /** |
| 520 | * it821x_dev_config - Called each device identify |
| 521 | * @ap: ATA port |
| 522 | * @adev: Device that has just been identified |
| 523 | * |
| 524 | * Perform the initial setup needed for each device that is chip |
| 525 | * special. In our case we need to lock the sector count to avoid |
| 526 | * blowing the brains out of the firmware with large LBA48 requests |
| 527 | * |
| 528 | * FIXME: When FUA appears we need to block FUA too. And SMART and |
| 529 | * basically we need to filter commands for this chip. |
| 530 | */ |
Jeff Garzik | 85cd725 | 2006-08-31 00:03:49 -0400 | [diff] [blame] | 531 | |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 532 | static void it821x_dev_config(struct ata_port *ap, struct ata_device *adev) |
| 533 | { |
Tejun Heo | 8bfa79f | 2007-01-02 20:19:40 +0900 | [diff] [blame] | 534 | unsigned char model_num[ATA_ID_PROD_LEN + 1]; |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 535 | |
Tejun Heo | 8bfa79f | 2007-01-02 20:19:40 +0900 | [diff] [blame] | 536 | ata_id_c_string(adev->id, model_num, ATA_ID_PROD, sizeof(model_num)); |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 537 | |
| 538 | if (adev->max_sectors > 255) |
| 539 | adev->max_sectors = 255; |
Jeff Garzik | 85cd725 | 2006-08-31 00:03:49 -0400 | [diff] [blame] | 540 | |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 541 | if (strstr(model_num, "Integrated Technology Express")) { |
| 542 | /* RAID mode */ |
| 543 | printk(KERN_INFO "IT821x %sRAID%d volume", |
| 544 | adev->id[147]?"Bootable ":"", |
| 545 | adev->id[129]); |
| 546 | if (adev->id[129] != 1) |
| 547 | printk("(%dK stripe)", adev->id[146]); |
| 548 | printk(".\n"); |
| 549 | } |
| 550 | } |
| 551 | |
| 552 | |
| 553 | /** |
| 554 | * it821x_check_atapi_dma - ATAPI DMA handler |
| 555 | * @qc: Command we are about to issue |
| 556 | * |
| 557 | * Decide if this ATAPI command can be issued by DMA on this |
| 558 | * controller. Return 0 if it can be. |
| 559 | */ |
Jeff Garzik | 85cd725 | 2006-08-31 00:03:49 -0400 | [diff] [blame] | 560 | |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 561 | static int it821x_check_atapi_dma(struct ata_queued_cmd *qc) |
| 562 | { |
| 563 | struct ata_port *ap = qc->ap; |
| 564 | struct it821x_dev *itdev = ap->private_data; |
Jeff Garzik | 85cd725 | 2006-08-31 00:03:49 -0400 | [diff] [blame] | 565 | |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 566 | /* No ATAPI DMA in smart mode */ |
| 567 | if (itdev->smart) |
| 568 | return -EOPNOTSUPP; |
| 569 | /* No ATAPI DMA on rev 10 */ |
| 570 | if (itdev->timing10) |
| 571 | return -EOPNOTSUPP; |
| 572 | /* Cool */ |
| 573 | return 0; |
| 574 | } |
Jeff Garzik | 85cd725 | 2006-08-31 00:03:49 -0400 | [diff] [blame] | 575 | |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 576 | |
| 577 | /** |
| 578 | * it821x_port_start - port setup |
| 579 | * @ap: ATA port being set up |
| 580 | * |
| 581 | * The it821x needs to maintain private data structures and also to |
| 582 | * use the standard PCI interface which lacks support for this |
Jeff Garzik | 85cd725 | 2006-08-31 00:03:49 -0400 | [diff] [blame] | 583 | * functionality. We instead set up the private data on the port |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 584 | * start hook, and tear it down on port stop |
| 585 | */ |
Jeff Garzik | 85cd725 | 2006-08-31 00:03:49 -0400 | [diff] [blame] | 586 | |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 587 | static int it821x_port_start(struct ata_port *ap) |
| 588 | { |
| 589 | struct pci_dev *pdev = to_pci_dev(ap->host->dev); |
| 590 | struct it821x_dev *itdev; |
| 591 | u8 conf; |
| 592 | |
| 593 | int ret = ata_port_start(ap); |
| 594 | if (ret < 0) |
| 595 | return ret; |
Jeff Garzik | 85cd725 | 2006-08-31 00:03:49 -0400 | [diff] [blame] | 596 | |
Tejun Heo | 24dc5f3 | 2007-01-20 16:00:28 +0900 | [diff] [blame] | 597 | itdev = devm_kzalloc(&pdev->dev, sizeof(struct it821x_dev), GFP_KERNEL); |
| 598 | if (itdev == NULL) |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 599 | return -ENOMEM; |
Tejun Heo | 24dc5f3 | 2007-01-20 16:00:28 +0900 | [diff] [blame] | 600 | ap->private_data = itdev; |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 601 | |
| 602 | pci_read_config_byte(pdev, 0x50, &conf); |
| 603 | |
| 604 | if (conf & 1) { |
| 605 | itdev->smart = 1; |
| 606 | /* Long I/O's although allowed in LBA48 space cause the |
| 607 | onboard firmware to enter the twighlight zone */ |
| 608 | /* No ATAPI DMA in this mode either */ |
| 609 | } |
| 610 | /* Pull the current clocks from 0x50 */ |
| 611 | if (conf & (1 << (1 + ap->port_no))) |
| 612 | itdev->clock_mode = ATA_50; |
| 613 | else |
| 614 | itdev->clock_mode = ATA_66; |
| 615 | |
| 616 | itdev->want[0][1] = ATA_ANY; |
| 617 | itdev->want[1][1] = ATA_ANY; |
| 618 | itdev->last_device = -1; |
| 619 | |
| 620 | pci_read_config_byte(pdev, PCI_REVISION_ID, &conf); |
| 621 | if (conf == 0x10) { |
| 622 | itdev->timing10 = 1; |
| 623 | /* Need to disable ATAPI DMA for this case */ |
| 624 | if (!itdev->smart) |
| 625 | printk(KERN_WARNING DRV_NAME": Revision 0x10, workarounds activated.\n"); |
| 626 | } |
| 627 | |
| 628 | return 0; |
| 629 | } |
| 630 | |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 631 | static struct scsi_host_template it821x_sht = { |
| 632 | .module = THIS_MODULE, |
| 633 | .name = DRV_NAME, |
| 634 | .ioctl = ata_scsi_ioctl, |
| 635 | .queuecommand = ata_scsi_queuecmd, |
| 636 | .can_queue = ATA_DEF_QUEUE, |
| 637 | .this_id = ATA_SHT_THIS_ID, |
| 638 | .sg_tablesize = LIBATA_MAX_PRD, |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 639 | .cmd_per_lun = ATA_SHT_CMD_PER_LUN, |
| 640 | .emulated = ATA_SHT_EMULATED, |
| 641 | .use_clustering = ATA_SHT_USE_CLUSTERING, |
| 642 | .proc_name = DRV_NAME, |
| 643 | .dma_boundary = ATA_DMA_BOUNDARY, |
| 644 | .slave_configure = ata_scsi_slave_config, |
Tejun Heo | afdfe89 | 2006-11-29 11:26:47 +0900 | [diff] [blame] | 645 | .slave_destroy = ata_scsi_slave_destroy, |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 646 | .bios_param = ata_std_bios_param, |
Alan | f535d53 | 2006-11-27 16:14:36 +0000 | [diff] [blame] | 647 | .resume = ata_scsi_device_resume, |
| 648 | .suspend = ata_scsi_device_suspend, |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 649 | }; |
| 650 | |
| 651 | static struct ata_port_operations it821x_smart_port_ops = { |
| 652 | .set_mode = it821x_smart_set_mode, |
| 653 | .port_disable = ata_port_disable, |
| 654 | .tf_load = ata_tf_load, |
| 655 | .tf_read = ata_tf_read, |
| 656 | .mode_filter = ata_pci_default_filter, |
Jeff Garzik | 85cd725 | 2006-08-31 00:03:49 -0400 | [diff] [blame] | 657 | |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 658 | .check_status = ata_check_status, |
| 659 | .check_atapi_dma= it821x_check_atapi_dma, |
| 660 | .exec_command = ata_exec_command, |
| 661 | .dev_select = ata_std_dev_select, |
| 662 | .dev_config = it821x_dev_config, |
| 663 | |
| 664 | .freeze = ata_bmdma_freeze, |
| 665 | .thaw = ata_bmdma_thaw, |
| 666 | .error_handler = it821x_error_handler, |
| 667 | .post_internal_cmd = ata_bmdma_post_internal_cmd, |
| 668 | |
| 669 | .bmdma_setup = ata_bmdma_setup, |
| 670 | .bmdma_start = ata_bmdma_start, |
| 671 | .bmdma_stop = ata_bmdma_stop, |
| 672 | .bmdma_status = ata_bmdma_status, |
| 673 | |
| 674 | .qc_prep = ata_qc_prep, |
| 675 | .qc_issue = it821x_smart_qc_issue_prot, |
Jeff Garzik | bda3028 | 2006-09-27 05:41:13 -0400 | [diff] [blame] | 676 | |
Tejun Heo | 0d5ff56 | 2007-02-01 15:06:36 +0900 | [diff] [blame] | 677 | .data_xfer = ata_data_xfer, |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 678 | |
| 679 | .irq_handler = ata_interrupt, |
| 680 | .irq_clear = ata_bmdma_irq_clear, |
Akira Iguchi | 246ce3b | 2007-01-26 16:27:58 +0900 | [diff] [blame^] | 681 | .irq_on = ata_irq_on, |
| 682 | .irq_ack = ata_irq_ack, |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 683 | |
| 684 | .port_start = it821x_port_start, |
Jeff Garzik | 85cd725 | 2006-08-31 00:03:49 -0400 | [diff] [blame] | 685 | }; |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 686 | |
| 687 | static struct ata_port_operations it821x_passthru_port_ops = { |
| 688 | .port_disable = ata_port_disable, |
| 689 | .set_piomode = it821x_passthru_set_piomode, |
| 690 | .set_dmamode = it821x_passthru_set_dmamode, |
| 691 | .mode_filter = ata_pci_default_filter, |
Jeff Garzik | 85cd725 | 2006-08-31 00:03:49 -0400 | [diff] [blame] | 692 | |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 693 | .tf_load = ata_tf_load, |
| 694 | .tf_read = ata_tf_read, |
| 695 | .check_status = ata_check_status, |
| 696 | .exec_command = ata_exec_command, |
| 697 | .check_atapi_dma= it821x_check_atapi_dma, |
| 698 | .dev_select = it821x_passthru_dev_select, |
| 699 | |
| 700 | .freeze = ata_bmdma_freeze, |
| 701 | .thaw = ata_bmdma_thaw, |
| 702 | .error_handler = it821x_error_handler, |
| 703 | .post_internal_cmd = ata_bmdma_post_internal_cmd, |
| 704 | |
| 705 | .bmdma_setup = ata_bmdma_setup, |
| 706 | .bmdma_start = it821x_passthru_bmdma_start, |
| 707 | .bmdma_stop = it821x_passthru_bmdma_stop, |
| 708 | .bmdma_status = ata_bmdma_status, |
| 709 | |
| 710 | .qc_prep = ata_qc_prep, |
| 711 | .qc_issue = it821x_passthru_qc_issue_prot, |
Jeff Garzik | bda3028 | 2006-09-27 05:41:13 -0400 | [diff] [blame] | 712 | |
Tejun Heo | 0d5ff56 | 2007-02-01 15:06:36 +0900 | [diff] [blame] | 713 | .data_xfer = ata_data_xfer, |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 714 | |
| 715 | .irq_clear = ata_bmdma_irq_clear, |
| 716 | .irq_handler = ata_interrupt, |
Akira Iguchi | 246ce3b | 2007-01-26 16:27:58 +0900 | [diff] [blame^] | 717 | .irq_on = ata_irq_on, |
| 718 | .irq_ack = ata_irq_ack, |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 719 | |
| 720 | .port_start = it821x_port_start, |
Jeff Garzik | 85cd725 | 2006-08-31 00:03:49 -0400 | [diff] [blame] | 721 | }; |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 722 | |
| 723 | static void __devinit it821x_disable_raid(struct pci_dev *pdev) |
| 724 | { |
| 725 | /* Reset local CPU, and set BIOS not ready */ |
| 726 | pci_write_config_byte(pdev, 0x5E, 0x01); |
| 727 | |
| 728 | /* Set to bypass mode, and reset PCI bus */ |
| 729 | pci_write_config_byte(pdev, 0x50, 0x00); |
| 730 | pci_write_config_word(pdev, PCI_COMMAND, |
| 731 | PCI_COMMAND_PARITY | PCI_COMMAND_IO | |
| 732 | PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER); |
| 733 | pci_write_config_word(pdev, 0x40, 0xA0F3); |
| 734 | |
| 735 | pci_write_config_dword(pdev,0x4C, 0x02040204); |
| 736 | pci_write_config_byte(pdev, 0x42, 0x36); |
| 737 | pci_write_config_byte(pdev, PCI_LATENCY_TIMER, 0x20); |
| 738 | } |
| 739 | |
Jeff Garzik | 85cd725 | 2006-08-31 00:03:49 -0400 | [diff] [blame] | 740 | |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 741 | static int it821x_init_one(struct pci_dev *pdev, const struct pci_device_id *id) |
| 742 | { |
| 743 | u8 conf; |
Jeff Garzik | 85cd725 | 2006-08-31 00:03:49 -0400 | [diff] [blame] | 744 | |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 745 | static struct ata_port_info info_smart = { |
| 746 | .sht = &it821x_sht, |
| 747 | .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_SRST, |
| 748 | .pio_mask = 0x1f, |
| 749 | .mwdma_mask = 0x07, |
| 750 | .port_ops = &it821x_smart_port_ops |
| 751 | }; |
| 752 | static struct ata_port_info info_passthru = { |
| 753 | .sht = &it821x_sht, |
| 754 | .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_SRST, |
| 755 | .pio_mask = 0x1f, |
| 756 | .mwdma_mask = 0x07, |
| 757 | .udma_mask = 0x7f, |
| 758 | .port_ops = &it821x_passthru_port_ops |
| 759 | }; |
| 760 | static struct ata_port_info *port_info[2]; |
Jeff Garzik | 85cd725 | 2006-08-31 00:03:49 -0400 | [diff] [blame] | 761 | |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 762 | static char *mode[2] = { "pass through", "smart" }; |
| 763 | |
| 764 | /* Force the card into bypass mode if so requested */ |
| 765 | if (it8212_noraid) { |
| 766 | printk(KERN_INFO DRV_NAME ": forcing bypass mode.\n"); |
| 767 | it821x_disable_raid(pdev); |
| 768 | } |
| 769 | pci_read_config_byte(pdev, 0x50, &conf); |
| 770 | conf &= 1; |
Jeff Garzik | 85cd725 | 2006-08-31 00:03:49 -0400 | [diff] [blame] | 771 | |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 772 | printk(KERN_INFO DRV_NAME ": controller in %s mode.\n", mode[conf]); |
| 773 | if (conf == 0) |
| 774 | port_info[0] = port_info[1] = &info_passthru; |
| 775 | else |
| 776 | port_info[0] = port_info[1] = &info_smart; |
Jeff Garzik | 85cd725 | 2006-08-31 00:03:49 -0400 | [diff] [blame] | 777 | |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 778 | return ata_pci_init_one(pdev, port_info, 2); |
| 779 | } |
| 780 | |
Alan | f535d53 | 2006-11-27 16:14:36 +0000 | [diff] [blame] | 781 | static int it821x_reinit_one(struct pci_dev *pdev) |
| 782 | { |
| 783 | /* Resume - turn raid back off if need be */ |
| 784 | if (it8212_noraid) |
| 785 | it821x_disable_raid(pdev); |
| 786 | return ata_pci_device_resume(pdev); |
| 787 | } |
| 788 | |
Jeff Garzik | 2d2744f | 2006-09-28 20:21:59 -0400 | [diff] [blame] | 789 | static const struct pci_device_id it821x[] = { |
| 790 | { PCI_VDEVICE(ITE, PCI_DEVICE_ID_ITE_8211), }, |
| 791 | { PCI_VDEVICE(ITE, PCI_DEVICE_ID_ITE_8212), }, |
| 792 | |
| 793 | { }, |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 794 | }; |
| 795 | |
| 796 | static struct pci_driver it821x_pci_driver = { |
Jeff Garzik | 2d2744f | 2006-09-28 20:21:59 -0400 | [diff] [blame] | 797 | .name = DRV_NAME, |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 798 | .id_table = it821x, |
| 799 | .probe = it821x_init_one, |
Alan | f535d53 | 2006-11-27 16:14:36 +0000 | [diff] [blame] | 800 | .remove = ata_pci_remove_one, |
| 801 | .suspend = ata_pci_device_suspend, |
| 802 | .resume = it821x_reinit_one, |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 803 | }; |
| 804 | |
| 805 | static int __init it821x_init(void) |
| 806 | { |
| 807 | return pci_register_driver(&it821x_pci_driver); |
| 808 | } |
| 809 | |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 810 | static void __exit it821x_exit(void) |
| 811 | { |
| 812 | pci_unregister_driver(&it821x_pci_driver); |
| 813 | } |
| 814 | |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 815 | MODULE_AUTHOR("Alan Cox"); |
| 816 | MODULE_DESCRIPTION("low-level driver for the IT8211/IT8212 IDE RAID controller"); |
| 817 | MODULE_LICENSE("GPL"); |
| 818 | MODULE_DEVICE_TABLE(pci, it821x); |
| 819 | MODULE_VERSION(DRV_VERSION); |
| 820 | |
| 821 | |
| 822 | module_param_named(noraid, it8212_noraid, int, S_IRUGO); |
| 823 | MODULE_PARM_DESC(it8212_noraid, "Force card into bypass mode"); |
| 824 | |
| 825 | module_init(it821x_init); |
| 826 | module_exit(it821x_exit); |