aha1542.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:49k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* $Id: aha1542.c,v 1.1 1992/07/24 06:27:38 root Exp root $
  2.  *  linux/kernel/aha1542.c
  3.  *
  4.  *  Copyright (C) 1992  Tommy Thorn
  5.  *  Copyright (C) 1993, 1994, 1995 Eric Youngdale
  6.  *
  7.  *  Modified by Eric Youngdale
  8.  *        Use request_irq and request_dma to help prevent unexpected conflicts
  9.  *        Set up on-board DMA controller, such that we do not have to
  10.  *        have the bios enabled to use the aha1542.
  11.  *  Modified by David Gentzel
  12.  *        Don't call request_dma if dma mask is 0 (for BusLogic BT-445S VL-Bus
  13.  *        controller).
  14.  *  Modified by Matti Aarnio
  15.  *        Accept parameters from LILO cmd-line. -- 1-Oct-94
  16.  *  Modified by Mike McLagan <mike.mclagan@linux.org>
  17.  *        Recognise extended mode on AHA1542CP, different bit than 1542CF
  18.  *        1-Jan-97
  19.  *  Modified by Bjorn L. Thordarson and Einar Thor Einarsson
  20.  *        Recognize that DMA0 is valid DMA channel -- 13-Jul-98
  21.  *  Modified by Chris Faulhaber <jedgar@fxp.org>
  22.  *        Added module command-line options
  23.  *        19-Jul-99
  24.  *  Modified by Adam Fritzler <mid@auk.cx>
  25.  *        Added proper detection of the AHA-1640 (MCA version of AHA-1540)
  26.  */
  27. #include <linux/config.h>
  28. #include <linux/module.h>
  29. #include <linux/kernel.h>
  30. #include <linux/types.h>
  31. #include <linux/string.h>
  32. #include <linux/ioport.h>
  33. #include <linux/delay.h>
  34. #include <linux/sched.h>
  35. #include <linux/proc_fs.h>
  36. #include <linux/init.h>
  37. #include <linux/spinlock.h>
  38. #include <linux/pci.h>
  39. #include <linux/isapnp.h>
  40. #include <asm/dma.h>
  41. #include <asm/system.h>
  42. #include <asm/io.h>
  43. #include <linux/blk.h>
  44. #include <linux/mca.h>
  45. #include "scsi.h"
  46. #include "hosts.h"
  47. #include "aha1542.h"
  48. #define SCSI_PA(address) virt_to_bus(address)
  49. static void BAD_DMA(void *address, unsigned int length)
  50. {
  51. printk(KERN_CRIT "buf vaddress %p paddress 0x%lx length %dn",
  52.        address,
  53.        SCSI_PA(address),
  54.        length);
  55. panic("Buffer at physical address > 16Mb used for aha1542");
  56. }
  57. static void BAD_SG_DMA(Scsi_Cmnd * SCpnt,
  58.        struct scatterlist *sgpnt,
  59.        int nseg,
  60.        int badseg)
  61. {
  62. printk(KERN_CRIT "sgpnt[%d:%d] addr %p/0x%lx length %dn",
  63.        badseg, nseg,
  64.        sgpnt[badseg].address,
  65.        SCSI_PA(sgpnt[badseg].address),
  66.        sgpnt[badseg].length);
  67. /*
  68.  * Not safe to continue.
  69.  */
  70. panic("Buffer at physical address > 16Mb used for aha1542");
  71. }
  72. #include<linux/stat.h>
  73. #ifdef DEBUG
  74. #define DEB(x) x
  75. #else
  76. #define DEB(x)
  77. #endif
  78. /*
  79.    static const char RCSid[] = "$Header: /usr/src/linux/kernel/blk_drv/scsi/RCS/aha1542.c,v 1.1 1992/07/24 06:27:38 root Exp root $";
  80.  */
  81. /* The adaptec can be configured for quite a number of addresses, but
  82.    I generally do not want the card poking around at random.  We allow
  83.    two addresses - this allows people to use the Adaptec with a Midi
  84.    card, which also used 0x330 -- can be overridden with LILO! */
  85. #define MAXBOARDS 4 /* Increase this and the sizes of the
  86.    arrays below, if you need more.. */
  87. /* Boards 3,4 slots are reserved for ISAPnP/MCA scans */
  88. static unsigned int bases[MAXBOARDS] __initdata = {0x330, 0x334, 0, 0};
  89. /* set by aha1542_setup according to the command line; they also may
  90.    be marked __initdata, but require zero initializers then */
  91. static int setup_called[MAXBOARDS];
  92. static int setup_buson[MAXBOARDS];
  93. static int setup_busoff[MAXBOARDS];
  94. static int setup_dmaspeed[MAXBOARDS] __initdata = { -1, -1, -1, -1 };
  95. static char *setup_str[MAXBOARDS] __initdata;
  96. /*
  97.  * LILO/Module params:  aha1542=<PORTBASE>[,<BUSON>,<BUSOFF>[,<DMASPEED>]]
  98.  *
  99.  * Where:  <PORTBASE> is any of the valid AHA addresses:
  100.  *                      0x130, 0x134, 0x230, 0x234, 0x330, 0x334
  101.  *         <BUSON>  is the time (in microsecs) that AHA spends on the AT-bus
  102.  *                  when transferring data.  1542A power-on default is 11us,
  103.  *                  valid values are in range: 2..15 (decimal)
  104.  *         <BUSOFF> is the time that AHA spends OFF THE BUS after while
  105.  *                  it is transferring data (not to monopolize the bus).
  106.  *                  Power-on default is 4us, valid range: 1..64 microseconds.
  107.  *         <DMASPEED> Default is jumper selected (1542A: on the J1),
  108.  *                  but experimenter can alter it with this.
  109.  *                  Valid values: 5, 6, 7, 8, 10 (MB/s)
  110.  *                  Factory default is 5 MB/s.
  111.  */
  112. #if defined(MODULE)
  113. int isapnp = 0;
  114. int aha1542[] = {0x330, 11, 4, -1};
  115. MODULE_PARM(aha1542, "1-4i");
  116. MODULE_PARM(isapnp, "i");
  117. static struct isapnp_device_id id_table[] __initdata = {
  118. {
  119. ISAPNP_ANY_ID, ISAPNP_ANY_ID,
  120. ISAPNP_VENDOR('A', 'D', 'P'), ISAPNP_FUNCTION(0x1542),
  121. 0
  122. },
  123. {0}
  124. };
  125. MODULE_DEVICE_TABLE(isapnp, id_table);
  126. #else
  127. static int isapnp = 1;
  128. #endif
  129. #define BIOS_TRANSLATION_1632 0 /* Used by some old 1542A boards */
  130. #define BIOS_TRANSLATION_6432 1 /* Default case these days */
  131. #define BIOS_TRANSLATION_25563 2 /* Big disk case */
  132. struct aha1542_hostdata {
  133. /* This will effectively start both of them at the first mailbox */
  134. int bios_translation; /* Mapping bios uses - for compatibility */
  135. int aha1542_last_mbi_used;
  136. int aha1542_last_mbo_used;
  137. Scsi_Cmnd *SCint[AHA1542_MAILBOXES];
  138. struct mailbox mb[2 * AHA1542_MAILBOXES];
  139. struct ccb ccb[AHA1542_MAILBOXES];
  140. };
  141. #define HOSTDATA(host) ((struct aha1542_hostdata *) &host->hostdata)
  142. static struct Scsi_Host *aha_host[7]; /* One for each IRQ level (9-15) */
  143. #define WAITnexttimeout 3000000
  144. static void setup_mailboxes(int base_io, struct Scsi_Host *shpnt);
  145. static int aha1542_restart(struct Scsi_Host *shost);
  146. static void aha1542_intr_handle(int irq, void *dev_id, struct pt_regs *regs);
  147. static void do_aha1542_intr_handle(int irq, void *dev_id, struct pt_regs *regs);
  148. #define aha1542_intr_reset(base)  outb(IRST, CONTROL(base))
  149. #define WAIT(port, mask, allof, noneof)
  150.  { register int WAITbits;
  151.    register int WAITtimeout = WAITnexttimeout;
  152.    while (1) {
  153.      WAITbits = inb(port) & (mask);
  154.      if ((WAITbits & (allof)) == (allof) && ((WAITbits & (noneof)) == 0)) 
  155.        break;                                                         
  156.      if (--WAITtimeout == 0) goto fail;
  157.    }
  158.  }
  159. /* Similar to WAIT, except we use the udelay call to regulate the
  160.    amount of time we wait.  */
  161. #define WAITd(port, mask, allof, noneof, timeout)
  162.  { register int WAITbits;
  163.    register int WAITtimeout = timeout;
  164.    while (1) {
  165.      WAITbits = inb(port) & (mask);
  166.      if ((WAITbits & (allof)) == (allof) && ((WAITbits & (noneof)) == 0)) 
  167.        break;                                                         
  168.      mdelay(1);
  169.      if (--WAITtimeout == 0) goto fail;
  170.    }
  171.  }
  172. static void aha1542_stat(void)
  173. {
  174. /* int s = inb(STATUS), i = inb(INTRFLAGS);
  175. printk("status=%x intrflags=%xn", s, i, WAITnexttimeout-WAITtimeout); */
  176. }
  177. /* This is a bit complicated, but we need to make sure that an interrupt
  178.    routine does not send something out while we are in the middle of this.
  179.    Fortunately, it is only at boot time that multi-byte messages
  180.    are ever sent. */
  181. static int aha1542_out(unsigned int base, unchar * cmdp, int len)
  182. {
  183. unsigned long flags = 0;
  184. save_flags(flags);
  185. if (len == 1) {
  186. while (1 == 1) {
  187. WAIT(STATUS(base), CDF, 0, CDF);
  188. cli();
  189. if (inb(STATUS(base)) & CDF) {
  190. restore_flags(flags);
  191. continue;
  192. }
  193. outb(*cmdp, DATA(base));
  194. restore_flags(flags);
  195. return 0;
  196. }
  197. } else {
  198. cli();
  199. while (len--) {
  200. WAIT(STATUS(base), CDF, 0, CDF);
  201. outb(*cmdp++, DATA(base));
  202. }
  203. restore_flags(flags);
  204. }
  205. return 0;
  206. fail:
  207. restore_flags(flags);
  208. printk(KERN_ERR "aha1542_out failed(%d): ", len + 1);
  209. aha1542_stat();
  210. return 1;
  211. }
  212. /* Only used at boot time, so we do not need to worry about latency as much
  213.    here */
  214. static int __init aha1542_in(unsigned int base, unchar * cmdp, int len)
  215. {
  216. unsigned long flags;
  217. save_flags(flags);
  218. cli();
  219. while (len--) {
  220. WAIT(STATUS(base), DF, DF, 0);
  221. *cmdp++ = inb(DATA(base));
  222. }
  223. restore_flags(flags);
  224. return 0;
  225. fail:
  226. restore_flags(flags);
  227. printk(KERN_ERR "aha1542_in failed(%d): ", len + 1);
  228. aha1542_stat();
  229. return 1;
  230. }
  231. /* Similar to aha1542_in, except that we wait a very short period of time.
  232.    We use this if we know the board is alive and awake, but we are not sure
  233.    if the board will respond to the command we are about to send or not */
  234. static int __init aha1542_in1(unsigned int base, unchar * cmdp, int len)
  235. {
  236. unsigned long flags;
  237. save_flags(flags);
  238. cli();
  239. while (len--) {
  240. WAITd(STATUS(base), DF, DF, 0, 100);
  241. *cmdp++ = inb(DATA(base));
  242. }
  243. restore_flags(flags);
  244. return 0;
  245. fail:
  246. restore_flags(flags);
  247. return 1;
  248. }
  249. static int makecode(unsigned hosterr, unsigned scsierr)
  250. {
  251. switch (hosterr) {
  252. case 0x0:
  253. case 0xa: /* Linked command complete without error and linked normally */
  254. case 0xb: /* Linked command complete without error, interrupt generated */
  255. hosterr = 0;
  256. break;
  257. case 0x11: /* Selection time out-The initiator selection or target
  258.    reselection was not complete within the SCSI Time out period */
  259. hosterr = DID_TIME_OUT;
  260. break;
  261. case 0x12: /* Data overrun/underrun-The target attempted to transfer more data
  262.    than was allocated by the Data Length field or the sum of the
  263.    Scatter / Gather Data Length fields. */
  264. case 0x13: /* Unexpected bus free-The target dropped the SCSI BSY at an unexpected time. */
  265. case 0x15: /* MBO command was not 00, 01 or 02-The first byte of the CB was
  266.    invalid. This usually indicates a software failure. */
  267. case 0x16: /* Invalid CCB Operation Code-The first byte of the CCB was invalid.
  268.    This usually indicates a software failure. */
  269. case 0x17: /* Linked CCB does not have the same LUN-A subsequent CCB of a set
  270.    of linked CCB's does not specify the same logical unit number as
  271.    the first. */
  272. case 0x18: /* Invalid Target Direction received from Host-The direction of a
  273.    Target Mode CCB was invalid. */
  274. case 0x19: /* Duplicate CCB Received in Target Mode-More than once CCB was
  275.    received to service data transfer between the same target LUN
  276.    and initiator SCSI ID in the same direction. */
  277. case 0x1a: /* Invalid CCB or Segment List Parameter-A segment list with a zero
  278.    length segment or invalid segment list boundaries was received.
  279.    A CCB parameter was invalid. */
  280. DEB(printk("Aha1542: %x %xn", hosterr, scsierr));
  281. hosterr = DID_ERROR; /* Couldn't find any better */
  282. break;
  283. case 0x14: /* Target bus phase sequence failure-An invalid bus phase or bus
  284.    phase sequence was requested by the target. The host adapter
  285.    will generate a SCSI Reset Condition, notifying the host with
  286.    a SCRD interrupt */
  287. hosterr = DID_RESET;
  288. break;
  289. default:
  290. printk(KERN_ERR "aha1542: makecode: unknown hoststatus %xn", hosterr);
  291. break;
  292. }
  293. return scsierr | (hosterr << 16);
  294. }
  295. static int __init aha1542_test_port(int bse, struct Scsi_Host *shpnt)
  296. {
  297. unchar inquiry_cmd[] = {CMD_INQUIRY};
  298. unchar inquiry_result[4];
  299. unchar *cmdp;
  300. int len;
  301. volatile int debug = 0;
  302. /* Quick and dirty test for presence of the card. */
  303. if (inb(STATUS(bse)) == 0xff)
  304. return 0;
  305. /* Reset the adapter. I ought to make a hard reset, but it's not really necessary */
  306. /*  DEB(printk("aha1542_test_port called n")); */
  307. /* In case some other card was probing here, reset interrupts */
  308. aha1542_intr_reset(bse); /* reset interrupts, so they don't block */
  309. outb(SRST | IRST /*|SCRST */ , CONTROL(bse));
  310. mdelay(20); /* Wait a little bit for things to settle down. */
  311. debug = 1;
  312. /* Expect INIT and IDLE, any of the others are bad */
  313. WAIT(STATUS(bse), STATMASK, INIT | IDLE, STST | DIAGF | INVDCMD | DF | CDF);
  314. debug = 2;
  315. /* Shouldn't have generated any interrupts during reset */
  316. if (inb(INTRFLAGS(bse)) & INTRMASK)
  317. goto fail;
  318. /* Perform a host adapter inquiry instead so we do not need to set
  319.    up the mailboxes ahead of time */
  320. aha1542_out(bse, inquiry_cmd, 1);
  321. debug = 3;
  322. len = 4;
  323. cmdp = &inquiry_result[0];
  324. while (len--) {
  325. WAIT(STATUS(bse), DF, DF, 0);
  326. *cmdp++ = inb(DATA(bse));
  327. }
  328. debug = 8;
  329. /* Reading port should reset DF */
  330. if (inb(STATUS(bse)) & DF)
  331. goto fail;
  332. debug = 9;
  333. /* When HACC, command is completed, and we're though testing */
  334. WAIT(INTRFLAGS(bse), HACC, HACC, 0);
  335. /* now initialize adapter */
  336. debug = 10;
  337. /* Clear interrupts */
  338. outb(IRST, CONTROL(bse));
  339. debug = 11;
  340. return debug; /* 1 = ok */
  341. fail:
  342. return 0; /* 0 = not ok */
  343. }
  344. /* A quick wrapper for do_aha1542_intr_handle to grab the spin lock */
  345. static void do_aha1542_intr_handle(int irq, void *dev_id, struct pt_regs *regs)
  346. {
  347. unsigned long flags;
  348. spin_lock_irqsave(&io_request_lock, flags);
  349. aha1542_intr_handle(irq, dev_id, regs);
  350. spin_unlock_irqrestore(&io_request_lock, flags);
  351. }
  352. /* A "high" level interrupt handler */
  353. static void aha1542_intr_handle(int irq, void *dev_id, struct pt_regs *regs)
  354. {
  355. void (*my_done) (Scsi_Cmnd *) = NULL;
  356. int errstatus, mbi, mbo, mbistatus;
  357. int number_serviced;
  358. unsigned long flags;
  359. struct Scsi_Host *shost;
  360. Scsi_Cmnd *SCtmp;
  361. int flag;
  362. int needs_restart;
  363. struct mailbox *mb;
  364. struct ccb *ccb;
  365. shost = aha_host[irq - 9];
  366. if (!shost)
  367. panic("Splunge!");
  368. mb = HOSTDATA(shost)->mb;
  369. ccb = HOSTDATA(shost)->ccb;
  370. #ifdef DEBUG
  371. {
  372. flag = inb(INTRFLAGS(shost->io_port));
  373. printk(KERN_DEBUG "aha1542_intr_handle: ");
  374. if (!(flag & ANYINTR))
  375. printk("no interrupt?");
  376. if (flag & MBIF)
  377. printk("MBIF ");
  378. if (flag & MBOA)
  379. printk("MBOF ");
  380. if (flag & HACC)
  381. printk("HACC ");
  382. if (flag & SCRD)
  383. printk("SCRD ");
  384. printk("status %02xn", inb(STATUS(shost->io_port)));
  385. };
  386. #endif
  387. number_serviced = 0;
  388. needs_restart = 0;
  389. while (1 == 1) {
  390. flag = inb(INTRFLAGS(shost->io_port));
  391. /* Check for unusual interrupts.  If any of these happen, we should
  392.    probably do something special, but for now just printing a message
  393.    is sufficient.  A SCSI reset detected is something that we really
  394.    need to deal with in some way. */
  395. if (flag & ~MBIF) {
  396. if (flag & MBOA)
  397. printk("MBOF ");
  398. if (flag & HACC)
  399. printk("HACC ");
  400. if (flag & SCRD) {
  401. needs_restart = 1;
  402. printk("SCRD ");
  403. }
  404. }
  405. aha1542_intr_reset(shost->io_port);
  406. save_flags(flags);
  407. cli();
  408. mbi = HOSTDATA(shost)->aha1542_last_mbi_used + 1;
  409. if (mbi >= 2 * AHA1542_MAILBOXES)
  410. mbi = AHA1542_MAILBOXES;
  411. do {
  412. if (mb[mbi].status != 0)
  413. break;
  414. mbi++;
  415. if (mbi >= 2 * AHA1542_MAILBOXES)
  416. mbi = AHA1542_MAILBOXES;
  417. } while (mbi != HOSTDATA(shost)->aha1542_last_mbi_used);
  418. if (mb[mbi].status == 0) {
  419. restore_flags(flags);
  420. /* Hmm, no mail.  Must have read it the last time around */
  421. if (!number_serviced && !needs_restart)
  422. printk(KERN_WARNING "aha1542.c: interrupt received, but no mail.n");
  423. /* We detected a reset.  Restart all pending commands for
  424.    devices that use the hard reset option */
  425. if (needs_restart)
  426. aha1542_restart(shost);
  427. return;
  428. };
  429. mbo = (scsi2int(mb[mbi].ccbptr) - (SCSI_PA(&ccb[0]))) / sizeof(struct ccb);
  430. mbistatus = mb[mbi].status;
  431. mb[mbi].status = 0;
  432. HOSTDATA(shost)->aha1542_last_mbi_used = mbi;
  433. restore_flags(flags);
  434. #ifdef DEBUG
  435. {
  436. if (ccb[mbo].tarstat | ccb[mbo].hastat)
  437. printk(KERN_DEBUG "aha1542_command: returning %x (status %d)n",
  438.        ccb[mbo].tarstat + ((int) ccb[mbo].hastat << 16), mb[mbi].status);
  439. };
  440. #endif
  441. if (mbistatus == 3)
  442. continue; /* Aborted command not found */
  443. #ifdef DEBUG
  444. printk(KERN_DEBUG "...done %d %dn", mbo, mbi);
  445. #endif
  446. SCtmp = HOSTDATA(shost)->SCint[mbo];
  447. if (!SCtmp || !SCtmp->scsi_done) {
  448. printk(KERN_WARNING "aha1542_intr_handle: Unexpected interruptn");
  449. printk(KERN_WARNING "tarstat=%x, hastat=%x idlun=%x ccb#=%d n", ccb[mbo].tarstat,
  450.        ccb[mbo].hastat, ccb[mbo].idlun, mbo);
  451. return;
  452. }
  453. my_done = SCtmp->scsi_done;
  454. if (SCtmp->host_scribble) {
  455. scsi_free(SCtmp->host_scribble, 512);
  456. SCtmp->host_scribble = 0;
  457. }
  458. /* Fetch the sense data, and tuck it away, in the required slot.  The
  459.    Adaptec automatically fetches it, and there is no guarantee that
  460.    we will still have it in the cdb when we come back */
  461. if (ccb[mbo].tarstat == 2)
  462. memcpy(SCtmp->sense_buffer, &ccb[mbo].cdb[ccb[mbo].cdblen],
  463.        sizeof(SCtmp->sense_buffer));
  464. /* is there mail :-) */
  465. /* more error checking left out here */
  466. if (mbistatus != 1)
  467. /* This is surely wrong, but I don't know what's right */
  468. errstatus = makecode(ccb[mbo].hastat, ccb[mbo].tarstat);
  469. else
  470. errstatus = 0;
  471. #ifdef DEBUG
  472. if (errstatus)
  473. printk(KERN_DEBUG "(aha1542 error:%x %x %x) ", errstatus,
  474.        ccb[mbo].hastat, ccb[mbo].tarstat);
  475. #endif
  476. if (ccb[mbo].tarstat == 2) {
  477. #ifdef DEBUG
  478. int i;
  479. #endif
  480. DEB(printk("aha1542_intr_handle: sense:"));
  481. #ifdef DEBUG
  482. for (i = 0; i < 12; i++)
  483. printk("%02x ", ccb[mbo].cdb[ccb[mbo].cdblen + i]);
  484. printk("n");
  485. #endif
  486. /*
  487.    DEB(printk("aha1542_intr_handle: buf:"));
  488.    for (i = 0; i < bufflen; i++)
  489.    printk("%02x ", ((unchar *)buff)[i]);
  490.    printk("n");
  491.  */
  492. }
  493. DEB(if (errstatus) printk("aha1542_intr_handle: returning %6xn", errstatus));
  494. SCtmp->result = errstatus;
  495. HOSTDATA(shost)->SCint[mbo] = NULL; /* This effectively frees up the mailbox slot, as
  496.    far as queuecommand is concerned */
  497. my_done(SCtmp);
  498. number_serviced++;
  499. };
  500. }
  501. static int aha1542_queuecommand(Scsi_Cmnd * SCpnt, void (*done) (Scsi_Cmnd *))
  502. {
  503. unchar ahacmd = CMD_START_SCSI;
  504. unchar direction;
  505. unchar *cmd = (unchar *) SCpnt->cmnd;
  506. unchar target = SCpnt->target;
  507. unchar lun = SCpnt->lun;
  508. unsigned long flags;
  509. void *buff = SCpnt->request_buffer;
  510. int bufflen = SCpnt->request_bufflen;
  511. int mbo;
  512. struct mailbox *mb;
  513. struct ccb *ccb;
  514. DEB(int i);
  515. mb = HOSTDATA(SCpnt->host)->mb;
  516. ccb = HOSTDATA(SCpnt->host)->ccb;
  517. DEB(if (target > 1) {
  518.     SCpnt->result = DID_TIME_OUT << 16;
  519.     done(SCpnt); return 0;
  520.     }
  521. );
  522. if (*cmd == REQUEST_SENSE) {
  523. /* Don't do the command - we have the sense data already */
  524. #if 0
  525. /* scsi_request_sense() provides a buffer of size 256,
  526.    so there is no reason to expect equality */
  527. if (bufflen != sizeof(SCpnt->sense_buffer))
  528. printk(KERN_CRIT "aha1542: Wrong buffer length supplied "
  529.        "for request sense (%d)n", bufflen);
  530. #endif
  531. SCpnt->result = 0;
  532. done(SCpnt);
  533. return 0;
  534. }
  535. #ifdef DEBUG
  536. if (*cmd == READ_10 || *cmd == WRITE_10)
  537. i = xscsi2int(cmd + 2);
  538. else if (*cmd == READ_6 || *cmd == WRITE_6)
  539. i = scsi2int(cmd + 2);
  540. else
  541. i = -1;
  542. if (done)
  543. printk(KERN_DEBUG "aha1542_queuecommand: dev %d cmd %02x pos %d len %d ", target, *cmd, i, bufflen);
  544. else
  545. printk(KERN_DEBUG "aha1542_command: dev %d cmd %02x pos %d len %d ", target, *cmd, i, bufflen);
  546. aha1542_stat();
  547. printk(KERN_DEBUG "aha1542_queuecommand: dumping scsi cmd:");
  548. for (i = 0; i < SCpnt->cmd_len; i++)
  549. printk("%02x ", cmd[i]);
  550. printk("n");
  551. if (*cmd == WRITE_10 || *cmd == WRITE_6)
  552. return 0; /* we are still testing, so *don't* write */
  553. #endif
  554. /* Use the outgoing mailboxes in a round-robin fashion, because this
  555.    is how the host adapter will scan for them */
  556. save_flags(flags);
  557. cli();
  558. mbo = HOSTDATA(SCpnt->host)->aha1542_last_mbo_used + 1;
  559. if (mbo >= AHA1542_MAILBOXES)
  560. mbo = 0;
  561. do {
  562. if (mb[mbo].status == 0 && HOSTDATA(SCpnt->host)->SCint[mbo] == NULL)
  563. break;
  564. mbo++;
  565. if (mbo >= AHA1542_MAILBOXES)
  566. mbo = 0;
  567. } while (mbo != HOSTDATA(SCpnt->host)->aha1542_last_mbo_used);
  568. if (mb[mbo].status || HOSTDATA(SCpnt->host)->SCint[mbo])
  569. panic("Unable to find empty mailbox for aha1542.n");
  570. HOSTDATA(SCpnt->host)->SCint[mbo] = SCpnt; /* This will effectively prevent someone else from
  571.    screwing with this cdb. */
  572. HOSTDATA(SCpnt->host)->aha1542_last_mbo_used = mbo;
  573. restore_flags(flags);
  574. #ifdef DEBUG
  575. printk(KERN_DEBUG "Sending command (%d %x)...", mbo, done);
  576. #endif
  577. any2scsi(mb[mbo].ccbptr, SCSI_PA(&ccb[mbo])); /* This gets trashed for some reason */
  578. memset(&ccb[mbo], 0, sizeof(struct ccb));
  579. ccb[mbo].cdblen = SCpnt->cmd_len;
  580. direction = 0;
  581. if (*cmd == READ_10 || *cmd == READ_6)
  582. direction = 8;
  583. else if (*cmd == WRITE_10 || *cmd == WRITE_6)
  584. direction = 16;
  585. memcpy(ccb[mbo].cdb, cmd, ccb[mbo].cdblen);
  586. if (SCpnt->use_sg) {
  587. struct scatterlist *sgpnt;
  588. struct chain *cptr;
  589. #ifdef DEBUG
  590. unsigned char *ptr;
  591. #endif
  592. int i;
  593. ccb[mbo].op = 2; /* SCSI Initiator Command  w/scatter-gather */
  594. SCpnt->host_scribble = (unsigned char *) scsi_malloc(512);
  595. sgpnt = (struct scatterlist *) SCpnt->request_buffer;
  596. cptr = (struct chain *) SCpnt->host_scribble;
  597. if (cptr == NULL)
  598. panic("aha1542.c: unable to allocate DMA memoryn");
  599. for (i = 0; i < SCpnt->use_sg; i++) {
  600. if (sgpnt[i].length == 0 || SCpnt->use_sg > 16 ||
  601.     (((int) sgpnt[i].address) & 1) || (sgpnt[i].length & 1)) {
  602. unsigned char *ptr;
  603. printk(KERN_CRIT "Bad segment list supplied to aha1542.c (%d, %d)n", SCpnt->use_sg, i);
  604. for (i = 0; i < SCpnt->use_sg; i++) {
  605. printk(KERN_CRIT "%d: %p %dn", i, sgpnt[i].address,
  606.        sgpnt[i].length);
  607. };
  608. printk(KERN_CRIT "cptr %x: ", (unsigned int) cptr);
  609. ptr = (unsigned char *) &cptr[i];
  610. for (i = 0; i < 18; i++)
  611. printk("%02x ", ptr[i]);
  612. panic("Foooooooood fight!");
  613. };
  614. any2scsi(cptr[i].dataptr, SCSI_PA(sgpnt[i].address));
  615. if (SCSI_PA(sgpnt[i].address + sgpnt[i].length - 1) > ISA_DMA_THRESHOLD)
  616. BAD_SG_DMA(SCpnt, sgpnt, SCpnt->use_sg, i);
  617. any2scsi(cptr[i].datalen, sgpnt[i].length);
  618. };
  619. any2scsi(ccb[mbo].datalen, SCpnt->use_sg * sizeof(struct chain));
  620. any2scsi(ccb[mbo].dataptr, SCSI_PA(cptr));
  621. #ifdef DEBUG
  622. printk("cptr %x: ", cptr);
  623. ptr = (unsigned char *) cptr;
  624. for (i = 0; i < 18; i++)
  625. printk("%02x ", ptr[i]);
  626. #endif
  627. } else {
  628. ccb[mbo].op = 0; /* SCSI Initiator Command */
  629. SCpnt->host_scribble = NULL;
  630. any2scsi(ccb[mbo].datalen, bufflen);
  631. if (buff && SCSI_PA(buff + bufflen - 1) > ISA_DMA_THRESHOLD)
  632. BAD_DMA(buff, bufflen);
  633. any2scsi(ccb[mbo].dataptr, SCSI_PA(buff));
  634. };
  635. ccb[mbo].idlun = (target & 7) << 5 | direction | (lun & 7); /*SCSI Target Id */
  636. ccb[mbo].rsalen = 16;
  637. ccb[mbo].linkptr[0] = ccb[mbo].linkptr[1] = ccb[mbo].linkptr[2] = 0;
  638. ccb[mbo].commlinkid = 0;
  639. #ifdef DEBUG
  640. {
  641. int i;
  642. printk(KERN_DEBUG "aha1542_command: sending.. ");
  643. for (i = 0; i < sizeof(ccb[mbo]) - 10; i++)
  644. printk("%02x ", ((unchar *) & ccb[mbo])[i]);
  645. };
  646. #endif
  647. if (done) {
  648. DEB(printk("aha1542_queuecommand: now waiting for interrupt ");
  649.     aha1542_stat());
  650. SCpnt->scsi_done = done;
  651. mb[mbo].status = 1;
  652. aha1542_out(SCpnt->host->io_port, &ahacmd, 1); /* start scsi command */
  653. DEB(aha1542_stat());
  654. } else
  655. printk("aha1542_queuecommand: done can't be NULLn");
  656. return 0;
  657. }
  658. static void internal_done(Scsi_Cmnd * SCpnt)
  659. {
  660. SCpnt->SCp.Status++;
  661. }
  662. static int aha1542_command(Scsi_Cmnd * SCpnt)
  663. {
  664. DEB(printk("aha1542_command: ..calling aha1542_queuecommandn"));
  665. aha1542_queuecommand(SCpnt, internal_done);
  666. SCpnt->SCp.Status = 0;
  667. while (!SCpnt->SCp.Status)
  668. barrier();
  669. return SCpnt->result;
  670. }
  671. /* Initialize mailboxes */
  672. static void setup_mailboxes(int bse, struct Scsi_Host *shpnt)
  673. {
  674. int i;
  675. struct mailbox *mb;
  676. struct ccb *ccb;
  677. unchar cmd[5] = { CMD_MBINIT, AHA1542_MAILBOXES, 0, 0, 0};
  678. mb = HOSTDATA(shpnt)->mb;
  679. ccb = HOSTDATA(shpnt)->ccb;
  680. for (i = 0; i < AHA1542_MAILBOXES; i++) {
  681. mb[i].status = mb[AHA1542_MAILBOXES + i].status = 0;
  682. any2scsi(mb[i].ccbptr, SCSI_PA(&ccb[i]));
  683. };
  684. aha1542_intr_reset(bse); /* reset interrupts, so they don't block */
  685. any2scsi((cmd + 2), SCSI_PA(mb));
  686. aha1542_out(bse, cmd, 5);
  687. WAIT(INTRFLAGS(bse), INTRMASK, HACC, 0);
  688. while (0) {
  689. fail:
  690. printk(KERN_ERR "aha1542_detect: failed setting up mailboxesn");
  691. }
  692. aha1542_intr_reset(bse);
  693. }
  694. static int __init aha1542_getconfig(int base_io, unsigned char *irq_level, unsigned char *dma_chan, unsigned char *scsi_id)
  695. {
  696. unchar inquiry_cmd[] = {CMD_RETCONF};
  697. unchar inquiry_result[3];
  698. int i;
  699. i = inb(STATUS(base_io));
  700. if (i & DF) {
  701. i = inb(DATA(base_io));
  702. };
  703. aha1542_out(base_io, inquiry_cmd, 1);
  704. aha1542_in(base_io, inquiry_result, 3);
  705. WAIT(INTRFLAGS(base_io), INTRMASK, HACC, 0);
  706. while (0) {
  707. fail:
  708. printk(KERN_ERR "aha1542_detect: query board settingsn");
  709. }
  710. aha1542_intr_reset(base_io);
  711. switch (inquiry_result[0]) {
  712. case 0x80:
  713. *dma_chan = 7;
  714. break;
  715. case 0x40:
  716. *dma_chan = 6;
  717. break;
  718. case 0x20:
  719. *dma_chan = 5;
  720. break;
  721. case 0x01:
  722. *dma_chan = 0;
  723. break;
  724. case 0:
  725. /* This means that the adapter, although Adaptec 1542 compatible, doesn't use a DMA channel.
  726.    Currently only aware of the BusLogic BT-445S VL-Bus adapter which needs this. */
  727. *dma_chan = 0xFF;
  728. break;
  729. default:
  730. printk(KERN_ERR "Unable to determine Adaptec DMA priority.  Disabling boardn");
  731. return -1;
  732. };
  733. switch (inquiry_result[1]) {
  734. case 0x40:
  735. *irq_level = 15;
  736. break;
  737. case 0x20:
  738. *irq_level = 14;
  739. break;
  740. case 0x8:
  741. *irq_level = 12;
  742. break;
  743. case 0x4:
  744. *irq_level = 11;
  745. break;
  746. case 0x2:
  747. *irq_level = 10;
  748. break;
  749. case 0x1:
  750. *irq_level = 9;
  751. break;
  752. default:
  753. printk(KERN_ERR "Unable to determine Adaptec IRQ level.  Disabling boardn");
  754. return -1;
  755. };
  756. *scsi_id = inquiry_result[2] & 7;
  757. return 0;
  758. }
  759. /* This function should only be called for 1542C boards - we can detect
  760.    the special firmware settings and unlock the board */
  761. static int __init aha1542_mbenable(int base)
  762. {
  763. static unchar mbenable_cmd[3];
  764. static unchar mbenable_result[2];
  765. int retval;
  766. retval = BIOS_TRANSLATION_6432;
  767. mbenable_cmd[0] = CMD_EXTBIOS;
  768. aha1542_out(base, mbenable_cmd, 1);
  769. if (aha1542_in1(base, mbenable_result, 2))
  770. return retval;
  771. WAITd(INTRFLAGS(base), INTRMASK, HACC, 0, 100);
  772. aha1542_intr_reset(base);
  773. if ((mbenable_result[0] & 0x08) || mbenable_result[1]) {
  774. mbenable_cmd[0] = CMD_MBENABLE;
  775. mbenable_cmd[1] = 0;
  776. mbenable_cmd[2] = mbenable_result[1];
  777. if ((mbenable_result[0] & 0x08) && (mbenable_result[1] & 0x03))
  778. retval = BIOS_TRANSLATION_25563;
  779. aha1542_out(base, mbenable_cmd, 3);
  780. WAIT(INTRFLAGS(base), INTRMASK, HACC, 0);
  781. };
  782. while (0) {
  783. fail:
  784. printk(KERN_ERR "aha1542_mbenable: Mailbox init failedn");
  785. }
  786. aha1542_intr_reset(base);
  787. return retval;
  788. }
  789. /* Query the board to find out if it is a 1542 or a 1740, or whatever. */
  790. static int __init aha1542_query(int base_io, int *transl)
  791. {
  792. unchar inquiry_cmd[] = {CMD_INQUIRY};
  793. unchar inquiry_result[4];
  794. int i;
  795. i = inb(STATUS(base_io));
  796. if (i & DF) {
  797. i = inb(DATA(base_io));
  798. };
  799. aha1542_out(base_io, inquiry_cmd, 1);
  800. aha1542_in(base_io, inquiry_result, 4);
  801. WAIT(INTRFLAGS(base_io), INTRMASK, HACC, 0);
  802. while (0) {
  803. fail:
  804. printk(KERN_ERR "aha1542_detect: query card typen");
  805. }
  806. aha1542_intr_reset(base_io);
  807. *transl = BIOS_TRANSLATION_6432; /* Default case */
  808. /* For an AHA1740 series board, we ignore the board since there is a
  809.    hardware bug which can lead to wrong blocks being returned if the board
  810.    is operating in the 1542 emulation mode.  Since there is an extended mode
  811.    driver, we simply ignore the board and let the 1740 driver pick it up.
  812.  */
  813. if (inquiry_result[0] == 0x43) {
  814. printk(KERN_INFO "aha1542.c: Emulation mode not supported for AHA 174N hardware.n");
  815. return 1;
  816. };
  817. /* Always call this - boards that do not support extended bios translation
  818.    will ignore the command, and we will set the proper default */
  819. *transl = aha1542_mbenable(base_io);
  820. return 0;
  821. }
  822. #ifndef MODULE
  823. static int setup_idx = 0;
  824. void __init aha1542_setup(char *str, int *ints)
  825. {
  826. const char *ahausage = "aha1542: usage: aha1542=<PORTBASE>[,<BUSON>,<BUSOFF>[,<DMASPEED>]]n";
  827. int setup_portbase;
  828. if (setup_idx >= MAXBOARDS) {
  829. printk(KERN_ERR "aha1542: aha1542_setup called too many times! Bad LILO params ?n");
  830. printk(KERN_ERR "   Entryline 1: %sn", setup_str[0]);
  831. printk(KERN_ERR "   Entryline 2: %sn", setup_str[1]);
  832. printk(KERN_ERR "   This line:   %sn", str);
  833. return;
  834. }
  835. if (ints[0] < 1 || ints[0] > 4) {
  836. printk(KERN_ERR "aha1542: %sn", str);
  837. printk(ahausage);
  838. printk(KERN_ERR "aha1542: Wrong parameters may cause system malfunction.. We try anyway..n");
  839. }
  840. setup_called[setup_idx] = ints[0];
  841. setup_str[setup_idx] = str;
  842. setup_portbase = ints[0] >= 1 ? ints[1] : 0; /* Preserve the default value.. */
  843. setup_buson[setup_idx] = ints[0] >= 2 ? ints[2] : 7;
  844. setup_busoff[setup_idx] = ints[0] >= 3 ? ints[3] : 5;
  845. if (ints[0] >= 4) 
  846. {
  847. int atbt = -1;
  848. switch (ints[4]) {
  849. case 5:
  850. atbt = 0x00;
  851. break;
  852. case 6:
  853. atbt = 0x04;
  854. break;
  855. case 7:
  856. atbt = 0x01;
  857. break;
  858. case 8:
  859. atbt = 0x02;
  860. break;
  861. case 10:
  862. atbt = 0x03;
  863. break;
  864. default:
  865. printk(KERN_ERR "aha1542: %sn", str);
  866. printk(ahausage);
  867. printk(KERN_ERR "aha1542: Valid values for DMASPEED are 5-8, 10 MB/s.  Using jumper defaults.n");
  868. break;
  869. }
  870. setup_dmaspeed[setup_idx] = atbt;
  871. }
  872. if (setup_portbase != 0)
  873. bases[setup_idx] = setup_portbase;
  874. ++setup_idx;
  875. }
  876. static int __init do_setup(char *str)
  877. {
  878. int ints[4];
  879. int count=setup_idx;
  880. get_options(str, sizeof(ints)/sizeof(int), ints);
  881. aha1542_setup(str,ints);
  882. return count<setup_idx;
  883. }
  884. __setup("aha1542=",do_setup);
  885. #endif
  886. /* return non-zero on detection */
  887. static int __init aha1542_detect(Scsi_Host_Template * tpnt)
  888. {
  889. unsigned char dma_chan;
  890. unsigned char irq_level;
  891. unsigned char scsi_id;
  892. unsigned long flags;
  893. unsigned int base_io;
  894. int trans;
  895. struct Scsi_Host *shpnt = NULL;
  896. int count = 0;
  897. int indx;
  898. DEB(printk("aha1542_detect: n"));
  899. tpnt->proc_name = "aha1542";
  900. #ifdef MODULE
  901. bases[0] = aha1542[0];
  902. setup_buson[0] = aha1542[1];
  903. setup_busoff[0] = aha1542[2];
  904. {
  905. int atbt = -1;
  906. switch (aha1542[3]) {
  907. case 5:
  908. atbt = 0x00;
  909. break;
  910. case 6:
  911. atbt = 0x04;
  912. break;
  913. case 7:
  914. atbt = 0x01;
  915. break;
  916. case 8:
  917. atbt = 0x02;
  918. break;
  919. case 10:
  920. atbt = 0x03;
  921. break;
  922. };
  923. setup_dmaspeed[0] = atbt;
  924. }
  925. #endif
  926. /*
  927.  * Find MicroChannel cards (AHA1640)
  928.  */
  929. #ifdef CONFIG_MCA
  930. if(MCA_bus) {
  931. int slot = 0;
  932. int pos = 0;
  933. for (indx = 0; (slot !=  MCA_NOTFOUND) && 
  934.      (indx < sizeof(bases)/sizeof(bases[0])); indx++) {
  935. if (bases[indx])
  936. continue;
  937. /* Detect only AHA-1640 cards -- MCA ID 0F1F */
  938. slot = mca_find_unused_adapter(0x0f1f, slot);
  939. if (slot == MCA_NOTFOUND)
  940. break;
  941. /* Found one */
  942. pos = mca_read_stored_pos(slot, 3);
  943. /* Decode address */
  944. if (pos & 0x80) {
  945. if (pos & 0x02) {
  946. if (pos & 0x01)
  947. bases[indx] = 0x334;
  948. else
  949. bases[indx] = 0x234;
  950. } else {
  951. if (pos & 0x01)
  952. bases[indx] = 0x134;
  953. }
  954. } else {
  955. if (pos & 0x02) {
  956. if (pos & 0x01)
  957. bases[indx] = 0x330;
  958. else
  959. bases[indx] = 0x230;
  960. } else {
  961. if (pos & 0x01)
  962. bases[indx] = 0x130;
  963. }
  964. }
  965. /* No need to decode IRQ and Arb level -- those are
  966.  * read off the card later.
  967.  */
  968. printk(KERN_INFO "Found an AHA-1640 in MCA slot %d, I/O 0x%04xn", slot, bases[indx]);
  969. mca_set_adapter_name(slot, "Adapter AHA-1640");
  970. mca_set_adapter_procfn(slot, NULL, NULL);
  971. mca_mark_as_used(slot);
  972. /* Go on */
  973. slot++;
  974. }
  975. }
  976. #endif
  977. /*
  978.  * Hunt for ISA Plug'n'Pray Adaptecs (AHA1535)
  979.  */
  980.  
  981. if(isapnp)
  982. {
  983. struct pci_dev *pdev = NULL;
  984. for(indx = 0; indx <sizeof(bases)/sizeof(bases[0]);indx++)
  985. {
  986. if(bases[indx])
  987. continue;
  988. pdev = isapnp_find_dev(NULL, ISAPNP_VENDOR('A', 'D', 'P'), 
  989. ISAPNP_FUNCTION(0x1542), pdev);
  990. if(pdev==NULL)
  991. break;
  992. /*
  993.  * Activate the PnP card
  994.  */
  995.  
  996. if(pdev->prepare(pdev)<0)
  997. continue;
  998. if(!(pdev->resource[0].flags&IORESOURCE_IO))
  999. continue;
  1000. pdev->resource[0].flags|=IORESOURCE_AUTO;
  1001. if(pdev->activate(pdev)<0)
  1002. continue;
  1003. bases[indx] = pdev->resource[0].start;
  1004. /* The card can be queried for its DMA, we have 
  1005.    the DMA set up that is enough */
  1006.    
  1007. printk(KERN_INFO "ISAPnP found an AHA1535 at I/O 0x%03Xn", bases[indx]);
  1008. }
  1009. }
  1010. for (indx = 0; indx < sizeof(bases) / sizeof(bases[0]); indx++)
  1011. if (bases[indx] != 0 && !check_region(bases[indx], 4)) {
  1012. shpnt = scsi_register(tpnt,
  1013. sizeof(struct aha1542_hostdata));
  1014. if(shpnt==NULL)
  1015. continue;
  1016. /* For now we do this - until kmalloc is more intelligent
  1017.    we are resigned to stupid hacks like this */
  1018. if (SCSI_PA(shpnt) >= ISA_DMA_THRESHOLD) {
  1019. printk(KERN_ERR "Invalid address for shpnt with 1542.n");
  1020. goto unregister;
  1021. }
  1022. if (!aha1542_test_port(bases[indx], shpnt))
  1023. goto unregister;
  1024. base_io = bases[indx];
  1025. /* Set the Bus on/off-times as not to ruin floppy performance */
  1026. {
  1027. unchar oncmd[] = {CMD_BUSON_TIME, 7};
  1028. unchar offcmd[] = {CMD_BUSOFF_TIME, 5};
  1029. if (setup_called[indx]) {
  1030. oncmd[1] = setup_buson[indx];
  1031. offcmd[1] = setup_busoff[indx];
  1032. }
  1033. aha1542_intr_reset(base_io);
  1034. aha1542_out(base_io, oncmd, 2);
  1035. WAIT(INTRFLAGS(base_io), INTRMASK, HACC, 0);
  1036. aha1542_intr_reset(base_io);
  1037. aha1542_out(base_io, offcmd, 2);
  1038. WAIT(INTRFLAGS(base_io), INTRMASK, HACC, 0);
  1039. if (setup_dmaspeed[indx] >= 0) {
  1040. unchar dmacmd[] = {CMD_DMASPEED, 0};
  1041. dmacmd[1] = setup_dmaspeed[indx];
  1042. aha1542_intr_reset(base_io);
  1043. aha1542_out(base_io, dmacmd, 2);
  1044. WAIT(INTRFLAGS(base_io), INTRMASK, HACC, 0);
  1045. }
  1046. while (0) {
  1047. fail:
  1048. printk(KERN_ERR "aha1542_detect: setting bus on/off-time failedn");
  1049. }
  1050. aha1542_intr_reset(base_io);
  1051. }
  1052. if (aha1542_query(base_io, &trans))
  1053. goto unregister;
  1054. if (aha1542_getconfig(base_io, &irq_level, &dma_chan, &scsi_id) == -1)
  1055. goto unregister;
  1056. printk(KERN_INFO "Configuring Adaptec (SCSI-ID %d) at IO:%x, IRQ %d", scsi_id, base_io, irq_level);
  1057. if (dma_chan != 0xFF)
  1058. printk(", DMA priority %d", dma_chan);
  1059. printk("n");
  1060. DEB(aha1542_stat());
  1061. setup_mailboxes(base_io, shpnt);
  1062. DEB(aha1542_stat());
  1063. DEB(printk("aha1542_detect: enable interrupt channel %dn", irq_level));
  1064. save_flags(flags);
  1065. cli();
  1066. if (request_irq(irq_level, do_aha1542_intr_handle, 0, "aha1542", NULL)) {
  1067. printk(KERN_ERR "Unable to allocate IRQ for adaptec controller.n");
  1068. restore_flags(flags);
  1069. goto unregister;
  1070. }
  1071. if (dma_chan != 0xFF) {
  1072. if (request_dma(dma_chan, "aha1542")) {
  1073. printk(KERN_ERR "Unable to allocate DMA channel for Adaptec.n");
  1074. free_irq(irq_level, NULL);
  1075. restore_flags(flags);
  1076. goto unregister;
  1077. }
  1078. if (dma_chan == 0 || dma_chan >= 5) {
  1079. set_dma_mode(dma_chan, DMA_MODE_CASCADE);
  1080. enable_dma(dma_chan);
  1081. }
  1082. }
  1083. aha_host[irq_level - 9] = shpnt;
  1084. shpnt->this_id = scsi_id;
  1085. shpnt->unique_id = base_io;
  1086. shpnt->io_port = base_io;
  1087. shpnt->n_io_port = 4; /* Number of bytes of I/O space used */
  1088. shpnt->dma_channel = dma_chan;
  1089. shpnt->irq = irq_level;
  1090. HOSTDATA(shpnt)->bios_translation = trans;
  1091. if (trans == BIOS_TRANSLATION_25563)
  1092. printk(KERN_INFO "aha1542.c: Using extended bios translationn");
  1093. HOSTDATA(shpnt)->aha1542_last_mbi_used = (2 * AHA1542_MAILBOXES - 1);
  1094. HOSTDATA(shpnt)->aha1542_last_mbo_used = (AHA1542_MAILBOXES - 1);
  1095. memset(HOSTDATA(shpnt)->SCint, 0, sizeof(HOSTDATA(shpnt)->SCint));
  1096. restore_flags(flags);
  1097. #if 0
  1098. DEB(printk(" *** READ CAPACITY ***n"));
  1099. {
  1100. unchar buf[8];
  1101. static unchar cmd[] = { READ_CAPACITY, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
  1102. int i;
  1103. for (i = 0; i < sizeof(buf); ++i)
  1104. buf[i] = 0x87;
  1105. for (i = 0; i < 2; ++i)
  1106. if (!aha1542_command(i, cmd, buf, sizeof(buf))) {
  1107. printk(KERN_DEBUG "aha_detect: LU %d sector_size %d device_size %dn",
  1108.        i, xscsi2int(buf + 4), xscsi2int(buf));
  1109. }
  1110. }
  1111. DEB(printk(" *** NOW RUNNING MY OWN TEST *** n"));
  1112. for (i = 0; i < 4; ++i) {
  1113. unsigned char cmd[10];
  1114. static buffer[512];
  1115. cmd[0] = READ_10;
  1116. cmd[1] = 0;
  1117. xany2scsi(cmd + 2, i);
  1118. cmd[6] = 0;
  1119. cmd[7] = 0;
  1120. cmd[8] = 1;
  1121. cmd[9] = 0;
  1122. aha1542_command(0, cmd, buffer, 512);
  1123. }
  1124. #endif
  1125. request_region(bases[indx], 4, "aha1542"); /* Register the IO ports that we use */
  1126. count++;
  1127. continue;
  1128. unregister:
  1129. scsi_unregister(shpnt);
  1130. continue;
  1131. };
  1132. return count;
  1133. }
  1134. static int aha1542_restart(struct Scsi_Host *shost)
  1135. {
  1136. int i;
  1137. int count = 0;
  1138. #if 0
  1139. unchar ahacmd = CMD_START_SCSI;
  1140. #endif
  1141. for (i = 0; i < AHA1542_MAILBOXES; i++)
  1142. if (HOSTDATA(shost)->SCint[i] &&
  1143.     !(HOSTDATA(shost)->SCint[i]->device->soft_reset)) {
  1144. #if 0
  1145. HOSTDATA(shost)->mb[i].status = 1; /* Indicate ready to restart... */
  1146. #endif
  1147. count++;
  1148. }
  1149. printk(KERN_DEBUG "Potential to restart %d stalled commands...n", count);
  1150. #if 0
  1151. /* start scsi command */
  1152. if (count)
  1153. aha1542_out(shost->io_port, &ahacmd, 1);
  1154. #endif
  1155. return 0;
  1156. }
  1157. static int aha1542_abort(Scsi_Cmnd * SCpnt)
  1158. {
  1159. /*
  1160.  * The abort command does not leave the device in a clean state where
  1161.  *  it is available to be used again.  Until this gets worked out, we
  1162.  * will leave it commented out.  
  1163.  */
  1164. printk(KERN_ERR "aha1542.c: Unable to abort command for target %dn",
  1165.        SCpnt->target);
  1166. return FAILED;
  1167. }
  1168. /*
  1169.  * This is a device reset.  This is handled by sending a special command
  1170.  * to the device.
  1171.  */
  1172. static int aha1542_dev_reset(Scsi_Cmnd * SCpnt)
  1173. {
  1174. unsigned long flags;
  1175. struct mailbox *mb;
  1176. unchar target = SCpnt->target;
  1177. unchar lun = SCpnt->lun;
  1178. int mbo;
  1179. struct ccb *ccb;
  1180. unchar ahacmd = CMD_START_SCSI;
  1181. ccb = HOSTDATA(SCpnt->host)->ccb;
  1182. mb = HOSTDATA(SCpnt->host)->mb;
  1183. save_flags(flags);
  1184. cli();
  1185. mbo = HOSTDATA(SCpnt->host)->aha1542_last_mbo_used + 1;
  1186. if (mbo >= AHA1542_MAILBOXES)
  1187. mbo = 0;
  1188. do {
  1189. if (mb[mbo].status == 0 && HOSTDATA(SCpnt->host)->SCint[mbo] == NULL)
  1190. break;
  1191. mbo++;
  1192. if (mbo >= AHA1542_MAILBOXES)
  1193. mbo = 0;
  1194. } while (mbo != HOSTDATA(SCpnt->host)->aha1542_last_mbo_used);
  1195. if (mb[mbo].status || HOSTDATA(SCpnt->host)->SCint[mbo])
  1196. panic("Unable to find empty mailbox for aha1542.n");
  1197. HOSTDATA(SCpnt->host)->SCint[mbo] = SCpnt; /* This will effectively
  1198.    prevent someone else from
  1199.    screwing with this cdb. */
  1200. HOSTDATA(SCpnt->host)->aha1542_last_mbo_used = mbo;
  1201. restore_flags(flags);
  1202. any2scsi(mb[mbo].ccbptr, SCSI_PA(&ccb[mbo])); /* This gets trashed for some reason */
  1203. memset(&ccb[mbo], 0, sizeof(struct ccb));
  1204. ccb[mbo].op = 0x81; /* BUS DEVICE RESET */
  1205. ccb[mbo].idlun = (target & 7) << 5 | (lun & 7); /*SCSI Target Id */
  1206. ccb[mbo].linkptr[0] = ccb[mbo].linkptr[1] = ccb[mbo].linkptr[2] = 0;
  1207. ccb[mbo].commlinkid = 0;
  1208. /* 
  1209.  * Now tell the 1542 to flush all pending commands for this 
  1210.  * target 
  1211.  */
  1212. aha1542_out(SCpnt->host->io_port, &ahacmd, 1);
  1213. printk(KERN_WARNING "aha1542.c: Trying device reset for target %dn", SCpnt->target);
  1214. return SUCCESS;
  1215. #ifdef ERIC_neverdef
  1216. /* 
  1217.  * With the 1542 we apparently never get an interrupt to
  1218.  * acknowledge a device reset being sent.  Then again, Leonard
  1219.  * says we are doing this wrong in the first place...
  1220.  *
  1221.  * Take a wait and see attitude.  If we get spurious interrupts,
  1222.  * then the device reset is doing something sane and useful, and
  1223.  * we will wait for the interrupt to post completion.
  1224.  */
  1225. printk(KERN_WARNING "Sent BUS DEVICE RESET to target %dn", SCpnt->target);
  1226. /*
  1227.  * Free the command block for all commands running on this 
  1228.  * target... 
  1229.  */
  1230. for (i = 0; i < AHA1542_MAILBOXES; i++) {
  1231. if (HOSTDATA(SCpnt->host)->SCint[i] &&
  1232.     HOSTDATA(SCpnt->host)->SCint[i]->target == SCpnt->target) {
  1233. Scsi_Cmnd *SCtmp;
  1234. SCtmp = HOSTDATA(SCpnt->host)->SCint[i];
  1235. if (SCtmp->host_scribble) {
  1236. scsi_free(SCtmp->host_scribble, 512);
  1237. SCtmp->host_scribble = NULL;
  1238. }
  1239. HOSTDATA(SCpnt->host)->SCint[i] = NULL;
  1240. HOSTDATA(SCpnt->host)->mb[i].status = 0;
  1241. }
  1242. }
  1243. return SUCCESS;
  1244. return FAILED;
  1245. #endif /* ERIC_neverdef */
  1246. }
  1247. static int aha1542_bus_reset(Scsi_Cmnd * SCpnt)
  1248. {
  1249. int i;
  1250. /* 
  1251.  * This does a scsi reset for all devices on the bus.
  1252.  * In principle, we could also reset the 1542 - should
  1253.  * we do this?  Try this first, and we can add that later
  1254.  * if it turns out to be useful.
  1255.  */
  1256. outb(SCRST, CONTROL(SCpnt->host->io_port));
  1257. /*
  1258.  * Wait for the thing to settle down a bit.  Unfortunately
  1259.  * this is going to basically lock up the machine while we
  1260.  * wait for this to complete.  To be 100% correct, we need to
  1261.  * check for timeout, and if we are doing something like this
  1262.  * we are pretty desperate anyways.
  1263.  */
  1264. spin_unlock_irq(&io_request_lock);
  1265. scsi_sleep(4 * HZ);
  1266. spin_lock_irq(&io_request_lock);
  1267. WAIT(STATUS(SCpnt->host->io_port),
  1268.      STATMASK, INIT | IDLE, STST | DIAGF | INVDCMD | DF | CDF);
  1269. /*
  1270.  * Now try to pick up the pieces.  For all pending commands,
  1271.  * free any internal data structures, and basically clear things
  1272.  * out.  We do not try and restart any commands or anything - 
  1273.  * the strategy handler takes care of that crap.
  1274.  */
  1275. printk(KERN_WARNING "Sent BUS RESET to scsi host %dn", SCpnt->host->host_no);
  1276. for (i = 0; i < AHA1542_MAILBOXES; i++) {
  1277. if (HOSTDATA(SCpnt->host)->SCint[i] != NULL) {
  1278. Scsi_Cmnd *SCtmp;
  1279. SCtmp = HOSTDATA(SCpnt->host)->SCint[i];
  1280. if (SCtmp->device->soft_reset) {
  1281. /*
  1282.  * If this device implements the soft reset option,
  1283.  * then it is still holding onto the command, and
  1284.  * may yet complete it.  In this case, we don't
  1285.  * flush the data.
  1286.  */
  1287. continue;
  1288. }
  1289. if (SCtmp->host_scribble) {
  1290. scsi_free(SCtmp->host_scribble, 512);
  1291. SCtmp->host_scribble = NULL;
  1292. }
  1293. HOSTDATA(SCpnt->host)->SCint[i] = NULL;
  1294. HOSTDATA(SCpnt->host)->mb[i].status = 0;
  1295. }
  1296. }
  1297. return SUCCESS;
  1298. fail:
  1299. return FAILED;
  1300. }
  1301. static int aha1542_host_reset(Scsi_Cmnd * SCpnt)
  1302. {
  1303. int i;
  1304. /* 
  1305.  * This does a scsi reset for all devices on the bus.
  1306.  * In principle, we could also reset the 1542 - should
  1307.  * we do this?  Try this first, and we can add that later
  1308.  * if it turns out to be useful.
  1309.  */
  1310. outb(HRST | SCRST, CONTROL(SCpnt->host->io_port));
  1311. /*
  1312.  * Wait for the thing to settle down a bit.  Unfortunately
  1313.  * this is going to basically lock up the machine while we
  1314.  * wait for this to complete.  To be 100% correct, we need to
  1315.  * check for timeout, and if we are doing something like this
  1316.  * we are pretty desperate anyways.
  1317.  */
  1318. spin_unlock_irq(&io_request_lock);
  1319. scsi_sleep(4 * HZ);
  1320. spin_lock_irq(&io_request_lock);
  1321. WAIT(STATUS(SCpnt->host->io_port),
  1322.      STATMASK, INIT | IDLE, STST | DIAGF | INVDCMD | DF | CDF);
  1323. /*
  1324.  * We need to do this too before the 1542 can interact with
  1325.  * us again.
  1326.  */
  1327. setup_mailboxes(SCpnt->host->io_port, SCpnt->host);
  1328. /*
  1329.  * Now try to pick up the pieces.  For all pending commands,
  1330.  * free any internal data structures, and basically clear things
  1331.  * out.  We do not try and restart any commands or anything - 
  1332.  * the strategy handler takes care of that crap.
  1333.  */
  1334. printk(KERN_WARNING "Sent BUS RESET to scsi host %dn", SCpnt->host->host_no);
  1335. for (i = 0; i < AHA1542_MAILBOXES; i++) {
  1336. if (HOSTDATA(SCpnt->host)->SCint[i] != NULL) {
  1337. Scsi_Cmnd *SCtmp;
  1338. SCtmp = HOSTDATA(SCpnt->host)->SCint[i];
  1339. if (SCtmp->device->soft_reset) {
  1340. /*
  1341.  * If this device implements the soft reset option,
  1342.  * then it is still holding onto the command, and
  1343.  * may yet complete it.  In this case, we don't
  1344.  * flush the data.
  1345.  */
  1346. continue;
  1347. }
  1348. if (SCtmp->host_scribble) {
  1349. scsi_free(SCtmp->host_scribble, 512);
  1350. SCtmp->host_scribble = NULL;
  1351. }
  1352. HOSTDATA(SCpnt->host)->SCint[i] = NULL;
  1353. HOSTDATA(SCpnt->host)->mb[i].status = 0;
  1354. }
  1355. }
  1356. return SUCCESS;
  1357. fail:
  1358. return FAILED;
  1359. }
  1360. /*
  1361.  * These are the old error handling routines.  They are only temporarily
  1362.  * here while we play with the new error handling code.
  1363.  */
  1364. static int aha1542_old_abort(Scsi_Cmnd * SCpnt)
  1365. {
  1366. #if 0
  1367. unchar ahacmd = CMD_START_SCSI;
  1368. unsigned long flags;
  1369. struct mailbox *mb;
  1370. int mbi, mbo, i;
  1371. printk(KERN_DEBUG "In aha1542_abort: %x %xn",
  1372.        inb(STATUS(SCpnt->host->io_port)),
  1373.        inb(INTRFLAGS(SCpnt->host->io_port)));
  1374. save_flags(flags);
  1375. cli();
  1376. mb = HOSTDATA(SCpnt->host)->mb;
  1377. mbi = HOSTDATA(SCpnt->host)->aha1542_last_mbi_used + 1;
  1378. if (mbi >= 2 * AHA1542_MAILBOXES)
  1379. mbi = AHA1542_MAILBOXES;
  1380. do {
  1381. if (mb[mbi].status != 0)
  1382. break;
  1383. mbi++;
  1384. if (mbi >= 2 * AHA1542_MAILBOXES)
  1385. mbi = AHA1542_MAILBOXES;
  1386. } while (mbi != HOSTDATA(SCpnt->host)->aha1542_last_mbi_used);
  1387. restore_flags(flags);
  1388. if (mb[mbi].status) {
  1389. printk(KERN_ERR "Lost interrupt discovered on irq %d - attempting to recovern",
  1390.        SCpnt->host->irq);
  1391. aha1542_intr_handle(SCpnt->host->irq, NULL);
  1392. return 0;
  1393. }
  1394. /* OK, no lost interrupt.  Try looking to see how many pending commands
  1395.    we think we have. */
  1396. for (i = 0; i < AHA1542_MAILBOXES; i++)
  1397. if (HOSTDATA(SCpnt->host)->SCint[i]) {
  1398. if (HOSTDATA(SCpnt->host)->SCint[i] == SCpnt) {
  1399. printk(KERN_ERR "Timed out command pending for %sn",
  1400.        kdevname(SCpnt->request.rq_dev));
  1401. if (HOSTDATA(SCpnt->host)->mb[i].status) {
  1402. printk(KERN_ERR "OGMB still full - restartingn");
  1403. aha1542_out(SCpnt->host->io_port, &ahacmd, 1);
  1404. };
  1405. } else
  1406. printk(KERN_ERR "Other pending command %sn",
  1407.        kdevname(SCpnt->request.rq_dev));
  1408. }
  1409. #endif
  1410. DEB(printk("aha1542_abortn"));
  1411. #if 0
  1412. save_flags(flags);
  1413. cli();
  1414. for (mbo = 0; mbo < AHA1542_MAILBOXES; mbo++)
  1415. if (SCpnt == HOSTDATA(SCpnt->host)->SCint[mbo]) {
  1416. mb[mbo].status = 2; /* Abort command */
  1417. aha1542_out(SCpnt->host->io_port, &ahacmd, 1); /* start scsi command */
  1418. restore_flags(flags);
  1419. break;
  1420. };
  1421. #endif
  1422. return SCSI_ABORT_SNOOZE;
  1423. }
  1424. /* We do not implement a reset function here, but the upper level code
  1425.    assumes that it will get some kind of response for the command in
  1426.    SCpnt.  We must oblige, or the command will hang the scsi system.
  1427.    For a first go, we assume that the 1542 notifies us with all of the
  1428.    pending commands (it does implement soft reset, after all). */
  1429. static int aha1542_old_reset(Scsi_Cmnd * SCpnt, unsigned int reset_flags)
  1430. {
  1431. unchar ahacmd = CMD_START_SCSI;
  1432. int i;
  1433. /*
  1434.  * See if a bus reset was suggested.
  1435.  */
  1436. if (reset_flags & SCSI_RESET_SUGGEST_BUS_RESET) {
  1437. /* 
  1438.  * This does a scsi reset for all devices on the bus.
  1439.  * In principle, we could also reset the 1542 - should
  1440.  * we do this?  Try this first, and we can add that later
  1441.  * if it turns out to be useful.
  1442.  */
  1443. outb(HRST | SCRST, CONTROL(SCpnt->host->io_port));
  1444. /*
  1445.  * Wait for the thing to settle down a bit.  Unfortunately
  1446.  * this is going to basically lock up the machine while we
  1447.  * wait for this to complete.  To be 100% correct, we need to
  1448.  * check for timeout, and if we are doing something like this
  1449.  * we are pretty desperate anyways.
  1450.  */
  1451. WAIT(STATUS(SCpnt->host->io_port),
  1452. STATMASK, INIT | IDLE, STST | DIAGF | INVDCMD | DF | CDF);
  1453. /*
  1454.  * We need to do this too before the 1542 can interact with
  1455.  * us again.
  1456.  */
  1457. setup_mailboxes(SCpnt->host->io_port, SCpnt->host);
  1458. /*
  1459.  * Now try to pick up the pieces.  Restart all commands
  1460.  * that are currently active on the bus, and reset all of
  1461.  * the datastructures.  We have some time to kill while
  1462.  * things settle down, so print a nice message.
  1463.  */
  1464. printk(KERN_WARNING "Sent BUS RESET to scsi host %dn", SCpnt->host->host_no);
  1465. for (i = 0; i < AHA1542_MAILBOXES; i++)
  1466. if (HOSTDATA(SCpnt->host)->SCint[i] != NULL) {
  1467. Scsi_Cmnd *SCtmp;
  1468. SCtmp = HOSTDATA(SCpnt->host)->SCint[i];
  1469. SCtmp->result = DID_RESET << 16;
  1470. if (SCtmp->host_scribble) {
  1471. scsi_free(SCtmp->host_scribble, 512);
  1472. SCtmp->host_scribble = NULL;
  1473. }
  1474. printk(KERN_WARNING "Sending DID_RESET for target %dn", SCpnt->target);
  1475. SCtmp->scsi_done(SCpnt);
  1476. HOSTDATA(SCpnt->host)->SCint[i] = NULL;
  1477. HOSTDATA(SCpnt->host)->mb[i].status = 0;
  1478. }
  1479. /*
  1480.  * Now tell the mid-level code what we did here.  Since
  1481.  * we have restarted all of the outstanding commands,
  1482.  * then report SUCCESS.
  1483.  */
  1484. return (SCSI_RESET_SUCCESS | SCSI_RESET_BUS_RESET);
  1485. fail:
  1486. printk(KERN_CRIT "aha1542.c: Unable to perform hard reset.n");
  1487. printk(KERN_CRIT "Power cycle machine to resetn");
  1488. return (SCSI_RESET_ERROR | SCSI_RESET_BUS_RESET);
  1489. } else {
  1490. /* This does a selective reset of just the one device */
  1491. /* First locate the ccb for this command */
  1492. for (i = 0; i < AHA1542_MAILBOXES; i++)
  1493. if (HOSTDATA(SCpnt->host)->SCint[i] == SCpnt) {
  1494. HOSTDATA(SCpnt->host)->ccb[i].op = 0x81; /* BUS DEVICE RESET */
  1495. /* Now tell the 1542 to flush all pending commands for this target */
  1496. aha1542_out(SCpnt->host->io_port, &ahacmd, 1);
  1497. /* Here is the tricky part.  What to do next.  Do we get an interrupt
  1498.    for the commands that we aborted with the specified target, or
  1499.    do we generate this on our own?  Try it without first and see
  1500.    what happens */
  1501. printk(KERN_WARNING "Sent BUS DEVICE RESET to target %dn", SCpnt->target);
  1502. /* If the first does not work, then try the second.  I think the
  1503.    first option is more likely to be correct. Free the command
  1504.    block for all commands running on this target... */
  1505. for (i = 0; i < AHA1542_MAILBOXES; i++)
  1506. if (HOSTDATA(SCpnt->host)->SCint[i] &&
  1507.     HOSTDATA(SCpnt->host)->SCint[i]->target == SCpnt->target) {
  1508. Scsi_Cmnd *SCtmp;
  1509. SCtmp = HOSTDATA(SCpnt->host)->SCint[i];
  1510. SCtmp->result = DID_RESET << 16;
  1511. if (SCtmp->host_scribble) {
  1512. scsi_free(SCtmp->host_scribble, 512);
  1513. SCtmp->host_scribble = NULL;
  1514. }
  1515. printk(KERN_WARNING "Sending DID_RESET for target %dn", SCpnt->target);
  1516. SCtmp->scsi_done(SCpnt);
  1517. HOSTDATA(SCpnt->host)->SCint[i] = NULL;
  1518. HOSTDATA(SCpnt->host)->mb[i].status = 0;
  1519. }
  1520. return SCSI_RESET_SUCCESS;
  1521. }
  1522. }
  1523. /* No active command at this time, so this means that each time we got
  1524.    some kind of response the last time through.  Tell the mid-level code
  1525.    to request sense information in order to decide what to do next. */
  1526. return SCSI_RESET_PUNT;
  1527. }
  1528. #include "sd.h"
  1529. static int aha1542_biosparam(Scsi_Disk * disk, kdev_t dev, int *ip)
  1530. {
  1531. int translation_algorithm;
  1532. int size = disk->capacity;
  1533. translation_algorithm = HOSTDATA(disk->device->host)->bios_translation;
  1534. if ((size >> 11) > 1024 && translation_algorithm == BIOS_TRANSLATION_25563) {
  1535. /* Please verify that this is the same as what DOS returns */
  1536. ip[0] = 255;
  1537. ip[1] = 63;
  1538. ip[2] = size / 255 / 63;
  1539. } else {
  1540. ip[0] = 64;
  1541. ip[1] = 32;
  1542. ip[2] = size >> 11;
  1543. }
  1544. return 0;
  1545. }
  1546. MODULE_LICENSE("GPL");
  1547. /* Eventually this will go into an include file, but this will be later */
  1548. static Scsi_Host_Template driver_template = AHA1542;
  1549. #include "scsi_module.c"