ibmveth.h 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. /*
  2. * IBM Power Virtual Ethernet Device Driver
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 2 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, see <http://www.gnu.org/licenses/>.
  16. *
  17. * Copyright (C) IBM Corporation, 2003, 2010
  18. *
  19. * Authors: Dave Larson <larson1@us.ibm.com>
  20. * Santiago Leon <santil@linux.vnet.ibm.com>
  21. * Brian King <brking@linux.vnet.ibm.com>
  22. * Robert Jennings <rcj@linux.vnet.ibm.com>
  23. * Anton Blanchard <anton@au.ibm.com>
  24. */
  25. #ifndef _IBMVETH_H
  26. #define _IBMVETH_H
  27. /* constants for H_MULTICAST_CTRL */
  28. #define IbmVethMcastReceptionModifyBit 0x80000UL
  29. #define IbmVethMcastReceptionEnableBit 0x20000UL
  30. #define IbmVethMcastFilterModifyBit 0x40000UL
  31. #define IbmVethMcastFilterEnableBit 0x10000UL
  32. #define IbmVethMcastEnableRecv (IbmVethMcastReceptionModifyBit | IbmVethMcastReceptionEnableBit)
  33. #define IbmVethMcastDisableRecv (IbmVethMcastReceptionModifyBit)
  34. #define IbmVethMcastEnableFiltering (IbmVethMcastFilterModifyBit | IbmVethMcastFilterEnableBit)
  35. #define IbmVethMcastDisableFiltering (IbmVethMcastFilterModifyBit)
  36. #define IbmVethMcastAddFilter 0x1UL
  37. #define IbmVethMcastRemoveFilter 0x2UL
  38. #define IbmVethMcastClearFilterTable 0x3UL
  39. #define IBMVETH_ILLAN_LRG_SR_ENABLED 0x0000000000010000UL
  40. #define IBMVETH_ILLAN_LRG_SND_SUPPORT 0x0000000000008000UL
  41. #define IBMVETH_ILLAN_PADDED_PKT_CSUM 0x0000000000002000UL
  42. #define IBMVETH_ILLAN_TRUNK_PRI_MASK 0x0000000000000F00UL
  43. #define IBMVETH_ILLAN_IPV6_TCP_CSUM 0x0000000000000004UL
  44. #define IBMVETH_ILLAN_IPV4_TCP_CSUM 0x0000000000000002UL
  45. #define IBMVETH_ILLAN_ACTIVE_TRUNK 0x0000000000000001UL
  46. /* hcall macros */
  47. #define h_register_logical_lan(ua, buflst, rxq, fltlst, mac) \
  48. plpar_hcall_norets(H_REGISTER_LOGICAL_LAN, ua, buflst, rxq, fltlst, mac)
  49. #define h_free_logical_lan(ua) \
  50. plpar_hcall_norets(H_FREE_LOGICAL_LAN, ua)
  51. #define h_add_logical_lan_buffer(ua, buf) \
  52. plpar_hcall_norets(H_ADD_LOGICAL_LAN_BUFFER, ua, buf)
  53. static inline long h_send_logical_lan(unsigned long unit_address,
  54. unsigned long desc1, unsigned long desc2, unsigned long desc3,
  55. unsigned long desc4, unsigned long desc5, unsigned long desc6,
  56. unsigned long corellator_in, unsigned long *corellator_out,
  57. unsigned long mss, unsigned long large_send_support)
  58. {
  59. long rc;
  60. unsigned long retbuf[PLPAR_HCALL9_BUFSIZE];
  61. if (large_send_support)
  62. rc = plpar_hcall9(H_SEND_LOGICAL_LAN, retbuf, unit_address,
  63. desc1, desc2, desc3, desc4, desc5, desc6,
  64. corellator_in, mss);
  65. else
  66. rc = plpar_hcall9(H_SEND_LOGICAL_LAN, retbuf, unit_address,
  67. desc1, desc2, desc3, desc4, desc5, desc6,
  68. corellator_in);
  69. *corellator_out = retbuf[0];
  70. return rc;
  71. }
  72. static inline long h_illan_attributes(unsigned long unit_address,
  73. unsigned long reset_mask, unsigned long set_mask,
  74. unsigned long *ret_attributes)
  75. {
  76. long rc;
  77. unsigned long retbuf[PLPAR_HCALL_BUFSIZE];
  78. rc = plpar_hcall(H_ILLAN_ATTRIBUTES, retbuf, unit_address,
  79. reset_mask, set_mask);
  80. *ret_attributes = retbuf[0];
  81. return rc;
  82. }
  83. #define h_multicast_ctrl(ua, cmd, mac) \
  84. plpar_hcall_norets(H_MULTICAST_CTRL, ua, cmd, mac)
  85. #define h_change_logical_lan_mac(ua, mac) \
  86. plpar_hcall_norets(H_CHANGE_LOGICAL_LAN_MAC, ua, mac)
  87. #define IBMVETH_NUM_BUFF_POOLS 5
  88. #define IBMVETH_IO_ENTITLEMENT_DEFAULT 4243456 /* MTU of 1500 needs 4.2Mb */
  89. #define IBMVETH_BUFF_OH 22 /* Overhead: 14 ethernet header + 8 opaque handle */
  90. #define IBMVETH_MIN_MTU 68
  91. #define IBMVETH_MAX_POOL_COUNT 4096
  92. #define IBMVETH_BUFF_LIST_SIZE 4096
  93. #define IBMVETH_FILT_LIST_SIZE 4096
  94. #define IBMVETH_MAX_BUF_SIZE (1024 * 128)
  95. static int pool_size[] = { 512, 1024 * 2, 1024 * 16, 1024 * 32, 1024 * 64 };
  96. static int pool_count[] = { 256, 512, 256, 256, 256 };
  97. static int pool_count_cmo[] = { 256, 512, 256, 256, 64 };
  98. static int pool_active[] = { 1, 1, 0, 0, 1};
  99. #define IBM_VETH_INVALID_MAP ((u16)0xffff)
  100. struct ibmveth_buff_pool {
  101. u32 size;
  102. u32 index;
  103. u32 buff_size;
  104. u32 threshold;
  105. atomic_t available;
  106. u32 consumer_index;
  107. u32 producer_index;
  108. u16 *free_map;
  109. dma_addr_t *dma_addr;
  110. struct sk_buff **skbuff;
  111. int active;
  112. struct kobject kobj;
  113. };
  114. struct ibmveth_rx_q {
  115. u64 index;
  116. u64 num_slots;
  117. u64 toggle;
  118. dma_addr_t queue_dma;
  119. u32 queue_len;
  120. struct ibmveth_rx_q_entry *queue_addr;
  121. };
  122. struct ibmveth_adapter {
  123. struct vio_dev *vdev;
  124. struct net_device *netdev;
  125. struct napi_struct napi;
  126. struct net_device_stats stats;
  127. unsigned int mcastFilterSize;
  128. void * buffer_list_addr;
  129. void * filter_list_addr;
  130. dma_addr_t buffer_list_dma;
  131. dma_addr_t filter_list_dma;
  132. struct ibmveth_buff_pool rx_buff_pool[IBMVETH_NUM_BUFF_POOLS];
  133. struct ibmveth_rx_q rx_queue;
  134. int pool_config;
  135. int rx_csum;
  136. int large_send;
  137. void *bounce_buffer;
  138. dma_addr_t bounce_buffer_dma;
  139. u64 fw_ipv6_csum_support;
  140. u64 fw_ipv4_csum_support;
  141. u64 fw_large_send_support;
  142. /* adapter specific stats */
  143. u64 replenish_task_cycles;
  144. u64 replenish_no_mem;
  145. u64 replenish_add_buff_failure;
  146. u64 replenish_add_buff_success;
  147. u64 rx_invalid_buffer;
  148. u64 rx_no_buffer;
  149. u64 tx_map_failed;
  150. u64 tx_send_failed;
  151. u64 tx_large_packets;
  152. u64 rx_large_packets;
  153. };
  154. /*
  155. * We pass struct ibmveth_buf_desc_fields to the hypervisor in registers,
  156. * so we don't need to byteswap the two elements. However since we use
  157. * a union (ibmveth_buf_desc) to convert from the struct to a u64 we
  158. * do end up with endian specific ordering of the elements and that
  159. * needs correcting.
  160. */
  161. struct ibmveth_buf_desc_fields {
  162. #ifdef __BIG_ENDIAN
  163. u32 flags_len;
  164. u32 address;
  165. #else
  166. u32 address;
  167. u32 flags_len;
  168. #endif
  169. #define IBMVETH_BUF_VALID 0x80000000
  170. #define IBMVETH_BUF_TOGGLE 0x40000000
  171. #define IBMVETH_BUF_LRG_SND 0x04000000
  172. #define IBMVETH_BUF_NO_CSUM 0x02000000
  173. #define IBMVETH_BUF_CSUM_GOOD 0x01000000
  174. #define IBMVETH_BUF_LEN_MASK 0x00FFFFFF
  175. };
  176. union ibmveth_buf_desc {
  177. u64 desc;
  178. struct ibmveth_buf_desc_fields fields;
  179. };
  180. struct ibmveth_rx_q_entry {
  181. __be32 flags_off;
  182. #define IBMVETH_RXQ_TOGGLE 0x80000000
  183. #define IBMVETH_RXQ_TOGGLE_SHIFT 31
  184. #define IBMVETH_RXQ_VALID 0x40000000
  185. #define IBMVETH_RXQ_LRG_PKT 0x04000000
  186. #define IBMVETH_RXQ_NO_CSUM 0x02000000
  187. #define IBMVETH_RXQ_CSUM_GOOD 0x01000000
  188. #define IBMVETH_RXQ_OFF_MASK 0x0000FFFF
  189. __be32 length;
  190. /* correlator is only used by the OS, no need to byte swap */
  191. u64 correlator;
  192. };
  193. #endif /* _IBMVETH_H */