ibmveth.h 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. /**************************************************************************/
  2. /* */
  3. /* IBM eServer i/[Series Virtual Ethernet Device Driver */
  4. /* Copyright (C) 2003 IBM Corp. */
  5. /* Dave Larson (larson1@us.ibm.com) */
  6. /* Santiago Leon (santil@us.ibm.com) */
  7. /* */
  8. /* This program is free software; you can redistribute it and/or modify */
  9. /* it under the terms of the GNU General Public License as published by */
  10. /* the Free Software Foundation; either version 2 of the License, or */
  11. /* (at your option) any later version. */
  12. /* */
  13. /* This program is distributed in the hope that it will be useful, */
  14. /* but WITHOUT ANY WARRANTY; without even the implied warranty of */
  15. /* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
  16. /* GNU General Public License for more details. */
  17. /* */
  18. /* You should have received a copy of the GNU General Public License */
  19. /* along with this program; if not, write to the Free Software */
  20. /* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 */
  21. /* USA */
  22. /* */
  23. /**************************************************************************/
  24. #ifndef _IBMVETH_H
  25. #define _IBMVETH_H
  26. /* constants for H_MULTICAST_CTRL */
  27. #define IbmVethMcastReceptionModifyBit 0x80000UL
  28. #define IbmVethMcastReceptionEnableBit 0x20000UL
  29. #define IbmVethMcastFilterModifyBit 0x40000UL
  30. #define IbmVethMcastFilterEnableBit 0x10000UL
  31. #define IbmVethMcastEnableRecv (IbmVethMcastReceptionModifyBit | IbmVethMcastReceptionEnableBit)
  32. #define IbmVethMcastDisableRecv (IbmVethMcastReceptionModifyBit)
  33. #define IbmVethMcastEnableFiltering (IbmVethMcastFilterModifyBit | IbmVethMcastFilterEnableBit)
  34. #define IbmVethMcastDisableFiltering (IbmVethMcastFilterModifyBit)
  35. #define IbmVethMcastAddFilter 0x1UL
  36. #define IbmVethMcastRemoveFilter 0x2UL
  37. #define IbmVethMcastClearFilterTable 0x3UL
  38. #define IBMVETH_ILLAN_PADDED_PKT_CSUM 0x0000000000002000UL
  39. #define IBMVETH_ILLAN_TRUNK_PRI_MASK 0x0000000000000F00UL
  40. #define IBMVETH_ILLAN_IPV6_TCP_CSUM 0x0000000000000004UL
  41. #define IBMVETH_ILLAN_IPV4_TCP_CSUM 0x0000000000000002UL
  42. #define IBMVETH_ILLAN_ACTIVE_TRUNK 0x0000000000000001UL
  43. /* hcall macros */
  44. #define h_register_logical_lan(ua, buflst, rxq, fltlst, mac) \
  45. plpar_hcall_norets(H_REGISTER_LOGICAL_LAN, ua, buflst, rxq, fltlst, mac)
  46. #define h_free_logical_lan(ua) \
  47. plpar_hcall_norets(H_FREE_LOGICAL_LAN, ua)
  48. #define h_add_logical_lan_buffer(ua, buf) \
  49. plpar_hcall_norets(H_ADD_LOGICAL_LAN_BUFFER, ua, buf)
  50. static inline long h_send_logical_lan(unsigned long unit_address,
  51. unsigned long desc1, unsigned long desc2, unsigned long desc3,
  52. unsigned long desc4, unsigned long desc5, unsigned long desc6,
  53. unsigned long corellator_in, unsigned long *corellator_out)
  54. {
  55. long rc;
  56. unsigned long retbuf[PLPAR_HCALL9_BUFSIZE];
  57. rc = plpar_hcall9(H_SEND_LOGICAL_LAN, retbuf, unit_address, desc1,
  58. desc2, desc3, desc4, desc5, desc6, corellator_in);
  59. *corellator_out = retbuf[0];
  60. return rc;
  61. }
  62. static inline long h_illan_attributes(unsigned long unit_address,
  63. unsigned long reset_mask, unsigned long set_mask,
  64. unsigned long *ret_attributes)
  65. {
  66. long rc;
  67. unsigned long retbuf[PLPAR_HCALL_BUFSIZE];
  68. rc = plpar_hcall(H_ILLAN_ATTRIBUTES, retbuf, unit_address,
  69. reset_mask, set_mask);
  70. *ret_attributes = retbuf[0];
  71. return rc;
  72. }
  73. #define h_multicast_ctrl(ua, cmd, mac) \
  74. plpar_hcall_norets(H_MULTICAST_CTRL, ua, cmd, mac)
  75. #define h_change_logical_lan_mac(ua, mac) \
  76. plpar_hcall_norets(H_CHANGE_LOGICAL_LAN_MAC, ua, mac)
  77. #define IbmVethNumBufferPools 5
  78. #define IBMVETH_IO_ENTITLEMENT_DEFAULT 4243456 /* MTU of 1500 needs 4.2Mb */
  79. #define IBMVETH_BUFF_OH 22 /* Overhead: 14 ethernet header + 8 opaque handle */
  80. #define IBMVETH_MAX_MTU 68
  81. #define IBMVETH_MAX_POOL_COUNT 4096
  82. #define IBMVETH_BUFF_LIST_SIZE 4096
  83. #define IBMVETH_FILT_LIST_SIZE 4096
  84. #define IBMVETH_MAX_BUF_SIZE (1024 * 128)
  85. static int pool_size[] = { 512, 1024 * 2, 1024 * 16, 1024 * 32, 1024 * 64 };
  86. static int pool_count[] = { 256, 768, 256, 256, 256 };
  87. static int pool_active[] = { 1, 1, 0, 0, 0};
  88. #define IBM_VETH_INVALID_MAP ((u16)0xffff)
  89. struct ibmveth_buff_pool {
  90. u32 size;
  91. u32 index;
  92. u32 buff_size;
  93. u32 threshold;
  94. atomic_t available;
  95. u32 consumer_index;
  96. u32 producer_index;
  97. u16 *free_map;
  98. dma_addr_t *dma_addr;
  99. struct sk_buff **skbuff;
  100. int active;
  101. struct kobject kobj;
  102. };
  103. struct ibmveth_rx_q {
  104. u64 index;
  105. u64 num_slots;
  106. u64 toggle;
  107. dma_addr_t queue_dma;
  108. u32 queue_len;
  109. struct ibmveth_rx_q_entry *queue_addr;
  110. };
  111. struct ibmveth_adapter {
  112. struct vio_dev *vdev;
  113. struct net_device *netdev;
  114. struct napi_struct napi;
  115. struct net_device_stats stats;
  116. unsigned int mcastFilterSize;
  117. unsigned long mac_addr;
  118. void * buffer_list_addr;
  119. void * filter_list_addr;
  120. dma_addr_t buffer_list_dma;
  121. dma_addr_t filter_list_dma;
  122. struct ibmveth_buff_pool rx_buff_pool[IbmVethNumBufferPools];
  123. struct ibmveth_rx_q rx_queue;
  124. int pool_config;
  125. int rx_csum;
  126. void *bounce_buffer;
  127. dma_addr_t bounce_buffer_dma;
  128. /* adapter specific stats */
  129. u64 replenish_task_cycles;
  130. u64 replenish_no_mem;
  131. u64 replenish_add_buff_failure;
  132. u64 replenish_add_buff_success;
  133. u64 rx_invalid_buffer;
  134. u64 rx_no_buffer;
  135. u64 tx_map_failed;
  136. u64 tx_send_failed;
  137. spinlock_t stats_lock;
  138. };
  139. struct ibmveth_buf_desc_fields {
  140. u32 flags_len;
  141. #define IBMVETH_BUF_VALID 0x80000000
  142. #define IBMVETH_BUF_TOGGLE 0x40000000
  143. #define IBMVETH_BUF_NO_CSUM 0x02000000
  144. #define IBMVETH_BUF_CSUM_GOOD 0x01000000
  145. #define IBMVETH_BUF_LEN_MASK 0x00FFFFFF
  146. u32 address;
  147. };
  148. union ibmveth_buf_desc {
  149. u64 desc;
  150. struct ibmveth_buf_desc_fields fields;
  151. };
  152. struct ibmveth_rx_q_entry {
  153. u32 flags_off;
  154. #define IBMVETH_RXQ_TOGGLE 0x80000000
  155. #define IBMVETH_RXQ_TOGGLE_SHIFT 31
  156. #define IBMVETH_RXQ_VALID 0x40000000
  157. #define IBMVETH_RXQ_NO_CSUM 0x02000000
  158. #define IBMVETH_RXQ_CSUM_GOOD 0x01000000
  159. #define IBMVETH_RXQ_OFF_MASK 0x0000FFFF
  160. u32 length;
  161. u64 correlator;
  162. };
  163. #endif /* _IBMVETH_H */