ide-dma.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:25k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/drivers/ide/ide-dma.c Version 4.10 June 9, 2000
  3.  *
  4.  *  Copyright (c) 1999-2000 Andre Hedrick <andre@linux-ide.org>
  5.  *  May be copied or modified under the terms of the GNU General Public License
  6.  */
  7. /*
  8.  *  Special Thanks to Mark for his Six years of work.
  9.  *
  10.  *  Copyright (c) 1995-1998  Mark Lord
  11.  *  May be copied or modified under the terms of the GNU General Public License
  12.  */
  13. /*
  14.  * This module provides support for the bus-master IDE DMA functions
  15.  * of various PCI chipsets, including the Intel PIIX (i82371FB for
  16.  * the 430 FX chipset), the PIIX3 (i82371SB for the 430 HX/VX and 
  17.  * 440 chipsets), and the PIIX4 (i82371AB for the 430 TX chipset)
  18.  * ("PIIX" stands for "PCI ISA IDE Xcellerator").
  19.  *
  20.  * Pretty much the same code works for other IDE PCI bus-mastering chipsets.
  21.  *
  22.  * DMA is supported for all IDE devices (disk drives, cdroms, tapes, floppies).
  23.  *
  24.  * By default, DMA support is prepared for use, but is currently enabled only
  25.  * for drives which already have DMA enabled (UltraDMA or mode 2 multi/single),
  26.  * or which are recognized as "good" (see table below).  Drives with only mode0
  27.  * or mode1 (multi/single) DMA should also work with this chipset/driver
  28.  * (eg. MC2112A) but are not enabled by default.
  29.  *
  30.  * Use "hdparm -i" to view modes supported by a given drive.
  31.  *
  32.  * The hdparm-3.5 (or later) utility can be used for manually enabling/disabling
  33.  * DMA support, but must be (re-)compiled against this kernel version or later.
  34.  *
  35.  * To enable DMA, use "hdparm -d1 /dev/hd?" on a per-drive basis after booting.
  36.  * If problems arise, ide.c will disable DMA operation after a few retries.
  37.  * This error recovery mechanism works and has been extremely well exercised.
  38.  *
  39.  * IDE drives, depending on their vintage, may support several different modes
  40.  * of DMA operation.  The boot-time modes are indicated with a "*" in
  41.  * the "hdparm -i" listing, and can be changed with *knowledgeable* use of
  42.  * the "hdparm -X" feature.  There is seldom a need to do this, as drives
  43.  * normally power-up with their "best" PIO/DMA modes enabled.
  44.  *
  45.  * Testing has been done with a rather extensive number of drives,
  46.  * with Quantum & Western Digital models generally outperforming the pack,
  47.  * and Fujitsu & Conner (and some Seagate which are really Conner) drives
  48.  * showing more lackluster throughput.
  49.  *
  50.  * Keep an eye on /var/adm/messages for "DMA disabled" messages.
  51.  *
  52.  * Some people have reported trouble with Intel Zappa motherboards.
  53.  * This can be fixed by upgrading the AMI BIOS to version 1.00.04.BS0,
  54.  * available from ftp://ftp.intel.com/pub/bios/10004bs0.exe
  55.  * (thanks to Glen Morrell <glen@spin.Stanford.edu> for researching this).
  56.  *
  57.  * Thanks to "Christopher J. Reimer" <reimer@doe.carleton.ca> for
  58.  * fixing the problem with the BIOS on some Acer motherboards.
  59.  *
  60.  * Thanks to "Benoit Poulot-Cazajous" <poulot@chorus.fr> for testing
  61.  * "TX" chipset compatibility and for providing patches for the "TX" chipset.
  62.  *
  63.  * Thanks to Christian Brunner <chb@muc.de> for taking a good first crack
  64.  * at generic DMA -- his patches were referred to when preparing this code.
  65.  *
  66.  * Most importantly, thanks to Robert Bringman <rob@mars.trion.com>
  67.  * for supplying a Promise UDMA board & WD UDMA drive for this work!
  68.  *
  69.  * And, yes, Intel Zappa boards really *do* use both PIIX IDE ports.
  70.  *
  71.  * check_drive_lists(ide_drive_t *drive, int good_bad)
  72.  *
  73.  * ATA-66/100 and recovery functions, I forgot the rest......
  74.  * SELECT_READ_WRITE(hwif,drive,func) for active tuning based on IO direction.
  75.  *
  76.  */
  77. #include <linux/config.h>
  78. #include <linux/types.h>
  79. #include <linux/kernel.h>
  80. #include <linux/timer.h>
  81. #include <linux/mm.h>
  82. #include <linux/interrupt.h>
  83. #include <linux/pci.h>
  84. #include <linux/init.h>
  85. #include <linux/ide.h>
  86. #include <asm/io.h>
  87. #include <asm/irq.h>
  88. /*
  89.  * Long lost data from 2.0.34 that is now in 2.0.39
  90.  *
  91.  * This was used in ./drivers/block/triton.c to do DMA Base address setup
  92.  * when PnP failed.  Oh the things we forget.  I believe this was part
  93.  * of SFF-8038i that has been withdrawn from public access... :-((
  94.  */
  95. #define DEFAULT_BMIBA 0xe800 /* in case BIOS did not init it */
  96. #define DEFAULT_BMCRBA 0xcc00 /* VIA's default value */
  97. #define DEFAULT_BMALIBA 0xd400 /* ALI's default value */
  98. extern char *ide_dmafunc_verbose(ide_dma_action_t dmafunc);
  99. #ifdef CONFIG_IDEDMA_NEW_DRIVE_LISTINGS
  100. struct drive_list_entry {
  101. char * id_model;
  102. char * id_firmware;
  103. };
  104. struct drive_list_entry drive_whitelist [] = {
  105. { "Micropolis 2112A" ,       "ALL" },
  106. { "CONNER CTMA 4000" ,       "ALL" },
  107. { "CONNER CTT8000-A" ,       "ALL" },
  108. { "ST34342A" , "ALL" },
  109. { 0 , 0 }
  110. };
  111. struct drive_list_entry drive_blacklist [] = {
  112. { "WDC AC11000H" , "ALL" },
  113. { "WDC AC22100H" , "ALL" },
  114. { "WDC AC32500H" , "ALL" },
  115. { "WDC AC33100H" , "ALL" },
  116. { "WDC AC31600H" , "ALL" },
  117. { "WDC AC32100H" , "24.09P07" },
  118. { "WDC AC23200L" , "21.10N21" },
  119. { "Compaq CRD-8241B" , "ALL" },
  120. { "CRD-8400B" , "ALL" },
  121. { "CRD-8480B", "ALL" },
  122. { "CRD-8480C", "ALL" },
  123. { "CRD-8482B", "ALL" },
  124.   { "CRD-84" , "ALL" },
  125. { "SanDisk SDP3B" , "ALL" },
  126. { "SanDisk SDP3B-64" , "ALL" },
  127. { "SANYO CD-ROM CRD" , "ALL" },
  128. { "HITACHI CDR-8" , "ALL" },
  129. { "HITACHI CDR-8335" , "ALL" },
  130. { "HITACHI CDR-8435" , "ALL" },
  131. { "Toshiba CD-ROM XM-6202B" , "ALL" },
  132. { "CD-532E-A" , "ALL" },
  133. { "E-IDE CD-ROM CR-840", "ALL" },
  134. { "CD-ROM Drive/F5A", "ALL" },
  135. { "RICOH CD-R/RW MP7083A", "ALL" },
  136. { "WPI CDD-820", "ALL" },
  137. { "SAMSUNG CD-ROM SC-148C", "ALL" },
  138. { "SAMSUNG CD-ROM SC-148F", "ALL" },
  139. { "SAMSUNG CD-ROM SC", "ALL" },
  140. { "SanDisk SDP3B-64" , "ALL" },
  141. { "SAMSUNG CD-ROM SN-124", "ALL" },
  142. { "PLEXTOR CD-R PX-W8432T", "ALL" },
  143. { "ATAPI CD-ROM DRIVE 40X MAXIMUM", "ALL" },
  144. { "_NEC DV5800A",               "ALL"           },  
  145. { 0 , 0 }
  146. };
  147. int in_drive_list(struct hd_driveid *id, struct drive_list_entry * drive_table)
  148. {
  149. for ( ; drive_table->id_model ; drive_table++)
  150. if ((!strcmp(drive_table->id_model, id->model)) &&
  151.     ((!strstr(drive_table->id_firmware, id->fw_rev)) ||
  152.      (!strcmp(drive_table->id_firmware, "ALL"))))
  153. return 1;
  154. return 0;
  155. }
  156. #else /* !CONFIG_IDEDMA_NEW_DRIVE_LISTINGS */
  157. /*
  158.  * good_dma_drives() lists the model names (from "hdparm -i")
  159.  * of drives which do not support mode2 DMA but which are
  160.  * known to work fine with this interface under Linux.
  161.  */
  162. const char *good_dma_drives[] = {"Micropolis 2112A",
  163.  "CONNER CTMA 4000",
  164.  "CONNER CTT8000-A",
  165.  "ST34342A", /* for Sun Ultra */
  166.  NULL};
  167. /*
  168.  * bad_dma_drives() lists the model names (from "hdparm -i")
  169.  * of drives which supposedly support (U)DMA but which are
  170.  * known to corrupt data with this interface under Linux.
  171.  *
  172.  * This is an empirical list. Its generated from bug reports. That means
  173.  * while it reflects actual problem distributions it doesn't answer whether
  174.  * the drive or the controller, or cabling, or software, or some combination
  175.  * thereof is the fault. If you don't happen to agree with the kernel's 
  176.  * opinion of your drive - use hdparm to turn DMA on.
  177.  */
  178. const char *bad_dma_drives[] = {"WDC AC11000H",
  179. "WDC AC22100H",
  180. "WDC AC32100H",
  181. "WDC AC32500H",
  182. "WDC AC33100H",
  183. "WDC AC31600H",
  184.   NULL};
  185. #endif /* CONFIG_IDEDMA_NEW_DRIVE_LISTINGS */
  186. /*
  187.  * Our Physical Region Descriptor (PRD) table should be large enough
  188.  * to handle the biggest I/O request we are likely to see.  Since requests
  189.  * can have no more than 256 sectors, and since the typical blocksize is
  190.  * two or more sectors, we could get by with a limit of 128 entries here for
  191.  * the usual worst case.  Most requests seem to include some contiguous blocks,
  192.  * further reducing the number of table entries required.
  193.  *
  194.  * The driver reverts to PIO mode for individual requests that exceed
  195.  * this limit (possible with 512 byte blocksizes, eg. MSDOS f/s), so handling
  196.  * 100% of all crazy scenarios here is not necessary.
  197.  *
  198.  * As it turns out though, we must allocate a full 4KB page for this,
  199.  * so the two PRD tables (ide0 & ide1) will each get half of that,
  200.  * allowing each to have about 256 entries (8 bytes each) from this.
  201.  */
  202. #define PRD_BYTES 8
  203. #define PRD_ENTRIES (PAGE_SIZE / (2 * PRD_BYTES))
  204. /*
  205.  * dma_intr() is the handler for disk read/write DMA interrupts
  206.  */
  207. ide_startstop_t ide_dma_intr (ide_drive_t *drive)
  208. {
  209. int i;
  210. byte stat, dma_stat;
  211. dma_stat = HWIF(drive)->dmaproc(ide_dma_end, drive);
  212. stat = GET_STAT(); /* get drive status */
  213. if (OK_STAT(stat,DRIVE_READY,drive->bad_wstat|DRQ_STAT)) {
  214. if (!dma_stat) {
  215. struct request *rq = HWGROUP(drive)->rq;
  216. rq = HWGROUP(drive)->rq;
  217. for (i = rq->nr_sectors; i > 0;) {
  218. i -= rq->current_nr_sectors;
  219. ide_end_request(1, HWGROUP(drive));
  220. }
  221. return ide_stopped;
  222. }
  223. printk("%s: dma_intr: bad DMA status (dma_stat=%x)n", 
  224.        drive->name, dma_stat);
  225. }
  226. return ide_error(drive, "dma_intr", stat);
  227. }
  228. static int ide_build_sglist (ide_hwif_t *hwif, struct request *rq)
  229. {
  230. struct buffer_head *bh;
  231. struct scatterlist *sg = hwif->sg_table;
  232. int nents = 0;
  233. if (hwif->sg_dma_active)
  234. BUG();
  235. if (rq->cmd == READ)
  236. hwif->sg_dma_direction = PCI_DMA_FROMDEVICE;
  237. else
  238. hwif->sg_dma_direction = PCI_DMA_TODEVICE;
  239. bh = rq->bh;
  240. do {
  241. unsigned char *virt_addr = bh->b_data;
  242. unsigned int size = bh->b_size;
  243. if (nents >= PRD_ENTRIES)
  244. return 0;
  245. while ((bh = bh->b_reqnext) != NULL) {
  246. if ((virt_addr + size) != (unsigned char *) bh->b_data)
  247. break;
  248. size += bh->b_size;
  249. }
  250. memset(&sg[nents], 0, sizeof(*sg));
  251. sg[nents].address = virt_addr;
  252. sg[nents].length = size;
  253. nents++;
  254. } while (bh != NULL);
  255. return pci_map_sg(hwif->pci_dev, sg, nents, hwif->sg_dma_direction);
  256. }
  257. /*
  258.  * ide_build_dmatable() prepares a dma request.
  259.  * Returns 0 if all went okay, returns 1 otherwise.
  260.  * May also be invoked from trm290.c
  261.  */
  262. int ide_build_dmatable (ide_drive_t *drive, ide_dma_action_t func)
  263. {
  264. unsigned int *table = HWIF(drive)->dmatable_cpu;
  265. #ifdef CONFIG_BLK_DEV_TRM290
  266. unsigned int is_trm290_chipset = (HWIF(drive)->chipset == ide_trm290);
  267. #else
  268. const int is_trm290_chipset = 0;
  269. #endif
  270. unsigned int count = 0;
  271. int i;
  272. struct scatterlist *sg;
  273. HWIF(drive)->sg_nents = i = ide_build_sglist(HWIF(drive), HWGROUP(drive)->rq);
  274. if (!i)
  275. return 0;
  276. sg = HWIF(drive)->sg_table;
  277. while (i && sg_dma_len(sg)) {
  278. u32 cur_addr;
  279. u32 cur_len;
  280. cur_addr = sg_dma_address(sg);
  281. cur_len = sg_dma_len(sg);
  282. /*
  283.  * Fill in the dma table, without crossing any 64kB boundaries.
  284.  * Most hardware requires 16-bit alignment of all blocks,
  285.  * but the trm290 requires 32-bit alignment.
  286.  */
  287. while (cur_len) {
  288. if (count++ >= PRD_ENTRIES) {
  289. printk("%s: DMA table too smalln", drive->name);
  290. goto use_pio_instead;
  291. } else {
  292. u32 xcount, bcount = 0x10000 - (cur_addr & 0xffff);
  293. if (bcount > cur_len)
  294. bcount = cur_len;
  295. *table++ = cpu_to_le32(cur_addr);
  296. xcount = bcount & 0xffff;
  297. if (is_trm290_chipset)
  298. xcount = ((xcount >> 2) - 1) << 16;
  299. if (xcount == 0x0000) {
  300. /* 
  301.  * Most chipsets correctly interpret a length of 0x0000 as 64KB,
  302.  * but at least one (e.g. CS5530) misinterprets it as zero (!).
  303.  * So here we break the 64KB entry into two 32KB entries instead.
  304.  */
  305. if (count++ >= PRD_ENTRIES) {
  306. printk("%s: DMA table too smalln", drive->name);
  307. goto use_pio_instead;
  308. }
  309. *table++ = cpu_to_le32(0x8000);
  310. *table++ = cpu_to_le32(cur_addr + 0x8000);
  311. xcount = 0x8000;
  312. }
  313. *table++ = cpu_to_le32(xcount);
  314. cur_addr += bcount;
  315. cur_len -= bcount;
  316. }
  317. }
  318. sg++;
  319. i--;
  320. }
  321. if (count) {
  322. if (!is_trm290_chipset)
  323. *--table |= cpu_to_le32(0x80000000);
  324. return count;
  325. }
  326. printk("%s: empty DMA table?n", drive->name);
  327. use_pio_instead:
  328. pci_unmap_sg(HWIF(drive)->pci_dev,
  329.      HWIF(drive)->sg_table,
  330.      HWIF(drive)->sg_nents,
  331.      HWIF(drive)->sg_dma_direction);
  332. HWIF(drive)->sg_dma_active = 0;
  333. return 0; /* revert to PIO for this request */
  334. }
  335. /* Teardown mappings after DMA has completed.  */
  336. void ide_destroy_dmatable (ide_drive_t *drive)
  337. {
  338. struct pci_dev *dev = HWIF(drive)->pci_dev;
  339. struct scatterlist *sg = HWIF(drive)->sg_table;
  340. int nents = HWIF(drive)->sg_nents;
  341. pci_unmap_sg(dev, sg, nents, HWIF(drive)->sg_dma_direction);
  342. HWIF(drive)->sg_dma_active = 0;
  343. }
  344. /*
  345.  *  For both Blacklisted and Whitelisted drives.
  346.  *  This is setup to be called as an extern for future support
  347.  *  to other special driver code.
  348.  */
  349. int check_drive_lists (ide_drive_t *drive, int good_bad)
  350. {
  351. struct hd_driveid *id = drive->id;
  352. #ifdef CONFIG_IDEDMA_NEW_DRIVE_LISTINGS
  353. if (good_bad) {
  354. return in_drive_list(id, drive_whitelist);
  355. } else {
  356. int blacklist = in_drive_list(id, drive_blacklist);
  357. if (blacklist)
  358. printk("%s: Disabling (U)DMA for %sn", drive->name, id->model);
  359. return(blacklist);
  360. }
  361. #else /* !CONFIG_IDEDMA_NEW_DRIVE_LISTINGS */
  362. const char **list;
  363. if (good_bad) {
  364. /* Consult the list of known "good" drives */
  365. list = good_dma_drives;
  366. while (*list) {
  367. if (!strcmp(*list++,id->model))
  368. return 1;
  369. }
  370. } else {
  371. /* Consult the list of known "bad" drives */
  372. list = bad_dma_drives;
  373. while (*list) {
  374. if (!strcmp(*list++,id->model)) {
  375. printk("%s: Disabling (U)DMA for %sn",
  376. drive->name, id->model);
  377. return 1;
  378. }
  379. }
  380. }
  381. #endif /* CONFIG_IDEDMA_NEW_DRIVE_LISTINGS */
  382. return 0;
  383. }
  384. int report_drive_dmaing (ide_drive_t *drive)
  385. {
  386. struct hd_driveid *id = drive->id;
  387. if ((id->field_valid & 4) && (eighty_ninty_three(drive)) &&
  388.     (id->dma_ultra & (id->dma_ultra >> 11) & 7)) {
  389. if ((id->dma_ultra >> 13) & 1) {
  390. printk(", UDMA(100)"); /* UDMA BIOS-enabled! */
  391. } else if ((id->dma_ultra >> 12) & 1) {
  392. printk(", UDMA(66)"); /* UDMA BIOS-enabled! */
  393. } else {
  394. printk(", UDMA(44)"); /* UDMA BIOS-enabled! */
  395. }
  396. } else if ((id->field_valid & 4) &&
  397.    (id->dma_ultra & (id->dma_ultra >> 8) & 7)) {
  398. if ((id->dma_ultra >> 10) & 1) {
  399. printk(", UDMA(33)"); /* UDMA BIOS-enabled! */
  400. } else if ((id->dma_ultra >> 9) & 1) {
  401. printk(", UDMA(25)"); /* UDMA BIOS-enabled! */
  402. } else {
  403. printk(", UDMA(16)"); /* UDMA BIOS-enabled! */
  404. }
  405. } else if (id->field_valid & 4) {
  406. printk(", (U)DMA"); /* Can be BIOS-enabled! */
  407. } else {
  408. printk(", DMA");
  409. }
  410. return 1;
  411. }
  412. static int config_drive_for_dma (ide_drive_t *drive)
  413. {
  414. struct hd_driveid *id = drive->id;
  415. ide_hwif_t *hwif = HWIF(drive);
  416. if (id && (id->capability & 1) && hwif->autodma) {
  417. /* Consult the list of known "bad" drives */
  418. if (ide_dmaproc(ide_dma_bad_drive, drive))
  419. return hwif->dmaproc(ide_dma_off, drive);
  420. /* Enable DMA on any drive that has UltraDMA (mode 3/4/5) enabled */
  421. if ((id->field_valid & 4) && (eighty_ninty_three(drive)))
  422. if ((id->dma_ultra & (id->dma_ultra >> 11) & 7))
  423. return hwif->dmaproc(ide_dma_on, drive);
  424. /* Enable DMA on any drive that has UltraDMA (mode 0/1/2) enabled */
  425. if (id->field_valid & 4) /* UltraDMA */
  426. if ((id->dma_ultra & (id->dma_ultra >> 8) & 7))
  427. return hwif->dmaproc(ide_dma_on, drive);
  428. /* Enable DMA on any drive that has mode2 DMA (multi or single) enabled */
  429. if (id->field_valid & 2) /* regular DMA */
  430. if ((id->dma_mword & 0x404) == 0x404 || (id->dma_1word & 0x404) == 0x404)
  431. return hwif->dmaproc(ide_dma_on, drive);
  432. /* Consult the list of known "good" drives */
  433. if (ide_dmaproc(ide_dma_good_drive, drive))
  434. return hwif->dmaproc(ide_dma_on, drive);
  435. }
  436. return hwif->dmaproc(ide_dma_off_quietly, drive);
  437. }
  438. #ifndef CONFIG_BLK_DEV_IDEDMA_TIMEOUT
  439. /*
  440.  * 1 dmaing, 2 error, 4 intr
  441.  */
  442. static int dma_timer_expiry (ide_drive_t *drive)
  443. {
  444. byte dma_stat = inb(HWIF(drive)->dma_base+2);
  445. #ifdef DEBUG
  446. printk("%s: dma_timer_expiry: dma status == 0x%02xn", drive->name, dma_stat);
  447. #endif /* DEBUG */
  448. #if 1
  449. HWGROUP(drive)->expiry = NULL; /* one free ride for now */
  450. #endif
  451. if (dma_stat & 2) { /* ERROR */
  452. byte stat = GET_STAT();
  453. return ide_error(drive, "dma_timer_expiry", stat);
  454. }
  455. if (dma_stat & 1) /* DMAing */
  456. return WAIT_CMD;
  457. return 0;
  458. }
  459. #else /* CONFIG_BLK_DEV_IDEDMA_TIMEOUT */
  460. static ide_startstop_t ide_dma_timeout_revovery (ide_drive_t *drive)
  461. {
  462. ide_hwgroup_t *hwgroup = HWGROUP(drive);
  463. ide_hwif_t *hwif = HWIF(drive);
  464. int enable_dma = drive->using_dma;
  465. unsigned long flags;
  466. ide_startstop_t startstop;
  467. spin_lock_irqsave(&io_request_lock, flags);
  468. hwgroup->handler = NULL;
  469. del_timer(&hwgroup->timer);
  470. spin_unlock_irqrestore(&io_request_lock, flags);
  471. drive->waiting_for_dma = 0;
  472. startstop = ide_do_reset(drive);
  473. if ((enable_dma) && !(drive->using_dma))
  474. (void) hwif->dmaproc(ide_dma_on, drive);
  475. return startstop;
  476. }
  477. #endif /* CONFIG_BLK_DEV_IDEDMA_TIMEOUT */
  478. /*
  479.  * ide_dmaproc() initiates/aborts DMA read/write operations on a drive.
  480.  *
  481.  * The caller is assumed to have selected the drive and programmed the drive's
  482.  * sector address using CHS or LBA.  All that remains is to prepare for DMA
  483.  * and then issue the actual read/write DMA/PIO command to the drive.
  484.  *
  485.  * For ATAPI devices, we just prepare for DMA and return. The caller should
  486.  * then issue the packet command to the drive and call us again with
  487.  * ide_dma_begin afterwards.
  488.  *
  489.  * Returns 0 if all went well.
  490.  * Returns 1 if DMA read/write could not be started, in which case
  491.  * the caller should revert to PIO for the current request.
  492.  * May also be invoked from trm290.c
  493.  */
  494. int ide_dmaproc (ide_dma_action_t func, ide_drive_t *drive)
  495. {
  496. // ide_hwgroup_t *hwgroup = HWGROUP(drive);
  497. ide_hwif_t *hwif = HWIF(drive);
  498. unsigned long dma_base = hwif->dma_base;
  499. byte unit = (drive->select.b.unit & 0x01);
  500. unsigned int count, reading = 0;
  501. byte dma_stat;
  502. switch (func) {
  503. case ide_dma_off:
  504. printk("%s: DMA disabledn", drive->name);
  505. case ide_dma_off_quietly:
  506. outb(inb(dma_base+2) & ~(1<<(5+unit)), dma_base+2);
  507. case ide_dma_on:
  508. drive->using_dma = (func == ide_dma_on);
  509. if (drive->using_dma)
  510. outb(inb(dma_base+2)|(1<<(5+unit)), dma_base+2);
  511. return 0;
  512. case ide_dma_check:
  513. return config_drive_for_dma (drive);
  514. case ide_dma_read:
  515. reading = 1 << 3;
  516. case ide_dma_write:
  517. SELECT_READ_WRITE(hwif,drive,func);
  518. if (!(count = ide_build_dmatable(drive, func)))
  519. return 1; /* try PIO instead of DMA */
  520. outl(hwif->dmatable_dma, dma_base + 4); /* PRD table */
  521. outb(reading, dma_base); /* specify r/w */
  522. outb(inb(dma_base+2)|6, dma_base+2); /* clear INTR & ERROR flags */
  523. drive->waiting_for_dma = 1;
  524. if (drive->media != ide_disk)
  525. return 0;
  526. #ifdef CONFIG_BLK_DEV_IDEDMA_TIMEOUT
  527. ide_set_handler(drive, &ide_dma_intr, WAIT_CMD, NULL); /* issue cmd to drive */
  528. #else /* !CONFIG_BLK_DEV_IDEDMA_TIMEOUT */
  529. ide_set_handler(drive, &ide_dma_intr, WAIT_CMD, dma_timer_expiry); /* issue cmd to drive */
  530. #endif /* CONFIG_BLK_DEV_IDEDMA_TIMEOUT */
  531. OUT_BYTE(reading ? WIN_READDMA : WIN_WRITEDMA, IDE_COMMAND_REG);
  532. case ide_dma_begin:
  533. /* Note that this is done *after* the cmd has
  534.  * been issued to the drive, as per the BM-IDE spec.
  535.  * The Promise Ultra33 doesn't work correctly when
  536.  * we do this part before issuing the drive cmd.
  537.  */
  538. outb(inb(dma_base)|1, dma_base); /* start DMA */
  539. return 0;
  540. case ide_dma_end: /* returns 1 on error, 0 otherwise */
  541. drive->waiting_for_dma = 0;
  542. outb(inb(dma_base)&~1, dma_base); /* stop DMA */
  543. dma_stat = inb(dma_base+2); /* get DMA status */
  544. outb(dma_stat|6, dma_base+2); /* clear the INTR & ERROR bits */
  545. ide_destroy_dmatable(drive); /* purge DMA mappings */
  546. return (dma_stat & 7) != 4 ? (0x10 | dma_stat) : 0; /* verify good DMA status */
  547. case ide_dma_test_irq: /* returns 1 if dma irq issued, 0 otherwise */
  548. dma_stat = inb(dma_base+2);
  549. #if 0 /* do not set unless you know what you are doing */
  550. if (dma_stat & 4) {
  551. byte stat = GET_STAT();
  552. outb(dma_base+2, dma_stat & 0xE4);
  553. }
  554. #endif
  555. return (dma_stat & 4) == 4; /* return 1 if INTR asserted */
  556. case ide_dma_bad_drive:
  557. case ide_dma_good_drive:
  558. return check_drive_lists(drive, (func == ide_dma_good_drive));
  559. case ide_dma_verbose:
  560. return report_drive_dmaing(drive);
  561. case ide_dma_timeout:
  562. // FIXME: Many IDE chipsets do not permit command file register access
  563. // FIXME: while the bus-master function is still active.
  564. // FIXME: To prevent deadlock with those chipsets, we must be extremely
  565. // FIXME: careful here (and in ide_intr() as well) to NOT access any
  566. // FIXME: registers from the 0x1Fx/0x17x sets before terminating the
  567. // FIXME: bus-master operation via the bus-master control reg.
  568. // FIXME: Otherwise, chipset deadlock will occur, and some systems will
  569. // FIXME: lock up completely!!
  570. #ifdef CONFIG_BLK_DEV_IDEDMA_TIMEOUT
  571. /*
  572.  * Have to issue an abort and requeue the request
  573.  * DMA engine got turned off by a goofy ASIC, and
  574.  * we have to clean up the mess, and here is as good
  575.  * as any.  Do it globally for all chipsets.
  576.  */
  577. outb(0x00, dma_base); /* stop DMA */
  578. dma_stat = inb(dma_base+2); /* get DMA status */
  579. outb(dma_stat|6, dma_base+2); /* clear the INTR & ERROR bits */
  580. printk("%s: %s: Lets do it again!" 
  581. "stat = 0x%02x, dma_stat = 0x%02xn",
  582. drive->name, ide_dmafunc_verbose(func),
  583. GET_STAT(), dma_stat);
  584. if (dma_stat & 0xF0)
  585. return ide_dma_timeout_revovery(drive);
  586. printk("%s: %s: (restart_request) Lets do it again!" 
  587. "stat = 0x%02x, dma_stat = 0x%02xn",
  588. drive->name, ide_dmafunc_verbose(func),
  589. GET_STAT(), dma_stat);
  590. return restart_request(drive);  // BUG: return types do not match!!
  591. #endif /* CONFIG_BLK_DEV_IDEDMA_TIMEOUT */
  592. case ide_dma_retune:
  593. case ide_dma_lostirq:
  594. printk("ide_dmaproc: chipset supported %s func only: %dn", ide_dmafunc_verbose(func),  func);
  595. return 1;
  596. default:
  597. printk("ide_dmaproc: unsupported %s func: %dn", ide_dmafunc_verbose(func), func);
  598. return 1;
  599. }
  600. }
  601. /*
  602.  * Needed for allowing full modular support of ide-driver
  603.  */
  604. int ide_release_dma (ide_hwif_t *hwif)
  605. {
  606. if (hwif->dmatable_cpu) {
  607. pci_free_consistent(hwif->pci_dev,
  608.     PRD_ENTRIES * PRD_BYTES,
  609.     hwif->dmatable_cpu,
  610.     hwif->dmatable_dma);
  611. hwif->dmatable_cpu = NULL;
  612. }
  613. if (hwif->sg_table) {
  614. kfree(hwif->sg_table);
  615. hwif->sg_table = NULL;
  616. }
  617. if ((hwif->dma_extra) && (hwif->channel == 0))
  618. release_region((hwif->dma_base + 16), hwif->dma_extra);
  619. release_region(hwif->dma_base, 8);
  620. return 1;
  621. }
  622. /*
  623.  * This can be called for a dynamically installed interface. Don't __init it
  624.  */
  625.  
  626. void ide_setup_dma (ide_hwif_t *hwif, unsigned long dma_base, unsigned int num_ports)
  627. {
  628. printk("    %s: BM-DMA at 0x%04lx-0x%04lx", hwif->name, dma_base, dma_base + num_ports - 1);
  629. if (!request_region(dma_base, num_ports, hwif->name)) {
  630. printk(" -- ERROR, PORT ADDRESSES ALREADY IN USEn");
  631. return;
  632. }
  633. hwif->dma_base = dma_base;
  634. hwif->dmatable_cpu = pci_alloc_consistent(hwif->pci_dev,
  635.   PRD_ENTRIES * PRD_BYTES,
  636.   &hwif->dmatable_dma);
  637. if (hwif->dmatable_cpu == NULL)
  638. goto dma_alloc_failure;
  639. hwif->sg_table = kmalloc(sizeof(struct scatterlist) * PRD_ENTRIES,
  640.  GFP_KERNEL);
  641. if (hwif->sg_table == NULL) {
  642. pci_free_consistent(hwif->pci_dev, PRD_ENTRIES * PRD_BYTES,
  643.     hwif->dmatable_cpu, hwif->dmatable_dma);
  644. goto dma_alloc_failure;
  645. }
  646. hwif->dmaproc = &ide_dmaproc;
  647. if (hwif->chipset != ide_trm290) {
  648. byte dma_stat = inb(dma_base+2);
  649. printk(", BIOS settings: %s:%s, %s:%s",
  650.        hwif->drives[0].name, (dma_stat & 0x20) ? "DMA" : "pio",
  651.        hwif->drives[1].name, (dma_stat & 0x40) ? "DMA" : "pio");
  652. }
  653. printk("n");
  654. return;
  655. dma_alloc_failure:
  656. printk(" -- ERROR, UNABLE TO ALLOCATE DMA TABLESn");
  657. }
  658. /*
  659.  * Fetch the DMA Bus-Master-I/O-Base-Address (BMIBA) from PCI space:
  660.  */
  661. unsigned long __init ide_get_or_set_dma_base (ide_hwif_t *hwif, int extra, const char *name)
  662. {
  663. unsigned long dma_base = 0;
  664. struct pci_dev *dev = hwif->pci_dev;
  665. #ifdef CONFIG_BLK_DEV_IDEDMA_FORCED
  666. int second_chance = 0;
  667. second_chance_to_dma:
  668. #endif /* CONFIG_BLK_DEV_IDEDMA_FORCED */
  669. if (hwif->mate && hwif->mate->dma_base) {
  670. dma_base = hwif->mate->dma_base - (hwif->channel ? 0 : 8);
  671. } else {
  672. dma_base = pci_resource_start(dev, 4);
  673. if (!dma_base) {
  674. printk("%s: dma_base is invalid (0x%04lx)n", name, dma_base);
  675. dma_base = 0;
  676. }
  677. }
  678. #ifdef CONFIG_BLK_DEV_IDEDMA_FORCED
  679. if ((!dma_base) && (!second_chance)) {
  680. unsigned long set_bmiba = 0;
  681. second_chance++;
  682. switch(dev->vendor) {
  683. case PCI_VENDOR_ID_AL:
  684. set_bmiba = DEFAULT_BMALIBA; break;
  685. case PCI_VENDOR_ID_VIA:
  686. set_bmiba = DEFAULT_BMCRBA; break;
  687. case PCI_VENDOR_ID_INTEL:
  688. set_bmiba = DEFAULT_BMIBA; break;
  689. default:
  690. return dma_base;
  691. }
  692. pci_write_config_dword(dev, 0x20, set_bmiba|1);
  693. goto second_chance_to_dma;
  694. }
  695. #endif /* CONFIG_BLK_DEV_IDEDMA_FORCED */
  696. if (dma_base) {
  697. if (extra) /* PDC20246, PDC20262, HPT343, & HPT366 */
  698. request_region(dma_base+16, extra, name);
  699. dma_base += hwif->channel ? 8 : 0;
  700. hwif->dma_extra = extra;
  701. switch(dev->device) {
  702. /*
  703.  * This is buggy.  Device numbers are not unique
  704.  * between vendors.  We should be checking
  705.  * both dev->vendor and dev->device
  706.  */
  707. case PCI_DEVICE_ID_AL_M5219:
  708. case PCI_DEVICE_ID_AMD_VIPER_7409:
  709. case PCI_DEVICE_ID_CMD_643:
  710. case PCI_DEVICE_ID_WINBOND_82C105:
  711. outb(inb(dma_base+2) & 0x60, dma_base+2);
  712. if (inb(dma_base+2) & 0x80) {
  713. printk("%s: simplex device: DMA forcedn", name);
  714. }
  715. break;
  716. default:
  717. /*
  718.  * If the device claims "simplex" DMA,
  719.  * this means only one of the two interfaces
  720.  * can be trusted with DMA at any point in time.
  721.  * So we should enable DMA only on one of the
  722.  * two interfaces.
  723.  */
  724. if ((inb(dma_base+2) & 0x80)) { /* simplex device? */
  725. if ((!hwif->drives[0].present && !hwif->drives[1].present) ||
  726.     (hwif->mate && hwif->mate->dma_base)) {
  727. printk("%s: simplex device:  DMA disabledn", name);
  728. dma_base = 0;
  729. }
  730. }
  731. }
  732. }
  733. return dma_base;
  734. }