it821x.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677
  1. /*
  2. * Copyright (C) 2004 Red Hat <alan@redhat.com>
  3. * Copyright (C) 2007 Bartlomiej Zolnierkiewicz
  4. *
  5. * May be copied or modified under the terms of the GNU General Public License
  6. * Based in part on the ITE vendor provided SCSI driver.
  7. *
  8. * Documentation available from
  9. * http://www.ite.com.tw/pc/IT8212F_V04.pdf
  10. * Some other documents are NDA.
  11. *
  12. * The ITE8212 isn't exactly a standard IDE controller. It has two
  13. * modes. In pass through mode then it is an IDE controller. In its smart
  14. * mode its actually quite a capable hardware raid controller disguised
  15. * as an IDE controller. Smart mode only understands DMA read/write and
  16. * identify, none of the fancier commands apply. The IT8211 is identical
  17. * in other respects but lacks the raid mode.
  18. *
  19. * Errata:
  20. * o Rev 0x10 also requires master/slave hold the same DMA timings and
  21. * cannot do ATAPI MWDMA.
  22. * o The identify data for raid volumes lacks CHS info (technically ok)
  23. * but also fails to set the LBA28 and other bits. We fix these in
  24. * the IDE probe quirk code.
  25. * o If you write LBA48 sized I/O's (ie > 256 sector) in smart mode
  26. * raid then the controller firmware dies
  27. * o Smart mode without RAID doesn't clear all the necessary identify
  28. * bits to reduce the command set to the one used
  29. *
  30. * This has a few impacts on the driver
  31. * - In pass through mode we do all the work you would expect
  32. * - In smart mode the clocking set up is done by the controller generally
  33. * but we must watch the other limits and filter.
  34. * - There are a few extra vendor commands that actually talk to the
  35. * controller but only work PIO with no IRQ.
  36. *
  37. * Vendor areas of the identify block in smart mode are used for the
  38. * timing and policy set up. Each HDD in raid mode also has a serial
  39. * block on the disk. The hardware extra commands are get/set chip status,
  40. * rebuild, get rebuild status.
  41. *
  42. * In Linux the driver supports pass through mode as if the device was
  43. * just another IDE controller. If the smart mode is running then
  44. * volumes are managed by the controller firmware and each IDE "disk"
  45. * is a raid volume. Even more cute - the controller can do automated
  46. * hotplug and rebuild.
  47. *
  48. * The pass through controller itself is a little demented. It has a
  49. * flaw that it has a single set of PIO/MWDMA timings per channel so
  50. * non UDMA devices restrict each others performance. It also has a
  51. * single clock source per channel so mixed UDMA100/133 performance
  52. * isn't perfect and we have to pick a clock. Thankfully none of this
  53. * matters in smart mode. ATAPI DMA is not currently supported.
  54. *
  55. * It seems the smart mode is a win for RAID1/RAID10 but otherwise not.
  56. *
  57. * TODO
  58. * - ATAPI UDMA is ok but not MWDMA it seems
  59. * - RAID configuration ioctls
  60. * - Move to libata once it grows up
  61. */
  62. #include <linux/types.h>
  63. #include <linux/module.h>
  64. #include <linux/pci.h>
  65. #include <linux/delay.h>
  66. #include <linux/hdreg.h>
  67. #include <linux/ide.h>
  68. #include <linux/init.h>
  69. #include <asm/io.h>
  70. struct it821x_dev
  71. {
  72. unsigned int smart:1, /* Are we in smart raid mode */
  73. timing10:1; /* Rev 0x10 */
  74. u8 clock_mode; /* 0, ATA_50 or ATA_66 */
  75. u8 want[2][2]; /* Mode/Pri log for master slave */
  76. /* We need these for switching the clock when DMA goes on/off
  77. The high byte is the 66Mhz timing */
  78. u16 pio[2]; /* Cached PIO values */
  79. u16 mwdma[2]; /* Cached MWDMA values */
  80. u16 udma[2]; /* Cached UDMA values (per drive) */
  81. };
  82. #define ATA_66 0
  83. #define ATA_50 1
  84. #define ATA_ANY 2
  85. #define UDMA_OFF 0
  86. #define MWDMA_OFF 0
  87. /*
  88. * We allow users to force the card into non raid mode without
  89. * flashing the alternative BIOS. This is also necessary right now
  90. * for embedded platforms that cannot run a PC BIOS but are using this
  91. * device.
  92. */
  93. static int it8212_noraid;
  94. /**
  95. * it821x_program - program the PIO/MWDMA registers
  96. * @drive: drive to tune
  97. * @timing: timing info
  98. *
  99. * Program the PIO/MWDMA timing for this channel according to the
  100. * current clock.
  101. */
  102. static void it821x_program(ide_drive_t *drive, u16 timing)
  103. {
  104. ide_hwif_t *hwif = drive->hwif;
  105. struct pci_dev *dev = to_pci_dev(hwif->dev);
  106. struct it821x_dev *itdev = ide_get_hwifdata(hwif);
  107. int channel = hwif->channel;
  108. u8 conf;
  109. /* Program PIO/MWDMA timing bits */
  110. if(itdev->clock_mode == ATA_66)
  111. conf = timing >> 8;
  112. else
  113. conf = timing & 0xFF;
  114. pci_write_config_byte(dev, 0x54 + 4 * channel, conf);
  115. }
  116. /**
  117. * it821x_program_udma - program the UDMA registers
  118. * @drive: drive to tune
  119. * @timing: timing info
  120. *
  121. * Program the UDMA timing for this drive according to the
  122. * current clock.
  123. */
  124. static void it821x_program_udma(ide_drive_t *drive, u16 timing)
  125. {
  126. ide_hwif_t *hwif = drive->hwif;
  127. struct pci_dev *dev = to_pci_dev(hwif->dev);
  128. struct it821x_dev *itdev = ide_get_hwifdata(hwif);
  129. int channel = hwif->channel;
  130. int unit = drive->select.b.unit;
  131. u8 conf;
  132. /* Program UDMA timing bits */
  133. if(itdev->clock_mode == ATA_66)
  134. conf = timing >> 8;
  135. else
  136. conf = timing & 0xFF;
  137. if (itdev->timing10 == 0)
  138. pci_write_config_byte(dev, 0x56 + 4 * channel + unit, conf);
  139. else {
  140. pci_write_config_byte(dev, 0x56 + 4 * channel, conf);
  141. pci_write_config_byte(dev, 0x56 + 4 * channel + 1, conf);
  142. }
  143. }
  144. /**
  145. * it821x_clock_strategy
  146. * @drive: drive to set up
  147. *
  148. * Select between the 50 and 66Mhz base clocks to get the best
  149. * results for this interface.
  150. */
  151. static void it821x_clock_strategy(ide_drive_t *drive)
  152. {
  153. ide_hwif_t *hwif = drive->hwif;
  154. struct pci_dev *dev = to_pci_dev(hwif->dev);
  155. struct it821x_dev *itdev = ide_get_hwifdata(hwif);
  156. u8 unit = drive->select.b.unit;
  157. ide_drive_t *pair = &hwif->drives[1-unit];
  158. int clock, altclock;
  159. u8 v;
  160. int sel = 0;
  161. if(itdev->want[0][0] > itdev->want[1][0]) {
  162. clock = itdev->want[0][1];
  163. altclock = itdev->want[1][1];
  164. } else {
  165. clock = itdev->want[1][1];
  166. altclock = itdev->want[0][1];
  167. }
  168. /*
  169. * if both clocks can be used for the mode with the higher priority
  170. * use the clock needed by the mode with the lower priority
  171. */
  172. if (clock == ATA_ANY)
  173. clock = altclock;
  174. /* Nobody cares - keep the same clock */
  175. if(clock == ATA_ANY)
  176. return;
  177. /* No change */
  178. if(clock == itdev->clock_mode)
  179. return;
  180. /* Load this into the controller ? */
  181. if(clock == ATA_66)
  182. itdev->clock_mode = ATA_66;
  183. else {
  184. itdev->clock_mode = ATA_50;
  185. sel = 1;
  186. }
  187. pci_read_config_byte(dev, 0x50, &v);
  188. v &= ~(1 << (1 + hwif->channel));
  189. v |= sel << (1 + hwif->channel);
  190. pci_write_config_byte(dev, 0x50, v);
  191. /*
  192. * Reprogram the UDMA/PIO of the pair drive for the switch
  193. * MWDMA will be dealt with by the dma switcher
  194. */
  195. if(pair && itdev->udma[1-unit] != UDMA_OFF) {
  196. it821x_program_udma(pair, itdev->udma[1-unit]);
  197. it821x_program(pair, itdev->pio[1-unit]);
  198. }
  199. /*
  200. * Reprogram the UDMA/PIO of our drive for the switch.
  201. * MWDMA will be dealt with by the dma switcher
  202. */
  203. if(itdev->udma[unit] != UDMA_OFF) {
  204. it821x_program_udma(drive, itdev->udma[unit]);
  205. it821x_program(drive, itdev->pio[unit]);
  206. }
  207. }
  208. /**
  209. * it821x_set_pio_mode - set host controller for PIO mode
  210. * @drive: drive
  211. * @pio: PIO mode number
  212. *
  213. * Tune the host to the desired PIO mode taking into the consideration
  214. * the maximum PIO mode supported by the other device on the cable.
  215. */
  216. static void it821x_set_pio_mode(ide_drive_t *drive, const u8 pio)
  217. {
  218. ide_hwif_t *hwif = drive->hwif;
  219. struct it821x_dev *itdev = ide_get_hwifdata(hwif);
  220. int unit = drive->select.b.unit;
  221. ide_drive_t *pair = &hwif->drives[1 - unit];
  222. u8 set_pio = pio;
  223. /* Spec says 89 ref driver uses 88 */
  224. static u16 pio_timings[]= { 0xAA88, 0xA382, 0xA181, 0x3332, 0x3121 };
  225. static u8 pio_want[] = { ATA_66, ATA_66, ATA_66, ATA_66, ATA_ANY };
  226. /*
  227. * Compute the best PIO mode we can for a given device. We must
  228. * pick a speed that does not cause problems with the other device
  229. * on the cable.
  230. */
  231. if (pair) {
  232. u8 pair_pio = ide_get_best_pio_mode(pair, 255, 4);
  233. /* trim PIO to the slowest of the master/slave */
  234. if (pair_pio < set_pio)
  235. set_pio = pair_pio;
  236. }
  237. /* We prefer 66Mhz clock for PIO 0-3, don't care for PIO4 */
  238. itdev->want[unit][1] = pio_want[set_pio];
  239. itdev->want[unit][0] = 1; /* PIO is lowest priority */
  240. itdev->pio[unit] = pio_timings[set_pio];
  241. it821x_clock_strategy(drive);
  242. it821x_program(drive, itdev->pio[unit]);
  243. }
  244. /**
  245. * it821x_tune_mwdma - tune a channel for MWDMA
  246. * @drive: drive to set up
  247. * @mode_wanted: the target operating mode
  248. *
  249. * Load the timing settings for this device mode into the
  250. * controller when doing MWDMA in pass through mode. The caller
  251. * must manage the whole lack of per device MWDMA/PIO timings and
  252. * the shared MWDMA/PIO timing register.
  253. */
  254. static void it821x_tune_mwdma (ide_drive_t *drive, byte mode_wanted)
  255. {
  256. ide_hwif_t *hwif = drive->hwif;
  257. struct pci_dev *dev = to_pci_dev(hwif->dev);
  258. struct it821x_dev *itdev = (void *)ide_get_hwifdata(hwif);
  259. int unit = drive->select.b.unit;
  260. int channel = hwif->channel;
  261. u8 conf;
  262. static u16 dma[] = { 0x8866, 0x3222, 0x3121 };
  263. static u8 mwdma_want[] = { ATA_ANY, ATA_66, ATA_ANY };
  264. itdev->want[unit][1] = mwdma_want[mode_wanted];
  265. itdev->want[unit][0] = 2; /* MWDMA is low priority */
  266. itdev->mwdma[unit] = dma[mode_wanted];
  267. itdev->udma[unit] = UDMA_OFF;
  268. /* UDMA bits off - Revision 0x10 do them in pairs */
  269. pci_read_config_byte(dev, 0x50, &conf);
  270. if (itdev->timing10)
  271. conf |= channel ? 0x60: 0x18;
  272. else
  273. conf |= 1 << (3 + 2 * channel + unit);
  274. pci_write_config_byte(dev, 0x50, conf);
  275. it821x_clock_strategy(drive);
  276. /* FIXME: do we need to program this ? */
  277. /* it821x_program(drive, itdev->mwdma[unit]); */
  278. }
  279. /**
  280. * it821x_tune_udma - tune a channel for UDMA
  281. * @drive: drive to set up
  282. * @mode_wanted: the target operating mode
  283. *
  284. * Load the timing settings for this device mode into the
  285. * controller when doing UDMA modes in pass through.
  286. */
  287. static void it821x_tune_udma (ide_drive_t *drive, byte mode_wanted)
  288. {
  289. ide_hwif_t *hwif = drive->hwif;
  290. struct pci_dev *dev = to_pci_dev(hwif->dev);
  291. struct it821x_dev *itdev = ide_get_hwifdata(hwif);
  292. int unit = drive->select.b.unit;
  293. int channel = hwif->channel;
  294. u8 conf;
  295. static u16 udma[] = { 0x4433, 0x4231, 0x3121, 0x2121, 0x1111, 0x2211, 0x1111 };
  296. static u8 udma_want[] = { ATA_ANY, ATA_50, ATA_ANY, ATA_66, ATA_66, ATA_50, ATA_66 };
  297. itdev->want[unit][1] = udma_want[mode_wanted];
  298. itdev->want[unit][0] = 3; /* UDMA is high priority */
  299. itdev->mwdma[unit] = MWDMA_OFF;
  300. itdev->udma[unit] = udma[mode_wanted];
  301. if(mode_wanted >= 5)
  302. itdev->udma[unit] |= 0x8080; /* UDMA 5/6 select on */
  303. /* UDMA on. Again revision 0x10 must do the pair */
  304. pci_read_config_byte(dev, 0x50, &conf);
  305. if (itdev->timing10)
  306. conf &= channel ? 0x9F: 0xE7;
  307. else
  308. conf &= ~ (1 << (3 + 2 * channel + unit));
  309. pci_write_config_byte(dev, 0x50, conf);
  310. it821x_clock_strategy(drive);
  311. it821x_program_udma(drive, itdev->udma[unit]);
  312. }
  313. /**
  314. * it821x_dma_read - DMA hook
  315. * @drive: drive for DMA
  316. *
  317. * The IT821x has a single timing register for MWDMA and for PIO
  318. * operations. As we flip back and forth we have to reload the
  319. * clock. In addition the rev 0x10 device only works if the same
  320. * timing value is loaded into the master and slave UDMA clock
  321. * so we must also reload that.
  322. *
  323. * FIXME: we could figure out in advance if we need to do reloads
  324. */
  325. static void it821x_dma_start(ide_drive_t *drive)
  326. {
  327. ide_hwif_t *hwif = drive->hwif;
  328. struct it821x_dev *itdev = ide_get_hwifdata(hwif);
  329. int unit = drive->select.b.unit;
  330. if(itdev->mwdma[unit] != MWDMA_OFF)
  331. it821x_program(drive, itdev->mwdma[unit]);
  332. else if(itdev->udma[unit] != UDMA_OFF && itdev->timing10)
  333. it821x_program_udma(drive, itdev->udma[unit]);
  334. ide_dma_start(drive);
  335. }
  336. /**
  337. * it821x_dma_write - DMA hook
  338. * @drive: drive for DMA stop
  339. *
  340. * The IT821x has a single timing register for MWDMA and for PIO
  341. * operations. As we flip back and forth we have to reload the
  342. * clock.
  343. */
  344. static int it821x_dma_end(ide_drive_t *drive)
  345. {
  346. ide_hwif_t *hwif = drive->hwif;
  347. int unit = drive->select.b.unit;
  348. struct it821x_dev *itdev = ide_get_hwifdata(hwif);
  349. int ret = __ide_dma_end(drive);
  350. if(itdev->mwdma[unit] != MWDMA_OFF)
  351. it821x_program(drive, itdev->pio[unit]);
  352. return ret;
  353. }
  354. /**
  355. * it821x_set_dma_mode - set host controller for DMA mode
  356. * @drive: drive
  357. * @speed: DMA mode
  358. *
  359. * Tune the ITE chipset for the desired DMA mode.
  360. */
  361. static void it821x_set_dma_mode(ide_drive_t *drive, const u8 speed)
  362. {
  363. /*
  364. * MWDMA tuning is really hard because our MWDMA and PIO
  365. * timings are kept in the same place. We can switch in the
  366. * host dma on/off callbacks.
  367. */
  368. if (speed >= XFER_UDMA_0 && speed <= XFER_UDMA_6)
  369. it821x_tune_udma(drive, speed - XFER_UDMA_0);
  370. else if (speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2)
  371. it821x_tune_mwdma(drive, speed - XFER_MW_DMA_0);
  372. }
  373. /**
  374. * ata66_it821x - check for 80 pin cable
  375. * @hwif: interface to check
  376. *
  377. * Check for the presence of an ATA66 capable cable on the
  378. * interface. Problematic as it seems some cards don't have
  379. * the needed logic onboard.
  380. */
  381. static u8 __devinit ata66_it821x(ide_hwif_t *hwif)
  382. {
  383. /* The reference driver also only does disk side */
  384. return ATA_CBL_PATA80;
  385. }
  386. /**
  387. * it821x_quirkproc - post init callback
  388. * @drive: drive
  389. *
  390. * This callback is run after the drive has been probed but
  391. * before anything gets attached. It allows drivers to do any
  392. * final tuning that is needed, or fixups to work around bugs.
  393. */
  394. static void __devinit it821x_quirkproc(ide_drive_t *drive)
  395. {
  396. struct it821x_dev *itdev = ide_get_hwifdata(drive->hwif);
  397. struct hd_driveid *id = drive->id;
  398. u16 *idbits = (u16 *)drive->id;
  399. if (!itdev->smart) {
  400. /*
  401. * If we are in pass through mode then not much
  402. * needs to be done, but we do bother to clear the
  403. * IRQ mask as we may well be in PIO (eg rev 0x10)
  404. * for now and we know unmasking is safe on this chipset.
  405. */
  406. drive->unmask = 1;
  407. } else {
  408. /*
  409. * Perform fixups on smart mode. We need to "lose" some
  410. * capabilities the firmware lacks but does not filter, and
  411. * also patch up some capability bits that it forgets to set
  412. * in RAID mode.
  413. */
  414. /* Check for RAID v native */
  415. if(strstr(id->model, "Integrated Technology Express")) {
  416. /* In raid mode the ident block is slightly buggy
  417. We need to set the bits so that the IDE layer knows
  418. LBA28. LBA48 and DMA ar valid */
  419. id->capability |= 3; /* LBA28, DMA */
  420. id->command_set_2 |= 0x0400; /* LBA48 valid */
  421. id->cfs_enable_2 |= 0x0400; /* LBA48 on */
  422. /* Reporting logic */
  423. printk(KERN_INFO "%s: IT8212 %sRAID %d volume",
  424. drive->name,
  425. idbits[147] ? "Bootable ":"",
  426. idbits[129]);
  427. if(idbits[129] != 1)
  428. printk("(%dK stripe)", idbits[146]);
  429. printk(".\n");
  430. } else {
  431. /* Non RAID volume. Fixups to stop the core code
  432. doing unsupported things */
  433. id->field_valid &= 3;
  434. id->queue_depth = 0;
  435. id->command_set_1 = 0;
  436. id->command_set_2 &= 0xC400;
  437. id->cfsse &= 0xC000;
  438. id->cfs_enable_1 = 0;
  439. id->cfs_enable_2 &= 0xC400;
  440. id->csf_default &= 0xC000;
  441. id->word127 = 0;
  442. id->dlf = 0;
  443. id->csfo = 0;
  444. id->cfa_power = 0;
  445. printk(KERN_INFO "%s: Performing identify fixups.\n",
  446. drive->name);
  447. }
  448. /*
  449. * Set MWDMA0 mode as enabled/support - just to tell
  450. * IDE core that DMA is supported (it821x hardware
  451. * takes care of DMA mode programming).
  452. */
  453. if (id->capability & 1) {
  454. id->dma_mword |= 0x0101;
  455. drive->current_speed = XFER_MW_DMA_0;
  456. }
  457. }
  458. }
  459. /**
  460. * init_hwif_it821x - set up hwif structs
  461. * @hwif: interface to set up
  462. *
  463. * We do the basic set up of the interface structure. The IT8212
  464. * requires several custom handlers so we override the default
  465. * ide DMA handlers appropriately
  466. */
  467. static void __devinit init_hwif_it821x(ide_hwif_t *hwif)
  468. {
  469. struct pci_dev *dev = to_pci_dev(hwif->dev);
  470. struct it821x_dev *idev = kzalloc(sizeof(struct it821x_dev), GFP_KERNEL);
  471. u8 conf;
  472. hwif->quirkproc = &it821x_quirkproc;
  473. if (idev == NULL) {
  474. printk(KERN_ERR "it821x: out of memory, falling back to legacy behaviour.\n");
  475. return;
  476. }
  477. ide_set_hwifdata(hwif, idev);
  478. pci_read_config_byte(dev, 0x50, &conf);
  479. if (conf & 1) {
  480. idev->smart = 1;
  481. hwif->host_flags |= IDE_HFLAG_NO_ATAPI_DMA;
  482. /* Long I/O's although allowed in LBA48 space cause the
  483. onboard firmware to enter the twighlight zone */
  484. hwif->rqsize = 256;
  485. }
  486. /* Pull the current clocks from 0x50 also */
  487. if (conf & (1 << (1 + hwif->channel)))
  488. idev->clock_mode = ATA_50;
  489. else
  490. idev->clock_mode = ATA_66;
  491. idev->want[0][1] = ATA_ANY;
  492. idev->want[1][1] = ATA_ANY;
  493. /*
  494. * Not in the docs but according to the reference driver
  495. * this is necessary.
  496. */
  497. pci_read_config_byte(dev, 0x08, &conf);
  498. if (conf == 0x10) {
  499. idev->timing10 = 1;
  500. hwif->host_flags |= IDE_HFLAG_NO_ATAPI_DMA;
  501. if (idev->smart == 0)
  502. printk(KERN_WARNING "it821x: Revision 0x10, workarounds activated.\n");
  503. }
  504. if (idev->smart == 0) {
  505. hwif->set_pio_mode = &it821x_set_pio_mode;
  506. hwif->set_dma_mode = &it821x_set_dma_mode;
  507. /* MWDMA/PIO clock switching for pass through mode */
  508. hwif->dma_start = &it821x_dma_start;
  509. hwif->ide_dma_end = &it821x_dma_end;
  510. } else
  511. hwif->host_flags |= IDE_HFLAG_NO_SET_MODE;
  512. hwif->cable_detect = ata66_it821x;
  513. if (hwif->dma_base == 0)
  514. return;
  515. hwif->ultra_mask = ATA_UDMA6;
  516. hwif->mwdma_mask = ATA_MWDMA2;
  517. }
  518. static void __devinit it8212_disable_raid(struct pci_dev *dev)
  519. {
  520. /* Reset local CPU, and set BIOS not ready */
  521. pci_write_config_byte(dev, 0x5E, 0x01);
  522. /* Set to bypass mode, and reset PCI bus */
  523. pci_write_config_byte(dev, 0x50, 0x00);
  524. pci_write_config_word(dev, PCI_COMMAND,
  525. PCI_COMMAND_PARITY | PCI_COMMAND_IO |
  526. PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER);
  527. pci_write_config_word(dev, 0x40, 0xA0F3);
  528. pci_write_config_dword(dev,0x4C, 0x02040204);
  529. pci_write_config_byte(dev, 0x42, 0x36);
  530. pci_write_config_byte(dev, PCI_LATENCY_TIMER, 0x20);
  531. }
  532. static unsigned int __devinit init_chipset_it821x(struct pci_dev *dev, const char *name)
  533. {
  534. u8 conf;
  535. static char *mode[2] = { "pass through", "smart" };
  536. /* Force the card into bypass mode if so requested */
  537. if (it8212_noraid) {
  538. printk(KERN_INFO "it8212: forcing bypass mode.\n");
  539. it8212_disable_raid(dev);
  540. }
  541. pci_read_config_byte(dev, 0x50, &conf);
  542. printk(KERN_INFO "it821x: controller in %s mode.\n", mode[conf & 1]);
  543. return 0;
  544. }
  545. #define DECLARE_ITE_DEV(name_str) \
  546. { \
  547. .name = name_str, \
  548. .init_chipset = init_chipset_it821x, \
  549. .init_hwif = init_hwif_it821x, \
  550. .host_flags = IDE_HFLAG_BOOTABLE, \
  551. .pio_mask = ATA_PIO4, \
  552. }
  553. static const struct ide_port_info it821x_chipsets[] __devinitdata = {
  554. /* 0 */ DECLARE_ITE_DEV("IT8212"),
  555. };
  556. /**
  557. * it821x_init_one - pci layer discovery entry
  558. * @dev: PCI device
  559. * @id: ident table entry
  560. *
  561. * Called by the PCI code when it finds an ITE821x controller.
  562. * We then use the IDE PCI generic helper to do most of the work.
  563. */
  564. static int __devinit it821x_init_one(struct pci_dev *dev, const struct pci_device_id *id)
  565. {
  566. return ide_setup_pci_device(dev, &it821x_chipsets[id->driver_data]);
  567. }
  568. static const struct pci_device_id it821x_pci_tbl[] = {
  569. { PCI_VDEVICE(ITE, PCI_DEVICE_ID_ITE_8211), 0 },
  570. { PCI_VDEVICE(ITE, PCI_DEVICE_ID_ITE_8212), 0 },
  571. { 0, },
  572. };
  573. MODULE_DEVICE_TABLE(pci, it821x_pci_tbl);
  574. static struct pci_driver driver = {
  575. .name = "ITE821x IDE",
  576. .id_table = it821x_pci_tbl,
  577. .probe = it821x_init_one,
  578. };
  579. static int __init it821x_ide_init(void)
  580. {
  581. return ide_pci_register_driver(&driver);
  582. }
  583. module_init(it821x_ide_init);
  584. module_param_named(noraid, it8212_noraid, int, S_IRUGO);
  585. MODULE_PARM_DESC(it8212_noraid, "Force card into bypass mode");
  586. MODULE_AUTHOR("Alan Cox");
  587. MODULE_DESCRIPTION("PCI driver module for the ITE 821x");
  588. MODULE_LICENSE("GPL");