⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 aha1542.c

📁 linux0.99源代码用于研究linux操作系统
💻 C
📖 第 1 页 / 共 2 页
字号:
/* $Id: aha1542.c,v 1.1 1992/07/24 06:27:38 root Exp root $ *  linux/kernel/aha1542.c * *  Copyright (C) 1992  Tommy Thorn * *  Modified by Eric Youngdale *        Use request_irq and request_dma to help prevent unexpected conflicts *        Set up on-board DMA controller, such that we do not have to *        have the bios enabled to use the aha1542. */#include <linux/kernel.h>#include <linux/head.h>#include <linux/types.h>#include <linux/string.h>#include <linux/sched.h>#include <asm/dma.h>#include <asm/system.h>#include <asm/io.h>#include "../blk.h"#include "scsi.h"#include "hosts.h"#include "aha1542.h"#ifdef DEBUG#define DEB(x) x#else#define DEB(x)#endif/*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 $";*//* The adaptec can be configured for quite a number of addresses, butI generally do not want the card poking around at random.  We allowtwo addresses - this allows people to use the Adaptec with a Midicard, which also used 0x330 */static unsigned int bases[]={0x330, 0x334};static unsigned int base;static unsigned char dma_chan;static unsigned char irq_level;static int aha_disable = 0;/* The DMA-Controller.  We need to fool with this because we want to    be able to use the aha1542 without having to have the bios enabled */#define DMA_MODE_REG	0xd6#define DMA_MASK_REG	0xd4#define	CASCADE		0xc0static struct mailbox mb[2*AHA1542_MAILBOXES];static struct ccb ccb[AHA1542_MAILBOXES];static Scsi_Cmnd * SCint[AHA1542_MAILBOXES] = {NULL, };/* This will effectively start both of them at the first mailbox */static int aha1542_last_mbi_used  = (2*AHA1542_MAILBOXES - 1);static int aha1542_last_mbo_used  = (AHA1542_MAILBOXES - 1);static long WAITnexttimeout = 3000000;static int aha1542_host = 0;extern void aha1542_interrupt();#define aha1542_intr_reset()  outb(IRST, CONTROL)#define WAIT(port, mask, allof, noneof)					\ { register WAITbits;							\   register WAITtimeout = WAITnexttimeout;				\   while (1) {								\     WAITbits = inb(port) & (mask);					\     if ((WAITbits & (allof)) == (allof) && ((WAITbits & (noneof)) == 0)) \       break;                                                         	\     if (--WAITtimeout == 0) goto fail;					\   }									\ }static void aha1542_stat(void){/*    int s = inb(STATUS), i = inb(INTRFLAGS);  printk("status=%x intrflags=%x\n", s, i, WAITnexttimeout-WAITtimeout); */}static int aha1542_out(unchar *cmdp, int len){    while (len--)      {	  WAIT(STATUS, CDF, 0, CDF);	  outb(*cmdp++, DATA);      }    return 0;  fail:    printk("aha1542_out failed(%d): ", len+1); aha1542_stat();    return 1;}static int aha1542_in(unchar *cmdp, int len){    while (len--)      {	  WAIT(STATUS, DF, DF, 0);	  *cmdp++ = inb(DATA);      }    return 0;  fail:    printk("aha1542_in failed(%d): ", len+1); aha1542_stat();    return 1;}int makecode(unsigned hosterr, unsigned scsierr){    switch (hosterr) {      case 0x0:      case 0xa: /* Linked command complete without error and linked normally */      case 0xb: /* Linked command complete without error, interrupt generated */	hosterr = 0;	break;      case 0x11: /* Selection time out-The initiator selection or target		    reselection was not complete within the SCSI Time out period */	hosterr = DID_TIME_OUT;	break;      case 0x12: /* Data overrun/underrun-The target attempted to transfer more data		    thean was allocated by the Data Length field or the sum of the		    Scatter / Gather Data Length fields. */      case 0x13: /* Unexpected bus free-The target dropped the SCSI BSY at an unexpected time. */      case 0x15: /* MBO command was not 00, 01 or 02-The first byte of the CB was		    invalid. This usually indicates a software failure. */      case 0x16: /* Invalid CCB Operation Code-The first byte of the CCB was invalid.		    This usually indicates a software failure. */      case 0x17: /* Linked CCB does not have the same LUN-A subsequent CCB of a set		    of linked CCB's does not specify the same logical unit number as		    the first. */      case 0x18: /* Invalid Target Direction received from Host-The direction of a		    Target Mode CCB was invalid. */      case 0x19: /* Duplicate CCB Received in Target Mode-More than once CCB was		    received to service data transfer between the same target LUN		    and initiator SCSI ID in the same direction. */      case 0x1a: /* Invalid CCB or Segment List Parameter-A segment list with a zero		    length segment or invalid segment list boundaries was received.		    A CCB parameter was invalid. */	hosterr = DID_ERROR; /* Couldn't find any better */	break;      case 0x14: /* Target bus phase sequence failure-An invalid bus phase or bus		    phase sequence was requested by the target. The host adapter		    will generate a SCSI Reset Condition, notifying the host with		    a SCRD interrupt */	hosterr = DID_RESET;	break;      default:	printk("makecode: unknown hoststatus %x\n", hosterr);	break;    }    return scsierr|(hosterr << 16);}int aha1542_test_port(int bse){    volatile int debug = 0;        base = bse;    /* Reset the adapter. I ought to make a hard reset, but it's not really nessesary */        /*  DEB(printk("aha1542_test_port called \n")); */        outb(SRST|IRST/*|SCRST*/, CONTROL);        debug = 1;    /* Expect INIT and IDLE, any of the others are bad */    WAIT(STATUS, STATMASK, INIT|IDLE, STST|DIAGF|INVDCMD|DF|CDF);        debug = 2;    /* Shouldn't have generated any interrupts during reset */    if (inb(INTRFLAGS)&INTRMASK) goto fail;        debug = 3;    /* Test the basic ECHO command */    outb(CMD_ECHO, DATA);        debug = 4;    /* Wait for CDF=0. If any of the others are set, it's bad */    WAIT(STATUS, STATMASK, 0, STST|DIAGF|INVDCMD|DF|CDF);        debug = 5;    /* The meaning of life */    outb(42, DATA);        debug = 6;    /* Expect only DF, that is, data ready */    WAIT(STATUS, STATMASK, DF, STST|DIAGF|CDF|INVDCMD);        debug = 7;    /* Is the answer correct? */    if (inb(DATA) != 42) goto fail;        debug = 8;    /* Reading port should reset DF */    if (inb(STATUS) & DF) goto fail;        debug = 9;    /* When HACC, command is completed, and we're though testing */    WAIT(INTRFLAGS, HACC, HACC, 0);    /* now initialize adapter */        debug = 10;    /* Clear interrupts */    outb(IRST, CONTROL);        debug = 11;        return debug;				/* 1 = ok */  fail:    return 0;					/* 0 = not ok */}/* What's this little function for? */const char *aha1542_info(void){    static char buffer[] = "";			/* looks nicer without anything here */    return buffer;}/* A "high" level interrupt handler */void aha1542_intr_handle(int foo){    void (*my_done)(Scsi_Cmnd *) = NULL;    int errstatus, mbi, mbo, mbistatus;    int number_serviced;    Scsi_Cmnd * SCtmp;#ifdef DEBUG    {    int flag = inb(INTRFLAGS);    printk("aha1542_intr_handle: ");    if (!(flag&ANYINTR)) printk("no interrupt?");    if (flag&MBIF) printk("MBIF ");    if (flag&MBOA) printk("MBOF ");    if (flag&HACC) printk("HACC ");    if (flag&SCRD) printk("SCRD ");    printk("status %02x\n", inb(STATUS));  };#endif    number_serviced = 0;    while(1==1){      aha1542_intr_reset();      cli();      mbi = aha1542_last_mbi_used + 1;      if (mbi >= 2*AHA1542_MAILBOXES) mbi = AHA1542_MAILBOXES;            do{	if(mb[mbi].status != 0) break;	mbi++;	if (mbi >= 2*AHA1542_MAILBOXES) mbi = AHA1542_MAILBOXES;      } while (mbi != aha1542_last_mbi_used);            if(mb[mbi].status == 0){	sti();	/* Hmm, no mail.  Must have read it the last time around */	if (number_serviced) return;	printk("aha1542.c: interrupt received, but no mail.\n");	return;      };      mbo = (scsi2int(mb[mbi].ccbptr) - ((unsigned int) &ccb[0])) / sizeof(struct ccb);      mbistatus = mb[mbi].status;      mb[mbi].status = 0;      aha1542_last_mbi_used = mbi;      sti();      #ifdef DEBUG      {	if (ccb[mbo].tarstat|ccb[mbo].hastat)	  printk("aha1542_command: returning %x (status %d)\n", 		 ccb[mbo].tarstat + ((int) ccb[mbo].hastat << 16), mb[mbi].status);      };#endif      if(mbistatus == 3) continue; /* Aborted command not found */#ifdef DEBUG      printk("...done %d %d\n",mbo, mbi);#endif            SCtmp = SCint[mbo];      my_done = SCtmp->scsi_done;      if (SCtmp->host_scribble) scsi_free(SCtmp->host_scribble, 512);            if (!my_done) {	printk("aha1542_intr_handle: Unexpected interrupt\n");	return;      }            /* Fetch the sense data, and tuck it away, in the required slot.  The	 Adaptec automatically fetches it, and there is no guarantee that	 we will still have it in the cdb when we come back */      if (ccb[mbo].tarstat == 2)	memcpy(SCtmp->sense_buffer, &ccb[mbo].cdb[ccb[mbo].cdblen], 	       sizeof(SCtmp->sense_buffer));                  /* is there mail :-) */            /* more error checking left out here */      if (mbistatus != 1)	/* This is surely wrong, but I don't know what's right */	errstatus = makecode(ccb[mbo].hastat, ccb[mbo].tarstat);      else	errstatus = 0;      #ifdef DEBUG      if(errstatus) printk("(aha1542 error:%x %x %x) ",errstatus, 			   ccb[mbo].hastat, ccb[mbo].tarstat);#endif      if (ccb[mbo].tarstat == 2) {#ifdef DEBUG	int i;#endif	DEB(printk("aha1542_intr_handle: sense:"));#ifdef DEBUG	for (i = 0; i < 12; i++)	  printk("%02x ", ccb[mbo].cdb[ccb[mbo].cdblen+i]);	printk("\n");#endif	/*	  DEB(printk("aha1542_intr_handle: buf:"));	  for (i = 0; i < bufflen; i++)	  printk("%02x ", ((unchar *)buff)[i]);	  printk("\n");	  */      }      DEB(if (errstatus) printk("aha1542_intr_handle: returning %6x\n", errstatus));      SCtmp->result = errstatus;      SCint[mbo] = NULL;  /* This effectively frees up the mailbox slot, as			     far as queuecommand is concerned */      my_done(SCtmp);      number_serviced++;    };}int aha1542_queuecommand(Scsi_Cmnd * SCpnt, void (*done)(Scsi_Cmnd *)){    unchar ahacmd = CMD_START_SCSI;    unchar direction;    unchar *cmd = (unchar *) SCpnt->cmnd;    unchar target = SCpnt->target;    unchar lun = SCpnt->lun;    void *buff = SCpnt->request_buffer;    int bufflen = SCpnt->request_bufflen;    int mbo;    DEB(int i);    DEB(if (target > 1) {      SCpnt->result = DID_TIME_OUT << 16;      done(SCpnt); return 0;});        if(*cmd == REQUEST_SENSE){#ifndef DEBUG      if (bufflen != 16) {	printk("Wrong buffer length supplied for request sense (%d)\n",bufflen);	panic("aha1542.c");      };#endif      SCpnt->result = 0;      done(SCpnt);       return 0;    };#ifdef DEBUG    if (*cmd == READ_10 || *cmd == WRITE_10)      i = xscsi2int(cmd+2);    else if (*cmd == READ_6 || *cmd == WRITE_6)      i = scsi2int(cmd+2);    else      i = -1;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -