it821x.c 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710
  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/hdreg.h>
  66. #include <linux/ide.h>
  67. #include <linux/init.h>
  68. #define DRV_NAME "it821x"
  69. struct it821x_dev
  70. {
  71. unsigned int smart:1, /* Are we in smart raid mode */
  72. timing10:1; /* Rev 0x10 */
  73. u8 clock_mode; /* 0, ATA_50 or ATA_66 */
  74. u8 want[2][2]; /* Mode/Pri log for master slave */
  75. /* We need these for switching the clock when DMA goes on/off
  76. The high byte is the 66Mhz timing */
  77. u16 pio[2]; /* Cached PIO values */
  78. u16 mwdma[2]; /* Cached MWDMA values */
  79. u16 udma[2]; /* Cached UDMA values (per drive) */
  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. int unit = drive->select.b.unit;
  130. u8 conf;
  131. /* Program UDMA timing bits */
  132. if(itdev->clock_mode == ATA_66)
  133. conf = timing >> 8;
  134. else
  135. conf = timing & 0xFF;
  136. if (itdev->timing10 == 0)
  137. pci_write_config_byte(dev, 0x56 + 4 * channel + unit, conf);
  138. else {
  139. pci_write_config_byte(dev, 0x56 + 4 * channel, conf);
  140. pci_write_config_byte(dev, 0x56 + 4 * channel + 1, conf);
  141. }
  142. }
  143. /**
  144. * it821x_clock_strategy
  145. * @drive: drive to set up
  146. *
  147. * Select between the 50 and 66Mhz base clocks to get the best
  148. * results for this interface.
  149. */
  150. static void it821x_clock_strategy(ide_drive_t *drive)
  151. {
  152. ide_hwif_t *hwif = drive->hwif;
  153. struct pci_dev *dev = to_pci_dev(hwif->dev);
  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(dev, 0x50, &v);
  187. v &= ~(1 << (1 + hwif->channel));
  188. v |= sel << (1 + hwif->channel);
  189. pci_write_config_byte(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_set_pio_mode - set host controller for PIO mode
  209. * @drive: drive
  210. * @pio: PIO mode number
  211. *
  212. * Tune the host to the desired PIO mode taking into the consideration
  213. * the maximum PIO mode supported by the other device on the cable.
  214. */
  215. static void it821x_set_pio_mode(ide_drive_t *drive, const u8 pio)
  216. {
  217. ide_hwif_t *hwif = drive->hwif;
  218. struct it821x_dev *itdev = ide_get_hwifdata(hwif);
  219. int unit = drive->select.b.unit;
  220. ide_drive_t *pair = &hwif->drives[1 - unit];
  221. u8 set_pio = pio;
  222. /* Spec says 89 ref driver uses 88 */
  223. static u16 pio_timings[]= { 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);
  232. /* trim PIO to the slowest of the master/slave */
  233. if (pair_pio < set_pio)
  234. set_pio = pair_pio;
  235. }
  236. /* We prefer 66Mhz clock for PIO 0-3, don't care for PIO4 */
  237. itdev->want[unit][1] = pio_want[set_pio];
  238. itdev->want[unit][0] = 1; /* PIO is lowest priority */
  239. itdev->pio[unit] = pio_timings[set_pio];
  240. it821x_clock_strategy(drive);
  241. it821x_program(drive, itdev->pio[unit]);
  242. }
  243. /**
  244. * it821x_tune_mwdma - tune a channel for MWDMA
  245. * @drive: drive to set up
  246. * @mode_wanted: the target operating mode
  247. *
  248. * Load the timing settings for this device mode into the
  249. * controller when doing MWDMA in pass through mode. The caller
  250. * must manage the whole lack of per device MWDMA/PIO timings and
  251. * the shared MWDMA/PIO timing register.
  252. */
  253. static void it821x_tune_mwdma (ide_drive_t *drive, byte mode_wanted)
  254. {
  255. ide_hwif_t *hwif = drive->hwif;
  256. struct pci_dev *dev = to_pci_dev(hwif->dev);
  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(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(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 pci_dev *dev = to_pci_dev(hwif->dev);
  290. struct it821x_dev *itdev = ide_get_hwifdata(hwif);
  291. int unit = drive->select.b.unit;
  292. int channel = hwif->channel;
  293. u8 conf;
  294. static u16 udma[] = { 0x4433, 0x4231, 0x3121, 0x2121, 0x1111, 0x2211, 0x1111 };
  295. static u8 udma_want[] = { ATA_ANY, ATA_50, ATA_ANY, ATA_66, ATA_66, ATA_50, ATA_66 };
  296. itdev->want[unit][1] = udma_want[mode_wanted];
  297. itdev->want[unit][0] = 3; /* UDMA is high priority */
  298. itdev->mwdma[unit] = MWDMA_OFF;
  299. itdev->udma[unit] = udma[mode_wanted];
  300. if(mode_wanted >= 5)
  301. itdev->udma[unit] |= 0x8080; /* UDMA 5/6 select on */
  302. /* UDMA on. Again revision 0x10 must do the pair */
  303. pci_read_config_byte(dev, 0x50, &conf);
  304. if (itdev->timing10)
  305. conf &= channel ? 0x9F: 0xE7;
  306. else
  307. conf &= ~ (1 << (3 + 2 * channel + unit));
  308. pci_write_config_byte(dev, 0x50, conf);
  309. it821x_clock_strategy(drive);
  310. it821x_program_udma(drive, itdev->udma[unit]);
  311. }
  312. /**
  313. * it821x_dma_read - DMA hook
  314. * @drive: drive for DMA
  315. *
  316. * The IT821x has a single timing register for MWDMA and for PIO
  317. * operations. As we flip back and forth we have to reload the
  318. * clock. In addition the rev 0x10 device only works if the same
  319. * timing value is loaded into the master and slave UDMA clock
  320. * so we must also reload that.
  321. *
  322. * FIXME: we could figure out in advance if we need to do reloads
  323. */
  324. static void it821x_dma_start(ide_drive_t *drive)
  325. {
  326. ide_hwif_t *hwif = drive->hwif;
  327. struct it821x_dev *itdev = ide_get_hwifdata(hwif);
  328. int unit = drive->select.b.unit;
  329. if(itdev->mwdma[unit] != MWDMA_OFF)
  330. it821x_program(drive, itdev->mwdma[unit]);
  331. else if(itdev->udma[unit] != UDMA_OFF && itdev->timing10)
  332. it821x_program_udma(drive, itdev->udma[unit]);
  333. ide_dma_start(drive);
  334. }
  335. /**
  336. * it821x_dma_write - DMA hook
  337. * @drive: drive for DMA stop
  338. *
  339. * The IT821x has a single timing register for MWDMA and for PIO
  340. * operations. As we flip back and forth we have to reload the
  341. * clock.
  342. */
  343. static int it821x_dma_end(ide_drive_t *drive)
  344. {
  345. ide_hwif_t *hwif = drive->hwif;
  346. int unit = drive->select.b.unit;
  347. struct it821x_dev *itdev = ide_get_hwifdata(hwif);
  348. int ret = __ide_dma_end(drive);
  349. if(itdev->mwdma[unit] != MWDMA_OFF)
  350. it821x_program(drive, itdev->pio[unit]);
  351. return ret;
  352. }
  353. /**
  354. * it821x_set_dma_mode - set host controller for DMA mode
  355. * @drive: drive
  356. * @speed: DMA mode
  357. *
  358. * Tune the ITE chipset for the desired DMA mode.
  359. */
  360. static void it821x_set_dma_mode(ide_drive_t *drive, const u8 speed)
  361. {
  362. /*
  363. * MWDMA tuning is really hard because our MWDMA and PIO
  364. * timings are kept in the same place. We can switch in the
  365. * host dma on/off callbacks.
  366. */
  367. if (speed >= XFER_UDMA_0 && speed <= XFER_UDMA_6)
  368. it821x_tune_udma(drive, speed - XFER_UDMA_0);
  369. else if (speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2)
  370. it821x_tune_mwdma(drive, speed - XFER_MW_DMA_0);
  371. }
  372. /**
  373. * it821x_cable_detect - cable detection
  374. * @hwif: interface to check
  375. *
  376. * Check for the presence of an ATA66 capable cable on the
  377. * interface. Problematic as it seems some cards don't have
  378. * the needed logic onboard.
  379. */
  380. static u8 it821x_cable_detect(ide_hwif_t *hwif)
  381. {
  382. /* The reference driver also only does disk side */
  383. return ATA_CBL_PATA80;
  384. }
  385. /**
  386. * it821x_quirkproc - post init callback
  387. * @drive: drive
  388. *
  389. * This callback is run after the drive has been probed but
  390. * before anything gets attached. It allows drivers to do any
  391. * final tuning that is needed, or fixups to work around bugs.
  392. */
  393. static void it821x_quirkproc(ide_drive_t *drive)
  394. {
  395. struct it821x_dev *itdev = ide_get_hwifdata(drive->hwif);
  396. struct hd_driveid *id = drive->id;
  397. u16 *idbits = (u16 *)drive->id;
  398. if (!itdev->smart) {
  399. /*
  400. * If we are in pass through mode then not much
  401. * needs to be done, but we do bother to clear the
  402. * IRQ mask as we may well be in PIO (eg rev 0x10)
  403. * for now and we know unmasking is safe on this chipset.
  404. */
  405. drive->unmask = 1;
  406. } else {
  407. /*
  408. * Perform fixups on smart mode. We need to "lose" some
  409. * capabilities the firmware lacks but does not filter, and
  410. * also patch up some capability bits that it forgets to set
  411. * in RAID mode.
  412. */
  413. /* Check for RAID v native */
  414. if(strstr(id->model, "Integrated Technology Express")) {
  415. /* In raid mode the ident block is slightly buggy
  416. We need to set the bits so that the IDE layer knows
  417. LBA28. LBA48 and DMA ar valid */
  418. id->capability |= 3; /* LBA28, DMA */
  419. id->command_set_2 |= 0x0400; /* LBA48 valid */
  420. id->cfs_enable_2 |= 0x0400; /* LBA48 on */
  421. /* Reporting logic */
  422. printk(KERN_INFO "%s: IT8212 %sRAID %d volume",
  423. drive->name,
  424. idbits[147] ? "Bootable ":"",
  425. idbits[129]);
  426. if(idbits[129] != 1)
  427. printk("(%dK stripe)", idbits[146]);
  428. printk(".\n");
  429. } else {
  430. /* Non RAID volume. Fixups to stop the core code
  431. doing unsupported things */
  432. id->field_valid &= 3;
  433. id->queue_depth = 0;
  434. id->command_set_1 = 0;
  435. id->command_set_2 &= 0xC400;
  436. id->cfsse &= 0xC000;
  437. id->cfs_enable_1 = 0;
  438. id->cfs_enable_2 &= 0xC400;
  439. id->csf_default &= 0xC000;
  440. id->word127 = 0;
  441. id->dlf = 0;
  442. id->csfo = 0;
  443. id->cfa_power = 0;
  444. printk(KERN_INFO "%s: Performing identify fixups.\n",
  445. drive->name);
  446. }
  447. /*
  448. * Set MWDMA0 mode as enabled/support - just to tell
  449. * IDE core that DMA is supported (it821x hardware
  450. * takes care of DMA mode programming).
  451. */
  452. if (id->capability & 1) {
  453. id->dma_mword |= 0x0101;
  454. drive->current_speed = XFER_MW_DMA_0;
  455. }
  456. }
  457. }
  458. static struct ide_dma_ops it821x_pass_through_dma_ops = {
  459. .dma_host_set = ide_dma_host_set,
  460. .dma_setup = ide_dma_setup,
  461. .dma_exec_cmd = ide_dma_exec_cmd,
  462. .dma_start = it821x_dma_start,
  463. .dma_end = it821x_dma_end,
  464. .dma_test_irq = ide_dma_test_irq,
  465. .dma_timeout = ide_dma_timeout,
  466. .dma_lost_irq = ide_dma_lost_irq,
  467. };
  468. /**
  469. * init_hwif_it821x - set up hwif structs
  470. * @hwif: interface to set up
  471. *
  472. * We do the basic set up of the interface structure. The IT8212
  473. * requires several custom handlers so we override the default
  474. * ide DMA handlers appropriately
  475. */
  476. static void __devinit init_hwif_it821x(ide_hwif_t *hwif)
  477. {
  478. struct pci_dev *dev = to_pci_dev(hwif->dev);
  479. struct ide_host *host = pci_get_drvdata(dev);
  480. struct it821x_dev *itdevs = host->host_priv;
  481. struct it821x_dev *idev = itdevs + hwif->channel;
  482. u8 conf;
  483. ide_set_hwifdata(hwif, idev);
  484. pci_read_config_byte(dev, 0x50, &conf);
  485. if (conf & 1) {
  486. idev->smart = 1;
  487. hwif->host_flags |= IDE_HFLAG_NO_ATAPI_DMA;
  488. /* Long I/O's although allowed in LBA48 space cause the
  489. onboard firmware to enter the twighlight zone */
  490. hwif->rqsize = 256;
  491. }
  492. /* Pull the current clocks from 0x50 also */
  493. if (conf & (1 << (1 + hwif->channel)))
  494. idev->clock_mode = ATA_50;
  495. else
  496. idev->clock_mode = ATA_66;
  497. idev->want[0][1] = ATA_ANY;
  498. idev->want[1][1] = ATA_ANY;
  499. /*
  500. * Not in the docs but according to the reference driver
  501. * this is necessary.
  502. */
  503. pci_read_config_byte(dev, 0x08, &conf);
  504. if (conf == 0x10) {
  505. idev->timing10 = 1;
  506. hwif->host_flags |= IDE_HFLAG_NO_ATAPI_DMA;
  507. if (idev->smart == 0)
  508. printk(KERN_WARNING DRV_NAME " %s: revision 0x10, "
  509. "workarounds activated\n", pci_name(dev));
  510. }
  511. if (idev->smart == 0) {
  512. /* MWDMA/PIO clock switching for pass through mode */
  513. hwif->dma_ops = &it821x_pass_through_dma_ops;
  514. } else
  515. hwif->host_flags |= IDE_HFLAG_NO_SET_MODE;
  516. if (hwif->dma_base == 0)
  517. return;
  518. hwif->ultra_mask = ATA_UDMA6;
  519. hwif->mwdma_mask = ATA_MWDMA2;
  520. }
  521. static void __devinit it8212_disable_raid(struct pci_dev *dev)
  522. {
  523. /* Reset local CPU, and set BIOS not ready */
  524. pci_write_config_byte(dev, 0x5E, 0x01);
  525. /* Set to bypass mode, and reset PCI bus */
  526. pci_write_config_byte(dev, 0x50, 0x00);
  527. pci_write_config_word(dev, PCI_COMMAND,
  528. PCI_COMMAND_PARITY | PCI_COMMAND_IO |
  529. PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER);
  530. pci_write_config_word(dev, 0x40, 0xA0F3);
  531. pci_write_config_dword(dev,0x4C, 0x02040204);
  532. pci_write_config_byte(dev, 0x42, 0x36);
  533. pci_write_config_byte(dev, PCI_LATENCY_TIMER, 0x20);
  534. }
  535. static unsigned int __devinit init_chipset_it821x(struct pci_dev *dev)
  536. {
  537. u8 conf;
  538. static char *mode[2] = { "pass through", "smart" };
  539. /* Force the card into bypass mode if so requested */
  540. if (it8212_noraid) {
  541. printk(KERN_INFO DRV_NAME " %s: forcing bypass mode\n",
  542. pci_name(dev));
  543. it8212_disable_raid(dev);
  544. }
  545. pci_read_config_byte(dev, 0x50, &conf);
  546. printk(KERN_INFO DRV_NAME " %s: controller in %s mode\n",
  547. pci_name(dev), mode[conf & 1]);
  548. return 0;
  549. }
  550. static const struct ide_port_ops it821x_port_ops = {
  551. /* it821x_set_{pio,dma}_mode() are only used in pass-through mode */
  552. .set_pio_mode = it821x_set_pio_mode,
  553. .set_dma_mode = it821x_set_dma_mode,
  554. .quirkproc = it821x_quirkproc,
  555. .cable_detect = it821x_cable_detect,
  556. };
  557. static const struct ide_port_info it821x_chipset __devinitdata = {
  558. .name = DRV_NAME,
  559. .init_chipset = init_chipset_it821x,
  560. .init_hwif = init_hwif_it821x,
  561. .port_ops = &it821x_port_ops,
  562. .pio_mask = ATA_PIO4,
  563. };
  564. /**
  565. * it821x_init_one - pci layer discovery entry
  566. * @dev: PCI device
  567. * @id: ident table entry
  568. *
  569. * Called by the PCI code when it finds an ITE821x controller.
  570. * We then use the IDE PCI generic helper to do most of the work.
  571. */
  572. static int __devinit it821x_init_one(struct pci_dev *dev, const struct pci_device_id *id)
  573. {
  574. struct it821x_dev *itdevs;
  575. int rc;
  576. itdevs = kzalloc(2 * sizeof(*itdevs), GFP_KERNEL);
  577. if (itdevs == NULL) {
  578. printk(KERN_ERR DRV_NAME " %s: out of memory\n", pci_name(dev));
  579. return -ENOMEM;
  580. }
  581. rc = ide_pci_init_one(dev, &it821x_chipset, itdevs);
  582. if (rc)
  583. kfree(itdevs);
  584. return rc;
  585. }
  586. static void __devexit it821x_remove(struct pci_dev *dev)
  587. {
  588. struct ide_host *host = pci_get_drvdata(dev);
  589. struct it821x_dev *itdevs = host->host_priv;
  590. ide_pci_remove(dev);
  591. kfree(itdevs);
  592. }
  593. static const struct pci_device_id it821x_pci_tbl[] = {
  594. { PCI_VDEVICE(ITE, PCI_DEVICE_ID_ITE_8211), 0 },
  595. { PCI_VDEVICE(ITE, PCI_DEVICE_ID_ITE_8212), 0 },
  596. { 0, },
  597. };
  598. MODULE_DEVICE_TABLE(pci, it821x_pci_tbl);
  599. static struct pci_driver driver = {
  600. .name = "ITE821x IDE",
  601. .id_table = it821x_pci_tbl,
  602. .probe = it821x_init_one,
  603. .remove = __devexit_p(it821x_remove),
  604. };
  605. static int __init it821x_ide_init(void)
  606. {
  607. return ide_pci_register_driver(&driver);
  608. }
  609. static void __exit it821x_ide_exit(void)
  610. {
  611. pci_unregister_driver(&driver);
  612. }
  613. module_init(it821x_ide_init);
  614. module_exit(it821x_ide_exit);
  615. module_param_named(noraid, it8212_noraid, int, S_IRUGO);
  616. MODULE_PARM_DESC(noraid, "Force card into bypass mode");
  617. MODULE_AUTHOR("Alan Cox");
  618. MODULE_DESCRIPTION("PCI driver module for the ITE 821x");
  619. MODULE_LICENSE("GPL");