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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/drivers/ide/trm290.c Version 1.02 Mar. 18, 2000
  3.  *
  4.  *  Copyright (c) 1997-1998  Mark Lord
  5.  *  May be copied or modified under the terms of the GNU General Public License
  6.  */
  7. /*
  8.  * This module provides support for the bus-master IDE DMA function
  9.  * of the Tekram TRM290 chip, used on a variety of PCI IDE add-on boards,
  10.  * including a "Precision Instruments" board.  The TRM290 pre-dates
  11.  * the sff-8038 standard (ide-dma.c) by a few months, and differs
  12.  * significantly enough to warrant separate routines for some functions,
  13.  * while re-using others from ide-dma.c.
  14.  *
  15.  * EXPERIMENTAL!  It works for me (a sample of one).
  16.  *
  17.  * Works reliably for me in DMA mode (READs only),
  18.  * DMA WRITEs are disabled by default (see #define below);
  19.  *
  20.  * DMA is not enabled automatically for this chipset,
  21.  * but can be turned on manually (with "hdparm -d1") at run time.
  22.  *
  23.  * I need volunteers with "spare" drives for further testing
  24.  * and development, and maybe to help figure out the peculiarities.
  25.  * Even knowing the registers (below), some things behave strangely.
  26.  */
  27. #define TRM290_NO_DMA_WRITES /* DMA writes seem unreliable sometimes */
  28. /*
  29.  * TRM-290 PCI-IDE2 Bus Master Chip
  30.  * ================================
  31.  * The configuration registers are addressed in normal I/O port space
  32.  * and are used as follows:
  33.  *
  34.  * trm290_base depends on jumper settings, and is probed for by ide-dma.c
  35.  *
  36.  * trm290_base+2 when WRITTEN: chiptest register (byte, write-only)
  37.  * bit7 must always be written as "1"
  38.  * bits6-2 undefined
  39.  * bit1 1=legacy_compatible_mode, 0=native_pci_mode
  40.  * bit0 1=test_mode, 0=normal(default)
  41.  *
  42.  * trm290_base+2 when READ: status register (byte, read-only)
  43.  * bits7-2 undefined
  44.  * bit1 channel0 busmaster interrupt status 0=none, 1=asserted
  45.  * bit0 channel0 interrupt status 0=none, 1=asserted
  46.  *
  47.  * trm290_base+3 Interrupt mask register
  48.  * bits7-5 undefined
  49.  * bit4 legacy_header: 1=present, 0=absent
  50.  * bit3 channel1 busmaster interrupt status 0=none, 1=asserted (read only)
  51.  * bit2 channel1 interrupt status 0=none, 1=asserted (read only)
  52.  * bit1 channel1 interrupt mask: 1=masked, 0=unmasked(default)
  53.  * bit0 channel0 interrupt mask: 1=masked, 0=unmasked(default)
  54.  *
  55.  * trm290_base+1 "CPR" Config Pointer Register (byte)
  56.  * bit7 1=autoincrement CPR bits 2-0 after each access of CDR
  57.  * bit6 1=min. 1 wait-state posted write cycle (default), 0=0 wait-state
  58.  * bit5 0=enabled master burst access (default), 1=disable  (write only)
  59.  * bit4 PCI DEVSEL# timing select: 1=medium(default), 0=fast
  60.  * bit3 0=primary IDE channel, 1=secondary IDE channel
  61.  * bits2-0 register index for accesses through CDR port
  62.  *
  63.  * trm290_base+0 "CDR" Config Data Register (word)
  64.  * two sets of seven config registers,
  65.  * selected by CPR bit 3 (channel) and CPR bits 2-0 (index 0 to 6),
  66.  * each index defined below:
  67.  *
  68.  * Index-0 Base address register for command block (word)
  69.  * defaults: 0x1f0 for primary, 0x170 for secondary
  70.  *
  71.  * Index-1 general config register (byte)
  72.  * bit7 1=DMA enable, 0=DMA disable
  73.  * bit6 1=activate IDE_RESET, 0=no action (default)
  74.  * bit5 1=enable IORDY, 0=disable IORDY (default)
  75.  * bit4 0=16-bit data port(default), 1=8-bit (XT) data port
  76.  * bit3 interrupt polarity: 1=active_low, 0=active_high(default)
  77.  * bit2 power-saving-mode(?): 1=enable, 0=disable(default) (write only)
  78.  * bit1 bus_master_mode(?): 1=enable, 0=disable(default)
  79.  * bit0 enable_io_ports: 1=enable(default), 0=disable
  80.  *
  81.  * Index-2 read-ahead counter preload bits 0-7 (byte, write only)
  82.  * bits7-0 bits7-0 of readahead count
  83.  *
  84.  * Index-3 read-ahead config register (byte, write only)
  85.  * bit7 1=enable_readahead, 0=disable_readahead(default)
  86.  * bit6 1=clear_FIFO, 0=no_action
  87.  * bit5 undefined
  88.  * bit4 mode4 timing control: 1=enable, 0=disable(default)
  89.  * bit3 undefined
  90.  * bit2 undefined
  91.  * bits1-0 bits9-8 of read-ahead count
  92.  *
  93.  * Index-4 base address register for control block (word)
  94.  * defaults: 0x3f6 for primary, 0x376 for secondary
  95.  *
  96.  * Index-5 data port timings (shared by both drives) (byte)
  97.  * standard PCI "clk" (clock) counts, default value = 0xf5
  98.  *
  99.  * bits7-6 setup time:  00=1clk, 01=2clk, 10=3clk, 11=4clk
  100.  * bits5-3 hold time: 000=1clk, 001=2clk, 010=3clk,
  101.  * 011=4clk, 100=5clk, 101=6clk,
  102.  * 110=8clk, 111=12clk
  103.  * bits2-0 active time: 000=2clk, 001=3clk, 010=4clk,
  104.  * 011=5clk, 100=6clk, 101=8clk,
  105.  * 110=12clk, 111=16clk
  106.  *
  107.  * Index-6 command/control port timings (shared by both drives) (byte)
  108.  * same layout as Index-5, default value = 0xde
  109.  *
  110.  * Suggested CDR programming for PIO mode0 (600ns):
  111.  * 0x01f0,0x21,0xff,0x80,0x03f6,0xf5,0xde ; primary
  112.  * 0x0170,0x21,0xff,0x80,0x0376,0xf5,0xde ; secondary
  113.  *
  114.  * Suggested CDR programming for PIO mode3 (180ns):
  115.  * 0x01f0,0x21,0xff,0x80,0x03f6,0x09,0xde ; primary
  116.  * 0x0170,0x21,0xff,0x80,0x0376,0x09,0xde ; secondary
  117.  *
  118.  * Suggested CDR programming for PIO mode4 (120ns):
  119.  * 0x01f0,0x21,0xff,0x80,0x03f6,0x00,0xde ; primary
  120.  * 0x0170,0x21,0xff,0x80,0x0376,0x00,0xde ; secondary
  121.  *
  122.  */
  123. #include <linux/config.h>
  124. #include <linux/types.h>
  125. #include <linux/kernel.h>
  126. #include <linux/mm.h>
  127. #include <linux/ioport.h>
  128. #include <linux/interrupt.h>
  129. #include <linux/blkdev.h>
  130. #include <linux/init.h>
  131. #include <linux/hdreg.h>
  132. #include <linux/pci.h>
  133. #include <linux/delay.h>
  134. #include <linux/ide.h>
  135. #include <asm/io.h>
  136. static void trm290_prepare_drive (ide_drive_t *drive, unsigned int use_dma)
  137. {
  138. ide_hwif_t *hwif = HWIF(drive);
  139. unsigned int reg;
  140. unsigned long flags;
  141. /* select PIO or DMA */
  142. reg = use_dma ? (0x21 | 0x82) : (0x21 & ~0x82);
  143. __save_flags(flags); /* local CPU only */
  144. __cli(); /* local CPU only */
  145. if (reg != hwif->select_data) {
  146. hwif->select_data = reg;
  147. outb(0x51|(hwif->channel<<3), hwif->config_data+1); /* set PIO/DMA */
  148. outw(reg & 0xff, hwif->config_data);
  149. }
  150. /* enable IRQ if not probing */
  151. if (drive->present) {
  152. reg = inw(hwif->config_data+3) & 0x13;
  153. reg &= ~(1 << hwif->channel);
  154. outw(reg, hwif->config_data+3);
  155. }
  156. __restore_flags(flags); /* local CPU only */
  157. }
  158. static void trm290_selectproc (ide_drive_t *drive)
  159. {
  160. trm290_prepare_drive(drive, drive->using_dma);
  161. }
  162. #ifdef CONFIG_BLK_DEV_IDEDMA
  163. static int trm290_dmaproc (ide_dma_action_t func, ide_drive_t *drive)
  164. {
  165. ide_hwif_t *hwif = HWIF(drive);
  166. unsigned int count, reading = 2, writing = 0;
  167. switch (func) {
  168. case ide_dma_write:
  169. reading = 0;
  170. writing = 1;
  171. #ifdef TRM290_NO_DMA_WRITES
  172. break; /* always use PIO for writes */
  173. #endif
  174. case ide_dma_read:
  175. if (!(count = ide_build_dmatable(drive, func)))
  176. break; /* try PIO instead of DMA */
  177. trm290_prepare_drive(drive, 1); /* select DMA xfer */
  178. outl(hwif->dmatable_dma|reading|writing, hwif->dma_base);
  179. drive->waiting_for_dma = 1;
  180. outw((count * 2) - 1, hwif->dma_base+2); /* start DMA */
  181. if (drive->media != ide_disk)
  182. return 0;
  183. ide_set_handler(drive, &ide_dma_intr, WAIT_CMD, NULL);
  184. OUT_BYTE(reading ? WIN_READDMA : WIN_WRITEDMA, IDE_COMMAND_REG);
  185. return 0;
  186. case ide_dma_begin:
  187. return 0;
  188. case ide_dma_end:
  189. drive->waiting_for_dma = 0;
  190. ide_destroy_dmatable(drive); /* purge DMA mappings */
  191. return (inw(hwif->dma_base+2) != 0x00ff);
  192. case ide_dma_test_irq:
  193. return (inw(hwif->dma_base+2) == 0x00ff);
  194. default:
  195. return ide_dmaproc(func, drive);
  196. }
  197. trm290_prepare_drive(drive, 0); /* select PIO xfer */
  198. return 1;
  199. }
  200. #endif /* CONFIG_BLK_DEV_IDEDMA */
  201. /*
  202.  * Invoked from ide-dma.c at boot time.
  203.  */
  204. void __init ide_init_trm290 (ide_hwif_t *hwif)
  205. {
  206. unsigned int cfgbase = 0;
  207. unsigned long flags;
  208. byte reg;
  209. struct pci_dev *dev = hwif->pci_dev;
  210. hwif->chipset = ide_trm290;
  211. cfgbase = pci_resource_start(dev, 4);
  212. if ((dev->class & 5) && cfgbase)
  213. {
  214. hwif->config_data = cfgbase;
  215. printk("TRM290: chip config base at 0x%04lxn", hwif->config_data);
  216. } else {
  217. hwif->config_data = 0x3df0;
  218. printk("TRM290: using default config base at 0x%04lxn", hwif->config_data);
  219. }
  220. __save_flags(flags); /* local CPU only */
  221. __cli(); /* local CPU only */
  222. /* put config reg into first byte of hwif->select_data */
  223. outb(0x51|(hwif->channel<<3), hwif->config_data+1);
  224. hwif->select_data = 0x21; /* select PIO as default */
  225. outb(hwif->select_data, hwif->config_data);
  226. reg = inb(hwif->config_data+3); /* get IRQ info */
  227. reg = (reg & 0x10) | 0x03; /* mask IRQs for both ports */
  228. outb(reg, hwif->config_data+3);
  229. __restore_flags(flags); /* local CPU only */
  230. if ((reg & 0x10))
  231. hwif->irq = hwif->channel ? 15 : 14; /* legacy mode */
  232. else if (!hwif->irq && hwif->mate && hwif->mate->irq)
  233. hwif->irq = hwif->mate->irq; /* sharing IRQ with mate */
  234. ide_setup_dma(hwif, (hwif->config_data + 4) ^ (hwif->channel ? 0x0080 : 0x0000), 3);
  235. #ifdef CONFIG_BLK_DEV_IDEDMA
  236. hwif->dmaproc = &trm290_dmaproc;
  237. #endif /* CONFIG_BLK_DEV_IDEDMA */
  238. hwif->selectproc = &trm290_selectproc;
  239. hwif->autodma = 0; /* play it safe for now */
  240. #if 1
  241. {
  242. /*
  243.  * My trm290-based card doesn't seem to work with all possible values
  244.  * for the control basereg, so this kludge ensures that we use only
  245.  * values that are known to work.  Ugh. -ml
  246.  */
  247. unsigned short old, compat = hwif->channel ? 0x374 : 0x3f4;
  248. static unsigned short next_offset = 0;
  249. outb(0x54|(hwif->channel<<3), hwif->config_data+1);
  250. old = inw(hwif->config_data) & ~1;
  251. if (old != compat && inb(old+2) == 0xff) {
  252. compat += (next_offset += 0x400); /* leave lower 10 bits untouched */
  253. #if 1
  254. if (ide_check_region(compat + 2, 1))
  255. printk("Aieee %s: ide_check_region failure at 0x%04xn", hwif->name, (compat + 2));
  256. /*
  257.  * The region check is not needed; however.........
  258.  * Since this is the checked in ide-probe.c,
  259.  * this is only an assignment.
  260.  */
  261. #endif
  262. hwif->io_ports[IDE_CONTROL_OFFSET] = compat + 2;
  263. outw(compat|1, hwif->config_data);
  264. printk("%s: control basereg workaround: old=0x%04x, new=0x%04xn", hwif->name, old, inw(hwif->config_data) & ~1);
  265. }
  266. }
  267. #endif
  268. }