soc.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:7k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* soc.h: Definitions for Sparc SUNW,soc Fibre Channel Sbus driver.
  2.  *
  3.  * Copyright (C) 1996,1997 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
  4.  */
  5. #ifndef __SOC_H
  6. #define __SOC_H
  7. #include "fc.h"
  8. #include "fcp.h"
  9. #include "fcp_impl.h"
  10. /* Hardware register offsets and constants first {{{ */
  11. #define CFG 0x00UL /* Config Register */
  12. #define SAE 0x04UL /* Slave Access Error Register */
  13. #define CMD 0x08UL /* Command and Status Register */
  14. #define IMASK 0x0cUL /* Interrupt Mask Register */
  15. /* Config Register */
  16. #define SOC_CFG_EXT_RAM_BANK_MASK 0x07000000
  17. #define SOC_CFG_EEPROM_BANK_MASK 0x00030000
  18. #define SOC_CFG_BURST64_MASK 0x00000700
  19. #define SOC_CFG_SBUS_PARITY_TEST 0x00000020
  20. #define SOC_CFG_SBUS_PARITY_CHECK 0x00000010
  21. #define SOC_CFG_SBUS_ENHANCED 0x00000008
  22. #define SOC_CFG_BURST_MASK 0x00000007
  23. /* Bursts */
  24. #define SOC_CFG_BURST_4 0x00000000
  25. #define SOC_CFG_BURST_16 0x00000004
  26. #define SOC_CFG_BURST_32 0x00000005
  27. #define SOC_CFG_BURST_64 0x00000006
  28. /* Slave Access Error Register */
  29. #define SOC_SAE_ALIGNMENT 0x00000004
  30. #define SOC_SAE_UNSUPPORTED 0x00000002
  31. #define SOC_SAE_PARITY 0x00000001
  32. /* Command & Status Register */
  33. #define SOC_CMD_RSP_QALL 0x000f0000
  34. #define SOC_CMD_RSP_Q0 0x00010000
  35. #define SOC_CMD_RSP_Q1 0x00020000
  36. #define SOC_CMD_RSP_Q2 0x00040000
  37. #define SOC_CMD_RSP_Q3 0x00080000
  38. #define SOC_CMD_REQ_QALL 0x00000f00
  39. #define SOC_CMD_REQ_Q0 0x00000100
  40. #define SOC_CMD_REQ_Q1 0x00000200
  41. #define SOC_CMD_REQ_Q2 0x00000400
  42. #define SOC_CMD_REQ_Q3 0x00000800
  43. #define SOC_CMD_SAE 0x00000080
  44. #define SOC_CMD_INTR_PENDING 0x00000008
  45. #define SOC_CMD_NON_QUEUED 0x00000004
  46. #define SOC_CMD_IDLE 0x00000002
  47. #define SOC_CMD_SOFT_RESET 0x00000001
  48. /* Interrupt Mask Register */
  49. #define SOC_IMASK_RSP_QALL 0x000f0000
  50. #define SOC_IMASK_RSP_Q0 0x00010000
  51. #define SOC_IMASK_RSP_Q1 0x00020000
  52. #define SOC_IMASK_RSP_Q2 0x00040000
  53. #define SOC_IMASK_RSP_Q3 0x00080000
  54. #define SOC_IMASK_REQ_QALL 0x00000f00
  55. #define SOC_IMASK_REQ_Q0 0x00000100
  56. #define SOC_IMASK_REQ_Q1 0x00000200
  57. #define SOC_IMASK_REQ_Q2 0x00000400
  58. #define SOC_IMASK_REQ_Q3 0x00000800
  59. #define SOC_IMASK_SAE 0x00000080
  60. #define SOC_IMASK_NON_QUEUED 0x00000004
  61. #define SOC_INTR(s, cmd) 
  62. (((cmd & SOC_CMD_RSP_QALL) | ((~cmd) & SOC_CMD_REQ_QALL)) 
  63.  & s->imask)
  64.  
  65. #define SOC_SETIMASK(s, i) 
  66. do { (s)->imask = (i); 
  67. sbus_writel((i), (s)->regs + IMASK); 
  68. } while(0)
  69. /* XRAM
  70.  *
  71.  * This is a 64KB register area. It accepts only halfword access.
  72.  * That's why here are the following inline functions...
  73.  */
  74.  
  75. typedef unsigned long xram_p;
  76. /* Get 32bit number from XRAM */
  77. static inline u32 xram_get_32 (xram_p x)
  78. {
  79. return ((sbus_readw(x + 0x00UL) << 16) |
  80. (sbus_readw(x + 0x02UL)));
  81. }
  82. /* Like the above, but when we don't care about the high 16 bits */
  83. static inline u32 xram_get_32low (xram_p x)
  84. {
  85. return (u32) sbus_readw(x + 0x02UL);
  86. }
  87. static inline u16 xram_get_16 (xram_p x)
  88. {
  89. return sbus_readw(x);
  90. }
  91. static inline u8 xram_get_8 (xram_p x)
  92. {
  93. if (x & (xram_p)0x1) {
  94. x = x - 1;
  95. return (u8) sbus_readw(x);
  96. } else {
  97. return (u8) (sbus_readw(x) >> 8);
  98. }
  99. }
  100. static inline void xram_copy_from (void *p, xram_p x, int len)
  101. {
  102. for (len >>= 2; len > 0; len--, x += sizeof(u32)) {
  103. u32 val;
  104. val = ((sbus_readw(x + 0x00UL) << 16) |
  105.        (sbus_readw(x + 0x02UL)));
  106. *((u32 *)p)++ = val;
  107. }
  108. }
  109. static inline void xram_copy_to (xram_p x, void *p, int len)
  110. {
  111. for (len >>= 2; len > 0; len--, x += sizeof(u32)) {
  112. u32 tmp = *((u32 *)p)++;
  113. sbus_writew(tmp >> 16, x + 0x00UL);
  114. sbus_writew(tmp, x + 0x02UL);
  115. }
  116. }
  117. static inline void xram_bzero (xram_p x, int len)
  118. {
  119. for (len >>= 1; len > 0; len--, x += sizeof(u16))
  120. sbus_writew(0, x);
  121. }
  122. /* Circular Queue */
  123. #define SOC_CQ_REQ_OFFSET (0x100 * sizeof(u16))
  124. #define SOC_CQ_RSP_OFFSET (0x110 * sizeof(u16))
  125. typedef struct {
  126. u32 address;
  127. u8 in;
  128. u8 out;
  129. u8 last;
  130. u8 seqno;
  131. } soc_hw_cq;
  132. #define SOC_PORT_A 0x0000 /* From/To Port A */
  133. #define SOC_PORT_B 0x0001 /* From/To Port A */
  134. #define SOC_FC_HDR 0x0002  /* Contains FC Header */
  135. #define SOC_NORSP 0x0004  /* Don't generate response nor interrupt */
  136. #define SOC_NOINT 0x0008  /* Generate response but not interrupt */
  137. #define SOC_XFERRDY 0x0010  /* Generate XFERRDY */
  138. #define SOC_IGNOREPARAM 0x0020 /* Ignore PARAM field in the FC header */
  139. #define SOC_COMPLETE 0x0040  /* Command completed */
  140. #define SOC_UNSOLICITED 0x0080 /* For request this is the packet to establish unsolicited pools, */
  141. /* for rsp this is unsolicited packet */
  142. #define SOC_STATUS 0x0100 /* State change (on/off line) */
  143. typedef struct {
  144. u32 token;
  145. u16 flags;
  146. u8 class;
  147. u8 segcnt;
  148. u32 bytecnt;
  149. } soc_hdr;
  150. typedef struct {
  151. u32 base;
  152. u32 count;
  153. } soc_data;
  154. #define SOC_CQTYPE_OUTBOUND 0x01
  155. #define SOC_CQTYPE_INBOUND 0x02
  156. #define SOC_CQTYPE_SIMPLE 0x03
  157. #define SOC_CQTYPE_IO_WRITE 0x04
  158. #define SOC_CQTYPE_IO_READ 0x05
  159. #define SOC_CQTYPE_UNSOLICITED 0x06
  160. #define SOC_CQTYPE_DIAG 0x07
  161. #define SOC_CQTYPE_OFFLINE 0x08
  162. #define SOC_CQTYPE_RESPONSE 0x10
  163. #define SOC_CQTYPE_INLINE 0x20
  164. #define SOC_CQFLAGS_CONT 0x01
  165. #define SOC_CQFLAGS_FULL 0x02
  166. #define SOC_CQFLAGS_BADHDR 0x04
  167. #define SOC_CQFLAGS_BADPKT 0x08
  168. typedef struct {
  169. soc_hdr shdr;
  170. soc_data data[3];
  171. fc_hdr fchdr;
  172. u8 count;
  173. u8 type;
  174. u8 flags;
  175. u8 seqno;
  176. } soc_req;
  177. #define SOC_OK 0
  178. #define SOC_P_RJT 2
  179. #define SOC_F_RJT 3
  180. #define SOC_P_BSY 4
  181. #define SOC_F_BSY 5
  182. #define SOC_ONLINE 0x10
  183. #define SOC_OFFLINE 0x11
  184. #define SOC_TIMEOUT 0x12
  185. #define SOC_OVERRUN 0x13
  186. #define SOC_UNKOWN_CQ_TYPE 0x20
  187. #define SOC_BAD_SEG_CNT 0x21
  188. #define SOC_MAX_XCHG_EXCEEDED 0x22
  189. #define SOC_BAD_XID 0x23
  190. #define SOC_XCHG_BUSY 0x24
  191. #define SOC_BAD_POOL_ID 0x25
  192. #define SOC_INSUFFICIENT_CQES 0x26
  193. #define SOC_ALLOC_FAIL 0x27
  194. #define SOC_BAD_SID 0x28
  195. #define SOC_NO_SEG_INIT 0x29
  196. typedef struct {
  197. soc_hdr shdr;
  198. u32 status;
  199. soc_data data;
  200. u8 xxx1[12];
  201. fc_hdr fchdr;
  202. u8 count;
  203. u8 type;
  204. u8 flags;
  205. u8 seqno;
  206. } soc_rsp;
  207. /* }}} */
  208. /* Now our software structures and constants we use to drive the beast {{{ */
  209. #define SOC_CQ_REQ0_SIZE 4
  210. #define SOC_CQ_REQ1_SIZE 64
  211. #define SOC_CQ_RSP0_SIZE 8
  212. #define SOC_CQ_RSP1_SIZE 4
  213. #define SOC_SOLICITED_RSP_Q 0
  214. #define SOC_UNSOLICITED_RSP_Q 1
  215. struct soc;
  216. typedef struct {
  217. /* This must come first */
  218. fc_channel fc;
  219. struct soc *s;
  220. u16 flags;
  221. u16 mask;
  222. } soc_port; 
  223. typedef struct {
  224. soc_hw_cq *hw_cq; /* Related XRAM cq */
  225. soc_req *pool;
  226. u8 in;
  227. u8 out;
  228. u8 last;
  229. u8 seqno;
  230. } soc_cq;
  231. struct soc {
  232. soc_port port[2]; /* Every SOC has one or two FC ports */
  233. soc_cq req[2]; /* Request CQs */
  234. soc_cq rsp[2]; /* Response CQs */
  235. int soc_no;
  236. unsigned long regs;
  237. xram_p xram;
  238. fc_wwn wwn;
  239. u32 imask; /* Our copy of regs->imask */
  240. u32 cfg; /* Our copy of regs->cfg */
  241. char serv_params[80];
  242. struct soc *next;
  243. int curr_port; /* Which port will have priority to fcp_queue_empty */
  244. soc_req *req_cpu;
  245. u32 req_dvma;
  246. };
  247. /* }}} */
  248. #endif /* !(__SOC_H) */