ibmveth.h 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  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. #define IbmVethMaxSendFrags 6
  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. /* hcall numbers */
  40. #define H_VIO_SIGNAL 0x104
  41. #define H_REGISTER_LOGICAL_LAN 0x114
  42. #define H_FREE_LOGICAL_LAN 0x118
  43. #define H_ADD_LOGICAL_LAN_BUFFER 0x11C
  44. #define H_SEND_LOGICAL_LAN 0x120
  45. #define H_MULTICAST_CTRL 0x130
  46. #define H_CHANGE_LOGICAL_LAN_MAC 0x14C
  47. #define H_FREE_LOGICAL_LAN_BUFFER 0x1D4
  48. /* hcall macros */
  49. #define h_register_logical_lan(ua, buflst, rxq, fltlst, mac) \
  50. plpar_hcall_norets(H_REGISTER_LOGICAL_LAN, ua, buflst, rxq, fltlst, mac)
  51. #define h_free_logical_lan(ua) \
  52. plpar_hcall_norets(H_FREE_LOGICAL_LAN, ua)
  53. #define h_add_logical_lan_buffer(ua, buf) \
  54. plpar_hcall_norets(H_ADD_LOGICAL_LAN_BUFFER, ua, buf)
  55. #define h_send_logical_lan(ua, buf1, buf2, buf3, buf4, buf5, buf6, correlator) \
  56. plpar_hcall_8arg_2ret(H_SEND_LOGICAL_LAN, ua, buf1, buf2, buf3, buf4, buf5, buf6, correlator, &correlator)
  57. #define h_multicast_ctrl(ua, cmd, mac) \
  58. plpar_hcall_norets(H_MULTICAST_CTRL, ua, cmd, mac)
  59. #define h_change_logical_lan_mac(ua, mac) \
  60. plpar_hcall_norets(H_CHANGE_LOGICAL_LAN_MAC, ua, mac)
  61. #define h_free_logical_lan_buffer(ua, bufsize) \
  62. plpar_hcall_norets(H_FREE_LOGICAL_LAN_BUFFER, ua, bufsize)
  63. #define IbmVethNumBufferPools 5
  64. #define IBMVETH_BUFF_OH 22 /* Overhead: 14 ethernet header + 8 opaque handle */
  65. /* pool_size should be sorted */
  66. static int pool_size[] = { 512, 1024 * 2, 1024 * 16, 1024 * 32, 1024 * 64 };
  67. static int pool_count[] = { 256, 768, 256, 256, 256 };
  68. #define IBM_VETH_INVALID_MAP ((u16)0xffff)
  69. struct ibmveth_buff_pool {
  70. u32 size;
  71. u32 index;
  72. u32 buff_size;
  73. u32 threshold;
  74. atomic_t available;
  75. u32 consumer_index;
  76. u32 producer_index;
  77. u16 *free_map;
  78. dma_addr_t *dma_addr;
  79. struct sk_buff **skbuff;
  80. int active;
  81. };
  82. struct ibmveth_rx_q {
  83. u64 index;
  84. u64 num_slots;
  85. u64 toggle;
  86. dma_addr_t queue_dma;
  87. u32 queue_len;
  88. struct ibmveth_rx_q_entry *queue_addr;
  89. };
  90. struct ibmveth_adapter {
  91. struct vio_dev *vdev;
  92. struct net_device *netdev;
  93. struct net_device_stats stats;
  94. unsigned int mcastFilterSize;
  95. unsigned long mac_addr;
  96. unsigned long liobn;
  97. void * buffer_list_addr;
  98. void * filter_list_addr;
  99. dma_addr_t buffer_list_dma;
  100. dma_addr_t filter_list_dma;
  101. struct ibmveth_buff_pool rx_buff_pool[IbmVethNumBufferPools];
  102. struct ibmveth_rx_q rx_queue;
  103. /* adapter specific stats */
  104. u64 replenish_task_cycles;
  105. u64 replenish_no_mem;
  106. u64 replenish_add_buff_failure;
  107. u64 replenish_add_buff_success;
  108. u64 rx_invalid_buffer;
  109. u64 rx_no_buffer;
  110. u64 tx_multidesc_send;
  111. u64 tx_linearized;
  112. u64 tx_linearize_failed;
  113. u64 tx_map_failed;
  114. u64 tx_send_failed;
  115. spinlock_t stats_lock;
  116. };
  117. struct ibmveth_buf_desc_fields {
  118. u32 valid : 1;
  119. u32 toggle : 1;
  120. u32 reserved : 6;
  121. u32 length : 24;
  122. u32 address;
  123. };
  124. union ibmveth_buf_desc {
  125. u64 desc;
  126. struct ibmveth_buf_desc_fields fields;
  127. };
  128. struct ibmveth_rx_q_entry {
  129. u16 toggle : 1;
  130. u16 valid : 1;
  131. u16 reserved : 14;
  132. u16 offset;
  133. u32 length;
  134. u64 correlator;
  135. };
  136. #endif /* _IBMVETH_H */