1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
|
/* $NetBSD: sireg.h,v 1.2 1995/09/03 22:21:29 pk Exp $ */
/*
* Register map for the Sun3 SCSI Interface (si)
* The first part of this register map is an NCR5380
* SCSI Bus Interface Controller (SBIC). The rest is a
* DMA controller and custom logic in one of two flavors,
* one for the OBIO interface (3/50,3/60) and one for the
* VME interface (3/160,3/260,etc.), where some registers
* are implemented only on one or the other, some on both.
*/
/*
* Some of these registers apply to only one interface and some
* apply to both. The registers which apply to the Sun3/50 onboard
* version only are udc_rdata and udc_raddr. The registers which
* apply to the Sun3 vme version only are dma_addr, dma_count, bpr,
* iv_am, and bcrh. Thus, the sbc registers, fifo_data, bcr, and csr
* apply to both interfaces.
* One other feature of the vme interface: a write to the dma count
* register also causes a write to the fifo byte count register and
* vis versa.
*/
struct si_regs {
sci_regmap_t sci; /* See ncr5380.h */
/* DMA controller registers */
union {
u_short _Dma_addrh; /* dma address (VME only) */
u_short _Dma_addrl; /* (high word, low word) */
u_int _Dma_addr; /* dma address (OBIO) */
} _si_u1;
#define dma_addrh _si_u1._Dma_addrh
#define dma_addrl _si_u1._Dma_addrl
#define dma_addr _si_u1._Dma_addr
union {
u_short _Dma_counth; /* dma count (VME only) */
u_short _Dma_countl; /* (high word, low word) */
u_int _Dma_count; /* dma count (OBIO) */
} _si_u2;
#define dma_counth _si_u2._Dma_counth
#define dma_countl _si_u2._Dma_countl
#define dma_count _si_u2._Dma_count
union {
u_short _Udc_data; /* Am9516 data reg (OBIO si) */
u_short _Udc_addr; /* Am9516 addr reg (OBIO si) */
u_int _Sw_bcr; /* non-existent sw bcr */
} _si_u3;
#define udc_data _si_u3._Udc_data
#define udc_addr _si_u3._Udc_addr
#define sw_bcr _si_u3._Sw_bcr
union {
u_short _Fifo_data; /* fifo data register */
u_short _Fifo_count; /* fifo count register */
u_int _Sw_csr; /* sw control/status */
} _si_u4;
#define fifo_data _si_u4._Fifo_data
#define fifo_count _si_u4._Fifo_count
#define sw_csr _si_u4._Sw_csr
union {
u_short _Si_csr; /* si control/status */
u_short _Bprh; /* VME byte pack high */
u_int _Bpr; /* sw byte pack */
} _si_u5;
#define si_csr _si_u5._Si_csr
#define bprh _si_u5._Bprh
#define bpr _si_u5._Bpr
/* The rest of these are on the VME interface only: */
u_short bprl; /* VME byte pack low */
u_short iv_am; /* bits 0-7: intr vector */
/* bits 8-13: addr modifier */
/* bits 14-15: unused */
u_short bcrh; /* high portion of bcr */
};
/* possible values for the address modifier, sun3 vme version only */
#define VME_SUPV_DATA_24 0x3d00
/* XXX - must massage dvma addresses for Sun3/50 hardware (?) */
#define DVMA_OFFSET (int)(DVMA - (char *)KERNELBASE)
/*
* Status Register.
* Note:
* (r) indicates bit is read only.
* (rw) indicates bit is read or write.
* (v) vme host adaptor interface only.
* (o) sun3/50 onboard host adaptor interface only.
* (b) both vme and sun3/50 host adaptor interfaces.
*/
#define SI_CSR_DMA_ACTIVE 0x8000 /* (r,o) dma transfer active */
#define SI_CSR_DMA_CONFLICT 0x4000 /* (r,b) reg accessed while dmaing */
#define SI_CSR_DMA_BUS_ERR 0x2000 /* (r,b) bus error during dma */
#define SI_CSR_ID 0x1000 /* (r,b) 0 for 3/50, 1 for SCSI-3, */
/* 0 if SCSI-3 unmodified */
#define SI_CSR_FIFO_FULL 0x0800 /* (r,b) fifo full */
#define SI_CSR_FIFO_EMPTY 0x0400 /* (r,b) fifo empty */
#define SI_CSR_SBC_IP 0x0200 /* (r,b) sbc interrupt pending */
#define SI_CSR_DMA_IP 0x0100 /* (r,b) dma interrupt pending */
#define SI_CSR_LOB 0x00c0 /* (r,v) number of leftover bytes */
#define SI_CSR_LOB_THREE 0x00c0 /* (r,v) three leftover bytes */
#define SI_CSR_LOB_TWO 0x0080 /* (r,v) two leftover bytes */
#define SI_CSR_LOB_ONE 0x0040 /* (r,v) one leftover byte */
#define SI_CSR_BPCON 0x0020 /* (rw,v) byte packing control */
/* dma is in 0=longwords, 1=words */
#define SI_CSR_DMA_EN 0x0010 /* (rw,v) dma enable */
#define SI_CSR_SEND 0x0008 /* (rw,b) dma dir, 1=to device */
#define SI_CSR_INTR_EN 0x0004 /* (rw,b) interrupts enable */
#define SI_CSR_FIFO_RES 0x0002 /* (rw,b) inits fifo, 0=reset */
#define SI_CSR_SCSI_RES 0x0001 /* (rw,b) reset sbc and udc, 0=reset */
#define SCSI_PHASE_DATA_OUT 0x0
#define SCSI_PHASE_DATA_IN 0x1
#define SCSI_PHASE_CMD 0x2
#define SCSI_PHASE_STATUS 0x3
#define SCSI_PHASE_UNSPEC1 0x4
#define SCSI_PHASE_UNSPEC2 0x5
#define SCSI_PHASE_MESSAGE_OUT 0x6
#define SCSI_PHASE_MESSAGE_IN 0x7
/*#define SCSI_PHASE(x) ((x)&0x7)*/
/* These should be fixed up. */
#define SCSI_RET_SUCCESS 0
#define SCSI_RET_RETRY 1
#define SCSI_RET_DEVICE_DOWN 2
#define SCSI_RET_COMMAND_FAIL 3
#define SCSI_RET_NEED_RESET 4
|