it821x.c 20 KB

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