blob: 82cbf507f73ed4ed9c194e791a8234fee9bfeef9 [file] [log] [blame]
Santiago Leonf148f612010-09-03 18:29:30 +00001/*
2 * IBM eServer i/pSeries Virtual Ethernet Device Driver
3 * Copyright (C) 2003 IBM Corp.
4 * Originally written by Dave Larson (larson1@us.ibm.com)
5 * Maintained by Santiago Leon (santil@us.ibm.com)
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
20 * USA
21 *
22 * This module contains the implementation of a virtual ethernet device
23 * for use with IBM i/pSeries LPAR Linux. It utilizes the logical LAN
24 * option of the RS/6000 Platform Architechture to interface with virtual
25 * ethernet NICs that are presented to the partition by the hypervisor.
26 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/module.h>
Robert Jennings1096d632008-07-24 04:34:52 +100029#include <linux/moduleparam.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/types.h>
31#include <linux/errno.h>
32#include <linux/ioport.h>
33#include <linux/dma-mapping.h>
34#include <linux/kernel.h>
35#include <linux/netdevice.h>
36#include <linux/etherdevice.h>
37#include <linux/skbuff.h>
38#include <linux/init.h>
39#include <linux/delay.h>
40#include <linux/mm.h>
Brian Kinge7a3af52010-05-07 08:56:08 +000041#include <linux/pm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/ethtool.h>
Brian Kingf4ff2872007-09-15 13:36:07 -070043#include <linux/in.h>
44#include <linux/ip.h>
Santiago Leonab78df72010-09-03 18:28:52 +000045#include <linux/ipv6.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090046#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <asm/hvcall.h>
48#include <asm/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <asm/vio.h>
Robert Jennings1096d632008-07-24 04:34:52 +100050#include <asm/iommu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <asm/uaccess.h>
Robert Jennings1096d632008-07-24 04:34:52 +100052#include <asm/firmware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54#include "ibmveth.h"
55
David Howells7d12e782006-10-05 14:55:46 +010056static irqreturn_t ibmveth_interrupt(int irq, void *dev_instance);
Michael Ellerman493a6842007-04-17 13:12:55 +100057static void ibmveth_rxq_harvest_buffer(struct ibmveth_adapter *adapter);
Robert Jennings1096d632008-07-24 04:34:52 +100058static unsigned long ibmveth_get_desired_dma(struct vio_dev *vdev);
Santiago Leone295fe82010-09-03 18:29:08 +000059
Santiago Leon860f2422006-04-25 11:19:59 -050060static struct kobj_type ktype_veth_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Robert Jennings1096d632008-07-24 04:34:52 +100062
Linus Torvalds1da177e2005-04-16 15:20:36 -070063static const char ibmveth_driver_name[] = "ibmveth";
Santiago Leonf148f612010-09-03 18:29:30 +000064static const char ibmveth_driver_string[] = "IBM i/pSeries Virtual Ethernet "
65 "Driver";
Linus Torvalds1da177e2005-04-16 15:20:36 -070066#define ibmveth_driver_version "1.03"
67
68MODULE_AUTHOR("Santiago Leon <santil@us.ibm.com>");
69MODULE_DESCRIPTION("IBM i/pSeries Virtual Ethernet Driver");
70MODULE_LICENSE("GPL");
71MODULE_VERSION(ibmveth_driver_version);
72
Santiago Leonc08cc3c2010-09-03 18:28:20 +000073static unsigned int tx_copybreak __read_mostly = 128;
74module_param(tx_copybreak, uint, 0644);
75MODULE_PARM_DESC(tx_copybreak,
76 "Maximum size of packet that is copied to a new buffer on transmit");
77
Santiago Leon8d86c612010-09-03 18:28:25 +000078static unsigned int rx_copybreak __read_mostly = 128;
79module_param(rx_copybreak, uint, 0644);
80MODULE_PARM_DESC(rx_copybreak,
81 "Maximum size of packet that is copied to a new buffer on receive");
82
Santiago Leon0c26b672010-09-03 18:28:41 +000083static unsigned int rx_flush __read_mostly = 0;
84module_param(rx_flush, uint, 0644);
85MODULE_PARM_DESC(rx_flush, "Flush receive buffers before use");
86
Brian Kingddbb4de2007-08-17 09:16:43 -050087struct ibmveth_stat {
88 char name[ETH_GSTRING_LEN];
89 int offset;
90};
91
92#define IBMVETH_STAT_OFF(stat) offsetof(struct ibmveth_adapter, stat)
93#define IBMVETH_GET_STAT(a, off) *((u64 *)(((unsigned long)(a)) + off))
94
95struct ibmveth_stat ibmveth_stats[] = {
96 { "replenish_task_cycles", IBMVETH_STAT_OFF(replenish_task_cycles) },
97 { "replenish_no_mem", IBMVETH_STAT_OFF(replenish_no_mem) },
Santiago Leonf148f612010-09-03 18:29:30 +000098 { "replenish_add_buff_failure",
99 IBMVETH_STAT_OFF(replenish_add_buff_failure) },
100 { "replenish_add_buff_success",
101 IBMVETH_STAT_OFF(replenish_add_buff_success) },
Brian Kingddbb4de2007-08-17 09:16:43 -0500102 { "rx_invalid_buffer", IBMVETH_STAT_OFF(rx_invalid_buffer) },
103 { "rx_no_buffer", IBMVETH_STAT_OFF(rx_no_buffer) },
Brian Kingddbb4de2007-08-17 09:16:43 -0500104 { "tx_map_failed", IBMVETH_STAT_OFF(tx_map_failed) },
105 { "tx_send_failed", IBMVETH_STAT_OFF(tx_send_failed) },
Santiago Leonab78df72010-09-03 18:28:52 +0000106 { "fw_enabled_ipv4_csum", IBMVETH_STAT_OFF(fw_ipv4_csum_support) },
107 { "fw_enabled_ipv6_csum", IBMVETH_STAT_OFF(fw_ipv6_csum_support) },
Brian Kingddbb4de2007-08-17 09:16:43 -0500108};
109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110/* simple methods of getting data from the current rxq entry */
Brian King79ef4a42007-08-17 09:16:56 -0500111static inline u32 ibmveth_rxq_flags(struct ibmveth_adapter *adapter)
112{
113 return adapter->rx_queue.queue_addr[adapter->rx_queue.index].flags_off;
114}
115
116static inline int ibmveth_rxq_toggle(struct ibmveth_adapter *adapter)
117{
Santiago Leonf148f612010-09-03 18:29:30 +0000118 return (ibmveth_rxq_flags(adapter) & IBMVETH_RXQ_TOGGLE) >>
119 IBMVETH_RXQ_TOGGLE_SHIFT;
Brian King79ef4a42007-08-17 09:16:56 -0500120}
121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122static inline int ibmveth_rxq_pending_buffer(struct ibmveth_adapter *adapter)
123{
Santiago Leonf148f612010-09-03 18:29:30 +0000124 return ibmveth_rxq_toggle(adapter) == adapter->rx_queue.toggle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125}
126
127static inline int ibmveth_rxq_buffer_valid(struct ibmveth_adapter *adapter)
128{
Santiago Leonf148f612010-09-03 18:29:30 +0000129 return ibmveth_rxq_flags(adapter) & IBMVETH_RXQ_VALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130}
131
132static inline int ibmveth_rxq_frame_offset(struct ibmveth_adapter *adapter)
133{
Santiago Leonf148f612010-09-03 18:29:30 +0000134 return ibmveth_rxq_flags(adapter) & IBMVETH_RXQ_OFF_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135}
136
137static inline int ibmveth_rxq_frame_length(struct ibmveth_adapter *adapter)
138{
Santiago Leonf148f612010-09-03 18:29:30 +0000139 return adapter->rx_queue.queue_addr[adapter->rx_queue.index].length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140}
141
Brian Kingf4ff2872007-09-15 13:36:07 -0700142static inline int ibmveth_rxq_csum_good(struct ibmveth_adapter *adapter)
143{
Santiago Leonf148f612010-09-03 18:29:30 +0000144 return ibmveth_rxq_flags(adapter) & IBMVETH_RXQ_CSUM_GOOD;
Brian Kingf4ff2872007-09-15 13:36:07 -0700145}
146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147/* setup the initial settings for a buffer pool */
Santiago Leonf148f612010-09-03 18:29:30 +0000148static void ibmveth_init_buffer_pool(struct ibmveth_buff_pool *pool,
149 u32 pool_index, u32 pool_size,
150 u32 buff_size, u32 pool_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
152 pool->size = pool_size;
153 pool->index = pool_index;
154 pool->buff_size = buff_size;
Santiago Leonc033a6d2010-09-03 18:28:09 +0000155 pool->threshold = pool_size * 7 / 8;
Santiago Leon860f2422006-04-25 11:19:59 -0500156 pool->active = pool_active;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
158
159/* allocate and setup an buffer pool - called during open */
160static int ibmveth_alloc_buffer_pool(struct ibmveth_buff_pool *pool)
161{
162 int i;
163
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400164 pool->free_map = kmalloc(sizeof(u16) * pool->size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Santiago Leonf148f612010-09-03 18:29:30 +0000166 if (!pool->free_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400169 pool->dma_addr = kmalloc(sizeof(dma_addr_t) * pool->size, GFP_KERNEL);
Santiago Leonf148f612010-09-03 18:29:30 +0000170 if (!pool->dma_addr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 kfree(pool->free_map);
172 pool->free_map = NULL;
173 return -1;
174 }
175
Julia Lawalla05abcb2010-05-13 10:06:01 +0000176 pool->skbuff = kcalloc(pool->size, sizeof(void *), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Santiago Leonf148f612010-09-03 18:29:30 +0000178 if (!pool->skbuff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 kfree(pool->dma_addr);
180 pool->dma_addr = NULL;
181
182 kfree(pool->free_map);
183 pool->free_map = NULL;
184 return -1;
185 }
186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 memset(pool->dma_addr, 0, sizeof(dma_addr_t) * pool->size);
188
Santiago Leonf148f612010-09-03 18:29:30 +0000189 for (i = 0; i < pool->size; ++i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 pool->free_map[i] = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
192 atomic_set(&pool->available, 0);
193 pool->producer_index = 0;
194 pool->consumer_index = 0;
195
196 return 0;
197}
198
Santiago Leon0c26b672010-09-03 18:28:41 +0000199static inline void ibmveth_flush_buffer(void *addr, unsigned long length)
200{
201 unsigned long offset;
202
203 for (offset = 0; offset < length; offset += SMP_CACHE_BYTES)
204 asm("dcbfl %0,%1" :: "b" (addr), "r" (offset));
205}
206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207/* replenish the buffers for a pool. note that we don't need to
208 * skb_reserve these since they are used for incoming...
209 */
Santiago Leonf148f612010-09-03 18:29:30 +0000210static void ibmveth_replenish_buffer_pool(struct ibmveth_adapter *adapter,
211 struct ibmveth_buff_pool *pool)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212{
213 u32 i;
214 u32 count = pool->size - atomic_read(&pool->available);
215 u32 buffers_added = 0;
Robert Jennings1096d632008-07-24 04:34:52 +1000216 struct sk_buff *skb;
217 unsigned int free_index, index;
218 u64 correlator;
219 unsigned long lpar_rc;
220 dma_addr_t dma_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222 mb();
223
Santiago Leonf148f612010-09-03 18:29:30 +0000224 for (i = 0; i < count; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 union ibmveth_buf_desc desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Santiago Leon003212c2010-09-03 18:29:03 +0000227 skb = netdev_alloc_skb(adapter->netdev, pool->buff_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Santiago Leonf148f612010-09-03 18:29:30 +0000229 if (!skb) {
Santiago Leonc43ced12010-09-03 18:29:14 +0000230 netdev_dbg(adapter->netdev,
231 "replenish: unable to allocate skb\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 adapter->replenish_no_mem++;
233 break;
234 }
235
David Gibson047a66d2006-10-21 10:24:13 -0700236 free_index = pool->consumer_index;
Santiago Leona613f582010-09-03 18:28:04 +0000237 pool->consumer_index++;
238 if (pool->consumer_index >= pool->size)
239 pool->consumer_index = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 index = pool->free_map[free_index];
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400241
Santiago Leon64859112010-09-03 18:29:41 +0000242 BUG_ON(index == IBM_VETH_INVALID_MAP);
243 BUG_ON(pool->skbuff[index] != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
245 dma_addr = dma_map_single(&adapter->vdev->dev, skb->data,
246 pool->buff_size, DMA_FROM_DEVICE);
247
Stephen Rothwellc713e7c2008-07-28 02:14:24 +1000248 if (dma_mapping_error(&adapter->vdev->dev, dma_addr))
Robert Jennings1096d632008-07-24 04:34:52 +1000249 goto failure;
250
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 pool->free_map[free_index] = IBM_VETH_INVALID_MAP;
252 pool->dma_addr[index] = dma_addr;
253 pool->skbuff[index] = skb;
254
255 correlator = ((u64)pool->index << 32) | index;
Santiago Leonf148f612010-09-03 18:29:30 +0000256 *(u64 *)skb->data = correlator;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Brian King79ef4a42007-08-17 09:16:56 -0500258 desc.fields.flags_len = IBMVETH_BUF_VALID | pool->buff_size;
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400259 desc.fields.address = dma_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Santiago Leon0c26b672010-09-03 18:28:41 +0000261 if (rx_flush) {
262 unsigned int len = min(pool->buff_size,
263 adapter->netdev->mtu +
264 IBMVETH_BUFF_OH);
265 ibmveth_flush_buffer(skb->data, len);
266 }
Santiago Leonf148f612010-09-03 18:29:30 +0000267 lpar_rc = h_add_logical_lan_buffer(adapter->vdev->unit_address,
268 desc.desc);
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400269
Santiago Leonf148f612010-09-03 18:29:30 +0000270 if (lpar_rc != H_SUCCESS) {
Robert Jennings1096d632008-07-24 04:34:52 +1000271 goto failure;
Santiago Leonf148f612010-09-03 18:29:30 +0000272 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 buffers_added++;
274 adapter->replenish_add_buff_success++;
275 }
276 }
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 mb();
279 atomic_add(buffers_added, &(pool->available));
Robert Jennings1096d632008-07-24 04:34:52 +1000280 return;
281
282failure:
283 pool->free_map[free_index] = index;
284 pool->skbuff[index] = NULL;
285 if (pool->consumer_index == 0)
286 pool->consumer_index = pool->size - 1;
287 else
288 pool->consumer_index--;
Stephen Rothwellc713e7c2008-07-28 02:14:24 +1000289 if (!dma_mapping_error(&adapter->vdev->dev, dma_addr))
Robert Jennings1096d632008-07-24 04:34:52 +1000290 dma_unmap_single(&adapter->vdev->dev,
291 pool->dma_addr[index], pool->buff_size,
292 DMA_FROM_DEVICE);
293 dev_kfree_skb_any(skb);
294 adapter->replenish_add_buff_failure++;
295
296 mb();
297 atomic_add(buffers_added, &(pool->available));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298}
299
Santiago Leone2adbcb2005-10-26 10:47:08 -0600300/* replenish routine */
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400301static void ibmveth_replenish_task(struct ibmveth_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302{
Santiago Leonb6d35182005-10-26 10:47:01 -0600303 int i;
304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 adapter->replenish_task_cycles++;
306
Santiago Leon517e80e2010-09-03 18:29:25 +0000307 for (i = (IBMVETH_NUM_BUFF_POOLS - 1); i >= 0; i--) {
Santiago Leonc033a6d2010-09-03 18:28:09 +0000308 struct ibmveth_buff_pool *pool = &adapter->rx_buff_pool[i];
309
310 if (pool->active &&
311 (atomic_read(&pool->available) < pool->threshold))
312 ibmveth_replenish_buffer_pool(adapter, pool);
313 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Santiago Leonf148f612010-09-03 18:29:30 +0000315 adapter->rx_no_buffer = *(u64 *)(((char*)adapter->buffer_list_addr) +
316 4096 - 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317}
318
319/* empty and free ana buffer pool - also used to do cleanup in error paths */
Santiago Leonf148f612010-09-03 18:29:30 +0000320static void ibmveth_free_buffer_pool(struct ibmveth_adapter *adapter,
321 struct ibmveth_buff_pool *pool)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
323 int i;
324
Jesper Juhlb4558ea2005-10-28 16:53:13 -0400325 kfree(pool->free_map);
326 pool->free_map = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Santiago Leonf148f612010-09-03 18:29:30 +0000328 if (pool->skbuff && pool->dma_addr) {
329 for (i = 0; i < pool->size; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 struct sk_buff *skb = pool->skbuff[i];
Santiago Leonf148f612010-09-03 18:29:30 +0000331 if (skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 dma_unmap_single(&adapter->vdev->dev,
333 pool->dma_addr[i],
334 pool->buff_size,
335 DMA_FROM_DEVICE);
336 dev_kfree_skb_any(skb);
337 pool->skbuff[i] = NULL;
338 }
339 }
340 }
341
Santiago Leonf148f612010-09-03 18:29:30 +0000342 if (pool->dma_addr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 kfree(pool->dma_addr);
344 pool->dma_addr = NULL;
345 }
346
Santiago Leonf148f612010-09-03 18:29:30 +0000347 if (pool->skbuff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 kfree(pool->skbuff);
349 pool->skbuff = NULL;
350 }
351}
352
353/* remove a buffer from a pool */
Santiago Leonf148f612010-09-03 18:29:30 +0000354static void ibmveth_remove_buffer_from_pool(struct ibmveth_adapter *adapter,
355 u64 correlator)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
357 unsigned int pool = correlator >> 32;
358 unsigned int index = correlator & 0xffffffffUL;
359 unsigned int free_index;
360 struct sk_buff *skb;
361
Santiago Leon64859112010-09-03 18:29:41 +0000362 BUG_ON(pool >= IBMVETH_NUM_BUFF_POOLS);
363 BUG_ON(index >= adapter->rx_buff_pool[pool].size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365 skb = adapter->rx_buff_pool[pool].skbuff[index];
366
Santiago Leon64859112010-09-03 18:29:41 +0000367 BUG_ON(skb == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
369 adapter->rx_buff_pool[pool].skbuff[index] = NULL;
370
371 dma_unmap_single(&adapter->vdev->dev,
372 adapter->rx_buff_pool[pool].dma_addr[index],
373 adapter->rx_buff_pool[pool].buff_size,
374 DMA_FROM_DEVICE);
375
David Gibson047a66d2006-10-21 10:24:13 -0700376 free_index = adapter->rx_buff_pool[pool].producer_index;
Santiago Leona613f582010-09-03 18:28:04 +0000377 adapter->rx_buff_pool[pool].producer_index++;
378 if (adapter->rx_buff_pool[pool].producer_index >=
379 adapter->rx_buff_pool[pool].size)
380 adapter->rx_buff_pool[pool].producer_index = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 adapter->rx_buff_pool[pool].free_map[free_index] = index;
382
383 mb();
384
385 atomic_dec(&(adapter->rx_buff_pool[pool].available));
386}
387
388/* get the current buffer on the rx queue */
389static inline struct sk_buff *ibmveth_rxq_get_buffer(struct ibmveth_adapter *adapter)
390{
391 u64 correlator = adapter->rx_queue.queue_addr[adapter->rx_queue.index].correlator;
392 unsigned int pool = correlator >> 32;
393 unsigned int index = correlator & 0xffffffffUL;
394
Santiago Leon64859112010-09-03 18:29:41 +0000395 BUG_ON(pool >= IBMVETH_NUM_BUFF_POOLS);
396 BUG_ON(index >= adapter->rx_buff_pool[pool].size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
398 return adapter->rx_buff_pool[pool].skbuff[index];
399}
400
401/* recycle the current buffer on the rx queue */
402static void ibmveth_rxq_recycle_buffer(struct ibmveth_adapter *adapter)
403{
404 u32 q_index = adapter->rx_queue.index;
405 u64 correlator = adapter->rx_queue.queue_addr[q_index].correlator;
406 unsigned int pool = correlator >> 32;
407 unsigned int index = correlator & 0xffffffffUL;
408 union ibmveth_buf_desc desc;
409 unsigned long lpar_rc;
410
Santiago Leon64859112010-09-03 18:29:41 +0000411 BUG_ON(pool >= IBMVETH_NUM_BUFF_POOLS);
412 BUG_ON(index >= adapter->rx_buff_pool[pool].size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Santiago Leonf148f612010-09-03 18:29:30 +0000414 if (!adapter->rx_buff_pool[pool].active) {
Santiago Leonb6d35182005-10-26 10:47:01 -0600415 ibmveth_rxq_harvest_buffer(adapter);
416 ibmveth_free_buffer_pool(adapter, &adapter->rx_buff_pool[pool]);
417 return;
418 }
419
Brian King79ef4a42007-08-17 09:16:56 -0500420 desc.fields.flags_len = IBMVETH_BUF_VALID |
421 adapter->rx_buff_pool[pool].buff_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 desc.fields.address = adapter->rx_buff_pool[pool].dma_addr[index];
423
424 lpar_rc = h_add_logical_lan_buffer(adapter->vdev->unit_address, desc.desc);
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400425
Santiago Leonf148f612010-09-03 18:29:30 +0000426 if (lpar_rc != H_SUCCESS) {
Santiago Leonc43ced12010-09-03 18:29:14 +0000427 netdev_dbg(adapter->netdev, "h_add_logical_lan_buffer failed "
428 "during recycle rc=%ld", lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 ibmveth_remove_buffer_from_pool(adapter, adapter->rx_queue.queue_addr[adapter->rx_queue.index].correlator);
430 }
431
Santiago Leonf148f612010-09-03 18:29:30 +0000432 if (++adapter->rx_queue.index == adapter->rx_queue.num_slots) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 adapter->rx_queue.index = 0;
434 adapter->rx_queue.toggle = !adapter->rx_queue.toggle;
435 }
436}
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) {
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700474 if (!dma_mapping_error(dev, adapter->rx_queue.queue_dma)) {
475 dma_unmap_single(dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 adapter->rx_queue.queue_dma,
477 adapter->rx_queue.queue_len,
478 DMA_BIDIRECTIONAL);
479 adapter->rx_queue.queue_dma = DMA_ERROR_CODE;
480 }
481 kfree(adapter->rx_queue.queue_addr);
482 adapter->rx_queue.queue_addr = NULL;
483 }
484
Santiago Leonf148f612010-09-03 18:29:30 +0000485 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++)
Santiago Leon860f2422006-04-25 11:19:59 -0500486 if (adapter->rx_buff_pool[i].active)
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400487 ibmveth_free_buffer_pool(adapter,
Santiago Leon860f2422006-04-25 11:19:59 -0500488 &adapter->rx_buff_pool[i]);
Robert Jennings1096d632008-07-24 04:34:52 +1000489
490 if (adapter->bounce_buffer != NULL) {
Stephen Rothwellc713e7c2008-07-28 02:14:24 +1000491 if (!dma_mapping_error(dev, adapter->bounce_buffer_dma)) {
Robert Jennings1096d632008-07-24 04:34:52 +1000492 dma_unmap_single(&adapter->vdev->dev,
493 adapter->bounce_buffer_dma,
494 adapter->netdev->mtu + IBMVETH_BUFF_OH,
495 DMA_BIDIRECTIONAL);
496 adapter->bounce_buffer_dma = DMA_ERROR_CODE;
497 }
498 kfree(adapter->bounce_buffer);
499 adapter->bounce_buffer = NULL;
500 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501}
502
Michael Ellermanbbedefc2006-10-03 12:24:23 -0500503static int ibmveth_register_logical_lan(struct ibmveth_adapter *adapter,
504 union ibmveth_buf_desc rxq_desc, u64 mac_address)
505{
506 int rc, try_again = 1;
507
Santiago Leonf148f612010-09-03 18:29:30 +0000508 /*
509 * After a kexec the adapter will still be open, so our attempt to
510 * open it will fail. So if we get a failure we free the adapter and
511 * try again, but only once.
512 */
Michael Ellermanbbedefc2006-10-03 12:24:23 -0500513retry:
514 rc = h_register_logical_lan(adapter->vdev->unit_address,
515 adapter->buffer_list_dma, rxq_desc.desc,
516 adapter->filter_list_dma, mac_address);
517
518 if (rc != H_SUCCESS && try_again) {
519 do {
520 rc = h_free_logical_lan(adapter->vdev->unit_address);
521 } while (H_IS_LONG_BUSY(rc) || (rc == H_BUSY));
522
523 try_again = 0;
524 goto retry;
525 }
526
527 return rc;
528}
529
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530static int ibmveth_open(struct net_device *netdev)
531{
Wang Chen4cf16532008-11-12 23:38:14 -0800532 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 u64 mac_address = 0;
Santiago Leonb6d35182005-10-26 10:47:01 -0600534 int rxq_entries = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 unsigned long lpar_rc;
536 int rc;
537 union ibmveth_buf_desc rxq_desc;
Santiago Leonb6d35182005-10-26 10:47:01 -0600538 int i;
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700539 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Santiago Leonc43ced12010-09-03 18:29:14 +0000541 netdev_dbg(netdev, "open starting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700543 napi_enable(&adapter->napi);
544
Santiago Leon517e80e2010-09-03 18:29:25 +0000545 for(i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++)
Santiago Leonb6d35182005-10-26 10:47:01 -0600546 rxq_entries += adapter->rx_buff_pool[i].size;
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 adapter->buffer_list_addr = (void*) get_zeroed_page(GFP_KERNEL);
549 adapter->filter_list_addr = (void*) get_zeroed_page(GFP_KERNEL);
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400550
Santiago Leonf148f612010-09-03 18:29:30 +0000551 if (!adapter->buffer_list_addr || !adapter->filter_list_addr) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000552 netdev_err(netdev, "unable to allocate filter or buffer list "
553 "pages\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 ibmveth_cleanup(adapter);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700555 napi_disable(&adapter->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 return -ENOMEM;
557 }
558
Santiago Leonf148f612010-09-03 18:29:30 +0000559 adapter->rx_queue.queue_len = sizeof(struct ibmveth_rx_q_entry) *
560 rxq_entries;
561 adapter->rx_queue.queue_addr = kmalloc(adapter->rx_queue.queue_len,
562 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Santiago Leonf148f612010-09-03 18:29:30 +0000564 if (!adapter->rx_queue.queue_addr) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000565 netdev_err(netdev, "unable to allocate rx queue pages\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 ibmveth_cleanup(adapter);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700567 napi_disable(&adapter->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 return -ENOMEM;
569 }
570
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700571 dev = &adapter->vdev->dev;
572
573 adapter->buffer_list_dma = dma_map_single(dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 adapter->buffer_list_addr, 4096, DMA_BIDIRECTIONAL);
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700575 adapter->filter_list_dma = dma_map_single(dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 adapter->filter_list_addr, 4096, DMA_BIDIRECTIONAL);
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700577 adapter->rx_queue.queue_dma = dma_map_single(dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 adapter->rx_queue.queue_addr,
579 adapter->rx_queue.queue_len, DMA_BIDIRECTIONAL);
580
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700581 if ((dma_mapping_error(dev, adapter->buffer_list_dma)) ||
582 (dma_mapping_error(dev, adapter->filter_list_dma)) ||
583 (dma_mapping_error(dev, adapter->rx_queue.queue_dma))) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000584 netdev_err(netdev, "unable to map filter or buffer list "
585 "pages\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 ibmveth_cleanup(adapter);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700587 napi_disable(&adapter->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 return -ENOMEM;
589 }
590
591 adapter->rx_queue.index = 0;
592 adapter->rx_queue.num_slots = rxq_entries;
593 adapter->rx_queue.toggle = 1;
594
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 memcpy(&mac_address, netdev->dev_addr, netdev->addr_len);
596 mac_address = mac_address >> 16;
597
Santiago Leonf148f612010-09-03 18:29:30 +0000598 rxq_desc.fields.flags_len = IBMVETH_BUF_VALID |
599 adapter->rx_queue.queue_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 rxq_desc.fields.address = adapter->rx_queue.queue_dma;
601
Santiago Leonc43ced12010-09-03 18:29:14 +0000602 netdev_dbg(netdev, "buffer list @ 0x%p\n", adapter->buffer_list_addr);
603 netdev_dbg(netdev, "filter list @ 0x%p\n", adapter->filter_list_addr);
604 netdev_dbg(netdev, "receive q @ 0x%p\n", adapter->rx_queue.queue_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
Santiago Leon4347ef12006-10-03 12:24:34 -0500606 h_vio_signal(adapter->vdev->unit_address, VIO_IRQ_DISABLE);
607
Michael Ellermanbbedefc2006-10-03 12:24:23 -0500608 lpar_rc = ibmveth_register_logical_lan(adapter, rxq_desc, mac_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Santiago Leonf148f612010-09-03 18:29:30 +0000610 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000611 netdev_err(netdev, "h_register_logical_lan failed with %ld\n",
612 lpar_rc);
613 netdev_err(netdev, "buffer TCE:0x%llx filter TCE:0x%llx rxq "
614 "desc:0x%llx MAC:0x%llx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 adapter->buffer_list_dma,
616 adapter->filter_list_dma,
617 rxq_desc.desc,
618 mac_address);
619 ibmveth_cleanup(adapter);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700620 napi_disable(&adapter->napi);
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400621 return -ENONET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 }
623
Santiago Leonf148f612010-09-03 18:29:30 +0000624 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++) {
625 if (!adapter->rx_buff_pool[i].active)
Santiago Leon860f2422006-04-25 11:19:59 -0500626 continue;
627 if (ibmveth_alloc_buffer_pool(&adapter->rx_buff_pool[i])) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000628 netdev_err(netdev, "unable to alloc pool\n");
Santiago Leon860f2422006-04-25 11:19:59 -0500629 adapter->rx_buff_pool[i].active = 0;
630 ibmveth_cleanup(adapter);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700631 napi_disable(&adapter->napi);
Santiago Leon860f2422006-04-25 11:19:59 -0500632 return -ENOMEM ;
633 }
634 }
635
Santiago Leonc43ced12010-09-03 18:29:14 +0000636 netdev_dbg(netdev, "registering irq 0x%x\n", netdev->irq);
Santiago Leonf148f612010-09-03 18:29:30 +0000637 rc = request_irq(netdev->irq, ibmveth_interrupt, 0, netdev->name,
638 netdev);
639 if (rc != 0) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000640 netdev_err(netdev, "unable to request irq 0x%x, rc %d\n",
641 netdev->irq, rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 do {
643 rc = h_free_logical_lan(adapter->vdev->unit_address);
Segher Boessenkool706c8c92006-03-30 14:49:40 +0200644 } while (H_IS_LONG_BUSY(rc) || (rc == H_BUSY));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
646 ibmveth_cleanup(adapter);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700647 napi_disable(&adapter->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 return rc;
649 }
650
Robert Jennings1096d632008-07-24 04:34:52 +1000651 adapter->bounce_buffer =
652 kmalloc(netdev->mtu + IBMVETH_BUFF_OH, GFP_KERNEL);
653 if (!adapter->bounce_buffer) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000654 netdev_err(netdev, "unable to allocate bounce buffer\n");
Robert Jennings1096d632008-07-24 04:34:52 +1000655 ibmveth_cleanup(adapter);
656 napi_disable(&adapter->napi);
657 return -ENOMEM;
658 }
659 adapter->bounce_buffer_dma =
660 dma_map_single(&adapter->vdev->dev, adapter->bounce_buffer,
661 netdev->mtu + IBMVETH_BUFF_OH, DMA_BIDIRECTIONAL);
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700662 if (dma_mapping_error(dev, adapter->bounce_buffer_dma)) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000663 netdev_err(netdev, "unable to map bounce buffer\n");
Robert Jennings1096d632008-07-24 04:34:52 +1000664 ibmveth_cleanup(adapter);
665 napi_disable(&adapter->napi);
666 return -ENOMEM;
667 }
668
Santiago Leonc43ced12010-09-03 18:29:14 +0000669 netdev_dbg(netdev, "initial replenish cycle\n");
David Howells7d12e782006-10-05 14:55:46 +0100670 ibmveth_interrupt(netdev->irq, netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
Santiago Leone2adbcb2005-10-26 10:47:08 -0600672 netif_start_queue(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Santiago Leonc43ced12010-09-03 18:29:14 +0000674 netdev_dbg(netdev, "open complete\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
676 return 0;
677}
678
679static int ibmveth_close(struct net_device *netdev)
680{
Wang Chen4cf16532008-11-12 23:38:14 -0800681 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 long lpar_rc;
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400683
Santiago Leonc43ced12010-09-03 18:29:14 +0000684 netdev_dbg(netdev, "close starting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700686 napi_disable(&adapter->napi);
687
Santiago Leon860f2422006-04-25 11:19:59 -0500688 if (!adapter->pool_config)
689 netif_stop_queue(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
Robert Jenningsee2e6112010-07-16 04:57:25 +0000691 h_vio_signal(adapter->vdev->unit_address, VIO_IRQ_DISABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 do {
694 lpar_rc = h_free_logical_lan(adapter->vdev->unit_address);
Segher Boessenkool706c8c92006-03-30 14:49:40 +0200695 } while (H_IS_LONG_BUSY(lpar_rc) || (lpar_rc == H_BUSY));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Santiago Leonf148f612010-09-03 18:29:30 +0000697 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000698 netdev_err(netdev, "h_free_logical_lan failed with %lx, "
699 "continuing with close\n", lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 }
701
Robert Jenningsee2e6112010-07-16 04:57:25 +0000702 free_irq(netdev->irq, netdev);
703
Santiago Leonf148f612010-09-03 18:29:30 +0000704 adapter->rx_no_buffer = *(u64 *)(((char *)adapter->buffer_list_addr) +
705 4096 - 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
707 ibmveth_cleanup(adapter);
708
Santiago Leonc43ced12010-09-03 18:29:14 +0000709 netdev_dbg(netdev, "close complete\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
711 return 0;
712}
713
Santiago Leonf148f612010-09-03 18:29:30 +0000714static int netdev_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
715{
716 cmd->supported = (SUPPORTED_1000baseT_Full | SUPPORTED_Autoneg |
717 SUPPORTED_FIBRE);
718 cmd->advertising = (ADVERTISED_1000baseT_Full | ADVERTISED_Autoneg |
719 ADVERTISED_FIBRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 cmd->speed = SPEED_1000;
721 cmd->duplex = DUPLEX_FULL;
722 cmd->port = PORT_FIBRE;
723 cmd->phy_address = 0;
724 cmd->transceiver = XCVR_INTERNAL;
725 cmd->autoneg = AUTONEG_ENABLE;
726 cmd->maxtxpkt = 0;
727 cmd->maxrxpkt = 1;
728 return 0;
729}
730
Santiago Leonf148f612010-09-03 18:29:30 +0000731static void netdev_get_drvinfo(struct net_device *dev,
732 struct ethtool_drvinfo *info)
733{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 strncpy(info->driver, ibmveth_driver_name, sizeof(info->driver) - 1);
Santiago Leonf148f612010-09-03 18:29:30 +0000735 strncpy(info->version, ibmveth_driver_version,
736 sizeof(info->version) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737}
738
Santiago Leonf148f612010-09-03 18:29:30 +0000739static u32 netdev_get_link(struct net_device *dev)
740{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 return 1;
742}
743
Brian King5fc7e012007-08-17 09:16:31 -0500744static void ibmveth_set_rx_csum_flags(struct net_device *dev, u32 data)
745{
Wang Chen4cf16532008-11-12 23:38:14 -0800746 struct ibmveth_adapter *adapter = netdev_priv(dev);
Brian King5fc7e012007-08-17 09:16:31 -0500747
Santiago Leonf148f612010-09-03 18:29:30 +0000748 if (data) {
Brian King5fc7e012007-08-17 09:16:31 -0500749 adapter->rx_csum = 1;
Santiago Leonf148f612010-09-03 18:29:30 +0000750 } else {
Brian King5fc7e012007-08-17 09:16:31 -0500751 /*
Santiago Leonf148f612010-09-03 18:29:30 +0000752 * Since the ibmveth firmware interface does not have the
753 * concept of separate tx/rx checksum offload enable, if rx
754 * checksum is disabled we also have to disable tx checksum
755 * offload. Once we disable rx checksum offload, we are no
756 * longer allowed to send tx buffers that are not properly
757 * checksummed.
Brian King5fc7e012007-08-17 09:16:31 -0500758 */
759 adapter->rx_csum = 0;
760 dev->features &= ~NETIF_F_IP_CSUM;
Santiago Leonab78df72010-09-03 18:28:52 +0000761 dev->features &= ~NETIF_F_IPV6_CSUM;
Brian King5fc7e012007-08-17 09:16:31 -0500762 }
763}
764
765static void ibmveth_set_tx_csum_flags(struct net_device *dev, u32 data)
766{
Wang Chen4cf16532008-11-12 23:38:14 -0800767 struct ibmveth_adapter *adapter = netdev_priv(dev);
Brian King5fc7e012007-08-17 09:16:31 -0500768
769 if (data) {
Santiago Leonab78df72010-09-03 18:28:52 +0000770 if (adapter->fw_ipv4_csum_support)
771 dev->features |= NETIF_F_IP_CSUM;
772 if (adapter->fw_ipv6_csum_support)
773 dev->features |= NETIF_F_IPV6_CSUM;
Brian King5fc7e012007-08-17 09:16:31 -0500774 adapter->rx_csum = 1;
Santiago Leonab78df72010-09-03 18:28:52 +0000775 } else {
Brian King5fc7e012007-08-17 09:16:31 -0500776 dev->features &= ~NETIF_F_IP_CSUM;
Santiago Leonab78df72010-09-03 18:28:52 +0000777 dev->features &= ~NETIF_F_IPV6_CSUM;
778 }
Brian King5fc7e012007-08-17 09:16:31 -0500779}
780
781static int ibmveth_set_csum_offload(struct net_device *dev, u32 data,
782 void (*done) (struct net_device *, u32))
783{
Wang Chen4cf16532008-11-12 23:38:14 -0800784 struct ibmveth_adapter *adapter = netdev_priv(dev);
Stephen Rothwellff5bfc32009-01-06 10:47:44 -0800785 unsigned long set_attr, clr_attr, ret_attr;
Santiago Leonab78df72010-09-03 18:28:52 +0000786 unsigned long set_attr6, clr_attr6;
787 long ret, ret6;
Brian King5fc7e012007-08-17 09:16:31 -0500788 int rc1 = 0, rc2 = 0;
789 int restart = 0;
790
791 if (netif_running(dev)) {
792 restart = 1;
793 adapter->pool_config = 1;
794 ibmveth_close(dev);
795 adapter->pool_config = 0;
796 }
797
Brian King79ef4a42007-08-17 09:16:56 -0500798 set_attr = 0;
799 clr_attr = 0;
Brian King5fc7e012007-08-17 09:16:31 -0500800
Santiago Leonab78df72010-09-03 18:28:52 +0000801 if (data) {
Brian King79ef4a42007-08-17 09:16:56 -0500802 set_attr = IBMVETH_ILLAN_IPV4_TCP_CSUM;
Santiago Leonab78df72010-09-03 18:28:52 +0000803 set_attr6 = IBMVETH_ILLAN_IPV6_TCP_CSUM;
804 } else {
Brian King79ef4a42007-08-17 09:16:56 -0500805 clr_attr = IBMVETH_ILLAN_IPV4_TCP_CSUM;
Santiago Leonab78df72010-09-03 18:28:52 +0000806 clr_attr6 = IBMVETH_ILLAN_IPV6_TCP_CSUM;
807 }
Brian King5fc7e012007-08-17 09:16:31 -0500808
Brian King79ef4a42007-08-17 09:16:56 -0500809 ret = h_illan_attributes(adapter->vdev->unit_address, 0, 0, &ret_attr);
Brian King5fc7e012007-08-17 09:16:31 -0500810
Brian King79ef4a42007-08-17 09:16:56 -0500811 if (ret == H_SUCCESS && !(ret_attr & IBMVETH_ILLAN_ACTIVE_TRUNK) &&
812 !(ret_attr & IBMVETH_ILLAN_TRUNK_PRI_MASK) &&
813 (ret_attr & IBMVETH_ILLAN_PADDED_PKT_CSUM)) {
814 ret = h_illan_attributes(adapter->vdev->unit_address, clr_attr,
815 set_attr, &ret_attr);
Brian King5fc7e012007-08-17 09:16:31 -0500816
817 if (ret != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000818 netdev_err(dev, "unable to change IPv4 checksum "
819 "offload settings. %d rc=%ld\n",
820 data, ret);
Brian King5fc7e012007-08-17 09:16:31 -0500821
822 ret = h_illan_attributes(adapter->vdev->unit_address,
Brian King79ef4a42007-08-17 09:16:56 -0500823 set_attr, clr_attr, &ret_attr);
Santiago Leonf148f612010-09-03 18:29:30 +0000824 } else {
Santiago Leonab78df72010-09-03 18:28:52 +0000825 adapter->fw_ipv4_csum_support = data;
Santiago Leonf148f612010-09-03 18:29:30 +0000826 }
Santiago Leonab78df72010-09-03 18:28:52 +0000827
828 ret6 = h_illan_attributes(adapter->vdev->unit_address,
829 clr_attr6, set_attr6, &ret_attr);
830
831 if (ret6 != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000832 netdev_err(dev, "unable to change IPv6 checksum "
833 "offload settings. %d rc=%ld\n",
834 data, ret);
Santiago Leonab78df72010-09-03 18:28:52 +0000835
836 ret = h_illan_attributes(adapter->vdev->unit_address,
837 set_attr6, clr_attr6,
838 &ret_attr);
839 } else
840 adapter->fw_ipv6_csum_support = data;
841
842 if (ret == H_SUCCESS || ret6 == H_SUCCESS)
Brian King5fc7e012007-08-17 09:16:31 -0500843 done(dev, data);
Santiago Leonab78df72010-09-03 18:28:52 +0000844 else
845 rc1 = -EIO;
Brian King5fc7e012007-08-17 09:16:31 -0500846 } else {
847 rc1 = -EIO;
Santiago Leon21c2dec2010-09-03 18:29:19 +0000848 netdev_err(dev, "unable to change checksum offload settings."
849 " %d rc=%ld ret_attr=%lx\n", data, ret,
850 ret_attr);
Brian King5fc7e012007-08-17 09:16:31 -0500851 }
852
853 if (restart)
854 rc2 = ibmveth_open(dev);
855
856 return rc1 ? rc1 : rc2;
857}
858
859static int ibmveth_set_rx_csum(struct net_device *dev, u32 data)
860{
Wang Chen4cf16532008-11-12 23:38:14 -0800861 struct ibmveth_adapter *adapter = netdev_priv(dev);
Brian King5fc7e012007-08-17 09:16:31 -0500862
863 if ((data && adapter->rx_csum) || (!data && !adapter->rx_csum))
864 return 0;
865
866 return ibmveth_set_csum_offload(dev, data, ibmveth_set_rx_csum_flags);
867}
868
869static int ibmveth_set_tx_csum(struct net_device *dev, u32 data)
870{
Wang Chen4cf16532008-11-12 23:38:14 -0800871 struct ibmveth_adapter *adapter = netdev_priv(dev);
Brian King5fc7e012007-08-17 09:16:31 -0500872 int rc = 0;
873
Santiago Leonab78df72010-09-03 18:28:52 +0000874 if (data && (dev->features & (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM)))
Brian King5fc7e012007-08-17 09:16:31 -0500875 return 0;
Santiago Leonab78df72010-09-03 18:28:52 +0000876 if (!data && !(dev->features & (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM)))
Brian King5fc7e012007-08-17 09:16:31 -0500877 return 0;
878
879 if (data && !adapter->rx_csum)
Santiago Leonf148f612010-09-03 18:29:30 +0000880 rc = ibmveth_set_csum_offload(dev, data,
881 ibmveth_set_tx_csum_flags);
Brian King5fc7e012007-08-17 09:16:31 -0500882 else
883 ibmveth_set_tx_csum_flags(dev, data);
884
885 return rc;
886}
887
888static u32 ibmveth_get_rx_csum(struct net_device *dev)
889{
Wang Chen4cf16532008-11-12 23:38:14 -0800890 struct ibmveth_adapter *adapter = netdev_priv(dev);
Brian King5fc7e012007-08-17 09:16:31 -0500891 return adapter->rx_csum;
892}
893
Brian Kingddbb4de2007-08-17 09:16:43 -0500894static void ibmveth_get_strings(struct net_device *dev, u32 stringset, u8 *data)
895{
896 int i;
897
898 if (stringset != ETH_SS_STATS)
899 return;
900
901 for (i = 0; i < ARRAY_SIZE(ibmveth_stats); i++, data += ETH_GSTRING_LEN)
902 memcpy(data, ibmveth_stats[i].name, ETH_GSTRING_LEN);
903}
904
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700905static int ibmveth_get_sset_count(struct net_device *dev, int sset)
Brian Kingddbb4de2007-08-17 09:16:43 -0500906{
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700907 switch (sset) {
908 case ETH_SS_STATS:
909 return ARRAY_SIZE(ibmveth_stats);
910 default:
911 return -EOPNOTSUPP;
912 }
Brian Kingddbb4de2007-08-17 09:16:43 -0500913}
914
915static void ibmveth_get_ethtool_stats(struct net_device *dev,
916 struct ethtool_stats *stats, u64 *data)
917{
918 int i;
Wang Chen4cf16532008-11-12 23:38:14 -0800919 struct ibmveth_adapter *adapter = netdev_priv(dev);
Brian Kingddbb4de2007-08-17 09:16:43 -0500920
921 for (i = 0; i < ARRAY_SIZE(ibmveth_stats); i++)
922 data[i] = IBMVETH_GET_STAT(adapter, ibmveth_stats[i].offset);
923}
924
Jeff Garzik7282d492006-09-13 14:30:00 -0400925static const struct ethtool_ops netdev_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 .get_drvinfo = netdev_get_drvinfo,
927 .get_settings = netdev_get_settings,
928 .get_link = netdev_get_link,
Brian King5fc7e012007-08-17 09:16:31 -0500929 .set_tx_csum = ibmveth_set_tx_csum,
930 .get_rx_csum = ibmveth_get_rx_csum,
931 .set_rx_csum = ibmveth_set_rx_csum,
Brian Kingddbb4de2007-08-17 09:16:43 -0500932 .get_strings = ibmveth_get_strings,
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700933 .get_sset_count = ibmveth_get_sset_count,
Brian Kingddbb4de2007-08-17 09:16:43 -0500934 .get_ethtool_stats = ibmveth_get_ethtool_stats,
Santiago Leon6e8ab302010-09-03 18:28:36 +0000935 .set_sg = ethtool_op_set_sg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936};
937
938static int ibmveth_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
939{
940 return -EOPNOTSUPP;
941}
942
943#define page_offset(v) ((unsigned long)(v) & ((1 << 12) - 1))
944
Santiago Leon6e8ab302010-09-03 18:28:36 +0000945static int ibmveth_send(struct ibmveth_adapter *adapter,
946 union ibmveth_buf_desc *descs)
947{
948 unsigned long correlator;
949 unsigned int retry_count;
950 unsigned long ret;
951
952 /*
953 * The retry count sets a maximum for the number of broadcast and
954 * multicast destinations within the system.
955 */
956 retry_count = 1024;
957 correlator = 0;
958 do {
959 ret = h_send_logical_lan(adapter->vdev->unit_address,
960 descs[0].desc, descs[1].desc,
961 descs[2].desc, descs[3].desc,
962 descs[4].desc, descs[5].desc,
963 correlator, &correlator);
964 } while ((ret == H_BUSY) && (retry_count--));
965
966 if (ret != H_SUCCESS && ret != H_DROPPED) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000967 netdev_err(adapter->netdev, "tx: h_send_logical_lan failed "
968 "with rc=%ld\n", ret);
Santiago Leon6e8ab302010-09-03 18:28:36 +0000969 return 1;
970 }
971
972 return 0;
973}
974
Stephen Hemminger613573252009-08-31 19:50:58 +0000975static netdev_tx_t ibmveth_start_xmit(struct sk_buff *skb,
976 struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977{
Wang Chen4cf16532008-11-12 23:38:14 -0800978 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Santiago Leon6e8ab302010-09-03 18:28:36 +0000979 unsigned int desc_flags;
980 union ibmveth_buf_desc descs[6];
981 int last, i;
982 int force_bounce = 0;
Santiago Leon60296d92005-10-26 10:47:16 -0600983
Santiago Leon6e8ab302010-09-03 18:28:36 +0000984 /*
985 * veth handles a maximum of 6 segments including the header, so
986 * we have to linearize the skb if there are more than this.
987 */
988 if (skb_shinfo(skb)->nr_frags > 5 && __skb_linearize(skb)) {
989 netdev->stats.tx_dropped++;
Brian Kingf4ff2872007-09-15 13:36:07 -0700990 goto out;
991 }
992
Santiago Leon6e8ab302010-09-03 18:28:36 +0000993 /* veth can't checksum offload UDP */
994 if (skb->ip_summed == CHECKSUM_PARTIAL &&
Santiago Leonab78df72010-09-03 18:28:52 +0000995 ((skb->protocol == htons(ETH_P_IP) &&
996 ip_hdr(skb)->protocol != IPPROTO_TCP) ||
997 (skb->protocol == htons(ETH_P_IPV6) &&
998 ipv6_hdr(skb)->nexthdr != IPPROTO_TCP)) &&
999 skb_checksum_help(skb)) {
1000
Santiago Leon21c2dec2010-09-03 18:29:19 +00001001 netdev_err(netdev, "tx: failed to checksum packet\n");
Santiago Leon6e8ab302010-09-03 18:28:36 +00001002 netdev->stats.tx_dropped++;
1003 goto out;
1004 }
Brian Kingf4ff2872007-09-15 13:36:07 -07001005
Santiago Leon6e8ab302010-09-03 18:28:36 +00001006 desc_flags = IBMVETH_BUF_VALID;
1007
1008 if (skb->ip_summed == CHECKSUM_PARTIAL) {
1009 unsigned char *buf = skb_transport_header(skb) +
1010 skb->csum_offset;
1011
1012 desc_flags |= (IBMVETH_BUF_NO_CSUM | IBMVETH_BUF_CSUM_GOOD);
Brian Kingf4ff2872007-09-15 13:36:07 -07001013
1014 /* Need to zero out the checksum */
1015 buf[0] = 0;
1016 buf[1] = 0;
1017 }
1018
Santiago Leon6e8ab302010-09-03 18:28:36 +00001019retry_bounce:
1020 memset(descs, 0, sizeof(descs));
Santiago Leonc08cc3c2010-09-03 18:28:20 +00001021
Santiago Leon6e8ab302010-09-03 18:28:36 +00001022 /*
1023 * If a linear packet is below the rx threshold then
1024 * copy it into the static bounce buffer. This avoids the
1025 * cost of a TCE insert and remove.
1026 */
1027 if (force_bounce || (!skb_is_nonlinear(skb) &&
1028 (skb->len < tx_copybreak))) {
Robert Jennings1096d632008-07-24 04:34:52 +10001029 skb_copy_from_linear_data(skb, adapter->bounce_buffer,
1030 skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
Santiago Leon6e8ab302010-09-03 18:28:36 +00001032 descs[0].fields.flags_len = desc_flags | skb->len;
1033 descs[0].fields.address = adapter->bounce_buffer_dma;
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001034
Santiago Leon6e8ab302010-09-03 18:28:36 +00001035 if (ibmveth_send(adapter, descs)) {
1036 adapter->tx_send_failed++;
1037 netdev->stats.tx_dropped++;
1038 } else {
1039 netdev->stats.tx_packets++;
1040 netdev->stats.tx_bytes += skb->len;
1041 }
1042
1043 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 }
1045
Santiago Leon6e8ab302010-09-03 18:28:36 +00001046 /* Map the header */
1047 descs[0].fields.address = dma_map_single(&adapter->vdev->dev, skb->data,
1048 skb_headlen(skb),
1049 DMA_TO_DEVICE);
1050 if (dma_mapping_error(&adapter->vdev->dev, descs[0].fields.address))
1051 goto map_failed;
1052
1053 descs[0].fields.flags_len = desc_flags | skb_headlen(skb);
1054
1055 /* Map the frags */
1056 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1057 unsigned long dma_addr;
1058 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1059
1060 dma_addr = dma_map_page(&adapter->vdev->dev, frag->page,
1061 frag->page_offset, frag->size,
1062 DMA_TO_DEVICE);
1063
1064 if (dma_mapping_error(&adapter->vdev->dev, dma_addr))
1065 goto map_failed_frags;
1066
1067 descs[i+1].fields.flags_len = desc_flags | frag->size;
1068 descs[i+1].fields.address = dma_addr;
1069 }
1070
1071 if (ibmveth_send(adapter, descs)) {
1072 adapter->tx_send_failed++;
1073 netdev->stats.tx_dropped++;
1074 } else {
1075 netdev->stats.tx_packets++;
1076 netdev->stats.tx_bytes += skb->len;
1077 }
1078
1079 for (i = 0; i < skb_shinfo(skb)->nr_frags + 1; i++)
1080 dma_unmap_page(&adapter->vdev->dev, descs[i].fields.address,
1081 descs[i].fields.flags_len & IBMVETH_BUF_LEN_MASK,
1082 DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083
Santiago Leone8cb7eb2010-09-03 18:28:15 +00001084out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 dev_kfree_skb(skb);
Patrick McHardy6ed10652009-06-23 06:03:08 +00001086 return NETDEV_TX_OK;
Santiago Leon6e8ab302010-09-03 18:28:36 +00001087
1088map_failed_frags:
1089 last = i+1;
1090 for (i = 0; i < last; i++)
1091 dma_unmap_page(&adapter->vdev->dev, descs[i].fields.address,
1092 descs[i].fields.flags_len & IBMVETH_BUF_LEN_MASK,
1093 DMA_TO_DEVICE);
1094
1095map_failed:
1096 if (!firmware_has_feature(FW_FEATURE_CMO))
Santiago Leon21c2dec2010-09-03 18:29:19 +00001097 netdev_err(netdev, "tx: unable to map xmit buffer\n");
Santiago Leon6e8ab302010-09-03 18:28:36 +00001098 adapter->tx_map_failed++;
1099 skb_linearize(skb);
1100 force_bounce = 1;
1101 goto retry_bounce;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102}
1103
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001104static int ibmveth_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105{
Santiago Leonf148f612010-09-03 18:29:30 +00001106 struct ibmveth_adapter *adapter =
1107 container_of(napi, struct ibmveth_adapter, napi);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001108 struct net_device *netdev = adapter->netdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 int frames_processed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 unsigned long lpar_rc;
1111
Santiago Leonf148f612010-09-03 18:29:30 +00001112restart_poll:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 do {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001114 if (!ibmveth_rxq_pending_buffer(adapter))
1115 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
Anton Blanchardf89e49e2010-09-06 18:21:41 -07001117 smp_rmb();
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001118 if (!ibmveth_rxq_buffer_valid(adapter)) {
1119 wmb(); /* suggested by larson1 */
1120 adapter->rx_invalid_buffer++;
Santiago Leonc43ced12010-09-03 18:29:14 +00001121 netdev_dbg(netdev, "recycling invalid buffer\n");
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001122 ibmveth_rxq_recycle_buffer(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 } else {
Santiago Leon8d86c612010-09-03 18:28:25 +00001124 struct sk_buff *skb, *new_skb;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001125 int length = ibmveth_rxq_frame_length(adapter);
1126 int offset = ibmveth_rxq_frame_offset(adapter);
Brian Kingf4ff2872007-09-15 13:36:07 -07001127 int csum_good = ibmveth_rxq_csum_good(adapter);
1128
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001129 skb = ibmveth_rxq_get_buffer(adapter);
1130
Santiago Leon8d86c612010-09-03 18:28:25 +00001131 new_skb = NULL;
1132 if (length < rx_copybreak)
1133 new_skb = netdev_alloc_skb(netdev, length);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001134
Santiago Leon8d86c612010-09-03 18:28:25 +00001135 if (new_skb) {
1136 skb_copy_to_linear_data(new_skb,
1137 skb->data + offset,
1138 length);
Santiago Leon0c26b672010-09-03 18:28:41 +00001139 if (rx_flush)
1140 ibmveth_flush_buffer(skb->data,
1141 length + offset);
Santiago Leon8d86c612010-09-03 18:28:25 +00001142 skb = new_skb;
1143 ibmveth_rxq_recycle_buffer(adapter);
1144 } else {
1145 ibmveth_rxq_harvest_buffer(adapter);
1146 skb_reserve(skb, offset);
1147 }
1148
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001149 skb_put(skb, length);
1150 skb->protocol = eth_type_trans(skb, netdev);
1151
Santiago Leon8d86c612010-09-03 18:28:25 +00001152 if (csum_good)
1153 skb->ip_summed = CHECKSUM_UNNECESSARY;
1154
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001155 netif_receive_skb(skb); /* send it up */
1156
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001157 netdev->stats.rx_packets++;
1158 netdev->stats.rx_bytes += length;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001159 frames_processed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 }
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001161 } while (frames_processed < budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
Santiago Leone2adbcb2005-10-26 10:47:08 -06001163 ibmveth_replenish_task(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001165 if (frames_processed < budget) {
1166 /* We think we are done - reenable interrupts,
1167 * then check once more to make sure we are done.
1168 */
1169 lpar_rc = h_vio_signal(adapter->vdev->unit_address,
1170 VIO_IRQ_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
Santiago Leon64859112010-09-03 18:29:41 +00001172 BUG_ON(lpar_rc != H_SUCCESS);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001173
Ben Hutchings288379f2009-01-19 16:43:59 -08001174 napi_complete(napi);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001175
1176 if (ibmveth_rxq_pending_buffer(adapter) &&
Ben Hutchings288379f2009-01-19 16:43:59 -08001177 napi_reschedule(napi)) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001178 lpar_rc = h_vio_signal(adapter->vdev->unit_address,
1179 VIO_IRQ_DISABLE);
1180 goto restart_poll;
1181 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 }
1183
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001184 return frames_processed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185}
1186
David Howells7d12e782006-10-05 14:55:46 +01001187static irqreturn_t ibmveth_interrupt(int irq, void *dev_instance)
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001188{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 struct net_device *netdev = dev_instance;
Wang Chen4cf16532008-11-12 23:38:14 -08001190 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 unsigned long lpar_rc;
1192
Ben Hutchings288379f2009-01-19 16:43:59 -08001193 if (napi_schedule_prep(&adapter->napi)) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001194 lpar_rc = h_vio_signal(adapter->vdev->unit_address,
1195 VIO_IRQ_DISABLE);
Santiago Leon64859112010-09-03 18:29:41 +00001196 BUG_ON(lpar_rc != H_SUCCESS);
Ben Hutchings288379f2009-01-19 16:43:59 -08001197 __napi_schedule(&adapter->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 }
1199 return IRQ_HANDLED;
1200}
1201
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202static void ibmveth_set_multicast_list(struct net_device *netdev)
1203{
Wang Chen4cf16532008-11-12 23:38:14 -08001204 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 unsigned long lpar_rc;
1206
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001207 if ((netdev->flags & IFF_PROMISC) ||
1208 (netdev_mc_count(netdev) > adapter->mcastFilterSize)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 lpar_rc = h_multicast_ctrl(adapter->vdev->unit_address,
1210 IbmVethMcastEnableRecv |
1211 IbmVethMcastDisableFiltering,
1212 0);
Santiago Leonf148f612010-09-03 18:29:30 +00001213 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001214 netdev_err(netdev, "h_multicast_ctrl rc=%ld when "
1215 "entering promisc mode\n", lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 }
1217 } else {
Jiri Pirko22bedad32010-04-01 21:22:57 +00001218 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 /* clear the filter table & disable filtering */
1220 lpar_rc = h_multicast_ctrl(adapter->vdev->unit_address,
1221 IbmVethMcastEnableRecv |
1222 IbmVethMcastDisableFiltering |
1223 IbmVethMcastClearFilterTable,
1224 0);
Santiago Leonf148f612010-09-03 18:29:30 +00001225 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001226 netdev_err(netdev, "h_multicast_ctrl rc=%ld when "
1227 "attempting to clear filter table\n",
1228 lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 }
1230 /* add the addresses to the filter table */
Jiri Pirko22bedad32010-04-01 21:22:57 +00001231 netdev_for_each_mc_addr(ha, netdev) {
Santiago Leonf148f612010-09-03 18:29:30 +00001232 /* add the multicast address to the filter table */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 unsigned long mcast_addr = 0;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001234 memcpy(((char *)&mcast_addr)+2, ha->addr, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 lpar_rc = h_multicast_ctrl(adapter->vdev->unit_address,
1236 IbmVethMcastAddFilter,
1237 mcast_addr);
Santiago Leonf148f612010-09-03 18:29:30 +00001238 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001239 netdev_err(netdev, "h_multicast_ctrl rc=%ld "
1240 "when adding an entry to the filter "
1241 "table\n", lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 }
1243 }
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001244
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 /* re-enable filtering */
1246 lpar_rc = h_multicast_ctrl(adapter->vdev->unit_address,
1247 IbmVethMcastEnableFiltering,
1248 0);
Santiago Leonf148f612010-09-03 18:29:30 +00001249 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001250 netdev_err(netdev, "h_multicast_ctrl rc=%ld when "
1251 "enabling filtering\n", lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 }
1253 }
1254}
1255
1256static int ibmveth_change_mtu(struct net_device *dev, int new_mtu)
1257{
Wang Chen4cf16532008-11-12 23:38:14 -08001258 struct ibmveth_adapter *adapter = netdev_priv(dev);
Robert Jennings1096d632008-07-24 04:34:52 +10001259 struct vio_dev *viodev = adapter->vdev;
Santiago Leon860f2422006-04-25 11:19:59 -05001260 int new_mtu_oh = new_mtu + IBMVETH_BUFF_OH;
Robert Jennings0645bab2010-08-17 09:15:45 +00001261 int i, rc;
1262 int need_restart = 0;
Santiago Leonb6d35182005-10-26 10:47:01 -06001263
Santiago Leon517e80e2010-09-03 18:29:25 +00001264 if (new_mtu < IBMVETH_MIN_MTU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 return -EINVAL;
Santiago Leonb6d35182005-10-26 10:47:01 -06001266
Santiago Leon517e80e2010-09-03 18:29:25 +00001267 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++)
Brian Kingce6eea52007-06-08 14:05:17 -05001268 if (new_mtu_oh < adapter->rx_buff_pool[i].buff_size)
1269 break;
1270
Santiago Leon517e80e2010-09-03 18:29:25 +00001271 if (i == IBMVETH_NUM_BUFF_POOLS)
Brian Kingce6eea52007-06-08 14:05:17 -05001272 return -EINVAL;
1273
Santiago Leonea866e62008-07-24 04:34:23 +10001274 /* Deactivate all the buffer pools so that the next loop can activate
1275 only the buffer pools necessary to hold the new MTU */
Robert Jennings0645bab2010-08-17 09:15:45 +00001276 if (netif_running(adapter->netdev)) {
1277 need_restart = 1;
1278 adapter->pool_config = 1;
1279 ibmveth_close(adapter->netdev);
1280 adapter->pool_config = 0;
1281 }
Brian Kingce6eea52007-06-08 14:05:17 -05001282
Santiago Leonea866e62008-07-24 04:34:23 +10001283 /* Look for an active buffer pool that can hold the new MTU */
Santiago Leonf148f612010-09-03 18:29:30 +00001284 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++) {
Santiago Leonea866e62008-07-24 04:34:23 +10001285 adapter->rx_buff_pool[i].active = 1;
1286
Santiago Leon860f2422006-04-25 11:19:59 -05001287 if (new_mtu_oh < adapter->rx_buff_pool[i].buff_size) {
Robert Jennings1096d632008-07-24 04:34:52 +10001288 dev->mtu = new_mtu;
1289 vio_cmo_set_dev_desired(viodev,
1290 ibmveth_get_desired_dma
1291 (viodev));
Robert Jennings0645bab2010-08-17 09:15:45 +00001292 if (need_restart) {
1293 return ibmveth_open(adapter->netdev);
1294 }
Santiago Leon860f2422006-04-25 11:19:59 -05001295 return 0;
Santiago Leonb6d35182005-10-26 10:47:01 -06001296 }
Santiago Leonb6d35182005-10-26 10:47:01 -06001297 }
Robert Jennings0645bab2010-08-17 09:15:45 +00001298
1299 if (need_restart && (rc = ibmveth_open(adapter->netdev)))
1300 return rc;
1301
Santiago Leon860f2422006-04-25 11:19:59 -05001302 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303}
1304
Santiago Leon6b422372006-10-03 12:24:28 -05001305#ifdef CONFIG_NET_POLL_CONTROLLER
1306static void ibmveth_poll_controller(struct net_device *dev)
1307{
Wang Chen4cf16532008-11-12 23:38:14 -08001308 ibmveth_replenish_task(netdev_priv(dev));
Andrew Morton5f771132006-10-10 14:33:30 -07001309 ibmveth_interrupt(dev->irq, dev);
Santiago Leon6b422372006-10-03 12:24:28 -05001310}
1311#endif
1312
Robert Jennings1096d632008-07-24 04:34:52 +10001313/**
1314 * ibmveth_get_desired_dma - Calculate IO memory desired by the driver
1315 *
1316 * @vdev: struct vio_dev for the device whose desired IO mem is to be returned
1317 *
1318 * Return value:
1319 * Number of bytes of IO data the driver will need to perform well.
1320 */
1321static unsigned long ibmveth_get_desired_dma(struct vio_dev *vdev)
1322{
1323 struct net_device *netdev = dev_get_drvdata(&vdev->dev);
1324 struct ibmveth_adapter *adapter;
1325 unsigned long ret;
1326 int i;
1327 int rxqentries = 1;
1328
1329 /* netdev inits at probe time along with the structures we need below*/
1330 if (netdev == NULL)
1331 return IOMMU_PAGE_ALIGN(IBMVETH_IO_ENTITLEMENT_DEFAULT);
1332
1333 adapter = netdev_priv(netdev);
1334
1335 ret = IBMVETH_BUFF_LIST_SIZE + IBMVETH_FILT_LIST_SIZE;
1336 ret += IOMMU_PAGE_ALIGN(netdev->mtu);
1337
Santiago Leon517e80e2010-09-03 18:29:25 +00001338 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++) {
Robert Jennings1096d632008-07-24 04:34:52 +10001339 /* add the size of the active receive buffers */
1340 if (adapter->rx_buff_pool[i].active)
1341 ret +=
1342 adapter->rx_buff_pool[i].size *
1343 IOMMU_PAGE_ALIGN(adapter->rx_buff_pool[i].
1344 buff_size);
1345 rxqentries += adapter->rx_buff_pool[i].size;
1346 }
1347 /* add the size of the receive queue entries */
1348 ret += IOMMU_PAGE_ALIGN(rxqentries * sizeof(struct ibmveth_rx_q_entry));
1349
1350 return ret;
1351}
1352
Alexander Beregalove186d172009-04-15 12:52:39 +00001353static const struct net_device_ops ibmveth_netdev_ops = {
1354 .ndo_open = ibmveth_open,
1355 .ndo_stop = ibmveth_close,
1356 .ndo_start_xmit = ibmveth_start_xmit,
1357 .ndo_set_multicast_list = ibmveth_set_multicast_list,
1358 .ndo_do_ioctl = ibmveth_ioctl,
1359 .ndo_change_mtu = ibmveth_change_mtu,
1360 .ndo_validate_addr = eth_validate_addr,
1361 .ndo_set_mac_address = eth_mac_addr,
1362#ifdef CONFIG_NET_POLL_CONTROLLER
1363 .ndo_poll_controller = ibmveth_poll_controller,
1364#endif
1365};
1366
Santiago Leonf148f612010-09-03 18:29:30 +00001367static int __devinit ibmveth_probe(struct vio_dev *dev,
1368 const struct vio_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369{
Santiago Leonb6d35182005-10-26 10:47:01 -06001370 int rc, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 struct net_device *netdev;
Mariusz Kozlowski9dc83af2007-08-06 23:44:03 +02001372 struct ibmveth_adapter *adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 unsigned char *mac_addr_p;
1374 unsigned int *mcastFilterSize_p;
1375
Santiago Leonc43ced12010-09-03 18:29:14 +00001376 dev_dbg(&dev->dev, "entering ibmveth_probe for UA 0x%x\n",
1377 dev->unit_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378
Santiago Leonf148f612010-09-03 18:29:30 +00001379 mac_addr_p = (unsigned char *)vio_get_attribute(dev, VETH_MAC_ADDR,
1380 NULL);
1381 if (!mac_addr_p) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001382 dev_err(&dev->dev, "Can't find VETH_MAC_ADDR attribute\n");
Santiago Leonbe35ae92010-09-03 18:29:36 +00001383 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 }
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001385
Santiago Leonf148f612010-09-03 18:29:30 +00001386 mcastFilterSize_p = (unsigned int *)vio_get_attribute(dev,
Michael Ellerman493a6842007-04-17 13:12:55 +10001387 VETH_MCAST_FILTER_SIZE, NULL);
Santiago Leonf148f612010-09-03 18:29:30 +00001388 if (!mcastFilterSize_p) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001389 dev_err(&dev->dev, "Can't find VETH_MCAST_FILTER_SIZE "
1390 "attribute\n");
Santiago Leonbe35ae92010-09-03 18:29:36 +00001391 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 }
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001393
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 netdev = alloc_etherdev(sizeof(struct ibmveth_adapter));
1395
Santiago Leonf148f612010-09-03 18:29:30 +00001396 if (!netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 return -ENOMEM;
1398
Wang Chen4cf16532008-11-12 23:38:14 -08001399 adapter = netdev_priv(netdev);
Greg Kroah-Hartmanc7ae0112009-05-04 21:33:19 -07001400 dev_set_drvdata(&dev->dev, netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
1402 adapter->vdev = dev;
1403 adapter->netdev = netdev;
Santiago Leonf148f612010-09-03 18:29:30 +00001404 adapter->mcastFilterSize = *mcastFilterSize_p;
Santiago Leon860f2422006-04-25 11:19:59 -05001405 adapter->pool_config = 0;
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001406
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001407 netif_napi_add(netdev, &adapter->napi, ibmveth_poll, 16);
1408
Santiago Leonf148f612010-09-03 18:29:30 +00001409 /*
1410 * Some older boxes running PHYP non-natively have an OF that returns
1411 * a 8-byte local-mac-address field (and the first 2 bytes have to be
1412 * ignored) while newer boxes' OF return a 6-byte field. Note that
1413 * IEEE 1275 specifies that local-mac-address must be a 6-byte field.
1414 * The RPA doc specifies that the first byte must be 10b, so we'll
1415 * just look for it to solve this 8 vs. 6 byte field issue
1416 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 if ((*mac_addr_p & 0x3) != 0x02)
1418 mac_addr_p += 2;
1419
1420 adapter->mac_addr = 0;
1421 memcpy(&adapter->mac_addr, mac_addr_p, 6);
1422
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 netdev->irq = dev->irq;
Alexander Beregalove186d172009-04-15 12:52:39 +00001424 netdev->netdev_ops = &ibmveth_netdev_ops;
1425 netdev->ethtool_ops = &netdev_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 SET_NETDEV_DEV(netdev, &dev->dev);
Santiago Leon6e8ab302010-09-03 18:28:36 +00001427 netdev->features |= NETIF_F_SG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
Stephen Rothwelld44b5e02009-05-11 21:44:51 +00001429 memcpy(netdev->dev_addr, &adapter->mac_addr, netdev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
Santiago Leonf148f612010-09-03 18:29:30 +00001431 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++) {
Santiago Leon860f2422006-04-25 11:19:59 -05001432 struct kobject *kobj = &adapter->rx_buff_pool[i].kobj;
Greg Kroah-Hartman8dde2a92007-12-17 15:54:39 -04001433 int error;
1434
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001435 ibmveth_init_buffer_pool(&adapter->rx_buff_pool[i], i,
1436 pool_count[i], pool_size[i],
Santiago Leon860f2422006-04-25 11:19:59 -05001437 pool_active[i]);
Greg Kroah-Hartman8dde2a92007-12-17 15:54:39 -04001438 error = kobject_init_and_add(kobj, &ktype_veth_pool,
1439 &dev->dev.kobj, "pool%d", i);
1440 if (!error)
1441 kobject_uevent(kobj, KOBJ_ADD);
Santiago Leon860f2422006-04-25 11:19:59 -05001442 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443
Santiago Leonc43ced12010-09-03 18:29:14 +00001444 netdev_dbg(netdev, "adapter @ 0x%p\n", adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 adapter->buffer_list_dma = DMA_ERROR_CODE;
1447 adapter->filter_list_dma = DMA_ERROR_CODE;
1448 adapter->rx_queue.queue_dma = DMA_ERROR_CODE;
1449
Santiago Leonc43ced12010-09-03 18:29:14 +00001450 netdev_dbg(netdev, "registering netdev...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451
Santiago Leonbc4c6f52010-09-03 18:28:47 +00001452 ibmveth_set_csum_offload(netdev, 1, ibmveth_set_tx_csum_flags);
Brian Kingf4ff2872007-09-15 13:36:07 -07001453
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 rc = register_netdev(netdev);
1455
Santiago Leonf148f612010-09-03 18:29:30 +00001456 if (rc) {
Santiago Leonc43ced12010-09-03 18:29:14 +00001457 netdev_dbg(netdev, "failed to register netdev rc=%d\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 free_netdev(netdev);
1459 return rc;
1460 }
1461
Santiago Leonc43ced12010-09-03 18:29:14 +00001462 netdev_dbg(netdev, "registered\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 return 0;
1465}
1466
1467static int __devexit ibmveth_remove(struct vio_dev *dev)
1468{
Greg Kroah-Hartmanc7ae0112009-05-04 21:33:19 -07001469 struct net_device *netdev = dev_get_drvdata(&dev->dev);
Wang Chen4cf16532008-11-12 23:38:14 -08001470 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Santiago Leon860f2422006-04-25 11:19:59 -05001471 int i;
1472
Santiago Leonf148f612010-09-03 18:29:30 +00001473 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++)
Greg Kroah-Hartmanc10997f2007-12-20 08:13:05 -08001474 kobject_put(&adapter->rx_buff_pool[i].kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
1476 unregister_netdev(netdev);
1477
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 free_netdev(netdev);
Robert Jennings1096d632008-07-24 04:34:52 +10001479 dev_set_drvdata(&dev->dev, NULL);
1480
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 return 0;
1482}
1483
Santiago Leon860f2422006-04-25 11:19:59 -05001484static struct attribute veth_active_attr;
1485static struct attribute veth_num_attr;
1486static struct attribute veth_size_attr;
1487
Santiago Leonf148f612010-09-03 18:29:30 +00001488static ssize_t veth_pool_show(struct kobject *kobj,
1489 struct attribute *attr, char *buf)
Santiago Leon860f2422006-04-25 11:19:59 -05001490{
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001491 struct ibmveth_buff_pool *pool = container_of(kobj,
Santiago Leon860f2422006-04-25 11:19:59 -05001492 struct ibmveth_buff_pool,
1493 kobj);
1494
1495 if (attr == &veth_active_attr)
1496 return sprintf(buf, "%d\n", pool->active);
1497 else if (attr == &veth_num_attr)
1498 return sprintf(buf, "%d\n", pool->size);
1499 else if (attr == &veth_size_attr)
1500 return sprintf(buf, "%d\n", pool->buff_size);
1501 return 0;
1502}
1503
Santiago Leonf148f612010-09-03 18:29:30 +00001504static ssize_t veth_pool_store(struct kobject *kobj, struct attribute *attr,
1505 const char *buf, size_t count)
Santiago Leon860f2422006-04-25 11:19:59 -05001506{
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001507 struct ibmveth_buff_pool *pool = container_of(kobj,
Santiago Leon860f2422006-04-25 11:19:59 -05001508 struct ibmveth_buff_pool,
1509 kobj);
Greg Kroah-Hartmanc7ae0112009-05-04 21:33:19 -07001510 struct net_device *netdev = dev_get_drvdata(
1511 container_of(kobj->parent, struct device, kobj));
Wang Chen4cf16532008-11-12 23:38:14 -08001512 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Santiago Leon860f2422006-04-25 11:19:59 -05001513 long value = simple_strtol(buf, NULL, 10);
1514 long rc;
1515
1516 if (attr == &veth_active_attr) {
1517 if (value && !pool->active) {
Brian King4aa9c932007-06-08 14:05:16 -05001518 if (netif_running(netdev)) {
Santiago Leonf148f612010-09-03 18:29:30 +00001519 if (ibmveth_alloc_buffer_pool(pool)) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001520 netdev_err(netdev,
1521 "unable to alloc pool\n");
Brian King4aa9c932007-06-08 14:05:16 -05001522 return -ENOMEM;
1523 }
1524 pool->active = 1;
1525 adapter->pool_config = 1;
1526 ibmveth_close(netdev);
1527 adapter->pool_config = 0;
1528 if ((rc = ibmveth_open(netdev)))
1529 return rc;
Santiago Leonf148f612010-09-03 18:29:30 +00001530 } else {
Brian King4aa9c932007-06-08 14:05:16 -05001531 pool->active = 1;
Santiago Leonf148f612010-09-03 18:29:30 +00001532 }
Santiago Leon860f2422006-04-25 11:19:59 -05001533 } else if (!value && pool->active) {
1534 int mtu = netdev->mtu + IBMVETH_BUFF_OH;
1535 int i;
1536 /* Make sure there is a buffer pool with buffers that
1537 can hold a packet of the size of the MTU */
Santiago Leon517e80e2010-09-03 18:29:25 +00001538 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++) {
Santiago Leon860f2422006-04-25 11:19:59 -05001539 if (pool == &adapter->rx_buff_pool[i])
1540 continue;
1541 if (!adapter->rx_buff_pool[i].active)
1542 continue;
Brian King76b9cfc2007-08-03 13:55:19 +10001543 if (mtu <= adapter->rx_buff_pool[i].buff_size)
1544 break;
Santiago Leon860f2422006-04-25 11:19:59 -05001545 }
Brian King76b9cfc2007-08-03 13:55:19 +10001546
Santiago Leon517e80e2010-09-03 18:29:25 +00001547 if (i == IBMVETH_NUM_BUFF_POOLS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001548 netdev_err(netdev, "no active pool >= MTU\n");
Santiago Leon860f2422006-04-25 11:19:59 -05001549 return -EPERM;
1550 }
Brian King76b9cfc2007-08-03 13:55:19 +10001551
Brian King76b9cfc2007-08-03 13:55:19 +10001552 if (netif_running(netdev)) {
1553 adapter->pool_config = 1;
1554 ibmveth_close(netdev);
Santiago Leonea866e62008-07-24 04:34:23 +10001555 pool->active = 0;
Brian King76b9cfc2007-08-03 13:55:19 +10001556 adapter->pool_config = 0;
1557 if ((rc = ibmveth_open(netdev)))
1558 return rc;
1559 }
Santiago Leonea866e62008-07-24 04:34:23 +10001560 pool->active = 0;
Santiago Leon860f2422006-04-25 11:19:59 -05001561 }
1562 } else if (attr == &veth_num_attr) {
Santiago Leonf148f612010-09-03 18:29:30 +00001563 if (value <= 0 || value > IBMVETH_MAX_POOL_COUNT) {
Santiago Leon860f2422006-04-25 11:19:59 -05001564 return -EINVAL;
Santiago Leonf148f612010-09-03 18:29:30 +00001565 } else {
Brian King4aa9c932007-06-08 14:05:16 -05001566 if (netif_running(netdev)) {
1567 adapter->pool_config = 1;
1568 ibmveth_close(netdev);
1569 adapter->pool_config = 0;
1570 pool->size = value;
1571 if ((rc = ibmveth_open(netdev)))
1572 return rc;
Santiago Leonf148f612010-09-03 18:29:30 +00001573 } else {
Brian King4aa9c932007-06-08 14:05:16 -05001574 pool->size = value;
Santiago Leonf148f612010-09-03 18:29:30 +00001575 }
Santiago Leon860f2422006-04-25 11:19:59 -05001576 }
1577 } else if (attr == &veth_size_attr) {
Santiago Leonf148f612010-09-03 18:29:30 +00001578 if (value <= IBMVETH_BUFF_OH || value > IBMVETH_MAX_BUF_SIZE) {
Santiago Leon860f2422006-04-25 11:19:59 -05001579 return -EINVAL;
Santiago Leonf148f612010-09-03 18:29:30 +00001580 } else {
Brian King4aa9c932007-06-08 14:05:16 -05001581 if (netif_running(netdev)) {
1582 adapter->pool_config = 1;
1583 ibmveth_close(netdev);
1584 adapter->pool_config = 0;
1585 pool->buff_size = value;
1586 if ((rc = ibmveth_open(netdev)))
1587 return rc;
Santiago Leonf148f612010-09-03 18:29:30 +00001588 } else {
Brian King4aa9c932007-06-08 14:05:16 -05001589 pool->buff_size = value;
Santiago Leonf148f612010-09-03 18:29:30 +00001590 }
Santiago Leon860f2422006-04-25 11:19:59 -05001591 }
1592 }
1593
1594 /* kick the interrupt handler to allocate/deallocate pools */
David Howells7d12e782006-10-05 14:55:46 +01001595 ibmveth_interrupt(netdev->irq, netdev);
Santiago Leon860f2422006-04-25 11:19:59 -05001596 return count;
1597}
1598
1599
Santiago Leonf148f612010-09-03 18:29:30 +00001600#define ATTR(_name, _mode) \
1601 struct attribute veth_##_name##_attr = { \
1602 .name = __stringify(_name), .mode = _mode, \
1603 };
Santiago Leon860f2422006-04-25 11:19:59 -05001604
1605static ATTR(active, 0644);
1606static ATTR(num, 0644);
1607static ATTR(size, 0644);
1608
Santiago Leonf148f612010-09-03 18:29:30 +00001609static struct attribute *veth_pool_attrs[] = {
Santiago Leon860f2422006-04-25 11:19:59 -05001610 &veth_active_attr,
1611 &veth_num_attr,
1612 &veth_size_attr,
1613 NULL,
1614};
1615
Emese Revfy52cf25d2010-01-19 02:58:23 +01001616static const struct sysfs_ops veth_pool_ops = {
Santiago Leon860f2422006-04-25 11:19:59 -05001617 .show = veth_pool_show,
1618 .store = veth_pool_store,
1619};
1620
1621static struct kobj_type ktype_veth_pool = {
1622 .release = NULL,
1623 .sysfs_ops = &veth_pool_ops,
1624 .default_attrs = veth_pool_attrs,
1625};
1626
Brian Kinge7a3af52010-05-07 08:56:08 +00001627static int ibmveth_resume(struct device *dev)
1628{
1629 struct net_device *netdev = dev_get_drvdata(dev);
1630 ibmveth_interrupt(netdev->irq, netdev);
1631 return 0;
1632}
Santiago Leon860f2422006-04-25 11:19:59 -05001633
Santiago Leonf148f612010-09-03 18:29:30 +00001634static struct vio_device_id ibmveth_device_table[] __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 { "network", "IBM,l-lan"},
Stephen Rothwellfb120da2005-08-17 16:42:59 +10001636 { "", "" }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638MODULE_DEVICE_TABLE(vio, ibmveth_device_table);
1639
Brian Kinge7a3af52010-05-07 08:56:08 +00001640static struct dev_pm_ops ibmveth_pm_ops = {
1641 .resume = ibmveth_resume
1642};
1643
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644static struct vio_driver ibmveth_driver = {
Stephen Rothwell6fdf5392005-10-24 14:53:21 +10001645 .id_table = ibmveth_device_table,
1646 .probe = ibmveth_probe,
1647 .remove = ibmveth_remove,
Robert Jennings1096d632008-07-24 04:34:52 +10001648 .get_desired_dma = ibmveth_get_desired_dma,
Stephen Rothwell6fdf5392005-10-24 14:53:21 +10001649 .driver = {
1650 .name = ibmveth_driver_name,
Stephen Rothwell915124d2005-10-24 15:12:22 +10001651 .owner = THIS_MODULE,
Brian Kinge7a3af52010-05-07 08:56:08 +00001652 .pm = &ibmveth_pm_ops,
Stephen Rothwell6fdf5392005-10-24 14:53:21 +10001653 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654};
1655
1656static int __init ibmveth_module_init(void)
1657{
Santiago Leon21c2dec2010-09-03 18:29:19 +00001658 printk(KERN_DEBUG "%s: %s %s\n", ibmveth_driver_name,
1659 ibmveth_driver_string, ibmveth_driver_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 return vio_register_driver(&ibmveth_driver);
1662}
1663
1664static void __exit ibmveth_module_exit(void)
1665{
1666 vio_unregister_driver(&ibmveth_driver);
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001667}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668
1669module_init(ibmveth_module_init);
1670module_exit(ibmveth_module_exit);