📄 sym53c8xx_defs.h
字号:
/*4d*/ u_char nc_stest1; #define DBLEN 0x08 /* clock doubler running */ #define DBLSEL 0x04 /* clock doubler selected */ /*4e*/ u_char nc_stest2; #define ROF 0x40 /* reset scsi offset (after gross error!) */ #define EXT 0x02 /* extended filtering *//*4f*/ u_char nc_stest3; #define TE 0x80 /* c: tolerAnt enable */ #define HSC 0x20 /* c: Halt SCSI Clock */ #define CSF 0x02 /* c: clear scsi fifo *//*50*/ u_short nc_sidl; /* Lowlevel: latched from scsi data *//*52*/ u_char nc_stest4; #define SMODE 0xc0 /* SCSI bus mode (895/6 only) */ #define SMODE_HVD 0x40 /* High Voltage Differential */ #define SMODE_SE 0x80 /* Single Ended */ #define SMODE_LVD 0xc0 /* Low Voltage Differential */ #define LCKFRQ 0x20 /* Frequency Lock (895/6 only) *//*53*/ u_char nc_53_;/*54*/ u_short nc_sodl; /* Lowlevel: data out to scsi data *//*56*/ u_char nc_ccntl0; /* Chip Control 0 (896) */ #define ENPMJ 0x80 /* Enable Phase Mismatch Jump */ #define PMJCTL 0x40 /* Phase Mismatch Jump Control */ #define ENNDJ 0x20 /* Enable Non Data PM Jump */ #define DISFC 0x10 /* Disable Auto FIFO Clear */ #define DILS 0x02 /* Disable Internal Load/Store */ #define DPR 0x01 /* Disable Pipe Req *//*57*/ u_char nc_ccntl1; /* Chip Control 1 (896) */ #define ZMOD 0x80 /* High Impedance Mode */ #define DDAC 0x08 /* Disable Dual Address Cycle */ #define XTIMOD 0x04 /* 64-bit Table Ind. Indexing Mode */ #define EXTIBMV 0x02 /* Enable 64-bit Table Ind. BMOV */ #define EXDBMV 0x01 /* Enable 64-bit Direct BMOV *//*58*/ u_short nc_sbdl; /* Lowlevel: data from scsi data *//*5a*/ u_short nc_5a_;/*5c*/ u_char nc_scr0; /* Working register B *//*5d*/ u_char nc_scr1; /* *//*5e*/ u_char nc_scr2; /* *//*5f*/ u_char nc_scr3; /* *//*60*/ u_char nc_scrx[64]; /* Working register C-R *//*a0*/ u_int32 nc_mmrs; /* Memory Move Read Selector *//*a4*/ u_int32 nc_mmws; /* Memory Move Write Selector *//*a8*/ u_int32 nc_sfs; /* Script Fetch Selector *//*ac*/ u_int32 nc_drs; /* DSA Relative Selector *//*b0*/ u_int32 nc_sbms; /* Static Block Move Selector *//*b4*/ u_int32 nc_dbms; /* Dynamic Block Move Selector *//*b8*/ u_int32 nc_dnad64; /* DMA Next Address 64 *//*bc*/ u_int32 nc_bc_;/*c0*/ u_int32 nc_pmjad1; /* Phase Mismatch Jump Address 1 *//*c4*/ u_int32 nc_pmjad2; /* Phase Mismatch Jump Address 2 *//*c8*/ u_int32 nc_rbc; /* Remaining Byte Count *//*cc*/ u_int32 nc_ua; /* Updated Address *//*d0*/ u_int32 nc_esa; /* Entry Storage Address *//*d4*/ u_char nc_ia; /* Instruction Address *//*d5*/ u_char nc_ia1;/*d6*/ u_char nc_ia2;/*d7*/ u_char nc_ia3;/*d8*/ u_int32 nc_sbc; /* SCSI Byte Count (3 bytes only) *//*dc*/ u_int32 nc_csbc; /* Cumulative SCSI Byte Count */};/*-----------------------------------------------------------**** Utility macros for the script.****-----------------------------------------------------------*/#define REGJ(p,r) (offsetof(struct ncr_reg, p ## r))#define REG(r) REGJ (nc_, r)#ifndef TARGET_MODE#define TARGET_MODE 0#endiftypedef u_int32 ncrcmd;/*-----------------------------------------------------------**** SCSI phases****-----------------------------------------------------------*/#define SCR_DATA_OUT 0x00000000#define SCR_DATA_IN 0x01000000#define SCR_COMMAND 0x02000000#define SCR_STATUS 0x03000000#define SCR_ILG_OUT 0x04000000#define SCR_ILG_IN 0x05000000#define SCR_MSG_OUT 0x06000000#define SCR_MSG_IN 0x07000000/*-----------------------------------------------------------**** Data transfer via SCSI.****-----------------------------------------------------------**** MOVE_ABS (LEN)** <<start address>>**** MOVE_IND (LEN)** <<dnad_offset>>**** MOVE_TBL** <<dnad_offset>>****-----------------------------------------------------------*/#define SCR_MOVE_ABS(l) ((0x08000000 ^ (TARGET_MODE << 1ul)) | (l))#define SCR_MOVE_IND(l) ((0x28000000 ^ (TARGET_MODE << 1ul)) | (l))#define SCR_MOVE_TBL (0x18000000 ^ (TARGET_MODE << 1ul))struct scr_tblmove { u_int32 size; u_int32 addr;};/*-----------------------------------------------------------**** Selection****-----------------------------------------------------------**** SEL_ABS | SCR_ID (0..7) [ | REL_JMP]** <<alternate_address>>**** SEL_TBL | << dnad_offset>> [ | REL_JMP]** <<alternate_address>>****-----------------------------------------------------------*/#define SCR_SEL_ABS 0x40000000#define SCR_SEL_ABS_ATN 0x41000000#define SCR_SEL_TBL 0x42000000#define SCR_SEL_TBL_ATN 0x43000000struct scr_tblsel { u_char sel_0; u_char sel_sxfer; u_char sel_id; u_char sel_scntl3;};#define SCR_JMP_REL 0x04000000#define SCR_ID(id) (((u_int32)(id)) << 16)/*-----------------------------------------------------------**** Waiting for Disconnect or Reselect****-----------------------------------------------------------**** WAIT_DISC** dummy: <<alternate_address>>**** WAIT_RESEL** <<alternate_address>>****-----------------------------------------------------------*/#define SCR_WAIT_DISC 0x48000000#define SCR_WAIT_RESEL 0x50000000/*-----------------------------------------------------------**** Bit Set / Reset****-----------------------------------------------------------**** SET (flags {|.. })**** CLR (flags {|.. })****-----------------------------------------------------------*/#define SCR_SET(f) (0x58000000 | (f))#define SCR_CLR(f) (0x60000000 | (f))#define SCR_CARRY 0x00000400#define SCR_TRG 0x00000200#define SCR_ACK 0x00000040#define SCR_ATN 0x00000008/*-----------------------------------------------------------**** Memory to memory move****-----------------------------------------------------------**** COPY (bytecount)** << source_address >>** << destination_address >>**** SCR_COPY sets the NO FLUSH option by default.** SCR_COPY_F does not set this option.**** For chips which do not support this option,** ncr_copy_and_bind() will remove this bit.**-----------------------------------------------------------*/#define SCR_NO_FLUSH 0x01000000#define SCR_COPY(n) (0xc0000000 | SCR_NO_FLUSH | (n))#define SCR_COPY_F(n) (0xc0000000 | (n))/*-----------------------------------------------------------**** Register move and binary operations****-----------------------------------------------------------**** SFBR_REG (reg, op, data) reg = SFBR op data** << 0 >>**** REG_SFBR (reg, op, data) SFBR = reg op data** << 0 >>**** REG_REG (reg, op, data) reg = reg op data** << 0 >>****-----------------------------------------------------------** On 810A, 860, 825A, 875, 895 and 896 chips the content ** of SFBR register can be used as data (SCR_SFBR_DATA).** The 896 has additionnal IO registers starting at ** offset 0x80. Bit 7 of register offset is stored in ** bit 7 of the SCRIPTS instruction first DWORD.**-----------------------------------------------------------*/#define SCR_REG_OFS(ofs) ((((ofs) & 0x7f) << 16ul) + ((ofs) & 0x80)) #define SCR_SFBR_REG(reg,op,data) \ (0x68000000 | (SCR_REG_OFS(REG(reg))) | (op) | (((data)&0xff)<<8ul))#define SCR_REG_SFBR(reg,op,data) \ (0x70000000 | (SCR_REG_OFS(REG(reg))) | (op) | (((data)&0xff)<<8ul))#define SCR_REG_REG(reg,op,data) \ (0x78000000 | (SCR_REG_OFS(REG(reg))) | (op) | (((data)&0xff)<<8ul))#define SCR_LOAD 0x00000000#define SCR_SHL 0x01000000#define SCR_OR 0x02000000#define SCR_XOR 0x03000000#define SCR_AND 0x04000000#define SCR_SHR 0x05000000#define SCR_ADD 0x06000000#define SCR_ADDC 0x07000000#define SCR_SFBR_DATA (0x00800000>>8ul) /* Use SFBR as data *//*-----------------------------------------------------------**** FROM_REG (reg) SFBR = reg** << 0 >>**** TO_REG (reg) reg = SFBR** << 0 >>**** LOAD_REG (reg, data) reg = <data>** << 0 >>**** LOAD_SFBR(data) SFBR = <data>** << 0 >>****-----------------------------------------------------------*/#define SCR_FROM_REG(reg) \ SCR_REG_SFBR(reg,SCR_OR,0)#define SCR_TO_REG(reg) \ SCR_SFBR_REG(reg,SCR_OR,0)#define SCR_LOAD_REG(reg,data) \ SCR_REG_REG(reg,SCR_LOAD,data)#define SCR_LOAD_SFBR(data) \ (SCR_REG_SFBR (gpreg, SCR_LOAD, data))/*-----------------------------------------------------------**** LOAD from memory to register.** STORE from register to memory.**** Only supported by 810A, 860, 825A, 875, 895 and 896.****-----------------------------------------------------------**** LOAD_ABS (LEN)** <<start address>>**** LOAD_REL (LEN) (DSA relative)** <<dsa_offset>>****-----------------------------------------------------------*/#define SCR_REG_OFS2(ofs) (((ofs) & 0xff) << 16ul)#define SCR_NO_FLUSH2 0x02000000#define SCR_DSA_REL2 0x10000000#define SCR_LOAD_R(reg, how, n) \ (0xe1000000 | how | (SCR_REG_OFS2(REG(reg))) | (n))#define SCR_STORE_R(reg, how, n) \ (0xe0000000 | how | (SCR_REG_OFS2(REG(reg))) | (n))#define SCR_LOAD_ABS(reg, n) SCR_LOAD_R(reg, SCR_NO_FLUSH2, n)#define SCR_LOAD_REL(reg, n) SCR_LOAD_R(reg, SCR_NO_FLUSH2|SCR_DSA_REL2, n)#define SCR_LOAD_ABS_F(reg, n) SCR_LOAD_R(reg, 0, n)#define SCR_LOAD_REL_F(reg, n) SCR_LOAD_R(reg, SCR_DSA_REL2, n)#define SCR_STORE_ABS(reg, n) SCR_STORE_R(reg, SCR_NO_FLUSH2, n)#define SCR_STORE_REL(reg, n) SCR_STORE_R(reg, SCR_NO_FLUSH2|SCR_DSA_REL2,n)#define SCR_STORE_ABS_F(reg, n) SCR_STORE_R(reg, 0, n)#define SCR_STORE_REL_F(reg, n) SCR_STORE_R(reg, SCR_DSA_REL2, n)/*-----------------------------------------------------------**** Waiting for Disconnect or Reselect****-----------------------------------------------------------**** JUMP [ | IFTRUE/IFFALSE ( ... ) ]** <<address>>**** JUMPR [ | IFTRUE/IFFALSE ( ... ) ]** <<distance>>**** CALL [ | IFTRUE/IFFALSE ( ... ) ]** <<address>>**** CALLR [ | IFTRUE/IFFALSE ( ... ) ]** <<distance>>**** RETURN [ | IFTRUE/IFFALSE ( ... ) ]** <<dummy>>**** INT [ | IFTRUE/IFFALSE ( ... ) ]** <<ident>>**** INT_FLY [ | IFTRUE/IFFALSE ( ... ) ]** <<ident>>**** Conditions:** WHEN (phase)** IF (phase)** CARRY** DATA (data, mask)****-----------------------------------------------------------*/#define SCR_NO_OP 0x80000000#define SCR_JUMP 0x80080000#define SCR_JUMP64 0x80480000#define SCR_JUMPR 0x80880000#define SCR_CALL 0x88080000#define SCR_CALLR 0x88880000#define SCR_RETURN 0x90080000#define SCR_INT 0x98080000#define SCR_INT_FLY 0x98180000#define IFFALSE(arg) (0x00080000 | (arg))#define IFTRUE(arg) (0x00000000 | (arg))#define WHEN(phase) (0x00030000 | (phase))#define IF(phase) (0x00020000 | (phase))#define DATA(D) (0x00040000 | ((D) & 0xff))#define MASK(D,M) (0x00040000 | (((M ^ 0xff) & 0xff) << 8ul)|((D) & 0xff))#define CARRYSET (0x00200000)/*-----------------------------------------------------------**** SCSI constants.****-----------------------------------------------------------*//*** Messages*/#define M_COMPLETE (0x00)#define M_EXTENDED (0x01)#define M_SAVE_DP (0x02)#define M_RESTORE_DP (0x03)#define M_DISCONNECT (0x04)#define M_ID_ERROR (0x05)#define M_ABORT (0x06)#define M_REJECT (0x07)#define M_NOOP (0x08)#define M_PARITY (0x09)#define M_LCOMPLETE (0x0a)#define M_FCOMPLETE (0x0b)#define M_RESET (0x0c)#define M_ABORT_TAG (0x0d)#define M_CLEAR_QUEUE (0x0e)#define M_INIT_REC (0x0f)#define M_REL_REC (0x10)#define M_TERMINATE (0x11)#define M_SIMPLE_TAG (0x20)#define M_HEAD_TAG (0x21)#define M_ORDERED_TAG (0x22)#define M_IGN_RESIDUE (0x23)#define M_IDENTIFY (0x80)#define M_X_MODIFY_DP (0x00)#define M_X_SYNC_REQ (0x01)#define M_X_WIDE_REQ (0x03)/*** Status*/#define S_GOOD (0x00)#define S_CHECK_COND (0x02)#define S_COND_MET (0x04)#define S_BUSY (0x08)#define S_INT (0x10)#define S_INT_COND_MET (0x14)#define S_CONFLICT (0x18)#define S_TERMINATED (0x20)#define S_QUEUE_FULL (0x28)#define S_ILLEGAL (0xff)#define S_SENSE (0x80)/* * End of ncrreg from FreeBSD */#endif /* !defined HOSTS_C */#endif /* defined SYM53C8XX_DEFS_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -