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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Generic Generic NCR5380 driver
  3.  *
  4.  * Copyright 1993, Drew Eckhardt
  5.  * Visionary Computing
  6.  * (Unix and Linux consulting and custom programming)
  7.  * drew@colorado.edu
  8.  *      +1 (303) 440-4894
  9.  *
  10.  * NCR53C400 extensions (c) 1994,1995,1996, Kevin Lentin
  11.  *    K.Lentin@cs.monash.edu.au
  12.  *
  13.  * NCR53C400A extensions (c) 1996, Ingmar Baumgart
  14.  *    ingmar@gonzo.schwaben.de
  15.  *
  16.  * DTC3181E extensions (c) 1997, Ronald van Cuijlenborg
  17.  * ronald.van.cuijlenborg@tip.nl or nutty@dds.nl
  18.  *
  19.  * Added ISAPNP support for DTC436 adapters,
  20.  * Thomas Sailer, sailer@ife.ee.ethz.ch
  21.  *
  22.  * ALPHA RELEASE 1. 
  23.  *
  24.  * For more information, please consult 
  25.  *
  26.  * NCR 5380 Family
  27.  * SCSI Protocol Controller
  28.  * Databook
  29.  *
  30.  * NCR Microelectronics
  31.  * 1635 Aeroplaza Drive
  32.  * Colorado Springs, CO 80916
  33.  * 1+ (719) 578-3400
  34.  * 1+ (800) 334-5454
  35.  */
  36. /* 
  37.  * TODO : flesh out DMA support, find some one actually using this (I have
  38.  *  a memory mapped Trantor board that works fine)
  39.  */
  40. /*
  41.  * Options :
  42.  *
  43.  * PARITY - enable parity checking.  Not supported.
  44.  *
  45.  * SCSI2 - enable support for SCSI-II tagged queueing.  Untested.
  46.  *
  47.  * USLEEP - enable support for devices that don't disconnect.  Untested.
  48.  *
  49.  * The card is detected and initialized in one of several ways : 
  50.  * 1.  With command line overrides - NCR5380=port,irq may be 
  51.  *     used on the LILO command line to override the defaults.
  52.  *
  53.  * 2.  With the GENERIC_NCR5380_OVERRIDE compile time define.  This is 
  54.  *     specified as an array of address, irq, dma, board tuples.  Ie, for
  55.  *     one board at 0x350, IRQ5, no dma, I could say  
  56.  *     -DGENERIC_NCR5380_OVERRIDE={{0xcc000, 5, DMA_NONE, BOARD_NCR5380}}
  57.  * 
  58.  * -1 should be specified for no or DMA interrupt, -2 to autoprobe for an 
  59.  *  IRQ line if overridden on the command line.
  60.  *
  61.  * 3.  When included as a module, with arguments passed on the command line:
  62.  *         ncr_irq=xx the interrupt
  63.  *         ncr_addr=xx  the port or base address (for port or memory
  64.  *               mapped, resp.)
  65.  *         ncr_dma=xx the DMA
  66.  *         ncr_5380=1 to set up for a NCR5380 board
  67.  *         ncr_53c400=1 to set up for a NCR53C400 board
  68.  *     e.g.
  69.  *     modprobe g_NCR5380 ncr_irq=5 ncr_addr=0x350 ncr_5380=1
  70.  *       for a port mapped NCR5380 board or
  71.  *     modprobe g_NCR5380 ncr_irq=255 ncr_addr=0xc8000 ncr_53c400=1
  72.  *       for a memory mapped NCR53C400 board with interrupts disabled.
  73.  * 
  74.  * 255 should be specified for no or DMA interrupt, 254 to autoprobe for an 
  75.  *  IRQ line if overridden on the command line.
  76.  *     
  77.  */
  78. /*
  79.  * $Log: generic_NCR5380.c,v $
  80.  */
  81. /* settings for DTC3181E card with only Mustek scanner attached */
  82. #define USLEEP
  83. #define USLEEP_POLL 1
  84. #define USLEEP_SLEEP 20
  85. #define USLEEP_WAITLONG 500
  86. #define AUTOPROBE_IRQ
  87. #define AUTOSENSE
  88. #include <linux/config.h>
  89. #ifdef CONFIG_SCSI_GENERIC_NCR53C400
  90. #define NCR53C400_PSEUDO_DMA 1
  91. #define PSEUDO_DMA
  92. #define NCR53C400
  93. #define NCR5380_STATS
  94. #undef NCR5380_STAT_LIMIT
  95. #endif
  96. #if defined(CONFIG_SCSI_G_NCR5380_PORT) && defined(CONFIG_SCSI_G_NCR5380_MEM)
  97. #error You can not configure the Generic NCR 5380 SCSI Driver for memory mapped I/O and port mapped I/O at the same time (yet)
  98. #endif
  99. #if !defined(CONFIG_SCSI_G_NCR5380_PORT) && !defined(CONFIG_SCSI_G_NCR5380_MEM)
  100. #error You must configure the Generic NCR 5380 SCSI Driver for one of memory mapped I/O and port mapped I/O.
  101. #endif
  102. #include <asm/system.h>
  103. #include <asm/io.h>
  104. #include <linux/signal.h>
  105. #include <linux/sched.h>
  106. #include <linux/blk.h>
  107. #include "scsi.h"
  108. #include "hosts.h"
  109. #include "g_NCR5380.h"
  110. #include "NCR5380.h"
  111. #include "constants.h"
  112. #include "sd.h"
  113. #include <linux/stat.h>
  114. #include <linux/init.h>
  115. #include <linux/ioport.h>
  116. #include <linux/isapnp.h>
  117. #define NCR_NOT_SET 0
  118. static int ncr_irq = NCR_NOT_SET;
  119. static int ncr_dma = NCR_NOT_SET;
  120. static int ncr_addr = NCR_NOT_SET;
  121. static int ncr_5380 = NCR_NOT_SET;
  122. static int ncr_53c400 = NCR_NOT_SET;
  123. static int ncr_53c400a = NCR_NOT_SET;
  124. static int dtc_3181e = NCR_NOT_SET;
  125. static struct override {
  126. NCR5380_implementation_fields;
  127. int irq;
  128. int dma;
  129. int board; /* Use NCR53c400, Ricoh, etc. extensions ? */
  130. } overrides
  131. #ifdef GENERIC_NCR5380_OVERRIDE
  132. [] __initdata = GENERIC_NCR5380_OVERRIDE;
  133. #else
  134. [1] __initdata = { { 0,},};
  135. #endif
  136. #define NO_OVERRIDES (sizeof(overrides) / sizeof(struct override))
  137. /**
  138.  * internal_setup - handle lilo command string override
  139.  * @board: BOARD_* identifier for the board
  140.  * @str: unused
  141.  * @ints: numeric parameters
  142.  *
  143.  *  Do LILO command line initialization of the overrides array. Display
  144.  * errors when needed
  145.  *
  146.  * Locks: none
  147.  */
  148. static void __init internal_setup(int board, char *str, int *ints)
  149. {
  150. static int commandline_current = 0;
  151. switch (board) {
  152. case BOARD_NCR5380:
  153. if (ints[0] != 2 && ints[0] != 3) {
  154. printk(KERN_ERR "generic_NCR5380_setup : usage ncr5380=" STRVAL(NCR5380_map_name) ",irq,dman");
  155. return;
  156. }
  157. break;
  158. case BOARD_NCR53C400:
  159. if (ints[0] != 2) {
  160. printk(KERN_ERR "generic_NCR53C400_setup : usage ncr53c400=" STRVAL(NCR5380_map_name) ",irqn");
  161. return;
  162. }
  163. break;
  164. case BOARD_NCR53C400A:
  165. if (ints[0] != 2) {
  166. printk(KERN_ERR "generic_NCR53C400A_setup : usage ncr53c400a=" STRVAL(NCR5380_map_name) ",irqn");
  167. return;
  168. }
  169. break;
  170. case BOARD_DTC3181E:
  171. if (ints[0] != 2) {
  172. printk("generic_DTC3181E_setup : usage dtc3181e=" STRVAL(NCR5380_map_name) ",irqn");
  173. return;
  174. }
  175. break;
  176. }
  177. if (commandline_current < NO_OVERRIDES) {
  178. overrides[commandline_current].NCR5380_map_name = (NCR5380_map_type) ints[1];
  179. overrides[commandline_current].irq = ints[2];
  180. if (ints[0] == 3)
  181. overrides[commandline_current].dma = ints[3];
  182. else
  183. overrides[commandline_current].dma = DMA_NONE;
  184. overrides[commandline_current].board = board;
  185. ++commandline_current;
  186. }
  187. }
  188. /**
  189.  *  do_NCR53C80_setup - set up entry point
  190.  * @str: unused
  191.  *
  192.  * Setup function invoked at boot to parse the ncr5380= command
  193.  * line.
  194.  */
  195. static int __init do_NCR5380_setup(char *str)
  196. {
  197. int ints[10];
  198. get_options(str, sizeof(ints) / sizeof(int), ints);
  199. internal_setup(BOARD_NCR5380, str, ints);
  200. return 1;
  201. }
  202. /**
  203.  *  do_NCR53C400_setup - set up entry point
  204.  * @str: unused
  205.  * @ints: integer parameters from kernel setup code 
  206.  *
  207.  * Setup function invoked at boot to parse the ncr53c400= command
  208.  * line.
  209.  */
  210. static int __init do_NCR53C400_setup(char *str)
  211. {
  212. int ints[10];
  213. get_options(str, sizeof(ints) / sizeof(int), ints);
  214. internal_setup(BOARD_NCR53C400, str, ints);
  215. return 1;
  216. }
  217. /**
  218.  *  do_NCR53C400A_setup - set up entry point
  219.  * @str: unused
  220.  * @ints: integer parameters from kernel setup code 
  221.  *
  222.  * Setup function invoked at boot to parse the ncr53c400a= command
  223.  * line.
  224.  */
  225. static int __init do_NCR53C400A_setup(char *str)
  226. {
  227. int ints[10];
  228. get_options(str, sizeof(ints) / sizeof(int), ints);
  229. internal_setup(BOARD_NCR53C400A, str, ints);
  230. return 1;
  231. }
  232. /**
  233.  *  do_DTC3181E_setup - set up entry point
  234.  * @str: unused
  235.  * @ints: integer parameters from kernel setup code 
  236.  *
  237.  * Setup function invoked at boot to parse the dtc3181e= command
  238.  * line.
  239.  */
  240. static int __init do_DTC3181E_setup(char *str)
  241. {
  242. int ints[10];
  243. get_options(str, sizeof(ints) / sizeof(int), ints);
  244. internal_setup(BOARD_DTC3181E, str, ints);
  245. return 1;
  246. }
  247. /**
  248.  *  generic_NCR5380_detect - look for NCR5380 controllers
  249.  * @tpnt: the scsi template
  250.  *
  251.  * Scan for the present of NCR5380, NCR53C400, NCR53C400A, DTC3181E
  252.  * and DTC436(ISAPnP) controllers. If overrides have been set we use
  253.  * them.
  254.  *
  255.  * The caller supplied NCR5380_init function is invoked from here, before
  256.  * the interrupt line is taken.
  257.  *
  258.  * Locks: none
  259.  */
  260. int __init generic_NCR5380_detect(Scsi_Host_Template * tpnt)
  261. {
  262. static int current_override = 0;
  263. int count, i;
  264. unsigned int *ports;
  265. static unsigned int __initdata ncr_53c400a_ports[] = {
  266. 0x280, 0x290, 0x300, 0x310, 0x330, 0x340, 0x348, 0x350, 0
  267. };
  268. static unsigned int __initdata dtc_3181e_ports[] = {
  269. 0x220, 0x240, 0x280, 0x2a0, 0x2c0, 0x300, 0x320, 0x340, 0
  270. };
  271. int flags = 0;
  272. struct Scsi_Host *instance;
  273. if (ncr_irq != NCR_NOT_SET)
  274. overrides[0].irq = ncr_irq;
  275. if (ncr_dma != NCR_NOT_SET)
  276. overrides[0].dma = ncr_dma;
  277. if (ncr_addr != NCR_NOT_SET)
  278. overrides[0].NCR5380_map_name = (NCR5380_map_type) ncr_addr;
  279. if (ncr_5380 != NCR_NOT_SET)
  280. overrides[0].board = BOARD_NCR5380;
  281. else if (ncr_53c400 != NCR_NOT_SET)
  282. overrides[0].board = BOARD_NCR53C400;
  283. else if (ncr_53c400a != NCR_NOT_SET)
  284. overrides[0].board = BOARD_NCR53C400A;
  285. else if (dtc_3181e != NCR_NOT_SET)
  286. overrides[0].board = BOARD_DTC3181E;
  287. if (!current_override && isapnp_present()) {
  288. struct pci_dev *dev = NULL;
  289. count = 0;
  290. while ((dev = isapnp_find_dev(NULL, ISAPNP_VENDOR('D', 'T', 'C'), ISAPNP_FUNCTION(0x436e), dev))) {
  291. if (count >= NO_OVERRIDES)
  292. break;
  293. if (!dev->active && dev->prepare(dev) < 0) {
  294. printk(KERN_ERR "dtc436e probe: prepare failedn");
  295. continue;
  296. }
  297. if (!(dev->resource[0].flags & IORESOURCE_IO))
  298. continue;
  299. if (!dev->active && dev->activate(dev) < 0) {
  300. printk(KERN_ERR "dtc436e probe: activate failedn");
  301. continue;
  302. }
  303. if (dev->irq_resource[0].flags & IORESOURCE_IRQ)
  304. overrides[count].irq = dev->irq_resource[0].start;
  305. else
  306. overrides[count].irq = IRQ_NONE;
  307. if (dev->dma_resource[0].flags & IORESOURCE_DMA)
  308. overrides[count].dma = dev->dma_resource[0].start;
  309. else
  310. overrides[count].dma = DMA_NONE;
  311. overrides[count].NCR5380_map_name = (NCR5380_map_type) dev->resource[0].start;
  312. overrides[count].board = BOARD_DTC3181E;
  313. count++;
  314. }
  315. }
  316. tpnt->proc_name = "g_NCR5380";
  317. for (count = 0; current_override < NO_OVERRIDES; ++current_override) {
  318. if (!(overrides[current_override].NCR5380_map_name))
  319. continue;
  320. ports = 0;
  321. switch (overrides[current_override].board) {
  322. case BOARD_NCR5380:
  323. flags = FLAG_NO_PSEUDO_DMA;
  324. break;
  325. case BOARD_NCR53C400:
  326. flags = FLAG_NCR53C400;
  327. break;
  328. case BOARD_NCR53C400A:
  329. flags = FLAG_NO_PSEUDO_DMA;
  330. ports = ncr_53c400a_ports;
  331. break;
  332. case BOARD_DTC3181E:
  333. flags = FLAG_NO_PSEUDO_DMA | FLAG_DTC3181E;
  334. ports = dtc_3181e_ports;
  335. break;
  336. }
  337. #ifdef CONFIG_SCSI_G_NCR5380_PORT
  338. if (ports) {
  339. /* wakeup sequence for the NCR53C400A and DTC3181E */
  340. /* Disable the adapter and look for a free io port */
  341. outb(0x59, 0x779);
  342. outb(0xb9, 0x379);
  343. outb(0xc5, 0x379);
  344. outb(0xae, 0x379);
  345. outb(0xa6, 0x379);
  346. outb(0x00, 0x379);
  347. if (overrides[current_override].NCR5380_map_name != PORT_AUTO)
  348. for (i = 0; ports[i]; i++) {
  349. if (overrides[current_override].NCR5380_map_name == ports[i])
  350. break;
  351. } else
  352. for (i = 0; ports[i]; i++) {
  353. if ((!check_region(ports[i], 16)) && (inb(ports[i]) == 0xff))
  354. break;
  355. }
  356. if (ports[i]) {
  357. outb(0x59, 0x779);
  358. outb(0xb9, 0x379);
  359. outb(0xc5, 0x379);
  360. outb(0xae, 0x379);
  361. outb(0xa6, 0x379);
  362. outb(0x80 | i, 0x379); /* set io port to be used */
  363. outb(0xc0, ports[i] + 9);
  364. if (inb(ports[i] + 9) != 0x80)
  365. continue;
  366. else
  367. overrides[current_override].NCR5380_map_name = ports[i];
  368. } else
  369. continue;
  370. }
  371. request_region(overrides[current_override].NCR5380_map_name, NCR5380_region_size, "ncr5380");
  372. #else
  373. if (check_mem_region(overrides[current_override].NCR5380_map_name, NCR5380_region_size))
  374. continue;
  375. request_mem_region(overrides[current_override].NCR5380_map_name, NCR5380_region_size, "ncr5380");
  376. #endif
  377. instance = scsi_register(tpnt, sizeof(struct NCR5380_hostdata));
  378. if (instance == NULL) {
  379. #ifdef CONFIG_SCSI_G_NCR5380_PORT
  380. release_region(overrides[current_override].NCR5380_map_name, NCR5380_region_size);
  381. #else
  382. release_mem_region(overrides[current_override].NCR5380_map_name, NCR5380_region_size);
  383. #endif
  384. continue;
  385. }
  386. instance->NCR5380_instance_name = overrides[current_override].NCR5380_map_name;
  387. NCR5380_init(instance, flags);
  388. if (overrides[current_override].irq != IRQ_AUTO)
  389. instance->irq = overrides[current_override].irq;
  390. else
  391. instance->irq = NCR5380_probe_irq(instance, 0xffff);
  392. if (instance->irq != IRQ_NONE)
  393. if (request_irq(instance->irq, do_generic_NCR5380_intr, SA_INTERRUPT, "NCR5380", NULL)) {
  394. printk(KERN_WARNING "scsi%d : IRQ%d not free, interrupts disabledn", instance->host_no, instance->irq);
  395. instance->irq = IRQ_NONE;
  396. }
  397. if (instance->irq == IRQ_NONE) {
  398. printk(KERN_INFO "scsi%d : interrupts not enabled. for better interactive performance,n", instance->host_no);
  399. printk(KERN_INFO "scsi%d : please jumper the board for a free IRQ.n", instance->host_no);
  400. }
  401. printk(KERN_INFO "scsi%d : at " STRVAL(NCR5380_map_name) " 0x%x", instance->host_no, (unsigned int) instance->NCR5380_instance_name);
  402. if (instance->irq == IRQ_NONE)
  403. printk(" interrupts disabled");
  404. else
  405. printk(" irq %d", instance->irq);
  406. printk(" options CAN_QUEUE=%d  CMD_PER_LUN=%d release=%d", CAN_QUEUE, CMD_PER_LUN, GENERIC_NCR5380_PUBLIC_RELEASE);
  407. NCR5380_print_options(instance);
  408. printk("n");
  409. ++current_override;
  410. ++count;
  411. }
  412. return count;
  413. }
  414. /**
  415.  * generic_NCR5380_info - reporting string
  416.  * @host: NCR5380 to report on
  417.  *
  418.  * Report driver information for the NCR5380
  419.  */
  420.  
  421. const char *generic_NCR5380_info(struct Scsi_Host *host)
  422. {
  423. static const char string[] = "Generic NCR5380/53C400 Driver";
  424. return string;
  425. }
  426. /**
  427.  * generic_NCR5380_release_resources - free resources
  428.  * @instance: host adapter to clean up 
  429.  *
  430.  * Free the generic interface resources from this adapter.
  431.  *
  432.  * Locks: none
  433.  */
  434.  
  435. int generic_NCR5380_release_resources(struct Scsi_Host *instance)
  436. {
  437. NCR5380_local_declare();
  438. NCR5380_setup(instance);
  439. #ifdef CONFIG_SCSI_G_NCR5380_PORT
  440. release_region(instance->NCR5380_instance_name, NCR5380_region_size);
  441. #else
  442. release_mem_region(instance->NCR5380_instance_name, NCR5380_region_size);
  443. #endif
  444. if (instance->irq != IRQ_NONE)
  445. free_irq(instance->irq, NULL);
  446. return 0;
  447. }
  448. #ifdef BIOSPARAM
  449. /**
  450.  * generic_NCR5380_biosparam
  451.  * @disk: disk to compute geometry for
  452.  * @dev: device identifier for this disk
  453.  * @ip: sizes to fill in
  454.  *
  455.  * Generates a BIOS / DOS compatible H-C-S mapping for the specified 
  456.  * device / size.
  457.  * 
  458.  *  XXX Most SCSI boards use this mapping, I could be incorrect.  Someone
  459.  * using hard disks on a trantor should verify that this mapping
  460.  * corresponds to that used by the BIOS / ASPI driver by running the linux
  461.  * fdisk program and matching the H_C_S coordinates to what DOS uses.
  462.  *
  463.  * Locks: none
  464.  */
  465. int generic_NCR5380_biosparam(Disk * disk, kdev_t dev, int *ip)
  466. {
  467. int size = disk->capacity;
  468. ip[0] = 64;
  469. ip[1] = 32;
  470. ip[2] = size >> 11;
  471. return 0;
  472. }
  473. #endif
  474. #if NCR53C400_PSEUDO_DMA
  475. /**
  476.  * NCR5380_pread - pseudo DMA read
  477.  * @instance: adapter to read from
  478.  * @dst: buffer to read into
  479.  * @len: buffer length
  480.  *
  481.  * Perform a psuedo DMA mode read from an NCR53C400 or equivalent
  482.  * controller
  483.  */
  484.  
  485. static inline int NCR5380_pread(struct Scsi_Host *instance, unsigned char *dst, int len)
  486. {
  487. int blocks = len / 128;
  488. int start = 0;
  489. int bl;
  490. NCR5380_local_declare();
  491. NCR5380_setup(instance);
  492. NCR5380_write(C400_CONTROL_STATUS_REG, CSR_BASE | CSR_TRANS_DIR);
  493. NCR5380_write(C400_BLOCK_COUNTER_REG, blocks);
  494. while (1) {
  495. if ((bl = NCR5380_read(C400_BLOCK_COUNTER_REG)) == 0) {
  496. break;
  497. }
  498. if (NCR5380_read(C400_CONTROL_STATUS_REG) & CSR_GATED_53C80_IRQ) {
  499. printk(KERN_ERR "53C400r: Got 53C80_IRQ start=%d, blocks=%dn", start, blocks);
  500. return -1;
  501. }
  502. while (NCR5380_read(C400_CONTROL_STATUS_REG) & CSR_HOST_BUF_NOT_RDY);
  503. #ifdef CONFIG_SCSI_G_NCR5380_PORT
  504. {
  505. int i;
  506. for (i = 0; i < 128; i++)
  507. dst[start + i] = NCR5380_read(C400_HOST_BUFFER);
  508. }
  509. #else
  510. /* implies CONFIG_SCSI_G_NCR5380_MEM */
  511. isa_memcpy_fromio(dst + start, NCR53C400_host_buffer + NCR5380_map_name, 128);
  512. #endif
  513. start += 128;
  514. blocks--;
  515. }
  516. if (blocks) {
  517. while (NCR5380_read(C400_CONTROL_STATUS_REG) & CSR_HOST_BUF_NOT_RDY)
  518. {
  519. // FIXME - no timeout
  520. }
  521. #ifdef CONFIG_SCSI_G_NCR5380_PORT
  522. {
  523. int i;
  524. for (i = 0; i < 128; i++)
  525. dst[start + i] = NCR5380_read(C400_HOST_BUFFER);
  526. }
  527. #else
  528. /* implies CONFIG_SCSI_G_NCR5380_MEM */
  529. isa_memcpy_fromio(dst + start, NCR53C400_host_buffer + NCR5380_map_name, 128);
  530. #endif
  531. start += 128;
  532. blocks--;
  533. }
  534. if (!(NCR5380_read(C400_CONTROL_STATUS_REG) & CSR_GATED_53C80_IRQ))
  535. printk("53C400r: no 53C80 gated irq after transfer");
  536. #if 0
  537. /*
  538.  * DON'T DO THIS - THEY NEVER ARRIVE!
  539.  */
  540. printk("53C400r: Waiting for 53C80 registersn");
  541. while (NCR5380_read(C400_CONTROL_STATUS_REG) & CSR_53C80_REG)
  542. ;
  543. #endif
  544. if (!(NCR5380_read(BUS_AND_STATUS_REG) & BASR_END_DMA_TRANSFER))
  545. printk(KERN_ERR "53C400r: no end dma signaln");
  546. NCR5380_write(MODE_REG, MR_BASE);
  547. NCR5380_read(RESET_PARITY_INTERRUPT_REG);
  548. return 0;
  549. }
  550. /**
  551.  * NCR5380_write - pseudo DMA write
  552.  * @instance: adapter to read from
  553.  * @dst: buffer to read into
  554.  * @len: buffer length
  555.  *
  556.  * Perform a psuedo DMA mode read from an NCR53C400 or equivalent
  557.  * controller
  558.  */
  559. static inline int NCR5380_pwrite(struct Scsi_Host *instance, unsigned char *src, int len)
  560. {
  561. int blocks = len / 128;
  562. int start = 0;
  563. int bl;
  564. int i;
  565. NCR5380_local_declare();
  566. NCR5380_setup(instance);
  567. NCR5380_write(C400_CONTROL_STATUS_REG, CSR_BASE);
  568. NCR5380_write(C400_BLOCK_COUNTER_REG, blocks);
  569. while (1) {
  570. if (NCR5380_read(C400_CONTROL_STATUS_REG) & CSR_GATED_53C80_IRQ) {
  571. printk(KERN_ERR "53C400w: Got 53C80_IRQ start=%d, blocks=%dn", start, blocks);
  572. return -1;
  573. }
  574. if ((bl = NCR5380_read(C400_BLOCK_COUNTER_REG)) == 0) {
  575. break;
  576. }
  577. while (NCR5380_read(C400_CONTROL_STATUS_REG) & CSR_HOST_BUF_NOT_RDY)
  578. ; // FIXME - timeout
  579. #ifdef CONFIG_SCSI_G_NCR5380_PORT
  580. {
  581. for (i = 0; i < 128; i++)
  582. NCR5380_write(C400_HOST_BUFFER, src[start + i]);
  583. }
  584. #else
  585. /* implies CONFIG_SCSI_G_NCR5380_MEM */
  586. isa_memcpy_toio(NCR53C400_host_buffer + NCR5380_map_name, src + start, 128);
  587. #endif
  588. start += 128;
  589. blocks--;
  590. }
  591. if (blocks) {
  592. while (NCR5380_read(C400_CONTROL_STATUS_REG) & CSR_HOST_BUF_NOT_RDY)
  593. ; // FIXME - no timeout
  594. #ifdef CONFIG_SCSI_G_NCR5380_PORT
  595. {
  596. for (i = 0; i < 128; i++)
  597. NCR5380_write(C400_HOST_BUFFER, src[start + i]);
  598. }
  599. #else
  600. /* implies CONFIG_SCSI_G_NCR5380_MEM */
  601. isa_memcpy_toio(NCR53C400_host_buffer + NCR5380_map_name, src + start, 128);
  602. #endif
  603. start += 128;
  604. blocks--;
  605. }
  606. #if 0
  607. printk("53C400w: waiting for registers to be availablen");
  608. THEY NEVER DO ! while (NCR5380_read(C400_CONTROL_STATUS_REG) & CSR_53C80_REG);
  609. printk("53C400w: Got emn");
  610. #endif
  611. /* Let's wait for this instead - could be ugly */
  612. /* All documentation says to check for this. Maybe my hardware is too
  613.  * fast. Waiting for it seems to work fine! KLL
  614.  */
  615. while (!(i = NCR5380_read(C400_CONTROL_STATUS_REG) & CSR_GATED_53C80_IRQ))
  616. ; // FIXME - no timeout
  617. /*
  618.  * I know. i is certainly != 0 here but the loop is new. See previous
  619.  * comment.
  620.  */
  621. if (i) {
  622. if (!((i = NCR5380_read(BUS_AND_STATUS_REG)) & BASR_END_DMA_TRANSFER))
  623. printk(KERN_ERR "53C400w: No END OF DMA bit - WHOOPS! BASR=%0xn", i);
  624. } else
  625. printk(KERN_ERR "53C400w: no 53C80 gated irq after transfer (last block)n");
  626. #if 0
  627. if (!(NCR5380_read(BUS_AND_STATUS_REG) & BASR_END_DMA_TRANSFER)) {
  628. printk(KERN_ERR "53C400w: no end dma signaln");
  629. }
  630. #endif
  631. while (!(NCR5380_read(TARGET_COMMAND_REG) & TCR_LAST_BYTE_SENT))
  632. ;  // TIMEOUT
  633. return 0;
  634. }
  635. #endif /* PSEUDO_DMA */
  636. /*
  637.  * Include the NCR5380 core code that we build our driver around
  638.  */
  639.  
  640. #include "NCR5380.c"
  641. #define PRINTP(x) len += sprintf(buffer+len, x)
  642. #define ANDP ,
  643. static int sprint_opcode(char *buffer, int len, int opcode)
  644. {
  645. int start = len;
  646. PRINTP("0x%02x " ANDP opcode);
  647. return len - start;
  648. }
  649. static int sprint_command(char *buffer, int len, unsigned char *command)
  650. {
  651. int i, s, start = len;
  652. len += sprint_opcode(buffer, len, command[0]);
  653. for (i = 1, s = COMMAND_SIZE(command[0]); i < s; ++i)
  654. PRINTP("%02x " ANDP command[i]);
  655. PRINTP("n");
  656. return len - start;
  657. }
  658. /**
  659.  * sprintf_Scsi_Cmnd - print a scsi command
  660.  * @buffer: buffr to print into
  661.  * @len: buffer length
  662.  * @cmd: SCSI command block
  663.  *
  664.  * Print out the target and command data in hex
  665.  */
  666. static int sprint_Scsi_Cmnd(char *buffer, int len, Scsi_Cmnd * cmd)
  667. {
  668. int start = len;
  669. PRINTP("host number %d destination target %d, lun %dn" ANDP cmd->host->host_no ANDP cmd->target ANDP cmd->lun);
  670. PRINTP("        command = ");
  671. len += sprint_command(buffer, len, cmd->cmnd);
  672. return len - start;
  673. }
  674. /**
  675.  * generic_NCR5380_proc_info - /proc for NCR5380 driver
  676.  * @buffer: buffer to print into
  677.  * @start: start position
  678.  * @offset: offset into buffer
  679.  * @len: length
  680.  * @hostno: instance to affect
  681.  * @inout: read/write
  682.  *
  683.  * Provide the procfs information for the 5380 controller. We fill
  684.  * this with useful debugging information including the commands
  685.  * being executed, disconnected command queue and the statistical
  686.  * data
  687.  *
  688.  * Locks: global cli/lock for queue walk
  689.  */
  690.  
  691. int generic_NCR5380_proc_info(char *buffer, char **start, off_t offset, int length, int hostno, int inout)
  692. {
  693. int len = 0;
  694. NCR5380_local_declare();
  695. unsigned long flags;
  696. unsigned char status;
  697. int i;
  698. struct Scsi_Host *scsi_ptr;
  699. Scsi_Cmnd *ptr;
  700. struct NCR5380_hostdata *hostdata;
  701. #ifdef NCR5380_STATS
  702. Scsi_Device *dev;
  703. extern const char *const scsi_device_types[MAX_SCSI_DEVICE_CODE];
  704. #endif
  705. save_flags(flags);
  706. cli();
  707. for (scsi_ptr = first_instance; scsi_ptr; scsi_ptr = scsi_ptr->next)
  708. if (scsi_ptr->host_no == hostno)
  709. break;
  710. NCR5380_setup(scsi_ptr);
  711. hostdata = (struct NCR5380_hostdata *) scsi_ptr->hostdata;
  712. PRINTP("SCSI host number %d : %sn" ANDP scsi_ptr->host_no ANDP scsi_ptr->hostt->name);
  713. PRINTP("Generic NCR5380 driver version %dn" ANDP GENERIC_NCR5380_PUBLIC_RELEASE);
  714. PRINTP("NCR5380 core version %dn" ANDP NCR5380_PUBLIC_RELEASE);
  715. #ifdef NCR53C400
  716. PRINTP("NCR53C400 extension version %dn" ANDP NCR53C400_PUBLIC_RELEASE);
  717. PRINTP("NCR53C400 card%s detectedn" ANDP(((struct NCR5380_hostdata *) scsi_ptr->hostdata)->flags & FLAG_NCR53C400) ? "" : " not");
  718. # if NCR53C400_PSEUDO_DMA
  719. PRINTP("NCR53C400 pseudo DMA usedn");
  720. # endif
  721. #else
  722. PRINTP("NO NCR53C400 driver extensionsn");
  723. #endif
  724. PRINTP("Using %s mapping at %s 0x%lx, " ANDP STRVAL(NCR5380_map_config) ANDP STRVAL(NCR5380_map_name) ANDP scsi_ptr->NCR5380_instance_name);
  725. if (scsi_ptr->irq == IRQ_NONE)
  726. PRINTP("no interruptn");
  727. else
  728. PRINTP("on interrupt %dn" ANDP scsi_ptr->irq);
  729. #ifdef NCR5380_STATS
  730. if (hostdata->connected || hostdata->issue_queue || hostdata->disconnected_queue)
  731. PRINTP("There are commands pending, transfer rates may be crudn");
  732. if (hostdata->pendingr)
  733. PRINTP("  %d pending reads" ANDP hostdata->pendingr);
  734. if (hostdata->pendingw)
  735. PRINTP("  %d pending writes" ANDP hostdata->pendingw);
  736. if (hostdata->pendingr || hostdata->pendingw)
  737. PRINTP("n");
  738. for (dev = scsi_ptr->host_queue; dev; dev = dev->next) {
  739. unsigned long br = hostdata->bytes_read[dev->id];
  740. unsigned long bw = hostdata->bytes_write[dev->id];
  741. long tr = hostdata->time_read[dev->id] / HZ;
  742. long tw = hostdata->time_write[dev->id] / HZ;
  743. PRINTP("  T:%d %s " ANDP dev->id ANDP(dev->type < MAX_SCSI_DEVICE_CODE) ? scsi_device_types[(int) dev->type] : "Unknown");
  744. for (i = 0; i < 8; i++)
  745. if (dev->vendor[i] >= 0x20)
  746. *(buffer + (len++)) = dev->vendor[i];
  747. *(buffer + (len++)) = ' ';
  748. for (i = 0; i < 16; i++)
  749. if (dev->model[i] >= 0x20)
  750. *(buffer + (len++)) = dev->model[i];
  751. *(buffer + (len++)) = ' ';
  752. for (i = 0; i < 4; i++)
  753. if (dev->rev[i] >= 0x20)
  754. *(buffer + (len++)) = dev->rev[i];
  755. *(buffer + (len++)) = ' ';
  756. PRINTP("n%10ld kb read    in %5ld secs" ANDP br / 1024 ANDP tr);
  757. if (tr)
  758. PRINTP(" @ %5ld bps" ANDP br / tr);
  759. PRINTP("n%10ld kb written in %5ld secs" ANDP bw / 1024 ANDP tw);
  760. if (tw)
  761. PRINTP(" @ %5ld bps" ANDP bw / tw);
  762. PRINTP("n");
  763. }
  764. #endif
  765. status = NCR5380_read(STATUS_REG);
  766. if (!(status & SR_REQ))
  767. PRINTP("REQ not asserted, phase unknown.n");
  768. else {
  769. for (i = 0; (phases[i].value != PHASE_UNKNOWN) && (phases[i].value != (status & PHASE_MASK)); ++i);
  770. PRINTP("Phase %sn" ANDP phases[i].name);
  771. }
  772. if (!hostdata->connected) {
  773. PRINTP("No currently connected commandn");
  774. } else {
  775. len += sprint_Scsi_Cmnd(buffer, len, (Scsi_Cmnd *) hostdata->connected);
  776. }
  777. PRINTP("issue_queuen");
  778. for (ptr = (Scsi_Cmnd *) hostdata->issue_queue; ptr; ptr = (Scsi_Cmnd *) ptr->host_scribble)
  779. len += sprint_Scsi_Cmnd(buffer, len, ptr);
  780. PRINTP("disconnected_queuen");
  781. for (ptr = (Scsi_Cmnd *) hostdata->disconnected_queue; ptr; ptr = (Scsi_Cmnd *) ptr->host_scribble)
  782. len += sprint_Scsi_Cmnd(buffer, len, ptr);
  783. *start = buffer + offset;
  784. len -= offset;
  785. if (len > length)
  786. len = length;
  787. restore_flags(flags);
  788. return len;
  789. }
  790. #undef PRINTP
  791. #undef ANDP
  792. /*
  793.  * Eventually this will go into an include file, but this will be later 
  794.  */
  795. static Scsi_Host_Template driver_template = GENERIC_NCR5380;
  796. #include <linux/module.h>
  797. #include "scsi_module.c"
  798. MODULE_PARM(ncr_irq, "i");
  799. MODULE_PARM(ncr_dma, "i");
  800. MODULE_PARM(ncr_addr, "i");
  801. MODULE_PARM(ncr_5380, "i");
  802. MODULE_PARM(ncr_53c400, "i");
  803. MODULE_PARM(ncr_53c400a, "i");
  804. MODULE_PARM(dtc_3181e, "i");
  805. MODULE_LICENSE("GPL");
  806. static struct isapnp_device_id id_table[] __devinitdata = {
  807. {
  808.  ISAPNP_ANY_ID, ISAPNP_ANY_ID,
  809.  ISAPNP_VENDOR('D', 'T', 'C'), ISAPNP_FUNCTION(0x436e),
  810.  0},
  811. {0}
  812. };
  813. MODULE_DEVICE_TABLE(isapnp, id_table);
  814. __setup("ncr5380=", do_NCR5380_setup);
  815. __setup("ncr53c400=", do_NCR53C400_setup);
  816. __setup("ncr53c400a=", do_NCR53C400A_setup);
  817. __setup("dtc3181e=", do_DTC3181E_setup);