blob: 1fc8334fc181ad6d949ecffa2a289eb899c2a160 [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";
61#define ibmveth_driver_version "1.04"
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
Brian Kingddbb4de2007-08-17 09:16:43 -050082struct ibmveth_stat {
83 char name[ETH_GSTRING_LEN];
84 int offset;
85};
86
87#define IBMVETH_STAT_OFF(stat) offsetof(struct ibmveth_adapter, stat)
88#define IBMVETH_GET_STAT(a, off) *((u64 *)(((unsigned long)(a)) + off))
89
90struct ibmveth_stat ibmveth_stats[] = {
91 { "replenish_task_cycles", IBMVETH_STAT_OFF(replenish_task_cycles) },
92 { "replenish_no_mem", IBMVETH_STAT_OFF(replenish_no_mem) },
Santiago Leonf148f612010-09-03 18:29:30 +000093 { "replenish_add_buff_failure",
94 IBMVETH_STAT_OFF(replenish_add_buff_failure) },
95 { "replenish_add_buff_success",
96 IBMVETH_STAT_OFF(replenish_add_buff_success) },
Brian Kingddbb4de2007-08-17 09:16:43 -050097 { "rx_invalid_buffer", IBMVETH_STAT_OFF(rx_invalid_buffer) },
98 { "rx_no_buffer", IBMVETH_STAT_OFF(rx_no_buffer) },
Brian Kingddbb4de2007-08-17 09:16:43 -050099 { "tx_map_failed", IBMVETH_STAT_OFF(tx_map_failed) },
100 { "tx_send_failed", IBMVETH_STAT_OFF(tx_send_failed) },
Santiago Leonab78df72010-09-03 18:28:52 +0000101 { "fw_enabled_ipv4_csum", IBMVETH_STAT_OFF(fw_ipv4_csum_support) },
102 { "fw_enabled_ipv6_csum", IBMVETH_STAT_OFF(fw_ipv6_csum_support) },
Brian Kingddbb4de2007-08-17 09:16:43 -0500103};
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105/* simple methods of getting data from the current rxq entry */
Brian King79ef4a42007-08-17 09:16:56 -0500106static inline u32 ibmveth_rxq_flags(struct ibmveth_adapter *adapter)
107{
Anton Blanchard0b536be2013-09-03 09:55:32 +1000108 return be32_to_cpu(adapter->rx_queue.queue_addr[adapter->rx_queue.index].flags_off);
Brian King79ef4a42007-08-17 09:16:56 -0500109}
110
111static inline int ibmveth_rxq_toggle(struct ibmveth_adapter *adapter)
112{
Santiago Leonf148f612010-09-03 18:29:30 +0000113 return (ibmveth_rxq_flags(adapter) & IBMVETH_RXQ_TOGGLE) >>
114 IBMVETH_RXQ_TOGGLE_SHIFT;
Brian King79ef4a42007-08-17 09:16:56 -0500115}
116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117static inline int ibmveth_rxq_pending_buffer(struct ibmveth_adapter *adapter)
118{
Santiago Leonf148f612010-09-03 18:29:30 +0000119 return ibmveth_rxq_toggle(adapter) == adapter->rx_queue.toggle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120}
121
122static inline int ibmveth_rxq_buffer_valid(struct ibmveth_adapter *adapter)
123{
Santiago Leonf148f612010-09-03 18:29:30 +0000124 return ibmveth_rxq_flags(adapter) & IBMVETH_RXQ_VALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125}
126
127static inline int ibmveth_rxq_frame_offset(struct ibmveth_adapter *adapter)
128{
Santiago Leonf148f612010-09-03 18:29:30 +0000129 return ibmveth_rxq_flags(adapter) & IBMVETH_RXQ_OFF_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130}
131
132static inline int ibmveth_rxq_frame_length(struct ibmveth_adapter *adapter)
133{
Anton Blanchard0b536be2013-09-03 09:55:32 +1000134 return be32_to_cpu(adapter->rx_queue.queue_addr[adapter->rx_queue.index].length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135}
136
Brian Kingf4ff2872007-09-15 13:36:07 -0700137static inline int ibmveth_rxq_csum_good(struct ibmveth_adapter *adapter)
138{
Santiago Leonf148f612010-09-03 18:29:30 +0000139 return ibmveth_rxq_flags(adapter) & IBMVETH_RXQ_CSUM_GOOD;
Brian Kingf4ff2872007-09-15 13:36:07 -0700140}
141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142/* setup the initial settings for a buffer pool */
Santiago Leonf148f612010-09-03 18:29:30 +0000143static void ibmveth_init_buffer_pool(struct ibmveth_buff_pool *pool,
144 u32 pool_index, u32 pool_size,
145 u32 buff_size, u32 pool_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
147 pool->size = pool_size;
148 pool->index = pool_index;
149 pool->buff_size = buff_size;
Santiago Leonc033a6d2010-09-03 18:28:09 +0000150 pool->threshold = pool_size * 7 / 8;
Santiago Leon860f2422006-04-25 11:19:59 -0500151 pool->active = pool_active;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152}
153
154/* allocate and setup an buffer pool - called during open */
155static int ibmveth_alloc_buffer_pool(struct ibmveth_buff_pool *pool)
156{
157 int i;
158
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400159 pool->free_map = kmalloc(sizeof(u16) * pool->size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Santiago Leonf148f612010-09-03 18:29:30 +0000161 if (!pool->free_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400164 pool->dma_addr = kmalloc(sizeof(dma_addr_t) * pool->size, GFP_KERNEL);
Santiago Leonf148f612010-09-03 18:29:30 +0000165 if (!pool->dma_addr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 kfree(pool->free_map);
167 pool->free_map = NULL;
168 return -1;
169 }
170
Julia Lawalla05abcb2010-05-13 10:06:01 +0000171 pool->skbuff = kcalloc(pool->size, sizeof(void *), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Santiago Leonf148f612010-09-03 18:29:30 +0000173 if (!pool->skbuff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 kfree(pool->dma_addr);
175 pool->dma_addr = NULL;
176
177 kfree(pool->free_map);
178 pool->free_map = NULL;
179 return -1;
180 }
181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 memset(pool->dma_addr, 0, sizeof(dma_addr_t) * pool->size);
183
Santiago Leonf148f612010-09-03 18:29:30 +0000184 for (i = 0; i < pool->size; ++i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 pool->free_map[i] = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187 atomic_set(&pool->available, 0);
188 pool->producer_index = 0;
189 pool->consumer_index = 0;
190
191 return 0;
192}
193
Santiago Leon0c26b672010-09-03 18:28:41 +0000194static inline void ibmveth_flush_buffer(void *addr, unsigned long length)
195{
196 unsigned long offset;
197
198 for (offset = 0; offset < length; offset += SMP_CACHE_BYTES)
199 asm("dcbfl %0,%1" :: "b" (addr), "r" (offset));
200}
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202/* replenish the buffers for a pool. note that we don't need to
203 * skb_reserve these since they are used for incoming...
204 */
Santiago Leonf148f612010-09-03 18:29:30 +0000205static void ibmveth_replenish_buffer_pool(struct ibmveth_adapter *adapter,
206 struct ibmveth_buff_pool *pool)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207{
208 u32 i;
209 u32 count = pool->size - atomic_read(&pool->available);
210 u32 buffers_added = 0;
Robert Jennings1096d632008-07-24 04:34:52 +1000211 struct sk_buff *skb;
212 unsigned int free_index, index;
213 u64 correlator;
214 unsigned long lpar_rc;
215 dma_addr_t dma_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217 mb();
218
Santiago Leonf148f612010-09-03 18:29:30 +0000219 for (i = 0; i < count; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 union ibmveth_buf_desc desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Santiago Leon003212c2010-09-03 18:29:03 +0000222 skb = netdev_alloc_skb(adapter->netdev, pool->buff_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Santiago Leonf148f612010-09-03 18:29:30 +0000224 if (!skb) {
Santiago Leonc43ced12010-09-03 18:29:14 +0000225 netdev_dbg(adapter->netdev,
226 "replenish: unable to allocate skb\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 adapter->replenish_no_mem++;
228 break;
229 }
230
David Gibson047a66d2006-10-21 10:24:13 -0700231 free_index = pool->consumer_index;
Santiago Leona613f582010-09-03 18:28:04 +0000232 pool->consumer_index++;
233 if (pool->consumer_index >= pool->size)
234 pool->consumer_index = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 index = pool->free_map[free_index];
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400236
Santiago Leon64859112010-09-03 18:29:41 +0000237 BUG_ON(index == IBM_VETH_INVALID_MAP);
238 BUG_ON(pool->skbuff[index] != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240 dma_addr = dma_map_single(&adapter->vdev->dev, skb->data,
241 pool->buff_size, DMA_FROM_DEVICE);
242
Stephen Rothwellc713e7c2008-07-28 02:14:24 +1000243 if (dma_mapping_error(&adapter->vdev->dev, dma_addr))
Robert Jennings1096d632008-07-24 04:34:52 +1000244 goto failure;
245
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 pool->free_map[free_index] = IBM_VETH_INVALID_MAP;
247 pool->dma_addr[index] = dma_addr;
248 pool->skbuff[index] = skb;
249
250 correlator = ((u64)pool->index << 32) | index;
Santiago Leonf148f612010-09-03 18:29:30 +0000251 *(u64 *)skb->data = correlator;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Brian King79ef4a42007-08-17 09:16:56 -0500253 desc.fields.flags_len = IBMVETH_BUF_VALID | pool->buff_size;
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400254 desc.fields.address = dma_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Santiago Leon0c26b672010-09-03 18:28:41 +0000256 if (rx_flush) {
257 unsigned int len = min(pool->buff_size,
258 adapter->netdev->mtu +
259 IBMVETH_BUFF_OH);
260 ibmveth_flush_buffer(skb->data, len);
261 }
Santiago Leonf148f612010-09-03 18:29:30 +0000262 lpar_rc = h_add_logical_lan_buffer(adapter->vdev->unit_address,
263 desc.desc);
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400264
Santiago Leonf148f612010-09-03 18:29:30 +0000265 if (lpar_rc != H_SUCCESS) {
Robert Jennings1096d632008-07-24 04:34:52 +1000266 goto failure;
Santiago Leonf148f612010-09-03 18:29:30 +0000267 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 buffers_added++;
269 adapter->replenish_add_buff_success++;
270 }
271 }
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 mb();
274 atomic_add(buffers_added, &(pool->available));
Robert Jennings1096d632008-07-24 04:34:52 +1000275 return;
276
277failure:
278 pool->free_map[free_index] = index;
279 pool->skbuff[index] = NULL;
280 if (pool->consumer_index == 0)
281 pool->consumer_index = pool->size - 1;
282 else
283 pool->consumer_index--;
Stephen Rothwellc713e7c2008-07-28 02:14:24 +1000284 if (!dma_mapping_error(&adapter->vdev->dev, dma_addr))
Robert Jennings1096d632008-07-24 04:34:52 +1000285 dma_unmap_single(&adapter->vdev->dev,
286 pool->dma_addr[index], pool->buff_size,
287 DMA_FROM_DEVICE);
288 dev_kfree_skb_any(skb);
289 adapter->replenish_add_buff_failure++;
290
291 mb();
292 atomic_add(buffers_added, &(pool->available));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293}
294
Santiago Leone2adbcb2005-10-26 10:47:08 -0600295/* replenish routine */
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400296static void ibmveth_replenish_task(struct ibmveth_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297{
Santiago Leonb6d35182005-10-26 10:47:01 -0600298 int i;
299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 adapter->replenish_task_cycles++;
301
Santiago Leon517e80e2010-09-03 18:29:25 +0000302 for (i = (IBMVETH_NUM_BUFF_POOLS - 1); i >= 0; i--) {
Santiago Leonc033a6d2010-09-03 18:28:09 +0000303 struct ibmveth_buff_pool *pool = &adapter->rx_buff_pool[i];
304
305 if (pool->active &&
306 (atomic_read(&pool->available) < pool->threshold))
307 ibmveth_replenish_buffer_pool(adapter, pool);
308 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Santiago Leonf148f612010-09-03 18:29:30 +0000310 adapter->rx_no_buffer = *(u64 *)(((char*)adapter->buffer_list_addr) +
311 4096 - 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312}
313
314/* empty and free ana buffer pool - also used to do cleanup in error paths */
Santiago Leonf148f612010-09-03 18:29:30 +0000315static void ibmveth_free_buffer_pool(struct ibmveth_adapter *adapter,
316 struct ibmveth_buff_pool *pool)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317{
318 int i;
319
Jesper Juhlb4558ea2005-10-28 16:53:13 -0400320 kfree(pool->free_map);
321 pool->free_map = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Santiago Leonf148f612010-09-03 18:29:30 +0000323 if (pool->skbuff && pool->dma_addr) {
324 for (i = 0; i < pool->size; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 struct sk_buff *skb = pool->skbuff[i];
Santiago Leonf148f612010-09-03 18:29:30 +0000326 if (skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 dma_unmap_single(&adapter->vdev->dev,
328 pool->dma_addr[i],
329 pool->buff_size,
330 DMA_FROM_DEVICE);
331 dev_kfree_skb_any(skb);
332 pool->skbuff[i] = NULL;
333 }
334 }
335 }
336
Santiago Leonf148f612010-09-03 18:29:30 +0000337 if (pool->dma_addr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 kfree(pool->dma_addr);
339 pool->dma_addr = NULL;
340 }
341
Santiago Leonf148f612010-09-03 18:29:30 +0000342 if (pool->skbuff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 kfree(pool->skbuff);
344 pool->skbuff = NULL;
345 }
346}
347
348/* remove a buffer from a pool */
Santiago Leonf148f612010-09-03 18:29:30 +0000349static void ibmveth_remove_buffer_from_pool(struct ibmveth_adapter *adapter,
350 u64 correlator)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351{
352 unsigned int pool = correlator >> 32;
353 unsigned int index = correlator & 0xffffffffUL;
354 unsigned int free_index;
355 struct sk_buff *skb;
356
Santiago Leon64859112010-09-03 18:29:41 +0000357 BUG_ON(pool >= IBMVETH_NUM_BUFF_POOLS);
358 BUG_ON(index >= adapter->rx_buff_pool[pool].size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
360 skb = adapter->rx_buff_pool[pool].skbuff[index];
361
Santiago Leon64859112010-09-03 18:29:41 +0000362 BUG_ON(skb == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
364 adapter->rx_buff_pool[pool].skbuff[index] = NULL;
365
366 dma_unmap_single(&adapter->vdev->dev,
367 adapter->rx_buff_pool[pool].dma_addr[index],
368 adapter->rx_buff_pool[pool].buff_size,
369 DMA_FROM_DEVICE);
370
David Gibson047a66d2006-10-21 10:24:13 -0700371 free_index = adapter->rx_buff_pool[pool].producer_index;
Santiago Leona613f582010-09-03 18:28:04 +0000372 adapter->rx_buff_pool[pool].producer_index++;
373 if (adapter->rx_buff_pool[pool].producer_index >=
374 adapter->rx_buff_pool[pool].size)
375 adapter->rx_buff_pool[pool].producer_index = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 adapter->rx_buff_pool[pool].free_map[free_index] = index;
377
378 mb();
379
380 atomic_dec(&(adapter->rx_buff_pool[pool].available));
381}
382
383/* get the current buffer on the rx queue */
384static inline struct sk_buff *ibmveth_rxq_get_buffer(struct ibmveth_adapter *adapter)
385{
386 u64 correlator = adapter->rx_queue.queue_addr[adapter->rx_queue.index].correlator;
387 unsigned int pool = correlator >> 32;
388 unsigned int index = correlator & 0xffffffffUL;
389
Santiago Leon64859112010-09-03 18:29:41 +0000390 BUG_ON(pool >= IBMVETH_NUM_BUFF_POOLS);
391 BUG_ON(index >= adapter->rx_buff_pool[pool].size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
393 return adapter->rx_buff_pool[pool].skbuff[index];
394}
395
396/* recycle the current buffer on the rx queue */
David S. Miller8decf862011-09-22 03:23:13 -0400397static int ibmveth_rxq_recycle_buffer(struct ibmveth_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398{
399 u32 q_index = adapter->rx_queue.index;
400 u64 correlator = adapter->rx_queue.queue_addr[q_index].correlator;
401 unsigned int pool = correlator >> 32;
402 unsigned int index = correlator & 0xffffffffUL;
403 union ibmveth_buf_desc desc;
404 unsigned long lpar_rc;
David S. Miller8decf862011-09-22 03:23:13 -0400405 int ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Santiago Leon64859112010-09-03 18:29:41 +0000407 BUG_ON(pool >= IBMVETH_NUM_BUFF_POOLS);
408 BUG_ON(index >= adapter->rx_buff_pool[pool].size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Santiago Leonf148f612010-09-03 18:29:30 +0000410 if (!adapter->rx_buff_pool[pool].active) {
Santiago Leonb6d35182005-10-26 10:47:01 -0600411 ibmveth_rxq_harvest_buffer(adapter);
412 ibmveth_free_buffer_pool(adapter, &adapter->rx_buff_pool[pool]);
David S. Miller8decf862011-09-22 03:23:13 -0400413 goto out;
Santiago Leonb6d35182005-10-26 10:47:01 -0600414 }
415
Brian King79ef4a42007-08-17 09:16:56 -0500416 desc.fields.flags_len = IBMVETH_BUF_VALID |
417 adapter->rx_buff_pool[pool].buff_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 desc.fields.address = adapter->rx_buff_pool[pool].dma_addr[index];
419
420 lpar_rc = h_add_logical_lan_buffer(adapter->vdev->unit_address, desc.desc);
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400421
Santiago Leonf148f612010-09-03 18:29:30 +0000422 if (lpar_rc != H_SUCCESS) {
Santiago Leonc43ced12010-09-03 18:29:14 +0000423 netdev_dbg(adapter->netdev, "h_add_logical_lan_buffer failed "
424 "during recycle rc=%ld", lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 ibmveth_remove_buffer_from_pool(adapter, adapter->rx_queue.queue_addr[adapter->rx_queue.index].correlator);
David S. Miller8decf862011-09-22 03:23:13 -0400426 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 }
428
Santiago Leonf148f612010-09-03 18:29:30 +0000429 if (++adapter->rx_queue.index == adapter->rx_queue.num_slots) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 adapter->rx_queue.index = 0;
431 adapter->rx_queue.toggle = !adapter->rx_queue.toggle;
432 }
David S. Miller8decf862011-09-22 03:23:13 -0400433
434out:
435 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436}
437
Michael Ellerman493a6842007-04-17 13:12:55 +1000438static void ibmveth_rxq_harvest_buffer(struct ibmveth_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439{
440 ibmveth_remove_buffer_from_pool(adapter, adapter->rx_queue.queue_addr[adapter->rx_queue.index].correlator);
441
Santiago Leonf148f612010-09-03 18:29:30 +0000442 if (++adapter->rx_queue.index == adapter->rx_queue.num_slots) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 adapter->rx_queue.index = 0;
444 adapter->rx_queue.toggle = !adapter->rx_queue.toggle;
445 }
446}
447
448static void ibmveth_cleanup(struct ibmveth_adapter *adapter)
449{
Santiago Leonb6d35182005-10-26 10:47:01 -0600450 int i;
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700451 struct device *dev = &adapter->vdev->dev;
Santiago Leonb6d35182005-10-26 10:47:01 -0600452
Santiago Leonf148f612010-09-03 18:29:30 +0000453 if (adapter->buffer_list_addr != NULL) {
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700454 if (!dma_mapping_error(dev, adapter->buffer_list_dma)) {
455 dma_unmap_single(dev, adapter->buffer_list_dma, 4096,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 DMA_BIDIRECTIONAL);
457 adapter->buffer_list_dma = DMA_ERROR_CODE;
458 }
459 free_page((unsigned long)adapter->buffer_list_addr);
460 adapter->buffer_list_addr = NULL;
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400461 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
Santiago Leonf148f612010-09-03 18:29:30 +0000463 if (adapter->filter_list_addr != NULL) {
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700464 if (!dma_mapping_error(dev, adapter->filter_list_dma)) {
465 dma_unmap_single(dev, adapter->filter_list_dma, 4096,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 DMA_BIDIRECTIONAL);
467 adapter->filter_list_dma = DMA_ERROR_CODE;
468 }
469 free_page((unsigned long)adapter->filter_list_addr);
470 adapter->filter_list_addr = NULL;
471 }
472
Santiago Leonf148f612010-09-03 18:29:30 +0000473 if (adapter->rx_queue.queue_addr != NULL) {
Santiago Leond90c92f2012-09-04 14:41:37 +0000474 dma_free_coherent(dev, adapter->rx_queue.queue_len,
475 adapter->rx_queue.queue_addr,
476 adapter->rx_queue.queue_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 adapter->rx_queue.queue_addr = NULL;
478 }
479
Santiago Leonf148f612010-09-03 18:29:30 +0000480 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++)
Santiago Leon860f2422006-04-25 11:19:59 -0500481 if (adapter->rx_buff_pool[i].active)
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400482 ibmveth_free_buffer_pool(adapter,
Santiago Leon860f2422006-04-25 11:19:59 -0500483 &adapter->rx_buff_pool[i]);
Robert Jennings1096d632008-07-24 04:34:52 +1000484
485 if (adapter->bounce_buffer != NULL) {
Stephen Rothwellc713e7c2008-07-28 02:14:24 +1000486 if (!dma_mapping_error(dev, adapter->bounce_buffer_dma)) {
Robert Jennings1096d632008-07-24 04:34:52 +1000487 dma_unmap_single(&adapter->vdev->dev,
488 adapter->bounce_buffer_dma,
489 adapter->netdev->mtu + IBMVETH_BUFF_OH,
490 DMA_BIDIRECTIONAL);
491 adapter->bounce_buffer_dma = DMA_ERROR_CODE;
492 }
493 kfree(adapter->bounce_buffer);
494 adapter->bounce_buffer = NULL;
495 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496}
497
Michael Ellermanbbedefc2006-10-03 12:24:23 -0500498static int ibmveth_register_logical_lan(struct ibmveth_adapter *adapter,
499 union ibmveth_buf_desc rxq_desc, u64 mac_address)
500{
501 int rc, try_again = 1;
502
Santiago Leonf148f612010-09-03 18:29:30 +0000503 /*
504 * After a kexec the adapter will still be open, so our attempt to
505 * open it will fail. So if we get a failure we free the adapter and
506 * try again, but only once.
507 */
Michael Ellermanbbedefc2006-10-03 12:24:23 -0500508retry:
509 rc = h_register_logical_lan(adapter->vdev->unit_address,
510 adapter->buffer_list_dma, rxq_desc.desc,
511 adapter->filter_list_dma, mac_address);
512
513 if (rc != H_SUCCESS && try_again) {
514 do {
515 rc = h_free_logical_lan(adapter->vdev->unit_address);
516 } while (H_IS_LONG_BUSY(rc) || (rc == H_BUSY));
517
518 try_again = 0;
519 goto retry;
520 }
521
522 return rc;
523}
524
Anton Blanchardd746ca92014-03-05 14:51:37 +1100525static u64 ibmveth_encode_mac_addr(u8 *mac)
526{
527 int i;
528 u64 encoded = 0;
529
530 for (i = 0; i < ETH_ALEN; i++)
531 encoded = (encoded << 8) | mac[i];
532
533 return encoded;
534}
535
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536static int ibmveth_open(struct net_device *netdev)
537{
Wang Chen4cf16532008-11-12 23:38:14 -0800538 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Anton Blanchardd746ca92014-03-05 14:51:37 +1100539 u64 mac_address;
Santiago Leonb6d35182005-10-26 10:47:01 -0600540 int rxq_entries = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 unsigned long lpar_rc;
542 int rc;
543 union ibmveth_buf_desc rxq_desc;
Santiago Leonb6d35182005-10-26 10:47:01 -0600544 int i;
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700545 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Santiago Leonc43ced12010-09-03 18:29:14 +0000547 netdev_dbg(netdev, "open starting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700549 napi_enable(&adapter->napi);
550
Santiago Leon517e80e2010-09-03 18:29:25 +0000551 for(i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++)
Santiago Leonb6d35182005-10-26 10:47:01 -0600552 rxq_entries += adapter->rx_buff_pool[i].size;
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400553
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 adapter->buffer_list_addr = (void*) get_zeroed_page(GFP_KERNEL);
555 adapter->filter_list_addr = (void*) get_zeroed_page(GFP_KERNEL);
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400556
Santiago Leonf148f612010-09-03 18:29:30 +0000557 if (!adapter->buffer_list_addr || !adapter->filter_list_addr) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000558 netdev_err(netdev, "unable to allocate filter or buffer list "
559 "pages\n");
Denis Kirjanov88426f22010-10-20 04:21:13 +0000560 rc = -ENOMEM;
561 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 }
563
Santiago Leond90c92f2012-09-04 14:41:37 +0000564 dev = &adapter->vdev->dev;
565
Santiago Leonf148f612010-09-03 18:29:30 +0000566 adapter->rx_queue.queue_len = sizeof(struct ibmveth_rx_q_entry) *
567 rxq_entries;
Santiago Leond90c92f2012-09-04 14:41:37 +0000568 adapter->rx_queue.queue_addr =
Joe Perchesd0320f72013-03-14 13:07:21 +0000569 dma_alloc_coherent(dev, adapter->rx_queue.queue_len,
570 &adapter->rx_queue.queue_dma, GFP_KERNEL);
Santiago Leonf148f612010-09-03 18:29:30 +0000571 if (!adapter->rx_queue.queue_addr) {
Denis Kirjanov88426f22010-10-20 04:21:13 +0000572 rc = -ENOMEM;
573 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 }
575
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700576 adapter->buffer_list_dma = dma_map_single(dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 adapter->buffer_list_addr, 4096, DMA_BIDIRECTIONAL);
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700578 adapter->filter_list_dma = dma_map_single(dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 adapter->filter_list_addr, 4096, DMA_BIDIRECTIONAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700581 if ((dma_mapping_error(dev, adapter->buffer_list_dma)) ||
Santiago Leond90c92f2012-09-04 14:41:37 +0000582 (dma_mapping_error(dev, adapter->filter_list_dma))) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000583 netdev_err(netdev, "unable to map filter or buffer list "
584 "pages\n");
Denis Kirjanov88426f22010-10-20 04:21:13 +0000585 rc = -ENOMEM;
586 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 }
588
589 adapter->rx_queue.index = 0;
590 adapter->rx_queue.num_slots = rxq_entries;
591 adapter->rx_queue.toggle = 1;
592
Anton Blanchardd746ca92014-03-05 14:51:37 +1100593 mac_address = ibmveth_encode_mac_addr(netdev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Santiago Leonf148f612010-09-03 18:29:30 +0000595 rxq_desc.fields.flags_len = IBMVETH_BUF_VALID |
596 adapter->rx_queue.queue_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 rxq_desc.fields.address = adapter->rx_queue.queue_dma;
598
Santiago Leonc43ced12010-09-03 18:29:14 +0000599 netdev_dbg(netdev, "buffer list @ 0x%p\n", adapter->buffer_list_addr);
600 netdev_dbg(netdev, "filter list @ 0x%p\n", adapter->filter_list_addr);
601 netdev_dbg(netdev, "receive q @ 0x%p\n", adapter->rx_queue.queue_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Santiago Leon4347ef12006-10-03 12:24:34 -0500603 h_vio_signal(adapter->vdev->unit_address, VIO_IRQ_DISABLE);
604
Michael Ellermanbbedefc2006-10-03 12:24:23 -0500605 lpar_rc = ibmveth_register_logical_lan(adapter, rxq_desc, mac_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
Santiago Leonf148f612010-09-03 18:29:30 +0000607 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000608 netdev_err(netdev, "h_register_logical_lan failed with %ld\n",
609 lpar_rc);
610 netdev_err(netdev, "buffer TCE:0x%llx filter TCE:0x%llx rxq "
611 "desc:0x%llx MAC:0x%llx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 adapter->buffer_list_dma,
613 adapter->filter_list_dma,
614 rxq_desc.desc,
615 mac_address);
Denis Kirjanov88426f22010-10-20 04:21:13 +0000616 rc = -ENONET;
617 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 }
619
Santiago Leonf148f612010-09-03 18:29:30 +0000620 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++) {
621 if (!adapter->rx_buff_pool[i].active)
Santiago Leon860f2422006-04-25 11:19:59 -0500622 continue;
623 if (ibmveth_alloc_buffer_pool(&adapter->rx_buff_pool[i])) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000624 netdev_err(netdev, "unable to alloc pool\n");
Santiago Leon860f2422006-04-25 11:19:59 -0500625 adapter->rx_buff_pool[i].active = 0;
Denis Kirjanov88426f22010-10-20 04:21:13 +0000626 rc = -ENOMEM;
627 goto err_out;
Santiago Leon860f2422006-04-25 11:19:59 -0500628 }
629 }
630
Santiago Leonc43ced12010-09-03 18:29:14 +0000631 netdev_dbg(netdev, "registering irq 0x%x\n", netdev->irq);
Santiago Leonf148f612010-09-03 18:29:30 +0000632 rc = request_irq(netdev->irq, ibmveth_interrupt, 0, netdev->name,
633 netdev);
634 if (rc != 0) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000635 netdev_err(netdev, "unable to request irq 0x%x, rc %d\n",
636 netdev->irq, rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 do {
David S. Miller88c51002011-10-07 13:38:43 -0400638 lpar_rc = h_free_logical_lan(adapter->vdev->unit_address);
639 } while (H_IS_LONG_BUSY(lpar_rc) || (lpar_rc == H_BUSY));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Denis Kirjanov88426f22010-10-20 04:21:13 +0000641 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 }
643
Robert Jennings1096d632008-07-24 04:34:52 +1000644 adapter->bounce_buffer =
645 kmalloc(netdev->mtu + IBMVETH_BUFF_OH, GFP_KERNEL);
646 if (!adapter->bounce_buffer) {
Denis Kirjanov88426f22010-10-20 04:21:13 +0000647 rc = -ENOMEM;
Denis Kirjanove0e8ab52010-10-20 04:21:51 +0000648 goto err_out_free_irq;
Robert Jennings1096d632008-07-24 04:34:52 +1000649 }
650 adapter->bounce_buffer_dma =
651 dma_map_single(&adapter->vdev->dev, adapter->bounce_buffer,
652 netdev->mtu + IBMVETH_BUFF_OH, DMA_BIDIRECTIONAL);
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700653 if (dma_mapping_error(dev, adapter->bounce_buffer_dma)) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000654 netdev_err(netdev, "unable to map bounce buffer\n");
Denis Kirjanov88426f22010-10-20 04:21:13 +0000655 rc = -ENOMEM;
Denis Kirjanove0e8ab52010-10-20 04:21:51 +0000656 goto err_out_free_irq;
Robert Jennings1096d632008-07-24 04:34:52 +1000657 }
658
Santiago Leonc43ced12010-09-03 18:29:14 +0000659 netdev_dbg(netdev, "initial replenish cycle\n");
David Howells7d12e782006-10-05 14:55:46 +0100660 ibmveth_interrupt(netdev->irq, netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
Santiago Leone2adbcb2005-10-26 10:47:08 -0600662 netif_start_queue(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Santiago Leonc43ced12010-09-03 18:29:14 +0000664 netdev_dbg(netdev, "open complete\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
666 return 0;
Denis Kirjanov88426f22010-10-20 04:21:13 +0000667
Denis Kirjanove0e8ab52010-10-20 04:21:51 +0000668err_out_free_irq:
669 free_irq(netdev->irq, netdev);
Denis Kirjanov88426f22010-10-20 04:21:13 +0000670err_out:
671 ibmveth_cleanup(adapter);
672 napi_disable(&adapter->napi);
673 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674}
675
676static int ibmveth_close(struct net_device *netdev)
677{
Wang Chen4cf16532008-11-12 23:38:14 -0800678 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 long lpar_rc;
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400680
Santiago Leonc43ced12010-09-03 18:29:14 +0000681 netdev_dbg(netdev, "close starting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700683 napi_disable(&adapter->napi);
684
Santiago Leon860f2422006-04-25 11:19:59 -0500685 if (!adapter->pool_config)
686 netif_stop_queue(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Robert Jenningsee2e6112010-07-16 04:57:25 +0000688 h_vio_signal(adapter->vdev->unit_address, VIO_IRQ_DISABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 do {
691 lpar_rc = h_free_logical_lan(adapter->vdev->unit_address);
Segher Boessenkool706c8c92006-03-30 14:49:40 +0200692 } while (H_IS_LONG_BUSY(lpar_rc) || (lpar_rc == H_BUSY));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
Santiago Leonf148f612010-09-03 18:29:30 +0000694 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000695 netdev_err(netdev, "h_free_logical_lan failed with %lx, "
696 "continuing with close\n", lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 }
698
Robert Jenningsee2e6112010-07-16 04:57:25 +0000699 free_irq(netdev->irq, netdev);
700
Santiago Leonf148f612010-09-03 18:29:30 +0000701 adapter->rx_no_buffer = *(u64 *)(((char *)adapter->buffer_list_addr) +
702 4096 - 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
704 ibmveth_cleanup(adapter);
705
Santiago Leonc43ced12010-09-03 18:29:14 +0000706 netdev_dbg(netdev, "close complete\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
708 return 0;
709}
710
Santiago Leonf148f612010-09-03 18:29:30 +0000711static int netdev_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
712{
713 cmd->supported = (SUPPORTED_1000baseT_Full | SUPPORTED_Autoneg |
714 SUPPORTED_FIBRE);
715 cmd->advertising = (ADVERTISED_1000baseT_Full | ADVERTISED_Autoneg |
716 ADVERTISED_FIBRE);
David Decotigny70739492011-04-27 18:32:40 +0000717 ethtool_cmd_speed_set(cmd, SPEED_1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 cmd->duplex = DUPLEX_FULL;
719 cmd->port = PORT_FIBRE;
720 cmd->phy_address = 0;
721 cmd->transceiver = XCVR_INTERNAL;
722 cmd->autoneg = AUTONEG_ENABLE;
723 cmd->maxtxpkt = 0;
724 cmd->maxrxpkt = 1;
725 return 0;
726}
727
Santiago Leonf148f612010-09-03 18:29:30 +0000728static void netdev_get_drvinfo(struct net_device *dev,
729 struct ethtool_drvinfo *info)
730{
Jiri Pirko7826d432013-01-06 00:44:26 +0000731 strlcpy(info->driver, ibmveth_driver_name, sizeof(info->driver));
732 strlcpy(info->version, ibmveth_driver_version, sizeof(info->version));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733}
734
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000735static netdev_features_t ibmveth_fix_features(struct net_device *dev,
736 netdev_features_t features)
Brian King5fc7e012007-08-17 09:16:31 -0500737{
Michał Mirosławb9367bf2011-04-19 02:14:25 +0000738 /*
739 * Since the ibmveth firmware interface does not have the
740 * concept of separate tx/rx checksum offload enable, if rx
741 * checksum is disabled we also have to disable tx checksum
742 * offload. Once we disable rx checksum offload, we are no
743 * longer allowed to send tx buffers that are not properly
744 * checksummed.
745 */
Brian King5fc7e012007-08-17 09:16:31 -0500746
Michał Mirosławb9367bf2011-04-19 02:14:25 +0000747 if (!(features & NETIF_F_RXCSUM))
748 features &= ~NETIF_F_ALL_CSUM;
749
750 return features;
Brian King5fc7e012007-08-17 09:16:31 -0500751}
752
Michał Mirosławb9367bf2011-04-19 02:14:25 +0000753static int ibmveth_set_csum_offload(struct net_device *dev, u32 data)
Brian King5fc7e012007-08-17 09:16:31 -0500754{
Wang Chen4cf16532008-11-12 23:38:14 -0800755 struct ibmveth_adapter *adapter = netdev_priv(dev);
Stephen Rothwellff5bfc32009-01-06 10:47:44 -0800756 unsigned long set_attr, clr_attr, ret_attr;
Santiago Leonab78df72010-09-03 18:28:52 +0000757 unsigned long set_attr6, clr_attr6;
David S. Miller8decf862011-09-22 03:23:13 -0400758 long ret, ret4, ret6;
Brian King5fc7e012007-08-17 09:16:31 -0500759 int rc1 = 0, rc2 = 0;
760 int restart = 0;
761
762 if (netif_running(dev)) {
763 restart = 1;
764 adapter->pool_config = 1;
765 ibmveth_close(dev);
766 adapter->pool_config = 0;
767 }
768
Brian King79ef4a42007-08-17 09:16:56 -0500769 set_attr = 0;
770 clr_attr = 0;
David S. Miller8decf862011-09-22 03:23:13 -0400771 set_attr6 = 0;
772 clr_attr6 = 0;
Brian King5fc7e012007-08-17 09:16:31 -0500773
Santiago Leonab78df72010-09-03 18:28:52 +0000774 if (data) {
Brian King79ef4a42007-08-17 09:16:56 -0500775 set_attr = IBMVETH_ILLAN_IPV4_TCP_CSUM;
Santiago Leonab78df72010-09-03 18:28:52 +0000776 set_attr6 = IBMVETH_ILLAN_IPV6_TCP_CSUM;
777 } else {
Brian King79ef4a42007-08-17 09:16:56 -0500778 clr_attr = IBMVETH_ILLAN_IPV4_TCP_CSUM;
Santiago Leonab78df72010-09-03 18:28:52 +0000779 clr_attr6 = IBMVETH_ILLAN_IPV6_TCP_CSUM;
780 }
Brian King5fc7e012007-08-17 09:16:31 -0500781
Brian King79ef4a42007-08-17 09:16:56 -0500782 ret = h_illan_attributes(adapter->vdev->unit_address, 0, 0, &ret_attr);
Brian King5fc7e012007-08-17 09:16:31 -0500783
Brian King79ef4a42007-08-17 09:16:56 -0500784 if (ret == H_SUCCESS && !(ret_attr & IBMVETH_ILLAN_ACTIVE_TRUNK) &&
785 !(ret_attr & IBMVETH_ILLAN_TRUNK_PRI_MASK) &&
786 (ret_attr & IBMVETH_ILLAN_PADDED_PKT_CSUM)) {
David S. Miller8decf862011-09-22 03:23:13 -0400787 ret4 = h_illan_attributes(adapter->vdev->unit_address, clr_attr,
Brian King79ef4a42007-08-17 09:16:56 -0500788 set_attr, &ret_attr);
Brian King5fc7e012007-08-17 09:16:31 -0500789
David S. Miller8decf862011-09-22 03:23:13 -0400790 if (ret4 != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000791 netdev_err(dev, "unable to change IPv4 checksum "
792 "offload settings. %d rc=%ld\n",
David S. Miller8decf862011-09-22 03:23:13 -0400793 data, ret4);
Brian King5fc7e012007-08-17 09:16:31 -0500794
David S. Miller8decf862011-09-22 03:23:13 -0400795 h_illan_attributes(adapter->vdev->unit_address,
796 set_attr, clr_attr, &ret_attr);
797
798 if (data == 1)
799 dev->features &= ~NETIF_F_IP_CSUM;
800
Santiago Leonf148f612010-09-03 18:29:30 +0000801 } else {
Santiago Leonab78df72010-09-03 18:28:52 +0000802 adapter->fw_ipv4_csum_support = data;
Santiago Leonf148f612010-09-03 18:29:30 +0000803 }
Santiago Leonab78df72010-09-03 18:28:52 +0000804
805 ret6 = h_illan_attributes(adapter->vdev->unit_address,
806 clr_attr6, set_attr6, &ret_attr);
807
808 if (ret6 != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000809 netdev_err(dev, "unable to change IPv6 checksum "
810 "offload settings. %d rc=%ld\n",
David S. Miller8decf862011-09-22 03:23:13 -0400811 data, ret6);
Santiago Leonab78df72010-09-03 18:28:52 +0000812
David S. Miller8decf862011-09-22 03:23:13 -0400813 h_illan_attributes(adapter->vdev->unit_address,
814 set_attr6, clr_attr6, &ret_attr);
815
816 if (data == 1)
817 dev->features &= ~NETIF_F_IPV6_CSUM;
818
Santiago Leonab78df72010-09-03 18:28:52 +0000819 } else
820 adapter->fw_ipv6_csum_support = data;
821
David S. Miller8decf862011-09-22 03:23:13 -0400822 if (ret4 == H_SUCCESS || ret6 == H_SUCCESS)
Michał Mirosławb9367bf2011-04-19 02:14:25 +0000823 adapter->rx_csum = data;
Santiago Leonab78df72010-09-03 18:28:52 +0000824 else
825 rc1 = -EIO;
Brian King5fc7e012007-08-17 09:16:31 -0500826 } else {
827 rc1 = -EIO;
Santiago Leon21c2dec2010-09-03 18:29:19 +0000828 netdev_err(dev, "unable to change checksum offload settings."
829 " %d rc=%ld ret_attr=%lx\n", data, ret,
830 ret_attr);
Brian King5fc7e012007-08-17 09:16:31 -0500831 }
832
833 if (restart)
834 rc2 = ibmveth_open(dev);
835
836 return rc1 ? rc1 : rc2;
837}
838
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000839static int ibmveth_set_features(struct net_device *dev,
840 netdev_features_t features)
Brian King5fc7e012007-08-17 09:16:31 -0500841{
Wang Chen4cf16532008-11-12 23:38:14 -0800842 struct ibmveth_adapter *adapter = netdev_priv(dev);
Michał Mirosławb9367bf2011-04-19 02:14:25 +0000843 int rx_csum = !!(features & NETIF_F_RXCSUM);
844 int rc;
Brian King5fc7e012007-08-17 09:16:31 -0500845
Michał Mirosławb9367bf2011-04-19 02:14:25 +0000846 if (rx_csum == adapter->rx_csum)
Brian King5fc7e012007-08-17 09:16:31 -0500847 return 0;
848
Michał Mirosławb9367bf2011-04-19 02:14:25 +0000849 rc = ibmveth_set_csum_offload(dev, rx_csum);
850 if (rc && !adapter->rx_csum)
851 dev->features = features & ~(NETIF_F_ALL_CSUM | NETIF_F_RXCSUM);
Brian King5fc7e012007-08-17 09:16:31 -0500852
853 return rc;
854}
855
Brian Kingddbb4de2007-08-17 09:16:43 -0500856static void ibmveth_get_strings(struct net_device *dev, u32 stringset, u8 *data)
857{
858 int i;
859
860 if (stringset != ETH_SS_STATS)
861 return;
862
863 for (i = 0; i < ARRAY_SIZE(ibmveth_stats); i++, data += ETH_GSTRING_LEN)
864 memcpy(data, ibmveth_stats[i].name, ETH_GSTRING_LEN);
865}
866
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700867static int ibmveth_get_sset_count(struct net_device *dev, int sset)
Brian Kingddbb4de2007-08-17 09:16:43 -0500868{
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700869 switch (sset) {
870 case ETH_SS_STATS:
871 return ARRAY_SIZE(ibmveth_stats);
872 default:
873 return -EOPNOTSUPP;
874 }
Brian Kingddbb4de2007-08-17 09:16:43 -0500875}
876
877static void ibmveth_get_ethtool_stats(struct net_device *dev,
878 struct ethtool_stats *stats, u64 *data)
879{
880 int i;
Wang Chen4cf16532008-11-12 23:38:14 -0800881 struct ibmveth_adapter *adapter = netdev_priv(dev);
Brian Kingddbb4de2007-08-17 09:16:43 -0500882
883 for (i = 0; i < ARRAY_SIZE(ibmveth_stats); i++)
884 data[i] = IBMVETH_GET_STAT(adapter, ibmveth_stats[i].offset);
885}
886
Jeff Garzik7282d492006-09-13 14:30:00 -0400887static const struct ethtool_ops netdev_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 .get_drvinfo = netdev_get_drvinfo,
889 .get_settings = netdev_get_settings,
Ben Hutchingsed4ba4b2010-12-09 12:10:25 +0000890 .get_link = ethtool_op_get_link,
Brian Kingddbb4de2007-08-17 09:16:43 -0500891 .get_strings = ibmveth_get_strings,
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700892 .get_sset_count = ibmveth_get_sset_count,
Brian Kingddbb4de2007-08-17 09:16:43 -0500893 .get_ethtool_stats = ibmveth_get_ethtool_stats,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894};
895
896static int ibmveth_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
897{
898 return -EOPNOTSUPP;
899}
900
901#define page_offset(v) ((unsigned long)(v) & ((1 << 12) - 1))
902
Santiago Leon6e8ab302010-09-03 18:28:36 +0000903static int ibmveth_send(struct ibmveth_adapter *adapter,
904 union ibmveth_buf_desc *descs)
905{
906 unsigned long correlator;
907 unsigned int retry_count;
908 unsigned long ret;
909
910 /*
911 * The retry count sets a maximum for the number of broadcast and
912 * multicast destinations within the system.
913 */
914 retry_count = 1024;
915 correlator = 0;
916 do {
917 ret = h_send_logical_lan(adapter->vdev->unit_address,
918 descs[0].desc, descs[1].desc,
919 descs[2].desc, descs[3].desc,
920 descs[4].desc, descs[5].desc,
921 correlator, &correlator);
922 } while ((ret == H_BUSY) && (retry_count--));
923
924 if (ret != H_SUCCESS && ret != H_DROPPED) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000925 netdev_err(adapter->netdev, "tx: h_send_logical_lan failed "
926 "with rc=%ld\n", ret);
Santiago Leon6e8ab302010-09-03 18:28:36 +0000927 return 1;
928 }
929
930 return 0;
931}
932
Stephen Hemminger613573252009-08-31 19:50:58 +0000933static netdev_tx_t ibmveth_start_xmit(struct sk_buff *skb,
934 struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935{
Wang Chen4cf16532008-11-12 23:38:14 -0800936 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Santiago Leon6e8ab302010-09-03 18:28:36 +0000937 unsigned int desc_flags;
938 union ibmveth_buf_desc descs[6];
939 int last, i;
940 int force_bounce = 0;
David S. Miller8decf862011-09-22 03:23:13 -0400941 dma_addr_t dma_addr;
Santiago Leon60296d92005-10-26 10:47:16 -0600942
Santiago Leon6e8ab302010-09-03 18:28:36 +0000943 /*
944 * veth handles a maximum of 6 segments including the header, so
945 * we have to linearize the skb if there are more than this.
946 */
947 if (skb_shinfo(skb)->nr_frags > 5 && __skb_linearize(skb)) {
948 netdev->stats.tx_dropped++;
Brian Kingf4ff2872007-09-15 13:36:07 -0700949 goto out;
950 }
951
Santiago Leon6e8ab302010-09-03 18:28:36 +0000952 /* veth can't checksum offload UDP */
953 if (skb->ip_summed == CHECKSUM_PARTIAL &&
Santiago Leonab78df72010-09-03 18:28:52 +0000954 ((skb->protocol == htons(ETH_P_IP) &&
955 ip_hdr(skb)->protocol != IPPROTO_TCP) ||
956 (skb->protocol == htons(ETH_P_IPV6) &&
957 ipv6_hdr(skb)->nexthdr != IPPROTO_TCP)) &&
958 skb_checksum_help(skb)) {
959
Santiago Leon21c2dec2010-09-03 18:29:19 +0000960 netdev_err(netdev, "tx: failed to checksum packet\n");
Santiago Leon6e8ab302010-09-03 18:28:36 +0000961 netdev->stats.tx_dropped++;
962 goto out;
963 }
Brian Kingf4ff2872007-09-15 13:36:07 -0700964
Santiago Leon6e8ab302010-09-03 18:28:36 +0000965 desc_flags = IBMVETH_BUF_VALID;
966
967 if (skb->ip_summed == CHECKSUM_PARTIAL) {
968 unsigned char *buf = skb_transport_header(skb) +
969 skb->csum_offset;
970
971 desc_flags |= (IBMVETH_BUF_NO_CSUM | IBMVETH_BUF_CSUM_GOOD);
Brian Kingf4ff2872007-09-15 13:36:07 -0700972
973 /* Need to zero out the checksum */
974 buf[0] = 0;
975 buf[1] = 0;
976 }
977
Santiago Leon6e8ab302010-09-03 18:28:36 +0000978retry_bounce:
979 memset(descs, 0, sizeof(descs));
Santiago Leonc08cc3c2010-09-03 18:28:20 +0000980
Santiago Leon6e8ab302010-09-03 18:28:36 +0000981 /*
982 * If a linear packet is below the rx threshold then
983 * copy it into the static bounce buffer. This avoids the
984 * cost of a TCE insert and remove.
985 */
986 if (force_bounce || (!skb_is_nonlinear(skb) &&
987 (skb->len < tx_copybreak))) {
Robert Jennings1096d632008-07-24 04:34:52 +1000988 skb_copy_from_linear_data(skb, adapter->bounce_buffer,
989 skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
Santiago Leon6e8ab302010-09-03 18:28:36 +0000991 descs[0].fields.flags_len = desc_flags | skb->len;
992 descs[0].fields.address = adapter->bounce_buffer_dma;
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400993
Santiago Leon6e8ab302010-09-03 18:28:36 +0000994 if (ibmveth_send(adapter, descs)) {
995 adapter->tx_send_failed++;
996 netdev->stats.tx_dropped++;
997 } else {
998 netdev->stats.tx_packets++;
999 netdev->stats.tx_bytes += skb->len;
1000 }
1001
1002 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 }
1004
Santiago Leon6e8ab302010-09-03 18:28:36 +00001005 /* Map the header */
David S. Miller8decf862011-09-22 03:23:13 -04001006 dma_addr = dma_map_single(&adapter->vdev->dev, skb->data,
1007 skb_headlen(skb), DMA_TO_DEVICE);
1008 if (dma_mapping_error(&adapter->vdev->dev, dma_addr))
Santiago Leon6e8ab302010-09-03 18:28:36 +00001009 goto map_failed;
1010
1011 descs[0].fields.flags_len = desc_flags | skb_headlen(skb);
David S. Miller8decf862011-09-22 03:23:13 -04001012 descs[0].fields.address = dma_addr;
Santiago Leon6e8ab302010-09-03 18:28:36 +00001013
1014 /* Map the frags */
1015 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001016 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
Santiago Leon6e8ab302010-09-03 18:28:36 +00001017
Ian Campbell8838a532011-08-31 00:46:53 +00001018 dma_addr = skb_frag_dma_map(&adapter->vdev->dev, frag, 0,
Eric Dumazet9e903e02011-10-18 21:00:24 +00001019 skb_frag_size(frag), DMA_TO_DEVICE);
Santiago Leon6e8ab302010-09-03 18:28:36 +00001020
1021 if (dma_mapping_error(&adapter->vdev->dev, dma_addr))
1022 goto map_failed_frags;
1023
Eric Dumazet9e903e02011-10-18 21:00:24 +00001024 descs[i+1].fields.flags_len = desc_flags | skb_frag_size(frag);
Santiago Leon6e8ab302010-09-03 18:28:36 +00001025 descs[i+1].fields.address = dma_addr;
1026 }
1027
1028 if (ibmveth_send(adapter, descs)) {
1029 adapter->tx_send_failed++;
1030 netdev->stats.tx_dropped++;
1031 } else {
1032 netdev->stats.tx_packets++;
1033 netdev->stats.tx_bytes += skb->len;
1034 }
1035
David S. Miller8decf862011-09-22 03:23:13 -04001036 dma_unmap_single(&adapter->vdev->dev,
1037 descs[0].fields.address,
1038 descs[0].fields.flags_len & IBMVETH_BUF_LEN_MASK,
1039 DMA_TO_DEVICE);
1040
1041 for (i = 1; i < skb_shinfo(skb)->nr_frags + 1; i++)
Santiago Leon6e8ab302010-09-03 18:28:36 +00001042 dma_unmap_page(&adapter->vdev->dev, descs[i].fields.address,
1043 descs[i].fields.flags_len & IBMVETH_BUF_LEN_MASK,
1044 DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045
Santiago Leone8cb7eb2010-09-03 18:28:15 +00001046out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 dev_kfree_skb(skb);
Patrick McHardy6ed10652009-06-23 06:03:08 +00001048 return NETDEV_TX_OK;
Santiago Leon6e8ab302010-09-03 18:28:36 +00001049
1050map_failed_frags:
1051 last = i+1;
1052 for (i = 0; i < last; i++)
1053 dma_unmap_page(&adapter->vdev->dev, descs[i].fields.address,
1054 descs[i].fields.flags_len & IBMVETH_BUF_LEN_MASK,
1055 DMA_TO_DEVICE);
1056
1057map_failed:
1058 if (!firmware_has_feature(FW_FEATURE_CMO))
Santiago Leon21c2dec2010-09-03 18:29:19 +00001059 netdev_err(netdev, "tx: unable to map xmit buffer\n");
Santiago Leon6e8ab302010-09-03 18:28:36 +00001060 adapter->tx_map_failed++;
1061 skb_linearize(skb);
1062 force_bounce = 1;
1063 goto retry_bounce;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064}
1065
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001066static int ibmveth_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067{
Santiago Leonf148f612010-09-03 18:29:30 +00001068 struct ibmveth_adapter *adapter =
1069 container_of(napi, struct ibmveth_adapter, napi);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001070 struct net_device *netdev = adapter->netdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 int frames_processed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 unsigned long lpar_rc;
1073
Santiago Leonf148f612010-09-03 18:29:30 +00001074restart_poll:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 do {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001076 if (!ibmveth_rxq_pending_buffer(adapter))
1077 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
Anton Blanchardf89e49e2010-09-06 18:21:41 -07001079 smp_rmb();
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001080 if (!ibmveth_rxq_buffer_valid(adapter)) {
1081 wmb(); /* suggested by larson1 */
1082 adapter->rx_invalid_buffer++;
Santiago Leonc43ced12010-09-03 18:29:14 +00001083 netdev_dbg(netdev, "recycling invalid buffer\n");
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001084 ibmveth_rxq_recycle_buffer(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 } else {
Santiago Leon8d86c612010-09-03 18:28:25 +00001086 struct sk_buff *skb, *new_skb;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001087 int length = ibmveth_rxq_frame_length(adapter);
1088 int offset = ibmveth_rxq_frame_offset(adapter);
Brian Kingf4ff2872007-09-15 13:36:07 -07001089 int csum_good = ibmveth_rxq_csum_good(adapter);
1090
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001091 skb = ibmveth_rxq_get_buffer(adapter);
1092
Santiago Leon8d86c612010-09-03 18:28:25 +00001093 new_skb = NULL;
1094 if (length < rx_copybreak)
1095 new_skb = netdev_alloc_skb(netdev, length);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001096
Santiago Leon8d86c612010-09-03 18:28:25 +00001097 if (new_skb) {
1098 skb_copy_to_linear_data(new_skb,
1099 skb->data + offset,
1100 length);
Santiago Leon0c26b672010-09-03 18:28:41 +00001101 if (rx_flush)
1102 ibmveth_flush_buffer(skb->data,
1103 length + offset);
David S. Miller8decf862011-09-22 03:23:13 -04001104 if (!ibmveth_rxq_recycle_buffer(adapter))
1105 kfree_skb(skb);
Santiago Leon8d86c612010-09-03 18:28:25 +00001106 skb = new_skb;
Santiago Leon8d86c612010-09-03 18:28:25 +00001107 } else {
1108 ibmveth_rxq_harvest_buffer(adapter);
1109 skb_reserve(skb, offset);
1110 }
1111
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001112 skb_put(skb, length);
1113 skb->protocol = eth_type_trans(skb, netdev);
1114
Santiago Leon8d86c612010-09-03 18:28:25 +00001115 if (csum_good)
1116 skb->ip_summed = CHECKSUM_UNNECESSARY;
1117
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001118 netif_receive_skb(skb); /* send it up */
1119
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001120 netdev->stats.rx_packets++;
1121 netdev->stats.rx_bytes += length;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001122 frames_processed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 }
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001124 } while (frames_processed < budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125
Santiago Leone2adbcb2005-10-26 10:47:08 -06001126 ibmveth_replenish_task(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001128 if (frames_processed < budget) {
1129 /* We think we are done - reenable interrupts,
1130 * then check once more to make sure we are done.
1131 */
1132 lpar_rc = h_vio_signal(adapter->vdev->unit_address,
1133 VIO_IRQ_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134
Santiago Leon64859112010-09-03 18:29:41 +00001135 BUG_ON(lpar_rc != H_SUCCESS);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001136
Ben Hutchings288379f2009-01-19 16:43:59 -08001137 napi_complete(napi);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001138
1139 if (ibmveth_rxq_pending_buffer(adapter) &&
Ben Hutchings288379f2009-01-19 16:43:59 -08001140 napi_reschedule(napi)) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001141 lpar_rc = h_vio_signal(adapter->vdev->unit_address,
1142 VIO_IRQ_DISABLE);
1143 goto restart_poll;
1144 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 }
1146
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001147 return frames_processed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148}
1149
David Howells7d12e782006-10-05 14:55:46 +01001150static irqreturn_t ibmveth_interrupt(int irq, void *dev_instance)
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001151{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 struct net_device *netdev = dev_instance;
Wang Chen4cf16532008-11-12 23:38:14 -08001153 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 unsigned long lpar_rc;
1155
Ben Hutchings288379f2009-01-19 16:43:59 -08001156 if (napi_schedule_prep(&adapter->napi)) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001157 lpar_rc = h_vio_signal(adapter->vdev->unit_address,
1158 VIO_IRQ_DISABLE);
Santiago Leon64859112010-09-03 18:29:41 +00001159 BUG_ON(lpar_rc != H_SUCCESS);
Ben Hutchings288379f2009-01-19 16:43:59 -08001160 __napi_schedule(&adapter->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 }
1162 return IRQ_HANDLED;
1163}
1164
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165static void ibmveth_set_multicast_list(struct net_device *netdev)
1166{
Wang Chen4cf16532008-11-12 23:38:14 -08001167 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 unsigned long lpar_rc;
1169
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001170 if ((netdev->flags & IFF_PROMISC) ||
1171 (netdev_mc_count(netdev) > adapter->mcastFilterSize)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 lpar_rc = h_multicast_ctrl(adapter->vdev->unit_address,
1173 IbmVethMcastEnableRecv |
1174 IbmVethMcastDisableFiltering,
1175 0);
Santiago Leonf148f612010-09-03 18:29:30 +00001176 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001177 netdev_err(netdev, "h_multicast_ctrl rc=%ld when "
1178 "entering promisc mode\n", lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 }
1180 } else {
Jiri Pirko22bedad32010-04-01 21:22:57 +00001181 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 /* clear the filter table & disable filtering */
1183 lpar_rc = h_multicast_ctrl(adapter->vdev->unit_address,
1184 IbmVethMcastEnableRecv |
1185 IbmVethMcastDisableFiltering |
1186 IbmVethMcastClearFilterTable,
1187 0);
Santiago Leonf148f612010-09-03 18:29:30 +00001188 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001189 netdev_err(netdev, "h_multicast_ctrl rc=%ld when "
1190 "attempting to clear filter table\n",
1191 lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 }
1193 /* add the addresses to the filter table */
Jiri Pirko22bedad32010-04-01 21:22:57 +00001194 netdev_for_each_mc_addr(ha, netdev) {
Santiago Leonf148f612010-09-03 18:29:30 +00001195 /* add the multicast address to the filter table */
Anton Blanchardd746ca92014-03-05 14:51:37 +11001196 u64 mcast_addr;
1197 mcast_addr = ibmveth_encode_mac_addr(ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 lpar_rc = h_multicast_ctrl(adapter->vdev->unit_address,
1199 IbmVethMcastAddFilter,
1200 mcast_addr);
Santiago Leonf148f612010-09-03 18:29:30 +00001201 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001202 netdev_err(netdev, "h_multicast_ctrl rc=%ld "
1203 "when adding an entry to the filter "
1204 "table\n", lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 }
1206 }
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001207
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 /* re-enable filtering */
1209 lpar_rc = h_multicast_ctrl(adapter->vdev->unit_address,
1210 IbmVethMcastEnableFiltering,
1211 0);
Santiago Leonf148f612010-09-03 18:29:30 +00001212 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001213 netdev_err(netdev, "h_multicast_ctrl rc=%ld when "
1214 "enabling filtering\n", lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 }
1216 }
1217}
1218
1219static int ibmveth_change_mtu(struct net_device *dev, int new_mtu)
1220{
Wang Chen4cf16532008-11-12 23:38:14 -08001221 struct ibmveth_adapter *adapter = netdev_priv(dev);
Robert Jennings1096d632008-07-24 04:34:52 +10001222 struct vio_dev *viodev = adapter->vdev;
Santiago Leon860f2422006-04-25 11:19:59 -05001223 int new_mtu_oh = new_mtu + IBMVETH_BUFF_OH;
Robert Jennings0645bab2010-08-17 09:15:45 +00001224 int i, rc;
1225 int need_restart = 0;
Santiago Leonb6d35182005-10-26 10:47:01 -06001226
Santiago Leon517e80e2010-09-03 18:29:25 +00001227 if (new_mtu < IBMVETH_MIN_MTU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 return -EINVAL;
Santiago Leonb6d35182005-10-26 10:47:01 -06001229
Santiago Leon517e80e2010-09-03 18:29:25 +00001230 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++)
Brian Kingce6eea52007-06-08 14:05:17 -05001231 if (new_mtu_oh < adapter->rx_buff_pool[i].buff_size)
1232 break;
1233
Santiago Leon517e80e2010-09-03 18:29:25 +00001234 if (i == IBMVETH_NUM_BUFF_POOLS)
Brian Kingce6eea52007-06-08 14:05:17 -05001235 return -EINVAL;
1236
Santiago Leonea866e62008-07-24 04:34:23 +10001237 /* Deactivate all the buffer pools so that the next loop can activate
1238 only the buffer pools necessary to hold the new MTU */
Robert Jennings0645bab2010-08-17 09:15:45 +00001239 if (netif_running(adapter->netdev)) {
1240 need_restart = 1;
1241 adapter->pool_config = 1;
1242 ibmveth_close(adapter->netdev);
1243 adapter->pool_config = 0;
1244 }
Brian Kingce6eea52007-06-08 14:05:17 -05001245
Santiago Leonea866e62008-07-24 04:34:23 +10001246 /* Look for an active buffer pool that can hold the new MTU */
Santiago Leonf148f612010-09-03 18:29:30 +00001247 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++) {
Santiago Leonea866e62008-07-24 04:34:23 +10001248 adapter->rx_buff_pool[i].active = 1;
1249
Santiago Leon860f2422006-04-25 11:19:59 -05001250 if (new_mtu_oh < adapter->rx_buff_pool[i].buff_size) {
Robert Jennings1096d632008-07-24 04:34:52 +10001251 dev->mtu = new_mtu;
1252 vio_cmo_set_dev_desired(viodev,
1253 ibmveth_get_desired_dma
1254 (viodev));
Robert Jennings0645bab2010-08-17 09:15:45 +00001255 if (need_restart) {
1256 return ibmveth_open(adapter->netdev);
1257 }
Santiago Leon860f2422006-04-25 11:19:59 -05001258 return 0;
Santiago Leonb6d35182005-10-26 10:47:01 -06001259 }
Santiago Leonb6d35182005-10-26 10:47:01 -06001260 }
Robert Jennings0645bab2010-08-17 09:15:45 +00001261
1262 if (need_restart && (rc = ibmveth_open(adapter->netdev)))
1263 return rc;
1264
Santiago Leon860f2422006-04-25 11:19:59 -05001265 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266}
1267
Santiago Leon6b422372006-10-03 12:24:28 -05001268#ifdef CONFIG_NET_POLL_CONTROLLER
1269static void ibmveth_poll_controller(struct net_device *dev)
1270{
Wang Chen4cf16532008-11-12 23:38:14 -08001271 ibmveth_replenish_task(netdev_priv(dev));
Andrew Morton5f771132006-10-10 14:33:30 -07001272 ibmveth_interrupt(dev->irq, dev);
Santiago Leon6b422372006-10-03 12:24:28 -05001273}
1274#endif
1275
Robert Jennings1096d632008-07-24 04:34:52 +10001276/**
1277 * ibmveth_get_desired_dma - Calculate IO memory desired by the driver
1278 *
1279 * @vdev: struct vio_dev for the device whose desired IO mem is to be returned
1280 *
1281 * Return value:
1282 * Number of bytes of IO data the driver will need to perform well.
1283 */
1284static unsigned long ibmveth_get_desired_dma(struct vio_dev *vdev)
1285{
1286 struct net_device *netdev = dev_get_drvdata(&vdev->dev);
1287 struct ibmveth_adapter *adapter;
Alistair Poppled0847752013-12-09 18:17:03 +11001288 struct iommu_table *tbl;
Robert Jennings1096d632008-07-24 04:34:52 +10001289 unsigned long ret;
1290 int i;
1291 int rxqentries = 1;
1292
Alistair Poppled0847752013-12-09 18:17:03 +11001293 tbl = get_iommu_table_base(&vdev->dev);
1294
Robert Jennings1096d632008-07-24 04:34:52 +10001295 /* netdev inits at probe time along with the structures we need below*/
1296 if (netdev == NULL)
Alistair Poppled0847752013-12-09 18:17:03 +11001297 return IOMMU_PAGE_ALIGN(IBMVETH_IO_ENTITLEMENT_DEFAULT, tbl);
Robert Jennings1096d632008-07-24 04:34:52 +10001298
1299 adapter = netdev_priv(netdev);
1300
1301 ret = IBMVETH_BUFF_LIST_SIZE + IBMVETH_FILT_LIST_SIZE;
Alistair Poppled0847752013-12-09 18:17:03 +11001302 ret += IOMMU_PAGE_ALIGN(netdev->mtu, tbl);
Robert Jennings1096d632008-07-24 04:34:52 +10001303
Santiago Leon517e80e2010-09-03 18:29:25 +00001304 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++) {
Robert Jennings1096d632008-07-24 04:34:52 +10001305 /* add the size of the active receive buffers */
1306 if (adapter->rx_buff_pool[i].active)
1307 ret +=
1308 adapter->rx_buff_pool[i].size *
1309 IOMMU_PAGE_ALIGN(adapter->rx_buff_pool[i].
Alistair Poppled0847752013-12-09 18:17:03 +11001310 buff_size, tbl);
Robert Jennings1096d632008-07-24 04:34:52 +10001311 rxqentries += adapter->rx_buff_pool[i].size;
1312 }
1313 /* add the size of the receive queue entries */
Alistair Poppled0847752013-12-09 18:17:03 +11001314 ret += IOMMU_PAGE_ALIGN(
1315 rxqentries * sizeof(struct ibmveth_rx_q_entry), tbl);
Robert Jennings1096d632008-07-24 04:34:52 +10001316
1317 return ret;
1318}
1319
Alexander Beregalove186d172009-04-15 12:52:39 +00001320static const struct net_device_ops ibmveth_netdev_ops = {
1321 .ndo_open = ibmveth_open,
1322 .ndo_stop = ibmveth_close,
1323 .ndo_start_xmit = ibmveth_start_xmit,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00001324 .ndo_set_rx_mode = ibmveth_set_multicast_list,
Alexander Beregalove186d172009-04-15 12:52:39 +00001325 .ndo_do_ioctl = ibmveth_ioctl,
1326 .ndo_change_mtu = ibmveth_change_mtu,
Michał Mirosławb9367bf2011-04-19 02:14:25 +00001327 .ndo_fix_features = ibmveth_fix_features,
1328 .ndo_set_features = ibmveth_set_features,
Alexander Beregalove186d172009-04-15 12:52:39 +00001329 .ndo_validate_addr = eth_validate_addr,
1330 .ndo_set_mac_address = eth_mac_addr,
1331#ifdef CONFIG_NET_POLL_CONTROLLER
1332 .ndo_poll_controller = ibmveth_poll_controller,
1333#endif
1334};
1335
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +00001336static int ibmveth_probe(struct vio_dev *dev, const struct vio_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337{
Benjamin Herrenschmidt13f85202013-05-03 17:19:01 +00001338 int rc, i, mac_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 struct net_device *netdev;
Mariusz Kozlowski9dc83af2007-08-06 23:44:03 +02001340 struct ibmveth_adapter *adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 unsigned char *mac_addr_p;
1342 unsigned int *mcastFilterSize_p;
1343
Santiago Leonc43ced12010-09-03 18:29:14 +00001344 dev_dbg(&dev->dev, "entering ibmveth_probe for UA 0x%x\n",
1345 dev->unit_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
Santiago Leonf148f612010-09-03 18:29:30 +00001347 mac_addr_p = (unsigned char *)vio_get_attribute(dev, VETH_MAC_ADDR,
Benjamin Herrenschmidt13f85202013-05-03 17:19:01 +00001348 &mac_len);
Santiago Leonf148f612010-09-03 18:29:30 +00001349 if (!mac_addr_p) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001350 dev_err(&dev->dev, "Can't find VETH_MAC_ADDR attribute\n");
Santiago Leonbe35ae92010-09-03 18:29:36 +00001351 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 }
Benjamin Herrenschmidt13f85202013-05-03 17:19:01 +00001353 /* Workaround for old/broken pHyp */
1354 if (mac_len == 8)
1355 mac_addr_p += 2;
1356 else if (mac_len != 6) {
1357 dev_err(&dev->dev, "VETH_MAC_ADDR attribute wrong len %d\n",
1358 mac_len);
1359 return -EINVAL;
1360 }
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001361
Santiago Leonf148f612010-09-03 18:29:30 +00001362 mcastFilterSize_p = (unsigned int *)vio_get_attribute(dev,
Michael Ellerman493a6842007-04-17 13:12:55 +10001363 VETH_MCAST_FILTER_SIZE, NULL);
Santiago Leonf148f612010-09-03 18:29:30 +00001364 if (!mcastFilterSize_p) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001365 dev_err(&dev->dev, "Can't find VETH_MCAST_FILTER_SIZE "
1366 "attribute\n");
Santiago Leonbe35ae92010-09-03 18:29:36 +00001367 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 }
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001369
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 netdev = alloc_etherdev(sizeof(struct ibmveth_adapter));
1371
Santiago Leonf148f612010-09-03 18:29:30 +00001372 if (!netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 return -ENOMEM;
1374
Wang Chen4cf16532008-11-12 23:38:14 -08001375 adapter = netdev_priv(netdev);
Greg Kroah-Hartmanc7ae0112009-05-04 21:33:19 -07001376 dev_set_drvdata(&dev->dev, netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377
1378 adapter->vdev = dev;
1379 adapter->netdev = netdev;
Santiago Leonf148f612010-09-03 18:29:30 +00001380 adapter->mcastFilterSize = *mcastFilterSize_p;
Santiago Leon860f2422006-04-25 11:19:59 -05001381 adapter->pool_config = 0;
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001382
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001383 netif_napi_add(netdev, &adapter->napi, ibmveth_poll, 16);
1384
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 netdev->irq = dev->irq;
Alexander Beregalove186d172009-04-15 12:52:39 +00001386 netdev->netdev_ops = &ibmveth_netdev_ops;
1387 netdev->ethtool_ops = &netdev_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 SET_NETDEV_DEV(netdev, &dev->dev);
Michał Mirosławb9367bf2011-04-19 02:14:25 +00001389 netdev->hw_features = NETIF_F_SG | NETIF_F_RXCSUM |
1390 NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM;
1391 netdev->features |= netdev->hw_features;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392
Anton Blanchardd746ca92014-03-05 14:51:37 +11001393 memcpy(netdev->dev_addr, mac_addr_p, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
Santiago Leonf148f612010-09-03 18:29:30 +00001395 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++) {
Santiago Leon860f2422006-04-25 11:19:59 -05001396 struct kobject *kobj = &adapter->rx_buff_pool[i].kobj;
Greg Kroah-Hartman8dde2a92007-12-17 15:54:39 -04001397 int error;
1398
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001399 ibmveth_init_buffer_pool(&adapter->rx_buff_pool[i], i,
1400 pool_count[i], pool_size[i],
Santiago Leon860f2422006-04-25 11:19:59 -05001401 pool_active[i]);
Greg Kroah-Hartman8dde2a92007-12-17 15:54:39 -04001402 error = kobject_init_and_add(kobj, &ktype_veth_pool,
1403 &dev->dev.kobj, "pool%d", i);
1404 if (!error)
1405 kobject_uevent(kobj, KOBJ_ADD);
Santiago Leon860f2422006-04-25 11:19:59 -05001406 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407
Santiago Leonc43ced12010-09-03 18:29:14 +00001408 netdev_dbg(netdev, "adapter @ 0x%p\n", adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 adapter->buffer_list_dma = DMA_ERROR_CODE;
1411 adapter->filter_list_dma = DMA_ERROR_CODE;
1412 adapter->rx_queue.queue_dma = DMA_ERROR_CODE;
1413
Santiago Leonc43ced12010-09-03 18:29:14 +00001414 netdev_dbg(netdev, "registering netdev...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415
Michał Mirosławb801a4e2011-04-28 11:59:15 +10001416 ibmveth_set_features(netdev, netdev->features);
1417
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 rc = register_netdev(netdev);
1419
Santiago Leonf148f612010-09-03 18:29:30 +00001420 if (rc) {
Santiago Leonc43ced12010-09-03 18:29:14 +00001421 netdev_dbg(netdev, "failed to register netdev rc=%d\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 free_netdev(netdev);
1423 return rc;
1424 }
1425
Santiago Leonc43ced12010-09-03 18:29:14 +00001426 netdev_dbg(netdev, "registered\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 return 0;
1429}
1430
Bill Pembertone11787a2012-12-03 09:23:12 -05001431static int ibmveth_remove(struct vio_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432{
Greg Kroah-Hartmanc7ae0112009-05-04 21:33:19 -07001433 struct net_device *netdev = dev_get_drvdata(&dev->dev);
Wang Chen4cf16532008-11-12 23:38:14 -08001434 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Santiago Leon860f2422006-04-25 11:19:59 -05001435 int i;
1436
Santiago Leonf148f612010-09-03 18:29:30 +00001437 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++)
Greg Kroah-Hartmanc10997f2007-12-20 08:13:05 -08001438 kobject_put(&adapter->rx_buff_pool[i].kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439
1440 unregister_netdev(netdev);
1441
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 free_netdev(netdev);
Robert Jennings1096d632008-07-24 04:34:52 +10001443 dev_set_drvdata(&dev->dev, NULL);
1444
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 return 0;
1446}
1447
Santiago Leon860f2422006-04-25 11:19:59 -05001448static struct attribute veth_active_attr;
1449static struct attribute veth_num_attr;
1450static struct attribute veth_size_attr;
1451
Santiago Leonf148f612010-09-03 18:29:30 +00001452static ssize_t veth_pool_show(struct kobject *kobj,
1453 struct attribute *attr, char *buf)
Santiago Leon860f2422006-04-25 11:19:59 -05001454{
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001455 struct ibmveth_buff_pool *pool = container_of(kobj,
Santiago Leon860f2422006-04-25 11:19:59 -05001456 struct ibmveth_buff_pool,
1457 kobj);
1458
1459 if (attr == &veth_active_attr)
1460 return sprintf(buf, "%d\n", pool->active);
1461 else if (attr == &veth_num_attr)
1462 return sprintf(buf, "%d\n", pool->size);
1463 else if (attr == &veth_size_attr)
1464 return sprintf(buf, "%d\n", pool->buff_size);
1465 return 0;
1466}
1467
Santiago Leonf148f612010-09-03 18:29:30 +00001468static ssize_t veth_pool_store(struct kobject *kobj, struct attribute *attr,
1469 const char *buf, size_t count)
Santiago Leon860f2422006-04-25 11:19:59 -05001470{
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001471 struct ibmveth_buff_pool *pool = container_of(kobj,
Santiago Leon860f2422006-04-25 11:19:59 -05001472 struct ibmveth_buff_pool,
1473 kobj);
Greg Kroah-Hartmanc7ae0112009-05-04 21:33:19 -07001474 struct net_device *netdev = dev_get_drvdata(
1475 container_of(kobj->parent, struct device, kobj));
Wang Chen4cf16532008-11-12 23:38:14 -08001476 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Santiago Leon860f2422006-04-25 11:19:59 -05001477 long value = simple_strtol(buf, NULL, 10);
1478 long rc;
1479
1480 if (attr == &veth_active_attr) {
1481 if (value && !pool->active) {
Brian King4aa9c932007-06-08 14:05:16 -05001482 if (netif_running(netdev)) {
Santiago Leonf148f612010-09-03 18:29:30 +00001483 if (ibmveth_alloc_buffer_pool(pool)) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001484 netdev_err(netdev,
1485 "unable to alloc pool\n");
Brian King4aa9c932007-06-08 14:05:16 -05001486 return -ENOMEM;
1487 }
1488 pool->active = 1;
1489 adapter->pool_config = 1;
1490 ibmveth_close(netdev);
1491 adapter->pool_config = 0;
1492 if ((rc = ibmveth_open(netdev)))
1493 return rc;
Santiago Leonf148f612010-09-03 18:29:30 +00001494 } else {
Brian King4aa9c932007-06-08 14:05:16 -05001495 pool->active = 1;
Santiago Leonf148f612010-09-03 18:29:30 +00001496 }
Santiago Leon860f2422006-04-25 11:19:59 -05001497 } else if (!value && pool->active) {
1498 int mtu = netdev->mtu + IBMVETH_BUFF_OH;
1499 int i;
1500 /* Make sure there is a buffer pool with buffers that
1501 can hold a packet of the size of the MTU */
Santiago Leon517e80e2010-09-03 18:29:25 +00001502 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++) {
Santiago Leon860f2422006-04-25 11:19:59 -05001503 if (pool == &adapter->rx_buff_pool[i])
1504 continue;
1505 if (!adapter->rx_buff_pool[i].active)
1506 continue;
Brian King76b9cfc2007-08-03 13:55:19 +10001507 if (mtu <= adapter->rx_buff_pool[i].buff_size)
1508 break;
Santiago Leon860f2422006-04-25 11:19:59 -05001509 }
Brian King76b9cfc2007-08-03 13:55:19 +10001510
Santiago Leon517e80e2010-09-03 18:29:25 +00001511 if (i == IBMVETH_NUM_BUFF_POOLS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001512 netdev_err(netdev, "no active pool >= MTU\n");
Santiago Leon860f2422006-04-25 11:19:59 -05001513 return -EPERM;
1514 }
Brian King76b9cfc2007-08-03 13:55:19 +10001515
Brian King76b9cfc2007-08-03 13:55:19 +10001516 if (netif_running(netdev)) {
1517 adapter->pool_config = 1;
1518 ibmveth_close(netdev);
Santiago Leonea866e62008-07-24 04:34:23 +10001519 pool->active = 0;
Brian King76b9cfc2007-08-03 13:55:19 +10001520 adapter->pool_config = 0;
1521 if ((rc = ibmveth_open(netdev)))
1522 return rc;
1523 }
Santiago Leonea866e62008-07-24 04:34:23 +10001524 pool->active = 0;
Santiago Leon860f2422006-04-25 11:19:59 -05001525 }
1526 } else if (attr == &veth_num_attr) {
Santiago Leonf148f612010-09-03 18:29:30 +00001527 if (value <= 0 || value > IBMVETH_MAX_POOL_COUNT) {
Santiago Leon860f2422006-04-25 11:19:59 -05001528 return -EINVAL;
Santiago Leonf148f612010-09-03 18:29:30 +00001529 } else {
Brian King4aa9c932007-06-08 14:05:16 -05001530 if (netif_running(netdev)) {
1531 adapter->pool_config = 1;
1532 ibmveth_close(netdev);
1533 adapter->pool_config = 0;
1534 pool->size = value;
1535 if ((rc = ibmveth_open(netdev)))
1536 return rc;
Santiago Leonf148f612010-09-03 18:29:30 +00001537 } else {
Brian King4aa9c932007-06-08 14:05:16 -05001538 pool->size = value;
Santiago Leonf148f612010-09-03 18:29:30 +00001539 }
Santiago Leon860f2422006-04-25 11:19:59 -05001540 }
1541 } else if (attr == &veth_size_attr) {
Santiago Leonf148f612010-09-03 18:29:30 +00001542 if (value <= IBMVETH_BUFF_OH || value > IBMVETH_MAX_BUF_SIZE) {
Santiago Leon860f2422006-04-25 11:19:59 -05001543 return -EINVAL;
Santiago Leonf148f612010-09-03 18:29:30 +00001544 } else {
Brian King4aa9c932007-06-08 14:05:16 -05001545 if (netif_running(netdev)) {
1546 adapter->pool_config = 1;
1547 ibmveth_close(netdev);
1548 adapter->pool_config = 0;
1549 pool->buff_size = value;
1550 if ((rc = ibmveth_open(netdev)))
1551 return rc;
Santiago Leonf148f612010-09-03 18:29:30 +00001552 } else {
Brian King4aa9c932007-06-08 14:05:16 -05001553 pool->buff_size = value;
Santiago Leonf148f612010-09-03 18:29:30 +00001554 }
Santiago Leon860f2422006-04-25 11:19:59 -05001555 }
1556 }
1557
1558 /* kick the interrupt handler to allocate/deallocate pools */
David Howells7d12e782006-10-05 14:55:46 +01001559 ibmveth_interrupt(netdev->irq, netdev);
Santiago Leon860f2422006-04-25 11:19:59 -05001560 return count;
1561}
1562
1563
Santiago Leonf148f612010-09-03 18:29:30 +00001564#define ATTR(_name, _mode) \
1565 struct attribute veth_##_name##_attr = { \
1566 .name = __stringify(_name), .mode = _mode, \
1567 };
Santiago Leon860f2422006-04-25 11:19:59 -05001568
1569static ATTR(active, 0644);
1570static ATTR(num, 0644);
1571static ATTR(size, 0644);
1572
Santiago Leonf148f612010-09-03 18:29:30 +00001573static struct attribute *veth_pool_attrs[] = {
Santiago Leon860f2422006-04-25 11:19:59 -05001574 &veth_active_attr,
1575 &veth_num_attr,
1576 &veth_size_attr,
1577 NULL,
1578};
1579
Emese Revfy52cf25d2010-01-19 02:58:23 +01001580static const struct sysfs_ops veth_pool_ops = {
Santiago Leon860f2422006-04-25 11:19:59 -05001581 .show = veth_pool_show,
1582 .store = veth_pool_store,
1583};
1584
1585static struct kobj_type ktype_veth_pool = {
1586 .release = NULL,
1587 .sysfs_ops = &veth_pool_ops,
1588 .default_attrs = veth_pool_attrs,
1589};
1590
Brian Kinge7a3af52010-05-07 08:56:08 +00001591static int ibmveth_resume(struct device *dev)
1592{
1593 struct net_device *netdev = dev_get_drvdata(dev);
1594 ibmveth_interrupt(netdev->irq, netdev);
1595 return 0;
1596}
Santiago Leon860f2422006-04-25 11:19:59 -05001597
Bill Pembertone11787a2012-12-03 09:23:12 -05001598static struct vio_device_id ibmveth_device_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 { "network", "IBM,l-lan"},
Stephen Rothwellfb120da2005-08-17 16:42:59 +10001600 { "", "" }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602MODULE_DEVICE_TABLE(vio, ibmveth_device_table);
1603
Brian Kinge7a3af52010-05-07 08:56:08 +00001604static struct dev_pm_ops ibmveth_pm_ops = {
1605 .resume = ibmveth_resume
1606};
1607
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608static struct vio_driver ibmveth_driver = {
Stephen Rothwell6fdf5392005-10-24 14:53:21 +10001609 .id_table = ibmveth_device_table,
1610 .probe = ibmveth_probe,
1611 .remove = ibmveth_remove,
Robert Jennings1096d632008-07-24 04:34:52 +10001612 .get_desired_dma = ibmveth_get_desired_dma,
Benjamin Herrenschmidtcb52d892012-03-26 19:06:30 +00001613 .name = ibmveth_driver_name,
1614 .pm = &ibmveth_pm_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615};
1616
1617static int __init ibmveth_module_init(void)
1618{
Santiago Leon21c2dec2010-09-03 18:29:19 +00001619 printk(KERN_DEBUG "%s: %s %s\n", ibmveth_driver_name,
1620 ibmveth_driver_string, ibmveth_driver_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 return vio_register_driver(&ibmveth_driver);
1623}
1624
1625static void __exit ibmveth_module_exit(void)
1626{
1627 vio_unregister_driver(&ibmveth_driver);
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001628}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629
1630module_init(ibmveth_module_init);
1631module_exit(ibmveth_module_exit);