1 /* 2 * This file is part of the Chelsio T4 Ethernet driver for Linux. 3 * 4 * Copyright (c) 2003-2014 Chelsio Communications, Inc. All rights reserved. 5 * 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: 11 * 12 * Redistribution and use in source and binary forms, with or 13 * without modification, are permitted provided that the following 14 * conditions are met: 15 * 16 * - Redistributions of source code must retain the above 17 * copyright notice, this list of conditions and the following 18 * disclaimer. 19 * 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. 24 * 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 32 * SOFTWARE. 33 */ 34 35 #ifndef __CXGB4_L2T_H 36 #define __CXGB4_L2T_H 37 38 #include <linux/spinlock.h> 39 #include <linux/if_ether.h> 40 #include <linux/atomic.h> 41 42 enum { L2T_SIZE = 4096 }; /* # of L2T entries */ 43 44 enum { 45 L2T_STATE_VALID, /* entry is up to date */ 46 L2T_STATE_STALE, /* entry may be used but needs revalidation */ 47 L2T_STATE_RESOLVING, /* entry needs address resolution */ 48 L2T_STATE_SYNC_WRITE, /* synchronous write of entry underway */ 49 L2T_STATE_NOARP, /* Netdev down or removed*/ 50 51 /* when state is one of the below the entry is not hashed */ 52 L2T_STATE_SWITCHING, /* entry is being used by a switching filter */ 53 L2T_STATE_UNUSED /* entry not in use */ 54 }; 55 56 struct adapter; 57 struct l2t_data; 58 struct neighbour; 59 struct net_device; 60 struct file_operations; 61 struct cpl_l2t_write_rpl; 62 63 /* 64 * Each L2T entry plays multiple roles. First of all, it keeps state for the 65 * corresponding entry of the HW L2 table and maintains a queue of offload 66 * packets awaiting address resolution. Second, it is a node of a hash table 67 * chain, where the nodes of the chain are linked together through their next 68 * pointer. Finally, each node is a bucket of a hash table, pointing to the 69 * first element in its chain through its first pointer. 70 */ 71 struct l2t_entry { 72 u16 state; /* entry state */ 73 u16 idx; /* entry index within in-memory table */ 74 u32 addr[4]; /* next hop IP or IPv6 address */ 75 int ifindex; /* neighbor's net_device's ifindex */ 76 struct neighbour *neigh; /* associated neighbour */ 77 struct l2t_entry *first; /* start of hash chain */ 78 struct l2t_entry *next; /* next l2t_entry on chain */ 79 struct sk_buff *arpq_head; /* queue of packets awaiting resolution */ 80 struct sk_buff *arpq_tail; 81 spinlock_t lock; 82 atomic_t refcnt; /* entry reference count */ 83 u16 hash; /* hash bucket the entry is on */ 84 u16 vlan; /* VLAN TCI (id: bits 0-11, prio: 13-15 */ 85 u8 v6; /* whether entry is for IPv6 */ 86 u8 lport; /* associated offload logical interface */ 87 u8 dmac[ETH_ALEN]; /* neighbour's MAC address */ 88 }; 89 90 typedef void (*arp_err_handler_t)(void *handle, struct sk_buff *skb); 91 92 /* 93 * Callback stored in an skb to handle address resolution failure. 94 */ 95 struct l2t_skb_cb { 96 void *handle; 97 arp_err_handler_t arp_err_handler; 98 }; 99 100 #define L2T_SKB_CB(skb) ((struct l2t_skb_cb *)(skb)->cb) 101 102 static inline void t4_set_arp_err_handler(struct sk_buff *skb, void *handle, 103 arp_err_handler_t handler) 104 { 105 L2T_SKB_CB(skb)->handle = handle; 106 L2T_SKB_CB(skb)->arp_err_handler = handler; 107 } 108 109 void cxgb4_l2t_release(struct l2t_entry *e); 110 int cxgb4_l2t_send(struct net_device *dev, struct sk_buff *skb, 111 struct l2t_entry *e); 112 struct l2t_entry *cxgb4_l2t_get(struct l2t_data *d, struct neighbour *neigh, 113 const struct net_device *physdev, 114 unsigned int priority); 115 u64 cxgb4_select_ntuple(struct net_device *dev, 116 const struct l2t_entry *l2t); 117 void t4_l2t_update(struct adapter *adap, struct neighbour *neigh); 118 struct l2t_entry *t4_l2t_alloc_switching(struct l2t_data *d); 119 int t4_l2t_set_switching(struct adapter *adap, struct l2t_entry *e, u16 vlan, 120 u8 port, u8 *eth_addr); 121 struct l2t_data *t4_init_l2t(unsigned int l2t_start, unsigned int l2t_end); 122 void do_l2t_write_rpl(struct adapter *p, const struct cpl_l2t_write_rpl *rpl); 123 124 extern const struct file_operations t4_l2t_fops; 125 #endif /* __CXGB4_L2T_H */ 126