2 * Copyright (c) 2004, 2005 Topspin Communications. All rights reserved.
3 * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
4 * Copyright (c) 2004 Voltaire, Inc. All rights reserved.
6 * This software is available to you under a choice of one of two
7 * licenses. You may choose to be licensed under the terms of the GNU
8 * General Public License (GPL) Version 2, available from the file
9 * COPYING in the main directory of this source tree, or the
10 * OpenIB.org BSD license below:
12 * Redistribution and use in source and binary forms, with or
13 * without modification, are permitted provided that the following
16 * - Redistributions of source code must retain the above
17 * copyright notice, this list of conditions and the following
20 * - Redistributions in binary form must reproduce the above
21 * copyright notice, this list of conditions and the following
22 * disclaimer in the documentation and/or other materials
23 * provided with the distribution.
25 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
26 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
28 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
29 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
30 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
31 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
34 * $Id: ipoib.h 1358 2004-12-17 22:00:11Z roland $
40 #include <linux/list.h>
41 #include <linux/skbuff.h>
42 #include <linux/netdevice.h>
43 #include <linux/workqueue.h>
44 #include <linux/pci.h>
45 #include <linux/config.h>
46 #include <linux/kref.h>
47 #include <linux/if_infiniband.h>
49 #include <net/neighbour.h>
51 #include <asm/atomic.h>
52 #include <asm/semaphore.h>
54 #include <rdma/ib_verbs.h>
55 #include <rdma/ib_pack.h>
56 #include <rdma/ib_sa.h>
61 IPOIB_PACKET_SIZE = 2048,
62 IPOIB_BUF_SIZE = IPOIB_PACKET_SIZE + IB_GRH_BYTES,
66 IPOIB_RX_RING_SIZE = 128,
67 IPOIB_TX_RING_SIZE = 64,
71 IPOIB_MAX_PATH_REC_QUEUE = 3,
72 IPOIB_MAX_MCAST_QUEUE = 3,
74 IPOIB_FLAG_OPER_UP = 0,
75 IPOIB_FLAG_ADMIN_UP = 1,
76 IPOIB_PKEY_ASSIGNED = 2,
78 IPOIB_FLAG_SUBINTERFACE = 4,
80 IPOIB_STOP_REAPER = 6,
82 IPOIB_MAX_BACKOFF_SECONDS = 16,
84 IPOIB_MCAST_FLAG_FOUND = 0, /* used in set_multicast_list */
85 IPOIB_MCAST_FLAG_SENDONLY = 1,
86 IPOIB_MCAST_FLAG_BUSY = 2, /* joining or already joined */
87 IPOIB_MCAST_FLAG_ATTACHED = 3,
97 struct ipoib_pseudoheader {
98 u8 hwaddr[INFINIBAND_ALEN];
103 struct ipoib_rx_buf {
108 struct ipoib_tx_buf {
110 DECLARE_PCI_UNMAP_ADDR(mapping)
114 * Device private locking: tx_lock protects members used in TX fast
115 * path (and we use LLTX so upper layers don't do extra locking).
116 * lock protects everything else. lock nests inside of tx_lock (ie
117 * tx_lock must be acquired first if needed).
119 struct ipoib_dev_priv {
122 struct net_device *dev;
126 struct semaphore mcast_mutex;
127 struct semaphore vlan_mutex;
129 struct rb_root path_tree;
130 struct list_head path_list;
132 struct ipoib_mcast *broadcast;
133 struct list_head multicast_list;
134 struct rb_root multicast_tree;
136 struct work_struct pkey_task;
137 struct work_struct mcast_task;
138 struct work_struct flush_task;
139 struct work_struct restart_task;
140 struct work_struct ah_reap_task;
142 struct ib_device *ca;
151 union ib_gid local_gid;
155 unsigned int admin_mtu;
156 unsigned int mcast_mtu;
158 struct ipoib_rx_buf *rx_ring;
161 struct ipoib_tx_buf *tx_ring;
164 struct ib_sge tx_sge;
165 struct ib_send_wr tx_wr;
167 struct ib_wc ibwc[IPOIB_NUM_WC];
169 struct list_head dead_ahs;
171 struct ib_event_handler event_handler;
173 struct net_device_stats stats;
175 struct net_device *parent;
176 struct list_head child_intfs;
177 struct list_head list;
179 #ifdef CONFIG_INFINIBAND_IPOIB_DEBUG
180 struct list_head fs_list;
181 struct dentry *mcg_dentry;
186 struct net_device *dev;
188 struct list_head list;
194 struct net_device *dev;
195 struct ib_sa_path_rec pathrec;
197 struct sk_buff_head queue;
199 struct list_head neigh_list;
202 struct ib_sa_query *query;
203 struct completion done;
205 struct rb_node rb_node;
206 struct list_head list;
211 struct sk_buff_head queue;
213 struct neighbour *neighbour;
215 struct list_head list;
218 static inline struct ipoib_neigh **to_ipoib_neigh(struct neighbour *neigh)
220 return (struct ipoib_neigh **) (neigh->ha + 24 -
221 (offsetof(struct neighbour, ha) & 4));
224 extern struct workqueue_struct *ipoib_workqueue;
228 void ipoib_ib_completion(struct ib_cq *cq, void *dev_ptr);
230 struct ipoib_ah *ipoib_create_ah(struct net_device *dev,
231 struct ib_pd *pd, struct ib_ah_attr *attr);
232 void ipoib_free_ah(struct kref *kref);
233 static inline void ipoib_put_ah(struct ipoib_ah *ah)
235 kref_put(&ah->ref, ipoib_free_ah);
238 int ipoib_add_pkey_attr(struct net_device *dev);
240 void ipoib_send(struct net_device *dev, struct sk_buff *skb,
241 struct ipoib_ah *address, u32 qpn);
242 void ipoib_reap_ah(void *dev_ptr);
244 void ipoib_flush_paths(struct net_device *dev);
245 struct ipoib_dev_priv *ipoib_intf_alloc(const char *format);
247 int ipoib_ib_dev_init(struct net_device *dev, struct ib_device *ca, int port);
248 void ipoib_ib_dev_flush(void *dev);
249 void ipoib_ib_dev_cleanup(struct net_device *dev);
251 int ipoib_ib_dev_open(struct net_device *dev);
252 int ipoib_ib_dev_up(struct net_device *dev);
253 int ipoib_ib_dev_down(struct net_device *dev);
254 int ipoib_ib_dev_stop(struct net_device *dev);
256 int ipoib_dev_init(struct net_device *dev, struct ib_device *ca, int port);
257 void ipoib_dev_cleanup(struct net_device *dev);
259 void ipoib_mcast_join_task(void *dev_ptr);
260 void ipoib_mcast_send(struct net_device *dev, union ib_gid *mgid,
261 struct sk_buff *skb);
263 void ipoib_mcast_restart_task(void *dev_ptr);
264 int ipoib_mcast_start_thread(struct net_device *dev);
265 int ipoib_mcast_stop_thread(struct net_device *dev, int flush);
267 void ipoib_mcast_dev_down(struct net_device *dev);
268 void ipoib_mcast_dev_flush(struct net_device *dev);
270 struct ipoib_mcast_iter *ipoib_mcast_iter_init(struct net_device *dev);
271 void ipoib_mcast_iter_free(struct ipoib_mcast_iter *iter);
272 int ipoib_mcast_iter_next(struct ipoib_mcast_iter *iter);
273 void ipoib_mcast_iter_read(struct ipoib_mcast_iter *iter,
275 unsigned long *created,
276 unsigned int *queuelen,
277 unsigned int *complete,
278 unsigned int *send_only);
280 int ipoib_mcast_attach(struct net_device *dev, u16 mlid,
282 int ipoib_mcast_detach(struct net_device *dev, u16 mlid,
285 int ipoib_init_qp(struct net_device *dev);
286 int ipoib_transport_dev_init(struct net_device *dev, struct ib_device *ca);
287 void ipoib_transport_dev_cleanup(struct net_device *dev);
289 void ipoib_event(struct ib_event_handler *handler,
290 struct ib_event *record);
292 int ipoib_vlan_add(struct net_device *pdev, unsigned short pkey);
293 int ipoib_vlan_delete(struct net_device *pdev, unsigned short pkey);
295 void ipoib_pkey_poll(void *dev);
296 int ipoib_pkey_dev_delay_open(struct net_device *dev);
298 #ifdef CONFIG_INFINIBAND_IPOIB_DEBUG
299 int ipoib_create_debug_file(struct net_device *dev);
300 void ipoib_delete_debug_file(struct net_device *dev);
301 int ipoib_register_debugfs(void);
302 void ipoib_unregister_debugfs(void);
304 static inline int ipoib_create_debug_file(struct net_device *dev) { return 0; }
305 static inline void ipoib_delete_debug_file(struct net_device *dev) { }
306 static inline int ipoib_register_debugfs(void) { return 0; }
307 static inline void ipoib_unregister_debugfs(void) { }
311 #define ipoib_printk(level, priv, format, arg...) \
312 printk(level "%s: " format, ((struct ipoib_dev_priv *) priv)->dev->name , ## arg)
313 #define ipoib_warn(priv, format, arg...) \
314 ipoib_printk(KERN_WARNING, priv, format , ## arg)
317 #ifdef CONFIG_INFINIBAND_IPOIB_DEBUG
318 extern int ipoib_debug_level;
320 #define ipoib_dbg(priv, format, arg...) \
322 if (ipoib_debug_level > 0) \
323 ipoib_printk(KERN_DEBUG, priv, format , ## arg); \
325 #define ipoib_dbg_mcast(priv, format, arg...) \
327 if (mcast_debug_level > 0) \
328 ipoib_printk(KERN_DEBUG, priv, format , ## arg); \
330 #else /* CONFIG_INFINIBAND_IPOIB_DEBUG */
331 #define ipoib_dbg(priv, format, arg...) \
332 do { (void) (priv); } while (0)
333 #define ipoib_dbg_mcast(priv, format, arg...) \
334 do { (void) (priv); } while (0)
335 #endif /* CONFIG_INFINIBAND_IPOIB_DEBUG */
337 #ifdef CONFIG_INFINIBAND_IPOIB_DEBUG_DATA
338 #define ipoib_dbg_data(priv, format, arg...) \
340 if (data_debug_level > 0) \
341 ipoib_printk(KERN_DEBUG, priv, format , ## arg); \
343 #else /* CONFIG_INFINIBAND_IPOIB_DEBUG_DATA */
344 #define ipoib_dbg_data(priv, format, arg...) \
345 do { (void) (priv); } while (0)
346 #endif /* CONFIG_INFINIBAND_IPOIB_DEBUG_DATA */
349 #define IPOIB_GID_FMT "%x:%x:%x:%x:%x:%x:%x:%x"
351 #define IPOIB_GID_ARG(gid) be16_to_cpup((__be16 *) ((gid).raw + 0)), \
352 be16_to_cpup((__be16 *) ((gid).raw + 2)), \
353 be16_to_cpup((__be16 *) ((gid).raw + 4)), \
354 be16_to_cpup((__be16 *) ((gid).raw + 6)), \
355 be16_to_cpup((__be16 *) ((gid).raw + 8)), \
356 be16_to_cpup((__be16 *) ((gid).raw + 10)), \
357 be16_to_cpup((__be16 *) ((gid).raw + 12)), \
358 be16_to_cpup((__be16 *) ((gid).raw + 14))
360 #endif /* _IPOIB_H */