Loading...
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 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 | /* soc.h: Definitions for Sparc SUNW,soc Fibre Channel Sbus driver. * * Copyright (C) 1996,1997 Jakub Jelinek (jj@sunsite.mff.cuni.cz) */ #ifndef __SOC_H #define __SOC_H #include "fc.h" #include "fcp.h" #include "fcp_impl.h" /* Hardware structures and constants first {{{ */ struct soc_regs { volatile u32 cfg; /* Config Register */ volatile u32 sae; /* Slave Access Error Register */ volatile u32 cmd; /* Command & Status Register */ volatile u32 imask; /* Interrupt Mask Register */ }; /* Config Register */ #define SOC_CFG_EXT_RAM_BANK_MASK 0x07000000 #define SOC_CFG_EEPROM_BANK_MASK 0x00030000 #define SOC_CFG_BURST64_MASK 0x00000700 #define SOC_CFG_SBUS_PARITY_TEST 0x00000020 #define SOC_CFG_SBUS_PARITY_CHECK 0x00000010 #define SOC_CFG_SBUS_ENHANCED 0x00000008 #define SOC_CFG_BURST_MASK 0x00000007 /* Bursts */ #define SOC_CFG_BURST_4 0x00000000 #define SOC_CFG_BURST_16 0x00000004 #define SOC_CFG_BURST_32 0x00000005 #define SOC_CFG_BURST_64 0x00000006 /* Slave Access Error Register */ #define SOC_SAE_ALIGNMENT 0x00000004 #define SOC_SAE_UNSUPPORTED 0x00000002 #define SOC_SAE_PARITY 0x00000001 /* Command & Status Register */ #define SOC_CMD_RSP_QALL 0x000f0000 #define SOC_CMD_RSP_Q0 0x00010000 #define SOC_CMD_RSP_Q1 0x00020000 #define SOC_CMD_RSP_Q2 0x00040000 #define SOC_CMD_RSP_Q3 0x00080000 #define SOC_CMD_REQ_QALL 0x00000f00 #define SOC_CMD_REQ_Q0 0x00000100 #define SOC_CMD_REQ_Q1 0x00000200 #define SOC_CMD_REQ_Q2 0x00000400 #define SOC_CMD_REQ_Q3 0x00000800 #define SOC_CMD_SAE 0x00000080 #define SOC_CMD_INTR_PENDING 0x00000008 #define SOC_CMD_NON_QUEUED 0x00000004 #define SOC_CMD_IDLE 0x00000002 #define SOC_CMD_SOFT_RESET 0x00000001 /* Interrupt Mask Register */ #define SOC_IMASK_RSP_QALL 0x000f0000 #define SOC_IMASK_RSP_Q0 0x00010000 #define SOC_IMASK_RSP_Q1 0x00020000 #define SOC_IMASK_RSP_Q2 0x00040000 #define SOC_IMASK_RSP_Q3 0x00080000 #define SOC_IMASK_REQ_QALL 0x00000f00 #define SOC_IMASK_REQ_Q0 0x00000100 #define SOC_IMASK_REQ_Q1 0x00000200 #define SOC_IMASK_REQ_Q2 0x00000400 #define SOC_IMASK_REQ_Q3 0x00000800 #define SOC_IMASK_SAE 0x00000080 #define SOC_IMASK_NON_QUEUED 0x00000004 #define SOC_INTR(s, cmd) \ (((cmd & SOC_CMD_RSP_QALL) | ((~cmd) & SOC_CMD_REQ_QALL)) \ & s->imask) #define SOC_SETIMASK(s, i) \ (s)->imask = (i); (s)->regs->imask = (i) /* XRAM * * This is a 64KB register area. It accepts only halfword access. * That's why here are the following inline functions... */ typedef u16 *xram_p; /* Get 32bit number from XRAM */ static inline u32 xram_get_32 (xram_p x) { return (((u32)*x) << 16) | (x[1]); } /* Like the above, but when we don't care about the high 16 bits */ static inline u32 xram_get_32low (xram_p x) { return (u32)x[1]; } static inline u8 xram_get_8 (xram_p x) { if (((long)x) & 1) { x = (xram_p)((long)x - 1); return (u8)*x; } else return (u8)(*x >> 8); } static inline void xram_copy_from (void *p, xram_p x, int len) { for (len >>= 2; len > 0; len--, x += 2) { *((u32 *)p)++ = (((u32)(*x)) << 16) | (x[1]); } } static inline void xram_copy_to (xram_p x, void *p, int len) { register u32 tmp; for (len >>= 2; len > 0; len--, x += 2) { tmp = *((u32 *)p)++; *x = tmp >> 16; x[1] = tmp; } } static inline void xram_bzero (xram_p x, int len) { for (len >>= 1; len > 0; len--) *x++ = 0; } /* Circular Queue */ /* These two are in sizeof(u16) units */ #define SOC_CQ_REQ_OFFSET 0x100 #define SOC_CQ_RSP_OFFSET 0x110 typedef struct { u32 address; u8 in; u8 out; u8 last; u8 seqno; } soc_hw_cq; #define SOC_PORT_A 0x0000 /* From/To Port A */ #define SOC_PORT_B 0x0001 /* From/To Port A */ #define SOC_FC_HDR 0x0002 /* Contains FC Header */ #define SOC_NORSP 0x0004 /* Don't generate response nor interrupt */ #define SOC_NOINT 0x0008 /* Generate response but not interrupt */ #define SOC_XFERRDY 0x0010 /* Generate XFERRDY */ #define SOC_IGNOREPARAM 0x0020 /* Ignore PARAM field in the FC header */ #define SOC_COMPLETE 0x0040 /* Command completed */ #define SOC_UNSOLICITED 0x0080 /* For request this is the packet to establish unsolicited pools, */ /* for rsp this is unsolicited packet */ #define SOC_STATUS 0x0100 /* State change (on/off line) */ typedef struct { u32 token; u16 flags; u8 class; u8 segcnt; u32 bytecnt; } soc_hdr; typedef struct { u32 base; u32 count; } soc_data; #define SOC_CQTYPE_OUTBOUND 0x01 #define SOC_CQTYPE_INBOUND 0x02 #define SOC_CQTYPE_SIMPLE 0x03 #define SOC_CQTYPE_IO_WRITE 0x04 #define SOC_CQTYPE_IO_READ 0x05 #define SOC_CQTYPE_UNSOLICITED 0x06 #define SOC_CQTYPE_DIAG 0x07 #define SOC_CQTYPE_OFFLINE 0x08 #define SOC_CQTYPE_RESPONSE 0x10 #define SOC_CQTYPE_INLINE 0x20 #define SOC_CQFLAGS_CONT 0x01 #define SOC_CQFLAGS_FULL 0x02 #define SOC_CQFLAGS_BADHDR 0x04 #define SOC_CQFLAGS_BADPKT 0x08 typedef struct { soc_hdr shdr; soc_data data[3]; fc_hdr fchdr; u8 count; u8 type; u8 flags; u8 seqno; } soc_req; #define SOC_OK 0 #define SOC_P_RJT 2 #define SOC_F_RJT 3 #define SOC_P_BSY 4 #define SOC_F_BSY 5 #define SOC_ONLINE 0x10 #define SOC_OFFLINE 0x11 #define SOC_TIMEOUT 0x12 #define SOC_OVERRUN 0x13 #define SOC_UNKOWN_CQ_TYPE 0x20 #define SOC_BAD_SEG_CNT 0x21 #define SOC_MAX_XCHG_EXCEEDED 0x22 #define SOC_BAD_XID 0x23 #define SOC_XCHG_BUSY 0x24 #define SOC_BAD_POOL_ID 0x25 #define SOC_INSUFFICIENT_CQES 0x26 #define SOC_ALLOC_FAIL 0x27 #define SOC_BAD_SID 0x28 #define SOC_NO_SEG_INIT 0x29 typedef struct { soc_hdr shdr; u32 status; soc_data data; u8 xxx1[12]; fc_hdr fchdr; u8 count; u8 type; u8 flags; u8 seqno; } soc_rsp; /* }}} */ /* Now our software structures and constants we use to drive the beast {{{ */ #define SOC_CQ_REQ0_SIZE 4 #define SOC_CQ_REQ1_SIZE 64 #define SOC_CQ_RSP0_SIZE 8 #define SOC_CQ_RSP1_SIZE 4 #define SOC_SOLICITED_RSP_Q 0 #define SOC_UNSOLICITED_RSP_Q 1 struct soc; typedef struct { /* This must come first */ fc_channel fc; struct soc *s; u16 flags; u16 mask; } soc_port; typedef struct { soc_hw_cq *hw_cq; /* Related XRAM cq */ soc_req *pool; u8 in; u8 out; u8 last; u8 seqno; } soc_cq; struct soc { soc_port port[2]; /* Every SOC has one or two FC ports */ soc_cq req[2]; /* Request CQs */ soc_cq rsp[2]; /* Response CQs */ int soc_no; struct soc_regs *regs; xram_p xram; fc_wwn wwn; u32 imask; /* Our copy of regs->imask */ u32 cfg; /* Our copy of regs->cfg */ char serv_params[80]; struct soc *next; int curr_port; /* Which port will have priority to fcp_queue_empty */ }; /* }}} */ #endif /* !(__SOC_H) */ |