blob: 4181f6e99c0003ba6f2ed1ae2055e0365dbd8e29 [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
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
Santiago Leonf148f612010-09-03 18:29:30 +000017 *
Santiago Leon9d348af2010-09-03 18:29:53 +000018 * Copyright (C) IBM Corporation, 2003, 2010
19 *
20 * Authors: Dave Larson <larson1@us.ibm.com>
21 * Santiago Leon <santil@linux.vnet.ibm.com>
22 * Brian King <brking@linux.vnet.ibm.com>
23 * Robert Jennings <rcj@linux.vnet.ibm.com>
24 * Anton Blanchard <anton@au.ibm.com>
Santiago Leonf148f612010-09-03 18:29:30 +000025 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/module.h>
Robert Jennings1096d632008-07-24 04:34:52 +100028#include <linux/moduleparam.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/types.h>
30#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/dma-mapping.h>
32#include <linux/kernel.h>
33#include <linux/netdevice.h>
34#include <linux/etherdevice.h>
35#include <linux/skbuff.h>
36#include <linux/init.h>
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000037#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/mm.h>
Brian Kinge7a3af52010-05-07 08:56:08 +000039#include <linux/pm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/ethtool.h>
Brian Kingf4ff2872007-09-15 13:36:07 -070041#include <linux/in.h>
42#include <linux/ip.h>
Santiago Leonab78df72010-09-03 18:28:52 +000043#include <linux/ipv6.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090044#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <asm/hvcall.h>
Arun Sharma600634972011-07-26 16:09:06 -070046#include <linux/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <asm/vio.h>
Robert Jennings1096d632008-07-24 04:34:52 +100048#include <asm/iommu.h>
Robert Jennings1096d632008-07-24 04:34:52 +100049#include <asm/firmware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51#include "ibmveth.h"
52
David Howells7d12e782006-10-05 14:55:46 +010053static irqreturn_t ibmveth_interrupt(int irq, void *dev_instance);
Michael Ellerman493a6842007-04-17 13:12:55 +100054static void ibmveth_rxq_harvest_buffer(struct ibmveth_adapter *adapter);
Robert Jennings1096d632008-07-24 04:34:52 +100055static unsigned long ibmveth_get_desired_dma(struct vio_dev *vdev);
Santiago Leone295fe82010-09-03 18:29:08 +000056
Santiago Leon860f2422006-04-25 11:19:59 -050057static struct kobj_type ktype_veth_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Robert Jennings1096d632008-07-24 04:34:52 +100059
Linus Torvalds1da177e2005-04-16 15:20:36 -070060static const char ibmveth_driver_name[] = "ibmveth";
Santiago Leon9d348af2010-09-03 18:29:53 +000061static const char ibmveth_driver_string[] = "IBM Power Virtual Ethernet Driver";
62#define ibmveth_driver_version "1.04"
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Santiago Leon9d348af2010-09-03 18:29:53 +000064MODULE_AUTHOR("Santiago Leon <santil@linux.vnet.ibm.com>");
65MODULE_DESCRIPTION("IBM Power Virtual Ethernet Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070066MODULE_LICENSE("GPL");
67MODULE_VERSION(ibmveth_driver_version);
68
Santiago Leonc08cc3c2010-09-03 18:28:20 +000069static unsigned int tx_copybreak __read_mostly = 128;
70module_param(tx_copybreak, uint, 0644);
71MODULE_PARM_DESC(tx_copybreak,
72 "Maximum size of packet that is copied to a new buffer on transmit");
73
Santiago Leon8d86c612010-09-03 18:28:25 +000074static unsigned int rx_copybreak __read_mostly = 128;
75module_param(rx_copybreak, uint, 0644);
76MODULE_PARM_DESC(rx_copybreak,
77 "Maximum size of packet that is copied to a new buffer on receive");
78
Santiago Leon0c26b672010-09-03 18:28:41 +000079static unsigned int rx_flush __read_mostly = 0;
80module_param(rx_flush, uint, 0644);
81MODULE_PARM_DESC(rx_flush, "Flush receive buffers before use");
82
Brian Kingddbb4de2007-08-17 09:16:43 -050083struct ibmveth_stat {
84 char name[ETH_GSTRING_LEN];
85 int offset;
86};
87
88#define IBMVETH_STAT_OFF(stat) offsetof(struct ibmveth_adapter, stat)
89#define IBMVETH_GET_STAT(a, off) *((u64 *)(((unsigned long)(a)) + off))
90
91struct ibmveth_stat ibmveth_stats[] = {
92 { "replenish_task_cycles", IBMVETH_STAT_OFF(replenish_task_cycles) },
93 { "replenish_no_mem", IBMVETH_STAT_OFF(replenish_no_mem) },
Santiago Leonf148f612010-09-03 18:29:30 +000094 { "replenish_add_buff_failure",
95 IBMVETH_STAT_OFF(replenish_add_buff_failure) },
96 { "replenish_add_buff_success",
97 IBMVETH_STAT_OFF(replenish_add_buff_success) },
Brian Kingddbb4de2007-08-17 09:16:43 -050098 { "rx_invalid_buffer", IBMVETH_STAT_OFF(rx_invalid_buffer) },
99 { "rx_no_buffer", IBMVETH_STAT_OFF(rx_no_buffer) },
Brian Kingddbb4de2007-08-17 09:16:43 -0500100 { "tx_map_failed", IBMVETH_STAT_OFF(tx_map_failed) },
101 { "tx_send_failed", IBMVETH_STAT_OFF(tx_send_failed) },
Santiago Leonab78df72010-09-03 18:28:52 +0000102 { "fw_enabled_ipv4_csum", IBMVETH_STAT_OFF(fw_ipv4_csum_support) },
103 { "fw_enabled_ipv6_csum", IBMVETH_STAT_OFF(fw_ipv6_csum_support) },
Brian Kingddbb4de2007-08-17 09:16:43 -0500104};
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106/* simple methods of getting data from the current rxq entry */
Brian King79ef4a42007-08-17 09:16:56 -0500107static inline u32 ibmveth_rxq_flags(struct ibmveth_adapter *adapter)
108{
109 return adapter->rx_queue.queue_addr[adapter->rx_queue.index].flags_off;
110}
111
112static inline int ibmveth_rxq_toggle(struct ibmveth_adapter *adapter)
113{
Santiago Leonf148f612010-09-03 18:29:30 +0000114 return (ibmveth_rxq_flags(adapter) & IBMVETH_RXQ_TOGGLE) >>
115 IBMVETH_RXQ_TOGGLE_SHIFT;
Brian King79ef4a42007-08-17 09:16:56 -0500116}
117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118static inline int ibmveth_rxq_pending_buffer(struct ibmveth_adapter *adapter)
119{
Santiago Leonf148f612010-09-03 18:29:30 +0000120 return ibmveth_rxq_toggle(adapter) == adapter->rx_queue.toggle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121}
122
123static inline int ibmveth_rxq_buffer_valid(struct ibmveth_adapter *adapter)
124{
Santiago Leonf148f612010-09-03 18:29:30 +0000125 return ibmveth_rxq_flags(adapter) & IBMVETH_RXQ_VALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126}
127
128static inline int ibmveth_rxq_frame_offset(struct ibmveth_adapter *adapter)
129{
Santiago Leonf148f612010-09-03 18:29:30 +0000130 return ibmveth_rxq_flags(adapter) & IBMVETH_RXQ_OFF_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131}
132
133static inline int ibmveth_rxq_frame_length(struct ibmveth_adapter *adapter)
134{
Santiago Leonf148f612010-09-03 18:29:30 +0000135 return adapter->rx_queue.queue_addr[adapter->rx_queue.index].length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136}
137
Brian Kingf4ff2872007-09-15 13:36:07 -0700138static inline int ibmveth_rxq_csum_good(struct ibmveth_adapter *adapter)
139{
Santiago Leonf148f612010-09-03 18:29:30 +0000140 return ibmveth_rxq_flags(adapter) & IBMVETH_RXQ_CSUM_GOOD;
Brian Kingf4ff2872007-09-15 13:36:07 -0700141}
142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143/* setup the initial settings for a buffer pool */
Santiago Leonf148f612010-09-03 18:29:30 +0000144static void ibmveth_init_buffer_pool(struct ibmveth_buff_pool *pool,
145 u32 pool_index, u32 pool_size,
146 u32 buff_size, u32 pool_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
148 pool->size = pool_size;
149 pool->index = pool_index;
150 pool->buff_size = buff_size;
Santiago Leonc033a6d2010-09-03 18:28:09 +0000151 pool->threshold = pool_size * 7 / 8;
Santiago Leon860f2422006-04-25 11:19:59 -0500152 pool->active = pool_active;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153}
154
155/* allocate and setup an buffer pool - called during open */
156static int ibmveth_alloc_buffer_pool(struct ibmveth_buff_pool *pool)
157{
158 int i;
159
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400160 pool->free_map = kmalloc(sizeof(u16) * pool->size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Santiago Leonf148f612010-09-03 18:29:30 +0000162 if (!pool->free_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400165 pool->dma_addr = kmalloc(sizeof(dma_addr_t) * pool->size, GFP_KERNEL);
Santiago Leonf148f612010-09-03 18:29:30 +0000166 if (!pool->dma_addr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 kfree(pool->free_map);
168 pool->free_map = NULL;
169 return -1;
170 }
171
Julia Lawalla05abcb2010-05-13 10:06:01 +0000172 pool->skbuff = kcalloc(pool->size, sizeof(void *), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Santiago Leonf148f612010-09-03 18:29:30 +0000174 if (!pool->skbuff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 kfree(pool->dma_addr);
176 pool->dma_addr = NULL;
177
178 kfree(pool->free_map);
179 pool->free_map = NULL;
180 return -1;
181 }
182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 memset(pool->dma_addr, 0, sizeof(dma_addr_t) * pool->size);
184
Santiago Leonf148f612010-09-03 18:29:30 +0000185 for (i = 0; i < pool->size; ++i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 pool->free_map[i] = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
188 atomic_set(&pool->available, 0);
189 pool->producer_index = 0;
190 pool->consumer_index = 0;
191
192 return 0;
193}
194
Santiago Leon0c26b672010-09-03 18:28:41 +0000195static inline void ibmveth_flush_buffer(void *addr, unsigned long length)
196{
197 unsigned long offset;
198
199 for (offset = 0; offset < length; offset += SMP_CACHE_BYTES)
200 asm("dcbfl %0,%1" :: "b" (addr), "r" (offset));
201}
202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203/* replenish the buffers for a pool. note that we don't need to
204 * skb_reserve these since they are used for incoming...
205 */
Santiago Leonf148f612010-09-03 18:29:30 +0000206static void ibmveth_replenish_buffer_pool(struct ibmveth_adapter *adapter,
207 struct ibmveth_buff_pool *pool)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208{
209 u32 i;
210 u32 count = pool->size - atomic_read(&pool->available);
211 u32 buffers_added = 0;
Robert Jennings1096d632008-07-24 04:34:52 +1000212 struct sk_buff *skb;
213 unsigned int free_index, index;
214 u64 correlator;
215 unsigned long lpar_rc;
216 dma_addr_t dma_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
218 mb();
219
Santiago Leonf148f612010-09-03 18:29:30 +0000220 for (i = 0; i < count; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 union ibmveth_buf_desc desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Santiago Leon003212c2010-09-03 18:29:03 +0000223 skb = netdev_alloc_skb(adapter->netdev, pool->buff_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Santiago Leonf148f612010-09-03 18:29:30 +0000225 if (!skb) {
Santiago Leonc43ced12010-09-03 18:29:14 +0000226 netdev_dbg(adapter->netdev,
227 "replenish: unable to allocate skb\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 adapter->replenish_no_mem++;
229 break;
230 }
231
David Gibson047a66d2006-10-21 10:24:13 -0700232 free_index = pool->consumer_index;
Santiago Leona613f582010-09-03 18:28:04 +0000233 pool->consumer_index++;
234 if (pool->consumer_index >= pool->size)
235 pool->consumer_index = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 index = pool->free_map[free_index];
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400237
Santiago Leon64859112010-09-03 18:29:41 +0000238 BUG_ON(index == IBM_VETH_INVALID_MAP);
239 BUG_ON(pool->skbuff[index] != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
241 dma_addr = dma_map_single(&adapter->vdev->dev, skb->data,
242 pool->buff_size, DMA_FROM_DEVICE);
243
Stephen Rothwellc713e7c2008-07-28 02:14:24 +1000244 if (dma_mapping_error(&adapter->vdev->dev, dma_addr))
Robert Jennings1096d632008-07-24 04:34:52 +1000245 goto failure;
246
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 pool->free_map[free_index] = IBM_VETH_INVALID_MAP;
248 pool->dma_addr[index] = dma_addr;
249 pool->skbuff[index] = skb;
250
251 correlator = ((u64)pool->index << 32) | index;
Santiago Leonf148f612010-09-03 18:29:30 +0000252 *(u64 *)skb->data = correlator;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Brian King79ef4a42007-08-17 09:16:56 -0500254 desc.fields.flags_len = IBMVETH_BUF_VALID | pool->buff_size;
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400255 desc.fields.address = dma_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Santiago Leon0c26b672010-09-03 18:28:41 +0000257 if (rx_flush) {
258 unsigned int len = min(pool->buff_size,
259 adapter->netdev->mtu +
260 IBMVETH_BUFF_OH);
261 ibmveth_flush_buffer(skb->data, len);
262 }
Santiago Leonf148f612010-09-03 18:29:30 +0000263 lpar_rc = h_add_logical_lan_buffer(adapter->vdev->unit_address,
264 desc.desc);
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400265
Santiago Leonf148f612010-09-03 18:29:30 +0000266 if (lpar_rc != H_SUCCESS) {
Robert Jennings1096d632008-07-24 04:34:52 +1000267 goto failure;
Santiago Leonf148f612010-09-03 18:29:30 +0000268 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 buffers_added++;
270 adapter->replenish_add_buff_success++;
271 }
272 }
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400273
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 mb();
275 atomic_add(buffers_added, &(pool->available));
Robert Jennings1096d632008-07-24 04:34:52 +1000276 return;
277
278failure:
279 pool->free_map[free_index] = index;
280 pool->skbuff[index] = NULL;
281 if (pool->consumer_index == 0)
282 pool->consumer_index = pool->size - 1;
283 else
284 pool->consumer_index--;
Stephen Rothwellc713e7c2008-07-28 02:14:24 +1000285 if (!dma_mapping_error(&adapter->vdev->dev, dma_addr))
Robert Jennings1096d632008-07-24 04:34:52 +1000286 dma_unmap_single(&adapter->vdev->dev,
287 pool->dma_addr[index], pool->buff_size,
288 DMA_FROM_DEVICE);
289 dev_kfree_skb_any(skb);
290 adapter->replenish_add_buff_failure++;
291
292 mb();
293 atomic_add(buffers_added, &(pool->available));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294}
295
Santiago Leone2adbcb2005-10-26 10:47:08 -0600296/* replenish routine */
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400297static void ibmveth_replenish_task(struct ibmveth_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298{
Santiago Leonb6d35182005-10-26 10:47:01 -0600299 int i;
300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 adapter->replenish_task_cycles++;
302
Santiago Leon517e80e2010-09-03 18:29:25 +0000303 for (i = (IBMVETH_NUM_BUFF_POOLS - 1); i >= 0; i--) {
Santiago Leonc033a6d2010-09-03 18:28:09 +0000304 struct ibmveth_buff_pool *pool = &adapter->rx_buff_pool[i];
305
306 if (pool->active &&
307 (atomic_read(&pool->available) < pool->threshold))
308 ibmveth_replenish_buffer_pool(adapter, pool);
309 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Santiago Leonf148f612010-09-03 18:29:30 +0000311 adapter->rx_no_buffer = *(u64 *)(((char*)adapter->buffer_list_addr) +
312 4096 - 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313}
314
315/* empty and free ana buffer pool - also used to do cleanup in error paths */
Santiago Leonf148f612010-09-03 18:29:30 +0000316static void ibmveth_free_buffer_pool(struct ibmveth_adapter *adapter,
317 struct ibmveth_buff_pool *pool)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318{
319 int i;
320
Jesper Juhlb4558ea2005-10-28 16:53:13 -0400321 kfree(pool->free_map);
322 pool->free_map = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Santiago Leonf148f612010-09-03 18:29:30 +0000324 if (pool->skbuff && pool->dma_addr) {
325 for (i = 0; i < pool->size; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 struct sk_buff *skb = pool->skbuff[i];
Santiago Leonf148f612010-09-03 18:29:30 +0000327 if (skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 dma_unmap_single(&adapter->vdev->dev,
329 pool->dma_addr[i],
330 pool->buff_size,
331 DMA_FROM_DEVICE);
332 dev_kfree_skb_any(skb);
333 pool->skbuff[i] = NULL;
334 }
335 }
336 }
337
Santiago Leonf148f612010-09-03 18:29:30 +0000338 if (pool->dma_addr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 kfree(pool->dma_addr);
340 pool->dma_addr = NULL;
341 }
342
Santiago Leonf148f612010-09-03 18:29:30 +0000343 if (pool->skbuff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 kfree(pool->skbuff);
345 pool->skbuff = NULL;
346 }
347}
348
349/* remove a buffer from a pool */
Santiago Leonf148f612010-09-03 18:29:30 +0000350static void ibmveth_remove_buffer_from_pool(struct ibmveth_adapter *adapter,
351 u64 correlator)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
353 unsigned int pool = correlator >> 32;
354 unsigned int index = correlator & 0xffffffffUL;
355 unsigned int free_index;
356 struct sk_buff *skb;
357
Santiago Leon64859112010-09-03 18:29:41 +0000358 BUG_ON(pool >= IBMVETH_NUM_BUFF_POOLS);
359 BUG_ON(index >= adapter->rx_buff_pool[pool].size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
361 skb = adapter->rx_buff_pool[pool].skbuff[index];
362
Santiago Leon64859112010-09-03 18:29:41 +0000363 BUG_ON(skb == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365 adapter->rx_buff_pool[pool].skbuff[index] = NULL;
366
367 dma_unmap_single(&adapter->vdev->dev,
368 adapter->rx_buff_pool[pool].dma_addr[index],
369 adapter->rx_buff_pool[pool].buff_size,
370 DMA_FROM_DEVICE);
371
David Gibson047a66d2006-10-21 10:24:13 -0700372 free_index = adapter->rx_buff_pool[pool].producer_index;
Santiago Leona613f582010-09-03 18:28:04 +0000373 adapter->rx_buff_pool[pool].producer_index++;
374 if (adapter->rx_buff_pool[pool].producer_index >=
375 adapter->rx_buff_pool[pool].size)
376 adapter->rx_buff_pool[pool].producer_index = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 adapter->rx_buff_pool[pool].free_map[free_index] = index;
378
379 mb();
380
381 atomic_dec(&(adapter->rx_buff_pool[pool].available));
382}
383
384/* get the current buffer on the rx queue */
385static inline struct sk_buff *ibmveth_rxq_get_buffer(struct ibmveth_adapter *adapter)
386{
387 u64 correlator = adapter->rx_queue.queue_addr[adapter->rx_queue.index].correlator;
388 unsigned int pool = correlator >> 32;
389 unsigned int index = correlator & 0xffffffffUL;
390
Santiago Leon64859112010-09-03 18:29:41 +0000391 BUG_ON(pool >= IBMVETH_NUM_BUFF_POOLS);
392 BUG_ON(index >= adapter->rx_buff_pool[pool].size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
394 return adapter->rx_buff_pool[pool].skbuff[index];
395}
396
397/* recycle the current buffer on the rx queue */
David S. Miller8decf862011-09-22 03:23:13 -0400398static int ibmveth_rxq_recycle_buffer(struct ibmveth_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399{
400 u32 q_index = adapter->rx_queue.index;
401 u64 correlator = adapter->rx_queue.queue_addr[q_index].correlator;
402 unsigned int pool = correlator >> 32;
403 unsigned int index = correlator & 0xffffffffUL;
404 union ibmveth_buf_desc desc;
405 unsigned long lpar_rc;
David S. Miller8decf862011-09-22 03:23:13 -0400406 int ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
Santiago Leon64859112010-09-03 18:29:41 +0000408 BUG_ON(pool >= IBMVETH_NUM_BUFF_POOLS);
409 BUG_ON(index >= adapter->rx_buff_pool[pool].size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Santiago Leonf148f612010-09-03 18:29:30 +0000411 if (!adapter->rx_buff_pool[pool].active) {
Santiago Leonb6d35182005-10-26 10:47:01 -0600412 ibmveth_rxq_harvest_buffer(adapter);
413 ibmveth_free_buffer_pool(adapter, &adapter->rx_buff_pool[pool]);
David S. Miller8decf862011-09-22 03:23:13 -0400414 goto out;
Santiago Leonb6d35182005-10-26 10:47:01 -0600415 }
416
Brian King79ef4a42007-08-17 09:16:56 -0500417 desc.fields.flags_len = IBMVETH_BUF_VALID |
418 adapter->rx_buff_pool[pool].buff_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 desc.fields.address = adapter->rx_buff_pool[pool].dma_addr[index];
420
421 lpar_rc = h_add_logical_lan_buffer(adapter->vdev->unit_address, desc.desc);
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400422
Santiago Leonf148f612010-09-03 18:29:30 +0000423 if (lpar_rc != H_SUCCESS) {
Santiago Leonc43ced12010-09-03 18:29:14 +0000424 netdev_dbg(adapter->netdev, "h_add_logical_lan_buffer failed "
425 "during recycle rc=%ld", lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 ibmveth_remove_buffer_from_pool(adapter, adapter->rx_queue.queue_addr[adapter->rx_queue.index].correlator);
David S. Miller8decf862011-09-22 03:23:13 -0400427 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 }
429
Santiago Leonf148f612010-09-03 18:29:30 +0000430 if (++adapter->rx_queue.index == adapter->rx_queue.num_slots) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 adapter->rx_queue.index = 0;
432 adapter->rx_queue.toggle = !adapter->rx_queue.toggle;
433 }
David S. Miller8decf862011-09-22 03:23:13 -0400434
435out:
436 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437}
438
Michael Ellerman493a6842007-04-17 13:12:55 +1000439static void ibmveth_rxq_harvest_buffer(struct ibmveth_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440{
441 ibmveth_remove_buffer_from_pool(adapter, adapter->rx_queue.queue_addr[adapter->rx_queue.index].correlator);
442
Santiago Leonf148f612010-09-03 18:29:30 +0000443 if (++adapter->rx_queue.index == adapter->rx_queue.num_slots) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 adapter->rx_queue.index = 0;
445 adapter->rx_queue.toggle = !adapter->rx_queue.toggle;
446 }
447}
448
449static void ibmveth_cleanup(struct ibmveth_adapter *adapter)
450{
Santiago Leonb6d35182005-10-26 10:47:01 -0600451 int i;
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700452 struct device *dev = &adapter->vdev->dev;
Santiago Leonb6d35182005-10-26 10:47:01 -0600453
Santiago Leonf148f612010-09-03 18:29:30 +0000454 if (adapter->buffer_list_addr != NULL) {
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700455 if (!dma_mapping_error(dev, adapter->buffer_list_dma)) {
456 dma_unmap_single(dev, adapter->buffer_list_dma, 4096,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 DMA_BIDIRECTIONAL);
458 adapter->buffer_list_dma = DMA_ERROR_CODE;
459 }
460 free_page((unsigned long)adapter->buffer_list_addr);
461 adapter->buffer_list_addr = NULL;
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400462 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Santiago Leonf148f612010-09-03 18:29:30 +0000464 if (adapter->filter_list_addr != NULL) {
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700465 if (!dma_mapping_error(dev, adapter->filter_list_dma)) {
466 dma_unmap_single(dev, adapter->filter_list_dma, 4096,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 DMA_BIDIRECTIONAL);
468 adapter->filter_list_dma = DMA_ERROR_CODE;
469 }
470 free_page((unsigned long)adapter->filter_list_addr);
471 adapter->filter_list_addr = NULL;
472 }
473
Santiago Leonf148f612010-09-03 18:29:30 +0000474 if (adapter->rx_queue.queue_addr != NULL) {
Santiago Leond90c92f2012-09-04 14:41:37 +0000475 dma_free_coherent(dev, adapter->rx_queue.queue_len,
476 adapter->rx_queue.queue_addr,
477 adapter->rx_queue.queue_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 adapter->rx_queue.queue_addr = NULL;
479 }
480
Santiago Leonf148f612010-09-03 18:29:30 +0000481 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++)
Santiago Leon860f2422006-04-25 11:19:59 -0500482 if (adapter->rx_buff_pool[i].active)
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400483 ibmveth_free_buffer_pool(adapter,
Santiago Leon860f2422006-04-25 11:19:59 -0500484 &adapter->rx_buff_pool[i]);
Robert Jennings1096d632008-07-24 04:34:52 +1000485
486 if (adapter->bounce_buffer != NULL) {
Stephen Rothwellc713e7c2008-07-28 02:14:24 +1000487 if (!dma_mapping_error(dev, adapter->bounce_buffer_dma)) {
Robert Jennings1096d632008-07-24 04:34:52 +1000488 dma_unmap_single(&adapter->vdev->dev,
489 adapter->bounce_buffer_dma,
490 adapter->netdev->mtu + IBMVETH_BUFF_OH,
491 DMA_BIDIRECTIONAL);
492 adapter->bounce_buffer_dma = DMA_ERROR_CODE;
493 }
494 kfree(adapter->bounce_buffer);
495 adapter->bounce_buffer = NULL;
496 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497}
498
Michael Ellermanbbedefc2006-10-03 12:24:23 -0500499static int ibmveth_register_logical_lan(struct ibmveth_adapter *adapter,
500 union ibmveth_buf_desc rxq_desc, u64 mac_address)
501{
502 int rc, try_again = 1;
503
Santiago Leonf148f612010-09-03 18:29:30 +0000504 /*
505 * After a kexec the adapter will still be open, so our attempt to
506 * open it will fail. So if we get a failure we free the adapter and
507 * try again, but only once.
508 */
Michael Ellermanbbedefc2006-10-03 12:24:23 -0500509retry:
510 rc = h_register_logical_lan(adapter->vdev->unit_address,
511 adapter->buffer_list_dma, rxq_desc.desc,
512 adapter->filter_list_dma, mac_address);
513
514 if (rc != H_SUCCESS && try_again) {
515 do {
516 rc = h_free_logical_lan(adapter->vdev->unit_address);
517 } while (H_IS_LONG_BUSY(rc) || (rc == H_BUSY));
518
519 try_again = 0;
520 goto retry;
521 }
522
523 return rc;
524}
525
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526static int ibmveth_open(struct net_device *netdev)
527{
Wang Chen4cf16532008-11-12 23:38:14 -0800528 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 u64 mac_address = 0;
Santiago Leonb6d35182005-10-26 10:47:01 -0600530 int rxq_entries = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 unsigned long lpar_rc;
532 int rc;
533 union ibmveth_buf_desc rxq_desc;
Santiago Leonb6d35182005-10-26 10:47:01 -0600534 int i;
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700535 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Santiago Leonc43ced12010-09-03 18:29:14 +0000537 netdev_dbg(netdev, "open starting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700539 napi_enable(&adapter->napi);
540
Santiago Leon517e80e2010-09-03 18:29:25 +0000541 for(i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++)
Santiago Leonb6d35182005-10-26 10:47:01 -0600542 rxq_entries += adapter->rx_buff_pool[i].size;
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400543
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 adapter->buffer_list_addr = (void*) get_zeroed_page(GFP_KERNEL);
545 adapter->filter_list_addr = (void*) get_zeroed_page(GFP_KERNEL);
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400546
Santiago Leonf148f612010-09-03 18:29:30 +0000547 if (!adapter->buffer_list_addr || !adapter->filter_list_addr) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000548 netdev_err(netdev, "unable to allocate filter or buffer list "
549 "pages\n");
Denis Kirjanov88426f22010-10-20 04:21:13 +0000550 rc = -ENOMEM;
551 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 }
553
Santiago Leond90c92f2012-09-04 14:41:37 +0000554 dev = &adapter->vdev->dev;
555
Santiago Leonf148f612010-09-03 18:29:30 +0000556 adapter->rx_queue.queue_len = sizeof(struct ibmveth_rx_q_entry) *
557 rxq_entries;
Santiago Leond90c92f2012-09-04 14:41:37 +0000558 adapter->rx_queue.queue_addr =
559 dma_alloc_coherent(dev, adapter->rx_queue.queue_len,
560 &adapter->rx_queue.queue_dma, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Santiago Leonf148f612010-09-03 18:29:30 +0000562 if (!adapter->rx_queue.queue_addr) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000563 netdev_err(netdev, "unable to allocate rx queue pages\n");
Denis Kirjanov88426f22010-10-20 04:21:13 +0000564 rc = -ENOMEM;
565 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 }
567
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700568 adapter->buffer_list_dma = dma_map_single(dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 adapter->buffer_list_addr, 4096, DMA_BIDIRECTIONAL);
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700570 adapter->filter_list_dma = dma_map_single(dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 adapter->filter_list_addr, 4096, DMA_BIDIRECTIONAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700573 if ((dma_mapping_error(dev, adapter->buffer_list_dma)) ||
Santiago Leond90c92f2012-09-04 14:41:37 +0000574 (dma_mapping_error(dev, adapter->filter_list_dma))) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000575 netdev_err(netdev, "unable to map filter or buffer list "
576 "pages\n");
Denis Kirjanov88426f22010-10-20 04:21:13 +0000577 rc = -ENOMEM;
578 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 }
580
581 adapter->rx_queue.index = 0;
582 adapter->rx_queue.num_slots = rxq_entries;
583 adapter->rx_queue.toggle = 1;
584
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 memcpy(&mac_address, netdev->dev_addr, netdev->addr_len);
586 mac_address = mac_address >> 16;
587
Santiago Leonf148f612010-09-03 18:29:30 +0000588 rxq_desc.fields.flags_len = IBMVETH_BUF_VALID |
589 adapter->rx_queue.queue_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 rxq_desc.fields.address = adapter->rx_queue.queue_dma;
591
Santiago Leonc43ced12010-09-03 18:29:14 +0000592 netdev_dbg(netdev, "buffer list @ 0x%p\n", adapter->buffer_list_addr);
593 netdev_dbg(netdev, "filter list @ 0x%p\n", adapter->filter_list_addr);
594 netdev_dbg(netdev, "receive q @ 0x%p\n", adapter->rx_queue.queue_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Santiago Leon4347ef12006-10-03 12:24:34 -0500596 h_vio_signal(adapter->vdev->unit_address, VIO_IRQ_DISABLE);
597
Michael Ellermanbbedefc2006-10-03 12:24:23 -0500598 lpar_rc = ibmveth_register_logical_lan(adapter, rxq_desc, mac_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Santiago Leonf148f612010-09-03 18:29:30 +0000600 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000601 netdev_err(netdev, "h_register_logical_lan failed with %ld\n",
602 lpar_rc);
603 netdev_err(netdev, "buffer TCE:0x%llx filter TCE:0x%llx rxq "
604 "desc:0x%llx MAC:0x%llx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 adapter->buffer_list_dma,
606 adapter->filter_list_dma,
607 rxq_desc.desc,
608 mac_address);
Denis Kirjanov88426f22010-10-20 04:21:13 +0000609 rc = -ENONET;
610 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 }
612
Santiago Leonf148f612010-09-03 18:29:30 +0000613 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++) {
614 if (!adapter->rx_buff_pool[i].active)
Santiago Leon860f2422006-04-25 11:19:59 -0500615 continue;
616 if (ibmveth_alloc_buffer_pool(&adapter->rx_buff_pool[i])) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000617 netdev_err(netdev, "unable to alloc pool\n");
Santiago Leon860f2422006-04-25 11:19:59 -0500618 adapter->rx_buff_pool[i].active = 0;
Denis Kirjanov88426f22010-10-20 04:21:13 +0000619 rc = -ENOMEM;
620 goto err_out;
Santiago Leon860f2422006-04-25 11:19:59 -0500621 }
622 }
623
Santiago Leonc43ced12010-09-03 18:29:14 +0000624 netdev_dbg(netdev, "registering irq 0x%x\n", netdev->irq);
Santiago Leonf148f612010-09-03 18:29:30 +0000625 rc = request_irq(netdev->irq, ibmveth_interrupt, 0, netdev->name,
626 netdev);
627 if (rc != 0) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000628 netdev_err(netdev, "unable to request irq 0x%x, rc %d\n",
629 netdev->irq, rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 do {
David S. Miller88c51002011-10-07 13:38:43 -0400631 lpar_rc = h_free_logical_lan(adapter->vdev->unit_address);
632 } while (H_IS_LONG_BUSY(lpar_rc) || (lpar_rc == H_BUSY));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
Denis Kirjanov88426f22010-10-20 04:21:13 +0000634 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 }
636
Robert Jennings1096d632008-07-24 04:34:52 +1000637 adapter->bounce_buffer =
638 kmalloc(netdev->mtu + IBMVETH_BUFF_OH, GFP_KERNEL);
639 if (!adapter->bounce_buffer) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000640 netdev_err(netdev, "unable to allocate bounce buffer\n");
Denis Kirjanov88426f22010-10-20 04:21:13 +0000641 rc = -ENOMEM;
Denis Kirjanove0e8ab52010-10-20 04:21:51 +0000642 goto err_out_free_irq;
Robert Jennings1096d632008-07-24 04:34:52 +1000643 }
644 adapter->bounce_buffer_dma =
645 dma_map_single(&adapter->vdev->dev, adapter->bounce_buffer,
646 netdev->mtu + IBMVETH_BUFF_OH, DMA_BIDIRECTIONAL);
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700647 if (dma_mapping_error(dev, adapter->bounce_buffer_dma)) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000648 netdev_err(netdev, "unable to map bounce buffer\n");
Denis Kirjanov88426f22010-10-20 04:21:13 +0000649 rc = -ENOMEM;
Denis Kirjanove0e8ab52010-10-20 04:21:51 +0000650 goto err_out_free_irq;
Robert Jennings1096d632008-07-24 04:34:52 +1000651 }
652
Santiago Leonc43ced12010-09-03 18:29:14 +0000653 netdev_dbg(netdev, "initial replenish cycle\n");
David Howells7d12e782006-10-05 14:55:46 +0100654 ibmveth_interrupt(netdev->irq, netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
Santiago Leone2adbcb2005-10-26 10:47:08 -0600656 netif_start_queue(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
Santiago Leonc43ced12010-09-03 18:29:14 +0000658 netdev_dbg(netdev, "open complete\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
660 return 0;
Denis Kirjanov88426f22010-10-20 04:21:13 +0000661
Denis Kirjanove0e8ab52010-10-20 04:21:51 +0000662err_out_free_irq:
663 free_irq(netdev->irq, netdev);
Denis Kirjanov88426f22010-10-20 04:21:13 +0000664err_out:
665 ibmveth_cleanup(adapter);
666 napi_disable(&adapter->napi);
667 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668}
669
670static int ibmveth_close(struct net_device *netdev)
671{
Wang Chen4cf16532008-11-12 23:38:14 -0800672 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 long lpar_rc;
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400674
Santiago Leonc43ced12010-09-03 18:29:14 +0000675 netdev_dbg(netdev, "close starting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700677 napi_disable(&adapter->napi);
678
Santiago Leon860f2422006-04-25 11:19:59 -0500679 if (!adapter->pool_config)
680 netif_stop_queue(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Robert Jenningsee2e6112010-07-16 04:57:25 +0000682 h_vio_signal(adapter->vdev->unit_address, VIO_IRQ_DISABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 do {
685 lpar_rc = h_free_logical_lan(adapter->vdev->unit_address);
Segher Boessenkool706c8c92006-03-30 14:49:40 +0200686 } while (H_IS_LONG_BUSY(lpar_rc) || (lpar_rc == H_BUSY));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Santiago Leonf148f612010-09-03 18:29:30 +0000688 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000689 netdev_err(netdev, "h_free_logical_lan failed with %lx, "
690 "continuing with close\n", lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 }
692
Robert Jenningsee2e6112010-07-16 04:57:25 +0000693 free_irq(netdev->irq, netdev);
694
Santiago Leonf148f612010-09-03 18:29:30 +0000695 adapter->rx_no_buffer = *(u64 *)(((char *)adapter->buffer_list_addr) +
696 4096 - 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
698 ibmveth_cleanup(adapter);
699
Santiago Leonc43ced12010-09-03 18:29:14 +0000700 netdev_dbg(netdev, "close complete\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
702 return 0;
703}
704
Santiago Leonf148f612010-09-03 18:29:30 +0000705static int netdev_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
706{
707 cmd->supported = (SUPPORTED_1000baseT_Full | SUPPORTED_Autoneg |
708 SUPPORTED_FIBRE);
709 cmd->advertising = (ADVERTISED_1000baseT_Full | ADVERTISED_Autoneg |
710 ADVERTISED_FIBRE);
David Decotigny70739492011-04-27 18:32:40 +0000711 ethtool_cmd_speed_set(cmd, SPEED_1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 cmd->duplex = DUPLEX_FULL;
713 cmd->port = PORT_FIBRE;
714 cmd->phy_address = 0;
715 cmd->transceiver = XCVR_INTERNAL;
716 cmd->autoneg = AUTONEG_ENABLE;
717 cmd->maxtxpkt = 0;
718 cmd->maxrxpkt = 1;
719 return 0;
720}
721
Santiago Leonf148f612010-09-03 18:29:30 +0000722static void netdev_get_drvinfo(struct net_device *dev,
723 struct ethtool_drvinfo *info)
724{
Jiri Pirko7826d432013-01-06 00:44:26 +0000725 strlcpy(info->driver, ibmveth_driver_name, sizeof(info->driver));
726 strlcpy(info->version, ibmveth_driver_version, sizeof(info->version));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727}
728
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000729static netdev_features_t ibmveth_fix_features(struct net_device *dev,
730 netdev_features_t features)
Brian King5fc7e012007-08-17 09:16:31 -0500731{
Michał Mirosławb9367bf2011-04-19 02:14:25 +0000732 /*
733 * Since the ibmveth firmware interface does not have the
734 * concept of separate tx/rx checksum offload enable, if rx
735 * checksum is disabled we also have to disable tx checksum
736 * offload. Once we disable rx checksum offload, we are no
737 * longer allowed to send tx buffers that are not properly
738 * checksummed.
739 */
Brian King5fc7e012007-08-17 09:16:31 -0500740
Michał Mirosławb9367bf2011-04-19 02:14:25 +0000741 if (!(features & NETIF_F_RXCSUM))
742 features &= ~NETIF_F_ALL_CSUM;
743
744 return features;
Brian King5fc7e012007-08-17 09:16:31 -0500745}
746
Michał Mirosławb9367bf2011-04-19 02:14:25 +0000747static int ibmveth_set_csum_offload(struct net_device *dev, u32 data)
Brian King5fc7e012007-08-17 09:16:31 -0500748{
Wang Chen4cf16532008-11-12 23:38:14 -0800749 struct ibmveth_adapter *adapter = netdev_priv(dev);
Stephen Rothwellff5bfc32009-01-06 10:47:44 -0800750 unsigned long set_attr, clr_attr, ret_attr;
Santiago Leonab78df72010-09-03 18:28:52 +0000751 unsigned long set_attr6, clr_attr6;
David S. Miller8decf862011-09-22 03:23:13 -0400752 long ret, ret4, ret6;
Brian King5fc7e012007-08-17 09:16:31 -0500753 int rc1 = 0, rc2 = 0;
754 int restart = 0;
755
756 if (netif_running(dev)) {
757 restart = 1;
758 adapter->pool_config = 1;
759 ibmveth_close(dev);
760 adapter->pool_config = 0;
761 }
762
Brian King79ef4a42007-08-17 09:16:56 -0500763 set_attr = 0;
764 clr_attr = 0;
David S. Miller8decf862011-09-22 03:23:13 -0400765 set_attr6 = 0;
766 clr_attr6 = 0;
Brian King5fc7e012007-08-17 09:16:31 -0500767
Santiago Leonab78df72010-09-03 18:28:52 +0000768 if (data) {
Brian King79ef4a42007-08-17 09:16:56 -0500769 set_attr = IBMVETH_ILLAN_IPV4_TCP_CSUM;
Santiago Leonab78df72010-09-03 18:28:52 +0000770 set_attr6 = IBMVETH_ILLAN_IPV6_TCP_CSUM;
771 } else {
Brian King79ef4a42007-08-17 09:16:56 -0500772 clr_attr = IBMVETH_ILLAN_IPV4_TCP_CSUM;
Santiago Leonab78df72010-09-03 18:28:52 +0000773 clr_attr6 = IBMVETH_ILLAN_IPV6_TCP_CSUM;
774 }
Brian King5fc7e012007-08-17 09:16:31 -0500775
Brian King79ef4a42007-08-17 09:16:56 -0500776 ret = h_illan_attributes(adapter->vdev->unit_address, 0, 0, &ret_attr);
Brian King5fc7e012007-08-17 09:16:31 -0500777
Brian King79ef4a42007-08-17 09:16:56 -0500778 if (ret == H_SUCCESS && !(ret_attr & IBMVETH_ILLAN_ACTIVE_TRUNK) &&
779 !(ret_attr & IBMVETH_ILLAN_TRUNK_PRI_MASK) &&
780 (ret_attr & IBMVETH_ILLAN_PADDED_PKT_CSUM)) {
David S. Miller8decf862011-09-22 03:23:13 -0400781 ret4 = h_illan_attributes(adapter->vdev->unit_address, clr_attr,
Brian King79ef4a42007-08-17 09:16:56 -0500782 set_attr, &ret_attr);
Brian King5fc7e012007-08-17 09:16:31 -0500783
David S. Miller8decf862011-09-22 03:23:13 -0400784 if (ret4 != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000785 netdev_err(dev, "unable to change IPv4 checksum "
786 "offload settings. %d rc=%ld\n",
David S. Miller8decf862011-09-22 03:23:13 -0400787 data, ret4);
Brian King5fc7e012007-08-17 09:16:31 -0500788
David S. Miller8decf862011-09-22 03:23:13 -0400789 h_illan_attributes(adapter->vdev->unit_address,
790 set_attr, clr_attr, &ret_attr);
791
792 if (data == 1)
793 dev->features &= ~NETIF_F_IP_CSUM;
794
Santiago Leonf148f612010-09-03 18:29:30 +0000795 } else {
Santiago Leonab78df72010-09-03 18:28:52 +0000796 adapter->fw_ipv4_csum_support = data;
Santiago Leonf148f612010-09-03 18:29:30 +0000797 }
Santiago Leonab78df72010-09-03 18:28:52 +0000798
799 ret6 = h_illan_attributes(adapter->vdev->unit_address,
800 clr_attr6, set_attr6, &ret_attr);
801
802 if (ret6 != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000803 netdev_err(dev, "unable to change IPv6 checksum "
804 "offload settings. %d rc=%ld\n",
David S. Miller8decf862011-09-22 03:23:13 -0400805 data, ret6);
Santiago Leonab78df72010-09-03 18:28:52 +0000806
David S. Miller8decf862011-09-22 03:23:13 -0400807 h_illan_attributes(adapter->vdev->unit_address,
808 set_attr6, clr_attr6, &ret_attr);
809
810 if (data == 1)
811 dev->features &= ~NETIF_F_IPV6_CSUM;
812
Santiago Leonab78df72010-09-03 18:28:52 +0000813 } else
814 adapter->fw_ipv6_csum_support = data;
815
David S. Miller8decf862011-09-22 03:23:13 -0400816 if (ret4 == H_SUCCESS || ret6 == H_SUCCESS)
Michał Mirosławb9367bf2011-04-19 02:14:25 +0000817 adapter->rx_csum = data;
Santiago Leonab78df72010-09-03 18:28:52 +0000818 else
819 rc1 = -EIO;
Brian King5fc7e012007-08-17 09:16:31 -0500820 } else {
821 rc1 = -EIO;
Santiago Leon21c2dec2010-09-03 18:29:19 +0000822 netdev_err(dev, "unable to change checksum offload settings."
823 " %d rc=%ld ret_attr=%lx\n", data, ret,
824 ret_attr);
Brian King5fc7e012007-08-17 09:16:31 -0500825 }
826
827 if (restart)
828 rc2 = ibmveth_open(dev);
829
830 return rc1 ? rc1 : rc2;
831}
832
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000833static int ibmveth_set_features(struct net_device *dev,
834 netdev_features_t features)
Brian King5fc7e012007-08-17 09:16:31 -0500835{
Wang Chen4cf16532008-11-12 23:38:14 -0800836 struct ibmveth_adapter *adapter = netdev_priv(dev);
Michał Mirosławb9367bf2011-04-19 02:14:25 +0000837 int rx_csum = !!(features & NETIF_F_RXCSUM);
838 int rc;
Brian King5fc7e012007-08-17 09:16:31 -0500839
Michał Mirosławb9367bf2011-04-19 02:14:25 +0000840 if (rx_csum == adapter->rx_csum)
Brian King5fc7e012007-08-17 09:16:31 -0500841 return 0;
842
Michał Mirosławb9367bf2011-04-19 02:14:25 +0000843 rc = ibmveth_set_csum_offload(dev, rx_csum);
844 if (rc && !adapter->rx_csum)
845 dev->features = features & ~(NETIF_F_ALL_CSUM | NETIF_F_RXCSUM);
Brian King5fc7e012007-08-17 09:16:31 -0500846
847 return rc;
848}
849
Brian Kingddbb4de2007-08-17 09:16:43 -0500850static void ibmveth_get_strings(struct net_device *dev, u32 stringset, u8 *data)
851{
852 int i;
853
854 if (stringset != ETH_SS_STATS)
855 return;
856
857 for (i = 0; i < ARRAY_SIZE(ibmveth_stats); i++, data += ETH_GSTRING_LEN)
858 memcpy(data, ibmveth_stats[i].name, ETH_GSTRING_LEN);
859}
860
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700861static int ibmveth_get_sset_count(struct net_device *dev, int sset)
Brian Kingddbb4de2007-08-17 09:16:43 -0500862{
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700863 switch (sset) {
864 case ETH_SS_STATS:
865 return ARRAY_SIZE(ibmveth_stats);
866 default:
867 return -EOPNOTSUPP;
868 }
Brian Kingddbb4de2007-08-17 09:16:43 -0500869}
870
871static void ibmveth_get_ethtool_stats(struct net_device *dev,
872 struct ethtool_stats *stats, u64 *data)
873{
874 int i;
Wang Chen4cf16532008-11-12 23:38:14 -0800875 struct ibmveth_adapter *adapter = netdev_priv(dev);
Brian Kingddbb4de2007-08-17 09:16:43 -0500876
877 for (i = 0; i < ARRAY_SIZE(ibmveth_stats); i++)
878 data[i] = IBMVETH_GET_STAT(adapter, ibmveth_stats[i].offset);
879}
880
Jeff Garzik7282d492006-09-13 14:30:00 -0400881static const struct ethtool_ops netdev_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 .get_drvinfo = netdev_get_drvinfo,
883 .get_settings = netdev_get_settings,
Ben Hutchingsed4ba4b2010-12-09 12:10:25 +0000884 .get_link = ethtool_op_get_link,
Brian Kingddbb4de2007-08-17 09:16:43 -0500885 .get_strings = ibmveth_get_strings,
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700886 .get_sset_count = ibmveth_get_sset_count,
Brian Kingddbb4de2007-08-17 09:16:43 -0500887 .get_ethtool_stats = ibmveth_get_ethtool_stats,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888};
889
890static int ibmveth_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
891{
892 return -EOPNOTSUPP;
893}
894
895#define page_offset(v) ((unsigned long)(v) & ((1 << 12) - 1))
896
Santiago Leon6e8ab302010-09-03 18:28:36 +0000897static int ibmveth_send(struct ibmveth_adapter *adapter,
898 union ibmveth_buf_desc *descs)
899{
900 unsigned long correlator;
901 unsigned int retry_count;
902 unsigned long ret;
903
904 /*
905 * The retry count sets a maximum for the number of broadcast and
906 * multicast destinations within the system.
907 */
908 retry_count = 1024;
909 correlator = 0;
910 do {
911 ret = h_send_logical_lan(adapter->vdev->unit_address,
912 descs[0].desc, descs[1].desc,
913 descs[2].desc, descs[3].desc,
914 descs[4].desc, descs[5].desc,
915 correlator, &correlator);
916 } while ((ret == H_BUSY) && (retry_count--));
917
918 if (ret != H_SUCCESS && ret != H_DROPPED) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000919 netdev_err(adapter->netdev, "tx: h_send_logical_lan failed "
920 "with rc=%ld\n", ret);
Santiago Leon6e8ab302010-09-03 18:28:36 +0000921 return 1;
922 }
923
924 return 0;
925}
926
Stephen Hemminger613573252009-08-31 19:50:58 +0000927static netdev_tx_t ibmveth_start_xmit(struct sk_buff *skb,
928 struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929{
Wang Chen4cf16532008-11-12 23:38:14 -0800930 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Santiago Leon6e8ab302010-09-03 18:28:36 +0000931 unsigned int desc_flags;
932 union ibmveth_buf_desc descs[6];
933 int last, i;
934 int force_bounce = 0;
David S. Miller8decf862011-09-22 03:23:13 -0400935 dma_addr_t dma_addr;
Santiago Leon60296d92005-10-26 10:47:16 -0600936
Santiago Leon6e8ab302010-09-03 18:28:36 +0000937 /*
938 * veth handles a maximum of 6 segments including the header, so
939 * we have to linearize the skb if there are more than this.
940 */
941 if (skb_shinfo(skb)->nr_frags > 5 && __skb_linearize(skb)) {
942 netdev->stats.tx_dropped++;
Brian Kingf4ff2872007-09-15 13:36:07 -0700943 goto out;
944 }
945
Santiago Leon6e8ab302010-09-03 18:28:36 +0000946 /* veth can't checksum offload UDP */
947 if (skb->ip_summed == CHECKSUM_PARTIAL &&
Santiago Leonab78df72010-09-03 18:28:52 +0000948 ((skb->protocol == htons(ETH_P_IP) &&
949 ip_hdr(skb)->protocol != IPPROTO_TCP) ||
950 (skb->protocol == htons(ETH_P_IPV6) &&
951 ipv6_hdr(skb)->nexthdr != IPPROTO_TCP)) &&
952 skb_checksum_help(skb)) {
953
Santiago Leon21c2dec2010-09-03 18:29:19 +0000954 netdev_err(netdev, "tx: failed to checksum packet\n");
Santiago Leon6e8ab302010-09-03 18:28:36 +0000955 netdev->stats.tx_dropped++;
956 goto out;
957 }
Brian Kingf4ff2872007-09-15 13:36:07 -0700958
Santiago Leon6e8ab302010-09-03 18:28:36 +0000959 desc_flags = IBMVETH_BUF_VALID;
960
961 if (skb->ip_summed == CHECKSUM_PARTIAL) {
962 unsigned char *buf = skb_transport_header(skb) +
963 skb->csum_offset;
964
965 desc_flags |= (IBMVETH_BUF_NO_CSUM | IBMVETH_BUF_CSUM_GOOD);
Brian Kingf4ff2872007-09-15 13:36:07 -0700966
967 /* Need to zero out the checksum */
968 buf[0] = 0;
969 buf[1] = 0;
970 }
971
Santiago Leon6e8ab302010-09-03 18:28:36 +0000972retry_bounce:
973 memset(descs, 0, sizeof(descs));
Santiago Leonc08cc3c2010-09-03 18:28:20 +0000974
Santiago Leon6e8ab302010-09-03 18:28:36 +0000975 /*
976 * If a linear packet is below the rx threshold then
977 * copy it into the static bounce buffer. This avoids the
978 * cost of a TCE insert and remove.
979 */
980 if (force_bounce || (!skb_is_nonlinear(skb) &&
981 (skb->len < tx_copybreak))) {
Robert Jennings1096d632008-07-24 04:34:52 +1000982 skb_copy_from_linear_data(skb, adapter->bounce_buffer,
983 skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984
Santiago Leon6e8ab302010-09-03 18:28:36 +0000985 descs[0].fields.flags_len = desc_flags | skb->len;
986 descs[0].fields.address = adapter->bounce_buffer_dma;
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400987
Santiago Leon6e8ab302010-09-03 18:28:36 +0000988 if (ibmveth_send(adapter, descs)) {
989 adapter->tx_send_failed++;
990 netdev->stats.tx_dropped++;
991 } else {
992 netdev->stats.tx_packets++;
993 netdev->stats.tx_bytes += skb->len;
994 }
995
996 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 }
998
Santiago Leon6e8ab302010-09-03 18:28:36 +0000999 /* Map the header */
David S. Miller8decf862011-09-22 03:23:13 -04001000 dma_addr = dma_map_single(&adapter->vdev->dev, skb->data,
1001 skb_headlen(skb), DMA_TO_DEVICE);
1002 if (dma_mapping_error(&adapter->vdev->dev, dma_addr))
Santiago Leon6e8ab302010-09-03 18:28:36 +00001003 goto map_failed;
1004
1005 descs[0].fields.flags_len = desc_flags | skb_headlen(skb);
David S. Miller8decf862011-09-22 03:23:13 -04001006 descs[0].fields.address = dma_addr;
Santiago Leon6e8ab302010-09-03 18:28:36 +00001007
1008 /* Map the frags */
1009 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001010 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
Santiago Leon6e8ab302010-09-03 18:28:36 +00001011
Ian Campbell8838a532011-08-31 00:46:53 +00001012 dma_addr = skb_frag_dma_map(&adapter->vdev->dev, frag, 0,
Eric Dumazet9e903e02011-10-18 21:00:24 +00001013 skb_frag_size(frag), DMA_TO_DEVICE);
Santiago Leon6e8ab302010-09-03 18:28:36 +00001014
1015 if (dma_mapping_error(&adapter->vdev->dev, dma_addr))
1016 goto map_failed_frags;
1017
Eric Dumazet9e903e02011-10-18 21:00:24 +00001018 descs[i+1].fields.flags_len = desc_flags | skb_frag_size(frag);
Santiago Leon6e8ab302010-09-03 18:28:36 +00001019 descs[i+1].fields.address = dma_addr;
1020 }
1021
1022 if (ibmveth_send(adapter, descs)) {
1023 adapter->tx_send_failed++;
1024 netdev->stats.tx_dropped++;
1025 } else {
1026 netdev->stats.tx_packets++;
1027 netdev->stats.tx_bytes += skb->len;
1028 }
1029
David S. Miller8decf862011-09-22 03:23:13 -04001030 dma_unmap_single(&adapter->vdev->dev,
1031 descs[0].fields.address,
1032 descs[0].fields.flags_len & IBMVETH_BUF_LEN_MASK,
1033 DMA_TO_DEVICE);
1034
1035 for (i = 1; i < skb_shinfo(skb)->nr_frags + 1; i++)
Santiago Leon6e8ab302010-09-03 18:28:36 +00001036 dma_unmap_page(&adapter->vdev->dev, descs[i].fields.address,
1037 descs[i].fields.flags_len & IBMVETH_BUF_LEN_MASK,
1038 DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
Santiago Leone8cb7eb2010-09-03 18:28:15 +00001040out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 dev_kfree_skb(skb);
Patrick McHardy6ed10652009-06-23 06:03:08 +00001042 return NETDEV_TX_OK;
Santiago Leon6e8ab302010-09-03 18:28:36 +00001043
1044map_failed_frags:
1045 last = i+1;
1046 for (i = 0; i < last; i++)
1047 dma_unmap_page(&adapter->vdev->dev, descs[i].fields.address,
1048 descs[i].fields.flags_len & IBMVETH_BUF_LEN_MASK,
1049 DMA_TO_DEVICE);
1050
1051map_failed:
1052 if (!firmware_has_feature(FW_FEATURE_CMO))
Santiago Leon21c2dec2010-09-03 18:29:19 +00001053 netdev_err(netdev, "tx: unable to map xmit buffer\n");
Santiago Leon6e8ab302010-09-03 18:28:36 +00001054 adapter->tx_map_failed++;
1055 skb_linearize(skb);
1056 force_bounce = 1;
1057 goto retry_bounce;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058}
1059
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001060static int ibmveth_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061{
Santiago Leonf148f612010-09-03 18:29:30 +00001062 struct ibmveth_adapter *adapter =
1063 container_of(napi, struct ibmveth_adapter, napi);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001064 struct net_device *netdev = adapter->netdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 int frames_processed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 unsigned long lpar_rc;
1067
Santiago Leonf148f612010-09-03 18:29:30 +00001068restart_poll:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 do {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001070 if (!ibmveth_rxq_pending_buffer(adapter))
1071 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
Anton Blanchardf89e49e2010-09-06 18:21:41 -07001073 smp_rmb();
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001074 if (!ibmveth_rxq_buffer_valid(adapter)) {
1075 wmb(); /* suggested by larson1 */
1076 adapter->rx_invalid_buffer++;
Santiago Leonc43ced12010-09-03 18:29:14 +00001077 netdev_dbg(netdev, "recycling invalid buffer\n");
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001078 ibmveth_rxq_recycle_buffer(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 } else {
Santiago Leon8d86c612010-09-03 18:28:25 +00001080 struct sk_buff *skb, *new_skb;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001081 int length = ibmveth_rxq_frame_length(adapter);
1082 int offset = ibmveth_rxq_frame_offset(adapter);
Brian Kingf4ff2872007-09-15 13:36:07 -07001083 int csum_good = ibmveth_rxq_csum_good(adapter);
1084
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001085 skb = ibmveth_rxq_get_buffer(adapter);
1086
Santiago Leon8d86c612010-09-03 18:28:25 +00001087 new_skb = NULL;
1088 if (length < rx_copybreak)
1089 new_skb = netdev_alloc_skb(netdev, length);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001090
Santiago Leon8d86c612010-09-03 18:28:25 +00001091 if (new_skb) {
1092 skb_copy_to_linear_data(new_skb,
1093 skb->data + offset,
1094 length);
Santiago Leon0c26b672010-09-03 18:28:41 +00001095 if (rx_flush)
1096 ibmveth_flush_buffer(skb->data,
1097 length + offset);
David S. Miller8decf862011-09-22 03:23:13 -04001098 if (!ibmveth_rxq_recycle_buffer(adapter))
1099 kfree_skb(skb);
Santiago Leon8d86c612010-09-03 18:28:25 +00001100 skb = new_skb;
Santiago Leon8d86c612010-09-03 18:28:25 +00001101 } else {
1102 ibmveth_rxq_harvest_buffer(adapter);
1103 skb_reserve(skb, offset);
1104 }
1105
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001106 skb_put(skb, length);
1107 skb->protocol = eth_type_trans(skb, netdev);
1108
Santiago Leon8d86c612010-09-03 18:28:25 +00001109 if (csum_good)
1110 skb->ip_summed = CHECKSUM_UNNECESSARY;
1111
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001112 netif_receive_skb(skb); /* send it up */
1113
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001114 netdev->stats.rx_packets++;
1115 netdev->stats.rx_bytes += length;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001116 frames_processed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 }
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001118 } while (frames_processed < budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119
Santiago Leone2adbcb2005-10-26 10:47:08 -06001120 ibmveth_replenish_task(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001122 if (frames_processed < budget) {
1123 /* We think we are done - reenable interrupts,
1124 * then check once more to make sure we are done.
1125 */
1126 lpar_rc = h_vio_signal(adapter->vdev->unit_address,
1127 VIO_IRQ_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128
Santiago Leon64859112010-09-03 18:29:41 +00001129 BUG_ON(lpar_rc != H_SUCCESS);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001130
Ben Hutchings288379f2009-01-19 16:43:59 -08001131 napi_complete(napi);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001132
1133 if (ibmveth_rxq_pending_buffer(adapter) &&
Ben Hutchings288379f2009-01-19 16:43:59 -08001134 napi_reschedule(napi)) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001135 lpar_rc = h_vio_signal(adapter->vdev->unit_address,
1136 VIO_IRQ_DISABLE);
1137 goto restart_poll;
1138 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 }
1140
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001141 return frames_processed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142}
1143
David Howells7d12e782006-10-05 14:55:46 +01001144static irqreturn_t ibmveth_interrupt(int irq, void *dev_instance)
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001145{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 struct net_device *netdev = dev_instance;
Wang Chen4cf16532008-11-12 23:38:14 -08001147 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 unsigned long lpar_rc;
1149
Ben Hutchings288379f2009-01-19 16:43:59 -08001150 if (napi_schedule_prep(&adapter->napi)) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001151 lpar_rc = h_vio_signal(adapter->vdev->unit_address,
1152 VIO_IRQ_DISABLE);
Santiago Leon64859112010-09-03 18:29:41 +00001153 BUG_ON(lpar_rc != H_SUCCESS);
Ben Hutchings288379f2009-01-19 16:43:59 -08001154 __napi_schedule(&adapter->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 }
1156 return IRQ_HANDLED;
1157}
1158
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159static void ibmveth_set_multicast_list(struct net_device *netdev)
1160{
Wang Chen4cf16532008-11-12 23:38:14 -08001161 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 unsigned long lpar_rc;
1163
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001164 if ((netdev->flags & IFF_PROMISC) ||
1165 (netdev_mc_count(netdev) > adapter->mcastFilterSize)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 lpar_rc = h_multicast_ctrl(adapter->vdev->unit_address,
1167 IbmVethMcastEnableRecv |
1168 IbmVethMcastDisableFiltering,
1169 0);
Santiago Leonf148f612010-09-03 18:29:30 +00001170 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001171 netdev_err(netdev, "h_multicast_ctrl rc=%ld when "
1172 "entering promisc mode\n", lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 }
1174 } else {
Jiri Pirko22bedad32010-04-01 21:22:57 +00001175 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 /* clear the filter table & disable filtering */
1177 lpar_rc = h_multicast_ctrl(adapter->vdev->unit_address,
1178 IbmVethMcastEnableRecv |
1179 IbmVethMcastDisableFiltering |
1180 IbmVethMcastClearFilterTable,
1181 0);
Santiago Leonf148f612010-09-03 18:29:30 +00001182 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001183 netdev_err(netdev, "h_multicast_ctrl rc=%ld when "
1184 "attempting to clear filter table\n",
1185 lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 }
1187 /* add the addresses to the filter table */
Jiri Pirko22bedad32010-04-01 21:22:57 +00001188 netdev_for_each_mc_addr(ha, netdev) {
Santiago Leonf148f612010-09-03 18:29:30 +00001189 /* add the multicast address to the filter table */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 unsigned long mcast_addr = 0;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001191 memcpy(((char *)&mcast_addr)+2, ha->addr, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 lpar_rc = h_multicast_ctrl(adapter->vdev->unit_address,
1193 IbmVethMcastAddFilter,
1194 mcast_addr);
Santiago Leonf148f612010-09-03 18:29:30 +00001195 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001196 netdev_err(netdev, "h_multicast_ctrl rc=%ld "
1197 "when adding an entry to the filter "
1198 "table\n", lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 }
1200 }
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001201
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 /* re-enable filtering */
1203 lpar_rc = h_multicast_ctrl(adapter->vdev->unit_address,
1204 IbmVethMcastEnableFiltering,
1205 0);
Santiago Leonf148f612010-09-03 18:29:30 +00001206 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001207 netdev_err(netdev, "h_multicast_ctrl rc=%ld when "
1208 "enabling filtering\n", lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 }
1210 }
1211}
1212
1213static int ibmveth_change_mtu(struct net_device *dev, int new_mtu)
1214{
Wang Chen4cf16532008-11-12 23:38:14 -08001215 struct ibmveth_adapter *adapter = netdev_priv(dev);
Robert Jennings1096d632008-07-24 04:34:52 +10001216 struct vio_dev *viodev = adapter->vdev;
Santiago Leon860f2422006-04-25 11:19:59 -05001217 int new_mtu_oh = new_mtu + IBMVETH_BUFF_OH;
Robert Jennings0645bab2010-08-17 09:15:45 +00001218 int i, rc;
1219 int need_restart = 0;
Santiago Leonb6d35182005-10-26 10:47:01 -06001220
Santiago Leon517e80e2010-09-03 18:29:25 +00001221 if (new_mtu < IBMVETH_MIN_MTU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 return -EINVAL;
Santiago Leonb6d35182005-10-26 10:47:01 -06001223
Santiago Leon517e80e2010-09-03 18:29:25 +00001224 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++)
Brian Kingce6eea52007-06-08 14:05:17 -05001225 if (new_mtu_oh < adapter->rx_buff_pool[i].buff_size)
1226 break;
1227
Santiago Leon517e80e2010-09-03 18:29:25 +00001228 if (i == IBMVETH_NUM_BUFF_POOLS)
Brian Kingce6eea52007-06-08 14:05:17 -05001229 return -EINVAL;
1230
Santiago Leonea866e62008-07-24 04:34:23 +10001231 /* Deactivate all the buffer pools so that the next loop can activate
1232 only the buffer pools necessary to hold the new MTU */
Robert Jennings0645bab2010-08-17 09:15:45 +00001233 if (netif_running(adapter->netdev)) {
1234 need_restart = 1;
1235 adapter->pool_config = 1;
1236 ibmveth_close(adapter->netdev);
1237 adapter->pool_config = 0;
1238 }
Brian Kingce6eea52007-06-08 14:05:17 -05001239
Santiago Leonea866e62008-07-24 04:34:23 +10001240 /* Look for an active buffer pool that can hold the new MTU */
Santiago Leonf148f612010-09-03 18:29:30 +00001241 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++) {
Santiago Leonea866e62008-07-24 04:34:23 +10001242 adapter->rx_buff_pool[i].active = 1;
1243
Santiago Leon860f2422006-04-25 11:19:59 -05001244 if (new_mtu_oh < adapter->rx_buff_pool[i].buff_size) {
Robert Jennings1096d632008-07-24 04:34:52 +10001245 dev->mtu = new_mtu;
1246 vio_cmo_set_dev_desired(viodev,
1247 ibmveth_get_desired_dma
1248 (viodev));
Robert Jennings0645bab2010-08-17 09:15:45 +00001249 if (need_restart) {
1250 return ibmveth_open(adapter->netdev);
1251 }
Santiago Leon860f2422006-04-25 11:19:59 -05001252 return 0;
Santiago Leonb6d35182005-10-26 10:47:01 -06001253 }
Santiago Leonb6d35182005-10-26 10:47:01 -06001254 }
Robert Jennings0645bab2010-08-17 09:15:45 +00001255
1256 if (need_restart && (rc = ibmveth_open(adapter->netdev)))
1257 return rc;
1258
Santiago Leon860f2422006-04-25 11:19:59 -05001259 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260}
1261
Santiago Leon6b422372006-10-03 12:24:28 -05001262#ifdef CONFIG_NET_POLL_CONTROLLER
1263static void ibmveth_poll_controller(struct net_device *dev)
1264{
Wang Chen4cf16532008-11-12 23:38:14 -08001265 ibmveth_replenish_task(netdev_priv(dev));
Andrew Morton5f771132006-10-10 14:33:30 -07001266 ibmveth_interrupt(dev->irq, dev);
Santiago Leon6b422372006-10-03 12:24:28 -05001267}
1268#endif
1269
Robert Jennings1096d632008-07-24 04:34:52 +10001270/**
1271 * ibmveth_get_desired_dma - Calculate IO memory desired by the driver
1272 *
1273 * @vdev: struct vio_dev for the device whose desired IO mem is to be returned
1274 *
1275 * Return value:
1276 * Number of bytes of IO data the driver will need to perform well.
1277 */
1278static unsigned long ibmveth_get_desired_dma(struct vio_dev *vdev)
1279{
1280 struct net_device *netdev = dev_get_drvdata(&vdev->dev);
1281 struct ibmveth_adapter *adapter;
1282 unsigned long ret;
1283 int i;
1284 int rxqentries = 1;
1285
1286 /* netdev inits at probe time along with the structures we need below*/
1287 if (netdev == NULL)
1288 return IOMMU_PAGE_ALIGN(IBMVETH_IO_ENTITLEMENT_DEFAULT);
1289
1290 adapter = netdev_priv(netdev);
1291
1292 ret = IBMVETH_BUFF_LIST_SIZE + IBMVETH_FILT_LIST_SIZE;
1293 ret += IOMMU_PAGE_ALIGN(netdev->mtu);
1294
Santiago Leon517e80e2010-09-03 18:29:25 +00001295 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++) {
Robert Jennings1096d632008-07-24 04:34:52 +10001296 /* add the size of the active receive buffers */
1297 if (adapter->rx_buff_pool[i].active)
1298 ret +=
1299 adapter->rx_buff_pool[i].size *
1300 IOMMU_PAGE_ALIGN(adapter->rx_buff_pool[i].
1301 buff_size);
1302 rxqentries += adapter->rx_buff_pool[i].size;
1303 }
1304 /* add the size of the receive queue entries */
1305 ret += IOMMU_PAGE_ALIGN(rxqentries * sizeof(struct ibmveth_rx_q_entry));
1306
1307 return ret;
1308}
1309
Alexander Beregalove186d172009-04-15 12:52:39 +00001310static const struct net_device_ops ibmveth_netdev_ops = {
1311 .ndo_open = ibmveth_open,
1312 .ndo_stop = ibmveth_close,
1313 .ndo_start_xmit = ibmveth_start_xmit,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00001314 .ndo_set_rx_mode = ibmveth_set_multicast_list,
Alexander Beregalove186d172009-04-15 12:52:39 +00001315 .ndo_do_ioctl = ibmveth_ioctl,
1316 .ndo_change_mtu = ibmveth_change_mtu,
Michał Mirosławb9367bf2011-04-19 02:14:25 +00001317 .ndo_fix_features = ibmveth_fix_features,
1318 .ndo_set_features = ibmveth_set_features,
Alexander Beregalove186d172009-04-15 12:52:39 +00001319 .ndo_validate_addr = eth_validate_addr,
1320 .ndo_set_mac_address = eth_mac_addr,
1321#ifdef CONFIG_NET_POLL_CONTROLLER
1322 .ndo_poll_controller = ibmveth_poll_controller,
1323#endif
1324};
1325
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +00001326static int ibmveth_probe(struct vio_dev *dev, const struct vio_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327{
Santiago Leonb6d35182005-10-26 10:47:01 -06001328 int rc, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 struct net_device *netdev;
Mariusz Kozlowski9dc83af2007-08-06 23:44:03 +02001330 struct ibmveth_adapter *adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 unsigned char *mac_addr_p;
1332 unsigned int *mcastFilterSize_p;
1333
Santiago Leonc43ced12010-09-03 18:29:14 +00001334 dev_dbg(&dev->dev, "entering ibmveth_probe for UA 0x%x\n",
1335 dev->unit_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336
Santiago Leonf148f612010-09-03 18:29:30 +00001337 mac_addr_p = (unsigned char *)vio_get_attribute(dev, VETH_MAC_ADDR,
1338 NULL);
1339 if (!mac_addr_p) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001340 dev_err(&dev->dev, "Can't find VETH_MAC_ADDR attribute\n");
Santiago Leonbe35ae92010-09-03 18:29:36 +00001341 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 }
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001343
Santiago Leonf148f612010-09-03 18:29:30 +00001344 mcastFilterSize_p = (unsigned int *)vio_get_attribute(dev,
Michael Ellerman493a6842007-04-17 13:12:55 +10001345 VETH_MCAST_FILTER_SIZE, NULL);
Santiago Leonf148f612010-09-03 18:29:30 +00001346 if (!mcastFilterSize_p) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001347 dev_err(&dev->dev, "Can't find VETH_MCAST_FILTER_SIZE "
1348 "attribute\n");
Santiago Leonbe35ae92010-09-03 18:29:36 +00001349 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 }
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001351
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 netdev = alloc_etherdev(sizeof(struct ibmveth_adapter));
1353
Santiago Leonf148f612010-09-03 18:29:30 +00001354 if (!netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 return -ENOMEM;
1356
Wang Chen4cf16532008-11-12 23:38:14 -08001357 adapter = netdev_priv(netdev);
Greg Kroah-Hartmanc7ae0112009-05-04 21:33:19 -07001358 dev_set_drvdata(&dev->dev, netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
1360 adapter->vdev = dev;
1361 adapter->netdev = netdev;
Santiago Leonf148f612010-09-03 18:29:30 +00001362 adapter->mcastFilterSize = *mcastFilterSize_p;
Santiago Leon860f2422006-04-25 11:19:59 -05001363 adapter->pool_config = 0;
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001364
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001365 netif_napi_add(netdev, &adapter->napi, ibmveth_poll, 16);
1366
Santiago Leonf148f612010-09-03 18:29:30 +00001367 /*
1368 * Some older boxes running PHYP non-natively have an OF that returns
1369 * a 8-byte local-mac-address field (and the first 2 bytes have to be
1370 * ignored) while newer boxes' OF return a 6-byte field. Note that
1371 * IEEE 1275 specifies that local-mac-address must be a 6-byte field.
1372 * The RPA doc specifies that the first byte must be 10b, so we'll
1373 * just look for it to solve this 8 vs. 6 byte field issue
1374 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 if ((*mac_addr_p & 0x3) != 0x02)
1376 mac_addr_p += 2;
1377
1378 adapter->mac_addr = 0;
1379 memcpy(&adapter->mac_addr, mac_addr_p, 6);
1380
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 netdev->irq = dev->irq;
Alexander Beregalove186d172009-04-15 12:52:39 +00001382 netdev->netdev_ops = &ibmveth_netdev_ops;
1383 netdev->ethtool_ops = &netdev_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 SET_NETDEV_DEV(netdev, &dev->dev);
Michał Mirosławb9367bf2011-04-19 02:14:25 +00001385 netdev->hw_features = NETIF_F_SG | NETIF_F_RXCSUM |
1386 NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM;
1387 netdev->features |= netdev->hw_features;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
Stephen Rothwelld44b5e02009-05-11 21:44:51 +00001389 memcpy(netdev->dev_addr, &adapter->mac_addr, netdev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
Santiago Leonf148f612010-09-03 18:29:30 +00001391 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++) {
Santiago Leon860f2422006-04-25 11:19:59 -05001392 struct kobject *kobj = &adapter->rx_buff_pool[i].kobj;
Greg Kroah-Hartman8dde2a92007-12-17 15:54:39 -04001393 int error;
1394
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001395 ibmveth_init_buffer_pool(&adapter->rx_buff_pool[i], i,
1396 pool_count[i], pool_size[i],
Santiago Leon860f2422006-04-25 11:19:59 -05001397 pool_active[i]);
Greg Kroah-Hartman8dde2a92007-12-17 15:54:39 -04001398 error = kobject_init_and_add(kobj, &ktype_veth_pool,
1399 &dev->dev.kobj, "pool%d", i);
1400 if (!error)
1401 kobject_uevent(kobj, KOBJ_ADD);
Santiago Leon860f2422006-04-25 11:19:59 -05001402 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403
Santiago Leonc43ced12010-09-03 18:29:14 +00001404 netdev_dbg(netdev, "adapter @ 0x%p\n", adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 adapter->buffer_list_dma = DMA_ERROR_CODE;
1407 adapter->filter_list_dma = DMA_ERROR_CODE;
1408 adapter->rx_queue.queue_dma = DMA_ERROR_CODE;
1409
Santiago Leonc43ced12010-09-03 18:29:14 +00001410 netdev_dbg(netdev, "registering netdev...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
Michał Mirosławb801a4e2011-04-28 11:59:15 +10001412 ibmveth_set_features(netdev, netdev->features);
1413
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 rc = register_netdev(netdev);
1415
Santiago Leonf148f612010-09-03 18:29:30 +00001416 if (rc) {
Santiago Leonc43ced12010-09-03 18:29:14 +00001417 netdev_dbg(netdev, "failed to register netdev rc=%d\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 free_netdev(netdev);
1419 return rc;
1420 }
1421
Santiago Leonc43ced12010-09-03 18:29:14 +00001422 netdev_dbg(netdev, "registered\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 return 0;
1425}
1426
Bill Pembertone11787a2012-12-03 09:23:12 -05001427static int ibmveth_remove(struct vio_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428{
Greg Kroah-Hartmanc7ae0112009-05-04 21:33:19 -07001429 struct net_device *netdev = dev_get_drvdata(&dev->dev);
Wang Chen4cf16532008-11-12 23:38:14 -08001430 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Santiago Leon860f2422006-04-25 11:19:59 -05001431 int i;
1432
Santiago Leonf148f612010-09-03 18:29:30 +00001433 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++)
Greg Kroah-Hartmanc10997f2007-12-20 08:13:05 -08001434 kobject_put(&adapter->rx_buff_pool[i].kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435
1436 unregister_netdev(netdev);
1437
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 free_netdev(netdev);
Robert Jennings1096d632008-07-24 04:34:52 +10001439 dev_set_drvdata(&dev->dev, NULL);
1440
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 return 0;
1442}
1443
Santiago Leon860f2422006-04-25 11:19:59 -05001444static struct attribute veth_active_attr;
1445static struct attribute veth_num_attr;
1446static struct attribute veth_size_attr;
1447
Santiago Leonf148f612010-09-03 18:29:30 +00001448static ssize_t veth_pool_show(struct kobject *kobj,
1449 struct attribute *attr, char *buf)
Santiago Leon860f2422006-04-25 11:19:59 -05001450{
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001451 struct ibmveth_buff_pool *pool = container_of(kobj,
Santiago Leon860f2422006-04-25 11:19:59 -05001452 struct ibmveth_buff_pool,
1453 kobj);
1454
1455 if (attr == &veth_active_attr)
1456 return sprintf(buf, "%d\n", pool->active);
1457 else if (attr == &veth_num_attr)
1458 return sprintf(buf, "%d\n", pool->size);
1459 else if (attr == &veth_size_attr)
1460 return sprintf(buf, "%d\n", pool->buff_size);
1461 return 0;
1462}
1463
Santiago Leonf148f612010-09-03 18:29:30 +00001464static ssize_t veth_pool_store(struct kobject *kobj, struct attribute *attr,
1465 const char *buf, size_t count)
Santiago Leon860f2422006-04-25 11:19:59 -05001466{
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001467 struct ibmveth_buff_pool *pool = container_of(kobj,
Santiago Leon860f2422006-04-25 11:19:59 -05001468 struct ibmveth_buff_pool,
1469 kobj);
Greg Kroah-Hartmanc7ae0112009-05-04 21:33:19 -07001470 struct net_device *netdev = dev_get_drvdata(
1471 container_of(kobj->parent, struct device, kobj));
Wang Chen4cf16532008-11-12 23:38:14 -08001472 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Santiago Leon860f2422006-04-25 11:19:59 -05001473 long value = simple_strtol(buf, NULL, 10);
1474 long rc;
1475
1476 if (attr == &veth_active_attr) {
1477 if (value && !pool->active) {
Brian King4aa9c932007-06-08 14:05:16 -05001478 if (netif_running(netdev)) {
Santiago Leonf148f612010-09-03 18:29:30 +00001479 if (ibmveth_alloc_buffer_pool(pool)) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001480 netdev_err(netdev,
1481 "unable to alloc pool\n");
Brian King4aa9c932007-06-08 14:05:16 -05001482 return -ENOMEM;
1483 }
1484 pool->active = 1;
1485 adapter->pool_config = 1;
1486 ibmveth_close(netdev);
1487 adapter->pool_config = 0;
1488 if ((rc = ibmveth_open(netdev)))
1489 return rc;
Santiago Leonf148f612010-09-03 18:29:30 +00001490 } else {
Brian King4aa9c932007-06-08 14:05:16 -05001491 pool->active = 1;
Santiago Leonf148f612010-09-03 18:29:30 +00001492 }
Santiago Leon860f2422006-04-25 11:19:59 -05001493 } else if (!value && pool->active) {
1494 int mtu = netdev->mtu + IBMVETH_BUFF_OH;
1495 int i;
1496 /* Make sure there is a buffer pool with buffers that
1497 can hold a packet of the size of the MTU */
Santiago Leon517e80e2010-09-03 18:29:25 +00001498 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++) {
Santiago Leon860f2422006-04-25 11:19:59 -05001499 if (pool == &adapter->rx_buff_pool[i])
1500 continue;
1501 if (!adapter->rx_buff_pool[i].active)
1502 continue;
Brian King76b9cfc2007-08-03 13:55:19 +10001503 if (mtu <= adapter->rx_buff_pool[i].buff_size)
1504 break;
Santiago Leon860f2422006-04-25 11:19:59 -05001505 }
Brian King76b9cfc2007-08-03 13:55:19 +10001506
Santiago Leon517e80e2010-09-03 18:29:25 +00001507 if (i == IBMVETH_NUM_BUFF_POOLS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001508 netdev_err(netdev, "no active pool >= MTU\n");
Santiago Leon860f2422006-04-25 11:19:59 -05001509 return -EPERM;
1510 }
Brian King76b9cfc2007-08-03 13:55:19 +10001511
Brian King76b9cfc2007-08-03 13:55:19 +10001512 if (netif_running(netdev)) {
1513 adapter->pool_config = 1;
1514 ibmveth_close(netdev);
Santiago Leonea866e62008-07-24 04:34:23 +10001515 pool->active = 0;
Brian King76b9cfc2007-08-03 13:55:19 +10001516 adapter->pool_config = 0;
1517 if ((rc = ibmveth_open(netdev)))
1518 return rc;
1519 }
Santiago Leonea866e62008-07-24 04:34:23 +10001520 pool->active = 0;
Santiago Leon860f2422006-04-25 11:19:59 -05001521 }
1522 } else if (attr == &veth_num_attr) {
Santiago Leonf148f612010-09-03 18:29:30 +00001523 if (value <= 0 || value > IBMVETH_MAX_POOL_COUNT) {
Santiago Leon860f2422006-04-25 11:19:59 -05001524 return -EINVAL;
Santiago Leonf148f612010-09-03 18:29:30 +00001525 } else {
Brian King4aa9c932007-06-08 14:05:16 -05001526 if (netif_running(netdev)) {
1527 adapter->pool_config = 1;
1528 ibmveth_close(netdev);
1529 adapter->pool_config = 0;
1530 pool->size = value;
1531 if ((rc = ibmveth_open(netdev)))
1532 return rc;
Santiago Leonf148f612010-09-03 18:29:30 +00001533 } else {
Brian King4aa9c932007-06-08 14:05:16 -05001534 pool->size = value;
Santiago Leonf148f612010-09-03 18:29:30 +00001535 }
Santiago Leon860f2422006-04-25 11:19:59 -05001536 }
1537 } else if (attr == &veth_size_attr) {
Santiago Leonf148f612010-09-03 18:29:30 +00001538 if (value <= IBMVETH_BUFF_OH || value > IBMVETH_MAX_BUF_SIZE) {
Santiago Leon860f2422006-04-25 11:19:59 -05001539 return -EINVAL;
Santiago Leonf148f612010-09-03 18:29:30 +00001540 } else {
Brian King4aa9c932007-06-08 14:05:16 -05001541 if (netif_running(netdev)) {
1542 adapter->pool_config = 1;
1543 ibmveth_close(netdev);
1544 adapter->pool_config = 0;
1545 pool->buff_size = value;
1546 if ((rc = ibmveth_open(netdev)))
1547 return rc;
Santiago Leonf148f612010-09-03 18:29:30 +00001548 } else {
Brian King4aa9c932007-06-08 14:05:16 -05001549 pool->buff_size = value;
Santiago Leonf148f612010-09-03 18:29:30 +00001550 }
Santiago Leon860f2422006-04-25 11:19:59 -05001551 }
1552 }
1553
1554 /* kick the interrupt handler to allocate/deallocate pools */
David Howells7d12e782006-10-05 14:55:46 +01001555 ibmveth_interrupt(netdev->irq, netdev);
Santiago Leon860f2422006-04-25 11:19:59 -05001556 return count;
1557}
1558
1559
Santiago Leonf148f612010-09-03 18:29:30 +00001560#define ATTR(_name, _mode) \
1561 struct attribute veth_##_name##_attr = { \
1562 .name = __stringify(_name), .mode = _mode, \
1563 };
Santiago Leon860f2422006-04-25 11:19:59 -05001564
1565static ATTR(active, 0644);
1566static ATTR(num, 0644);
1567static ATTR(size, 0644);
1568
Santiago Leonf148f612010-09-03 18:29:30 +00001569static struct attribute *veth_pool_attrs[] = {
Santiago Leon860f2422006-04-25 11:19:59 -05001570 &veth_active_attr,
1571 &veth_num_attr,
1572 &veth_size_attr,
1573 NULL,
1574};
1575
Emese Revfy52cf25d2010-01-19 02:58:23 +01001576static const struct sysfs_ops veth_pool_ops = {
Santiago Leon860f2422006-04-25 11:19:59 -05001577 .show = veth_pool_show,
1578 .store = veth_pool_store,
1579};
1580
1581static struct kobj_type ktype_veth_pool = {
1582 .release = NULL,
1583 .sysfs_ops = &veth_pool_ops,
1584 .default_attrs = veth_pool_attrs,
1585};
1586
Brian Kinge7a3af52010-05-07 08:56:08 +00001587static int ibmveth_resume(struct device *dev)
1588{
1589 struct net_device *netdev = dev_get_drvdata(dev);
1590 ibmveth_interrupt(netdev->irq, netdev);
1591 return 0;
1592}
Santiago Leon860f2422006-04-25 11:19:59 -05001593
Bill Pembertone11787a2012-12-03 09:23:12 -05001594static struct vio_device_id ibmveth_device_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 { "network", "IBM,l-lan"},
Stephen Rothwellfb120da2005-08-17 16:42:59 +10001596 { "", "" }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598MODULE_DEVICE_TABLE(vio, ibmveth_device_table);
1599
Brian Kinge7a3af52010-05-07 08:56:08 +00001600static struct dev_pm_ops ibmveth_pm_ops = {
1601 .resume = ibmveth_resume
1602};
1603
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604static struct vio_driver ibmveth_driver = {
Stephen Rothwell6fdf5392005-10-24 14:53:21 +10001605 .id_table = ibmveth_device_table,
1606 .probe = ibmveth_probe,
1607 .remove = ibmveth_remove,
Robert Jennings1096d632008-07-24 04:34:52 +10001608 .get_desired_dma = ibmveth_get_desired_dma,
Benjamin Herrenschmidtcb52d892012-03-26 19:06:30 +00001609 .name = ibmveth_driver_name,
1610 .pm = &ibmveth_pm_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611};
1612
1613static int __init ibmveth_module_init(void)
1614{
Santiago Leon21c2dec2010-09-03 18:29:19 +00001615 printk(KERN_DEBUG "%s: %s %s\n", ibmveth_driver_name,
1616 ibmveth_driver_string, ibmveth_driver_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 return vio_register_driver(&ibmveth_driver);
1619}
1620
1621static void __exit ibmveth_module_exit(void)
1622{
1623 vio_unregister_driver(&ibmveth_driver);
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001624}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
1626module_init(ibmveth_module_init);
1627module_exit(ibmveth_module_exit);