blob: b375ae9f98efff92a7727716411275f42a2ea5f8 [file] [log] [blame]
Santiago Leonf148f612010-09-03 18:29:30 +00001/*
Santiago Leon9d348af2010-09-03 18:29:53 +00002 * IBM Power Virtual Ethernet Device Driver
Santiago Leonf148f612010-09-03 18:29:30 +00003 *
Santiago Leon9d348af2010-09-03 18:29:53 +00004 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
Santiago Leonf148f612010-09-03 18:29:30 +00008 *
Santiago Leon9d348af2010-09-03 18:29:53 +00009 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Santiago Leonf148f612010-09-03 18:29:30 +000013 *
Santiago Leon9d348af2010-09-03 18:29:53 +000014 * You should have received a copy of the GNU General Public License
Jeff Kirsher0ab75ae2013-12-06 06:28:43 -080015 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Santiago Leonf148f612010-09-03 18:29:30 +000016 *
Santiago Leon9d348af2010-09-03 18:29:53 +000017 * Copyright (C) IBM Corporation, 2003, 2010
18 *
19 * Authors: Dave Larson <larson1@us.ibm.com>
20 * Santiago Leon <santil@linux.vnet.ibm.com>
21 * Brian King <brking@linux.vnet.ibm.com>
22 * Robert Jennings <rcj@linux.vnet.ibm.com>
23 * Anton Blanchard <anton@au.ibm.com>
Santiago Leonf148f612010-09-03 18:29:30 +000024 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/module.h>
Robert Jennings1096d632008-07-24 04:34:52 +100027#include <linux/moduleparam.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/types.h>
29#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/dma-mapping.h>
31#include <linux/kernel.h>
32#include <linux/netdevice.h>
33#include <linux/etherdevice.h>
34#include <linux/skbuff.h>
35#include <linux/init.h>
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000036#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/mm.h>
Brian Kinge7a3af52010-05-07 08:56:08 +000038#include <linux/pm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/ethtool.h>
Brian Kingf4ff2872007-09-15 13:36:07 -070040#include <linux/in.h>
41#include <linux/ip.h>
Santiago Leonab78df72010-09-03 18:28:52 +000042#include <linux/ipv6.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090043#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <asm/hvcall.h>
Arun Sharma600634972011-07-26 16:09:06 -070045#include <linux/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <asm/vio.h>
Robert Jennings1096d632008-07-24 04:34:52 +100047#include <asm/iommu.h>
Robert Jennings1096d632008-07-24 04:34:52 +100048#include <asm/firmware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50#include "ibmveth.h"
51
David Howells7d12e782006-10-05 14:55:46 +010052static irqreturn_t ibmveth_interrupt(int irq, void *dev_instance);
Michael Ellerman493a6842007-04-17 13:12:55 +100053static void ibmveth_rxq_harvest_buffer(struct ibmveth_adapter *adapter);
Robert Jennings1096d632008-07-24 04:34:52 +100054static unsigned long ibmveth_get_desired_dma(struct vio_dev *vdev);
Santiago Leone295fe82010-09-03 18:29:08 +000055
Santiago Leon860f2422006-04-25 11:19:59 -050056static struct kobj_type ktype_veth_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Robert Jennings1096d632008-07-24 04:34:52 +100058
Linus Torvalds1da177e2005-04-16 15:20:36 -070059static const char ibmveth_driver_name[] = "ibmveth";
Santiago Leon9d348af2010-09-03 18:29:53 +000060static const char ibmveth_driver_string[] = "IBM Power Virtual Ethernet Driver";
Thomas Falcon7b596732016-12-08 16:40:03 -060061#define ibmveth_driver_version "1.06"
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Santiago Leon9d348af2010-09-03 18:29:53 +000063MODULE_AUTHOR("Santiago Leon <santil@linux.vnet.ibm.com>");
64MODULE_DESCRIPTION("IBM Power Virtual Ethernet Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070065MODULE_LICENSE("GPL");
66MODULE_VERSION(ibmveth_driver_version);
67
Santiago Leonc08cc3c2010-09-03 18:28:20 +000068static unsigned int tx_copybreak __read_mostly = 128;
69module_param(tx_copybreak, uint, 0644);
70MODULE_PARM_DESC(tx_copybreak,
71 "Maximum size of packet that is copied to a new buffer on transmit");
72
Santiago Leon8d86c612010-09-03 18:28:25 +000073static unsigned int rx_copybreak __read_mostly = 128;
74module_param(rx_copybreak, uint, 0644);
75MODULE_PARM_DESC(rx_copybreak,
76 "Maximum size of packet that is copied to a new buffer on receive");
77
Santiago Leon0c26b672010-09-03 18:28:41 +000078static unsigned int rx_flush __read_mostly = 0;
79module_param(rx_flush, uint, 0644);
80MODULE_PARM_DESC(rx_flush, "Flush receive buffers before use");
81
Thomas Falcon07e6a972015-07-14 10:51:51 -050082static bool old_large_send __read_mostly;
83module_param(old_large_send, bool, S_IRUGO);
84MODULE_PARM_DESC(old_large_send,
85 "Use old large send method on firmware that supports the new method");
86
Brian Kingddbb4de2007-08-17 09:16:43 -050087struct ibmveth_stat {
88 char name[ETH_GSTRING_LEN];
89 int offset;
90};
91
92#define IBMVETH_STAT_OFF(stat) offsetof(struct ibmveth_adapter, stat)
93#define IBMVETH_GET_STAT(a, off) *((u64 *)(((unsigned long)(a)) + off))
94
95struct ibmveth_stat ibmveth_stats[] = {
96 { "replenish_task_cycles", IBMVETH_STAT_OFF(replenish_task_cycles) },
97 { "replenish_no_mem", IBMVETH_STAT_OFF(replenish_no_mem) },
Santiago Leonf148f612010-09-03 18:29:30 +000098 { "replenish_add_buff_failure",
99 IBMVETH_STAT_OFF(replenish_add_buff_failure) },
100 { "replenish_add_buff_success",
101 IBMVETH_STAT_OFF(replenish_add_buff_success) },
Brian Kingddbb4de2007-08-17 09:16:43 -0500102 { "rx_invalid_buffer", IBMVETH_STAT_OFF(rx_invalid_buffer) },
103 { "rx_no_buffer", IBMVETH_STAT_OFF(rx_no_buffer) },
Brian Kingddbb4de2007-08-17 09:16:43 -0500104 { "tx_map_failed", IBMVETH_STAT_OFF(tx_map_failed) },
105 { "tx_send_failed", IBMVETH_STAT_OFF(tx_send_failed) },
Santiago Leonab78df72010-09-03 18:28:52 +0000106 { "fw_enabled_ipv4_csum", IBMVETH_STAT_OFF(fw_ipv4_csum_support) },
107 { "fw_enabled_ipv6_csum", IBMVETH_STAT_OFF(fw_ipv6_csum_support) },
Thomas Falcon8641dd82015-04-29 16:25:45 -0500108 { "tx_large_packets", IBMVETH_STAT_OFF(tx_large_packets) },
Thomas Falcon07e6a972015-07-14 10:51:51 -0500109 { "rx_large_packets", IBMVETH_STAT_OFF(rx_large_packets) },
110 { "fw_enabled_large_send", IBMVETH_STAT_OFF(fw_large_send_support) }
Brian Kingddbb4de2007-08-17 09:16:43 -0500111};
112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113/* simple methods of getting data from the current rxq entry */
Brian King79ef4a42007-08-17 09:16:56 -0500114static inline u32 ibmveth_rxq_flags(struct ibmveth_adapter *adapter)
115{
Anton Blanchard0b536be2013-09-03 09:55:32 +1000116 return be32_to_cpu(adapter->rx_queue.queue_addr[adapter->rx_queue.index].flags_off);
Brian King79ef4a42007-08-17 09:16:56 -0500117}
118
119static inline int ibmveth_rxq_toggle(struct ibmveth_adapter *adapter)
120{
Santiago Leonf148f612010-09-03 18:29:30 +0000121 return (ibmveth_rxq_flags(adapter) & IBMVETH_RXQ_TOGGLE) >>
122 IBMVETH_RXQ_TOGGLE_SHIFT;
Brian King79ef4a42007-08-17 09:16:56 -0500123}
124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125static inline int ibmveth_rxq_pending_buffer(struct ibmveth_adapter *adapter)
126{
Santiago Leonf148f612010-09-03 18:29:30 +0000127 return ibmveth_rxq_toggle(adapter) == adapter->rx_queue.toggle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128}
129
130static inline int ibmveth_rxq_buffer_valid(struct ibmveth_adapter *adapter)
131{
Santiago Leonf148f612010-09-03 18:29:30 +0000132 return ibmveth_rxq_flags(adapter) & IBMVETH_RXQ_VALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133}
134
135static inline int ibmveth_rxq_frame_offset(struct ibmveth_adapter *adapter)
136{
Santiago Leonf148f612010-09-03 18:29:30 +0000137 return ibmveth_rxq_flags(adapter) & IBMVETH_RXQ_OFF_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138}
139
Thomas Falcon7b596732016-12-08 16:40:03 -0600140static inline int ibmveth_rxq_large_packet(struct ibmveth_adapter *adapter)
141{
142 return ibmveth_rxq_flags(adapter) & IBMVETH_RXQ_LRG_PKT;
143}
144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145static inline int ibmveth_rxq_frame_length(struct ibmveth_adapter *adapter)
146{
Anton Blanchard0b536be2013-09-03 09:55:32 +1000147 return be32_to_cpu(adapter->rx_queue.queue_addr[adapter->rx_queue.index].length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148}
149
Brian Kingf4ff2872007-09-15 13:36:07 -0700150static inline int ibmveth_rxq_csum_good(struct ibmveth_adapter *adapter)
151{
Santiago Leonf148f612010-09-03 18:29:30 +0000152 return ibmveth_rxq_flags(adapter) & IBMVETH_RXQ_CSUM_GOOD;
Brian Kingf4ff2872007-09-15 13:36:07 -0700153}
154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155/* setup the initial settings for a buffer pool */
Santiago Leonf148f612010-09-03 18:29:30 +0000156static void ibmveth_init_buffer_pool(struct ibmveth_buff_pool *pool,
157 u32 pool_index, u32 pool_size,
158 u32 buff_size, u32 pool_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
160 pool->size = pool_size;
161 pool->index = pool_index;
162 pool->buff_size = buff_size;
Santiago Leonc033a6d2010-09-03 18:28:09 +0000163 pool->threshold = pool_size * 7 / 8;
Santiago Leon860f2422006-04-25 11:19:59 -0500164 pool->active = pool_active;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165}
166
167/* allocate and setup an buffer pool - called during open */
168static int ibmveth_alloc_buffer_pool(struct ibmveth_buff_pool *pool)
169{
170 int i;
171
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400172 pool->free_map = kmalloc(sizeof(u16) * pool->size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Santiago Leonf148f612010-09-03 18:29:30 +0000174 if (!pool->free_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Nicholas Mc Guire076ef442015-12-20 15:06:18 +0100177 pool->dma_addr = kcalloc(pool->size, sizeof(dma_addr_t), GFP_KERNEL);
Santiago Leonf148f612010-09-03 18:29:30 +0000178 if (!pool->dma_addr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 kfree(pool->free_map);
180 pool->free_map = NULL;
181 return -1;
182 }
183
Julia Lawalla05abcb2010-05-13 10:06:01 +0000184 pool->skbuff = kcalloc(pool->size, sizeof(void *), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Santiago Leonf148f612010-09-03 18:29:30 +0000186 if (!pool->skbuff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 kfree(pool->dma_addr);
188 pool->dma_addr = NULL;
189
190 kfree(pool->free_map);
191 pool->free_map = NULL;
192 return -1;
193 }
194
Santiago Leonf148f612010-09-03 18:29:30 +0000195 for (i = 0; i < pool->size; ++i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 pool->free_map[i] = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
198 atomic_set(&pool->available, 0);
199 pool->producer_index = 0;
200 pool->consumer_index = 0;
201
202 return 0;
203}
204
Santiago Leon0c26b672010-09-03 18:28:41 +0000205static inline void ibmveth_flush_buffer(void *addr, unsigned long length)
206{
207 unsigned long offset;
208
209 for (offset = 0; offset < length; offset += SMP_CACHE_BYTES)
210 asm("dcbfl %0,%1" :: "b" (addr), "r" (offset));
211}
212
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213/* replenish the buffers for a pool. note that we don't need to
214 * skb_reserve these since they are used for incoming...
215 */
Santiago Leonf148f612010-09-03 18:29:30 +0000216static void ibmveth_replenish_buffer_pool(struct ibmveth_adapter *adapter,
217 struct ibmveth_buff_pool *pool)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218{
219 u32 i;
220 u32 count = pool->size - atomic_read(&pool->available);
221 u32 buffers_added = 0;
Robert Jennings1096d632008-07-24 04:34:52 +1000222 struct sk_buff *skb;
223 unsigned int free_index, index;
224 u64 correlator;
225 unsigned long lpar_rc;
226 dma_addr_t dma_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228 mb();
229
Santiago Leonf148f612010-09-03 18:29:30 +0000230 for (i = 0; i < count; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 union ibmveth_buf_desc desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Santiago Leon003212c2010-09-03 18:29:03 +0000233 skb = netdev_alloc_skb(adapter->netdev, pool->buff_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Santiago Leonf148f612010-09-03 18:29:30 +0000235 if (!skb) {
Santiago Leonc43ced12010-09-03 18:29:14 +0000236 netdev_dbg(adapter->netdev,
237 "replenish: unable to allocate skb\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 adapter->replenish_no_mem++;
239 break;
240 }
241
David Gibson047a66d2006-10-21 10:24:13 -0700242 free_index = pool->consumer_index;
Santiago Leona613f582010-09-03 18:28:04 +0000243 pool->consumer_index++;
244 if (pool->consumer_index >= pool->size)
245 pool->consumer_index = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 index = pool->free_map[free_index];
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400247
Santiago Leon64859112010-09-03 18:29:41 +0000248 BUG_ON(index == IBM_VETH_INVALID_MAP);
249 BUG_ON(pool->skbuff[index] != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251 dma_addr = dma_map_single(&adapter->vdev->dev, skb->data,
252 pool->buff_size, DMA_FROM_DEVICE);
253
Stephen Rothwellc713e7c2008-07-28 02:14:24 +1000254 if (dma_mapping_error(&adapter->vdev->dev, dma_addr))
Robert Jennings1096d632008-07-24 04:34:52 +1000255 goto failure;
256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 pool->free_map[free_index] = IBM_VETH_INVALID_MAP;
258 pool->dma_addr[index] = dma_addr;
259 pool->skbuff[index] = skb;
260
261 correlator = ((u64)pool->index << 32) | index;
Santiago Leonf148f612010-09-03 18:29:30 +0000262 *(u64 *)skb->data = correlator;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Brian King79ef4a42007-08-17 09:16:56 -0500264 desc.fields.flags_len = IBMVETH_BUF_VALID | pool->buff_size;
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400265 desc.fields.address = dma_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
Santiago Leon0c26b672010-09-03 18:28:41 +0000267 if (rx_flush) {
268 unsigned int len = min(pool->buff_size,
269 adapter->netdev->mtu +
270 IBMVETH_BUFF_OH);
271 ibmveth_flush_buffer(skb->data, len);
272 }
Santiago Leonf148f612010-09-03 18:29:30 +0000273 lpar_rc = h_add_logical_lan_buffer(adapter->vdev->unit_address,
274 desc.desc);
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400275
Santiago Leonf148f612010-09-03 18:29:30 +0000276 if (lpar_rc != H_SUCCESS) {
Robert Jennings1096d632008-07-24 04:34:52 +1000277 goto failure;
Santiago Leonf148f612010-09-03 18:29:30 +0000278 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 buffers_added++;
280 adapter->replenish_add_buff_success++;
281 }
282 }
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 mb();
285 atomic_add(buffers_added, &(pool->available));
Robert Jennings1096d632008-07-24 04:34:52 +1000286 return;
287
288failure:
289 pool->free_map[free_index] = index;
290 pool->skbuff[index] = NULL;
291 if (pool->consumer_index == 0)
292 pool->consumer_index = pool->size - 1;
293 else
294 pool->consumer_index--;
Stephen Rothwellc713e7c2008-07-28 02:14:24 +1000295 if (!dma_mapping_error(&adapter->vdev->dev, dma_addr))
Robert Jennings1096d632008-07-24 04:34:52 +1000296 dma_unmap_single(&adapter->vdev->dev,
297 pool->dma_addr[index], pool->buff_size,
298 DMA_FROM_DEVICE);
299 dev_kfree_skb_any(skb);
300 adapter->replenish_add_buff_failure++;
301
302 mb();
303 atomic_add(buffers_added, &(pool->available));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304}
305
Anton Blanchardcbd52282014-08-22 11:36:52 +1000306/*
307 * The final 8 bytes of the buffer list is a counter of frames dropped
308 * because there was not a buffer in the buffer list capable of holding
309 * the frame.
310 */
311static void ibmveth_update_rx_no_buffer(struct ibmveth_adapter *adapter)
312{
313 __be64 *p = adapter->buffer_list_addr + 4096 - 8;
314
315 adapter->rx_no_buffer = be64_to_cpup(p);
316}
317
Santiago Leone2adbcb2005-10-26 10:47:08 -0600318/* replenish routine */
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400319static void ibmveth_replenish_task(struct ibmveth_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320{
Santiago Leonb6d35182005-10-26 10:47:01 -0600321 int i;
322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 adapter->replenish_task_cycles++;
324
Santiago Leon517e80e2010-09-03 18:29:25 +0000325 for (i = (IBMVETH_NUM_BUFF_POOLS - 1); i >= 0; i--) {
Santiago Leonc033a6d2010-09-03 18:28:09 +0000326 struct ibmveth_buff_pool *pool = &adapter->rx_buff_pool[i];
327
328 if (pool->active &&
329 (atomic_read(&pool->available) < pool->threshold))
330 ibmveth_replenish_buffer_pool(adapter, pool);
331 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Anton Blanchardcbd52282014-08-22 11:36:52 +1000333 ibmveth_update_rx_no_buffer(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334}
335
336/* empty and free ana buffer pool - also used to do cleanup in error paths */
Santiago Leonf148f612010-09-03 18:29:30 +0000337static void ibmveth_free_buffer_pool(struct ibmveth_adapter *adapter,
338 struct ibmveth_buff_pool *pool)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339{
340 int i;
341
Jesper Juhlb4558ea2005-10-28 16:53:13 -0400342 kfree(pool->free_map);
343 pool->free_map = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
Santiago Leonf148f612010-09-03 18:29:30 +0000345 if (pool->skbuff && pool->dma_addr) {
346 for (i = 0; i < pool->size; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 struct sk_buff *skb = pool->skbuff[i];
Santiago Leonf148f612010-09-03 18:29:30 +0000348 if (skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 dma_unmap_single(&adapter->vdev->dev,
350 pool->dma_addr[i],
351 pool->buff_size,
352 DMA_FROM_DEVICE);
353 dev_kfree_skb_any(skb);
354 pool->skbuff[i] = NULL;
355 }
356 }
357 }
358
Santiago Leonf148f612010-09-03 18:29:30 +0000359 if (pool->dma_addr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 kfree(pool->dma_addr);
361 pool->dma_addr = NULL;
362 }
363
Santiago Leonf148f612010-09-03 18:29:30 +0000364 if (pool->skbuff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 kfree(pool->skbuff);
366 pool->skbuff = NULL;
367 }
368}
369
370/* remove a buffer from a pool */
Santiago Leonf148f612010-09-03 18:29:30 +0000371static void ibmveth_remove_buffer_from_pool(struct ibmveth_adapter *adapter,
372 u64 correlator)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373{
374 unsigned int pool = correlator >> 32;
375 unsigned int index = correlator & 0xffffffffUL;
376 unsigned int free_index;
377 struct sk_buff *skb;
378
Santiago Leon64859112010-09-03 18:29:41 +0000379 BUG_ON(pool >= IBMVETH_NUM_BUFF_POOLS);
380 BUG_ON(index >= adapter->rx_buff_pool[pool].size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
382 skb = adapter->rx_buff_pool[pool].skbuff[index];
383
Santiago Leon64859112010-09-03 18:29:41 +0000384 BUG_ON(skb == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
386 adapter->rx_buff_pool[pool].skbuff[index] = NULL;
387
388 dma_unmap_single(&adapter->vdev->dev,
389 adapter->rx_buff_pool[pool].dma_addr[index],
390 adapter->rx_buff_pool[pool].buff_size,
391 DMA_FROM_DEVICE);
392
David Gibson047a66d2006-10-21 10:24:13 -0700393 free_index = adapter->rx_buff_pool[pool].producer_index;
Santiago Leona613f582010-09-03 18:28:04 +0000394 adapter->rx_buff_pool[pool].producer_index++;
395 if (adapter->rx_buff_pool[pool].producer_index >=
396 adapter->rx_buff_pool[pool].size)
397 adapter->rx_buff_pool[pool].producer_index = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 adapter->rx_buff_pool[pool].free_map[free_index] = index;
399
400 mb();
401
402 atomic_dec(&(adapter->rx_buff_pool[pool].available));
403}
404
405/* get the current buffer on the rx queue */
406static inline struct sk_buff *ibmveth_rxq_get_buffer(struct ibmveth_adapter *adapter)
407{
408 u64 correlator = adapter->rx_queue.queue_addr[adapter->rx_queue.index].correlator;
409 unsigned int pool = correlator >> 32;
410 unsigned int index = correlator & 0xffffffffUL;
411
Santiago Leon64859112010-09-03 18:29:41 +0000412 BUG_ON(pool >= IBMVETH_NUM_BUFF_POOLS);
413 BUG_ON(index >= adapter->rx_buff_pool[pool].size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
415 return adapter->rx_buff_pool[pool].skbuff[index];
416}
417
418/* recycle the current buffer on the rx queue */
David S. Miller8decf862011-09-22 03:23:13 -0400419static int ibmveth_rxq_recycle_buffer(struct ibmveth_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420{
421 u32 q_index = adapter->rx_queue.index;
422 u64 correlator = adapter->rx_queue.queue_addr[q_index].correlator;
423 unsigned int pool = correlator >> 32;
424 unsigned int index = correlator & 0xffffffffUL;
425 union ibmveth_buf_desc desc;
426 unsigned long lpar_rc;
David S. Miller8decf862011-09-22 03:23:13 -0400427 int ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Santiago Leon64859112010-09-03 18:29:41 +0000429 BUG_ON(pool >= IBMVETH_NUM_BUFF_POOLS);
430 BUG_ON(index >= adapter->rx_buff_pool[pool].size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Santiago Leonf148f612010-09-03 18:29:30 +0000432 if (!adapter->rx_buff_pool[pool].active) {
Santiago Leonb6d35182005-10-26 10:47:01 -0600433 ibmveth_rxq_harvest_buffer(adapter);
434 ibmveth_free_buffer_pool(adapter, &adapter->rx_buff_pool[pool]);
David S. Miller8decf862011-09-22 03:23:13 -0400435 goto out;
Santiago Leonb6d35182005-10-26 10:47:01 -0600436 }
437
Brian King79ef4a42007-08-17 09:16:56 -0500438 desc.fields.flags_len = IBMVETH_BUF_VALID |
439 adapter->rx_buff_pool[pool].buff_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 desc.fields.address = adapter->rx_buff_pool[pool].dma_addr[index];
441
442 lpar_rc = h_add_logical_lan_buffer(adapter->vdev->unit_address, desc.desc);
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400443
Santiago Leonf148f612010-09-03 18:29:30 +0000444 if (lpar_rc != H_SUCCESS) {
Santiago Leonc43ced12010-09-03 18:29:14 +0000445 netdev_dbg(adapter->netdev, "h_add_logical_lan_buffer failed "
446 "during recycle rc=%ld", lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 ibmveth_remove_buffer_from_pool(adapter, adapter->rx_queue.queue_addr[adapter->rx_queue.index].correlator);
David S. Miller8decf862011-09-22 03:23:13 -0400448 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 }
450
Santiago Leonf148f612010-09-03 18:29:30 +0000451 if (++adapter->rx_queue.index == adapter->rx_queue.num_slots) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 adapter->rx_queue.index = 0;
453 adapter->rx_queue.toggle = !adapter->rx_queue.toggle;
454 }
David S. Miller8decf862011-09-22 03:23:13 -0400455
456out:
457 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458}
459
Michael Ellerman493a6842007-04-17 13:12:55 +1000460static void ibmveth_rxq_harvest_buffer(struct ibmveth_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461{
462 ibmveth_remove_buffer_from_pool(adapter, adapter->rx_queue.queue_addr[adapter->rx_queue.index].correlator);
463
Santiago Leonf148f612010-09-03 18:29:30 +0000464 if (++adapter->rx_queue.index == adapter->rx_queue.num_slots) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 adapter->rx_queue.index = 0;
466 adapter->rx_queue.toggle = !adapter->rx_queue.toggle;
467 }
468}
469
470static void ibmveth_cleanup(struct ibmveth_adapter *adapter)
471{
Santiago Leonb6d35182005-10-26 10:47:01 -0600472 int i;
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700473 struct device *dev = &adapter->vdev->dev;
Santiago Leonb6d35182005-10-26 10:47:01 -0600474
Santiago Leonf148f612010-09-03 18:29:30 +0000475 if (adapter->buffer_list_addr != NULL) {
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700476 if (!dma_mapping_error(dev, adapter->buffer_list_dma)) {
477 dma_unmap_single(dev, adapter->buffer_list_dma, 4096,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 DMA_BIDIRECTIONAL);
479 adapter->buffer_list_dma = DMA_ERROR_CODE;
480 }
481 free_page((unsigned long)adapter->buffer_list_addr);
482 adapter->buffer_list_addr = NULL;
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400483 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Santiago Leonf148f612010-09-03 18:29:30 +0000485 if (adapter->filter_list_addr != NULL) {
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700486 if (!dma_mapping_error(dev, adapter->filter_list_dma)) {
487 dma_unmap_single(dev, adapter->filter_list_dma, 4096,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 DMA_BIDIRECTIONAL);
489 adapter->filter_list_dma = DMA_ERROR_CODE;
490 }
491 free_page((unsigned long)adapter->filter_list_addr);
492 adapter->filter_list_addr = NULL;
493 }
494
Santiago Leonf148f612010-09-03 18:29:30 +0000495 if (adapter->rx_queue.queue_addr != NULL) {
Santiago Leond90c92f2012-09-04 14:41:37 +0000496 dma_free_coherent(dev, adapter->rx_queue.queue_len,
497 adapter->rx_queue.queue_addr,
498 adapter->rx_queue.queue_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 adapter->rx_queue.queue_addr = NULL;
500 }
501
Santiago Leonf148f612010-09-03 18:29:30 +0000502 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++)
Santiago Leon860f2422006-04-25 11:19:59 -0500503 if (adapter->rx_buff_pool[i].active)
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400504 ibmveth_free_buffer_pool(adapter,
Santiago Leon860f2422006-04-25 11:19:59 -0500505 &adapter->rx_buff_pool[i]);
Robert Jennings1096d632008-07-24 04:34:52 +1000506
507 if (adapter->bounce_buffer != NULL) {
Stephen Rothwellc713e7c2008-07-28 02:14:24 +1000508 if (!dma_mapping_error(dev, adapter->bounce_buffer_dma)) {
Robert Jennings1096d632008-07-24 04:34:52 +1000509 dma_unmap_single(&adapter->vdev->dev,
510 adapter->bounce_buffer_dma,
511 adapter->netdev->mtu + IBMVETH_BUFF_OH,
512 DMA_BIDIRECTIONAL);
513 adapter->bounce_buffer_dma = DMA_ERROR_CODE;
514 }
515 kfree(adapter->bounce_buffer);
516 adapter->bounce_buffer = NULL;
517 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518}
519
Michael Ellermanbbedefc2006-10-03 12:24:23 -0500520static int ibmveth_register_logical_lan(struct ibmveth_adapter *adapter,
521 union ibmveth_buf_desc rxq_desc, u64 mac_address)
522{
523 int rc, try_again = 1;
524
Santiago Leonf148f612010-09-03 18:29:30 +0000525 /*
526 * After a kexec the adapter will still be open, so our attempt to
527 * open it will fail. So if we get a failure we free the adapter and
528 * try again, but only once.
529 */
Michael Ellermanbbedefc2006-10-03 12:24:23 -0500530retry:
531 rc = h_register_logical_lan(adapter->vdev->unit_address,
532 adapter->buffer_list_dma, rxq_desc.desc,
533 adapter->filter_list_dma, mac_address);
534
535 if (rc != H_SUCCESS && try_again) {
536 do {
537 rc = h_free_logical_lan(adapter->vdev->unit_address);
538 } while (H_IS_LONG_BUSY(rc) || (rc == H_BUSY));
539
540 try_again = 0;
541 goto retry;
542 }
543
544 return rc;
545}
546
Anton Blanchardd746ca92014-03-05 14:51:37 +1100547static u64 ibmveth_encode_mac_addr(u8 *mac)
548{
549 int i;
550 u64 encoded = 0;
551
552 for (i = 0; i < ETH_ALEN; i++)
553 encoded = (encoded << 8) | mac[i];
554
555 return encoded;
556}
557
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558static int ibmveth_open(struct net_device *netdev)
559{
Wang Chen4cf16532008-11-12 23:38:14 -0800560 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Anton Blanchardd746ca92014-03-05 14:51:37 +1100561 u64 mac_address;
Santiago Leonb6d35182005-10-26 10:47:01 -0600562 int rxq_entries = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 unsigned long lpar_rc;
564 int rc;
565 union ibmveth_buf_desc rxq_desc;
Santiago Leonb6d35182005-10-26 10:47:01 -0600566 int i;
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700567 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Santiago Leonc43ced12010-09-03 18:29:14 +0000569 netdev_dbg(netdev, "open starting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700571 napi_enable(&adapter->napi);
572
Santiago Leon517e80e2010-09-03 18:29:25 +0000573 for(i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++)
Santiago Leonb6d35182005-10-26 10:47:01 -0600574 rxq_entries += adapter->rx_buff_pool[i].size;
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400575
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 adapter->buffer_list_addr = (void*) get_zeroed_page(GFP_KERNEL);
577 adapter->filter_list_addr = (void*) get_zeroed_page(GFP_KERNEL);
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400578
Santiago Leonf148f612010-09-03 18:29:30 +0000579 if (!adapter->buffer_list_addr || !adapter->filter_list_addr) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000580 netdev_err(netdev, "unable to allocate filter or buffer list "
581 "pages\n");
Denis Kirjanov88426f22010-10-20 04:21:13 +0000582 rc = -ENOMEM;
583 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 }
585
Santiago Leond90c92f2012-09-04 14:41:37 +0000586 dev = &adapter->vdev->dev;
587
Santiago Leonf148f612010-09-03 18:29:30 +0000588 adapter->rx_queue.queue_len = sizeof(struct ibmveth_rx_q_entry) *
589 rxq_entries;
Santiago Leond90c92f2012-09-04 14:41:37 +0000590 adapter->rx_queue.queue_addr =
Joe Perchesd0320f72013-03-14 13:07:21 +0000591 dma_alloc_coherent(dev, adapter->rx_queue.queue_len,
592 &adapter->rx_queue.queue_dma, GFP_KERNEL);
Santiago Leonf148f612010-09-03 18:29:30 +0000593 if (!adapter->rx_queue.queue_addr) {
Denis Kirjanov88426f22010-10-20 04:21:13 +0000594 rc = -ENOMEM;
595 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 }
597
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700598 adapter->buffer_list_dma = dma_map_single(dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 adapter->buffer_list_addr, 4096, DMA_BIDIRECTIONAL);
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700600 adapter->filter_list_dma = dma_map_single(dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 adapter->filter_list_addr, 4096, DMA_BIDIRECTIONAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700603 if ((dma_mapping_error(dev, adapter->buffer_list_dma)) ||
Santiago Leond90c92f2012-09-04 14:41:37 +0000604 (dma_mapping_error(dev, adapter->filter_list_dma))) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000605 netdev_err(netdev, "unable to map filter or buffer list "
606 "pages\n");
Denis Kirjanov88426f22010-10-20 04:21:13 +0000607 rc = -ENOMEM;
608 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 }
610
611 adapter->rx_queue.index = 0;
612 adapter->rx_queue.num_slots = rxq_entries;
613 adapter->rx_queue.toggle = 1;
614
Anton Blanchardd746ca92014-03-05 14:51:37 +1100615 mac_address = ibmveth_encode_mac_addr(netdev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Santiago Leonf148f612010-09-03 18:29:30 +0000617 rxq_desc.fields.flags_len = IBMVETH_BUF_VALID |
618 adapter->rx_queue.queue_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 rxq_desc.fields.address = adapter->rx_queue.queue_dma;
620
Santiago Leonc43ced12010-09-03 18:29:14 +0000621 netdev_dbg(netdev, "buffer list @ 0x%p\n", adapter->buffer_list_addr);
622 netdev_dbg(netdev, "filter list @ 0x%p\n", adapter->filter_list_addr);
623 netdev_dbg(netdev, "receive q @ 0x%p\n", adapter->rx_queue.queue_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Santiago Leon4347ef12006-10-03 12:24:34 -0500625 h_vio_signal(adapter->vdev->unit_address, VIO_IRQ_DISABLE);
626
Michael Ellermanbbedefc2006-10-03 12:24:23 -0500627 lpar_rc = ibmveth_register_logical_lan(adapter, rxq_desc, mac_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Santiago Leonf148f612010-09-03 18:29:30 +0000629 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000630 netdev_err(netdev, "h_register_logical_lan failed with %ld\n",
631 lpar_rc);
632 netdev_err(netdev, "buffer TCE:0x%llx filter TCE:0x%llx rxq "
633 "desc:0x%llx MAC:0x%llx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 adapter->buffer_list_dma,
635 adapter->filter_list_dma,
636 rxq_desc.desc,
637 mac_address);
Denis Kirjanov88426f22010-10-20 04:21:13 +0000638 rc = -ENONET;
639 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 }
641
Santiago Leonf148f612010-09-03 18:29:30 +0000642 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++) {
643 if (!adapter->rx_buff_pool[i].active)
Santiago Leon860f2422006-04-25 11:19:59 -0500644 continue;
645 if (ibmveth_alloc_buffer_pool(&adapter->rx_buff_pool[i])) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000646 netdev_err(netdev, "unable to alloc pool\n");
Santiago Leon860f2422006-04-25 11:19:59 -0500647 adapter->rx_buff_pool[i].active = 0;
Denis Kirjanov88426f22010-10-20 04:21:13 +0000648 rc = -ENOMEM;
649 goto err_out;
Santiago Leon860f2422006-04-25 11:19:59 -0500650 }
651 }
652
Santiago Leonc43ced12010-09-03 18:29:14 +0000653 netdev_dbg(netdev, "registering irq 0x%x\n", netdev->irq);
Santiago Leonf148f612010-09-03 18:29:30 +0000654 rc = request_irq(netdev->irq, ibmveth_interrupt, 0, netdev->name,
655 netdev);
656 if (rc != 0) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000657 netdev_err(netdev, "unable to request irq 0x%x, rc %d\n",
658 netdev->irq, rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 do {
David S. Miller88c51002011-10-07 13:38:43 -0400660 lpar_rc = h_free_logical_lan(adapter->vdev->unit_address);
661 } while (H_IS_LONG_BUSY(lpar_rc) || (lpar_rc == H_BUSY));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
Denis Kirjanov88426f22010-10-20 04:21:13 +0000663 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 }
665
Robert Jennings1096d632008-07-24 04:34:52 +1000666 adapter->bounce_buffer =
667 kmalloc(netdev->mtu + IBMVETH_BUFF_OH, GFP_KERNEL);
668 if (!adapter->bounce_buffer) {
Denis Kirjanov88426f22010-10-20 04:21:13 +0000669 rc = -ENOMEM;
Denis Kirjanove0e8ab52010-10-20 04:21:51 +0000670 goto err_out_free_irq;
Robert Jennings1096d632008-07-24 04:34:52 +1000671 }
672 adapter->bounce_buffer_dma =
673 dma_map_single(&adapter->vdev->dev, adapter->bounce_buffer,
674 netdev->mtu + IBMVETH_BUFF_OH, DMA_BIDIRECTIONAL);
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700675 if (dma_mapping_error(dev, adapter->bounce_buffer_dma)) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000676 netdev_err(netdev, "unable to map bounce buffer\n");
Denis Kirjanov88426f22010-10-20 04:21:13 +0000677 rc = -ENOMEM;
Denis Kirjanove0e8ab52010-10-20 04:21:51 +0000678 goto err_out_free_irq;
Robert Jennings1096d632008-07-24 04:34:52 +1000679 }
680
Santiago Leonc43ced12010-09-03 18:29:14 +0000681 netdev_dbg(netdev, "initial replenish cycle\n");
David Howells7d12e782006-10-05 14:55:46 +0100682 ibmveth_interrupt(netdev->irq, netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
Santiago Leone2adbcb2005-10-26 10:47:08 -0600684 netif_start_queue(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Santiago Leonc43ced12010-09-03 18:29:14 +0000686 netdev_dbg(netdev, "open complete\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
688 return 0;
Denis Kirjanov88426f22010-10-20 04:21:13 +0000689
Denis Kirjanove0e8ab52010-10-20 04:21:51 +0000690err_out_free_irq:
691 free_irq(netdev->irq, netdev);
Denis Kirjanov88426f22010-10-20 04:21:13 +0000692err_out:
693 ibmveth_cleanup(adapter);
694 napi_disable(&adapter->napi);
695 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696}
697
698static int ibmveth_close(struct net_device *netdev)
699{
Wang Chen4cf16532008-11-12 23:38:14 -0800700 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 long lpar_rc;
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400702
Santiago Leonc43ced12010-09-03 18:29:14 +0000703 netdev_dbg(netdev, "close starting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700705 napi_disable(&adapter->napi);
706
Santiago Leon860f2422006-04-25 11:19:59 -0500707 if (!adapter->pool_config)
708 netif_stop_queue(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
Robert Jenningsee2e6112010-07-16 04:57:25 +0000710 h_vio_signal(adapter->vdev->unit_address, VIO_IRQ_DISABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 do {
713 lpar_rc = h_free_logical_lan(adapter->vdev->unit_address);
Segher Boessenkool706c8c92006-03-30 14:49:40 +0200714 } while (H_IS_LONG_BUSY(lpar_rc) || (lpar_rc == H_BUSY));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Santiago Leonf148f612010-09-03 18:29:30 +0000716 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000717 netdev_err(netdev, "h_free_logical_lan failed with %lx, "
718 "continuing with close\n", lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 }
720
Robert Jenningsee2e6112010-07-16 04:57:25 +0000721 free_irq(netdev->irq, netdev);
722
Anton Blanchardcbd52282014-08-22 11:36:52 +1000723 ibmveth_update_rx_no_buffer(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
725 ibmveth_cleanup(adapter);
726
Santiago Leonc43ced12010-09-03 18:29:14 +0000727 netdev_dbg(netdev, "close complete\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
729 return 0;
730}
731
Santiago Leonf148f612010-09-03 18:29:30 +0000732static int netdev_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
733{
734 cmd->supported = (SUPPORTED_1000baseT_Full | SUPPORTED_Autoneg |
735 SUPPORTED_FIBRE);
736 cmd->advertising = (ADVERTISED_1000baseT_Full | ADVERTISED_Autoneg |
737 ADVERTISED_FIBRE);
David Decotigny70739492011-04-27 18:32:40 +0000738 ethtool_cmd_speed_set(cmd, SPEED_1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 cmd->duplex = DUPLEX_FULL;
740 cmd->port = PORT_FIBRE;
741 cmd->phy_address = 0;
742 cmd->transceiver = XCVR_INTERNAL;
743 cmd->autoneg = AUTONEG_ENABLE;
744 cmd->maxtxpkt = 0;
745 cmd->maxrxpkt = 1;
746 return 0;
747}
748
Santiago Leonf148f612010-09-03 18:29:30 +0000749static void netdev_get_drvinfo(struct net_device *dev,
750 struct ethtool_drvinfo *info)
751{
Jiri Pirko7826d432013-01-06 00:44:26 +0000752 strlcpy(info->driver, ibmveth_driver_name, sizeof(info->driver));
753 strlcpy(info->version, ibmveth_driver_version, sizeof(info->version));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754}
755
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000756static netdev_features_t ibmveth_fix_features(struct net_device *dev,
757 netdev_features_t features)
Brian King5fc7e012007-08-17 09:16:31 -0500758{
Michał Mirosławb9367bf2011-04-19 02:14:25 +0000759 /*
760 * Since the ibmveth firmware interface does not have the
761 * concept of separate tx/rx checksum offload enable, if rx
762 * checksum is disabled we also have to disable tx checksum
763 * offload. Once we disable rx checksum offload, we are no
764 * longer allowed to send tx buffers that are not properly
765 * checksummed.
766 */
Brian King5fc7e012007-08-17 09:16:31 -0500767
Michał Mirosławb9367bf2011-04-19 02:14:25 +0000768 if (!(features & NETIF_F_RXCSUM))
Tom Herberta1882222015-12-14 11:19:43 -0800769 features &= ~NETIF_F_CSUM_MASK;
Michał Mirosławb9367bf2011-04-19 02:14:25 +0000770
771 return features;
Brian King5fc7e012007-08-17 09:16:31 -0500772}
773
Michał Mirosławb9367bf2011-04-19 02:14:25 +0000774static int ibmveth_set_csum_offload(struct net_device *dev, u32 data)
Brian King5fc7e012007-08-17 09:16:31 -0500775{
Wang Chen4cf16532008-11-12 23:38:14 -0800776 struct ibmveth_adapter *adapter = netdev_priv(dev);
Stephen Rothwellff5bfc32009-01-06 10:47:44 -0800777 unsigned long set_attr, clr_attr, ret_attr;
Santiago Leonab78df72010-09-03 18:28:52 +0000778 unsigned long set_attr6, clr_attr6;
David S. Miller8decf862011-09-22 03:23:13 -0400779 long ret, ret4, ret6;
Brian King5fc7e012007-08-17 09:16:31 -0500780 int rc1 = 0, rc2 = 0;
781 int restart = 0;
782
783 if (netif_running(dev)) {
784 restart = 1;
785 adapter->pool_config = 1;
786 ibmveth_close(dev);
787 adapter->pool_config = 0;
788 }
789
Brian King79ef4a42007-08-17 09:16:56 -0500790 set_attr = 0;
791 clr_attr = 0;
David S. Miller8decf862011-09-22 03:23:13 -0400792 set_attr6 = 0;
793 clr_attr6 = 0;
Brian King5fc7e012007-08-17 09:16:31 -0500794
Santiago Leonab78df72010-09-03 18:28:52 +0000795 if (data) {
Brian King79ef4a42007-08-17 09:16:56 -0500796 set_attr = IBMVETH_ILLAN_IPV4_TCP_CSUM;
Santiago Leonab78df72010-09-03 18:28:52 +0000797 set_attr6 = IBMVETH_ILLAN_IPV6_TCP_CSUM;
798 } else {
Brian King79ef4a42007-08-17 09:16:56 -0500799 clr_attr = IBMVETH_ILLAN_IPV4_TCP_CSUM;
Santiago Leonab78df72010-09-03 18:28:52 +0000800 clr_attr6 = IBMVETH_ILLAN_IPV6_TCP_CSUM;
801 }
Brian King5fc7e012007-08-17 09:16:31 -0500802
Brian King79ef4a42007-08-17 09:16:56 -0500803 ret = h_illan_attributes(adapter->vdev->unit_address, 0, 0, &ret_attr);
Brian King5fc7e012007-08-17 09:16:31 -0500804
Brian King79ef4a42007-08-17 09:16:56 -0500805 if (ret == H_SUCCESS && !(ret_attr & IBMVETH_ILLAN_ACTIVE_TRUNK) &&
806 !(ret_attr & IBMVETH_ILLAN_TRUNK_PRI_MASK) &&
807 (ret_attr & IBMVETH_ILLAN_PADDED_PKT_CSUM)) {
David S. Miller8decf862011-09-22 03:23:13 -0400808 ret4 = h_illan_attributes(adapter->vdev->unit_address, clr_attr,
Brian King79ef4a42007-08-17 09:16:56 -0500809 set_attr, &ret_attr);
Brian King5fc7e012007-08-17 09:16:31 -0500810
David S. Miller8decf862011-09-22 03:23:13 -0400811 if (ret4 != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000812 netdev_err(dev, "unable to change IPv4 checksum "
813 "offload settings. %d rc=%ld\n",
David S. Miller8decf862011-09-22 03:23:13 -0400814 data, ret4);
Brian King5fc7e012007-08-17 09:16:31 -0500815
David S. Miller8decf862011-09-22 03:23:13 -0400816 h_illan_attributes(adapter->vdev->unit_address,
817 set_attr, clr_attr, &ret_attr);
818
819 if (data == 1)
820 dev->features &= ~NETIF_F_IP_CSUM;
821
Santiago Leonf148f612010-09-03 18:29:30 +0000822 } else {
Santiago Leonab78df72010-09-03 18:28:52 +0000823 adapter->fw_ipv4_csum_support = data;
Santiago Leonf148f612010-09-03 18:29:30 +0000824 }
Santiago Leonab78df72010-09-03 18:28:52 +0000825
826 ret6 = h_illan_attributes(adapter->vdev->unit_address,
827 clr_attr6, set_attr6, &ret_attr);
828
829 if (ret6 != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000830 netdev_err(dev, "unable to change IPv6 checksum "
831 "offload settings. %d rc=%ld\n",
David S. Miller8decf862011-09-22 03:23:13 -0400832 data, ret6);
Santiago Leonab78df72010-09-03 18:28:52 +0000833
David S. Miller8decf862011-09-22 03:23:13 -0400834 h_illan_attributes(adapter->vdev->unit_address,
835 set_attr6, clr_attr6, &ret_attr);
836
837 if (data == 1)
838 dev->features &= ~NETIF_F_IPV6_CSUM;
839
Santiago Leonab78df72010-09-03 18:28:52 +0000840 } else
841 adapter->fw_ipv6_csum_support = data;
842
David S. Miller8decf862011-09-22 03:23:13 -0400843 if (ret4 == H_SUCCESS || ret6 == H_SUCCESS)
Michał Mirosławb9367bf2011-04-19 02:14:25 +0000844 adapter->rx_csum = data;
Santiago Leonab78df72010-09-03 18:28:52 +0000845 else
846 rc1 = -EIO;
Brian King5fc7e012007-08-17 09:16:31 -0500847 } else {
848 rc1 = -EIO;
Santiago Leon21c2dec2010-09-03 18:29:19 +0000849 netdev_err(dev, "unable to change checksum offload settings."
850 " %d rc=%ld ret_attr=%lx\n", data, ret,
851 ret_attr);
Brian King5fc7e012007-08-17 09:16:31 -0500852 }
853
854 if (restart)
855 rc2 = ibmveth_open(dev);
856
857 return rc1 ? rc1 : rc2;
858}
859
Thomas Falcon07e6a972015-07-14 10:51:51 -0500860static int ibmveth_set_tso(struct net_device *dev, u32 data)
861{
862 struct ibmveth_adapter *adapter = netdev_priv(dev);
863 unsigned long set_attr, clr_attr, ret_attr;
864 long ret1, ret2;
865 int rc1 = 0, rc2 = 0;
866 int restart = 0;
867
868 if (netif_running(dev)) {
869 restart = 1;
870 adapter->pool_config = 1;
871 ibmveth_close(dev);
872 adapter->pool_config = 0;
873 }
874
875 set_attr = 0;
876 clr_attr = 0;
877
878 if (data)
879 set_attr = IBMVETH_ILLAN_LRG_SR_ENABLED;
880 else
881 clr_attr = IBMVETH_ILLAN_LRG_SR_ENABLED;
882
883 ret1 = h_illan_attributes(adapter->vdev->unit_address, 0, 0, &ret_attr);
884
885 if (ret1 == H_SUCCESS && (ret_attr & IBMVETH_ILLAN_LRG_SND_SUPPORT) &&
886 !old_large_send) {
887 ret2 = h_illan_attributes(adapter->vdev->unit_address, clr_attr,
888 set_attr, &ret_attr);
889
890 if (ret2 != H_SUCCESS) {
891 netdev_err(dev, "unable to change tso settings. %d rc=%ld\n",
892 data, ret2);
893
894 h_illan_attributes(adapter->vdev->unit_address,
895 set_attr, clr_attr, &ret_attr);
896
897 if (data == 1)
898 dev->features &= ~(NETIF_F_TSO | NETIF_F_TSO6);
899 rc1 = -EIO;
900
901 } else {
902 adapter->fw_large_send_support = data;
903 adapter->large_send = data;
904 }
905 } else {
906 /* Older firmware version of large send offload does not
907 * support tcp6/ipv6
908 */
909 if (data == 1) {
910 dev->features &= ~NETIF_F_TSO6;
911 netdev_info(dev, "TSO feature requires all partitions to have updated driver");
912 }
913 adapter->large_send = data;
914 }
915
916 if (restart)
917 rc2 = ibmveth_open(dev);
918
919 return rc1 ? rc1 : rc2;
920}
921
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000922static int ibmveth_set_features(struct net_device *dev,
923 netdev_features_t features)
Brian King5fc7e012007-08-17 09:16:31 -0500924{
Wang Chen4cf16532008-11-12 23:38:14 -0800925 struct ibmveth_adapter *adapter = netdev_priv(dev);
Michał Mirosławb9367bf2011-04-19 02:14:25 +0000926 int rx_csum = !!(features & NETIF_F_RXCSUM);
Thomas Falcon07e6a972015-07-14 10:51:51 -0500927 int large_send = !!(features & (NETIF_F_TSO | NETIF_F_TSO6));
928 int rc1 = 0, rc2 = 0;
Thomas Falcon8641dd82015-04-29 16:25:45 -0500929
Thomas Falcon07e6a972015-07-14 10:51:51 -0500930 if (rx_csum != adapter->rx_csum) {
931 rc1 = ibmveth_set_csum_offload(dev, rx_csum);
932 if (rc1 && !adapter->rx_csum)
933 dev->features =
Tom Herberta1882222015-12-14 11:19:43 -0800934 features & ~(NETIF_F_CSUM_MASK |
935 NETIF_F_RXCSUM);
Thomas Falcon07e6a972015-07-14 10:51:51 -0500936 }
Brian King5fc7e012007-08-17 09:16:31 -0500937
Thomas Falcon07e6a972015-07-14 10:51:51 -0500938 if (large_send != adapter->large_send) {
939 rc2 = ibmveth_set_tso(dev, large_send);
940 if (rc2 && !adapter->large_send)
941 dev->features =
942 features & ~(NETIF_F_TSO | NETIF_F_TSO6);
943 }
Brian King5fc7e012007-08-17 09:16:31 -0500944
Thomas Falcon07e6a972015-07-14 10:51:51 -0500945 return rc1 ? rc1 : rc2;
Brian King5fc7e012007-08-17 09:16:31 -0500946}
947
Brian Kingddbb4de2007-08-17 09:16:43 -0500948static void ibmveth_get_strings(struct net_device *dev, u32 stringset, u8 *data)
949{
950 int i;
951
952 if (stringset != ETH_SS_STATS)
953 return;
954
955 for (i = 0; i < ARRAY_SIZE(ibmveth_stats); i++, data += ETH_GSTRING_LEN)
956 memcpy(data, ibmveth_stats[i].name, ETH_GSTRING_LEN);
957}
958
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700959static int ibmveth_get_sset_count(struct net_device *dev, int sset)
Brian Kingddbb4de2007-08-17 09:16:43 -0500960{
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700961 switch (sset) {
962 case ETH_SS_STATS:
963 return ARRAY_SIZE(ibmveth_stats);
964 default:
965 return -EOPNOTSUPP;
966 }
Brian Kingddbb4de2007-08-17 09:16:43 -0500967}
968
969static void ibmveth_get_ethtool_stats(struct net_device *dev,
970 struct ethtool_stats *stats, u64 *data)
971{
972 int i;
Wang Chen4cf16532008-11-12 23:38:14 -0800973 struct ibmveth_adapter *adapter = netdev_priv(dev);
Brian Kingddbb4de2007-08-17 09:16:43 -0500974
975 for (i = 0; i < ARRAY_SIZE(ibmveth_stats); i++)
976 data[i] = IBMVETH_GET_STAT(adapter, ibmveth_stats[i].offset);
977}
978
Jeff Garzik7282d492006-09-13 14:30:00 -0400979static const struct ethtool_ops netdev_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 .get_drvinfo = netdev_get_drvinfo,
981 .get_settings = netdev_get_settings,
Ben Hutchingsed4ba4b2010-12-09 12:10:25 +0000982 .get_link = ethtool_op_get_link,
Brian Kingddbb4de2007-08-17 09:16:43 -0500983 .get_strings = ibmveth_get_strings,
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700984 .get_sset_count = ibmveth_get_sset_count,
Brian Kingddbb4de2007-08-17 09:16:43 -0500985 .get_ethtool_stats = ibmveth_get_ethtool_stats,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986};
987
988static int ibmveth_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
989{
990 return -EOPNOTSUPP;
991}
992
993#define page_offset(v) ((unsigned long)(v) & ((1 << 12) - 1))
994
Santiago Leon6e8ab302010-09-03 18:28:36 +0000995static int ibmveth_send(struct ibmveth_adapter *adapter,
Thomas Falcon07e6a972015-07-14 10:51:51 -0500996 union ibmveth_buf_desc *descs, unsigned long mss)
Santiago Leon6e8ab302010-09-03 18:28:36 +0000997{
998 unsigned long correlator;
999 unsigned int retry_count;
1000 unsigned long ret;
1001
1002 /*
1003 * The retry count sets a maximum for the number of broadcast and
1004 * multicast destinations within the system.
1005 */
1006 retry_count = 1024;
1007 correlator = 0;
1008 do {
1009 ret = h_send_logical_lan(adapter->vdev->unit_address,
1010 descs[0].desc, descs[1].desc,
1011 descs[2].desc, descs[3].desc,
1012 descs[4].desc, descs[5].desc,
Thomas Falcon07e6a972015-07-14 10:51:51 -05001013 correlator, &correlator, mss,
1014 adapter->fw_large_send_support);
Santiago Leon6e8ab302010-09-03 18:28:36 +00001015 } while ((ret == H_BUSY) && (retry_count--));
1016
1017 if (ret != H_SUCCESS && ret != H_DROPPED) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001018 netdev_err(adapter->netdev, "tx: h_send_logical_lan failed "
1019 "with rc=%ld\n", ret);
Santiago Leon6e8ab302010-09-03 18:28:36 +00001020 return 1;
1021 }
1022
1023 return 0;
1024}
1025
Stephen Hemminger613573252009-08-31 19:50:58 +00001026static netdev_tx_t ibmveth_start_xmit(struct sk_buff *skb,
1027 struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028{
Wang Chen4cf16532008-11-12 23:38:14 -08001029 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Santiago Leon6e8ab302010-09-03 18:28:36 +00001030 unsigned int desc_flags;
1031 union ibmveth_buf_desc descs[6];
1032 int last, i;
1033 int force_bounce = 0;
David S. Miller8decf862011-09-22 03:23:13 -04001034 dma_addr_t dma_addr;
Thomas Falcon07e6a972015-07-14 10:51:51 -05001035 unsigned long mss = 0;
Santiago Leon60296d92005-10-26 10:47:16 -06001036
Santiago Leon6e8ab302010-09-03 18:28:36 +00001037 /*
1038 * veth handles a maximum of 6 segments including the header, so
1039 * we have to linearize the skb if there are more than this.
1040 */
1041 if (skb_shinfo(skb)->nr_frags > 5 && __skb_linearize(skb)) {
1042 netdev->stats.tx_dropped++;
Brian Kingf4ff2872007-09-15 13:36:07 -07001043 goto out;
1044 }
1045
Santiago Leon6e8ab302010-09-03 18:28:36 +00001046 /* veth can't checksum offload UDP */
1047 if (skb->ip_summed == CHECKSUM_PARTIAL &&
Santiago Leonab78df72010-09-03 18:28:52 +00001048 ((skb->protocol == htons(ETH_P_IP) &&
1049 ip_hdr(skb)->protocol != IPPROTO_TCP) ||
1050 (skb->protocol == htons(ETH_P_IPV6) &&
1051 ipv6_hdr(skb)->nexthdr != IPPROTO_TCP)) &&
1052 skb_checksum_help(skb)) {
1053
Santiago Leon21c2dec2010-09-03 18:29:19 +00001054 netdev_err(netdev, "tx: failed to checksum packet\n");
Santiago Leon6e8ab302010-09-03 18:28:36 +00001055 netdev->stats.tx_dropped++;
1056 goto out;
1057 }
Brian Kingf4ff2872007-09-15 13:36:07 -07001058
Santiago Leon6e8ab302010-09-03 18:28:36 +00001059 desc_flags = IBMVETH_BUF_VALID;
1060
Thomas Falcon07e6a972015-07-14 10:51:51 -05001061 if (skb_is_gso(skb) && adapter->fw_large_send_support)
1062 desc_flags |= IBMVETH_BUF_LRG_SND;
1063
Santiago Leon6e8ab302010-09-03 18:28:36 +00001064 if (skb->ip_summed == CHECKSUM_PARTIAL) {
1065 unsigned char *buf = skb_transport_header(skb) +
1066 skb->csum_offset;
1067
1068 desc_flags |= (IBMVETH_BUF_NO_CSUM | IBMVETH_BUF_CSUM_GOOD);
Brian Kingf4ff2872007-09-15 13:36:07 -07001069
1070 /* Need to zero out the checksum */
1071 buf[0] = 0;
1072 buf[1] = 0;
1073 }
1074
Santiago Leon6e8ab302010-09-03 18:28:36 +00001075retry_bounce:
1076 memset(descs, 0, sizeof(descs));
Santiago Leonc08cc3c2010-09-03 18:28:20 +00001077
Santiago Leon6e8ab302010-09-03 18:28:36 +00001078 /*
1079 * If a linear packet is below the rx threshold then
1080 * copy it into the static bounce buffer. This avoids the
1081 * cost of a TCE insert and remove.
1082 */
1083 if (force_bounce || (!skb_is_nonlinear(skb) &&
1084 (skb->len < tx_copybreak))) {
Robert Jennings1096d632008-07-24 04:34:52 +10001085 skb_copy_from_linear_data(skb, adapter->bounce_buffer,
1086 skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087
Santiago Leon6e8ab302010-09-03 18:28:36 +00001088 descs[0].fields.flags_len = desc_flags | skb->len;
1089 descs[0].fields.address = adapter->bounce_buffer_dma;
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001090
Thomas Falcon07e6a972015-07-14 10:51:51 -05001091 if (ibmveth_send(adapter, descs, 0)) {
Santiago Leon6e8ab302010-09-03 18:28:36 +00001092 adapter->tx_send_failed++;
1093 netdev->stats.tx_dropped++;
1094 } else {
1095 netdev->stats.tx_packets++;
1096 netdev->stats.tx_bytes += skb->len;
1097 }
1098
1099 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 }
1101
Santiago Leon6e8ab302010-09-03 18:28:36 +00001102 /* Map the header */
David S. Miller8decf862011-09-22 03:23:13 -04001103 dma_addr = dma_map_single(&adapter->vdev->dev, skb->data,
1104 skb_headlen(skb), DMA_TO_DEVICE);
1105 if (dma_mapping_error(&adapter->vdev->dev, dma_addr))
Santiago Leon6e8ab302010-09-03 18:28:36 +00001106 goto map_failed;
1107
1108 descs[0].fields.flags_len = desc_flags | skb_headlen(skb);
David S. Miller8decf862011-09-22 03:23:13 -04001109 descs[0].fields.address = dma_addr;
Santiago Leon6e8ab302010-09-03 18:28:36 +00001110
1111 /* Map the frags */
1112 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001113 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
Santiago Leon6e8ab302010-09-03 18:28:36 +00001114
Ian Campbell8838a532011-08-31 00:46:53 +00001115 dma_addr = skb_frag_dma_map(&adapter->vdev->dev, frag, 0,
Eric Dumazet9e903e02011-10-18 21:00:24 +00001116 skb_frag_size(frag), DMA_TO_DEVICE);
Santiago Leon6e8ab302010-09-03 18:28:36 +00001117
1118 if (dma_mapping_error(&adapter->vdev->dev, dma_addr))
1119 goto map_failed_frags;
1120
Eric Dumazet9e903e02011-10-18 21:00:24 +00001121 descs[i+1].fields.flags_len = desc_flags | skb_frag_size(frag);
Santiago Leon6e8ab302010-09-03 18:28:36 +00001122 descs[i+1].fields.address = dma_addr;
1123 }
1124
Thomas Falcon07e6a972015-07-14 10:51:51 -05001125 if (skb_is_gso(skb)) {
1126 if (adapter->fw_large_send_support) {
1127 mss = (unsigned long)skb_shinfo(skb)->gso_size;
1128 adapter->tx_large_packets++;
1129 } else if (!skb_is_gso_v6(skb)) {
1130 /* Put -1 in the IP checksum to tell phyp it
1131 * is a largesend packet. Put the mss in
1132 * the TCP checksum.
1133 */
1134 ip_hdr(skb)->check = 0xffff;
1135 tcp_hdr(skb)->check =
1136 cpu_to_be16(skb_shinfo(skb)->gso_size);
1137 adapter->tx_large_packets++;
1138 }
Thomas Falcon8641dd82015-04-29 16:25:45 -05001139 }
1140
Thomas Falcon07e6a972015-07-14 10:51:51 -05001141 if (ibmveth_send(adapter, descs, mss)) {
Santiago Leon6e8ab302010-09-03 18:28:36 +00001142 adapter->tx_send_failed++;
1143 netdev->stats.tx_dropped++;
1144 } else {
1145 netdev->stats.tx_packets++;
1146 netdev->stats.tx_bytes += skb->len;
1147 }
1148
David S. Miller8decf862011-09-22 03:23:13 -04001149 dma_unmap_single(&adapter->vdev->dev,
1150 descs[0].fields.address,
1151 descs[0].fields.flags_len & IBMVETH_BUF_LEN_MASK,
1152 DMA_TO_DEVICE);
1153
1154 for (i = 1; i < skb_shinfo(skb)->nr_frags + 1; i++)
Santiago Leon6e8ab302010-09-03 18:28:36 +00001155 dma_unmap_page(&adapter->vdev->dev, descs[i].fields.address,
1156 descs[i].fields.flags_len & IBMVETH_BUF_LEN_MASK,
1157 DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158
Santiago Leone8cb7eb2010-09-03 18:28:15 +00001159out:
Eric W. Biederman26faa9d2014-03-15 17:29:34 -07001160 dev_consume_skb_any(skb);
Patrick McHardy6ed10652009-06-23 06:03:08 +00001161 return NETDEV_TX_OK;
Santiago Leon6e8ab302010-09-03 18:28:36 +00001162
1163map_failed_frags:
1164 last = i+1;
1165 for (i = 0; i < last; i++)
1166 dma_unmap_page(&adapter->vdev->dev, descs[i].fields.address,
1167 descs[i].fields.flags_len & IBMVETH_BUF_LEN_MASK,
1168 DMA_TO_DEVICE);
1169
1170map_failed:
1171 if (!firmware_has_feature(FW_FEATURE_CMO))
Santiago Leon21c2dec2010-09-03 18:29:19 +00001172 netdev_err(netdev, "tx: unable to map xmit buffer\n");
Santiago Leon6e8ab302010-09-03 18:28:36 +00001173 adapter->tx_map_failed++;
Thomas Falcon2c42bf42016-03-03 15:22:36 -06001174 if (skb_linearize(skb)) {
1175 netdev->stats.tx_dropped++;
1176 goto out;
1177 }
Santiago Leon6e8ab302010-09-03 18:28:36 +00001178 force_bounce = 1;
1179 goto retry_bounce;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180}
1181
Thomas Falcon7b596732016-12-08 16:40:03 -06001182static void ibmveth_rx_mss_helper(struct sk_buff *skb, u16 mss, int lrg_pkt)
1183{
Thomas Falcon3e5a7f52017-03-17 00:48:25 +00001184 struct tcphdr *tcph;
Thomas Falcon7b596732016-12-08 16:40:03 -06001185 int offset = 0;
Thomas Falcon3e5a7f52017-03-17 00:48:25 +00001186 int hdr_len;
Thomas Falcon7b596732016-12-08 16:40:03 -06001187
1188 /* only TCP packets will be aggregated */
1189 if (skb->protocol == htons(ETH_P_IP)) {
1190 struct iphdr *iph = (struct iphdr *)skb->data;
1191
1192 if (iph->protocol == IPPROTO_TCP) {
1193 offset = iph->ihl * 4;
1194 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
1195 } else {
1196 return;
1197 }
1198 } else if (skb->protocol == htons(ETH_P_IPV6)) {
1199 struct ipv6hdr *iph6 = (struct ipv6hdr *)skb->data;
1200
1201 if (iph6->nexthdr == IPPROTO_TCP) {
1202 offset = sizeof(struct ipv6hdr);
1203 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV6;
1204 } else {
1205 return;
1206 }
1207 } else {
1208 return;
1209 }
1210 /* if mss is not set through Large Packet bit/mss in rx buffer,
1211 * expect that the mss will be written to the tcp header checksum.
1212 */
Thomas Falcon3e5a7f52017-03-17 00:48:25 +00001213 tcph = (struct tcphdr *)(skb->data + offset);
Thomas Falcon7b596732016-12-08 16:40:03 -06001214 if (lrg_pkt) {
1215 skb_shinfo(skb)->gso_size = mss;
1216 } else if (offset) {
Thomas Falcon7b596732016-12-08 16:40:03 -06001217 skb_shinfo(skb)->gso_size = ntohs(tcph->check);
1218 tcph->check = 0;
1219 }
Thomas Falcon3e5a7f52017-03-17 00:48:25 +00001220
1221 if (skb_shinfo(skb)->gso_size) {
1222 hdr_len = offset + tcph->doff * 4;
1223 skb_shinfo(skb)->gso_segs =
1224 DIV_ROUND_UP(skb->len - hdr_len,
1225 skb_shinfo(skb)->gso_size);
1226 }
Thomas Falcon7b596732016-12-08 16:40:03 -06001227}
1228
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001229static int ibmveth_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230{
Santiago Leonf148f612010-09-03 18:29:30 +00001231 struct ibmveth_adapter *adapter =
1232 container_of(napi, struct ibmveth_adapter, napi);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001233 struct net_device *netdev = adapter->netdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 int frames_processed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 unsigned long lpar_rc;
Thomas Falcon9c7e8bc2015-04-29 16:25:47 -05001236 struct iphdr *iph;
Thomas Falcon7b596732016-12-08 16:40:03 -06001237 u16 mss = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
Santiago Leonf148f612010-09-03 18:29:30 +00001239restart_poll:
Eric W. Biedermancb013ea2014-03-14 18:03:50 -07001240 while (frames_processed < budget) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001241 if (!ibmveth_rxq_pending_buffer(adapter))
1242 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243
Anton Blanchardf89e49e2010-09-06 18:21:41 -07001244 smp_rmb();
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001245 if (!ibmveth_rxq_buffer_valid(adapter)) {
1246 wmb(); /* suggested by larson1 */
1247 adapter->rx_invalid_buffer++;
Santiago Leonc43ced12010-09-03 18:29:14 +00001248 netdev_dbg(netdev, "recycling invalid buffer\n");
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001249 ibmveth_rxq_recycle_buffer(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 } else {
Santiago Leon8d86c612010-09-03 18:28:25 +00001251 struct sk_buff *skb, *new_skb;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001252 int length = ibmveth_rxq_frame_length(adapter);
1253 int offset = ibmveth_rxq_frame_offset(adapter);
Brian Kingf4ff2872007-09-15 13:36:07 -07001254 int csum_good = ibmveth_rxq_csum_good(adapter);
Thomas Falcon7b596732016-12-08 16:40:03 -06001255 int lrg_pkt = ibmveth_rxq_large_packet(adapter);
Brian Kingf4ff2872007-09-15 13:36:07 -07001256
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001257 skb = ibmveth_rxq_get_buffer(adapter);
1258
Thomas Falcon7b596732016-12-08 16:40:03 -06001259 /* if the large packet bit is set in the rx queue
1260 * descriptor, the mss will be written by PHYP eight
1261 * bytes from the start of the rx buffer, which is
1262 * skb->data at this stage
1263 */
1264 if (lrg_pkt) {
1265 __be64 *rxmss = (__be64 *)(skb->data + 8);
1266
1267 mss = (u16)be64_to_cpu(*rxmss);
1268 }
1269
Santiago Leon8d86c612010-09-03 18:28:25 +00001270 new_skb = NULL;
1271 if (length < rx_copybreak)
1272 new_skb = netdev_alloc_skb(netdev, length);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001273
Santiago Leon8d86c612010-09-03 18:28:25 +00001274 if (new_skb) {
1275 skb_copy_to_linear_data(new_skb,
1276 skb->data + offset,
1277 length);
Santiago Leon0c26b672010-09-03 18:28:41 +00001278 if (rx_flush)
1279 ibmveth_flush_buffer(skb->data,
1280 length + offset);
David S. Miller8decf862011-09-22 03:23:13 -04001281 if (!ibmveth_rxq_recycle_buffer(adapter))
1282 kfree_skb(skb);
Santiago Leon8d86c612010-09-03 18:28:25 +00001283 skb = new_skb;
Santiago Leon8d86c612010-09-03 18:28:25 +00001284 } else {
1285 ibmveth_rxq_harvest_buffer(adapter);
1286 skb_reserve(skb, offset);
1287 }
1288
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001289 skb_put(skb, length);
1290 skb->protocol = eth_type_trans(skb, netdev);
1291
Thomas Falcon9c7e8bc2015-04-29 16:25:47 -05001292 if (csum_good) {
Santiago Leon8d86c612010-09-03 18:28:25 +00001293 skb->ip_summed = CHECKSUM_UNNECESSARY;
Thomas Falcon9c7e8bc2015-04-29 16:25:47 -05001294 if (be16_to_cpu(skb->protocol) == ETH_P_IP) {
1295 iph = (struct iphdr *)skb->data;
1296
1297 /* If the IP checksum is not offloaded and if the packet
1298 * is large send, the checksum must be rebuilt.
1299 */
1300 if (iph->check == 0xffff) {
1301 iph->check = 0;
1302 iph->check = ip_fast_csum((unsigned char *)iph, iph->ihl);
Thomas Falcon9c7e8bc2015-04-29 16:25:47 -05001303 }
1304 }
1305 }
Santiago Leon8d86c612010-09-03 18:28:25 +00001306
Thomas Falcon7b596732016-12-08 16:40:03 -06001307 if (length > netdev->mtu + ETH_HLEN) {
1308 ibmveth_rx_mss_helper(skb, mss, lrg_pkt);
1309 adapter->rx_large_packets++;
1310 }
1311
Thomas Falcon92ec8272015-04-29 16:25:46 -05001312 napi_gro_receive(napi, skb); /* send it up */
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001313
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001314 netdev->stats.rx_packets++;
1315 netdev->stats.rx_bytes += length;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001316 frames_processed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 }
Eric W. Biedermancb013ea2014-03-14 18:03:50 -07001318 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319
Santiago Leone2adbcb2005-10-26 10:47:08 -06001320 ibmveth_replenish_task(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001322 if (frames_processed < budget) {
Yongbae Park4736edc2015-03-10 11:15:39 +09001323 napi_complete(napi);
1324
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001325 /* We think we are done - reenable interrupts,
1326 * then check once more to make sure we are done.
1327 */
1328 lpar_rc = h_vio_signal(adapter->vdev->unit_address,
1329 VIO_IRQ_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330
Santiago Leon64859112010-09-03 18:29:41 +00001331 BUG_ON(lpar_rc != H_SUCCESS);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001332
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001333 if (ibmveth_rxq_pending_buffer(adapter) &&
Ben Hutchings288379f2009-01-19 16:43:59 -08001334 napi_reschedule(napi)) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001335 lpar_rc = h_vio_signal(adapter->vdev->unit_address,
1336 VIO_IRQ_DISABLE);
1337 goto restart_poll;
1338 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 }
1340
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001341 return frames_processed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342}
1343
David Howells7d12e782006-10-05 14:55:46 +01001344static irqreturn_t ibmveth_interrupt(int irq, void *dev_instance)
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001345{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 struct net_device *netdev = dev_instance;
Wang Chen4cf16532008-11-12 23:38:14 -08001347 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 unsigned long lpar_rc;
1349
Ben Hutchings288379f2009-01-19 16:43:59 -08001350 if (napi_schedule_prep(&adapter->napi)) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001351 lpar_rc = h_vio_signal(adapter->vdev->unit_address,
1352 VIO_IRQ_DISABLE);
Santiago Leon64859112010-09-03 18:29:41 +00001353 BUG_ON(lpar_rc != H_SUCCESS);
Ben Hutchings288379f2009-01-19 16:43:59 -08001354 __napi_schedule(&adapter->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 }
1356 return IRQ_HANDLED;
1357}
1358
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359static void ibmveth_set_multicast_list(struct net_device *netdev)
1360{
Wang Chen4cf16532008-11-12 23:38:14 -08001361 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 unsigned long lpar_rc;
1363
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001364 if ((netdev->flags & IFF_PROMISC) ||
1365 (netdev_mc_count(netdev) > adapter->mcastFilterSize)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 lpar_rc = h_multicast_ctrl(adapter->vdev->unit_address,
1367 IbmVethMcastEnableRecv |
1368 IbmVethMcastDisableFiltering,
1369 0);
Santiago Leonf148f612010-09-03 18:29:30 +00001370 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001371 netdev_err(netdev, "h_multicast_ctrl rc=%ld when "
1372 "entering promisc mode\n", lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 }
1374 } else {
Jiri Pirko22bedad32010-04-01 21:22:57 +00001375 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 /* clear the filter table & disable filtering */
1377 lpar_rc = h_multicast_ctrl(adapter->vdev->unit_address,
1378 IbmVethMcastEnableRecv |
1379 IbmVethMcastDisableFiltering |
1380 IbmVethMcastClearFilterTable,
1381 0);
Santiago Leonf148f612010-09-03 18:29:30 +00001382 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001383 netdev_err(netdev, "h_multicast_ctrl rc=%ld when "
1384 "attempting to clear filter table\n",
1385 lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 }
1387 /* add the addresses to the filter table */
Jiri Pirko22bedad32010-04-01 21:22:57 +00001388 netdev_for_each_mc_addr(ha, netdev) {
Santiago Leonf148f612010-09-03 18:29:30 +00001389 /* add the multicast address to the filter table */
Anton Blanchardd746ca92014-03-05 14:51:37 +11001390 u64 mcast_addr;
1391 mcast_addr = ibmveth_encode_mac_addr(ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 lpar_rc = h_multicast_ctrl(adapter->vdev->unit_address,
1393 IbmVethMcastAddFilter,
1394 mcast_addr);
Santiago Leonf148f612010-09-03 18:29:30 +00001395 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001396 netdev_err(netdev, "h_multicast_ctrl rc=%ld "
1397 "when adding an entry to the filter "
1398 "table\n", lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 }
1400 }
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001401
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 /* re-enable filtering */
1403 lpar_rc = h_multicast_ctrl(adapter->vdev->unit_address,
1404 IbmVethMcastEnableFiltering,
1405 0);
Santiago Leonf148f612010-09-03 18:29:30 +00001406 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001407 netdev_err(netdev, "h_multicast_ctrl rc=%ld when "
1408 "enabling filtering\n", lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 }
1410 }
1411}
1412
1413static int ibmveth_change_mtu(struct net_device *dev, int new_mtu)
1414{
Wang Chen4cf16532008-11-12 23:38:14 -08001415 struct ibmveth_adapter *adapter = netdev_priv(dev);
Robert Jennings1096d632008-07-24 04:34:52 +10001416 struct vio_dev *viodev = adapter->vdev;
Santiago Leon860f2422006-04-25 11:19:59 -05001417 int new_mtu_oh = new_mtu + IBMVETH_BUFF_OH;
Robert Jennings0645bab2010-08-17 09:15:45 +00001418 int i, rc;
1419 int need_restart = 0;
Santiago Leonb6d35182005-10-26 10:47:01 -06001420
Santiago Leon517e80e2010-09-03 18:29:25 +00001421 if (new_mtu < IBMVETH_MIN_MTU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 return -EINVAL;
Santiago Leonb6d35182005-10-26 10:47:01 -06001423
Santiago Leon517e80e2010-09-03 18:29:25 +00001424 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++)
David Gibson4fce1482015-04-23 14:43:05 +10001425 if (new_mtu_oh <= adapter->rx_buff_pool[i].buff_size)
Brian Kingce6eea52007-06-08 14:05:17 -05001426 break;
1427
Santiago Leon517e80e2010-09-03 18:29:25 +00001428 if (i == IBMVETH_NUM_BUFF_POOLS)
Brian Kingce6eea52007-06-08 14:05:17 -05001429 return -EINVAL;
1430
Santiago Leonea866e62008-07-24 04:34:23 +10001431 /* Deactivate all the buffer pools so that the next loop can activate
1432 only the buffer pools necessary to hold the new MTU */
Robert Jennings0645bab2010-08-17 09:15:45 +00001433 if (netif_running(adapter->netdev)) {
1434 need_restart = 1;
1435 adapter->pool_config = 1;
1436 ibmveth_close(adapter->netdev);
1437 adapter->pool_config = 0;
1438 }
Brian Kingce6eea52007-06-08 14:05:17 -05001439
Santiago Leonea866e62008-07-24 04:34:23 +10001440 /* Look for an active buffer pool that can hold the new MTU */
Santiago Leonf148f612010-09-03 18:29:30 +00001441 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++) {
Santiago Leonea866e62008-07-24 04:34:23 +10001442 adapter->rx_buff_pool[i].active = 1;
1443
David Gibson4fce1482015-04-23 14:43:05 +10001444 if (new_mtu_oh <= adapter->rx_buff_pool[i].buff_size) {
Robert Jennings1096d632008-07-24 04:34:52 +10001445 dev->mtu = new_mtu;
1446 vio_cmo_set_dev_desired(viodev,
1447 ibmveth_get_desired_dma
1448 (viodev));
Robert Jennings0645bab2010-08-17 09:15:45 +00001449 if (need_restart) {
1450 return ibmveth_open(adapter->netdev);
1451 }
Santiago Leon860f2422006-04-25 11:19:59 -05001452 return 0;
Santiago Leonb6d35182005-10-26 10:47:01 -06001453 }
Santiago Leonb6d35182005-10-26 10:47:01 -06001454 }
Robert Jennings0645bab2010-08-17 09:15:45 +00001455
1456 if (need_restart && (rc = ibmveth_open(adapter->netdev)))
1457 return rc;
1458
Santiago Leon860f2422006-04-25 11:19:59 -05001459 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460}
1461
Santiago Leon6b422372006-10-03 12:24:28 -05001462#ifdef CONFIG_NET_POLL_CONTROLLER
1463static void ibmveth_poll_controller(struct net_device *dev)
1464{
Wang Chen4cf16532008-11-12 23:38:14 -08001465 ibmveth_replenish_task(netdev_priv(dev));
Andrew Morton5f771132006-10-10 14:33:30 -07001466 ibmveth_interrupt(dev->irq, dev);
Santiago Leon6b422372006-10-03 12:24:28 -05001467}
1468#endif
1469
Robert Jennings1096d632008-07-24 04:34:52 +10001470/**
1471 * ibmveth_get_desired_dma - Calculate IO memory desired by the driver
1472 *
1473 * @vdev: struct vio_dev for the device whose desired IO mem is to be returned
1474 *
1475 * Return value:
1476 * Number of bytes of IO data the driver will need to perform well.
1477 */
1478static unsigned long ibmveth_get_desired_dma(struct vio_dev *vdev)
1479{
1480 struct net_device *netdev = dev_get_drvdata(&vdev->dev);
1481 struct ibmveth_adapter *adapter;
Alistair Poppled0847752013-12-09 18:17:03 +11001482 struct iommu_table *tbl;
Robert Jennings1096d632008-07-24 04:34:52 +10001483 unsigned long ret;
1484 int i;
1485 int rxqentries = 1;
1486
Alistair Poppled0847752013-12-09 18:17:03 +11001487 tbl = get_iommu_table_base(&vdev->dev);
1488
Robert Jennings1096d632008-07-24 04:34:52 +10001489 /* netdev inits at probe time along with the structures we need below*/
1490 if (netdev == NULL)
Alistair Poppled0847752013-12-09 18:17:03 +11001491 return IOMMU_PAGE_ALIGN(IBMVETH_IO_ENTITLEMENT_DEFAULT, tbl);
Robert Jennings1096d632008-07-24 04:34:52 +10001492
1493 adapter = netdev_priv(netdev);
1494
1495 ret = IBMVETH_BUFF_LIST_SIZE + IBMVETH_FILT_LIST_SIZE;
Alistair Poppled0847752013-12-09 18:17:03 +11001496 ret += IOMMU_PAGE_ALIGN(netdev->mtu, tbl);
Robert Jennings1096d632008-07-24 04:34:52 +10001497
Santiago Leon517e80e2010-09-03 18:29:25 +00001498 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++) {
Robert Jennings1096d632008-07-24 04:34:52 +10001499 /* add the size of the active receive buffers */
1500 if (adapter->rx_buff_pool[i].active)
1501 ret +=
1502 adapter->rx_buff_pool[i].size *
1503 IOMMU_PAGE_ALIGN(adapter->rx_buff_pool[i].
Alistair Poppled0847752013-12-09 18:17:03 +11001504 buff_size, tbl);
Robert Jennings1096d632008-07-24 04:34:52 +10001505 rxqentries += adapter->rx_buff_pool[i].size;
1506 }
1507 /* add the size of the receive queue entries */
Alistair Poppled0847752013-12-09 18:17:03 +11001508 ret += IOMMU_PAGE_ALIGN(
1509 rxqentries * sizeof(struct ibmveth_rx_q_entry), tbl);
Robert Jennings1096d632008-07-24 04:34:52 +10001510
1511 return ret;
1512}
1513
Thomas Falconc77c7612015-03-02 11:56:12 -06001514static int ibmveth_set_mac_addr(struct net_device *dev, void *p)
1515{
1516 struct ibmveth_adapter *adapter = netdev_priv(dev);
1517 struct sockaddr *addr = p;
1518 u64 mac_address;
1519 int rc;
1520
1521 if (!is_valid_ether_addr(addr->sa_data))
1522 return -EADDRNOTAVAIL;
1523
1524 mac_address = ibmveth_encode_mac_addr(addr->sa_data);
1525 rc = h_change_logical_lan_mac(adapter->vdev->unit_address, mac_address);
1526 if (rc) {
1527 netdev_err(adapter->netdev, "h_change_logical_lan_mac failed with rc=%d\n", rc);
1528 return rc;
1529 }
1530
1531 ether_addr_copy(dev->dev_addr, addr->sa_data);
1532
1533 return 0;
1534}
1535
Alexander Beregalove186d172009-04-15 12:52:39 +00001536static const struct net_device_ops ibmveth_netdev_ops = {
1537 .ndo_open = ibmveth_open,
1538 .ndo_stop = ibmveth_close,
1539 .ndo_start_xmit = ibmveth_start_xmit,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00001540 .ndo_set_rx_mode = ibmveth_set_multicast_list,
Alexander Beregalove186d172009-04-15 12:52:39 +00001541 .ndo_do_ioctl = ibmveth_ioctl,
1542 .ndo_change_mtu = ibmveth_change_mtu,
Michał Mirosławb9367bf2011-04-19 02:14:25 +00001543 .ndo_fix_features = ibmveth_fix_features,
1544 .ndo_set_features = ibmveth_set_features,
Alexander Beregalove186d172009-04-15 12:52:39 +00001545 .ndo_validate_addr = eth_validate_addr,
Thomas Falconc77c7612015-03-02 11:56:12 -06001546 .ndo_set_mac_address = ibmveth_set_mac_addr,
Alexander Beregalove186d172009-04-15 12:52:39 +00001547#ifdef CONFIG_NET_POLL_CONTROLLER
1548 .ndo_poll_controller = ibmveth_poll_controller,
1549#endif
1550};
1551
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +00001552static int ibmveth_probe(struct vio_dev *dev, const struct vio_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553{
Benjamin Herrenschmidt13f85202013-05-03 17:19:01 +00001554 int rc, i, mac_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 struct net_device *netdev;
Mariusz Kozlowski9dc83af2007-08-06 23:44:03 +02001556 struct ibmveth_adapter *adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 unsigned char *mac_addr_p;
1558 unsigned int *mcastFilterSize_p;
Thomas Falcon07e6a972015-07-14 10:51:51 -05001559 long ret;
1560 unsigned long ret_attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561
Santiago Leonc43ced12010-09-03 18:29:14 +00001562 dev_dbg(&dev->dev, "entering ibmveth_probe for UA 0x%x\n",
1563 dev->unit_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564
Santiago Leonf148f612010-09-03 18:29:30 +00001565 mac_addr_p = (unsigned char *)vio_get_attribute(dev, VETH_MAC_ADDR,
Benjamin Herrenschmidt13f85202013-05-03 17:19:01 +00001566 &mac_len);
Santiago Leonf148f612010-09-03 18:29:30 +00001567 if (!mac_addr_p) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001568 dev_err(&dev->dev, "Can't find VETH_MAC_ADDR attribute\n");
Santiago Leonbe35ae92010-09-03 18:29:36 +00001569 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 }
Benjamin Herrenschmidt13f85202013-05-03 17:19:01 +00001571 /* Workaround for old/broken pHyp */
1572 if (mac_len == 8)
1573 mac_addr_p += 2;
1574 else if (mac_len != 6) {
1575 dev_err(&dev->dev, "VETH_MAC_ADDR attribute wrong len %d\n",
1576 mac_len);
1577 return -EINVAL;
1578 }
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001579
Santiago Leonf148f612010-09-03 18:29:30 +00001580 mcastFilterSize_p = (unsigned int *)vio_get_attribute(dev,
Michael Ellerman493a6842007-04-17 13:12:55 +10001581 VETH_MCAST_FILTER_SIZE, NULL);
Santiago Leonf148f612010-09-03 18:29:30 +00001582 if (!mcastFilterSize_p) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001583 dev_err(&dev->dev, "Can't find VETH_MCAST_FILTER_SIZE "
1584 "attribute\n");
Santiago Leonbe35ae92010-09-03 18:29:36 +00001585 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 }
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001587
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 netdev = alloc_etherdev(sizeof(struct ibmveth_adapter));
1589
Santiago Leonf148f612010-09-03 18:29:30 +00001590 if (!netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 return -ENOMEM;
1592
Wang Chen4cf16532008-11-12 23:38:14 -08001593 adapter = netdev_priv(netdev);
Greg Kroah-Hartmanc7ae0112009-05-04 21:33:19 -07001594 dev_set_drvdata(&dev->dev, netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595
1596 adapter->vdev = dev;
1597 adapter->netdev = netdev;
Santiago Leonf148f612010-09-03 18:29:30 +00001598 adapter->mcastFilterSize = *mcastFilterSize_p;
Santiago Leon860f2422006-04-25 11:19:59 -05001599 adapter->pool_config = 0;
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001600
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001601 netif_napi_add(netdev, &adapter->napi, ibmveth_poll, 16);
1602
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 netdev->irq = dev->irq;
Alexander Beregalove186d172009-04-15 12:52:39 +00001604 netdev->netdev_ops = &ibmveth_netdev_ops;
1605 netdev->ethtool_ops = &netdev_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 SET_NETDEV_DEV(netdev, &dev->dev);
Thomas Huth00f468f2017-01-24 07:28:41 +01001607 netdev->hw_features = NETIF_F_SG;
1608 if (vio_get_attribute(dev, "ibm,illan-options", NULL) != NULL) {
1609 netdev->hw_features |= NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
1610 NETIF_F_RXCSUM;
1611 }
Thomas Falcon07e6a972015-07-14 10:51:51 -05001612
Michał Mirosławb9367bf2011-04-19 02:14:25 +00001613 netdev->features |= netdev->hw_features;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614
Thomas Falcon07e6a972015-07-14 10:51:51 -05001615 ret = h_illan_attributes(adapter->vdev->unit_address, 0, 0, &ret_attr);
1616
1617 /* If running older firmware, TSO should not be enabled by default */
1618 if (ret == H_SUCCESS && (ret_attr & IBMVETH_ILLAN_LRG_SND_SUPPORT) &&
1619 !old_large_send) {
1620 netdev->hw_features |= NETIF_F_TSO | NETIF_F_TSO6;
1621 netdev->features |= netdev->hw_features;
1622 } else {
1623 netdev->hw_features |= NETIF_F_TSO;
1624 }
Thomas Falcon8641dd82015-04-29 16:25:45 -05001625
Anton Blanchardd746ca92014-03-05 14:51:37 +11001626 memcpy(netdev->dev_addr, mac_addr_p, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
Thomas Falconcd7c7ec2015-04-29 16:25:44 -05001628 if (firmware_has_feature(FW_FEATURE_CMO))
1629 memcpy(pool_count, pool_count_cmo, sizeof(pool_count));
1630
Santiago Leonf148f612010-09-03 18:29:30 +00001631 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++) {
Santiago Leon860f2422006-04-25 11:19:59 -05001632 struct kobject *kobj = &adapter->rx_buff_pool[i].kobj;
Greg Kroah-Hartman8dde2a92007-12-17 15:54:39 -04001633 int error;
1634
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001635 ibmveth_init_buffer_pool(&adapter->rx_buff_pool[i], i,
1636 pool_count[i], pool_size[i],
Santiago Leon860f2422006-04-25 11:19:59 -05001637 pool_active[i]);
Greg Kroah-Hartman8dde2a92007-12-17 15:54:39 -04001638 error = kobject_init_and_add(kobj, &ktype_veth_pool,
1639 &dev->dev.kobj, "pool%d", i);
1640 if (!error)
1641 kobject_uevent(kobj, KOBJ_ADD);
Santiago Leon860f2422006-04-25 11:19:59 -05001642 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643
Santiago Leonc43ced12010-09-03 18:29:14 +00001644 netdev_dbg(netdev, "adapter @ 0x%p\n", adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 adapter->buffer_list_dma = DMA_ERROR_CODE;
1647 adapter->filter_list_dma = DMA_ERROR_CODE;
1648 adapter->rx_queue.queue_dma = DMA_ERROR_CODE;
1649
Santiago Leonc43ced12010-09-03 18:29:14 +00001650 netdev_dbg(netdev, "registering netdev...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651
Michał Mirosławb801a4e2011-04-28 11:59:15 +10001652 ibmveth_set_features(netdev, netdev->features);
1653
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 rc = register_netdev(netdev);
1655
Santiago Leonf148f612010-09-03 18:29:30 +00001656 if (rc) {
Santiago Leonc43ced12010-09-03 18:29:14 +00001657 netdev_dbg(netdev, "failed to register netdev rc=%d\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 free_netdev(netdev);
1659 return rc;
1660 }
1661
Santiago Leonc43ced12010-09-03 18:29:14 +00001662 netdev_dbg(netdev, "registered\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 return 0;
1665}
1666
Bill Pembertone11787a2012-12-03 09:23:12 -05001667static int ibmveth_remove(struct vio_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668{
Greg Kroah-Hartmanc7ae0112009-05-04 21:33:19 -07001669 struct net_device *netdev = dev_get_drvdata(&dev->dev);
Wang Chen4cf16532008-11-12 23:38:14 -08001670 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Santiago Leon860f2422006-04-25 11:19:59 -05001671 int i;
1672
Santiago Leonf148f612010-09-03 18:29:30 +00001673 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++)
Greg Kroah-Hartmanc10997f2007-12-20 08:13:05 -08001674 kobject_put(&adapter->rx_buff_pool[i].kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675
1676 unregister_netdev(netdev);
1677
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 free_netdev(netdev);
Robert Jennings1096d632008-07-24 04:34:52 +10001679 dev_set_drvdata(&dev->dev, NULL);
1680
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 return 0;
1682}
1683
Santiago Leon860f2422006-04-25 11:19:59 -05001684static struct attribute veth_active_attr;
1685static struct attribute veth_num_attr;
1686static struct attribute veth_size_attr;
1687
Santiago Leonf148f612010-09-03 18:29:30 +00001688static ssize_t veth_pool_show(struct kobject *kobj,
1689 struct attribute *attr, char *buf)
Santiago Leon860f2422006-04-25 11:19:59 -05001690{
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001691 struct ibmveth_buff_pool *pool = container_of(kobj,
Santiago Leon860f2422006-04-25 11:19:59 -05001692 struct ibmveth_buff_pool,
1693 kobj);
1694
1695 if (attr == &veth_active_attr)
1696 return sprintf(buf, "%d\n", pool->active);
1697 else if (attr == &veth_num_attr)
1698 return sprintf(buf, "%d\n", pool->size);
1699 else if (attr == &veth_size_attr)
1700 return sprintf(buf, "%d\n", pool->buff_size);
1701 return 0;
1702}
1703
Santiago Leonf148f612010-09-03 18:29:30 +00001704static ssize_t veth_pool_store(struct kobject *kobj, struct attribute *attr,
1705 const char *buf, size_t count)
Santiago Leon860f2422006-04-25 11:19:59 -05001706{
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001707 struct ibmveth_buff_pool *pool = container_of(kobj,
Santiago Leon860f2422006-04-25 11:19:59 -05001708 struct ibmveth_buff_pool,
1709 kobj);
Greg Kroah-Hartmanc7ae0112009-05-04 21:33:19 -07001710 struct net_device *netdev = dev_get_drvdata(
1711 container_of(kobj->parent, struct device, kobj));
Wang Chen4cf16532008-11-12 23:38:14 -08001712 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Santiago Leon860f2422006-04-25 11:19:59 -05001713 long value = simple_strtol(buf, NULL, 10);
1714 long rc;
1715
1716 if (attr == &veth_active_attr) {
1717 if (value && !pool->active) {
Brian King4aa9c932007-06-08 14:05:16 -05001718 if (netif_running(netdev)) {
Santiago Leonf148f612010-09-03 18:29:30 +00001719 if (ibmveth_alloc_buffer_pool(pool)) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001720 netdev_err(netdev,
1721 "unable to alloc pool\n");
Brian King4aa9c932007-06-08 14:05:16 -05001722 return -ENOMEM;
1723 }
1724 pool->active = 1;
1725 adapter->pool_config = 1;
1726 ibmveth_close(netdev);
1727 adapter->pool_config = 0;
1728 if ((rc = ibmveth_open(netdev)))
1729 return rc;
Santiago Leonf148f612010-09-03 18:29:30 +00001730 } else {
Brian King4aa9c932007-06-08 14:05:16 -05001731 pool->active = 1;
Santiago Leonf148f612010-09-03 18:29:30 +00001732 }
Santiago Leon860f2422006-04-25 11:19:59 -05001733 } else if (!value && pool->active) {
1734 int mtu = netdev->mtu + IBMVETH_BUFF_OH;
1735 int i;
1736 /* Make sure there is a buffer pool with buffers that
1737 can hold a packet of the size of the MTU */
Santiago Leon517e80e2010-09-03 18:29:25 +00001738 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++) {
Santiago Leon860f2422006-04-25 11:19:59 -05001739 if (pool == &adapter->rx_buff_pool[i])
1740 continue;
1741 if (!adapter->rx_buff_pool[i].active)
1742 continue;
Brian King76b9cfc2007-08-03 13:55:19 +10001743 if (mtu <= adapter->rx_buff_pool[i].buff_size)
1744 break;
Santiago Leon860f2422006-04-25 11:19:59 -05001745 }
Brian King76b9cfc2007-08-03 13:55:19 +10001746
Santiago Leon517e80e2010-09-03 18:29:25 +00001747 if (i == IBMVETH_NUM_BUFF_POOLS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001748 netdev_err(netdev, "no active pool >= MTU\n");
Santiago Leon860f2422006-04-25 11:19:59 -05001749 return -EPERM;
1750 }
Brian King76b9cfc2007-08-03 13:55:19 +10001751
Brian King76b9cfc2007-08-03 13:55:19 +10001752 if (netif_running(netdev)) {
1753 adapter->pool_config = 1;
1754 ibmveth_close(netdev);
Santiago Leonea866e62008-07-24 04:34:23 +10001755 pool->active = 0;
Brian King76b9cfc2007-08-03 13:55:19 +10001756 adapter->pool_config = 0;
1757 if ((rc = ibmveth_open(netdev)))
1758 return rc;
1759 }
Santiago Leonea866e62008-07-24 04:34:23 +10001760 pool->active = 0;
Santiago Leon860f2422006-04-25 11:19:59 -05001761 }
1762 } else if (attr == &veth_num_attr) {
Santiago Leonf148f612010-09-03 18:29:30 +00001763 if (value <= 0 || value > IBMVETH_MAX_POOL_COUNT) {
Santiago Leon860f2422006-04-25 11:19:59 -05001764 return -EINVAL;
Santiago Leonf148f612010-09-03 18:29:30 +00001765 } else {
Brian King4aa9c932007-06-08 14:05:16 -05001766 if (netif_running(netdev)) {
1767 adapter->pool_config = 1;
1768 ibmveth_close(netdev);
1769 adapter->pool_config = 0;
1770 pool->size = value;
1771 if ((rc = ibmveth_open(netdev)))
1772 return rc;
Santiago Leonf148f612010-09-03 18:29:30 +00001773 } else {
Brian King4aa9c932007-06-08 14:05:16 -05001774 pool->size = value;
Santiago Leonf148f612010-09-03 18:29:30 +00001775 }
Santiago Leon860f2422006-04-25 11:19:59 -05001776 }
1777 } else if (attr == &veth_size_attr) {
Santiago Leonf148f612010-09-03 18:29:30 +00001778 if (value <= IBMVETH_BUFF_OH || value > IBMVETH_MAX_BUF_SIZE) {
Santiago Leon860f2422006-04-25 11:19:59 -05001779 return -EINVAL;
Santiago Leonf148f612010-09-03 18:29:30 +00001780 } else {
Brian King4aa9c932007-06-08 14:05:16 -05001781 if (netif_running(netdev)) {
1782 adapter->pool_config = 1;
1783 ibmveth_close(netdev);
1784 adapter->pool_config = 0;
1785 pool->buff_size = value;
1786 if ((rc = ibmveth_open(netdev)))
1787 return rc;
Santiago Leonf148f612010-09-03 18:29:30 +00001788 } else {
Brian King4aa9c932007-06-08 14:05:16 -05001789 pool->buff_size = value;
Santiago Leonf148f612010-09-03 18:29:30 +00001790 }
Santiago Leon860f2422006-04-25 11:19:59 -05001791 }
1792 }
1793
1794 /* kick the interrupt handler to allocate/deallocate pools */
David Howells7d12e782006-10-05 14:55:46 +01001795 ibmveth_interrupt(netdev->irq, netdev);
Santiago Leon860f2422006-04-25 11:19:59 -05001796 return count;
1797}
1798
1799
Santiago Leonf148f612010-09-03 18:29:30 +00001800#define ATTR(_name, _mode) \
1801 struct attribute veth_##_name##_attr = { \
1802 .name = __stringify(_name), .mode = _mode, \
1803 };
Santiago Leon860f2422006-04-25 11:19:59 -05001804
1805static ATTR(active, 0644);
1806static ATTR(num, 0644);
1807static ATTR(size, 0644);
1808
Santiago Leonf148f612010-09-03 18:29:30 +00001809static struct attribute *veth_pool_attrs[] = {
Santiago Leon860f2422006-04-25 11:19:59 -05001810 &veth_active_attr,
1811 &veth_num_attr,
1812 &veth_size_attr,
1813 NULL,
1814};
1815
Emese Revfy52cf25d2010-01-19 02:58:23 +01001816static const struct sysfs_ops veth_pool_ops = {
Santiago Leon860f2422006-04-25 11:19:59 -05001817 .show = veth_pool_show,
1818 .store = veth_pool_store,
1819};
1820
1821static struct kobj_type ktype_veth_pool = {
1822 .release = NULL,
1823 .sysfs_ops = &veth_pool_ops,
1824 .default_attrs = veth_pool_attrs,
1825};
1826
Brian Kinge7a3af52010-05-07 08:56:08 +00001827static int ibmveth_resume(struct device *dev)
1828{
1829 struct net_device *netdev = dev_get_drvdata(dev);
1830 ibmveth_interrupt(netdev->irq, netdev);
1831 return 0;
1832}
Santiago Leon860f2422006-04-25 11:19:59 -05001833
Bill Pembertone11787a2012-12-03 09:23:12 -05001834static struct vio_device_id ibmveth_device_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 { "network", "IBM,l-lan"},
Stephen Rothwellfb120da2005-08-17 16:42:59 +10001836 { "", "" }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838MODULE_DEVICE_TABLE(vio, ibmveth_device_table);
1839
Brian Kinge7a3af52010-05-07 08:56:08 +00001840static struct dev_pm_ops ibmveth_pm_ops = {
1841 .resume = ibmveth_resume
1842};
1843
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844static struct vio_driver ibmveth_driver = {
Stephen Rothwell6fdf5392005-10-24 14:53:21 +10001845 .id_table = ibmveth_device_table,
1846 .probe = ibmveth_probe,
1847 .remove = ibmveth_remove,
Robert Jennings1096d632008-07-24 04:34:52 +10001848 .get_desired_dma = ibmveth_get_desired_dma,
Benjamin Herrenschmidtcb52d892012-03-26 19:06:30 +00001849 .name = ibmveth_driver_name,
1850 .pm = &ibmveth_pm_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851};
1852
1853static int __init ibmveth_module_init(void)
1854{
Santiago Leon21c2dec2010-09-03 18:29:19 +00001855 printk(KERN_DEBUG "%s: %s %s\n", ibmveth_driver_name,
1856 ibmveth_driver_string, ibmveth_driver_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 return vio_register_driver(&ibmveth_driver);
1859}
1860
1861static void __exit ibmveth_module_exit(void)
1862{
1863 vio_unregister_driver(&ibmveth_driver);
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001864}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865
1866module_init(ibmveth_module_init);
1867module_exit(ibmveth_module_exit);