it821x.c 22 KB

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