KVM: Fix guest sysenter on vmx
[linux-2.6/kvm.git] / drivers / ide / pci / it821x.c
bloba132767f7d90cfb637e606be18a0940703932cfd
2 /*
3 * linux/drivers/ide/pci/it821x.c Version 0.09 December 2004
5 * Copyright (C) 2004 Red Hat <alan@redhat.com>
7 * May be copied or modified under the terms of the GNU General Public License
8 * Based in part on the ITE vendor provided SCSI driver.
10 * Documentation available from
11 * http://www.ite.com.tw/pc/IT8212F_V04.pdf
12 * Some other documents are NDA.
14 * The ITE8212 isn't exactly a standard IDE controller. It has two
15 * modes. In pass through mode then it is an IDE controller. In its smart
16 * mode its actually quite a capable hardware raid controller disguised
17 * as an IDE controller. Smart mode only understands DMA read/write and
18 * identify, none of the fancier commands apply. The IT8211 is identical
19 * in other respects but lacks the raid mode.
21 * Errata:
22 * o Rev 0x10 also requires master/slave hold the same DMA timings and
23 * cannot do ATAPI MWDMA.
24 * o The identify data for raid volumes lacks CHS info (technically ok)
25 * but also fails to set the LBA28 and other bits. We fix these in
26 * the IDE probe quirk code.
27 * o If you write LBA48 sized I/O's (ie > 256 sector) in smart mode
28 * raid then the controller firmware dies
29 * o Smart mode without RAID doesn't clear all the necessary identify
30 * bits to reduce the command set to the one used
32 * This has a few impacts on the driver
33 * - In pass through mode we do all the work you would expect
34 * - In smart mode the clocking set up is done by the controller generally
35 * but we must watch the other limits and filter.
36 * - There are a few extra vendor commands that actually talk to the
37 * controller but only work PIO with no IRQ.
39 * Vendor areas of the identify block in smart mode are used for the
40 * timing and policy set up. Each HDD in raid mode also has a serial
41 * block on the disk. The hardware extra commands are get/set chip status,
42 * rebuild, get rebuild status.
44 * In Linux the driver supports pass through mode as if the device was
45 * just another IDE controller. If the smart mode is running then
46 * volumes are managed by the controller firmware and each IDE "disk"
47 * is a raid volume. Even more cute - the controller can do automated
48 * hotplug and rebuild.
50 * The pass through controller itself is a little demented. It has a
51 * flaw that it has a single set of PIO/MWDMA timings per channel so
52 * non UDMA devices restrict each others performance. It also has a
53 * single clock source per channel so mixed UDMA100/133 performance
54 * isn't perfect and we have to pick a clock. Thankfully none of this
55 * matters in smart mode. ATAPI DMA is not currently supported.
57 * It seems the smart mode is a win for RAID1/RAID10 but otherwise not.
59 * TODO
60 * - ATAPI UDMA is ok but not MWDMA it seems
61 * - RAID configuration ioctls
62 * - Move to libata once it grows up
65 #include <linux/types.h>
66 #include <linux/module.h>
67 #include <linux/pci.h>
68 #include <linux/delay.h>
69 #include <linux/hdreg.h>
70 #include <linux/ide.h>
71 #include <linux/init.h>
73 #include <asm/io.h>
75 struct it821x_dev
77 unsigned int smart:1, /* Are we in smart raid mode */
78 timing10:1; /* Rev 0x10 */
79 u8 clock_mode; /* 0, ATA_50 or ATA_66 */
80 u8 want[2][2]; /* Mode/Pri log for master slave */
81 /* We need these for switching the clock when DMA goes on/off
82 The high byte is the 66Mhz timing */
83 u16 pio[2]; /* Cached PIO values */
84 u16 mwdma[2]; /* Cached MWDMA values */
85 u16 udma[2]; /* Cached UDMA values (per drive) */
88 #define ATA_66 0
89 #define ATA_50 1
90 #define ATA_ANY 2
92 #define UDMA_OFF 0
93 #define MWDMA_OFF 0
96 * We allow users to force the card into non raid mode without
97 * flashing the alternative BIOS. This is also neccessary right now
98 * for embedded platforms that cannot run a PC BIOS but are using this
99 * device.
102 static int it8212_noraid;
105 * it821x_program - program the PIO/MWDMA registers
106 * @drive: drive to tune
108 * Program the PIO/MWDMA timing for this channel according to the
109 * current clock.
112 static void it821x_program(ide_drive_t *drive, u16 timing)
114 ide_hwif_t *hwif = drive->hwif;
115 struct it821x_dev *itdev = ide_get_hwifdata(hwif);
116 int channel = hwif->channel;
117 u8 conf;
119 /* Program PIO/MWDMA timing bits */
120 if(itdev->clock_mode == ATA_66)
121 conf = timing >> 8;
122 else
123 conf = timing & 0xFF;
124 pci_write_config_byte(hwif->pci_dev, 0x54 + 4 * channel, conf);
128 * it821x_program_udma - program the UDMA registers
129 * @drive: drive to tune
131 * Program the UDMA timing for this drive according to the
132 * current clock.
135 static void it821x_program_udma(ide_drive_t *drive, u16 timing)
137 ide_hwif_t *hwif = drive->hwif;
138 struct it821x_dev *itdev = ide_get_hwifdata(hwif);
139 int channel = hwif->channel;
140 int unit = drive->select.b.unit;
141 u8 conf;
143 /* Program UDMA timing bits */
144 if(itdev->clock_mode == ATA_66)
145 conf = timing >> 8;
146 else
147 conf = timing & 0xFF;
148 if(itdev->timing10 == 0)
149 pci_write_config_byte(hwif->pci_dev, 0x56 + 4 * channel + unit, conf);
150 else {
151 pci_write_config_byte(hwif->pci_dev, 0x56 + 4 * channel, conf);
152 pci_write_config_byte(hwif->pci_dev, 0x56 + 4 * channel + 1, conf);
158 * it821x_clock_strategy
159 * @hwif: hardware interface
161 * Select between the 50 and 66Mhz base clocks to get the best
162 * results for this interface.
165 static void it821x_clock_strategy(ide_drive_t *drive)
167 ide_hwif_t *hwif = drive->hwif;
168 struct it821x_dev *itdev = ide_get_hwifdata(hwif);
170 u8 unit = drive->select.b.unit;
171 ide_drive_t *pair = &hwif->drives[1-unit];
173 int clock, altclock;
174 u8 v;
175 int sel = 0;
177 if(itdev->want[0][0] > itdev->want[1][0]) {
178 clock = itdev->want[0][1];
179 altclock = itdev->want[1][1];
180 } else {
181 clock = itdev->want[1][1];
182 altclock = itdev->want[0][1];
185 /* Master doesn't care does the slave ? */
186 if(clock == ATA_ANY)
187 clock = altclock;
189 /* Nobody cares - keep the same clock */
190 if(clock == ATA_ANY)
191 return;
192 /* No change */
193 if(clock == itdev->clock_mode)
194 return;
196 /* Load this into the controller ? */
197 if(clock == ATA_66)
198 itdev->clock_mode = ATA_66;
199 else {
200 itdev->clock_mode = ATA_50;
201 sel = 1;
203 pci_read_config_byte(hwif->pci_dev, 0x50, &v);
204 v &= ~(1 << (1 + hwif->channel));
205 v |= sel << (1 + hwif->channel);
206 pci_write_config_byte(hwif->pci_dev, 0x50, v);
209 * Reprogram the UDMA/PIO of the pair drive for the switch
210 * MWDMA will be dealt with by the dma switcher
212 if(pair && itdev->udma[1-unit] != UDMA_OFF) {
213 it821x_program_udma(pair, itdev->udma[1-unit]);
214 it821x_program(pair, itdev->pio[1-unit]);
217 * Reprogram the UDMA/PIO of our drive for the switch.
218 * MWDMA will be dealt with by the dma switcher
220 if(itdev->udma[unit] != UDMA_OFF) {
221 it821x_program_udma(drive, itdev->udma[unit]);
222 it821x_program(drive, itdev->pio[unit]);
227 * it821x_ratemask - Compute available modes
228 * @drive: IDE drive
230 * Compute the available speeds for the devices on the interface. This
231 * is all modes to ATA133 clipped by drive cable setup.
234 static u8 it821x_ratemask (ide_drive_t *drive)
236 u8 mode = 4;
237 if (!eighty_ninty_three(drive))
238 mode = min(mode, (u8)1);
239 return mode;
243 * it821x_tuneproc - tune a drive
244 * @drive: drive to tune
245 * @mode_wanted: the target operating mode
247 * Load the timing settings for this device mode into the
248 * controller. By the time we are called the mode has been
249 * modified as neccessary to handle the absence of seperate
250 * master/slave timers for MWDMA/PIO.
252 * This code is only used in pass through mode.
255 static void it821x_tuneproc (ide_drive_t *drive, byte mode_wanted)
257 ide_hwif_t *hwif = drive->hwif;
258 struct it821x_dev *itdev = ide_get_hwifdata(hwif);
259 int unit = drive->select.b.unit;
261 /* Spec says 89 ref driver uses 88 */
262 static u16 pio[] = { 0xAA88, 0xA382, 0xA181, 0x3332, 0x3121 };
263 static u8 pio_want[] = { ATA_66, ATA_66, ATA_66, ATA_66, ATA_ANY };
265 if(itdev->smart)
266 return;
268 /* We prefer 66Mhz clock for PIO 0-3, don't care for PIO4 */
269 itdev->want[unit][1] = pio_want[mode_wanted];
270 itdev->want[unit][0] = 1; /* PIO is lowest priority */
271 itdev->pio[unit] = pio[mode_wanted];
272 it821x_clock_strategy(drive);
273 it821x_program(drive, itdev->pio[unit]);
277 * it821x_tune_mwdma - tune a channel for MWDMA
278 * @drive: drive to set up
279 * @mode_wanted: the target operating mode
281 * Load the timing settings for this device mode into the
282 * controller when doing MWDMA in pass through mode. The caller
283 * must manage the whole lack of per device MWDMA/PIO timings and
284 * the shared MWDMA/PIO timing register.
287 static void it821x_tune_mwdma (ide_drive_t *drive, byte mode_wanted)
289 ide_hwif_t *hwif = drive->hwif;
290 struct it821x_dev *itdev = (void *)ide_get_hwifdata(hwif);
291 int unit = drive->select.b.unit;
292 int channel = hwif->channel;
293 u8 conf;
295 static u16 dma[] = { 0x8866, 0x3222, 0x3121 };
296 static u8 mwdma_want[] = { ATA_ANY, ATA_66, ATA_ANY };
298 itdev->want[unit][1] = mwdma_want[mode_wanted];
299 itdev->want[unit][0] = 2; /* MWDMA is low priority */
300 itdev->mwdma[unit] = dma[mode_wanted];
301 itdev->udma[unit] = UDMA_OFF;
303 /* UDMA bits off - Revision 0x10 do them in pairs */
304 pci_read_config_byte(hwif->pci_dev, 0x50, &conf);
305 if(itdev->timing10)
306 conf |= channel ? 0x60: 0x18;
307 else
308 conf |= 1 << (3 + 2 * channel + unit);
309 pci_write_config_byte(hwif->pci_dev, 0x50, conf);
311 it821x_clock_strategy(drive);
312 /* FIXME: do we need to program this ? */
313 /* it821x_program(drive, itdev->mwdma[unit]); */
317 * it821x_tune_udma - tune a channel for UDMA
318 * @drive: drive to set up
319 * @mode_wanted: the target operating mode
321 * Load the timing settings for this device mode into the
322 * controller when doing UDMA modes in pass through.
325 static void it821x_tune_udma (ide_drive_t *drive, byte mode_wanted)
327 ide_hwif_t *hwif = drive->hwif;
328 struct it821x_dev *itdev = ide_get_hwifdata(hwif);
329 int unit = drive->select.b.unit;
330 int channel = hwif->channel;
331 u8 conf;
333 static u16 udma[] = { 0x4433, 0x4231, 0x3121, 0x2121, 0x1111, 0x2211, 0x1111 };
334 static u8 udma_want[] = { ATA_ANY, ATA_50, ATA_ANY, ATA_66, ATA_66, ATA_50, ATA_66 };
336 itdev->want[unit][1] = udma_want[mode_wanted];
337 itdev->want[unit][0] = 3; /* UDMA is high priority */
338 itdev->mwdma[unit] = MWDMA_OFF;
339 itdev->udma[unit] = udma[mode_wanted];
340 if(mode_wanted >= 5)
341 itdev->udma[unit] |= 0x8080; /* UDMA 5/6 select on */
343 /* UDMA on. Again revision 0x10 must do the pair */
344 pci_read_config_byte(hwif->pci_dev, 0x50, &conf);
345 if(itdev->timing10)
346 conf &= channel ? 0x9F: 0xE7;
347 else
348 conf &= ~ (1 << (3 + 2 * channel + unit));
349 pci_write_config_byte(hwif->pci_dev, 0x50, conf);
351 it821x_clock_strategy(drive);
352 it821x_program_udma(drive, itdev->udma[unit]);
357 * config_it821x_chipset_for_pio - set drive timings
358 * @drive: drive to tune
359 * @speed we want
361 * Compute the best pio mode we can for a given device. We must
362 * pick a speed that does not cause problems with the other device
363 * on the cable.
366 static void config_it821x_chipset_for_pio (ide_drive_t *drive, byte set_speed)
368 u8 unit = drive->select.b.unit;
369 ide_hwif_t *hwif = drive->hwif;
370 ide_drive_t *pair = &hwif->drives[1-unit];
371 u8 speed = 0, set_pio = ide_get_best_pio_mode(drive, 255, 5, NULL);
372 u8 pair_pio;
374 /* We have to deal with this mess in pairs */
375 if(pair != NULL) {
376 pair_pio = ide_get_best_pio_mode(pair, 255, 5, NULL);
377 /* Trim PIO to the slowest of the master/slave */
378 if(pair_pio < set_pio)
379 set_pio = pair_pio;
381 it821x_tuneproc(drive, set_pio);
382 speed = XFER_PIO_0 + set_pio;
383 /* XXX - We trim to the lowest of the pair so the other drive
384 will always be fine at this point until we do hotplug passthru */
386 if (set_speed)
387 (void) ide_config_drive_speed(drive, speed);
391 * it821x_dma_read - DMA hook
392 * @drive: drive for DMA
394 * The IT821x has a single timing register for MWDMA and for PIO
395 * operations. As we flip back and forth we have to reload the
396 * clock. In addition the rev 0x10 device only works if the same
397 * timing value is loaded into the master and slave UDMA clock
398 * so we must also reload that.
400 * FIXME: we could figure out in advance if we need to do reloads
403 static void it821x_dma_start(ide_drive_t *drive)
405 ide_hwif_t *hwif = drive->hwif;
406 struct it821x_dev *itdev = ide_get_hwifdata(hwif);
407 int unit = drive->select.b.unit;
408 if(itdev->mwdma[unit] != MWDMA_OFF)
409 it821x_program(drive, itdev->mwdma[unit]);
410 else if(itdev->udma[unit] != UDMA_OFF && itdev->timing10)
411 it821x_program_udma(drive, itdev->udma[unit]);
412 ide_dma_start(drive);
416 * it821x_dma_write - DMA hook
417 * @drive: drive for DMA stop
419 * The IT821x has a single timing register for MWDMA and for PIO
420 * operations. As we flip back and forth we have to reload the
421 * clock.
424 static int it821x_dma_end(ide_drive_t *drive)
426 ide_hwif_t *hwif = drive->hwif;
427 int unit = drive->select.b.unit;
428 struct it821x_dev *itdev = ide_get_hwifdata(hwif);
429 int ret = __ide_dma_end(drive);
430 if(itdev->mwdma[unit] != MWDMA_OFF)
431 it821x_program(drive, itdev->pio[unit]);
432 return ret;
437 * it821x_tune_chipset - set controller timings
438 * @drive: Drive to set up
439 * @xferspeed: speed we want to achieve
441 * Tune the ITE chipset for the desired mode. If we can't achieve
442 * the desired mode then tune for a lower one, but ultimately
443 * make the thing work.
446 static int it821x_tune_chipset (ide_drive_t *drive, byte xferspeed)
449 ide_hwif_t *hwif = drive->hwif;
450 struct it821x_dev *itdev = ide_get_hwifdata(hwif);
451 u8 speed = ide_rate_filter(it821x_ratemask(drive), xferspeed);
453 if(!itdev->smart) {
454 switch(speed) {
455 case XFER_PIO_4:
456 case XFER_PIO_3:
457 case XFER_PIO_2:
458 case XFER_PIO_1:
459 case XFER_PIO_0:
460 it821x_tuneproc(drive, (speed - XFER_PIO_0));
461 break;
462 /* MWDMA tuning is really hard because our MWDMA and PIO
463 timings are kept in the same place. We can switch in the
464 host dma on/off callbacks */
465 case XFER_MW_DMA_2:
466 case XFER_MW_DMA_1:
467 case XFER_MW_DMA_0:
468 it821x_tune_mwdma(drive, (speed - XFER_MW_DMA_0));
469 break;
470 case XFER_UDMA_6:
471 case XFER_UDMA_5:
472 case XFER_UDMA_4:
473 case XFER_UDMA_3:
474 case XFER_UDMA_2:
475 case XFER_UDMA_1:
476 case XFER_UDMA_0:
477 it821x_tune_udma(drive, (speed - XFER_UDMA_0));
478 break;
479 default:
480 return 1;
484 * In smart mode the clocking is done by the host controller
485 * snooping the mode we picked. The rest of it is not our problem
487 return ide_config_drive_speed(drive, speed);
491 * config_chipset_for_dma - configure for DMA
492 * @drive: drive to configure
494 * Called by the IDE layer when it wants the timings set up.
497 static int config_chipset_for_dma (ide_drive_t *drive)
499 u8 speed = ide_dma_speed(drive, it821x_ratemask(drive));
501 if (speed) {
502 config_it821x_chipset_for_pio(drive, 0);
503 it821x_tune_chipset(drive, speed);
505 return ide_dma_enable(drive);
508 return 0;
512 * it821x_configure_drive_for_dma - set up for DMA transfers
513 * @drive: drive we are going to set up
515 * Set up the drive for DMA, tune the controller and drive as
516 * required. If the drive isn't suitable for DMA or we hit
517 * other problems then we will drop down to PIO and set up
518 * PIO appropriately
521 static int it821x_config_drive_for_dma (ide_drive_t *drive)
523 if (ide_use_dma(drive) && config_chipset_for_dma(drive))
524 return 0;
526 config_it821x_chipset_for_pio(drive, 1);
528 return -1;
532 * ata66_it821x - check for 80 pin cable
533 * @hwif: interface to check
535 * Check for the presence of an ATA66 capable cable on the
536 * interface. Problematic as it seems some cards don't have
537 * the needed logic onboard.
540 static unsigned int __devinit ata66_it821x(ide_hwif_t *hwif)
542 /* The reference driver also only does disk side */
543 return 1;
547 * it821x_fixup - post init callback
548 * @hwif: interface
550 * This callback is run after the drives have been probed but
551 * before anything gets attached. It allows drivers to do any
552 * final tuning that is needed, or fixups to work around bugs.
555 static void __devinit it821x_fixups(ide_hwif_t *hwif)
557 struct it821x_dev *itdev = ide_get_hwifdata(hwif);
558 int i;
560 if(!itdev->smart) {
562 * If we are in pass through mode then not much
563 * needs to be done, but we do bother to clear the
564 * IRQ mask as we may well be in PIO (eg rev 0x10)
565 * for now and we know unmasking is safe on this chipset.
567 for (i = 0; i < 2; i++) {
568 ide_drive_t *drive = &hwif->drives[i];
569 if(drive->present)
570 drive->unmask = 1;
572 return;
575 * Perform fixups on smart mode. We need to "lose" some
576 * capabilities the firmware lacks but does not filter, and
577 * also patch up some capability bits that it forgets to set
578 * in RAID mode.
581 for(i = 0; i < 2; i++) {
582 ide_drive_t *drive = &hwif->drives[i];
583 struct hd_driveid *id;
584 u16 *idbits;
586 if(!drive->present)
587 continue;
588 id = drive->id;
589 idbits = (u16 *)drive->id;
591 /* Check for RAID v native */
592 if(strstr(id->model, "Integrated Technology Express")) {
593 /* In raid mode the ident block is slightly buggy
594 We need to set the bits so that the IDE layer knows
595 LBA28. LBA48 and DMA ar valid */
596 id->capability |= 3; /* LBA28, DMA */
597 id->command_set_2 |= 0x0400; /* LBA48 valid */
598 id->cfs_enable_2 |= 0x0400; /* LBA48 on */
599 /* Reporting logic */
600 printk(KERN_INFO "%s: IT8212 %sRAID %d volume",
601 drive->name,
602 idbits[147] ? "Bootable ":"",
603 idbits[129]);
604 if(idbits[129] != 1)
605 printk("(%dK stripe)", idbits[146]);
606 printk(".\n");
607 /* Now the core code will have wrongly decided no DMA
608 so we need to fix this */
609 hwif->dma_off_quietly(drive);
610 #ifdef CONFIG_IDEDMA_ONLYDISK
611 if (drive->media == ide_disk)
612 #endif
613 ide_set_dma(drive);
614 } else {
615 /* Non RAID volume. Fixups to stop the core code
616 doing unsupported things */
617 id->field_valid &= 1;
618 id->queue_depth = 0;
619 id->command_set_1 = 0;
620 id->command_set_2 &= 0xC400;
621 id->cfsse &= 0xC000;
622 id->cfs_enable_1 = 0;
623 id->cfs_enable_2 &= 0xC400;
624 id->csf_default &= 0xC000;
625 id->word127 = 0;
626 id->dlf = 0;
627 id->csfo = 0;
628 id->cfa_power = 0;
629 printk(KERN_INFO "%s: Performing identify fixups.\n",
630 drive->name);
637 * init_hwif_it821x - set up hwif structs
638 * @hwif: interface to set up
640 * We do the basic set up of the interface structure. The IT8212
641 * requires several custom handlers so we override the default
642 * ide DMA handlers appropriately
645 static void __devinit init_hwif_it821x(ide_hwif_t *hwif)
647 struct it821x_dev *idev = kzalloc(sizeof(struct it821x_dev), GFP_KERNEL);
648 u8 conf;
650 if(idev == NULL) {
651 printk(KERN_ERR "it821x: out of memory, falling back to legacy behaviour.\n");
652 goto fallback;
654 ide_set_hwifdata(hwif, idev);
656 hwif->atapi_dma = 1;
658 pci_read_config_byte(hwif->pci_dev, 0x50, &conf);
659 if(conf & 1) {
660 idev->smart = 1;
661 hwif->atapi_dma = 0;
662 /* Long I/O's although allowed in LBA48 space cause the
663 onboard firmware to enter the twighlight zone */
664 hwif->rqsize = 256;
667 /* Pull the current clocks from 0x50 also */
668 if (conf & (1 << (1 + hwif->channel)))
669 idev->clock_mode = ATA_50;
670 else
671 idev->clock_mode = ATA_66;
673 idev->want[0][1] = ATA_ANY;
674 idev->want[1][1] = ATA_ANY;
677 * Not in the docs but according to the reference driver
678 * this is neccessary.
681 pci_read_config_byte(hwif->pci_dev, 0x08, &conf);
682 if(conf == 0x10) {
683 idev->timing10 = 1;
684 hwif->atapi_dma = 0;
685 if(!idev->smart)
686 printk(KERN_WARNING "it821x: Revision 0x10, workarounds activated.\n");
689 hwif->speedproc = &it821x_tune_chipset;
690 hwif->tuneproc = &it821x_tuneproc;
692 /* MWDMA/PIO clock switching for pass through mode */
693 if(!idev->smart) {
694 hwif->dma_start = &it821x_dma_start;
695 hwif->ide_dma_end = &it821x_dma_end;
698 hwif->drives[0].autotune = 1;
699 hwif->drives[1].autotune = 1;
701 if (!hwif->dma_base)
702 goto fallback;
704 hwif->ultra_mask = 0x7f;
705 hwif->mwdma_mask = 0x07;
706 hwif->swdma_mask = 0x07;
708 hwif->ide_dma_check = &it821x_config_drive_for_dma;
709 if (!(hwif->udma_four))
710 hwif->udma_four = ata66_it821x(hwif);
713 * The BIOS often doesn't set up DMA on this controller
714 * so we always do it.
717 hwif->autodma = 1;
718 hwif->drives[0].autodma = hwif->autodma;
719 hwif->drives[1].autodma = hwif->autodma;
720 return;
721 fallback:
722 hwif->autodma = 0;
723 return;
726 static void __devinit it8212_disable_raid(struct pci_dev *dev)
728 /* Reset local CPU, and set BIOS not ready */
729 pci_write_config_byte(dev, 0x5E, 0x01);
731 /* Set to bypass mode, and reset PCI bus */
732 pci_write_config_byte(dev, 0x50, 0x00);
733 pci_write_config_word(dev, PCI_COMMAND,
734 PCI_COMMAND_PARITY | PCI_COMMAND_IO |
735 PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER);
736 pci_write_config_word(dev, 0x40, 0xA0F3);
738 pci_write_config_dword(dev,0x4C, 0x02040204);
739 pci_write_config_byte(dev, 0x42, 0x36);
740 pci_write_config_byte(dev, PCI_LATENCY_TIMER, 0x20);
743 static unsigned int __devinit init_chipset_it821x(struct pci_dev *dev, const char *name)
745 u8 conf;
746 static char *mode[2] = { "pass through", "smart" };
748 /* Force the card into bypass mode if so requested */
749 if (it8212_noraid) {
750 printk(KERN_INFO "it8212: forcing bypass mode.\n");
751 it8212_disable_raid(dev);
753 pci_read_config_byte(dev, 0x50, &conf);
754 printk(KERN_INFO "it821x: controller in %s mode.\n", mode[conf & 1]);
755 return 0;
759 #define DECLARE_ITE_DEV(name_str) \
761 .name = name_str, \
762 .init_chipset = init_chipset_it821x, \
763 .init_hwif = init_hwif_it821x, \
764 .channels = 2, \
765 .autodma = AUTODMA, \
766 .bootable = ON_BOARD, \
767 .fixup = it821x_fixups \
770 static ide_pci_device_t it821x_chipsets[] __devinitdata = {
771 /* 0 */ DECLARE_ITE_DEV("IT8212"),
775 * it821x_init_one - pci layer discovery entry
776 * @dev: PCI device
777 * @id: ident table entry
779 * Called by the PCI code when it finds an ITE821x controller.
780 * We then use the IDE PCI generic helper to do most of the work.
783 static int __devinit it821x_init_one(struct pci_dev *dev, const struct pci_device_id *id)
785 ide_setup_pci_device(dev, &it821x_chipsets[id->driver_data]);
786 return 0;
789 static struct pci_device_id it821x_pci_tbl[] = {
790 { PCI_VENDOR_ID_ITE, PCI_DEVICE_ID_ITE_8211, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
791 { PCI_VENDOR_ID_ITE, PCI_DEVICE_ID_ITE_8212, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
792 { 0, },
795 MODULE_DEVICE_TABLE(pci, it821x_pci_tbl);
797 static struct pci_driver driver = {
798 .name = "ITE821x IDE",
799 .id_table = it821x_pci_tbl,
800 .probe = it821x_init_one,
803 static int __init it821x_ide_init(void)
805 return ide_pci_register_driver(&driver);
808 module_init(it821x_ide_init);
810 module_param_named(noraid, it8212_noraid, int, S_IRUGO);
811 MODULE_PARM_DESC(it8212_noraid, "Force card into bypass mode");
813 MODULE_AUTHOR("Alan Cox");
814 MODULE_DESCRIPTION("PCI driver module for the ITE 821x");
815 MODULE_LICENSE("GPL");