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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*----------------------------------------------------------------*/
  2. /*
  3.    Qlogic linux driver - work in progress. No Warranty express or implied.
  4.    Use at your own risk.  Support Tort Reform so you won't have to read all
  5.    these silly disclaimers.
  6.    Copyright 1994, Tom Zerucha.   
  7.    tz@execpc.com
  8.    
  9.    Additional Code, and much appreciated help by
  10.    Michael A. Griffith
  11.    grif@cs.ucr.edu
  12.    Thanks to Eric Youngdale and Dave Hinds for loadable module and PCMCIA
  13.    help respectively, and for suffering through my foolishness during the
  14.    debugging process.
  15.    Reference Qlogic FAS408 Technical Manual, 53408-510-00A, May 10, 1994
  16.    (you can reference it, but it is incomplete and inaccurate in places)
  17.    Version 0.46 1/30/97 - kernel 1.2.0+
  18.    Functions as standalone, loadable, and PCMCIA driver, the latter from
  19.    Dave Hinds' PCMCIA package.
  20.    Redistributable under terms of the GNU General Public License
  21. */
  22. /*----------------------------------------------------------------*/
  23. /* Configuration */
  24. /* Set the following to 2 to use normal interrupt (active high/totempole-
  25.    tristate), otherwise use 0 (REQUIRED FOR PCMCIA) for active low, open
  26.    drain */
  27. #define QL_INT_ACTIVE_HIGH 2
  28. /* Set the following to 1 to enable the use of interrupts.  Note that 0 tends
  29.    to be more stable, but slower (or ties up the system more) */
  30. #define QL_USE_IRQ 1
  31. /* Set the following to max out the speed of the PIO PseudoDMA transfers,
  32.    again, 0 tends to be slower, but more stable.  */
  33. #define QL_TURBO_PDMA 1
  34. /* This should be 1 to enable parity detection */
  35. #define QL_ENABLE_PARITY 1
  36. /* This will reset all devices when the driver is initialized (during bootup).
  37.    The other linux drivers don't do this, but the DOS drivers do, and after
  38.    using DOS or some kind of crash or lockup this will bring things back
  39.    without requiring a cold boot.  It does take some time to recover from a
  40.    reset, so it is slower, and I have seen timeouts so that devices weren't
  41.    recognized when this was set. */
  42. #define QL_RESET_AT_START 0
  43. /* crystal frequency in megahertz (for offset 5 and 9)
  44.    Please set this for your card.  Most Qlogic cards are 40 Mhz.  The
  45.    Control Concepts ISA (not VLB) is 24 Mhz */
  46. #define XTALFREQ 40
  47. /**********/
  48. /* DANGER! modify these at your own risk */
  49. /* SLOWCABLE can usually be reset to zero if you have a clean setup and
  50.    proper termination.  The rest are for synchronous transfers and other
  51.    advanced features if your device can transfer faster than 5Mb/sec.
  52.    If you are really curious, email me for a quick howto until I have
  53.    something official */
  54. /**********/
  55. /*****/
  56. /* config register 1 (offset 8) options */
  57. /* This needs to be set to 1 if your cabling is long or noisy */
  58. #define SLOWCABLE 1
  59. /*****/
  60. /* offset 0xc */
  61. /* This will set fast (10Mhz) synchronous timing when set to 1
  62.    For this to have an effect, FASTCLK must also be 1 */
  63. #define FASTSCSI 0
  64. /* This when set to 1 will set a faster sync transfer rate */
  65. #define FASTCLK 0
  66. /*(XTALFREQ>25?1:0)*/
  67. /*****/
  68. /* offset 6 */
  69. /* This is the sync transfer divisor, XTALFREQ/X will be the maximum
  70.    achievable data rate (assuming the rest of the system is capable
  71.    and set properly) */
  72. #define SYNCXFRPD 5
  73. /*(XTALFREQ/5)*/
  74. /*****/
  75. /* offset 7 */
  76. /* This is the count of how many synchronous transfers can take place
  77. i.e. how many reqs can occur before an ack is given.
  78. The maximum value for this is 15, the upper bits can modify
  79. REQ/ACK assertion and deassertion during synchronous transfers
  80. If this is 0, the bus will only transfer asynchronously */
  81. #define SYNCOFFST 0
  82. /* for the curious, bits 7&6 control the deassertion delay in 1/2 cycles
  83. of the 40Mhz clock. If FASTCLK is 1, specifying 01 (1/2) will
  84. cause the deassertion to be early by 1/2 clock.  Bits 5&4 control
  85. the assertion delay, also in 1/2 clocks (FASTCLK is ignored here). */
  86. /*----------------------------------------------------------------*/
  87. #ifdef PCMCIA
  88. #undef QL_INT_ACTIVE_HIGH
  89. #define QL_INT_ACTIVE_HIGH 0
  90. #endif 
  91. #include <linux/module.h>
  92. #ifdef PCMCIA
  93. #undef MODULE
  94. #endif 
  95. #include <linux/blk.h> /* to get disk capacity */
  96. #include <linux/kernel.h>
  97. #include <linux/string.h>
  98. #include <linux/init.h>
  99. #include <linux/ioport.h>
  100. #include <linux/sched.h>
  101. #include <linux/proc_fs.h>
  102. #include <linux/unistd.h>
  103. #include <linux/spinlock.h>
  104. #include <asm/io.h>
  105. #include <asm/irq.h>
  106. #include "sd.h"
  107. #include "hosts.h"
  108. #include "qlogicfas.h"
  109. #include <linux/stat.h>
  110. /*----------------------------------------------------------------*/
  111. /* driver state info, local to driver */
  112. static int     qbase; /* Port */
  113. static int     qinitid; /* initiator ID */
  114. static int     qabort; /* Flag to cause an abort */
  115. static int     qlirq = -1; /* IRQ being used */
  116. static char     qinfo[80]; /* description */
  117. static Scsi_Cmnd   *qlcmd; /* current command being processed */
  118. static int     qlcfg5 = ( XTALFREQ << 5 ); /* 15625/512 */
  119. static int     qlcfg6 = SYNCXFRPD;
  120. static int     qlcfg7 = SYNCOFFST;
  121. static int     qlcfg8 = ( SLOWCABLE << 7 ) | ( QL_ENABLE_PARITY << 4 );
  122. static int     qlcfg9 = ( ( XTALFREQ + 4 ) / 5 );
  123. static int     qlcfgc = ( FASTCLK << 3 ) | ( FASTSCSI << 4 );
  124. /*----------------------------------------------------------------*/
  125. /* The qlogic card uses two register maps - These macros select which one */
  126. #define REG0 ( outb( inb( qbase + 0xd ) & 0x7f , qbase + 0xd ), outb( 4 , qbase + 0xd ))
  127. #define REG1 ( outb( inb( qbase + 0xd ) | 0x80 , qbase + 0xd ), outb( 0xb4 | QL_INT_ACTIVE_HIGH , qbase + 0xd ))
  128. /* following is watchdog timeout in microseconds */
  129. #define WATCHDOG 5000000
  130. /*----------------------------------------------------------------*/
  131. /* the following will set the monitor border color (useful to find
  132.    where something crashed or gets stuck at and as a simple profiler) */
  133. #if 0
  134. #define rtrc(i) {inb(0x3da);outb(0x31,0x3c0);outb((i),0x3c0);}
  135. #else
  136. #define rtrc(i) {}
  137. #endif
  138. /*----------------------------------------------------------------*/
  139. /* local functions */
  140. /*----------------------------------------------------------------*/
  141. static void ql_zap(void);
  142. /* error recovery - reset everything */
  143. void ql_zap()
  144. {
  145. int x;
  146. unsigned long flags;
  147. save_flags( flags );
  148. cli();
  149. x = inb(qbase + 0xd);
  150. REG0;
  151. outb(3, qbase + 3); /* reset SCSI */
  152. outb(2, qbase + 3); /* reset chip */
  153. if (x & 0x80)
  154. REG1;
  155. restore_flags( flags );
  156. }
  157. /*----------------------------------------------------------------*/
  158. /* do pseudo-dma */
  159. static int ql_pdma(int phase, char *request, int reqlen)
  160. {
  161. int j;
  162. j = 0;
  163. if (phase & 1) { /* in */
  164. #if QL_TURBO_PDMA
  165. rtrc(4)
  166. /* empty fifo in large chunks */
  167. if( reqlen >= 128 && (inb( qbase + 8 ) & 2) ) { /* full */
  168. insl( qbase + 4, request, 32 );
  169. reqlen -= 128;
  170. request += 128;
  171. }
  172. while( reqlen >= 84 && !( j & 0xc0 ) ) /* 2/3 */
  173. if( (j=inb( qbase + 8 )) & 4 ) {
  174. insl( qbase + 4, request, 21 );
  175. reqlen -= 84;
  176. request += 84;
  177. }
  178. if( reqlen >= 44 && (inb( qbase + 8 ) & 8) ) { /* 1/3 */
  179. insl( qbase + 4, request, 11 );
  180. reqlen -= 44;
  181. request += 44;
  182. }
  183. #endif
  184. /* until both empty and int (or until reclen is 0) */
  185. rtrc(7)
  186. j = 0;
  187. while( reqlen && !( (j & 0x10) && (j & 0xc0) ) ) {
  188. /* while bytes to receive and not empty */
  189. j &= 0xc0;
  190. while ( reqlen && !( (j=inb(qbase + 8)) & 0x10 ) ) {
  191. *request++ = inb(qbase + 4);
  192. reqlen--;
  193. }
  194. if( j & 0x10 )
  195. j = inb(qbase+8);
  196. }
  197. }
  198. else { /* out */
  199. #if QL_TURBO_PDMA
  200. rtrc(4)
  201. if( reqlen >= 128 && inb( qbase + 8 ) & 0x10 ) { /* empty */
  202. outsl(qbase + 4, request, 32 );
  203. reqlen -= 128;
  204. request += 128;
  205. }
  206. while( reqlen >= 84 && !( j & 0xc0 ) ) /* 1/3 */
  207. if( !((j=inb( qbase + 8 )) & 8) ) {
  208. outsl( qbase + 4, request, 21 );
  209. reqlen -= 84;
  210. request += 84;
  211. }
  212. if( reqlen >= 40 && !(inb( qbase + 8 ) & 4 ) ) { /* 2/3 */
  213. outsl( qbase + 4, request, 10 );
  214. reqlen -= 40;
  215. request += 40;
  216. }
  217. #endif
  218. /* until full and int (or until reclen is 0) */
  219. rtrc(7)
  220. j = 0;
  221. while( reqlen && !( (j & 2) && (j & 0xc0) ) ) {
  222. /* while bytes to send and not full */
  223. while ( reqlen && !( (j=inb(qbase + 8)) & 2 ) ) {
  224. outb(*request++, qbase + 4);
  225. reqlen--;
  226. }
  227. if( j & 2 )
  228. j = inb(qbase+8);
  229. }
  230. }
  231. /* maybe return reqlen */
  232. return inb( qbase + 8 ) & 0xc0;
  233. }
  234. /*----------------------------------------------------------------*/
  235. /* wait for interrupt flag (polled - not real hardware interrupt) */
  236. static int ql_wai(void)
  237. {
  238. int i,k;
  239. k = 0;
  240. i = jiffies + WATCHDOG;
  241. while ( i > jiffies && !qabort && !((k = inb(qbase + 4)) & 0xe0)) {
  242. barrier();
  243. cpu_relax();
  244. }
  245. if (i <= jiffies)
  246. return (DID_TIME_OUT);
  247. if (qabort)
  248. return (qabort == 1 ? DID_ABORT : DID_RESET);
  249. if (k & 0x60)
  250. ql_zap();
  251. if (k & 0x20)
  252. return (DID_PARITY);
  253. if (k & 0x40)
  254. return (DID_ERROR);
  255. return 0;
  256. }
  257. /*----------------------------------------------------------------*/
  258. /* initiate scsi command - queueing handler */
  259. static void ql_icmd(Scsi_Cmnd * cmd)
  260. {
  261. unsigned int     i;
  262. unsigned long flags;
  263. qabort = 0;
  264. save_flags( flags );
  265. cli();
  266. REG0;
  267. /* clearing of interrupts and the fifo is needed */
  268. inb(qbase + 5);  /* clear interrupts */
  269. if (inb(qbase + 5)) /* if still interrupting */
  270. outb(2, qbase + 3); /* reset chip */
  271. else if (inb(qbase + 7) & 0x1f)
  272. outb(1, qbase + 3); /* clear fifo */
  273. while (inb(qbase + 5));  /* clear ints */
  274. REG1;
  275. outb(1, qbase + 8); /* set for PIO pseudo DMA */
  276. outb(0, qbase + 0xb); /* disable ints */
  277. inb(qbase + 8);  /* clear int bits */
  278. REG0;
  279. outb(0x40, qbase + 0xb); /* enable features */
  280. /* configurables */
  281. outb( qlcfgc , qbase + 0xc);
  282. /* config: no reset interrupt, (initiator) bus id */
  283. outb( 0x40 | qlcfg8 | qinitid, qbase + 8);
  284. outb( qlcfg7 , qbase + 7 );
  285. outb( qlcfg6 , qbase + 6 );
  286. /**/
  287. outb(qlcfg5, qbase + 5); /* select timer */
  288. outb(qlcfg9 & 7, qbase + 9); /* prescaler */
  289. /* outb(0x99, qbase + 5); */
  290. outb(cmd->target, qbase + 4);
  291. for (i = 0; i < cmd->cmd_len; i++)
  292. outb(cmd->cmnd[i], qbase + 2);
  293. qlcmd = cmd;
  294. outb(0x41, qbase + 3); /* select and send command */
  295. restore_flags( flags );
  296. }
  297. /*----------------------------------------------------------------*/
  298. /* process scsi command - usually after interrupt */
  299. static unsigned int ql_pcmd(Scsi_Cmnd * cmd)
  300. {
  301. unsigned int i, j, k;
  302. unsigned int result;  /* ultimate return result */
  303. unsigned int status;  /* scsi returned status */
  304. unsigned int message; /* scsi returned message */
  305. unsigned int phase; /* recorded scsi phase */
  306. unsigned int reqlen;  /* total length of transfer */
  307. struct scatterlist *sglist; /* scatter-gather list pointer */
  308. unsigned int sgcount; /* sg counter */
  309. rtrc(1)
  310. j = inb(qbase + 6);
  311. i = inb(qbase + 5);
  312. if (i == 0x20) {
  313. return (DID_NO_CONNECT << 16);
  314. }
  315. i |= inb(qbase + 5); /* the 0x10 bit can be set after the 0x08 */
  316. if (i != 0x18) {
  317. printk("Ql:Bad Interrupt status:%02xn", i);
  318. ql_zap();
  319. return (DID_BAD_INTR << 16);
  320. }
  321. j &= 7; /* j = inb( qbase + 7 ) >> 5; */
  322. /* correct status is supposed to be step 4 */
  323. /* it sometimes returns step 3 but with 0 bytes left to send */
  324. /* We can try stuffing the FIFO with the max each time, but we will get a
  325.    sequence of 3 if any bytes are left (but we do flush the FIFO anyway */
  326. if(j != 3 && j != 4) {
  327. printk("Ql:Bad sequence for command %d, int %02X, cmdleft = %dn", j, i, inb( qbase+7 ) & 0x1f );
  328. ql_zap();
  329. return (DID_ERROR << 16);
  330. }
  331. result = DID_OK;
  332. if (inb(qbase + 7) & 0x1f) /* if some bytes in fifo */
  333. outb(1, qbase + 3); /* clear fifo */
  334. /* note that request_bufflen is the total xfer size when sg is used */
  335. reqlen = cmd->request_bufflen;
  336. /* note that it won't work if transfers > 16M are requested */
  337. if (reqlen && !((phase = inb(qbase + 4)) & 6)) { /* data phase */
  338. rtrc(2)
  339. outb(reqlen, qbase); /* low-mid xfer cnt */
  340. outb(reqlen >> 8, qbase+1); /* low-mid xfer cnt */
  341. outb(reqlen >> 16, qbase + 0xe); /* high xfer cnt */
  342. outb(0x90, qbase + 3); /* command do xfer */
  343. /* PIO pseudo DMA to buffer or sglist */
  344. REG1;
  345. if (!cmd->use_sg)
  346. ql_pdma(phase, cmd->request_buffer, cmd->request_bufflen);
  347. else {
  348. sgcount = cmd->use_sg;
  349. sglist = cmd->request_buffer;
  350. while (sgcount--) {
  351. if (qabort) {
  352. REG0;
  353. return ((qabort == 1 ? DID_ABORT : DID_RESET) << 16);
  354. }
  355. if (ql_pdma(phase, sglist->address, sglist->length))
  356. break;
  357. sglist++;
  358. }
  359. }
  360. REG0;
  361. rtrc(2)
  362. /* wait for irq (split into second state of irq handler if this can take time) */
  363. if ((k = ql_wai()))
  364. return (k << 16);
  365. k = inb(qbase + 5); /* should be 0x10, bus service */
  366. }
  367. /*** Enter Status (and Message In) Phase ***/
  368. k = jiffies + WATCHDOG;
  369. while ( k > jiffies && !qabort && !(inb(qbase + 4) & 6)); /* wait for status phase */
  370. if ( k <= jiffies ) {
  371. ql_zap();
  372. return (DID_TIME_OUT << 16);
  373. }
  374. while (inb(qbase + 5));  /* clear pending ints */
  375. if (qabort)
  376. return ((qabort == 1 ? DID_ABORT : DID_RESET) << 16);
  377. outb(0x11, qbase + 3); /* get status and message */
  378. if ((k = ql_wai()))
  379. return (k << 16);
  380. i = inb(qbase + 5); /* get chip irq stat */
  381. j = inb(qbase + 7) & 0x1f; /* and bytes rec'd */
  382. status = inb(qbase + 2);
  383. message = inb(qbase + 2);
  384. /* should get function complete int if Status and message, else bus serv if only status */
  385. if (!((i == 8 && j == 2) || (i == 0x10 && j == 1))) {
  386. printk("Ql:Error during status phase, int=%02X, %d bytes recdn", i, j);
  387. result = DID_ERROR;
  388. }
  389. outb(0x12, qbase + 3); /* done, disconnect */
  390. rtrc(1)
  391. if ((k = ql_wai()))
  392. return (k << 16);
  393. /* should get bus service interrupt and disconnect interrupt */
  394. i = inb(qbase + 5); /* should be bus service */
  395. while (!qabort && ((i & 0x20) != 0x20)) {
  396. barrier();
  397. cpu_relax();
  398. i |= inb(qbase + 5);
  399. }
  400. rtrc(0)
  401. if (qabort)
  402. return ((qabort == 1 ? DID_ABORT : DID_RESET) << 16);
  403. return (result << 16) | (message << 8) | (status & STATUS_MASK);
  404. }
  405. #if QL_USE_IRQ
  406. /*----------------------------------------------------------------*/
  407. /* interrupt handler */
  408. static void     ql_ihandl(int irq, void *dev_id, struct pt_regs * regs)
  409. {
  410. Scsi_Cmnd    *icmd;
  411. REG0;
  412. if (!(inb(qbase + 4) & 0x80)) /* false alarm? */
  413. return;
  414. if (qlcmd == NULL) { /* no command to process? */
  415. int i;
  416. i = 16;
  417. while (i-- && inb(qbase + 5)); /* maybe also ql_zap() */
  418. return;
  419. }
  420. icmd = qlcmd;
  421. icmd->result = ql_pcmd(icmd);
  422. qlcmd = NULL;
  423. /* if result is CHECK CONDITION done calls qcommand to request sense */
  424. (icmd->scsi_done) (icmd);
  425. }
  426. static void     do_ql_ihandl(int irq, void *dev_id, struct pt_regs * regs)
  427. {
  428. unsigned long flags;
  429. spin_lock_irqsave(&io_request_lock, flags);
  430. ql_ihandl(irq, dev_id, regs);
  431. spin_unlock_irqrestore(&io_request_lock, flags);
  432. }
  433. #endif
  434. /*----------------------------------------------------------------*/
  435. /* global functions */
  436. /*----------------------------------------------------------------*/
  437. /* non queued command */
  438. #if QL_USE_IRQ
  439. static void qlidone(Scsi_Cmnd * cmd) {}; /* null function */
  440. #endif
  441. /* command process */
  442. int qlogicfas_command(Scsi_Cmnd * cmd)
  443. {
  444. int k;
  445. #if QL_USE_IRQ
  446. if (qlirq >= 0) {
  447. qlogicfas_queuecommand(cmd, qlidone);
  448. while (qlcmd != NULL);
  449. return cmd->result;
  450. }
  451. #endif
  452. /* non-irq version */
  453. if (cmd->target == qinitid)
  454. return (DID_BAD_TARGET << 16);
  455. ql_icmd(cmd);
  456. if ((k = ql_wai()))
  457. return (k << 16);
  458. return ql_pcmd(cmd);
  459. }
  460. #if QL_USE_IRQ
  461. /*----------------------------------------------------------------*/
  462. /* queued command */
  463. int qlogicfas_queuecommand(Scsi_Cmnd * cmd, void (*done) (Scsi_Cmnd *))
  464. {
  465. if(cmd->target == qinitid) {
  466. cmd->result = DID_BAD_TARGET << 16;
  467. done(cmd);
  468. return 0;
  469. }
  470. cmd->scsi_done = done;
  471. /* wait for the last command's interrupt to finish */
  472. while (qlcmd != NULL) {
  473. barrier();
  474. cpu_relax();
  475. }
  476. ql_icmd(cmd);
  477. return 0;
  478. }
  479. #else
  480. int qlogicfas_queuecommand(Scsi_Cmnd * cmd, void (*done) (Scsi_Cmnd *))
  481. {
  482. return 1;
  483. }
  484. #endif
  485. #ifdef PCMCIA
  486. /*----------------------------------------------------------------*/
  487. /* allow PCMCIA code to preset the port */
  488. /* port should be 0 and irq to -1 respectively for autoprobing */
  489. void qlogicfas_preset(int port, int irq)
  490. {
  491. qbase=port;
  492. qlirq=irq;
  493. }
  494. #endif
  495. /*----------------------------------------------------------------*/
  496. /* look for qlogic card and init if found */
  497. int __QLINIT qlogicfas_detect(Scsi_Host_Template * host)
  498. {
  499. int i, j; /* these are only used by IRQ detect */
  500. int qltyp; /* type of chip */
  501. struct Scsi_Host *hreg; /* registered host structure */
  502. unsigned long flags;
  503. host->proc_name =  "qlogicfas";
  504. /* Qlogic Cards only exist at 0x230 or 0x330 (the chip itself decodes the
  505.    address - I check 230 first since MIDI cards are typically at 330
  506.    Theoretically, two Qlogic cards can coexist in the same system.  This
  507.    should work by simply using this as a loadable module for the second
  508.    card, but I haven't tested this.
  509. */
  510. if( !qbase ) {
  511. for (qbase = 0x230; qbase < 0x430; qbase += 0x100) {
  512. if( !request_region( qbase , 0x10, "qlogicfas" ) )
  513. continue;
  514. REG1;
  515. if ( ( (inb(qbase + 0xe) ^ inb(qbase + 0xe)) == 7 )
  516.   && ( (inb(qbase + 0xe) ^ inb(qbase + 0xe)) == 7 ) )
  517. break;
  518. release_region(qbase, 0x10 );
  519. }
  520. if (qbase == 0x430)
  521. return 0;
  522. }
  523. else
  524. printk( "Ql: Using preset base address of %03xn", qbase );
  525. qltyp = inb(qbase + 0xe) & 0xf8;
  526. qinitid = host->this_id;
  527. if (qinitid < 0)
  528. qinitid = 7; /* if no ID, use 7 */
  529. outb(1, qbase + 8); /* set for PIO pseudo DMA */
  530. REG0;
  531. outb(0x40 | qlcfg8 | qinitid, qbase + 8); /* (ini) bus id, disable scsi rst */
  532. outb(qlcfg5, qbase + 5); /* select timer */
  533. outb(qlcfg9, qbase + 9); /* prescaler */
  534. #if QL_RESET_AT_START
  535. outb( 3 , qbase + 3 );
  536. REG1;
  537. while( inb( qbase + 0xf ) & 4 );
  538. REG0;
  539. #endif
  540. #if QL_USE_IRQ
  541. /* IRQ probe - toggle pin and check request pending */
  542. if( qlirq == -1 ) {
  543. save_flags( flags );
  544. cli();
  545. i = 0xffff;
  546. j = 3;
  547. outb(0x90, qbase + 3); /* illegal command - cause interrupt */
  548. REG1;
  549. outb(10, 0x20); /* access pending interrupt map */
  550. outb(10, 0xa0);
  551. while (j--) {
  552. outb(0xb0 | QL_INT_ACTIVE_HIGH , qbase + 0xd); /* int pin off */
  553. i &= ~(inb(0x20) | (inb(0xa0) << 8)); /* find IRQ off */
  554. outb(0xb4 | QL_INT_ACTIVE_HIGH , qbase + 0xd); /* int pin on */
  555. i &= inb(0x20) | (inb(0xa0) << 8); /* find IRQ on */
  556. }
  557. REG0;
  558. while (inb(qbase + 5));  /* purge int */
  559. j = -1;
  560. while (i) /* find on bit */
  561. i >>= 1, j++; /* should check for exactly 1 on */
  562. qlirq = j;
  563. restore_flags( flags );
  564. }
  565. else
  566. printk( "Ql: Using preset IRQ %dn", qlirq );
  567. if (qlirq >= 0 && !request_irq(qlirq, do_ql_ihandl, 0, "qlogicfas", NULL))
  568. host->can_queue = 1;
  569. #endif
  570. hreg = scsi_register( host , 0 ); /* no host data */
  571. if (!hreg)
  572. goto err_release_mem;
  573. hreg->io_port = qbase;
  574. hreg->n_io_port = 16;
  575. hreg->dma_channel = -1;
  576. if( qlirq != -1 )
  577. hreg->irq = qlirq;
  578. sprintf(qinfo, "Qlogicfas Driver version 0.46, chip %02X at %03X, IRQ %d, TPdma:%d",
  579.     qltyp, qbase, qlirq, QL_TURBO_PDMA );
  580. host->name = qinfo;
  581. return 1;
  582.  err_release_mem:
  583. release_region(qbase, 0x10);
  584. if (host->can_queue)
  585. free_irq(qlirq, do_ql_ihandl);
  586. return 0;
  587. }
  588. /*----------------------------------------------------------------*/
  589. /* return bios parameters */
  590. int qlogicfas_biosparam(Disk * disk, kdev_t dev, int ip[])
  591. {
  592. /* This should mimic the DOS Qlogic driver's behavior exactly */
  593. ip[0] = 0x40;
  594. ip[1] = 0x20;
  595. ip[2] = disk->capacity / (ip[0] * ip[1]);
  596. if (ip[2] > 1024) {
  597. ip[0] = 0xff;
  598. ip[1] = 0x3f;
  599. ip[2] = disk->capacity / (ip[0] * ip[1]);
  600. #if 0
  601. if (ip[2] > 1023)
  602. ip[2] = 1023;
  603. #endif
  604. }
  605. return 0;
  606. }
  607. /*----------------------------------------------------------------*/
  608. /* abort command in progress */
  609. int qlogicfas_abort(Scsi_Cmnd * cmd)
  610. {
  611. qabort = 1;
  612. ql_zap();
  613. return 0;
  614. }
  615. /*----------------------------------------------------------------*/
  616. /* reset SCSI bus */
  617. int qlogicfas_reset(Scsi_Cmnd * cmd, unsigned int ignored)
  618. {
  619. qabort = 2;
  620. ql_zap();
  621. return 1;
  622. }
  623. /*----------------------------------------------------------------*/
  624. /* return info string */
  625. const char *qlogicfas_info(struct Scsi_Host * host)
  626. {
  627. return qinfo;
  628. }
  629. MODULE_LICENSE("GPL");
  630. /* Eventually this will go into an include file, but this will be later */
  631. static Scsi_Host_Template driver_template = QLOGICFAS;
  632. #include "scsi_module.c"