cnic_if.h 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334
  1. /* cnic_if.h: Broadcom CNIC core network driver.
  2. *
  3. * Copyright (c) 2006-2011 Broadcom Corporation
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation.
  8. *
  9. */
  10. #ifndef CNIC_IF_H
  11. #define CNIC_IF_H
  12. #define CNIC_MODULE_VERSION "2.2.14"
  13. #define CNIC_MODULE_RELDATE "Mar 30, 2011"
  14. #define CNIC_ULP_RDMA 0
  15. #define CNIC_ULP_ISCSI 1
  16. #define CNIC_ULP_FCOE 2
  17. #define CNIC_ULP_L4 3
  18. #define MAX_CNIC_ULP_TYPE_EXT 3
  19. #define MAX_CNIC_ULP_TYPE 4
  20. struct kwqe {
  21. u32 kwqe_op_flag;
  22. #define KWQE_QID_SHIFT 8
  23. #define KWQE_OPCODE_MASK 0x00ff0000
  24. #define KWQE_OPCODE_SHIFT 16
  25. #define KWQE_OPCODE(x) ((x & KWQE_OPCODE_MASK) >> KWQE_OPCODE_SHIFT)
  26. #define KWQE_LAYER_MASK 0x70000000
  27. #define KWQE_LAYER_SHIFT 28
  28. #define KWQE_FLAGS_LAYER_MASK_L2 (2<<28)
  29. #define KWQE_FLAGS_LAYER_MASK_L3 (3<<28)
  30. #define KWQE_FLAGS_LAYER_MASK_L4 (4<<28)
  31. #define KWQE_FLAGS_LAYER_MASK_L5_RDMA (5<<28)
  32. #define KWQE_FLAGS_LAYER_MASK_L5_ISCSI (6<<28)
  33. #define KWQE_FLAGS_LAYER_MASK_L5_FCOE (7<<28)
  34. u32 kwqe_info0;
  35. u32 kwqe_info1;
  36. u32 kwqe_info2;
  37. u32 kwqe_info3;
  38. u32 kwqe_info4;
  39. u32 kwqe_info5;
  40. u32 kwqe_info6;
  41. };
  42. struct kwqe_16 {
  43. u32 kwqe_info0;
  44. u32 kwqe_info1;
  45. u32 kwqe_info2;
  46. u32 kwqe_info3;
  47. };
  48. struct kcqe {
  49. u32 kcqe_info0;
  50. u32 kcqe_info1;
  51. u32 kcqe_info2;
  52. u32 kcqe_info3;
  53. u32 kcqe_info4;
  54. u32 kcqe_info5;
  55. u32 kcqe_info6;
  56. u32 kcqe_op_flag;
  57. #define KCQE_RAMROD_COMPLETION (0x1<<27) /* Everest */
  58. #define KCQE_FLAGS_LAYER_MASK (0x7<<28)
  59. #define KCQE_FLAGS_LAYER_MASK_MISC (0<<28)
  60. #define KCQE_FLAGS_LAYER_MASK_L2 (2<<28)
  61. #define KCQE_FLAGS_LAYER_MASK_L3 (3<<28)
  62. #define KCQE_FLAGS_LAYER_MASK_L4 (4<<28)
  63. #define KCQE_FLAGS_LAYER_MASK_L5_RDMA (5<<28)
  64. #define KCQE_FLAGS_LAYER_MASK_L5_ISCSI (6<<28)
  65. #define KCQE_FLAGS_LAYER_MASK_L5_FCOE (7<<28)
  66. #define KCQE_FLAGS_NEXT (1<<31)
  67. #define KCQE_FLAGS_OPCODE_MASK (0xff<<16)
  68. #define KCQE_FLAGS_OPCODE_SHIFT (16)
  69. #define KCQE_OPCODE(op) \
  70. (((op) & KCQE_FLAGS_OPCODE_MASK) >> KCQE_FLAGS_OPCODE_SHIFT)
  71. };
  72. #define MAX_CNIC_CTL_DATA 64
  73. #define MAX_DRV_CTL_DATA 64
  74. #define CNIC_CTL_STOP_CMD 1
  75. #define CNIC_CTL_START_CMD 2
  76. #define CNIC_CTL_COMPLETION_CMD 3
  77. #define CNIC_CTL_STOP_ISCSI_CMD 4
  78. #define DRV_CTL_IO_WR_CMD 0x101
  79. #define DRV_CTL_IO_RD_CMD 0x102
  80. #define DRV_CTL_CTX_WR_CMD 0x103
  81. #define DRV_CTL_CTXTBL_WR_CMD 0x104
  82. #define DRV_CTL_RET_L5_SPQ_CREDIT_CMD 0x105
  83. #define DRV_CTL_START_L2_CMD 0x106
  84. #define DRV_CTL_STOP_L2_CMD 0x107
  85. #define DRV_CTL_RET_L2_SPQ_CREDIT_CMD 0x10c
  86. #define DRV_CTL_ISCSI_STOPPED_CMD 0x10d
  87. struct cnic_ctl_completion {
  88. u32 cid;
  89. };
  90. struct cnic_ctl_info {
  91. int cmd;
  92. union {
  93. struct cnic_ctl_completion comp;
  94. char bytes[MAX_CNIC_CTL_DATA];
  95. } data;
  96. };
  97. struct drv_ctl_spq_credit {
  98. u32 credit_count;
  99. };
  100. struct drv_ctl_io {
  101. u32 cid_addr;
  102. u32 offset;
  103. u32 data;
  104. dma_addr_t dma_addr;
  105. };
  106. struct drv_ctl_l2_ring {
  107. u32 client_id;
  108. u32 cid;
  109. };
  110. struct drv_ctl_info {
  111. int cmd;
  112. union {
  113. struct drv_ctl_spq_credit credit;
  114. struct drv_ctl_io io;
  115. struct drv_ctl_l2_ring ring;
  116. char bytes[MAX_DRV_CTL_DATA];
  117. } data;
  118. };
  119. struct cnic_ops {
  120. struct module *cnic_owner;
  121. /* Calls to these functions are protected by RCU. When
  122. * unregistering, we wait for any calls to complete before
  123. * continuing.
  124. */
  125. int (*cnic_handler)(void *, void *);
  126. int (*cnic_ctl)(void *, struct cnic_ctl_info *);
  127. };
  128. #define MAX_CNIC_VEC 8
  129. struct cnic_irq {
  130. unsigned int vector;
  131. void *status_blk;
  132. u32 status_blk_num;
  133. u32 status_blk_num2;
  134. u32 irq_flags;
  135. #define CNIC_IRQ_FL_MSIX 0x00000001
  136. };
  137. struct cnic_eth_dev {
  138. struct module *drv_owner;
  139. u32 drv_state;
  140. #define CNIC_DRV_STATE_REGD 0x00000001
  141. #define CNIC_DRV_STATE_USING_MSIX 0x00000002
  142. #define CNIC_DRV_STATE_NO_ISCSI_OOO 0x00000004
  143. #define CNIC_DRV_STATE_NO_ISCSI 0x00000008
  144. #define CNIC_DRV_STATE_NO_FCOE 0x00000010
  145. u32 chip_id;
  146. u32 max_kwqe_pending;
  147. struct pci_dev *pdev;
  148. void __iomem *io_base;
  149. void __iomem *io_base2;
  150. void *iro_arr;
  151. u32 ctx_tbl_offset;
  152. u32 ctx_tbl_len;
  153. int ctx_blk_size;
  154. u32 starting_cid;
  155. u32 max_iscsi_conn;
  156. u32 max_fcoe_conn;
  157. u32 max_rdma_conn;
  158. u32 fcoe_init_cid;
  159. u16 iscsi_l2_client_id;
  160. u16 iscsi_l2_cid;
  161. u8 iscsi_mac[ETH_ALEN];
  162. int num_irq;
  163. struct cnic_irq irq_arr[MAX_CNIC_VEC];
  164. int (*drv_register_cnic)(struct net_device *,
  165. struct cnic_ops *, void *);
  166. int (*drv_unregister_cnic)(struct net_device *);
  167. int (*drv_submit_kwqes_32)(struct net_device *,
  168. struct kwqe *[], u32);
  169. int (*drv_submit_kwqes_16)(struct net_device *,
  170. struct kwqe_16 *[], u32);
  171. int (*drv_ctl)(struct net_device *, struct drv_ctl_info *);
  172. unsigned long reserved1[2];
  173. };
  174. struct cnic_sockaddr {
  175. union {
  176. struct sockaddr_in v4;
  177. struct sockaddr_in6 v6;
  178. } local;
  179. union {
  180. struct sockaddr_in v4;
  181. struct sockaddr_in6 v6;
  182. } remote;
  183. };
  184. struct cnic_sock {
  185. struct cnic_dev *dev;
  186. void *context;
  187. u32 src_ip[4];
  188. u32 dst_ip[4];
  189. u16 src_port;
  190. u16 dst_port;
  191. u16 vlan_id;
  192. unsigned char old_ha[6];
  193. unsigned char ha[6];
  194. u32 mtu;
  195. u32 cid;
  196. u32 l5_cid;
  197. u32 pg_cid;
  198. int ulp_type;
  199. u32 ka_timeout;
  200. u32 ka_interval;
  201. u8 ka_max_probe_count;
  202. u8 tos;
  203. u8 ttl;
  204. u8 snd_seq_scale;
  205. u32 rcv_buf;
  206. u32 snd_buf;
  207. u32 seed;
  208. unsigned long tcp_flags;
  209. #define SK_TCP_NO_DELAY_ACK 0x1
  210. #define SK_TCP_KEEP_ALIVE 0x2
  211. #define SK_TCP_NAGLE 0x4
  212. #define SK_TCP_TIMESTAMP 0x8
  213. #define SK_TCP_SACK 0x10
  214. #define SK_TCP_SEG_SCALING 0x20
  215. unsigned long flags;
  216. #define SK_F_INUSE 0
  217. #define SK_F_OFFLD_COMPLETE 1
  218. #define SK_F_OFFLD_SCHED 2
  219. #define SK_F_PG_OFFLD_COMPLETE 3
  220. #define SK_F_CONNECT_START 4
  221. #define SK_F_IPV6 5
  222. #define SK_F_CLOSING 7
  223. atomic_t ref_count;
  224. u32 state;
  225. struct kwqe kwqe1;
  226. struct kwqe kwqe2;
  227. struct kwqe kwqe3;
  228. };
  229. struct cnic_dev {
  230. struct net_device *netdev;
  231. struct pci_dev *pcidev;
  232. void __iomem *regview;
  233. struct list_head list;
  234. int (*register_device)(struct cnic_dev *dev, int ulp_type,
  235. void *ulp_ctx);
  236. int (*unregister_device)(struct cnic_dev *dev, int ulp_type);
  237. int (*submit_kwqes)(struct cnic_dev *dev, struct kwqe *wqes[],
  238. u32 num_wqes);
  239. int (*submit_kwqes_16)(struct cnic_dev *dev, struct kwqe_16 *wqes[],
  240. u32 num_wqes);
  241. int (*cm_create)(struct cnic_dev *, int, u32, u32, struct cnic_sock **,
  242. void *);
  243. int (*cm_destroy)(struct cnic_sock *);
  244. int (*cm_connect)(struct cnic_sock *, struct cnic_sockaddr *);
  245. int (*cm_abort)(struct cnic_sock *);
  246. int (*cm_close)(struct cnic_sock *);
  247. struct cnic_dev *(*cm_select_dev)(struct sockaddr_in *, int ulp_type);
  248. int (*iscsi_nl_msg_recv)(struct cnic_dev *dev, u32 msg_type,
  249. char *data, u16 data_size);
  250. unsigned long flags;
  251. #define CNIC_F_CNIC_UP 1
  252. #define CNIC_F_BNX2_CLASS 3
  253. #define CNIC_F_BNX2X_CLASS 4
  254. atomic_t ref_count;
  255. u8 mac_addr[6];
  256. int max_iscsi_conn;
  257. int max_fcoe_conn;
  258. int max_rdma_conn;
  259. void *cnic_priv;
  260. };
  261. #define CNIC_WR(dev, off, val) writel(val, dev->regview + off)
  262. #define CNIC_WR16(dev, off, val) writew(val, dev->regview + off)
  263. #define CNIC_WR8(dev, off, val) writeb(val, dev->regview + off)
  264. #define CNIC_RD(dev, off) readl(dev->regview + off)
  265. #define CNIC_RD16(dev, off) readw(dev->regview + off)
  266. struct cnic_ulp_ops {
  267. /* Calls to these functions are protected by RCU. When
  268. * unregistering, we wait for any calls to complete before
  269. * continuing.
  270. */
  271. void (*cnic_init)(struct cnic_dev *dev);
  272. void (*cnic_exit)(struct cnic_dev *dev);
  273. void (*cnic_start)(void *ulp_ctx);
  274. void (*cnic_stop)(void *ulp_ctx);
  275. void (*indicate_kcqes)(void *ulp_ctx, struct kcqe *cqes[],
  276. u32 num_cqes);
  277. void (*indicate_netevent)(void *ulp_ctx, unsigned long event);
  278. void (*cm_connect_complete)(struct cnic_sock *);
  279. void (*cm_close_complete)(struct cnic_sock *);
  280. void (*cm_abort_complete)(struct cnic_sock *);
  281. void (*cm_remote_close)(struct cnic_sock *);
  282. void (*cm_remote_abort)(struct cnic_sock *);
  283. int (*iscsi_nl_send_msg)(void *ulp_ctx, u32 msg_type,
  284. char *data, u16 data_size);
  285. struct module *owner;
  286. atomic_t ref_count;
  287. };
  288. extern int cnic_register_driver(int ulp_type, struct cnic_ulp_ops *ulp_ops);
  289. extern int cnic_unregister_driver(int ulp_type);
  290. extern struct cnic_eth_dev *bnx2_cnic_probe(struct net_device *dev);
  291. extern struct cnic_eth_dev *bnx2x_cnic_probe(struct net_device *dev);
  292. #endif