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

嵌入式Linux

开发平台:

Unix_Linux

  1. #define AUTOSENSE
  2. #define PSEUDO_DMA
  3. #define BOARD_REQUIRES_NO_UDELAY /* PAS16 needs no I/O recovery delays */
  4. #define UNSAFE /* Not unsafe for PAS16 -- use it */
  5. /*
  6.  * This driver adapted from Drew Eckhardt's Trantor T128 driver
  7.  *
  8.  * Copyright 1993, Drew Eckhardt
  9.  * Visionary Computing
  10.  * (Unix and Linux consulting and custom programming)
  11.  * drew@colorado.edu
  12.  *      +1 (303) 666-5836
  13.  *
  14.  *  ( Based on T128 - DISTRIBUTION RELEASE 3. ) 
  15.  *
  16.  * Modified to work with the Pro Audio Spectrum/Studio 16
  17.  * by John Weidman.
  18.  *
  19.  *
  20.  * For more information, please consult 
  21.  *
  22.  * Media Vision
  23.  * (510) 770-8600
  24.  * (800) 348-7116
  25.  * 
  26.  * and 
  27.  *
  28.  * NCR 5380 Family
  29.  * SCSI Protocol Controller
  30.  * Databook
  31.  *
  32.  * NCR Microelectronics
  33.  * 1635 Aeroplaza Drive
  34.  * Colorado Springs, CO 80916
  35.  * 1+ (719) 578-3400
  36.  * 1+ (800) 334-5454
  37.  */
  38. /*
  39.  * Options : 
  40.  * AUTOSENSE - if defined, REQUEST SENSE will be performed automatically
  41.  *      for commands that return with a CHECK CONDITION status. 
  42.  *
  43.  * LIMIT_TRANSFERSIZE - if defined, limit the pseudo-dma transfers to 512
  44.  *      bytes at a time.  Since interrupts are disabled by default during
  45.  *      these transfers, we might need this to give reasonable interrupt
  46.  *      service time if the transfer size gets too large.
  47.  *
  48.  * PSEUDO_DMA - enables PSEUDO-DMA hardware, should give a 3-4X performance
  49.  * increase compared to polled I/O.
  50.  *
  51.  * PARITY - enable parity checking.  Not supported.
  52.  * 
  53.  * UNSAFE - leave interrupts enabled during pseudo-DMA transfers.  This
  54.  *     parameter comes from the NCR5380 code.  It is NOT unsafe with
  55.  *     the PAS16 and you should use it.  If you don't you will have
  56.  *     a problem with dropped characters during high speed
  57.  *     communications during SCSI transfers.  If you really don't
  58.  *     want to use UNSAFE you can try defining LIMIT_TRANSFERSIZE or
  59.  *     twiddle with the transfer size in the high level code.
  60.  *
  61.  * The card is detected and initialized in one of several ways : 
  62.  * 1.  Autoprobe (default) - There are many different models of
  63.  *     the Pro Audio Spectrum/Studio 16, and I only have one of
  64.  *     them, so this may require a little tweaking.  An interrupt
  65.  *     is triggered to autoprobe for the interrupt line.  Note:
  66.  *     with the newer model boards, the interrupt is set via
  67.  *     software after reset using the default_irq for the
  68.  *     current board number.
  69.  *
  70.  * 2.  With command line overrides - pas16=port,irq may be 
  71.  *     used on the LILO command line to override the defaults.
  72.  *
  73.  * 3.  With the PAS16_OVERRIDE compile time define.  This is 
  74.  *     specified as an array of address, irq tuples.  Ie, for
  75.  *     one board at the default 0x388 address, IRQ10, I could say 
  76.  *     -DPAS16_OVERRIDE={{0x388, 10}}
  77.  *     NOTE:  Untested.
  78.  *
  79.  * 4.  When included as a module, with arguments passed on the command line:
  80.  *         pas16_irq=xx the interrupt
  81.  *         pas16_addr=xx the port
  82.  *     e.g. "modprobe pas16 pas16_addr=0x388 pas16_irq=5"
  83.  *
  84.  *     Note that if the override methods are used, place holders must
  85.  *     be specified for other boards in the system.
  86.  *
  87.  *
  88.  * Configuration notes :
  89.  *   The current driver does not support interrupt sharing with the
  90.  *   sound portion of the card.  If you use the same irq for the
  91.  *   scsi port and sound you will have problems.  Either use
  92.  *   a different irq for the scsi port or don't use interrupts
  93.  *   for the scsi port.
  94.  *
  95.  *   If you have problems with your card not being recognized, use
  96.  *   the LILO command line override.  Try to get it recognized without
  97.  *   interrupts.  Ie, for a board at the default 0x388 base port,
  98.  *   boot: linux pas16=0x388,255
  99.  *
  100.  *   IRQ_NONE (255) should be specified for no interrupt,
  101.  *   IRQ_AUTO (254) to autoprobe for an IRQ line if overridden
  102.  *   on the command line.
  103.  *
  104.  *   (IRQ_AUTO == 254, IRQ_NONE == 255 in NCR5380.h)
  105.  */
  106. #include <linux/module.h>
  107. #include <asm/system.h>
  108. #include <linux/signal.h>
  109. #include <linux/proc_fs.h>
  110. #include <linux/sched.h>
  111. #include <asm/io.h>
  112. #include <linux/blk.h>
  113. #include "scsi.h"
  114. #include "hosts.h"
  115. #include "pas16.h"
  116. #define AUTOPROBE_IRQ
  117. #include "NCR5380.h"
  118. #include "constants.h"
  119. #include "sd.h"
  120. #include <linux/stat.h>
  121. #include <linux/init.h>
  122. static int pas_maxi = 0;
  123. static int pas_wmaxi = 0;
  124. static unsigned short pas16_addr = 0;
  125. static int pas16_irq = 0;
  126. static int scsi_irq_translate[] = { 0, 0, 1, 2, 3, 4, 5, 6, 0, 0, 7, 8, 9, 0, 10, 11 };
  127. /* The default_irqs array contains values used to set the irq into the
  128.  * board via software (as must be done on newer model boards without
  129.  * irq jumpers on the board).  The first value in the array will be
  130.  * assigned to logical board 0, the next to board 1, etc.
  131.  */
  132. static int default_irqs[] __initdata = {
  133. PAS16_DEFAULT_BOARD_1_IRQ,
  134. PAS16_DEFAULT_BOARD_2_IRQ,
  135. PAS16_DEFAULT_BOARD_3_IRQ,
  136. PAS16_DEFAULT_BOARD_4_IRQ
  137. };
  138. static struct override {
  139. unsigned short io_port;
  140. int irq;
  141. } overrides
  142. #ifdef PAS16_OVERRIDE
  143. [] __initdata = PAS16_OVERRIDE;
  144. #else
  145. [4] __initdata = { 
  146. {0, IRQ_AUTO},
  147. {0, IRQ_AUTO},
  148. {0, IRQ_AUTO},
  149. {0, IRQ_AUTO}
  150. };
  151. #endif
  152. #define NO_OVERRIDES (sizeof(overrides) / sizeof(struct override))
  153. static struct base {
  154. unsigned short io_port;
  155. int noauto;
  156. } bases[] __initdata = {
  157. {PAS16_DEFAULT_BASE_1, 0},
  158. {PAS16_DEFAULT_BASE_2, 0},
  159. {PAS16_DEFAULT_BASE_3, 0},
  160. {PAS16_DEFAULT_BASE_4, 0}
  161. };
  162. #define NO_BASES (sizeof (bases) / sizeof (struct base))
  163. unsigned short pas16_offset[8] = {
  164. 0x1c00, /* OUTPUT_DATA_REG */
  165. 0x1c01, /* INITIATOR_COMMAND_REG */
  166. 0x1c02, /* MODE_REG */
  167. 0x1c03, /* TARGET_COMMAND_REG */
  168. 0x3c00, /* STATUS_REG ro, SELECT_ENABLE_REG wo */
  169. 0x3c01, /* BUS_AND_STATUS_REG ro, START_DMA_SEND_REG wo */
  170. 0x3c02, /* INPUT_DATA_REGISTER ro, (N/A on PAS16 ?)
  171.  * START_DMA_TARGET_RECEIVE_REG wo
  172.  */
  173. 0x3c03, /* RESET_PARITY_INTERRUPT_REG ro,
  174.  * START_DMA_INITIATOR_RECEIVE_REG wo
  175.  */
  176. };
  177. /*----------------------------------------------------------------*/
  178. /**
  179.  *  enable_board - enable a pas16 board
  180.  * @board_num: logical board id
  181.  * @port: port to assign it
  182.  *
  183.  * Sets the address on new model PAS16 hardware
  184.  */
  185. static void __init enable_board(int board_num, unsigned short port)
  186. {
  187. outb(0xbc + board_num, MASTER_ADDRESS_PTR);
  188. outb(port >> 2, MASTER_ADDRESS_PTR);
  189. }
  190. /**
  191.  * init_board - set up board
  192.  * @port: board address
  193.  * @irq: interrupt line
  194.  * @force_irq: if true allow scsi/audio on the same int
  195.  *
  196.  * Set the board up to handle the SCSI interface
  197.  */
  198. static void __init init_board(unsigned short io_port, int irq, int force_irq)
  199. {
  200. unsigned int tmp;
  201. unsigned int pas_irq_code;
  202. /* Initialize the SCSI part of the board */
  203. outb(0x30, io_port + P_TIMEOUT_COUNTER_REG); /* Timeout counter */
  204. outb(0x01, io_port + P_TIMEOUT_STATUS_REG_OFFSET); /* Reset TC */
  205. outb(0x01, io_port + WAIT_STATE); /* 1 Wait state */
  206. NCR5380_read(RESET_PARITY_INTERRUPT_REG);
  207. /*
  208.  * Set the SCSI interrupt pointer without mucking up the sound
  209.  * interrupt pointer in the same byte.
  210.  */
  211.  
  212. pas_irq_code = (irq < 16) ? scsi_irq_translate[irq] : 0;
  213. tmp = inb(io_port + IO_CONFIG_3);
  214. if (((tmp & 0x0f) == pas_irq_code) && pas_irq_code > 0 && !force_irq) {
  215. printk(KERN_WARNING "pas16: WARNING: Can't use same irq as sound " "driver -- interrupts disabledn");
  216. /* Set up the drive parameters, disable 5380 interrupts */
  217. outb(0x4d, io_port + SYS_CONFIG_4);
  218. } else {
  219. tmp = (tmp & 0x0f) | (pas_irq_code << 4);
  220. outb(tmp, io_port + IO_CONFIG_3);
  221. /* Set up the drive parameters and enable 5380 interrupts */
  222. outb(0x6d, io_port + SYS_CONFIG_4);
  223. }
  224. }
  225. /**
  226.  * pas16_hw_detect - probe for hardware
  227.  * @board_num: logical board ID to probe for
  228.  *
  229.  * Determine if a pas16 board is present
  230.  */
  231. static int __init pas16_hw_detect(unsigned short board_num)
  232. {
  233. unsigned char board_rev, tmp;
  234. unsigned short io_port = bases[board_num].io_port;
  235. /* See if we can find a PAS16 board at the address associated
  236.  * with this logical board number.
  237.  */
  238. /* First, attempt to take a newer model board out of reset and
  239.  * give it a base address.  This shouldn't affect older boards.
  240.  */
  241. enable_board(board_num, io_port);
  242. /* Now see if it looks like a PAS16 board */
  243. board_rev = inb(io_port + PCB_CONFIG);
  244. if (board_rev == 0xff)
  245. return 0;
  246. tmp = board_rev ^ 0xe0;
  247. outb(tmp, io_port + PCB_CONFIG);
  248. tmp = inb(io_port + PCB_CONFIG);
  249. outb(board_rev, io_port + PCB_CONFIG);
  250. if (board_rev != tmp) /* Not a PAS-16 */
  251. return 0;
  252. if ((inb(io_port + OPERATION_MODE_1) & 0x03) != 0x03)
  253. return 0; /* return if no SCSI interface found */
  254. /* Mediavision has some new model boards that return ID bits
  255.  * that indicate a SCSI interface, but they're not (LMS).  We'll
  256.  * put in an additional test to try to weed them out.
  257.  */
  258. outb(0x01, io_port + WAIT_STATE); /* 1 Wait state       */
  259. NCR5380_write(MODE_REG, 0x20); /* Is it really SCSI? */
  260. if (NCR5380_read(MODE_REG) != 0x20) /* Write to a reg.    */
  261. return 0; /* and try to read    */
  262. NCR5380_write(MODE_REG, 0x00); /* it back.           */
  263. if (NCR5380_read(MODE_REG) != 0x00)
  264. return 0;
  265. return 1;
  266. }
  267. /**
  268.  * pas16_setup - parse command line
  269.  * @str: command line block
  270.  *
  271.  * LILO command line initialization of the overrides array from
  272.  * the passed in pas16= options
  273.  */
  274. int __init pas16_setup(char *str, int *ints)
  275. {
  276. static int commandline_current = 0;
  277. int i;
  278. int ints[10];
  279. get_options(str, sizeof(ints) / sizeof(int), ints);
  280. if (ints[0] != 2)
  281. printk(KERN_ERR "pas16_setup : usage pas16=io_port,irqn");
  282. else if (commandline_current < NO_OVERRIDES) {
  283. overrides[commandline_current].io_port = (unsigned short) ints[1];
  284. overrides[commandline_current].irq = ints[2];
  285. for (i = 0; i < NO_BASES; ++i)
  286. if (bases[i].io_port == (unsigned short) ints[1]) {
  287. bases[i].noauto = 1;
  288. break;
  289. }
  290. ++commandline_current;
  291. }
  292. return 1;
  293. }
  294. __setup("pas16=", pas16_setup);
  295. /**
  296.  * pas16_detect - detect and configure a pas16
  297.  * @tpnt: template
  298.  *
  299.  * Detects and initializes PAS16 controllers that were autoprobed, 
  300.  * overridden on the LILO command line, or specified at compile time.
  301.  */
  302. int __init pas16_detect(Scsi_Host_Template * tpnt)
  303. {
  304. static int current_override = 0;
  305. static unsigned short current_base = 0;
  306. struct Scsi_Host *instance;
  307. unsigned short io_port;
  308. int count;
  309. tpnt->proc_name = "pas16";
  310. tpnt->proc_info = &pas16_proc_info;
  311. if (pas16_addr != 0) {
  312. overrides[0].io_port = pas16_addr;
  313. /*
  314.  *  This is how we avoid seeing more than
  315.  *  one host adapter at the same I/O port.
  316.  *  Cribbed shamelessly from pas16_setup().
  317.  */
  318. for (count = 0; count < NO_BASES; ++count)
  319. if (bases[count].io_port == pas16_addr) {
  320. bases[count].noauto = 1;
  321. break;
  322. }
  323. }
  324. if (pas16_irq != 0)
  325. overrides[0].irq = pas16_irq;
  326. for (count = 0; current_override < NO_OVERRIDES; ++current_override) {
  327. io_port = 0;
  328. if (overrides[current_override].io_port) {
  329. io_port = overrides[current_override].io_port;
  330. enable_board(current_override, io_port);
  331. init_board(io_port, overrides[current_override].irq, 1);
  332. }
  333. else
  334. {
  335. for (; !io_port && (current_base < NO_BASES); ++current_base) {
  336. if (!bases[current_base].noauto && pas16_hw_detect(current_base)) {
  337. io_port = bases[current_base].io_port;
  338. init_board(io_port, default_irqs[current_base], 0);
  339. }
  340. }
  341. }
  342. if (!io_port)
  343. break;
  344. instance = scsi_register(tpnt, sizeof(struct NCR5380_hostdata));
  345. if (instance == NULL)
  346. break;
  347. instance->io_port = io_port;
  348. NCR5380_init(instance, 0);
  349. if (overrides[current_override].irq != IRQ_AUTO)
  350. instance->irq = overrides[current_override].irq;
  351. else
  352. instance->irq = NCR5380_probe_irq(instance, PAS16_IRQS);
  353. if (instance->irq != IRQ_NONE)
  354. if (request_irq(instance->irq, do_pas16_intr, SA_INTERRUPT, "pas16", NULL)) {
  355. printk(KERN_WARNING "scsi%d : IRQ%d not free, interrupts disabledn", instance->host_no, instance->irq);
  356. instance->irq = IRQ_NONE;
  357. }
  358. if (instance->irq == IRQ_NONE) {
  359. printk(KERN_INFO "scsi%d : interrupts not enabled. for better interactive performance,n", instance->host_no);
  360. printk(KERN_INFO "scsi%d : please jumper the board for a free IRQ.n", instance->host_no);
  361. /* Disable 5380 interrupts, leave drive params the same */
  362. outb(0x4d, io_port + SYS_CONFIG_4);
  363. outb((inb(io_port + IO_CONFIG_3) & 0x0f), io_port + IO_CONFIG_3);
  364. }
  365. printk(KERN_INFO "scsi%d : at 0x%04x", instance->host_no, (int)
  366.        instance->io_port);
  367. if (instance->irq == IRQ_NONE)
  368. printk(" interrupts disabled");
  369. else
  370. printk(" irq %d", instance->irq);
  371. printk(" options CAN_QUEUE=%d  CMD_PER_LUN=%d release=%d", CAN_QUEUE, CMD_PER_LUN, PAS16_PUBLIC_RELEASE);
  372. NCR5380_print_options(instance);
  373. printk("n");
  374. ++current_override;
  375. ++count;
  376. }
  377. return count;
  378. }
  379. /**
  380.  * pas16_biosparam - generate C/H/S data
  381.  * @disk: Disk to set up
  382.  * @dev: device ident of disk
  383.  * @ip: array to return C/H/S mapping
  384.  *
  385.  * Generates a BIOS / DOS compatible H-C-S mapping for 
  386.  * the specified device / size.
  387.  */
  388. int pas16_biosparam(Disk * disk, kdev_t dev, int *ip)
  389. {
  390. int size = disk->capacity;
  391. ip[0] = 64;
  392. ip[1] = 32;
  393. ip[2] = size >> 11; /* I think I have it as /(32*64) */
  394. if (ip[2] > 1024) { /* yes, >, not >= */
  395. ip[0] = 255;
  396. ip[1] = 63;
  397. ip[2] = size / (63 * 255);
  398. if (ip[2] > 1023) /* yes >1023... */
  399. ip[2] = 1023;
  400. }
  401. return 0;
  402. }
  403. /**
  404.  * NCR5380_pread  - pseudo DMA read
  405.  * @instance: board to read from
  406.  * @dst: destination for data
  407.  * @len: expected/max block length
  408.  *
  409.  * Fast 5380 pseudo-dma read function, transfers len bytes to 
  410.  * dst. Unlike most boards the PAS has IRQs enabled here, which
  411.  * helps no end.
  412.  */
  413. static inline int NCR5380_pread(struct Scsi_Host *instance, unsigned char *dst, int len)
  414. {
  415. unsigned char *d = dst;
  416. unsigned short reg = (unsigned short) (instance->io_port + P_DATA_REG_OFFSET);
  417. int i = len;
  418. int ii = 0;
  419. while (!(inb(instance->io_port + P_STATUS_REG_OFFSET) & P_ST_RDY))
  420. ++ii;
  421. insb(reg, d, i);
  422. if (inb(instance->io_port + P_TIMEOUT_STATUS_REG_OFFSET) & P_TS_TIM) {
  423. outb(P_TS_CT, instance->io_port + P_TIMEOUT_STATUS_REG_OFFSET);
  424. printk(KERN_ERR "scsi%d : watchdog timer fired in NCR5380_pread()n", instance->host_no);
  425. return -1;
  426. }
  427. if (ii > pas_maxi)
  428. pas_maxi = ii;
  429. return 0;
  430. }
  431. /**
  432.  * NCR5380_pwrite  - pseudo DMA write
  433.  * @instance: board to write to
  434.  * @src: source for data
  435.  * @len: expected/max block length
  436.  *
  437.  * Fast 5380 pseudo-dma write function, transfers len bytes from
  438.  * src. Unlike most boards the PAS has IRQs enabled here, which
  439.  * helps no end.
  440.  */
  441. static inline int NCR5380_pwrite(struct Scsi_Host *instance, unsigned char *src, int len)
  442. {
  443. unsigned char *s = src;
  444. unsigned short reg = (instance->io_port + P_DATA_REG_OFFSET);
  445. int i = len;
  446. int ii = 0;
  447. while (!((inb(instance->io_port + P_STATUS_REG_OFFSET)) & P_ST_RDY))
  448. ++ii;
  449. outsb(reg, s, i);
  450. if (inb(instance->io_port + P_TIMEOUT_STATUS_REG_OFFSET) & P_TS_TIM) {
  451. outb(P_TS_CT, instance->io_port + P_TIMEOUT_STATUS_REG_OFFSET);
  452. printk(KERN_ERR "scsi%d : watchdog timer fired in NCR5380_pwrite()n", instance->host_no);
  453. return -1;
  454. }
  455. if (ii > pas_maxi)
  456. pas_wmaxi = ii;
  457. return 0;
  458. }
  459. #include "NCR5380.c"
  460. /* Eventually this will go into an include file, but this will be later */
  461. static Scsi_Host_Template driver_template = MV_PAS16;
  462. #include "scsi_module.c"
  463. #ifdef MODULE
  464. MODULE_PARM(pas16_addr, "h");
  465. MODULE_PARM(pas16_irq, "i");
  466. #endif
  467. MODULE_LICENSE("GPL");