sunvnet_common.h 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. #ifndef _SUNVNETCOMMON_H
  2. #define _SUNVNETCOMMON_H
  3. #include <linux/interrupt.h>
  4. /* length of time (or less) we expect pending descriptors to be marked
  5. * as VIO_DESC_DONE and skbs ready to be freed
  6. */
  7. #define VNET_CLEAN_TIMEOUT ((HZ / 100) + 1)
  8. #define VNET_MAXPACKET (65535ULL + ETH_HLEN + VLAN_HLEN)
  9. #define VNET_TX_RING_SIZE 512
  10. #define VNET_TX_WAKEUP_THRESH(dr) ((dr)->pending / 4)
  11. #define VNET_MINTSO 2048 /* VIO protocol's minimum TSO len */
  12. #define VNET_MAXTSO 65535 /* VIO protocol's maximum TSO len */
  13. #define VNET_MAX_MTU 65535
  14. /* VNET packets are sent in buffers with the first 6 bytes skipped
  15. * so that after the ethernet header the IPv4/IPv6 headers are aligned
  16. * properly.
  17. */
  18. #define VNET_PACKET_SKIP 6
  19. #define VNET_MAXCOOKIES (VNET_MAXPACKET / PAGE_SIZE + 1)
  20. #define VNET_MAX_TXQS 16
  21. struct vnet_tx_entry {
  22. struct sk_buff *skb;
  23. unsigned int ncookies;
  24. struct ldc_trans_cookie cookies[VNET_MAXCOOKIES];
  25. };
  26. struct vnet;
  27. /* Structure to describe a vnet-port or vsw-port in the MD.
  28. * If the vsw bit is set, this structure represents a vswitch
  29. * port, and the net_device can be found from ->dev. If the
  30. * vsw bit is not set, the net_device is available from ->vp->dev.
  31. * See the VNET_PORT_TO_NET_DEVICE macro below.
  32. */
  33. struct vnet_port {
  34. struct vio_driver_state vio;
  35. struct hlist_node hash;
  36. u8 raddr[ETH_ALEN];
  37. unsigned switch_port:1;
  38. unsigned tso:1;
  39. unsigned vsw:1;
  40. unsigned __pad:13;
  41. struct vnet *vp;
  42. struct net_device *dev;
  43. struct vnet_tx_entry tx_bufs[VNET_TX_RING_SIZE];
  44. struct list_head list;
  45. u32 stop_rx_idx;
  46. bool stop_rx;
  47. bool start_cons;
  48. struct timer_list clean_timer;
  49. u64 rmtu;
  50. u16 tsolen;
  51. struct napi_struct napi;
  52. u32 napi_stop_idx;
  53. bool napi_resume;
  54. int rx_event;
  55. u16 q_index;
  56. };
  57. static inline struct vnet_port *to_vnet_port(struct vio_driver_state *vio)
  58. {
  59. return container_of(vio, struct vnet_port, vio);
  60. }
  61. #define VNET_PORT_HASH_SIZE 16
  62. #define VNET_PORT_HASH_MASK (VNET_PORT_HASH_SIZE - 1)
  63. static inline unsigned int vnet_hashfn(u8 *mac)
  64. {
  65. unsigned int val = mac[4] ^ mac[5];
  66. return val & (VNET_PORT_HASH_MASK);
  67. }
  68. struct vnet_mcast_entry {
  69. u8 addr[ETH_ALEN];
  70. u8 sent;
  71. u8 hit;
  72. struct vnet_mcast_entry *next;
  73. };
  74. struct vnet {
  75. /* Protects port_list and port_hash. */
  76. spinlock_t lock;
  77. struct net_device *dev;
  78. u32 msg_enable;
  79. struct list_head port_list;
  80. struct hlist_head port_hash[VNET_PORT_HASH_SIZE];
  81. struct vnet_mcast_entry *mcast_list;
  82. struct list_head list;
  83. u64 local_mac;
  84. int nports;
  85. };
  86. /* Def used by common code to get the net_device from the proper location */
  87. #define VNET_PORT_TO_NET_DEVICE(__port) \
  88. ((__port)->vsw ? (__port)->dev : (__port)->vp->dev)
  89. /* Common funcs */
  90. void sunvnet_clean_timer_expire_common(unsigned long port0);
  91. int sunvnet_open_common(struct net_device *dev);
  92. int sunvnet_close_common(struct net_device *dev);
  93. void sunvnet_set_rx_mode_common(struct net_device *dev, struct vnet *vp);
  94. int sunvnet_set_mac_addr_common(struct net_device *dev, void *p);
  95. void sunvnet_tx_timeout_common(struct net_device *dev);
  96. int sunvnet_start_xmit_common(struct sk_buff *skb, struct net_device *dev,
  97. struct vnet_port *(*vnet_tx_port)
  98. (struct sk_buff *, struct net_device *));
  99. #ifdef CONFIG_NET_POLL_CONTROLLER
  100. void sunvnet_poll_controller_common(struct net_device *dev, struct vnet *vp);
  101. #endif
  102. void sunvnet_event_common(void *arg, int event);
  103. int sunvnet_send_attr_common(struct vio_driver_state *vio);
  104. int sunvnet_handle_attr_common(struct vio_driver_state *vio, void *arg);
  105. void sunvnet_handshake_complete_common(struct vio_driver_state *vio);
  106. int sunvnet_poll_common(struct napi_struct *napi, int budget);
  107. void sunvnet_port_free_tx_bufs_common(struct vnet_port *port);
  108. bool sunvnet_port_is_up_common(struct vnet_port *vnet);
  109. void sunvnet_port_add_txq_common(struct vnet_port *port);
  110. void sunvnet_port_rm_txq_common(struct vnet_port *port);
  111. #endif /* _SUNVNETCOMMON_H */