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

📄 in2000.h

📁 GNU Mach 微内核源代码, 基于美国卡内基美隆大学的 Mach 研究项目
💻 H
📖 第 1 页 / 共 2 页
字号:
/* *    in2000.h -  Linux device driver definitions for the *                Always IN2000 ISA SCSI card. * *    IMPORTANT: This file is for version 1.33 - 26/Aug/1998 * * Copyright (c) 1996 John Shifflett, GeoLog Consulting *    john@geolog.com *    jshiffle@netcom.com * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * */#ifndef IN2000_H#define IN2000_H#include <asm/io.h>#define PROC_INTERFACE     /* add code for /proc/scsi/in2000/xxx interface */#ifdef  PROC_INTERFACE#define PROC_STATISTICS    /* add code for keeping various real time stats */#endif#define SYNC_DEBUG         /* extra info on sync negotiation printed */#define DEBUGGING_ON       /* enable command-line debugging bitmask */#define DEBUG_DEFAULTS 0   /* default bitmask - change from command-line */#define FAST_READ_IO       /* No problems with these on my machine */#define FAST_WRITE_IO#ifdef DEBUGGING_ON#define DB(f,a) if (hostdata->args & (f)) a;#define CHECK_NULL(p,s) /* if (!(p)) {printk("\n"); while (1) printk("NP:%s\r",(s));} */#else#define DB(f,a)#define CHECK_NULL(p,s)#endif#define uchar unsigned char#define read1_io(a)     (inb(hostdata->io_base+(a)))#define read2_io(a)     (inw(hostdata->io_base+(a)))#define write1_io(b,a)  (outb((b),hostdata->io_base+(a)))#define write2_io(w,a)  (outw((w),hostdata->io_base+(a)))/* These inline assembly defines are derived from a patch * sent to me by Bill Earnest. He's done a lot of very * valuable thinking, testing, and coding during his effort * to squeeze more speed out of this driver. I really think * that we are doing IO at close to the maximum now with * the fifo. (And yes, insw uses 'edi' while outsw uses * 'esi'. Thanks Bill!) */#define FAST_READ2_IO()    \({ \int __dummy_1,__dummy_2; \   __asm__ __volatile__ ("\n \   cld                    \n \   orl %%ecx, %%ecx       \n \   jz 1f                  \n \   rep                    \n \   insw (%%dx),%%es:(%%edi) \n \1: "                       \   : "=D" (sp) ,"=c" (__dummy_1) ,"=d" (__dummy_2)  /* output */   \   : "2" (f), "0" (sp), "1" (i)  /* input */    \   );       /* trashed */ \})#define FAST_WRITE2_IO()   \({ \int __dummy_1,__dummy_2; \   __asm__ __volatile__ ("\n \   cld                    \n \   orl %%ecx, %%ecx       \n \   jz 1f                  \n \   rep                    \n \   outsw %%ds:(%%esi),(%%dx) \n \1: "                       \   : "=S" (sp) ,"=c" (__dummy_1) ,"=d" (__dummy_2)/* output */   \   : "2" (f), "0" (sp), "1" (i)  /* input */    \   );       /* trashed */ \})/* IN2000 io_port offsets */#define IO_WD_ASR       0x00     /* R - 3393 auxstat reg */#define     ASR_INT        0x80#define     ASR_LCI        0x40#define     ASR_BSY        0x20#define     ASR_CIP        0x10#define     ASR_PE         0x02#define     ASR_DBR        0x01#define IO_WD_ADDR      0x00     /* W - 3393 address reg */#define IO_WD_DATA      0x01     /* R/W - rest of 3393 regs */#define IO_FIFO         0x02     /* R/W - in2000 dual-port fifo (16 bits) */#define IN2000_FIFO_SIZE   2048  /*    fifo capacity in bytes */#define IO_CARD_RESET   0x03     /* W - in2000 start master reset */#define IO_FIFO_COUNT   0x04     /* R - in2000 fifo counter */#define IO_FIFO_WRITE   0x05     /* W - clear fifo counter, start write */#define IO_FIFO_READ    0x07     /* W - start fifo read */#define IO_LED_OFF      0x08     /* W - turn off in2000 activity LED */#define IO_SWITCHES     0x08     /* R - read in2000 dip switch */#define     SW_ADDR0       0x01  /*    bit 0 = bit 0 of index to io addr */#define     SW_ADDR1       0x02  /*    bit 1 = bit 1 of index io addr */#define     SW_DISINT      0x04  /*    bit 2 true if ints disabled */#define     SW_INT0        0x08  /*    bit 3 = bit 0 of index to interrupt */#define     SW_INT1        0x10  /*    bit 4 = bit 1 of index to interrupt */#define     SW_INT_SHIFT   3     /*    shift right this amount to right justify int bits */#define     SW_SYNC_DOS5   0x20  /*    bit 5 used by Always BIOS */#define     SW_FLOPPY      0x40  /*    bit 6 true if floppy enabled */#define     SW_BIT7        0x80  /*    bit 7 hardwired true (ground) */#define IO_LED_ON       0x09     /* W - turn on in2000 activity LED */#define IO_HARDWARE     0x0a     /* R - read in2000 hardware rev, stop reset */#define IO_INTR_MASK    0x0c     /* W - in2000 interrupt mask reg */#define     IMASK_WD       0x01  /*    WD33c93 interrupt mask */#define     IMASK_FIFO     0x02  /*    FIFO interrupt mask *//* wd register names */#define WD_OWN_ID    0x00#define WD_CONTROL   0x01#define WD_TIMEOUT_PERIOD  0x02#define WD_CDB_1     0x03#define WD_CDB_2     0x04#define WD_CDB_3     0x05#define WD_CDB_4     0x06#define WD_CDB_5     0x07#define WD_CDB_6     0x08#define WD_CDB_7     0x09#define WD_CDB_8     0x0a#define WD_CDB_9     0x0b#define WD_CDB_10    0x0c#define WD_CDB_11    0x0d#define WD_CDB_12    0x0e#define WD_TARGET_LUN      0x0f#define WD_COMMAND_PHASE   0x10#define WD_SYNCHRONOUS_TRANSFER  0x11#define WD_TRANSFER_COUNT_MSB 0x12#define WD_TRANSFER_COUNT  0x13#define WD_TRANSFER_COUNT_LSB 0x14#define WD_DESTINATION_ID  0x15#define WD_SOURCE_ID    0x16#define WD_SCSI_STATUS     0x17#define WD_COMMAND      0x18#define WD_DATA      0x19#define WD_QUEUE_TAG    0x1a#define WD_AUXILIARY_STATUS   0x1f/* WD commands */#define WD_CMD_RESET    0x00#define WD_CMD_ABORT    0x01#define WD_CMD_ASSERT_ATN  0x02#define WD_CMD_NEGATE_ACK  0x03#define WD_CMD_DISCONNECT  0x04#define WD_CMD_RESELECT    0x05#define WD_CMD_SEL_ATN     0x06#define WD_CMD_SEL      0x07#define WD_CMD_SEL_ATN_XFER   0x08#define WD_CMD_SEL_XFER    0x09#define WD_CMD_RESEL_RECEIVE  0x0a#define WD_CMD_RESEL_SEND  0x0b#define WD_CMD_WAIT_SEL_RECEIVE 0x0c#define WD_CMD_TRANS_ADDR  0x18#define WD_CMD_TRANS_INFO  0x20#define WD_CMD_TRANSFER_PAD   0x21#define WD_CMD_SBT_MODE    0x80/* SCSI Bus Phases */#define PHS_DATA_OUT    0x00#define PHS_DATA_IN     0x01#define PHS_COMMAND     0x02#define PHS_STATUS      0x03#define PHS_MESS_OUT    0x06#define PHS_MESS_IN     0x07/* Command Status Register definitions */  /* reset state interrupts */#define CSR_RESET    0x00#define CSR_RESET_AF    0x01  /* successful completion interrupts */#define CSR_RESELECT    0x10#define CSR_SELECT      0x11#define CSR_SEL_XFER_DONE  0x16#define CSR_XFER_DONE      0x18  /* paused or aborted interrupts */#define CSR_MSGIN    0x20#define CSR_SDP         0x21#define CSR_SEL_ABORT      0x22#define CSR_RESEL_ABORT    0x25#define CSR_RESEL_ABORT_AM 0x27#define CSR_ABORT    0x28  /* terminated interrupts */#define CSR_INVALID     0x40#define CSR_UNEXP_DISC     0x41#define CSR_TIMEOUT     0x42#define CSR_PARITY      0x43#define CSR_PARITY_ATN     0x44#define CSR_BAD_STATUS     0x45#define CSR_UNEXP    0x48  /* service required interrupts */#define CSR_RESEL    0x80#define CSR_RESEL_AM    0x81#define CSR_DISC     0x85#define CSR_SRV_REQ     0x88   /* Own ID/CDB Size register */#define OWNID_EAF    0x08#define OWNID_EHP    0x10#define OWNID_RAF    0x20#define OWNID_FS_8   0x00#define OWNID_FS_12  0x40#define OWNID_FS_16  0x80   /* Control register */#define CTRL_HSP     0x01#define CTRL_HA      0x02#define CTRL_IDI     0x04#define CTRL_EDI     0x08#define CTRL_HHP     0x10#define CTRL_POLLED  0x00

⌨️ 快捷键说明

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