1 #ifndef _SUNVNETCOMMON_H
2 #define _SUNVNETCOMMON_H
4 #include <linux/interrupt.h>
6 /* length of time (or less) we expect pending descriptors to be marked
7 * as VIO_DESC_DONE and skbs ready to be freed
9 #define VNET_CLEAN_TIMEOUT ((HZ / 100) + 1)
11 #define VNET_MAXPACKET (65535ULL + ETH_HLEN + VLAN_HLEN)
12 #define VNET_TX_RING_SIZE 512
13 #define VNET_TX_WAKEUP_THRESH(dr) ((dr)->pending / 4)
15 #define VNET_MINTSO 2048 /* VIO protocol's minimum TSO len */
16 #define VNET_MAXTSO 65535 /* VIO protocol's maximum TSO len */
18 /* VNET packets are sent in buffers with the first 6 bytes skipped
19 * so that after the ethernet header the IPv4/IPv6 headers are aligned
22 #define VNET_PACKET_SKIP 6
24 #define VNET_MAXCOOKIES (VNET_MAXPACKET / PAGE_SIZE + 1)
26 #define VNET_MAX_TXQS 16
28 struct vnet_tx_entry
{
30 unsigned int ncookies
;
31 struct ldc_trans_cookie cookies
[VNET_MAXCOOKIES
];
36 /* Structure to describe a vnet-port or vsw-port in the MD.
37 * If the vsw bit is set, this structure represents a vswitch
38 * port, and the net_device can be found from ->dev. If the
39 * vsw bit is not set, the net_device is available from ->vp->dev.
40 * See the VNET_PORT_TO_NET_DEVICE macro below.
43 struct vio_driver_state vio
;
45 struct hlist_node hash
;
47 unsigned switch_port
:1;
53 struct net_device
*dev
;
55 struct vnet_tx_entry tx_bufs
[VNET_TX_RING_SIZE
];
57 struct list_head list
;
63 struct timer_list clean_timer
;
68 struct napi_struct napi
;
75 static inline struct vnet_port
*to_vnet_port(struct vio_driver_state
*vio
)
77 return container_of(vio
, struct vnet_port
, vio
);
80 #define VNET_PORT_HASH_SIZE 16
81 #define VNET_PORT_HASH_MASK (VNET_PORT_HASH_SIZE - 1)
83 static inline unsigned int vnet_hashfn(u8
*mac
)
85 unsigned int val
= mac
[4] ^ mac
[5];
87 return val
& (VNET_PORT_HASH_MASK
);
90 struct vnet_mcast_entry
{
94 struct vnet_mcast_entry
*next
;
98 /* Protects port_list and port_hash. */
101 struct net_device
*dev
;
105 struct list_head port_list
;
107 struct hlist_head port_hash
[VNET_PORT_HASH_SIZE
];
109 struct vnet_mcast_entry
*mcast_list
;
111 struct list_head list
;
117 /* Def used by common code to get the net_device from the proper location */
118 #define VNET_PORT_TO_NET_DEVICE(__port) \
119 ((__port)->vsw ? (__port)->dev : (__port)->vp->dev)
122 void sunvnet_clean_timer_expire_common(unsigned long port0
);
123 int sunvnet_open_common(struct net_device
*dev
);
124 int sunvnet_close_common(struct net_device
*dev
);
125 void sunvnet_set_rx_mode_common(struct net_device
*dev
, struct vnet
*vp
);
126 int sunvnet_set_mac_addr_common(struct net_device
*dev
, void *p
);
127 void sunvnet_tx_timeout_common(struct net_device
*dev
);
128 int sunvnet_change_mtu_common(struct net_device
*dev
, int new_mtu
);
129 int sunvnet_start_xmit_common(struct sk_buff
*skb
, struct net_device
*dev
,
130 struct vnet_port
*(*vnet_tx_port
)
131 (struct sk_buff
*, struct net_device
*));
132 #ifdef CONFIG_NET_POLL_CONTROLLER
133 void sunvnet_poll_controller_common(struct net_device
*dev
, struct vnet
*vp
);
135 void sunvnet_event_common(void *arg
, int event
);
136 int sunvnet_send_attr_common(struct vio_driver_state
*vio
);
137 int sunvnet_handle_attr_common(struct vio_driver_state
*vio
, void *arg
);
138 void sunvnet_handshake_complete_common(struct vio_driver_state
*vio
);
139 int sunvnet_poll_common(struct napi_struct
*napi
, int budget
);
140 void sunvnet_port_free_tx_bufs_common(struct vnet_port
*port
);
141 bool sunvnet_port_is_up_common(struct vnet_port
*vnet
);
142 void sunvnet_port_add_txq_common(struct vnet_port
*port
);
143 void sunvnet_port_rm_txq_common(struct vnet_port
*port
);
145 #endif /* _SUNVNETCOMMON_H */