cnic_if.h 8.8 KB

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