it821x.c 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770
  1. /*
  2. * linux/drivers/ide/pci/it821x.c Version 0.10 Mar 10 2007
  3. *
  4. * Copyright (C) 2004 Red Hat <alan@redhat.com>
  5. * Copyright (C) 2007 Bartlomiej Zolnierkiewicz
  6. *
  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.
  9. *
  10. * Documentation available from
  11. * http://www.ite.com.tw/pc/IT8212F_V04.pdf
  12. * Some other documents are NDA.
  13. *
  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.
  20. *
  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
  31. *
  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.
  38. *
  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.
  43. *
  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.
  49. *
  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.
  56. *
  57. * It seems the smart mode is a win for RAID1/RAID10 but otherwise not.
  58. *
  59. * TODO
  60. * - ATAPI UDMA is ok but not MWDMA it seems
  61. * - RAID configuration ioctls
  62. * - Move to libata once it grows up
  63. */
  64. #include <linux/types.h>
  65. #include <linux/module.h>
  66. #include <linux/pci.h>
  67. #include <linux/delay.h>
  68. #include <linux/hdreg.h>
  69. #include <linux/ide.h>
  70. #include <linux/init.h>
  71. #include <asm/io.h>
  72. struct it821x_dev
  73. {
  74. unsigned int smart:1, /* Are we in smart raid mode */
  75. timing10:1; /* Rev 0x10 */
  76. u8 clock_mode; /* 0, ATA_50 or ATA_66 */
  77. u8 want[2][2]; /* Mode/Pri log for master slave */
  78. /* We need these for switching the clock when DMA goes on/off
  79. The high byte is the 66Mhz timing */
  80. u16 pio[2]; /* Cached PIO values */
  81. u16 mwdma[2]; /* Cached MWDMA values */
  82. u16 udma[2]; /* Cached UDMA values (per drive) */
  83. };
  84. #define ATA_66 0
  85. #define ATA_50 1
  86. #define ATA_ANY 2
  87. #define UDMA_OFF 0
  88. #define MWDMA_OFF 0
  89. /*
  90. * We allow users to force the card into non raid mode without
  91. * flashing the alternative BIOS. This is also neccessary right now
  92. * for embedded platforms that cannot run a PC BIOS but are using this
  93. * device.
  94. */
  95. static int it8212_noraid;
  96. /**
  97. * it821x_program - program the PIO/MWDMA registers
  98. * @drive: drive to tune
  99. * @timing: timing info
  100. *
  101. * Program the PIO/MWDMA timing for this channel according to the
  102. * current clock.
  103. */
  104. static void it821x_program(ide_drive_t *drive, u16 timing)
  105. {
  106. ide_hwif_t *hwif = drive->hwif;
  107. struct it821x_dev *itdev = ide_get_hwifdata(hwif);
  108. int channel = hwif->channel;
  109. u8 conf;
  110. /* Program PIO/MWDMA timing bits */
  111. if(itdev->clock_mode == ATA_66)
  112. conf = timing >> 8;
  113. else
  114. conf = timing & 0xFF;
  115. pci_write_config_byte(hwif->pci_dev, 0x54 + 4 * channel, conf);
  116. }
  117. /**
  118. * it821x_program_udma - program the UDMA registers
  119. * @drive: drive to tune
  120. * @timing: timing info
  121. *
  122. * Program the UDMA timing for this drive according to the
  123. * current clock.
  124. */
  125. static void it821x_program_udma(ide_drive_t *drive, u16 timing)
  126. {
  127. ide_hwif_t *hwif = drive->hwif;
  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(hwif->pci_dev, 0x56 + 4 * channel + unit, conf);
  139. else {
  140. pci_write_config_byte(hwif->pci_dev, 0x56 + 4 * channel, conf);
  141. pci_write_config_byte(hwif->pci_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 it821x_dev *itdev = ide_get_hwifdata(hwif);
  155. u8 unit = drive->select.b.unit;
  156. ide_drive_t *pair = &hwif->drives[1-unit];
  157. int clock, altclock;
  158. u8 v;
  159. int sel = 0;
  160. if(itdev->want[0][0] > itdev->want[1][0]) {
  161. clock = itdev->want[0][1];
  162. altclock = itdev->want[1][1];
  163. } else {
  164. clock = itdev->want[1][1];
  165. altclock = itdev->want[0][1];
  166. }
  167. /*
  168. * if both clocks can be used for the mode with the higher priority
  169. * use the clock needed by the mode with the lower priority
  170. */
  171. if (clock == ATA_ANY)
  172. clock = altclock;
  173. /* Nobody cares - keep the same clock */
  174. if(clock == ATA_ANY)
  175. return;
  176. /* No change */
  177. if(clock == itdev->clock_mode)
  178. return;
  179. /* Load this into the controller ? */
  180. if(clock == ATA_66)
  181. itdev->clock_mode = ATA_66;
  182. else {
  183. itdev->clock_mode = ATA_50;
  184. sel = 1;
  185. }
  186. pci_read_config_byte(hwif->pci_dev, 0x50, &v);
  187. v &= ~(1 << (1 + hwif->channel));
  188. v |= sel << (1 + hwif->channel);
  189. pci_write_config_byte(hwif->pci_dev, 0x50, v);
  190. /*
  191. * Reprogram the UDMA/PIO of the pair drive for the switch
  192. * MWDMA will be dealt with by the dma switcher
  193. */
  194. if(pair && itdev->udma[1-unit] != UDMA_OFF) {
  195. it821x_program_udma(pair, itdev->udma[1-unit]);
  196. it821x_program(pair, itdev->pio[1-unit]);
  197. }
  198. /*
  199. * Reprogram the UDMA/PIO of our drive for the switch.
  200. * MWDMA will be dealt with by the dma switcher
  201. */
  202. if(itdev->udma[unit] != UDMA_OFF) {
  203. it821x_program_udma(drive, itdev->udma[unit]);
  204. it821x_program(drive, itdev->pio[unit]);
  205. }
  206. }
  207. /**
  208. * it821x_tunepio - tune a drive
  209. * @drive: drive to tune
  210. * @pio: the desired PIO mode
  211. *
  212. * Try to tune the drive/host to the desired PIO mode taking into
  213. * the consideration the maximum PIO mode supported by the other
  214. * device on the cable.
  215. */
  216. static int it821x_tunepio(ide_drive_t *drive, u8 set_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. /* Spec says 89 ref driver uses 88 */
  223. static u16 pio[] = { 0xAA88, 0xA382, 0xA181, 0x3332, 0x3121 };
  224. static u8 pio_want[] = { ATA_66, ATA_66, ATA_66, ATA_66, ATA_ANY };
  225. /*
  226. * Compute the best PIO mode we can for a given device. We must
  227. * pick a speed that does not cause problems with the other device
  228. * on the cable.
  229. */
  230. if (pair) {
  231. u8 pair_pio = ide_get_best_pio_mode(pair, 255, 4, NULL);
  232. /* trim PIO to the slowest of the master/slave */
  233. if (pair_pio < set_pio)
  234. set_pio = pair_pio;
  235. }
  236. if (itdev->smart)
  237. goto set_drive_speed;
  238. /* We prefer 66Mhz clock for PIO 0-3, don't care for PIO4 */
  239. itdev->want[unit][1] = pio_want[set_pio];
  240. itdev->want[unit][0] = 1; /* PIO is lowest priority */
  241. itdev->pio[unit] = pio[set_pio];
  242. it821x_clock_strategy(drive);
  243. it821x_program(drive, itdev->pio[unit]);
  244. set_drive_speed:
  245. return ide_config_drive_speed(drive, XFER_PIO_0 + set_pio);
  246. }
  247. static void it821x_tuneproc(ide_drive_t *drive, u8 pio)
  248. {
  249. pio = ide_get_best_pio_mode(drive, pio, 4, NULL);
  250. (void)it821x_tunepio(drive, pio);
  251. }
  252. /**
  253. * it821x_tune_mwdma - tune a channel for MWDMA
  254. * @drive: drive to set up
  255. * @mode_wanted: the target operating mode
  256. *
  257. * Load the timing settings for this device mode into the
  258. * controller when doing MWDMA in pass through mode. The caller
  259. * must manage the whole lack of per device MWDMA/PIO timings and
  260. * the shared MWDMA/PIO timing register.
  261. */
  262. static void it821x_tune_mwdma (ide_drive_t *drive, byte mode_wanted)
  263. {
  264. ide_hwif_t *hwif = drive->hwif;
  265. struct it821x_dev *itdev = (void *)ide_get_hwifdata(hwif);
  266. int unit = drive->select.b.unit;
  267. int channel = hwif->channel;
  268. u8 conf;
  269. static u16 dma[] = { 0x8866, 0x3222, 0x3121 };
  270. static u8 mwdma_want[] = { ATA_ANY, ATA_66, ATA_ANY };
  271. itdev->want[unit][1] = mwdma_want[mode_wanted];
  272. itdev->want[unit][0] = 2; /* MWDMA is low priority */
  273. itdev->mwdma[unit] = dma[mode_wanted];
  274. itdev->udma[unit] = UDMA_OFF;
  275. /* UDMA bits off - Revision 0x10 do them in pairs */
  276. pci_read_config_byte(hwif->pci_dev, 0x50, &conf);
  277. if(itdev->timing10)
  278. conf |= channel ? 0x60: 0x18;
  279. else
  280. conf |= 1 << (3 + 2 * channel + unit);
  281. pci_write_config_byte(hwif->pci_dev, 0x50, conf);
  282. it821x_clock_strategy(drive);
  283. /* FIXME: do we need to program this ? */
  284. /* it821x_program(drive, itdev->mwdma[unit]); */
  285. }
  286. /**
  287. * it821x_tune_udma - tune a channel for UDMA
  288. * @drive: drive to set up
  289. * @mode_wanted: the target operating mode
  290. *
  291. * Load the timing settings for this device mode into the
  292. * controller when doing UDMA modes in pass through.
  293. */
  294. static void it821x_tune_udma (ide_drive_t *drive, byte mode_wanted)
  295. {
  296. ide_hwif_t *hwif = drive->hwif;
  297. struct it821x_dev *itdev = ide_get_hwifdata(hwif);
  298. int unit = drive->select.b.unit;
  299. int channel = hwif->channel;
  300. u8 conf;
  301. static u16 udma[] = { 0x4433, 0x4231, 0x3121, 0x2121, 0x1111, 0x2211, 0x1111 };
  302. static u8 udma_want[] = { ATA_ANY, ATA_50, ATA_ANY, ATA_66, ATA_66, ATA_50, ATA_66 };
  303. itdev->want[unit][1] = udma_want[mode_wanted];
  304. itdev->want[unit][0] = 3; /* UDMA is high priority */
  305. itdev->mwdma[unit] = MWDMA_OFF;
  306. itdev->udma[unit] = udma[mode_wanted];
  307. if(mode_wanted >= 5)
  308. itdev->udma[unit] |= 0x8080; /* UDMA 5/6 select on */
  309. /* UDMA on. Again revision 0x10 must do the pair */
  310. pci_read_config_byte(hwif->pci_dev, 0x50, &conf);
  311. if(itdev->timing10)
  312. conf &= channel ? 0x9F: 0xE7;
  313. else
  314. conf &= ~ (1 << (3 + 2 * channel + unit));
  315. pci_write_config_byte(hwif->pci_dev, 0x50, conf);
  316. it821x_clock_strategy(drive);
  317. it821x_program_udma(drive, itdev->udma[unit]);
  318. }
  319. /**
  320. * it821x_dma_read - DMA hook
  321. * @drive: drive for DMA
  322. *
  323. * The IT821x has a single timing register for MWDMA and for PIO
  324. * operations. As we flip back and forth we have to reload the
  325. * clock. In addition the rev 0x10 device only works if the same
  326. * timing value is loaded into the master and slave UDMA clock
  327. * so we must also reload that.
  328. *
  329. * FIXME: we could figure out in advance if we need to do reloads
  330. */
  331. static void it821x_dma_start(ide_drive_t *drive)
  332. {
  333. ide_hwif_t *hwif = drive->hwif;
  334. struct it821x_dev *itdev = ide_get_hwifdata(hwif);
  335. int unit = drive->select.b.unit;
  336. if(itdev->mwdma[unit] != MWDMA_OFF)
  337. it821x_program(drive, itdev->mwdma[unit]);
  338. else if(itdev->udma[unit] != UDMA_OFF && itdev->timing10)
  339. it821x_program_udma(drive, itdev->udma[unit]);
  340. ide_dma_start(drive);
  341. }
  342. /**
  343. * it821x_dma_write - DMA hook
  344. * @drive: drive for DMA stop
  345. *
  346. * The IT821x has a single timing register for MWDMA and for PIO
  347. * operations. As we flip back and forth we have to reload the
  348. * clock.
  349. */
  350. static int it821x_dma_end(ide_drive_t *drive)
  351. {
  352. ide_hwif_t *hwif = drive->hwif;
  353. int unit = drive->select.b.unit;
  354. struct it821x_dev *itdev = ide_get_hwifdata(hwif);
  355. int ret = __ide_dma_end(drive);
  356. if(itdev->mwdma[unit] != MWDMA_OFF)
  357. it821x_program(drive, itdev->pio[unit]);
  358. return ret;
  359. }
  360. /**
  361. * it821x_tune_chipset - set controller timings
  362. * @drive: Drive to set up
  363. * @xferspeed: speed we want to achieve
  364. *
  365. * Tune the ITE chipset for the desired mode. If we can't achieve
  366. * the desired mode then tune for a lower one, but ultimately
  367. * make the thing work.
  368. */
  369. static int it821x_tune_chipset (ide_drive_t *drive, byte xferspeed)
  370. {
  371. ide_hwif_t *hwif = drive->hwif;
  372. struct it821x_dev *itdev = ide_get_hwifdata(hwif);
  373. u8 speed = ide_rate_filter(drive, xferspeed);
  374. switch (speed) {
  375. case XFER_PIO_4:
  376. case XFER_PIO_3:
  377. case XFER_PIO_2:
  378. case XFER_PIO_1:
  379. case XFER_PIO_0:
  380. return it821x_tunepio(drive, speed - XFER_PIO_0);
  381. }
  382. if (itdev->smart == 0) {
  383. switch (speed) {
  384. /* MWDMA tuning is really hard because our MWDMA and PIO
  385. timings are kept in the same place. We can switch in the
  386. host dma on/off callbacks */
  387. case XFER_MW_DMA_2:
  388. case XFER_MW_DMA_1:
  389. case XFER_MW_DMA_0:
  390. it821x_tune_mwdma(drive, (speed - XFER_MW_DMA_0));
  391. break;
  392. case XFER_UDMA_6:
  393. case XFER_UDMA_5:
  394. case XFER_UDMA_4:
  395. case XFER_UDMA_3:
  396. case XFER_UDMA_2:
  397. case XFER_UDMA_1:
  398. case XFER_UDMA_0:
  399. it821x_tune_udma(drive, (speed - XFER_UDMA_0));
  400. break;
  401. default:
  402. return 1;
  403. }
  404. }
  405. /*
  406. * In smart mode the clocking is done by the host controller
  407. * snooping the mode we picked. The rest of it is not our problem
  408. */
  409. return ide_config_drive_speed(drive, speed);
  410. }
  411. /**
  412. * it821x_configure_drive_for_dma - set up for DMA transfers
  413. * @drive: drive we are going to set up
  414. *
  415. * Set up the drive for DMA, tune the controller and drive as
  416. * required. If the drive isn't suitable for DMA or we hit
  417. * other problems then we will drop down to PIO and set up
  418. * PIO appropriately
  419. */
  420. static int it821x_config_drive_for_dma (ide_drive_t *drive)
  421. {
  422. if (ide_tune_dma(drive))
  423. return 0;
  424. it821x_tuneproc(drive, 255);
  425. return -1;
  426. }
  427. /**
  428. * ata66_it821x - check for 80 pin cable
  429. * @hwif: interface to check
  430. *
  431. * Check for the presence of an ATA66 capable cable on the
  432. * interface. Problematic as it seems some cards don't have
  433. * the needed logic onboard.
  434. */
  435. static unsigned int __devinit ata66_it821x(ide_hwif_t *hwif)
  436. {
  437. /* The reference driver also only does disk side */
  438. return 1;
  439. }
  440. /**
  441. * it821x_fixup - post init callback
  442. * @hwif: interface
  443. *
  444. * This callback is run after the drives have been probed but
  445. * before anything gets attached. It allows drivers to do any
  446. * final tuning that is needed, or fixups to work around bugs.
  447. */
  448. static void __devinit it821x_fixups(ide_hwif_t *hwif)
  449. {
  450. struct it821x_dev *itdev = ide_get_hwifdata(hwif);
  451. int i;
  452. if(!itdev->smart) {
  453. /*
  454. * If we are in pass through mode then not much
  455. * needs to be done, but we do bother to clear the
  456. * IRQ mask as we may well be in PIO (eg rev 0x10)
  457. * for now and we know unmasking is safe on this chipset.
  458. */
  459. for (i = 0; i < 2; i++) {
  460. ide_drive_t *drive = &hwif->drives[i];
  461. if(drive->present)
  462. drive->unmask = 1;
  463. }
  464. return;
  465. }
  466. /*
  467. * Perform fixups on smart mode. We need to "lose" some
  468. * capabilities the firmware lacks but does not filter, and
  469. * also patch up some capability bits that it forgets to set
  470. * in RAID mode.
  471. */
  472. for(i = 0; i < 2; i++) {
  473. ide_drive_t *drive = &hwif->drives[i];
  474. struct hd_driveid *id;
  475. u16 *idbits;
  476. if(!drive->present)
  477. continue;
  478. id = drive->id;
  479. idbits = (u16 *)drive->id;
  480. /* Check for RAID v native */
  481. if(strstr(id->model, "Integrated Technology Express")) {
  482. /* In raid mode the ident block is slightly buggy
  483. We need to set the bits so that the IDE layer knows
  484. LBA28. LBA48 and DMA ar valid */
  485. id->capability |= 3; /* LBA28, DMA */
  486. id->command_set_2 |= 0x0400; /* LBA48 valid */
  487. id->cfs_enable_2 |= 0x0400; /* LBA48 on */
  488. /* Reporting logic */
  489. printk(KERN_INFO "%s: IT8212 %sRAID %d volume",
  490. drive->name,
  491. idbits[147] ? "Bootable ":"",
  492. idbits[129]);
  493. if(idbits[129] != 1)
  494. printk("(%dK stripe)", idbits[146]);
  495. printk(".\n");
  496. /* Now the core code will have wrongly decided no DMA
  497. so we need to fix this */
  498. hwif->dma_off_quietly(drive);
  499. #ifdef CONFIG_IDEDMA_ONLYDISK
  500. if (drive->media == ide_disk)
  501. #endif
  502. ide_set_dma(drive);
  503. } else {
  504. /* Non RAID volume. Fixups to stop the core code
  505. doing unsupported things */
  506. id->field_valid &= 1;
  507. id->queue_depth = 0;
  508. id->command_set_1 = 0;
  509. id->command_set_2 &= 0xC400;
  510. id->cfsse &= 0xC000;
  511. id->cfs_enable_1 = 0;
  512. id->cfs_enable_2 &= 0xC400;
  513. id->csf_default &= 0xC000;
  514. id->word127 = 0;
  515. id->dlf = 0;
  516. id->csfo = 0;
  517. id->cfa_power = 0;
  518. printk(KERN_INFO "%s: Performing identify fixups.\n",
  519. drive->name);
  520. }
  521. }
  522. }
  523. /**
  524. * init_hwif_it821x - set up hwif structs
  525. * @hwif: interface to set up
  526. *
  527. * We do the basic set up of the interface structure. The IT8212
  528. * requires several custom handlers so we override the default
  529. * ide DMA handlers appropriately
  530. */
  531. static void __devinit init_hwif_it821x(ide_hwif_t *hwif)
  532. {
  533. struct it821x_dev *idev = kzalloc(sizeof(struct it821x_dev), GFP_KERNEL);
  534. u8 conf;
  535. if(idev == NULL) {
  536. printk(KERN_ERR "it821x: out of memory, falling back to legacy behaviour.\n");
  537. goto fallback;
  538. }
  539. ide_set_hwifdata(hwif, idev);
  540. hwif->atapi_dma = 1;
  541. pci_read_config_byte(hwif->pci_dev, 0x50, &conf);
  542. if(conf & 1) {
  543. idev->smart = 1;
  544. hwif->atapi_dma = 0;
  545. /* Long I/O's although allowed in LBA48 space cause the
  546. onboard firmware to enter the twighlight zone */
  547. hwif->rqsize = 256;
  548. }
  549. /* Pull the current clocks from 0x50 also */
  550. if (conf & (1 << (1 + hwif->channel)))
  551. idev->clock_mode = ATA_50;
  552. else
  553. idev->clock_mode = ATA_66;
  554. idev->want[0][1] = ATA_ANY;
  555. idev->want[1][1] = ATA_ANY;
  556. /*
  557. * Not in the docs but according to the reference driver
  558. * this is neccessary.
  559. */
  560. pci_read_config_byte(hwif->pci_dev, 0x08, &conf);
  561. if(conf == 0x10) {
  562. idev->timing10 = 1;
  563. hwif->atapi_dma = 0;
  564. if(!idev->smart)
  565. printk(KERN_WARNING "it821x: Revision 0x10, workarounds activated.\n");
  566. }
  567. hwif->speedproc = &it821x_tune_chipset;
  568. hwif->tuneproc = &it821x_tuneproc;
  569. /* MWDMA/PIO clock switching for pass through mode */
  570. if(!idev->smart) {
  571. hwif->dma_start = &it821x_dma_start;
  572. hwif->ide_dma_end = &it821x_dma_end;
  573. }
  574. hwif->drives[0].autotune = 1;
  575. hwif->drives[1].autotune = 1;
  576. if (!hwif->dma_base)
  577. goto fallback;
  578. hwif->ultra_mask = 0x7f;
  579. hwif->mwdma_mask = 0x07;
  580. hwif->swdma_mask = 0x07;
  581. hwif->ide_dma_check = &it821x_config_drive_for_dma;
  582. if (!(hwif->udma_four))
  583. hwif->udma_four = ata66_it821x(hwif);
  584. /*
  585. * The BIOS often doesn't set up DMA on this controller
  586. * so we always do it.
  587. */
  588. hwif->autodma = 1;
  589. hwif->drives[0].autodma = hwif->autodma;
  590. hwif->drives[1].autodma = hwif->autodma;
  591. return;
  592. fallback:
  593. hwif->autodma = 0;
  594. return;
  595. }
  596. static void __devinit it8212_disable_raid(struct pci_dev *dev)
  597. {
  598. /* Reset local CPU, and set BIOS not ready */
  599. pci_write_config_byte(dev, 0x5E, 0x01);
  600. /* Set to bypass mode, and reset PCI bus */
  601. pci_write_config_byte(dev, 0x50, 0x00);
  602. pci_write_config_word(dev, PCI_COMMAND,
  603. PCI_COMMAND_PARITY | PCI_COMMAND_IO |
  604. PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER);
  605. pci_write_config_word(dev, 0x40, 0xA0F3);
  606. pci_write_config_dword(dev,0x4C, 0x02040204);
  607. pci_write_config_byte(dev, 0x42, 0x36);
  608. pci_write_config_byte(dev, PCI_LATENCY_TIMER, 0x20);
  609. }
  610. static unsigned int __devinit init_chipset_it821x(struct pci_dev *dev, const char *name)
  611. {
  612. u8 conf;
  613. static char *mode[2] = { "pass through", "smart" };
  614. /* Force the card into bypass mode if so requested */
  615. if (it8212_noraid) {
  616. printk(KERN_INFO "it8212: forcing bypass mode.\n");
  617. it8212_disable_raid(dev);
  618. }
  619. pci_read_config_byte(dev, 0x50, &conf);
  620. printk(KERN_INFO "it821x: controller in %s mode.\n", mode[conf & 1]);
  621. return 0;
  622. }
  623. #define DECLARE_ITE_DEV(name_str) \
  624. { \
  625. .name = name_str, \
  626. .init_chipset = init_chipset_it821x, \
  627. .init_hwif = init_hwif_it821x, \
  628. .channels = 2, \
  629. .autodma = AUTODMA, \
  630. .bootable = ON_BOARD, \
  631. .fixup = it821x_fixups \
  632. }
  633. static ide_pci_device_t it821x_chipsets[] __devinitdata = {
  634. /* 0 */ DECLARE_ITE_DEV("IT8212"),
  635. };
  636. /**
  637. * it821x_init_one - pci layer discovery entry
  638. * @dev: PCI device
  639. * @id: ident table entry
  640. *
  641. * Called by the PCI code when it finds an ITE821x controller.
  642. * We then use the IDE PCI generic helper to do most of the work.
  643. */
  644. static int __devinit it821x_init_one(struct pci_dev *dev, const struct pci_device_id *id)
  645. {
  646. ide_setup_pci_device(dev, &it821x_chipsets[id->driver_data]);
  647. return 0;
  648. }
  649. static struct pci_device_id it821x_pci_tbl[] = {
  650. { PCI_VENDOR_ID_ITE, PCI_DEVICE_ID_ITE_8211, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
  651. { PCI_VENDOR_ID_ITE, PCI_DEVICE_ID_ITE_8212, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
  652. { 0, },
  653. };
  654. MODULE_DEVICE_TABLE(pci, it821x_pci_tbl);
  655. static struct pci_driver driver = {
  656. .name = "ITE821x IDE",
  657. .id_table = it821x_pci_tbl,
  658. .probe = it821x_init_one,
  659. };
  660. static int __init it821x_ide_init(void)
  661. {
  662. return ide_pci_register_driver(&driver);
  663. }
  664. module_init(it821x_ide_init);
  665. module_param_named(noraid, it8212_noraid, int, S_IRUGO);
  666. MODULE_PARM_DESC(it8212_noraid, "Force card into bypass mode");
  667. MODULE_AUTHOR("Alan Cox");
  668. MODULE_DESCRIPTION("PCI driver module for the ITE 821x");
  669. MODULE_LICENSE("GPL");