ide-dma.c 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953
  1. /*
  2. * IDE DMA support (including IDE PCI BM-DMA).
  3. *
  4. * Copyright (C) 1995-1998 Mark Lord
  5. * Copyright (C) 1999-2000 Andre Hedrick <andre@linux-ide.org>
  6. * Copyright (C) 2004, 2007 Bartlomiej Zolnierkiewicz
  7. *
  8. * May be copied or modified under the terms of the GNU General Public License
  9. *
  10. * DMA is supported for all IDE devices (disk drives, cdroms, tapes, floppies).
  11. */
  12. /*
  13. * Special Thanks to Mark for his Six years of work.
  14. */
  15. /*
  16. * Thanks to "Christopher J. Reimer" <reimer@doe.carleton.ca> for
  17. * fixing the problem with the BIOS on some Acer motherboards.
  18. *
  19. * Thanks to "Benoit Poulot-Cazajous" <poulot@chorus.fr> for testing
  20. * "TX" chipset compatibility and for providing patches for the "TX" chipset.
  21. *
  22. * Thanks to Christian Brunner <chb@muc.de> for taking a good first crack
  23. * at generic DMA -- his patches were referred to when preparing this code.
  24. *
  25. * Most importantly, thanks to Robert Bringman <rob@mars.trion.com>
  26. * for supplying a Promise UDMA board & WD UDMA drive for this work!
  27. */
  28. #include <linux/module.h>
  29. #include <linux/types.h>
  30. #include <linux/kernel.h>
  31. #include <linux/timer.h>
  32. #include <linux/mm.h>
  33. #include <linux/interrupt.h>
  34. #include <linux/pci.h>
  35. #include <linux/init.h>
  36. #include <linux/ide.h>
  37. #include <linux/delay.h>
  38. #include <linux/scatterlist.h>
  39. #include <linux/dma-mapping.h>
  40. #include <asm/io.h>
  41. #include <asm/irq.h>
  42. static const struct drive_list_entry drive_whitelist [] = {
  43. { "Micropolis 2112A" , NULL },
  44. { "CONNER CTMA 4000" , NULL },
  45. { "CONNER CTT8000-A" , NULL },
  46. { "ST34342A" , NULL },
  47. { NULL , NULL }
  48. };
  49. static const struct drive_list_entry drive_blacklist [] = {
  50. { "WDC AC11000H" , NULL },
  51. { "WDC AC22100H" , NULL },
  52. { "WDC AC32500H" , NULL },
  53. { "WDC AC33100H" , NULL },
  54. { "WDC AC31600H" , NULL },
  55. { "WDC AC32100H" , "24.09P07" },
  56. { "WDC AC23200L" , "21.10N21" },
  57. { "Compaq CRD-8241B" , NULL },
  58. { "CRD-8400B" , NULL },
  59. { "CRD-8480B", NULL },
  60. { "CRD-8482B", NULL },
  61. { "CRD-84" , NULL },
  62. { "SanDisk SDP3B" , NULL },
  63. { "SanDisk SDP3B-64" , NULL },
  64. { "SANYO CD-ROM CRD" , NULL },
  65. { "HITACHI CDR-8" , NULL },
  66. { "HITACHI CDR-8335" , NULL },
  67. { "HITACHI CDR-8435" , NULL },
  68. { "Toshiba CD-ROM XM-6202B" , NULL },
  69. { "TOSHIBA CD-ROM XM-1702BC", NULL },
  70. { "CD-532E-A" , NULL },
  71. { "E-IDE CD-ROM CR-840", NULL },
  72. { "CD-ROM Drive/F5A", NULL },
  73. { "WPI CDD-820", NULL },
  74. { "SAMSUNG CD-ROM SC-148C", NULL },
  75. { "SAMSUNG CD-ROM SC", NULL },
  76. { "ATAPI CD-ROM DRIVE 40X MAXIMUM", NULL },
  77. { "_NEC DV5800A", NULL },
  78. { "SAMSUNG CD-ROM SN-124", "N001" },
  79. { "Seagate STT20000A", NULL },
  80. { "CD-ROM CDR_U200", "1.09" },
  81. { NULL , NULL }
  82. };
  83. /**
  84. * ide_dma_intr - IDE DMA interrupt handler
  85. * @drive: the drive the interrupt is for
  86. *
  87. * Handle an interrupt completing a read/write DMA transfer on an
  88. * IDE device
  89. */
  90. ide_startstop_t ide_dma_intr (ide_drive_t *drive)
  91. {
  92. u8 stat = 0, dma_stat = 0;
  93. dma_stat = HWIF(drive)->ide_dma_end(drive);
  94. stat = ide_read_status(drive);
  95. if (OK_STAT(stat,DRIVE_READY,drive->bad_wstat|DRQ_STAT)) {
  96. if (!dma_stat) {
  97. struct request *rq = HWGROUP(drive)->rq;
  98. task_end_request(drive, rq, stat);
  99. return ide_stopped;
  100. }
  101. printk(KERN_ERR "%s: dma_intr: bad DMA status (dma_stat=%x)\n",
  102. drive->name, dma_stat);
  103. }
  104. return ide_error(drive, "dma_intr", stat);
  105. }
  106. EXPORT_SYMBOL_GPL(ide_dma_intr);
  107. static int ide_dma_good_drive(ide_drive_t *drive)
  108. {
  109. return ide_in_drive_list(drive->id, drive_whitelist);
  110. }
  111. /**
  112. * ide_build_sglist - map IDE scatter gather for DMA I/O
  113. * @drive: the drive to build the DMA table for
  114. * @rq: the request holding the sg list
  115. *
  116. * Perform the DMA mapping magic necessary to access the source or
  117. * target buffers of a request via DMA. The lower layers of the
  118. * kernel provide the necessary cache management so that we can
  119. * operate in a portable fashion.
  120. */
  121. int ide_build_sglist(ide_drive_t *drive, struct request *rq)
  122. {
  123. ide_hwif_t *hwif = HWIF(drive);
  124. struct scatterlist *sg = hwif->sg_table;
  125. ide_map_sg(drive, rq);
  126. if (rq_data_dir(rq) == READ)
  127. hwif->sg_dma_direction = DMA_FROM_DEVICE;
  128. else
  129. hwif->sg_dma_direction = DMA_TO_DEVICE;
  130. return dma_map_sg(hwif->dev, sg, hwif->sg_nents,
  131. hwif->sg_dma_direction);
  132. }
  133. EXPORT_SYMBOL_GPL(ide_build_sglist);
  134. #ifdef CONFIG_BLK_DEV_IDEDMA_SFF
  135. /**
  136. * ide_build_dmatable - build IDE DMA table
  137. *
  138. * ide_build_dmatable() prepares a dma request. We map the command
  139. * to get the pci bus addresses of the buffers and then build up
  140. * the PRD table that the IDE layer wants to be fed. The code
  141. * knows about the 64K wrap bug in the CS5530.
  142. *
  143. * Returns the number of built PRD entries if all went okay,
  144. * returns 0 otherwise.
  145. *
  146. * May also be invoked from trm290.c
  147. */
  148. int ide_build_dmatable (ide_drive_t *drive, struct request *rq)
  149. {
  150. ide_hwif_t *hwif = HWIF(drive);
  151. unsigned int *table = hwif->dmatable_cpu;
  152. unsigned int is_trm290 = (hwif->chipset == ide_trm290) ? 1 : 0;
  153. unsigned int count = 0;
  154. int i;
  155. struct scatterlist *sg;
  156. hwif->sg_nents = i = ide_build_sglist(drive, rq);
  157. if (!i)
  158. return 0;
  159. sg = hwif->sg_table;
  160. while (i) {
  161. u32 cur_addr;
  162. u32 cur_len;
  163. cur_addr = sg_dma_address(sg);
  164. cur_len = sg_dma_len(sg);
  165. /*
  166. * Fill in the dma table, without crossing any 64kB boundaries.
  167. * Most hardware requires 16-bit alignment of all blocks,
  168. * but the trm290 requires 32-bit alignment.
  169. */
  170. while (cur_len) {
  171. if (count++ >= PRD_ENTRIES) {
  172. printk(KERN_ERR "%s: DMA table too small\n", drive->name);
  173. goto use_pio_instead;
  174. } else {
  175. u32 xcount, bcount = 0x10000 - (cur_addr & 0xffff);
  176. if (bcount > cur_len)
  177. bcount = cur_len;
  178. *table++ = cpu_to_le32(cur_addr);
  179. xcount = bcount & 0xffff;
  180. if (is_trm290)
  181. xcount = ((xcount >> 2) - 1) << 16;
  182. if (xcount == 0x0000) {
  183. /*
  184. * Most chipsets correctly interpret a length of 0x0000 as 64KB,
  185. * but at least one (e.g. CS5530) misinterprets it as zero (!).
  186. * So here we break the 64KB entry into two 32KB entries instead.
  187. */
  188. if (count++ >= PRD_ENTRIES) {
  189. printk(KERN_ERR "%s: DMA table too small\n", drive->name);
  190. goto use_pio_instead;
  191. }
  192. *table++ = cpu_to_le32(0x8000);
  193. *table++ = cpu_to_le32(cur_addr + 0x8000);
  194. xcount = 0x8000;
  195. }
  196. *table++ = cpu_to_le32(xcount);
  197. cur_addr += bcount;
  198. cur_len -= bcount;
  199. }
  200. }
  201. sg = sg_next(sg);
  202. i--;
  203. }
  204. if (count) {
  205. if (!is_trm290)
  206. *--table |= cpu_to_le32(0x80000000);
  207. return count;
  208. }
  209. printk(KERN_ERR "%s: empty DMA table?\n", drive->name);
  210. use_pio_instead:
  211. ide_destroy_dmatable(drive);
  212. return 0; /* revert to PIO for this request */
  213. }
  214. EXPORT_SYMBOL_GPL(ide_build_dmatable);
  215. #endif
  216. /**
  217. * ide_destroy_dmatable - clean up DMA mapping
  218. * @drive: The drive to unmap
  219. *
  220. * Teardown mappings after DMA has completed. This must be called
  221. * after the completion of each use of ide_build_dmatable and before
  222. * the next use of ide_build_dmatable. Failure to do so will cause
  223. * an oops as only one mapping can be live for each target at a given
  224. * time.
  225. */
  226. void ide_destroy_dmatable (ide_drive_t *drive)
  227. {
  228. ide_hwif_t *hwif = drive->hwif;
  229. dma_unmap_sg(hwif->dev, hwif->sg_table, hwif->sg_nents,
  230. hwif->sg_dma_direction);
  231. }
  232. EXPORT_SYMBOL_GPL(ide_destroy_dmatable);
  233. #ifdef CONFIG_BLK_DEV_IDEDMA_SFF
  234. /**
  235. * config_drive_for_dma - attempt to activate IDE DMA
  236. * @drive: the drive to place in DMA mode
  237. *
  238. * If the drive supports at least mode 2 DMA or UDMA of any kind
  239. * then attempt to place it into DMA mode. Drives that are known to
  240. * support DMA but predate the DMA properties or that are known
  241. * to have DMA handling bugs are also set up appropriately based
  242. * on the good/bad drive lists.
  243. */
  244. static int config_drive_for_dma (ide_drive_t *drive)
  245. {
  246. ide_hwif_t *hwif = drive->hwif;
  247. struct hd_driveid *id = drive->id;
  248. if (drive->media != ide_disk) {
  249. if (hwif->host_flags & IDE_HFLAG_NO_ATAPI_DMA)
  250. return 0;
  251. }
  252. /*
  253. * Enable DMA on any drive that has
  254. * UltraDMA (mode 0/1/2/3/4/5/6) enabled
  255. */
  256. if ((id->field_valid & 4) && ((id->dma_ultra >> 8) & 0x7f))
  257. return 1;
  258. /*
  259. * Enable DMA on any drive that has mode2 DMA
  260. * (multi or single) enabled
  261. */
  262. if (id->field_valid & 2) /* regular DMA */
  263. if ((id->dma_mword & 0x404) == 0x404 ||
  264. (id->dma_1word & 0x404) == 0x404)
  265. return 1;
  266. /* Consult the list of known "good" drives */
  267. if (ide_dma_good_drive(drive))
  268. return 1;
  269. return 0;
  270. }
  271. /**
  272. * dma_timer_expiry - handle a DMA timeout
  273. * @drive: Drive that timed out
  274. *
  275. * An IDE DMA transfer timed out. In the event of an error we ask
  276. * the driver to resolve the problem, if a DMA transfer is still
  277. * in progress we continue to wait (arguably we need to add a
  278. * secondary 'I don't care what the drive thinks' timeout here)
  279. * Finally if we have an interrupt we let it complete the I/O.
  280. * But only one time - we clear expiry and if it's still not
  281. * completed after WAIT_CMD, we error and retry in PIO.
  282. * This can occur if an interrupt is lost or due to hang or bugs.
  283. */
  284. static int dma_timer_expiry (ide_drive_t *drive)
  285. {
  286. ide_hwif_t *hwif = HWIF(drive);
  287. u8 dma_stat = hwif->INB(hwif->dma_status);
  288. printk(KERN_WARNING "%s: dma_timer_expiry: dma status == 0x%02x\n",
  289. drive->name, dma_stat);
  290. if ((dma_stat & 0x18) == 0x18) /* BUSY Stupid Early Timer !! */
  291. return WAIT_CMD;
  292. HWGROUP(drive)->expiry = NULL; /* one free ride for now */
  293. /* 1 dmaing, 2 error, 4 intr */
  294. if (dma_stat & 2) /* ERROR */
  295. return -1;
  296. if (dma_stat & 1) /* DMAing */
  297. return WAIT_CMD;
  298. if (dma_stat & 4) /* Got an Interrupt */
  299. return WAIT_CMD;
  300. return 0; /* Status is unknown -- reset the bus */
  301. }
  302. /**
  303. * ide_dma_host_set - Enable/disable DMA on a host
  304. * @drive: drive to control
  305. *
  306. * Enable/disable DMA on an IDE controller following generic
  307. * bus-mastering IDE controller behaviour.
  308. */
  309. void ide_dma_host_set(ide_drive_t *drive, int on)
  310. {
  311. ide_hwif_t *hwif = HWIF(drive);
  312. u8 unit = (drive->select.b.unit & 0x01);
  313. u8 dma_stat = hwif->INB(hwif->dma_status);
  314. if (on)
  315. dma_stat |= (1 << (5 + unit));
  316. else
  317. dma_stat &= ~(1 << (5 + unit));
  318. hwif->OUTB(dma_stat, hwif->dma_status);
  319. }
  320. EXPORT_SYMBOL_GPL(ide_dma_host_set);
  321. #endif /* CONFIG_BLK_DEV_IDEDMA_SFF */
  322. /**
  323. * ide_dma_off_quietly - Generic DMA kill
  324. * @drive: drive to control
  325. *
  326. * Turn off the current DMA on this IDE controller.
  327. */
  328. void ide_dma_off_quietly(ide_drive_t *drive)
  329. {
  330. drive->using_dma = 0;
  331. ide_toggle_bounce(drive, 0);
  332. drive->hwif->dma_host_set(drive, 0);
  333. }
  334. EXPORT_SYMBOL(ide_dma_off_quietly);
  335. /**
  336. * ide_dma_off - disable DMA on a device
  337. * @drive: drive to disable DMA on
  338. *
  339. * Disable IDE DMA for a device on this IDE controller.
  340. * Inform the user that DMA has been disabled.
  341. */
  342. void ide_dma_off(ide_drive_t *drive)
  343. {
  344. printk(KERN_INFO "%s: DMA disabled\n", drive->name);
  345. ide_dma_off_quietly(drive);
  346. }
  347. EXPORT_SYMBOL(ide_dma_off);
  348. /**
  349. * ide_dma_on - Enable DMA on a device
  350. * @drive: drive to enable DMA on
  351. *
  352. * Enable IDE DMA for a device on this IDE controller.
  353. */
  354. void ide_dma_on(ide_drive_t *drive)
  355. {
  356. drive->using_dma = 1;
  357. ide_toggle_bounce(drive, 1);
  358. drive->hwif->dma_host_set(drive, 1);
  359. }
  360. #ifdef CONFIG_BLK_DEV_IDEDMA_SFF
  361. /**
  362. * ide_dma_setup - begin a DMA phase
  363. * @drive: target device
  364. *
  365. * Build an IDE DMA PRD (IDE speak for scatter gather table)
  366. * and then set up the DMA transfer registers for a device
  367. * that follows generic IDE PCI DMA behaviour. Controllers can
  368. * override this function if they need to
  369. *
  370. * Returns 0 on success. If a PIO fallback is required then 1
  371. * is returned.
  372. */
  373. int ide_dma_setup(ide_drive_t *drive)
  374. {
  375. ide_hwif_t *hwif = drive->hwif;
  376. struct request *rq = HWGROUP(drive)->rq;
  377. unsigned int reading;
  378. u8 dma_stat;
  379. if (rq_data_dir(rq))
  380. reading = 0;
  381. else
  382. reading = 1 << 3;
  383. /* fall back to pio! */
  384. if (!ide_build_dmatable(drive, rq)) {
  385. ide_map_sg(drive, rq);
  386. return 1;
  387. }
  388. /* PRD table */
  389. if (hwif->mmio)
  390. writel(hwif->dmatable_dma, (void __iomem *)hwif->dma_prdtable);
  391. else
  392. outl(hwif->dmatable_dma, hwif->dma_prdtable);
  393. /* specify r/w */
  394. hwif->OUTB(reading, hwif->dma_command);
  395. /* read dma_status for INTR & ERROR flags */
  396. dma_stat = hwif->INB(hwif->dma_status);
  397. /* clear INTR & ERROR flags */
  398. hwif->OUTB(dma_stat|6, hwif->dma_status);
  399. drive->waiting_for_dma = 1;
  400. return 0;
  401. }
  402. EXPORT_SYMBOL_GPL(ide_dma_setup);
  403. static void ide_dma_exec_cmd(ide_drive_t *drive, u8 command)
  404. {
  405. /* issue cmd to drive */
  406. ide_execute_command(drive, command, &ide_dma_intr, 2*WAIT_CMD, dma_timer_expiry);
  407. }
  408. void ide_dma_start(ide_drive_t *drive)
  409. {
  410. ide_hwif_t *hwif = HWIF(drive);
  411. u8 dma_cmd = hwif->INB(hwif->dma_command);
  412. /* Note that this is done *after* the cmd has
  413. * been issued to the drive, as per the BM-IDE spec.
  414. * The Promise Ultra33 doesn't work correctly when
  415. * we do this part before issuing the drive cmd.
  416. */
  417. /* start DMA */
  418. hwif->OUTB(dma_cmd|1, hwif->dma_command);
  419. hwif->dma = 1;
  420. wmb();
  421. }
  422. EXPORT_SYMBOL_GPL(ide_dma_start);
  423. /* returns 1 on error, 0 otherwise */
  424. int __ide_dma_end (ide_drive_t *drive)
  425. {
  426. ide_hwif_t *hwif = HWIF(drive);
  427. u8 dma_stat = 0, dma_cmd = 0;
  428. drive->waiting_for_dma = 0;
  429. /* get dma_command mode */
  430. dma_cmd = hwif->INB(hwif->dma_command);
  431. /* stop DMA */
  432. hwif->OUTB(dma_cmd&~1, hwif->dma_command);
  433. /* get DMA status */
  434. dma_stat = hwif->INB(hwif->dma_status);
  435. /* clear the INTR & ERROR bits */
  436. hwif->OUTB(dma_stat|6, hwif->dma_status);
  437. /* purge DMA mappings */
  438. ide_destroy_dmatable(drive);
  439. /* verify good DMA status */
  440. hwif->dma = 0;
  441. wmb();
  442. return (dma_stat & 7) != 4 ? (0x10 | dma_stat) : 0;
  443. }
  444. EXPORT_SYMBOL(__ide_dma_end);
  445. /* returns 1 if dma irq issued, 0 otherwise */
  446. static int __ide_dma_test_irq(ide_drive_t *drive)
  447. {
  448. ide_hwif_t *hwif = HWIF(drive);
  449. u8 dma_stat = hwif->INB(hwif->dma_status);
  450. /* return 1 if INTR asserted */
  451. if ((dma_stat & 4) == 4)
  452. return 1;
  453. if (!drive->waiting_for_dma)
  454. printk(KERN_WARNING "%s: (%s) called while not waiting\n",
  455. drive->name, __FUNCTION__);
  456. return 0;
  457. }
  458. #else
  459. static inline int config_drive_for_dma(ide_drive_t *drive) { return 0; }
  460. #endif /* CONFIG_BLK_DEV_IDEDMA_SFF */
  461. int __ide_dma_bad_drive (ide_drive_t *drive)
  462. {
  463. struct hd_driveid *id = drive->id;
  464. int blacklist = ide_in_drive_list(id, drive_blacklist);
  465. if (blacklist) {
  466. printk(KERN_WARNING "%s: Disabling (U)DMA for %s (blacklisted)\n",
  467. drive->name, id->model);
  468. return blacklist;
  469. }
  470. return 0;
  471. }
  472. EXPORT_SYMBOL(__ide_dma_bad_drive);
  473. static const u8 xfer_mode_bases[] = {
  474. XFER_UDMA_0,
  475. XFER_MW_DMA_0,
  476. XFER_SW_DMA_0,
  477. };
  478. static unsigned int ide_get_mode_mask(ide_drive_t *drive, u8 base, u8 req_mode)
  479. {
  480. struct hd_driveid *id = drive->id;
  481. ide_hwif_t *hwif = drive->hwif;
  482. const struct ide_port_ops *port_ops = hwif->port_ops;
  483. unsigned int mask = 0;
  484. switch(base) {
  485. case XFER_UDMA_0:
  486. if ((id->field_valid & 4) == 0)
  487. break;
  488. if (port_ops && port_ops->udma_filter)
  489. mask = port_ops->udma_filter(drive);
  490. else
  491. mask = hwif->ultra_mask;
  492. mask &= id->dma_ultra;
  493. /*
  494. * avoid false cable warning from eighty_ninty_three()
  495. */
  496. if (req_mode > XFER_UDMA_2) {
  497. if ((mask & 0x78) && (eighty_ninty_three(drive) == 0))
  498. mask &= 0x07;
  499. }
  500. break;
  501. case XFER_MW_DMA_0:
  502. if ((id->field_valid & 2) == 0)
  503. break;
  504. if (port_ops && port_ops->mdma_filter)
  505. mask = port_ops->mdma_filter(drive);
  506. else
  507. mask = hwif->mwdma_mask;
  508. mask &= id->dma_mword;
  509. break;
  510. case XFER_SW_DMA_0:
  511. if (id->field_valid & 2) {
  512. mask = id->dma_1word & hwif->swdma_mask;
  513. } else if (id->tDMA) {
  514. /*
  515. * ide_fix_driveid() doesn't convert ->tDMA to the
  516. * CPU endianness so we need to do it here
  517. */
  518. u8 mode = le16_to_cpu(id->tDMA);
  519. /*
  520. * if the mode is valid convert it to the mask
  521. * (the maximum allowed mode is XFER_SW_DMA_2)
  522. */
  523. if (mode <= 2)
  524. mask = ((2 << mode) - 1) & hwif->swdma_mask;
  525. }
  526. break;
  527. default:
  528. BUG();
  529. break;
  530. }
  531. return mask;
  532. }
  533. /**
  534. * ide_find_dma_mode - compute DMA speed
  535. * @drive: IDE device
  536. * @req_mode: requested mode
  537. *
  538. * Checks the drive/host capabilities and finds the speed to use for
  539. * the DMA transfer. The speed is then limited by the requested mode.
  540. *
  541. * Returns 0 if the drive/host combination is incapable of DMA transfers
  542. * or if the requested mode is not a DMA mode.
  543. */
  544. u8 ide_find_dma_mode(ide_drive_t *drive, u8 req_mode)
  545. {
  546. ide_hwif_t *hwif = drive->hwif;
  547. unsigned int mask;
  548. int x, i;
  549. u8 mode = 0;
  550. if (drive->media != ide_disk) {
  551. if (hwif->host_flags & IDE_HFLAG_NO_ATAPI_DMA)
  552. return 0;
  553. }
  554. for (i = 0; i < ARRAY_SIZE(xfer_mode_bases); i++) {
  555. if (req_mode < xfer_mode_bases[i])
  556. continue;
  557. mask = ide_get_mode_mask(drive, xfer_mode_bases[i], req_mode);
  558. x = fls(mask) - 1;
  559. if (x >= 0) {
  560. mode = xfer_mode_bases[i] + x;
  561. break;
  562. }
  563. }
  564. if (hwif->chipset == ide_acorn && mode == 0) {
  565. /*
  566. * is this correct?
  567. */
  568. if (ide_dma_good_drive(drive) && drive->id->eide_dma_time < 150)
  569. mode = XFER_MW_DMA_1;
  570. }
  571. mode = min(mode, req_mode);
  572. printk(KERN_INFO "%s: %s mode selected\n", drive->name,
  573. mode ? ide_xfer_verbose(mode) : "no DMA");
  574. return mode;
  575. }
  576. EXPORT_SYMBOL_GPL(ide_find_dma_mode);
  577. static int ide_tune_dma(ide_drive_t *drive)
  578. {
  579. ide_hwif_t *hwif = drive->hwif;
  580. u8 speed;
  581. if (noautodma || drive->nodma || (drive->id->capability & 1) == 0)
  582. return 0;
  583. /* consult the list of known "bad" drives */
  584. if (__ide_dma_bad_drive(drive))
  585. return 0;
  586. if (ide_id_dma_bug(drive))
  587. return 0;
  588. if (hwif->host_flags & IDE_HFLAG_TRUST_BIOS_FOR_DMA)
  589. return config_drive_for_dma(drive);
  590. speed = ide_max_dma_mode(drive);
  591. if (!speed)
  592. return 0;
  593. if (ide_set_dma_mode(drive, speed))
  594. return 0;
  595. return 1;
  596. }
  597. static int ide_dma_check(ide_drive_t *drive)
  598. {
  599. ide_hwif_t *hwif = drive->hwif;
  600. int vdma = (hwif->host_flags & IDE_HFLAG_VDMA)? 1 : 0;
  601. if (!vdma && ide_tune_dma(drive))
  602. return 0;
  603. /* TODO: always do PIO fallback */
  604. if (hwif->host_flags & IDE_HFLAG_TRUST_BIOS_FOR_DMA)
  605. return -1;
  606. ide_set_max_pio(drive);
  607. return vdma ? 0 : -1;
  608. }
  609. int ide_id_dma_bug(ide_drive_t *drive)
  610. {
  611. struct hd_driveid *id = drive->id;
  612. if (id->field_valid & 4) {
  613. if ((id->dma_ultra >> 8) && (id->dma_mword >> 8))
  614. goto err_out;
  615. } else if (id->field_valid & 2) {
  616. if ((id->dma_mword >> 8) && (id->dma_1word >> 8))
  617. goto err_out;
  618. }
  619. return 0;
  620. err_out:
  621. printk(KERN_ERR "%s: bad DMA info in identify block\n", drive->name);
  622. return 1;
  623. }
  624. int ide_set_dma(ide_drive_t *drive)
  625. {
  626. int rc;
  627. /*
  628. * Force DMAing for the beginning of the check.
  629. * Some chipsets appear to do interesting
  630. * things, if not checked and cleared.
  631. * PARANOIA!!!
  632. */
  633. ide_dma_off_quietly(drive);
  634. rc = ide_dma_check(drive);
  635. if (rc)
  636. return rc;
  637. ide_dma_on(drive);
  638. return 0;
  639. }
  640. void ide_check_dma_crc(ide_drive_t *drive)
  641. {
  642. u8 mode;
  643. ide_dma_off_quietly(drive);
  644. drive->crc_count = 0;
  645. mode = drive->current_speed;
  646. /*
  647. * Don't try non Ultra-DMA modes without iCRC's. Force the
  648. * device to PIO and make the user enable SWDMA/MWDMA modes.
  649. */
  650. if (mode > XFER_UDMA_0 && mode <= XFER_UDMA_7)
  651. mode--;
  652. else
  653. mode = XFER_PIO_4;
  654. ide_set_xfer_rate(drive, mode);
  655. if (drive->current_speed >= XFER_SW_DMA_0)
  656. ide_dma_on(drive);
  657. }
  658. #ifdef CONFIG_BLK_DEV_IDEDMA_SFF
  659. void ide_dma_lost_irq (ide_drive_t *drive)
  660. {
  661. printk("%s: DMA interrupt recovery\n", drive->name);
  662. }
  663. EXPORT_SYMBOL(ide_dma_lost_irq);
  664. void ide_dma_timeout (ide_drive_t *drive)
  665. {
  666. ide_hwif_t *hwif = HWIF(drive);
  667. printk(KERN_ERR "%s: timeout waiting for DMA\n", drive->name);
  668. if (hwif->ide_dma_test_irq(drive))
  669. return;
  670. hwif->ide_dma_end(drive);
  671. }
  672. EXPORT_SYMBOL(ide_dma_timeout);
  673. static void ide_release_dma_engine(ide_hwif_t *hwif)
  674. {
  675. if (hwif->dmatable_cpu) {
  676. struct pci_dev *pdev = to_pci_dev(hwif->dev);
  677. pci_free_consistent(pdev, PRD_ENTRIES * PRD_BYTES,
  678. hwif->dmatable_cpu, hwif->dmatable_dma);
  679. hwif->dmatable_cpu = NULL;
  680. }
  681. }
  682. static int ide_release_iomio_dma(ide_hwif_t *hwif)
  683. {
  684. release_region(hwif->dma_base, 8);
  685. if (hwif->extra_ports)
  686. release_region(hwif->extra_base, hwif->extra_ports);
  687. return 1;
  688. }
  689. /*
  690. * Needed for allowing full modular support of ide-driver
  691. */
  692. int ide_release_dma(ide_hwif_t *hwif)
  693. {
  694. ide_release_dma_engine(hwif);
  695. if (hwif->mmio)
  696. return 1;
  697. else
  698. return ide_release_iomio_dma(hwif);
  699. }
  700. static int ide_allocate_dma_engine(ide_hwif_t *hwif)
  701. {
  702. struct pci_dev *pdev = to_pci_dev(hwif->dev);
  703. hwif->dmatable_cpu = pci_alloc_consistent(pdev,
  704. PRD_ENTRIES * PRD_BYTES,
  705. &hwif->dmatable_dma);
  706. if (hwif->dmatable_cpu)
  707. return 0;
  708. printk(KERN_ERR "%s: -- Error, unable to allocate DMA table.\n",
  709. hwif->cds->name);
  710. return 1;
  711. }
  712. static int ide_mapped_mmio_dma(ide_hwif_t *hwif, unsigned long base)
  713. {
  714. printk(KERN_INFO " %s: MMIO-DMA ", hwif->name);
  715. return 0;
  716. }
  717. static int ide_iomio_dma(ide_hwif_t *hwif, unsigned long base)
  718. {
  719. printk(KERN_INFO " %s: BM-DMA at 0x%04lx-0x%04lx",
  720. hwif->name, base, base + 7);
  721. if (!request_region(base, 8, hwif->name)) {
  722. printk(" -- Error, ports in use.\n");
  723. return 1;
  724. }
  725. if (hwif->cds->extra) {
  726. hwif->extra_base = base + (hwif->channel ? 8 : 16);
  727. if (!hwif->mate || !hwif->mate->extra_ports) {
  728. if (!request_region(hwif->extra_base,
  729. hwif->cds->extra, hwif->cds->name)) {
  730. printk(" -- Error, extra ports in use.\n");
  731. release_region(base, 8);
  732. return 1;
  733. }
  734. hwif->extra_ports = hwif->cds->extra;
  735. }
  736. }
  737. return 0;
  738. }
  739. static int ide_dma_iobase(ide_hwif_t *hwif, unsigned long base)
  740. {
  741. if (hwif->mmio)
  742. return ide_mapped_mmio_dma(hwif, base);
  743. return ide_iomio_dma(hwif, base);
  744. }
  745. void ide_setup_dma(ide_hwif_t *hwif, unsigned long base)
  746. {
  747. u8 dma_stat;
  748. if (ide_dma_iobase(hwif, base))
  749. return;
  750. if (ide_allocate_dma_engine(hwif)) {
  751. ide_release_dma(hwif);
  752. return;
  753. }
  754. hwif->dma_base = base;
  755. if (!hwif->dma_command)
  756. hwif->dma_command = hwif->dma_base + 0;
  757. if (!hwif->dma_vendor1)
  758. hwif->dma_vendor1 = hwif->dma_base + 1;
  759. if (!hwif->dma_status)
  760. hwif->dma_status = hwif->dma_base + 2;
  761. if (!hwif->dma_vendor3)
  762. hwif->dma_vendor3 = hwif->dma_base + 3;
  763. if (!hwif->dma_prdtable)
  764. hwif->dma_prdtable = hwif->dma_base + 4;
  765. if (!hwif->dma_host_set)
  766. hwif->dma_host_set = &ide_dma_host_set;
  767. if (!hwif->dma_setup)
  768. hwif->dma_setup = &ide_dma_setup;
  769. if (!hwif->dma_exec_cmd)
  770. hwif->dma_exec_cmd = &ide_dma_exec_cmd;
  771. if (!hwif->dma_start)
  772. hwif->dma_start = &ide_dma_start;
  773. if (!hwif->ide_dma_end)
  774. hwif->ide_dma_end = &__ide_dma_end;
  775. if (!hwif->ide_dma_test_irq)
  776. hwif->ide_dma_test_irq = &__ide_dma_test_irq;
  777. if (!hwif->dma_timeout)
  778. hwif->dma_timeout = &ide_dma_timeout;
  779. if (!hwif->dma_lost_irq)
  780. hwif->dma_lost_irq = &ide_dma_lost_irq;
  781. dma_stat = hwif->INB(hwif->dma_status);
  782. printk(KERN_CONT ", BIOS settings: %s:%s, %s:%s\n",
  783. hwif->drives[0].name, (dma_stat & 0x20) ? "DMA" : "PIO",
  784. hwif->drives[1].name, (dma_stat & 0x40) ? "DMA" : "PIO");
  785. }
  786. EXPORT_SYMBOL_GPL(ide_setup_dma);
  787. #endif /* CONFIG_BLK_DEV_IDEDMA_SFF */