blob: 72ab7b6bf20b7a93eb4a6c18b14f75b2b063aaa5 [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
Philippe Reynes9ce8c2d2017-01-07 22:35:13 +0100732static int netdev_get_link_ksettings(struct net_device *dev,
733 struct ethtool_link_ksettings *cmd)
Santiago Leonf148f612010-09-03 18:29:30 +0000734{
Philippe Reynes9ce8c2d2017-01-07 22:35:13 +0100735 u32 supported, advertising;
736
737 supported = (SUPPORTED_1000baseT_Full | SUPPORTED_Autoneg |
Santiago Leonf148f612010-09-03 18:29:30 +0000738 SUPPORTED_FIBRE);
Philippe Reynes9ce8c2d2017-01-07 22:35:13 +0100739 advertising = (ADVERTISED_1000baseT_Full | ADVERTISED_Autoneg |
Santiago Leonf148f612010-09-03 18:29:30 +0000740 ADVERTISED_FIBRE);
Philippe Reynes9ce8c2d2017-01-07 22:35:13 +0100741 cmd->base.speed = SPEED_1000;
742 cmd->base.duplex = DUPLEX_FULL;
743 cmd->base.port = PORT_FIBRE;
744 cmd->base.phy_address = 0;
745 cmd->base.autoneg = AUTONEG_ENABLE;
746
747 ethtool_convert_legacy_u32_to_link_mode(cmd->link_modes.supported,
748 supported);
749 ethtool_convert_legacy_u32_to_link_mode(cmd->link_modes.advertising,
750 advertising);
751
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 return 0;
753}
754
Santiago Leonf148f612010-09-03 18:29:30 +0000755static void netdev_get_drvinfo(struct net_device *dev,
756 struct ethtool_drvinfo *info)
757{
Jiri Pirko7826d432013-01-06 00:44:26 +0000758 strlcpy(info->driver, ibmveth_driver_name, sizeof(info->driver));
759 strlcpy(info->version, ibmveth_driver_version, sizeof(info->version));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760}
761
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000762static netdev_features_t ibmveth_fix_features(struct net_device *dev,
763 netdev_features_t features)
Brian King5fc7e012007-08-17 09:16:31 -0500764{
Michał Mirosławb9367bf2011-04-19 02:14:25 +0000765 /*
766 * Since the ibmveth firmware interface does not have the
767 * concept of separate tx/rx checksum offload enable, if rx
768 * checksum is disabled we also have to disable tx checksum
769 * offload. Once we disable rx checksum offload, we are no
770 * longer allowed to send tx buffers that are not properly
771 * checksummed.
772 */
Brian King5fc7e012007-08-17 09:16:31 -0500773
Michał Mirosławb9367bf2011-04-19 02:14:25 +0000774 if (!(features & NETIF_F_RXCSUM))
Tom Herberta1882222015-12-14 11:19:43 -0800775 features &= ~NETIF_F_CSUM_MASK;
Michał Mirosławb9367bf2011-04-19 02:14:25 +0000776
777 return features;
Brian King5fc7e012007-08-17 09:16:31 -0500778}
779
Michał Mirosławb9367bf2011-04-19 02:14:25 +0000780static int ibmveth_set_csum_offload(struct net_device *dev, u32 data)
Brian King5fc7e012007-08-17 09:16:31 -0500781{
Wang Chen4cf16532008-11-12 23:38:14 -0800782 struct ibmveth_adapter *adapter = netdev_priv(dev);
Stephen Rothwellff5bfc32009-01-06 10:47:44 -0800783 unsigned long set_attr, clr_attr, ret_attr;
Santiago Leonab78df72010-09-03 18:28:52 +0000784 unsigned long set_attr6, clr_attr6;
David S. Miller8decf862011-09-22 03:23:13 -0400785 long ret, ret4, ret6;
Brian King5fc7e012007-08-17 09:16:31 -0500786 int rc1 = 0, rc2 = 0;
787 int restart = 0;
788
789 if (netif_running(dev)) {
790 restart = 1;
791 adapter->pool_config = 1;
792 ibmveth_close(dev);
793 adapter->pool_config = 0;
794 }
795
Brian King79ef4a42007-08-17 09:16:56 -0500796 set_attr = 0;
797 clr_attr = 0;
David S. Miller8decf862011-09-22 03:23:13 -0400798 set_attr6 = 0;
799 clr_attr6 = 0;
Brian King5fc7e012007-08-17 09:16:31 -0500800
Santiago Leonab78df72010-09-03 18:28:52 +0000801 if (data) {
Brian King79ef4a42007-08-17 09:16:56 -0500802 set_attr = IBMVETH_ILLAN_IPV4_TCP_CSUM;
Santiago Leonab78df72010-09-03 18:28:52 +0000803 set_attr6 = IBMVETH_ILLAN_IPV6_TCP_CSUM;
804 } else {
Brian King79ef4a42007-08-17 09:16:56 -0500805 clr_attr = IBMVETH_ILLAN_IPV4_TCP_CSUM;
Santiago Leonab78df72010-09-03 18:28:52 +0000806 clr_attr6 = IBMVETH_ILLAN_IPV6_TCP_CSUM;
807 }
Brian King5fc7e012007-08-17 09:16:31 -0500808
Brian King79ef4a42007-08-17 09:16:56 -0500809 ret = h_illan_attributes(adapter->vdev->unit_address, 0, 0, &ret_attr);
Brian King5fc7e012007-08-17 09:16:31 -0500810
Brian King79ef4a42007-08-17 09:16:56 -0500811 if (ret == H_SUCCESS && !(ret_attr & IBMVETH_ILLAN_ACTIVE_TRUNK) &&
812 !(ret_attr & IBMVETH_ILLAN_TRUNK_PRI_MASK) &&
813 (ret_attr & IBMVETH_ILLAN_PADDED_PKT_CSUM)) {
David S. Miller8decf862011-09-22 03:23:13 -0400814 ret4 = h_illan_attributes(adapter->vdev->unit_address, clr_attr,
Brian King79ef4a42007-08-17 09:16:56 -0500815 set_attr, &ret_attr);
Brian King5fc7e012007-08-17 09:16:31 -0500816
David S. Miller8decf862011-09-22 03:23:13 -0400817 if (ret4 != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000818 netdev_err(dev, "unable to change IPv4 checksum "
819 "offload settings. %d rc=%ld\n",
David S. Miller8decf862011-09-22 03:23:13 -0400820 data, ret4);
Brian King5fc7e012007-08-17 09:16:31 -0500821
David S. Miller8decf862011-09-22 03:23:13 -0400822 h_illan_attributes(adapter->vdev->unit_address,
823 set_attr, clr_attr, &ret_attr);
824
825 if (data == 1)
826 dev->features &= ~NETIF_F_IP_CSUM;
827
Santiago Leonf148f612010-09-03 18:29:30 +0000828 } else {
Santiago Leonab78df72010-09-03 18:28:52 +0000829 adapter->fw_ipv4_csum_support = data;
Santiago Leonf148f612010-09-03 18:29:30 +0000830 }
Santiago Leonab78df72010-09-03 18:28:52 +0000831
832 ret6 = h_illan_attributes(adapter->vdev->unit_address,
833 clr_attr6, set_attr6, &ret_attr);
834
835 if (ret6 != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000836 netdev_err(dev, "unable to change IPv6 checksum "
837 "offload settings. %d rc=%ld\n",
David S. Miller8decf862011-09-22 03:23:13 -0400838 data, ret6);
Santiago Leonab78df72010-09-03 18:28:52 +0000839
David S. Miller8decf862011-09-22 03:23:13 -0400840 h_illan_attributes(adapter->vdev->unit_address,
841 set_attr6, clr_attr6, &ret_attr);
842
843 if (data == 1)
844 dev->features &= ~NETIF_F_IPV6_CSUM;
845
Santiago Leonab78df72010-09-03 18:28:52 +0000846 } else
847 adapter->fw_ipv6_csum_support = data;
848
David S. Miller8decf862011-09-22 03:23:13 -0400849 if (ret4 == H_SUCCESS || ret6 == H_SUCCESS)
Michał Mirosławb9367bf2011-04-19 02:14:25 +0000850 adapter->rx_csum = data;
Santiago Leonab78df72010-09-03 18:28:52 +0000851 else
852 rc1 = -EIO;
Brian King5fc7e012007-08-17 09:16:31 -0500853 } else {
854 rc1 = -EIO;
Santiago Leon21c2dec2010-09-03 18:29:19 +0000855 netdev_err(dev, "unable to change checksum offload settings."
856 " %d rc=%ld ret_attr=%lx\n", data, ret,
857 ret_attr);
Brian King5fc7e012007-08-17 09:16:31 -0500858 }
859
860 if (restart)
861 rc2 = ibmveth_open(dev);
862
863 return rc1 ? rc1 : rc2;
864}
865
Thomas Falcon07e6a972015-07-14 10:51:51 -0500866static int ibmveth_set_tso(struct net_device *dev, u32 data)
867{
868 struct ibmveth_adapter *adapter = netdev_priv(dev);
869 unsigned long set_attr, clr_attr, ret_attr;
870 long ret1, ret2;
871 int rc1 = 0, rc2 = 0;
872 int restart = 0;
873
874 if (netif_running(dev)) {
875 restart = 1;
876 adapter->pool_config = 1;
877 ibmveth_close(dev);
878 adapter->pool_config = 0;
879 }
880
881 set_attr = 0;
882 clr_attr = 0;
883
884 if (data)
885 set_attr = IBMVETH_ILLAN_LRG_SR_ENABLED;
886 else
887 clr_attr = IBMVETH_ILLAN_LRG_SR_ENABLED;
888
889 ret1 = h_illan_attributes(adapter->vdev->unit_address, 0, 0, &ret_attr);
890
891 if (ret1 == H_SUCCESS && (ret_attr & IBMVETH_ILLAN_LRG_SND_SUPPORT) &&
892 !old_large_send) {
893 ret2 = h_illan_attributes(adapter->vdev->unit_address, clr_attr,
894 set_attr, &ret_attr);
895
896 if (ret2 != H_SUCCESS) {
897 netdev_err(dev, "unable to change tso settings. %d rc=%ld\n",
898 data, ret2);
899
900 h_illan_attributes(adapter->vdev->unit_address,
901 set_attr, clr_attr, &ret_attr);
902
903 if (data == 1)
904 dev->features &= ~(NETIF_F_TSO | NETIF_F_TSO6);
905 rc1 = -EIO;
906
907 } else {
908 adapter->fw_large_send_support = data;
909 adapter->large_send = data;
910 }
911 } else {
912 /* Older firmware version of large send offload does not
913 * support tcp6/ipv6
914 */
915 if (data == 1) {
916 dev->features &= ~NETIF_F_TSO6;
917 netdev_info(dev, "TSO feature requires all partitions to have updated driver");
918 }
919 adapter->large_send = data;
920 }
921
922 if (restart)
923 rc2 = ibmveth_open(dev);
924
925 return rc1 ? rc1 : rc2;
926}
927
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000928static int ibmveth_set_features(struct net_device *dev,
929 netdev_features_t features)
Brian King5fc7e012007-08-17 09:16:31 -0500930{
Wang Chen4cf16532008-11-12 23:38:14 -0800931 struct ibmveth_adapter *adapter = netdev_priv(dev);
Michał Mirosławb9367bf2011-04-19 02:14:25 +0000932 int rx_csum = !!(features & NETIF_F_RXCSUM);
Thomas Falcon07e6a972015-07-14 10:51:51 -0500933 int large_send = !!(features & (NETIF_F_TSO | NETIF_F_TSO6));
934 int rc1 = 0, rc2 = 0;
Thomas Falcon8641dd82015-04-29 16:25:45 -0500935
Thomas Falcon07e6a972015-07-14 10:51:51 -0500936 if (rx_csum != adapter->rx_csum) {
937 rc1 = ibmveth_set_csum_offload(dev, rx_csum);
938 if (rc1 && !adapter->rx_csum)
939 dev->features =
Tom Herberta1882222015-12-14 11:19:43 -0800940 features & ~(NETIF_F_CSUM_MASK |
941 NETIF_F_RXCSUM);
Thomas Falcon07e6a972015-07-14 10:51:51 -0500942 }
Brian King5fc7e012007-08-17 09:16:31 -0500943
Thomas Falcon07e6a972015-07-14 10:51:51 -0500944 if (large_send != adapter->large_send) {
945 rc2 = ibmveth_set_tso(dev, large_send);
946 if (rc2 && !adapter->large_send)
947 dev->features =
948 features & ~(NETIF_F_TSO | NETIF_F_TSO6);
949 }
Brian King5fc7e012007-08-17 09:16:31 -0500950
Thomas Falcon07e6a972015-07-14 10:51:51 -0500951 return rc1 ? rc1 : rc2;
Brian King5fc7e012007-08-17 09:16:31 -0500952}
953
Brian Kingddbb4de2007-08-17 09:16:43 -0500954static void ibmveth_get_strings(struct net_device *dev, u32 stringset, u8 *data)
955{
956 int i;
957
958 if (stringset != ETH_SS_STATS)
959 return;
960
961 for (i = 0; i < ARRAY_SIZE(ibmveth_stats); i++, data += ETH_GSTRING_LEN)
962 memcpy(data, ibmveth_stats[i].name, ETH_GSTRING_LEN);
963}
964
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700965static int ibmveth_get_sset_count(struct net_device *dev, int sset)
Brian Kingddbb4de2007-08-17 09:16:43 -0500966{
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700967 switch (sset) {
968 case ETH_SS_STATS:
969 return ARRAY_SIZE(ibmveth_stats);
970 default:
971 return -EOPNOTSUPP;
972 }
Brian Kingddbb4de2007-08-17 09:16:43 -0500973}
974
975static void ibmveth_get_ethtool_stats(struct net_device *dev,
976 struct ethtool_stats *stats, u64 *data)
977{
978 int i;
Wang Chen4cf16532008-11-12 23:38:14 -0800979 struct ibmveth_adapter *adapter = netdev_priv(dev);
Brian Kingddbb4de2007-08-17 09:16:43 -0500980
981 for (i = 0; i < ARRAY_SIZE(ibmveth_stats); i++)
982 data[i] = IBMVETH_GET_STAT(adapter, ibmveth_stats[i].offset);
983}
984
Jeff Garzik7282d492006-09-13 14:30:00 -0400985static const struct ethtool_ops netdev_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 .get_drvinfo = netdev_get_drvinfo,
Ben Hutchingsed4ba4b2010-12-09 12:10:25 +0000987 .get_link = ethtool_op_get_link,
Brian Kingddbb4de2007-08-17 09:16:43 -0500988 .get_strings = ibmveth_get_strings,
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700989 .get_sset_count = ibmveth_get_sset_count,
Brian Kingddbb4de2007-08-17 09:16:43 -0500990 .get_ethtool_stats = ibmveth_get_ethtool_stats,
Philippe Reynes9ce8c2d2017-01-07 22:35:13 +0100991 .get_link_ksettings = netdev_get_link_ksettings,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992};
993
994static int ibmveth_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
995{
996 return -EOPNOTSUPP;
997}
998
999#define page_offset(v) ((unsigned long)(v) & ((1 << 12) - 1))
1000
Santiago Leon6e8ab302010-09-03 18:28:36 +00001001static int ibmveth_send(struct ibmveth_adapter *adapter,
Thomas Falcon07e6a972015-07-14 10:51:51 -05001002 union ibmveth_buf_desc *descs, unsigned long mss)
Santiago Leon6e8ab302010-09-03 18:28:36 +00001003{
1004 unsigned long correlator;
1005 unsigned int retry_count;
1006 unsigned long ret;
1007
1008 /*
1009 * The retry count sets a maximum for the number of broadcast and
1010 * multicast destinations within the system.
1011 */
1012 retry_count = 1024;
1013 correlator = 0;
1014 do {
1015 ret = h_send_logical_lan(adapter->vdev->unit_address,
1016 descs[0].desc, descs[1].desc,
1017 descs[2].desc, descs[3].desc,
1018 descs[4].desc, descs[5].desc,
Thomas Falcon07e6a972015-07-14 10:51:51 -05001019 correlator, &correlator, mss,
1020 adapter->fw_large_send_support);
Santiago Leon6e8ab302010-09-03 18:28:36 +00001021 } while ((ret == H_BUSY) && (retry_count--));
1022
1023 if (ret != H_SUCCESS && ret != H_DROPPED) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001024 netdev_err(adapter->netdev, "tx: h_send_logical_lan failed "
1025 "with rc=%ld\n", ret);
Santiago Leon6e8ab302010-09-03 18:28:36 +00001026 return 1;
1027 }
1028
1029 return 0;
1030}
1031
Stephen Hemminger613573252009-08-31 19:50:58 +00001032static netdev_tx_t ibmveth_start_xmit(struct sk_buff *skb,
1033 struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034{
Wang Chen4cf16532008-11-12 23:38:14 -08001035 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Santiago Leon6e8ab302010-09-03 18:28:36 +00001036 unsigned int desc_flags;
1037 union ibmveth_buf_desc descs[6];
1038 int last, i;
1039 int force_bounce = 0;
David S. Miller8decf862011-09-22 03:23:13 -04001040 dma_addr_t dma_addr;
Thomas Falcon07e6a972015-07-14 10:51:51 -05001041 unsigned long mss = 0;
Santiago Leon60296d92005-10-26 10:47:16 -06001042
Santiago Leon6e8ab302010-09-03 18:28:36 +00001043 /*
1044 * veth handles a maximum of 6 segments including the header, so
1045 * we have to linearize the skb if there are more than this.
1046 */
1047 if (skb_shinfo(skb)->nr_frags > 5 && __skb_linearize(skb)) {
1048 netdev->stats.tx_dropped++;
Brian Kingf4ff2872007-09-15 13:36:07 -07001049 goto out;
1050 }
1051
Santiago Leon6e8ab302010-09-03 18:28:36 +00001052 /* veth can't checksum offload UDP */
1053 if (skb->ip_summed == CHECKSUM_PARTIAL &&
Santiago Leonab78df72010-09-03 18:28:52 +00001054 ((skb->protocol == htons(ETH_P_IP) &&
1055 ip_hdr(skb)->protocol != IPPROTO_TCP) ||
1056 (skb->protocol == htons(ETH_P_IPV6) &&
1057 ipv6_hdr(skb)->nexthdr != IPPROTO_TCP)) &&
1058 skb_checksum_help(skb)) {
1059
Santiago Leon21c2dec2010-09-03 18:29:19 +00001060 netdev_err(netdev, "tx: failed to checksum packet\n");
Santiago Leon6e8ab302010-09-03 18:28:36 +00001061 netdev->stats.tx_dropped++;
1062 goto out;
1063 }
Brian Kingf4ff2872007-09-15 13:36:07 -07001064
Santiago Leon6e8ab302010-09-03 18:28:36 +00001065 desc_flags = IBMVETH_BUF_VALID;
1066
Thomas Falcon07e6a972015-07-14 10:51:51 -05001067 if (skb_is_gso(skb) && adapter->fw_large_send_support)
1068 desc_flags |= IBMVETH_BUF_LRG_SND;
1069
Santiago Leon6e8ab302010-09-03 18:28:36 +00001070 if (skb->ip_summed == CHECKSUM_PARTIAL) {
1071 unsigned char *buf = skb_transport_header(skb) +
1072 skb->csum_offset;
1073
1074 desc_flags |= (IBMVETH_BUF_NO_CSUM | IBMVETH_BUF_CSUM_GOOD);
Brian Kingf4ff2872007-09-15 13:36:07 -07001075
1076 /* Need to zero out the checksum */
1077 buf[0] = 0;
1078 buf[1] = 0;
1079 }
1080
Santiago Leon6e8ab302010-09-03 18:28:36 +00001081retry_bounce:
1082 memset(descs, 0, sizeof(descs));
Santiago Leonc08cc3c2010-09-03 18:28:20 +00001083
Santiago Leon6e8ab302010-09-03 18:28:36 +00001084 /*
1085 * If a linear packet is below the rx threshold then
1086 * copy it into the static bounce buffer. This avoids the
1087 * cost of a TCE insert and remove.
1088 */
1089 if (force_bounce || (!skb_is_nonlinear(skb) &&
1090 (skb->len < tx_copybreak))) {
Robert Jennings1096d632008-07-24 04:34:52 +10001091 skb_copy_from_linear_data(skb, adapter->bounce_buffer,
1092 skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
Santiago Leon6e8ab302010-09-03 18:28:36 +00001094 descs[0].fields.flags_len = desc_flags | skb->len;
1095 descs[0].fields.address = adapter->bounce_buffer_dma;
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001096
Thomas Falcon07e6a972015-07-14 10:51:51 -05001097 if (ibmveth_send(adapter, descs, 0)) {
Santiago Leon6e8ab302010-09-03 18:28:36 +00001098 adapter->tx_send_failed++;
1099 netdev->stats.tx_dropped++;
1100 } else {
1101 netdev->stats.tx_packets++;
1102 netdev->stats.tx_bytes += skb->len;
1103 }
1104
1105 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 }
1107
Santiago Leon6e8ab302010-09-03 18:28:36 +00001108 /* Map the header */
David S. Miller8decf862011-09-22 03:23:13 -04001109 dma_addr = dma_map_single(&adapter->vdev->dev, skb->data,
1110 skb_headlen(skb), DMA_TO_DEVICE);
1111 if (dma_mapping_error(&adapter->vdev->dev, dma_addr))
Santiago Leon6e8ab302010-09-03 18:28:36 +00001112 goto map_failed;
1113
1114 descs[0].fields.flags_len = desc_flags | skb_headlen(skb);
David S. Miller8decf862011-09-22 03:23:13 -04001115 descs[0].fields.address = dma_addr;
Santiago Leon6e8ab302010-09-03 18:28:36 +00001116
1117 /* Map the frags */
1118 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001119 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
Santiago Leon6e8ab302010-09-03 18:28:36 +00001120
Ian Campbell8838a532011-08-31 00:46:53 +00001121 dma_addr = skb_frag_dma_map(&adapter->vdev->dev, frag, 0,
Eric Dumazet9e903e02011-10-18 21:00:24 +00001122 skb_frag_size(frag), DMA_TO_DEVICE);
Santiago Leon6e8ab302010-09-03 18:28:36 +00001123
1124 if (dma_mapping_error(&adapter->vdev->dev, dma_addr))
1125 goto map_failed_frags;
1126
Eric Dumazet9e903e02011-10-18 21:00:24 +00001127 descs[i+1].fields.flags_len = desc_flags | skb_frag_size(frag);
Santiago Leon6e8ab302010-09-03 18:28:36 +00001128 descs[i+1].fields.address = dma_addr;
1129 }
1130
Thomas Falcon07e6a972015-07-14 10:51:51 -05001131 if (skb_is_gso(skb)) {
1132 if (adapter->fw_large_send_support) {
1133 mss = (unsigned long)skb_shinfo(skb)->gso_size;
1134 adapter->tx_large_packets++;
1135 } else if (!skb_is_gso_v6(skb)) {
1136 /* Put -1 in the IP checksum to tell phyp it
1137 * is a largesend packet. Put the mss in
1138 * the TCP checksum.
1139 */
1140 ip_hdr(skb)->check = 0xffff;
1141 tcp_hdr(skb)->check =
1142 cpu_to_be16(skb_shinfo(skb)->gso_size);
1143 adapter->tx_large_packets++;
1144 }
Thomas Falcon8641dd82015-04-29 16:25:45 -05001145 }
1146
Thomas Falcon07e6a972015-07-14 10:51:51 -05001147 if (ibmveth_send(adapter, descs, mss)) {
Santiago Leon6e8ab302010-09-03 18:28:36 +00001148 adapter->tx_send_failed++;
1149 netdev->stats.tx_dropped++;
1150 } else {
1151 netdev->stats.tx_packets++;
1152 netdev->stats.tx_bytes += skb->len;
1153 }
1154
David S. Miller8decf862011-09-22 03:23:13 -04001155 dma_unmap_single(&adapter->vdev->dev,
1156 descs[0].fields.address,
1157 descs[0].fields.flags_len & IBMVETH_BUF_LEN_MASK,
1158 DMA_TO_DEVICE);
1159
1160 for (i = 1; i < skb_shinfo(skb)->nr_frags + 1; i++)
Santiago Leon6e8ab302010-09-03 18:28:36 +00001161 dma_unmap_page(&adapter->vdev->dev, descs[i].fields.address,
1162 descs[i].fields.flags_len & IBMVETH_BUF_LEN_MASK,
1163 DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
Santiago Leone8cb7eb2010-09-03 18:28:15 +00001165out:
Eric W. Biederman26faa9d2014-03-15 17:29:34 -07001166 dev_consume_skb_any(skb);
Patrick McHardy6ed10652009-06-23 06:03:08 +00001167 return NETDEV_TX_OK;
Santiago Leon6e8ab302010-09-03 18:28:36 +00001168
1169map_failed_frags:
1170 last = i+1;
1171 for (i = 0; i < last; i++)
1172 dma_unmap_page(&adapter->vdev->dev, descs[i].fields.address,
1173 descs[i].fields.flags_len & IBMVETH_BUF_LEN_MASK,
1174 DMA_TO_DEVICE);
1175
1176map_failed:
1177 if (!firmware_has_feature(FW_FEATURE_CMO))
Santiago Leon21c2dec2010-09-03 18:29:19 +00001178 netdev_err(netdev, "tx: unable to map xmit buffer\n");
Santiago Leon6e8ab302010-09-03 18:28:36 +00001179 adapter->tx_map_failed++;
Thomas Falcon2c42bf42016-03-03 15:22:36 -06001180 if (skb_linearize(skb)) {
1181 netdev->stats.tx_dropped++;
1182 goto out;
1183 }
Santiago Leon6e8ab302010-09-03 18:28:36 +00001184 force_bounce = 1;
1185 goto retry_bounce;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186}
1187
Thomas Falcon7b596732016-12-08 16:40:03 -06001188static void ibmveth_rx_mss_helper(struct sk_buff *skb, u16 mss, int lrg_pkt)
1189{
Thomas Falcon94acf162016-12-13 18:15:09 -06001190 struct tcphdr *tcph;
Thomas Falcon7b596732016-12-08 16:40:03 -06001191 int offset = 0;
Thomas Falcon94acf162016-12-13 18:15:09 -06001192 int hdr_len;
Thomas Falcon7b596732016-12-08 16:40:03 -06001193
1194 /* only TCP packets will be aggregated */
1195 if (skb->protocol == htons(ETH_P_IP)) {
1196 struct iphdr *iph = (struct iphdr *)skb->data;
1197
1198 if (iph->protocol == IPPROTO_TCP) {
1199 offset = iph->ihl * 4;
1200 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
1201 } else {
1202 return;
1203 }
1204 } else if (skb->protocol == htons(ETH_P_IPV6)) {
1205 struct ipv6hdr *iph6 = (struct ipv6hdr *)skb->data;
1206
1207 if (iph6->nexthdr == IPPROTO_TCP) {
1208 offset = sizeof(struct ipv6hdr);
1209 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV6;
1210 } else {
1211 return;
1212 }
1213 } else {
1214 return;
1215 }
1216 /* if mss is not set through Large Packet bit/mss in rx buffer,
1217 * expect that the mss will be written to the tcp header checksum.
1218 */
Thomas Falcon94acf162016-12-13 18:15:09 -06001219 tcph = (struct tcphdr *)(skb->data + offset);
Thomas Falcon7b596732016-12-08 16:40:03 -06001220 if (lrg_pkt) {
1221 skb_shinfo(skb)->gso_size = mss;
1222 } else if (offset) {
Thomas Falcon7b596732016-12-08 16:40:03 -06001223 skb_shinfo(skb)->gso_size = ntohs(tcph->check);
1224 tcph->check = 0;
1225 }
Thomas Falcon94acf162016-12-13 18:15:09 -06001226
1227 if (skb_shinfo(skb)->gso_size) {
1228 hdr_len = offset + tcph->doff * 4;
1229 skb_shinfo(skb)->gso_segs =
1230 DIV_ROUND_UP(skb->len - hdr_len,
1231 skb_shinfo(skb)->gso_size);
1232 }
Thomas Falcon7b596732016-12-08 16:40:03 -06001233}
1234
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001235static int ibmveth_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236{
Santiago Leonf148f612010-09-03 18:29:30 +00001237 struct ibmveth_adapter *adapter =
1238 container_of(napi, struct ibmveth_adapter, napi);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001239 struct net_device *netdev = adapter->netdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 int frames_processed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 unsigned long lpar_rc;
Thomas Falcon9c7e8bc2015-04-29 16:25:47 -05001242 struct iphdr *iph;
Thomas Falcon7b596732016-12-08 16:40:03 -06001243 u16 mss = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
Santiago Leonf148f612010-09-03 18:29:30 +00001245restart_poll:
Eric W. Biedermancb013ea2014-03-14 18:03:50 -07001246 while (frames_processed < budget) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001247 if (!ibmveth_rxq_pending_buffer(adapter))
1248 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
Anton Blanchardf89e49e2010-09-06 18:21:41 -07001250 smp_rmb();
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001251 if (!ibmveth_rxq_buffer_valid(adapter)) {
1252 wmb(); /* suggested by larson1 */
1253 adapter->rx_invalid_buffer++;
Santiago Leonc43ced12010-09-03 18:29:14 +00001254 netdev_dbg(netdev, "recycling invalid buffer\n");
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001255 ibmveth_rxq_recycle_buffer(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 } else {
Santiago Leon8d86c612010-09-03 18:28:25 +00001257 struct sk_buff *skb, *new_skb;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001258 int length = ibmveth_rxq_frame_length(adapter);
1259 int offset = ibmveth_rxq_frame_offset(adapter);
Brian Kingf4ff2872007-09-15 13:36:07 -07001260 int csum_good = ibmveth_rxq_csum_good(adapter);
Thomas Falcon7b596732016-12-08 16:40:03 -06001261 int lrg_pkt = ibmveth_rxq_large_packet(adapter);
Brian Kingf4ff2872007-09-15 13:36:07 -07001262
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001263 skb = ibmveth_rxq_get_buffer(adapter);
1264
Thomas Falcon7b596732016-12-08 16:40:03 -06001265 /* if the large packet bit is set in the rx queue
1266 * descriptor, the mss will be written by PHYP eight
1267 * bytes from the start of the rx buffer, which is
1268 * skb->data at this stage
1269 */
1270 if (lrg_pkt) {
1271 __be64 *rxmss = (__be64 *)(skb->data + 8);
1272
1273 mss = (u16)be64_to_cpu(*rxmss);
1274 }
1275
Santiago Leon8d86c612010-09-03 18:28:25 +00001276 new_skb = NULL;
1277 if (length < rx_copybreak)
1278 new_skb = netdev_alloc_skb(netdev, length);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001279
Santiago Leon8d86c612010-09-03 18:28:25 +00001280 if (new_skb) {
1281 skb_copy_to_linear_data(new_skb,
1282 skb->data + offset,
1283 length);
Santiago Leon0c26b672010-09-03 18:28:41 +00001284 if (rx_flush)
1285 ibmveth_flush_buffer(skb->data,
1286 length + offset);
David S. Miller8decf862011-09-22 03:23:13 -04001287 if (!ibmveth_rxq_recycle_buffer(adapter))
1288 kfree_skb(skb);
Santiago Leon8d86c612010-09-03 18:28:25 +00001289 skb = new_skb;
Santiago Leon8d86c612010-09-03 18:28:25 +00001290 } else {
1291 ibmveth_rxq_harvest_buffer(adapter);
1292 skb_reserve(skb, offset);
1293 }
1294
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001295 skb_put(skb, length);
1296 skb->protocol = eth_type_trans(skb, netdev);
1297
Thomas Falcon9c7e8bc2015-04-29 16:25:47 -05001298 if (csum_good) {
Santiago Leon8d86c612010-09-03 18:28:25 +00001299 skb->ip_summed = CHECKSUM_UNNECESSARY;
Thomas Falcon9c7e8bc2015-04-29 16:25:47 -05001300 if (be16_to_cpu(skb->protocol) == ETH_P_IP) {
1301 iph = (struct iphdr *)skb->data;
1302
1303 /* If the IP checksum is not offloaded and if the packet
1304 * is large send, the checksum must be rebuilt.
1305 */
1306 if (iph->check == 0xffff) {
1307 iph->check = 0;
1308 iph->check = ip_fast_csum((unsigned char *)iph, iph->ihl);
Thomas Falcon9c7e8bc2015-04-29 16:25:47 -05001309 }
1310 }
1311 }
Santiago Leon8d86c612010-09-03 18:28:25 +00001312
Thomas Falcon7b596732016-12-08 16:40:03 -06001313 if (length > netdev->mtu + ETH_HLEN) {
1314 ibmveth_rx_mss_helper(skb, mss, lrg_pkt);
1315 adapter->rx_large_packets++;
1316 }
1317
Thomas Falcon92ec8272015-04-29 16:25:46 -05001318 napi_gro_receive(napi, skb); /* send it up */
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001319
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001320 netdev->stats.rx_packets++;
1321 netdev->stats.rx_bytes += length;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001322 frames_processed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 }
Eric W. Biedermancb013ea2014-03-14 18:03:50 -07001324 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325
Santiago Leone2adbcb2005-10-26 10:47:08 -06001326 ibmveth_replenish_task(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001328 if (frames_processed < budget) {
Eric Dumazet6ad20162017-01-30 08:22:01 -08001329 napi_complete_done(napi, frames_processed);
Yongbae Park4736edc2015-03-10 11:15:39 +09001330
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001331 /* We think we are done - reenable interrupts,
1332 * then check once more to make sure we are done.
1333 */
1334 lpar_rc = h_vio_signal(adapter->vdev->unit_address,
1335 VIO_IRQ_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336
Santiago Leon64859112010-09-03 18:29:41 +00001337 BUG_ON(lpar_rc != H_SUCCESS);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001338
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001339 if (ibmveth_rxq_pending_buffer(adapter) &&
Ben Hutchings288379f2009-01-19 16:43:59 -08001340 napi_reschedule(napi)) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001341 lpar_rc = h_vio_signal(adapter->vdev->unit_address,
1342 VIO_IRQ_DISABLE);
1343 goto restart_poll;
1344 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 }
1346
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001347 return frames_processed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348}
1349
David Howells7d12e782006-10-05 14:55:46 +01001350static irqreturn_t ibmveth_interrupt(int irq, void *dev_instance)
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001351{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 struct net_device *netdev = dev_instance;
Wang Chen4cf16532008-11-12 23:38:14 -08001353 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 unsigned long lpar_rc;
1355
Ben Hutchings288379f2009-01-19 16:43:59 -08001356 if (napi_schedule_prep(&adapter->napi)) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001357 lpar_rc = h_vio_signal(adapter->vdev->unit_address,
1358 VIO_IRQ_DISABLE);
Santiago Leon64859112010-09-03 18:29:41 +00001359 BUG_ON(lpar_rc != H_SUCCESS);
Ben Hutchings288379f2009-01-19 16:43:59 -08001360 __napi_schedule(&adapter->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 }
1362 return IRQ_HANDLED;
1363}
1364
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365static void ibmveth_set_multicast_list(struct net_device *netdev)
1366{
Wang Chen4cf16532008-11-12 23:38:14 -08001367 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 unsigned long lpar_rc;
1369
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001370 if ((netdev->flags & IFF_PROMISC) ||
1371 (netdev_mc_count(netdev) > adapter->mcastFilterSize)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 lpar_rc = h_multicast_ctrl(adapter->vdev->unit_address,
1373 IbmVethMcastEnableRecv |
1374 IbmVethMcastDisableFiltering,
1375 0);
Santiago Leonf148f612010-09-03 18:29:30 +00001376 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001377 netdev_err(netdev, "h_multicast_ctrl rc=%ld when "
1378 "entering promisc mode\n", lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 }
1380 } else {
Jiri Pirko22bedad32010-04-01 21:22:57 +00001381 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 /* clear the filter table & disable filtering */
1383 lpar_rc = h_multicast_ctrl(adapter->vdev->unit_address,
1384 IbmVethMcastEnableRecv |
1385 IbmVethMcastDisableFiltering |
1386 IbmVethMcastClearFilterTable,
1387 0);
Santiago Leonf148f612010-09-03 18:29:30 +00001388 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001389 netdev_err(netdev, "h_multicast_ctrl rc=%ld when "
1390 "attempting to clear filter table\n",
1391 lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 }
1393 /* add the addresses to the filter table */
Jiri Pirko22bedad32010-04-01 21:22:57 +00001394 netdev_for_each_mc_addr(ha, netdev) {
Santiago Leonf148f612010-09-03 18:29:30 +00001395 /* add the multicast address to the filter table */
Anton Blanchardd746ca92014-03-05 14:51:37 +11001396 u64 mcast_addr;
1397 mcast_addr = ibmveth_encode_mac_addr(ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 lpar_rc = h_multicast_ctrl(adapter->vdev->unit_address,
1399 IbmVethMcastAddFilter,
1400 mcast_addr);
Santiago Leonf148f612010-09-03 18:29:30 +00001401 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001402 netdev_err(netdev, "h_multicast_ctrl rc=%ld "
1403 "when adding an entry to the filter "
1404 "table\n", lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 }
1406 }
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001407
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 /* re-enable filtering */
1409 lpar_rc = h_multicast_ctrl(adapter->vdev->unit_address,
1410 IbmVethMcastEnableFiltering,
1411 0);
Santiago Leonf148f612010-09-03 18:29:30 +00001412 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001413 netdev_err(netdev, "h_multicast_ctrl rc=%ld when "
1414 "enabling filtering\n", lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 }
1416 }
1417}
1418
1419static int ibmveth_change_mtu(struct net_device *dev, int new_mtu)
1420{
Wang Chen4cf16532008-11-12 23:38:14 -08001421 struct ibmveth_adapter *adapter = netdev_priv(dev);
Robert Jennings1096d632008-07-24 04:34:52 +10001422 struct vio_dev *viodev = adapter->vdev;
Santiago Leon860f2422006-04-25 11:19:59 -05001423 int new_mtu_oh = new_mtu + IBMVETH_BUFF_OH;
Robert Jennings0645bab2010-08-17 09:15:45 +00001424 int i, rc;
1425 int need_restart = 0;
Santiago Leonb6d35182005-10-26 10:47:01 -06001426
Santiago Leon517e80e2010-09-03 18:29:25 +00001427 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++)
David Gibson4fce1482015-04-23 14:43:05 +10001428 if (new_mtu_oh <= adapter->rx_buff_pool[i].buff_size)
Brian Kingce6eea52007-06-08 14:05:17 -05001429 break;
1430
Santiago Leon517e80e2010-09-03 18:29:25 +00001431 if (i == IBMVETH_NUM_BUFF_POOLS)
Brian Kingce6eea52007-06-08 14:05:17 -05001432 return -EINVAL;
1433
Santiago Leonea866e62008-07-24 04:34:23 +10001434 /* Deactivate all the buffer pools so that the next loop can activate
1435 only the buffer pools necessary to hold the new MTU */
Robert Jennings0645bab2010-08-17 09:15:45 +00001436 if (netif_running(adapter->netdev)) {
1437 need_restart = 1;
1438 adapter->pool_config = 1;
1439 ibmveth_close(adapter->netdev);
1440 adapter->pool_config = 0;
1441 }
Brian Kingce6eea52007-06-08 14:05:17 -05001442
Santiago Leonea866e62008-07-24 04:34:23 +10001443 /* Look for an active buffer pool that can hold the new MTU */
Santiago Leonf148f612010-09-03 18:29:30 +00001444 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++) {
Santiago Leonea866e62008-07-24 04:34:23 +10001445 adapter->rx_buff_pool[i].active = 1;
1446
David Gibson4fce1482015-04-23 14:43:05 +10001447 if (new_mtu_oh <= adapter->rx_buff_pool[i].buff_size) {
Robert Jennings1096d632008-07-24 04:34:52 +10001448 dev->mtu = new_mtu;
1449 vio_cmo_set_dev_desired(viodev,
1450 ibmveth_get_desired_dma
1451 (viodev));
Robert Jennings0645bab2010-08-17 09:15:45 +00001452 if (need_restart) {
1453 return ibmveth_open(adapter->netdev);
1454 }
Santiago Leon860f2422006-04-25 11:19:59 -05001455 return 0;
Santiago Leonb6d35182005-10-26 10:47:01 -06001456 }
Santiago Leonb6d35182005-10-26 10:47:01 -06001457 }
Robert Jennings0645bab2010-08-17 09:15:45 +00001458
1459 if (need_restart && (rc = ibmveth_open(adapter->netdev)))
1460 return rc;
1461
Santiago Leon860f2422006-04-25 11:19:59 -05001462 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463}
1464
Santiago Leon6b422372006-10-03 12:24:28 -05001465#ifdef CONFIG_NET_POLL_CONTROLLER
1466static void ibmveth_poll_controller(struct net_device *dev)
1467{
Wang Chen4cf16532008-11-12 23:38:14 -08001468 ibmveth_replenish_task(netdev_priv(dev));
Andrew Morton5f771132006-10-10 14:33:30 -07001469 ibmveth_interrupt(dev->irq, dev);
Santiago Leon6b422372006-10-03 12:24:28 -05001470}
1471#endif
1472
Robert Jennings1096d632008-07-24 04:34:52 +10001473/**
1474 * ibmveth_get_desired_dma - Calculate IO memory desired by the driver
1475 *
1476 * @vdev: struct vio_dev for the device whose desired IO mem is to be returned
1477 *
1478 * Return value:
1479 * Number of bytes of IO data the driver will need to perform well.
1480 */
1481static unsigned long ibmveth_get_desired_dma(struct vio_dev *vdev)
1482{
1483 struct net_device *netdev = dev_get_drvdata(&vdev->dev);
1484 struct ibmveth_adapter *adapter;
Alistair Poppled0847752013-12-09 18:17:03 +11001485 struct iommu_table *tbl;
Robert Jennings1096d632008-07-24 04:34:52 +10001486 unsigned long ret;
1487 int i;
1488 int rxqentries = 1;
1489
Alistair Poppled0847752013-12-09 18:17:03 +11001490 tbl = get_iommu_table_base(&vdev->dev);
1491
Robert Jennings1096d632008-07-24 04:34:52 +10001492 /* netdev inits at probe time along with the structures we need below*/
1493 if (netdev == NULL)
Alistair Poppled0847752013-12-09 18:17:03 +11001494 return IOMMU_PAGE_ALIGN(IBMVETH_IO_ENTITLEMENT_DEFAULT, tbl);
Robert Jennings1096d632008-07-24 04:34:52 +10001495
1496 adapter = netdev_priv(netdev);
1497
1498 ret = IBMVETH_BUFF_LIST_SIZE + IBMVETH_FILT_LIST_SIZE;
Alistair Poppled0847752013-12-09 18:17:03 +11001499 ret += IOMMU_PAGE_ALIGN(netdev->mtu, tbl);
Robert Jennings1096d632008-07-24 04:34:52 +10001500
Santiago Leon517e80e2010-09-03 18:29:25 +00001501 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++) {
Robert Jennings1096d632008-07-24 04:34:52 +10001502 /* add the size of the active receive buffers */
1503 if (adapter->rx_buff_pool[i].active)
1504 ret +=
1505 adapter->rx_buff_pool[i].size *
1506 IOMMU_PAGE_ALIGN(adapter->rx_buff_pool[i].
Alistair Poppled0847752013-12-09 18:17:03 +11001507 buff_size, tbl);
Robert Jennings1096d632008-07-24 04:34:52 +10001508 rxqentries += adapter->rx_buff_pool[i].size;
1509 }
1510 /* add the size of the receive queue entries */
Alistair Poppled0847752013-12-09 18:17:03 +11001511 ret += IOMMU_PAGE_ALIGN(
1512 rxqentries * sizeof(struct ibmveth_rx_q_entry), tbl);
Robert Jennings1096d632008-07-24 04:34:52 +10001513
1514 return ret;
1515}
1516
Thomas Falconc77c7612015-03-02 11:56:12 -06001517static int ibmveth_set_mac_addr(struct net_device *dev, void *p)
1518{
1519 struct ibmveth_adapter *adapter = netdev_priv(dev);
1520 struct sockaddr *addr = p;
1521 u64 mac_address;
1522 int rc;
1523
1524 if (!is_valid_ether_addr(addr->sa_data))
1525 return -EADDRNOTAVAIL;
1526
1527 mac_address = ibmveth_encode_mac_addr(addr->sa_data);
1528 rc = h_change_logical_lan_mac(adapter->vdev->unit_address, mac_address);
1529 if (rc) {
1530 netdev_err(adapter->netdev, "h_change_logical_lan_mac failed with rc=%d\n", rc);
1531 return rc;
1532 }
1533
1534 ether_addr_copy(dev->dev_addr, addr->sa_data);
1535
1536 return 0;
1537}
1538
Alexander Beregalove186d172009-04-15 12:52:39 +00001539static const struct net_device_ops ibmveth_netdev_ops = {
1540 .ndo_open = ibmveth_open,
1541 .ndo_stop = ibmveth_close,
1542 .ndo_start_xmit = ibmveth_start_xmit,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00001543 .ndo_set_rx_mode = ibmveth_set_multicast_list,
Alexander Beregalove186d172009-04-15 12:52:39 +00001544 .ndo_do_ioctl = ibmveth_ioctl,
1545 .ndo_change_mtu = ibmveth_change_mtu,
Michał Mirosławb9367bf2011-04-19 02:14:25 +00001546 .ndo_fix_features = ibmveth_fix_features,
1547 .ndo_set_features = ibmveth_set_features,
Alexander Beregalove186d172009-04-15 12:52:39 +00001548 .ndo_validate_addr = eth_validate_addr,
Thomas Falconc77c7612015-03-02 11:56:12 -06001549 .ndo_set_mac_address = ibmveth_set_mac_addr,
Alexander Beregalove186d172009-04-15 12:52:39 +00001550#ifdef CONFIG_NET_POLL_CONTROLLER
1551 .ndo_poll_controller = ibmveth_poll_controller,
1552#endif
1553};
1554
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +00001555static int ibmveth_probe(struct vio_dev *dev, const struct vio_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556{
Benjamin Herrenschmidt13f85202013-05-03 17:19:01 +00001557 int rc, i, mac_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 struct net_device *netdev;
Mariusz Kozlowski9dc83af2007-08-06 23:44:03 +02001559 struct ibmveth_adapter *adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 unsigned char *mac_addr_p;
1561 unsigned int *mcastFilterSize_p;
Thomas Falcon07e6a972015-07-14 10:51:51 -05001562 long ret;
1563 unsigned long ret_attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564
Santiago Leonc43ced12010-09-03 18:29:14 +00001565 dev_dbg(&dev->dev, "entering ibmveth_probe for UA 0x%x\n",
1566 dev->unit_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
Santiago Leonf148f612010-09-03 18:29:30 +00001568 mac_addr_p = (unsigned char *)vio_get_attribute(dev, VETH_MAC_ADDR,
Benjamin Herrenschmidt13f85202013-05-03 17:19:01 +00001569 &mac_len);
Santiago Leonf148f612010-09-03 18:29:30 +00001570 if (!mac_addr_p) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001571 dev_err(&dev->dev, "Can't find VETH_MAC_ADDR attribute\n");
Santiago Leonbe35ae92010-09-03 18:29:36 +00001572 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 }
Benjamin Herrenschmidt13f85202013-05-03 17:19:01 +00001574 /* Workaround for old/broken pHyp */
1575 if (mac_len == 8)
1576 mac_addr_p += 2;
1577 else if (mac_len != 6) {
1578 dev_err(&dev->dev, "VETH_MAC_ADDR attribute wrong len %d\n",
1579 mac_len);
1580 return -EINVAL;
1581 }
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001582
Santiago Leonf148f612010-09-03 18:29:30 +00001583 mcastFilterSize_p = (unsigned int *)vio_get_attribute(dev,
Michael Ellerman493a6842007-04-17 13:12:55 +10001584 VETH_MCAST_FILTER_SIZE, NULL);
Santiago Leonf148f612010-09-03 18:29:30 +00001585 if (!mcastFilterSize_p) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001586 dev_err(&dev->dev, "Can't find VETH_MCAST_FILTER_SIZE "
1587 "attribute\n");
Santiago Leonbe35ae92010-09-03 18:29:36 +00001588 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 }
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001590
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 netdev = alloc_etherdev(sizeof(struct ibmveth_adapter));
1592
Santiago Leonf148f612010-09-03 18:29:30 +00001593 if (!netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 return -ENOMEM;
1595
Wang Chen4cf16532008-11-12 23:38:14 -08001596 adapter = netdev_priv(netdev);
Greg Kroah-Hartmanc7ae0112009-05-04 21:33:19 -07001597 dev_set_drvdata(&dev->dev, netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598
1599 adapter->vdev = dev;
1600 adapter->netdev = netdev;
Santiago Leonf148f612010-09-03 18:29:30 +00001601 adapter->mcastFilterSize = *mcastFilterSize_p;
Santiago Leon860f2422006-04-25 11:19:59 -05001602 adapter->pool_config = 0;
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001603
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001604 netif_napi_add(netdev, &adapter->napi, ibmveth_poll, 16);
1605
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 netdev->irq = dev->irq;
Alexander Beregalove186d172009-04-15 12:52:39 +00001607 netdev->netdev_ops = &ibmveth_netdev_ops;
1608 netdev->ethtool_ops = &netdev_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 SET_NETDEV_DEV(netdev, &dev->dev);
Thomas Huth23d28a82017-01-24 07:28:41 +01001610 netdev->hw_features = NETIF_F_SG;
1611 if (vio_get_attribute(dev, "ibm,illan-options", NULL) != NULL) {
1612 netdev->hw_features |= NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
1613 NETIF_F_RXCSUM;
1614 }
Thomas Falcon07e6a972015-07-14 10:51:51 -05001615
Michał Mirosławb9367bf2011-04-19 02:14:25 +00001616 netdev->features |= netdev->hw_features;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617
Thomas Falcon07e6a972015-07-14 10:51:51 -05001618 ret = h_illan_attributes(adapter->vdev->unit_address, 0, 0, &ret_attr);
1619
1620 /* If running older firmware, TSO should not be enabled by default */
1621 if (ret == H_SUCCESS && (ret_attr & IBMVETH_ILLAN_LRG_SND_SUPPORT) &&
1622 !old_large_send) {
1623 netdev->hw_features |= NETIF_F_TSO | NETIF_F_TSO6;
1624 netdev->features |= netdev->hw_features;
1625 } else {
1626 netdev->hw_features |= NETIF_F_TSO;
1627 }
Thomas Falcon8641dd82015-04-29 16:25:45 -05001628
Jarod Wilsond894be52016-10-20 13:55:16 -04001629 netdev->min_mtu = IBMVETH_MIN_MTU;
Stefan Richter110447f82016-10-24 14:42:26 +02001630 netdev->max_mtu = ETH_MAX_MTU;
Jarod Wilsond894be52016-10-20 13:55:16 -04001631
Anton Blanchardd746ca92014-03-05 14:51:37 +11001632 memcpy(netdev->dev_addr, mac_addr_p, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633
Thomas Falconcd7c7ec2015-04-29 16:25:44 -05001634 if (firmware_has_feature(FW_FEATURE_CMO))
1635 memcpy(pool_count, pool_count_cmo, sizeof(pool_count));
1636
Santiago Leonf148f612010-09-03 18:29:30 +00001637 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++) {
Santiago Leon860f2422006-04-25 11:19:59 -05001638 struct kobject *kobj = &adapter->rx_buff_pool[i].kobj;
Greg Kroah-Hartman8dde2a92007-12-17 15:54:39 -04001639 int error;
1640
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001641 ibmveth_init_buffer_pool(&adapter->rx_buff_pool[i], i,
1642 pool_count[i], pool_size[i],
Santiago Leon860f2422006-04-25 11:19:59 -05001643 pool_active[i]);
Greg Kroah-Hartman8dde2a92007-12-17 15:54:39 -04001644 error = kobject_init_and_add(kobj, &ktype_veth_pool,
1645 &dev->dev.kobj, "pool%d", i);
1646 if (!error)
1647 kobject_uevent(kobj, KOBJ_ADD);
Santiago Leon860f2422006-04-25 11:19:59 -05001648 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649
Santiago Leonc43ced12010-09-03 18:29:14 +00001650 netdev_dbg(netdev, "adapter @ 0x%p\n", adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 adapter->buffer_list_dma = DMA_ERROR_CODE;
1653 adapter->filter_list_dma = DMA_ERROR_CODE;
1654 adapter->rx_queue.queue_dma = DMA_ERROR_CODE;
1655
Santiago Leonc43ced12010-09-03 18:29:14 +00001656 netdev_dbg(netdev, "registering netdev...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657
Michał Mirosławb801a4e2011-04-28 11:59:15 +10001658 ibmveth_set_features(netdev, netdev->features);
1659
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 rc = register_netdev(netdev);
1661
Santiago Leonf148f612010-09-03 18:29:30 +00001662 if (rc) {
Santiago Leonc43ced12010-09-03 18:29:14 +00001663 netdev_dbg(netdev, "failed to register netdev rc=%d\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 free_netdev(netdev);
1665 return rc;
1666 }
1667
Santiago Leonc43ced12010-09-03 18:29:14 +00001668 netdev_dbg(netdev, "registered\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 return 0;
1671}
1672
Bill Pembertone11787a2012-12-03 09:23:12 -05001673static int ibmveth_remove(struct vio_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674{
Greg Kroah-Hartmanc7ae0112009-05-04 21:33:19 -07001675 struct net_device *netdev = dev_get_drvdata(&dev->dev);
Wang Chen4cf16532008-11-12 23:38:14 -08001676 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Santiago Leon860f2422006-04-25 11:19:59 -05001677 int i;
1678
Santiago Leonf148f612010-09-03 18:29:30 +00001679 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++)
Greg Kroah-Hartmanc10997f2007-12-20 08:13:05 -08001680 kobject_put(&adapter->rx_buff_pool[i].kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
1682 unregister_netdev(netdev);
1683
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 free_netdev(netdev);
Robert Jennings1096d632008-07-24 04:34:52 +10001685 dev_set_drvdata(&dev->dev, NULL);
1686
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 return 0;
1688}
1689
Santiago Leon860f2422006-04-25 11:19:59 -05001690static struct attribute veth_active_attr;
1691static struct attribute veth_num_attr;
1692static struct attribute veth_size_attr;
1693
Santiago Leonf148f612010-09-03 18:29:30 +00001694static ssize_t veth_pool_show(struct kobject *kobj,
1695 struct attribute *attr, char *buf)
Santiago Leon860f2422006-04-25 11:19:59 -05001696{
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001697 struct ibmveth_buff_pool *pool = container_of(kobj,
Santiago Leon860f2422006-04-25 11:19:59 -05001698 struct ibmveth_buff_pool,
1699 kobj);
1700
1701 if (attr == &veth_active_attr)
1702 return sprintf(buf, "%d\n", pool->active);
1703 else if (attr == &veth_num_attr)
1704 return sprintf(buf, "%d\n", pool->size);
1705 else if (attr == &veth_size_attr)
1706 return sprintf(buf, "%d\n", pool->buff_size);
1707 return 0;
1708}
1709
Santiago Leonf148f612010-09-03 18:29:30 +00001710static ssize_t veth_pool_store(struct kobject *kobj, struct attribute *attr,
1711 const char *buf, size_t count)
Santiago Leon860f2422006-04-25 11:19:59 -05001712{
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001713 struct ibmveth_buff_pool *pool = container_of(kobj,
Santiago Leon860f2422006-04-25 11:19:59 -05001714 struct ibmveth_buff_pool,
1715 kobj);
Greg Kroah-Hartmanc7ae0112009-05-04 21:33:19 -07001716 struct net_device *netdev = dev_get_drvdata(
1717 container_of(kobj->parent, struct device, kobj));
Wang Chen4cf16532008-11-12 23:38:14 -08001718 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Santiago Leon860f2422006-04-25 11:19:59 -05001719 long value = simple_strtol(buf, NULL, 10);
1720 long rc;
1721
1722 if (attr == &veth_active_attr) {
1723 if (value && !pool->active) {
Brian King4aa9c932007-06-08 14:05:16 -05001724 if (netif_running(netdev)) {
Santiago Leonf148f612010-09-03 18:29:30 +00001725 if (ibmveth_alloc_buffer_pool(pool)) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001726 netdev_err(netdev,
1727 "unable to alloc pool\n");
Brian King4aa9c932007-06-08 14:05:16 -05001728 return -ENOMEM;
1729 }
1730 pool->active = 1;
1731 adapter->pool_config = 1;
1732 ibmveth_close(netdev);
1733 adapter->pool_config = 0;
1734 if ((rc = ibmveth_open(netdev)))
1735 return rc;
Santiago Leonf148f612010-09-03 18:29:30 +00001736 } else {
Brian King4aa9c932007-06-08 14:05:16 -05001737 pool->active = 1;
Santiago Leonf148f612010-09-03 18:29:30 +00001738 }
Santiago Leon860f2422006-04-25 11:19:59 -05001739 } else if (!value && pool->active) {
1740 int mtu = netdev->mtu + IBMVETH_BUFF_OH;
1741 int i;
1742 /* Make sure there is a buffer pool with buffers that
1743 can hold a packet of the size of the MTU */
Santiago Leon517e80e2010-09-03 18:29:25 +00001744 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++) {
Santiago Leon860f2422006-04-25 11:19:59 -05001745 if (pool == &adapter->rx_buff_pool[i])
1746 continue;
1747 if (!adapter->rx_buff_pool[i].active)
1748 continue;
Brian King76b9cfc2007-08-03 13:55:19 +10001749 if (mtu <= adapter->rx_buff_pool[i].buff_size)
1750 break;
Santiago Leon860f2422006-04-25 11:19:59 -05001751 }
Brian King76b9cfc2007-08-03 13:55:19 +10001752
Santiago Leon517e80e2010-09-03 18:29:25 +00001753 if (i == IBMVETH_NUM_BUFF_POOLS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001754 netdev_err(netdev, "no active pool >= MTU\n");
Santiago Leon860f2422006-04-25 11:19:59 -05001755 return -EPERM;
1756 }
Brian King76b9cfc2007-08-03 13:55:19 +10001757
Brian King76b9cfc2007-08-03 13:55:19 +10001758 if (netif_running(netdev)) {
1759 adapter->pool_config = 1;
1760 ibmveth_close(netdev);
Santiago Leonea866e62008-07-24 04:34:23 +10001761 pool->active = 0;
Brian King76b9cfc2007-08-03 13:55:19 +10001762 adapter->pool_config = 0;
1763 if ((rc = ibmveth_open(netdev)))
1764 return rc;
1765 }
Santiago Leonea866e62008-07-24 04:34:23 +10001766 pool->active = 0;
Santiago Leon860f2422006-04-25 11:19:59 -05001767 }
1768 } else if (attr == &veth_num_attr) {
Santiago Leonf148f612010-09-03 18:29:30 +00001769 if (value <= 0 || value > IBMVETH_MAX_POOL_COUNT) {
Santiago Leon860f2422006-04-25 11:19:59 -05001770 return -EINVAL;
Santiago Leonf148f612010-09-03 18:29:30 +00001771 } else {
Brian King4aa9c932007-06-08 14:05:16 -05001772 if (netif_running(netdev)) {
1773 adapter->pool_config = 1;
1774 ibmveth_close(netdev);
1775 adapter->pool_config = 0;
1776 pool->size = value;
1777 if ((rc = ibmveth_open(netdev)))
1778 return rc;
Santiago Leonf148f612010-09-03 18:29:30 +00001779 } else {
Brian King4aa9c932007-06-08 14:05:16 -05001780 pool->size = value;
Santiago Leonf148f612010-09-03 18:29:30 +00001781 }
Santiago Leon860f2422006-04-25 11:19:59 -05001782 }
1783 } else if (attr == &veth_size_attr) {
Santiago Leonf148f612010-09-03 18:29:30 +00001784 if (value <= IBMVETH_BUFF_OH || value > IBMVETH_MAX_BUF_SIZE) {
Santiago Leon860f2422006-04-25 11:19:59 -05001785 return -EINVAL;
Santiago Leonf148f612010-09-03 18:29:30 +00001786 } else {
Brian King4aa9c932007-06-08 14:05:16 -05001787 if (netif_running(netdev)) {
1788 adapter->pool_config = 1;
1789 ibmveth_close(netdev);
1790 adapter->pool_config = 0;
1791 pool->buff_size = value;
1792 if ((rc = ibmveth_open(netdev)))
1793 return rc;
Santiago Leonf148f612010-09-03 18:29:30 +00001794 } else {
Brian King4aa9c932007-06-08 14:05:16 -05001795 pool->buff_size = value;
Santiago Leonf148f612010-09-03 18:29:30 +00001796 }
Santiago Leon860f2422006-04-25 11:19:59 -05001797 }
1798 }
1799
1800 /* kick the interrupt handler to allocate/deallocate pools */
David Howells7d12e782006-10-05 14:55:46 +01001801 ibmveth_interrupt(netdev->irq, netdev);
Santiago Leon860f2422006-04-25 11:19:59 -05001802 return count;
1803}
1804
1805
Santiago Leonf148f612010-09-03 18:29:30 +00001806#define ATTR(_name, _mode) \
1807 struct attribute veth_##_name##_attr = { \
1808 .name = __stringify(_name), .mode = _mode, \
1809 };
Santiago Leon860f2422006-04-25 11:19:59 -05001810
1811static ATTR(active, 0644);
1812static ATTR(num, 0644);
1813static ATTR(size, 0644);
1814
Santiago Leonf148f612010-09-03 18:29:30 +00001815static struct attribute *veth_pool_attrs[] = {
Santiago Leon860f2422006-04-25 11:19:59 -05001816 &veth_active_attr,
1817 &veth_num_attr,
1818 &veth_size_attr,
1819 NULL,
1820};
1821
Emese Revfy52cf25d2010-01-19 02:58:23 +01001822static const struct sysfs_ops veth_pool_ops = {
Santiago Leon860f2422006-04-25 11:19:59 -05001823 .show = veth_pool_show,
1824 .store = veth_pool_store,
1825};
1826
1827static struct kobj_type ktype_veth_pool = {
1828 .release = NULL,
1829 .sysfs_ops = &veth_pool_ops,
1830 .default_attrs = veth_pool_attrs,
1831};
1832
Brian Kinge7a3af52010-05-07 08:56:08 +00001833static int ibmveth_resume(struct device *dev)
1834{
1835 struct net_device *netdev = dev_get_drvdata(dev);
1836 ibmveth_interrupt(netdev->irq, netdev);
1837 return 0;
1838}
Santiago Leon860f2422006-04-25 11:19:59 -05001839
Bill Pembertone11787a2012-12-03 09:23:12 -05001840static struct vio_device_id ibmveth_device_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 { "network", "IBM,l-lan"},
Stephen Rothwellfb120da2005-08-17 16:42:59 +10001842 { "", "" }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844MODULE_DEVICE_TABLE(vio, ibmveth_device_table);
1845
Brian Kinge7a3af52010-05-07 08:56:08 +00001846static struct dev_pm_ops ibmveth_pm_ops = {
1847 .resume = ibmveth_resume
1848};
1849
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850static struct vio_driver ibmveth_driver = {
Stephen Rothwell6fdf5392005-10-24 14:53:21 +10001851 .id_table = ibmveth_device_table,
1852 .probe = ibmveth_probe,
1853 .remove = ibmveth_remove,
Robert Jennings1096d632008-07-24 04:34:52 +10001854 .get_desired_dma = ibmveth_get_desired_dma,
Benjamin Herrenschmidtcb52d892012-03-26 19:06:30 +00001855 .name = ibmveth_driver_name,
1856 .pm = &ibmveth_pm_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857};
1858
1859static int __init ibmveth_module_init(void)
1860{
Santiago Leon21c2dec2010-09-03 18:29:19 +00001861 printk(KERN_DEBUG "%s: %s %s\n", ibmveth_driver_name,
1862 ibmveth_driver_string, ibmveth_driver_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 return vio_register_driver(&ibmveth_driver);
1865}
1866
1867static void __exit ibmveth_module_exit(void)
1868{
1869 vio_unregister_driver(&ibmveth_driver);
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001870}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871
1872module_init(ibmveth_module_init);
1873module_exit(ibmveth_module_exit);