blob: b3e157ed6776ebe0dd7e60ac45eba561018ba117 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/mm.h>
Brian Kinge7a3af52010-05-07 08:56:08 +000038#include <linux/pm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/ethtool.h>
Brian Kingf4ff2872007-09-15 13:36:07 -070040#include <linux/in.h>
41#include <linux/ip.h>
Santiago Leonab78df72010-09-03 18:28:52 +000042#include <linux/ipv6.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090043#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <asm/hvcall.h>
45#include <asm/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <asm/vio.h>
Robert Jennings1096d632008-07-24 04:34:52 +100047#include <asm/iommu.h>
Robert Jennings1096d632008-07-24 04:34:52 +100048#include <asm/firmware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50#include "ibmveth.h"
51
David Howells7d12e782006-10-05 14:55:46 +010052static irqreturn_t ibmveth_interrupt(int irq, void *dev_instance);
Michael Ellerman493a6842007-04-17 13:12:55 +100053static void ibmveth_rxq_harvest_buffer(struct ibmveth_adapter *adapter);
Robert Jennings1096d632008-07-24 04:34:52 +100054static unsigned long ibmveth_get_desired_dma(struct vio_dev *vdev);
Santiago Leone295fe82010-09-03 18:29:08 +000055
Santiago Leon860f2422006-04-25 11:19:59 -050056static struct kobj_type ktype_veth_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Robert Jennings1096d632008-07-24 04:34:52 +100058
Linus Torvalds1da177e2005-04-16 15:20:36 -070059static const char ibmveth_driver_name[] = "ibmveth";
Santiago Leon9d348af2010-09-03 18:29:53 +000060static const char ibmveth_driver_string[] = "IBM Power Virtual Ethernet Driver";
61#define ibmveth_driver_version "1.04"
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Santiago Leon9d348af2010-09-03 18:29:53 +000063MODULE_AUTHOR("Santiago Leon <santil@linux.vnet.ibm.com>");
64MODULE_DESCRIPTION("IBM Power Virtual Ethernet Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070065MODULE_LICENSE("GPL");
66MODULE_VERSION(ibmveth_driver_version);
67
Santiago Leonc08cc3c2010-09-03 18:28:20 +000068static unsigned int tx_copybreak __read_mostly = 128;
69module_param(tx_copybreak, uint, 0644);
70MODULE_PARM_DESC(tx_copybreak,
71 "Maximum size of packet that is copied to a new buffer on transmit");
72
Santiago Leon8d86c612010-09-03 18:28:25 +000073static unsigned int rx_copybreak __read_mostly = 128;
74module_param(rx_copybreak, uint, 0644);
75MODULE_PARM_DESC(rx_copybreak,
76 "Maximum size of packet that is copied to a new buffer on receive");
77
Santiago Leon0c26b672010-09-03 18:28:41 +000078static unsigned int rx_flush __read_mostly = 0;
79module_param(rx_flush, uint, 0644);
80MODULE_PARM_DESC(rx_flush, "Flush receive buffers before use");
81
Brian Kingddbb4de2007-08-17 09:16:43 -050082struct ibmveth_stat {
83 char name[ETH_GSTRING_LEN];
84 int offset;
85};
86
87#define IBMVETH_STAT_OFF(stat) offsetof(struct ibmveth_adapter, stat)
88#define IBMVETH_GET_STAT(a, off) *((u64 *)(((unsigned long)(a)) + off))
89
90struct ibmveth_stat ibmveth_stats[] = {
91 { "replenish_task_cycles", IBMVETH_STAT_OFF(replenish_task_cycles) },
92 { "replenish_no_mem", IBMVETH_STAT_OFF(replenish_no_mem) },
Santiago Leonf148f612010-09-03 18:29:30 +000093 { "replenish_add_buff_failure",
94 IBMVETH_STAT_OFF(replenish_add_buff_failure) },
95 { "replenish_add_buff_success",
96 IBMVETH_STAT_OFF(replenish_add_buff_success) },
Brian Kingddbb4de2007-08-17 09:16:43 -050097 { "rx_invalid_buffer", IBMVETH_STAT_OFF(rx_invalid_buffer) },
98 { "rx_no_buffer", IBMVETH_STAT_OFF(rx_no_buffer) },
Brian Kingddbb4de2007-08-17 09:16:43 -050099 { "tx_map_failed", IBMVETH_STAT_OFF(tx_map_failed) },
100 { "tx_send_failed", IBMVETH_STAT_OFF(tx_send_failed) },
Santiago Leonab78df72010-09-03 18:28:52 +0000101 { "fw_enabled_ipv4_csum", IBMVETH_STAT_OFF(fw_ipv4_csum_support) },
102 { "fw_enabled_ipv6_csum", IBMVETH_STAT_OFF(fw_ipv6_csum_support) },
Brian Kingddbb4de2007-08-17 09:16:43 -0500103};
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105/* simple methods of getting data from the current rxq entry */
Brian King79ef4a42007-08-17 09:16:56 -0500106static inline u32 ibmveth_rxq_flags(struct ibmveth_adapter *adapter)
107{
108 return adapter->rx_queue.queue_addr[adapter->rx_queue.index].flags_off;
109}
110
111static inline int ibmveth_rxq_toggle(struct ibmveth_adapter *adapter)
112{
Santiago Leonf148f612010-09-03 18:29:30 +0000113 return (ibmveth_rxq_flags(adapter) & IBMVETH_RXQ_TOGGLE) >>
114 IBMVETH_RXQ_TOGGLE_SHIFT;
Brian King79ef4a42007-08-17 09:16:56 -0500115}
116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117static inline int ibmveth_rxq_pending_buffer(struct ibmveth_adapter *adapter)
118{
Santiago Leonf148f612010-09-03 18:29:30 +0000119 return ibmveth_rxq_toggle(adapter) == adapter->rx_queue.toggle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120}
121
122static inline int ibmveth_rxq_buffer_valid(struct ibmveth_adapter *adapter)
123{
Santiago Leonf148f612010-09-03 18:29:30 +0000124 return ibmveth_rxq_flags(adapter) & IBMVETH_RXQ_VALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125}
126
127static inline int ibmveth_rxq_frame_offset(struct ibmveth_adapter *adapter)
128{
Santiago Leonf148f612010-09-03 18:29:30 +0000129 return ibmveth_rxq_flags(adapter) & IBMVETH_RXQ_OFF_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130}
131
132static inline int ibmveth_rxq_frame_length(struct ibmveth_adapter *adapter)
133{
Santiago Leonf148f612010-09-03 18:29:30 +0000134 return adapter->rx_queue.queue_addr[adapter->rx_queue.index].length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135}
136
Brian Kingf4ff2872007-09-15 13:36:07 -0700137static inline int ibmveth_rxq_csum_good(struct ibmveth_adapter *adapter)
138{
Santiago Leonf148f612010-09-03 18:29:30 +0000139 return ibmveth_rxq_flags(adapter) & IBMVETH_RXQ_CSUM_GOOD;
Brian Kingf4ff2872007-09-15 13:36:07 -0700140}
141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142/* setup the initial settings for a buffer pool */
Santiago Leonf148f612010-09-03 18:29:30 +0000143static void ibmveth_init_buffer_pool(struct ibmveth_buff_pool *pool,
144 u32 pool_index, u32 pool_size,
145 u32 buff_size, u32 pool_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
147 pool->size = pool_size;
148 pool->index = pool_index;
149 pool->buff_size = buff_size;
Santiago Leonc033a6d2010-09-03 18:28:09 +0000150 pool->threshold = pool_size * 7 / 8;
Santiago Leon860f2422006-04-25 11:19:59 -0500151 pool->active = pool_active;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152}
153
154/* allocate and setup an buffer pool - called during open */
155static int ibmveth_alloc_buffer_pool(struct ibmveth_buff_pool *pool)
156{
157 int i;
158
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400159 pool->free_map = kmalloc(sizeof(u16) * pool->size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Santiago Leonf148f612010-09-03 18:29:30 +0000161 if (!pool->free_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400164 pool->dma_addr = kmalloc(sizeof(dma_addr_t) * pool->size, GFP_KERNEL);
Santiago Leonf148f612010-09-03 18:29:30 +0000165 if (!pool->dma_addr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 kfree(pool->free_map);
167 pool->free_map = NULL;
168 return -1;
169 }
170
Julia Lawalla05abcb2010-05-13 10:06:01 +0000171 pool->skbuff = kcalloc(pool->size, sizeof(void *), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Santiago Leonf148f612010-09-03 18:29:30 +0000173 if (!pool->skbuff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 kfree(pool->dma_addr);
175 pool->dma_addr = NULL;
176
177 kfree(pool->free_map);
178 pool->free_map = NULL;
179 return -1;
180 }
181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 memset(pool->dma_addr, 0, sizeof(dma_addr_t) * pool->size);
183
Santiago Leonf148f612010-09-03 18:29:30 +0000184 for (i = 0; i < pool->size; ++i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 pool->free_map[i] = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187 atomic_set(&pool->available, 0);
188 pool->producer_index = 0;
189 pool->consumer_index = 0;
190
191 return 0;
192}
193
Santiago Leon0c26b672010-09-03 18:28:41 +0000194static inline void ibmveth_flush_buffer(void *addr, unsigned long length)
195{
196 unsigned long offset;
197
198 for (offset = 0; offset < length; offset += SMP_CACHE_BYTES)
199 asm("dcbfl %0,%1" :: "b" (addr), "r" (offset));
200}
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202/* replenish the buffers for a pool. note that we don't need to
203 * skb_reserve these since they are used for incoming...
204 */
Santiago Leonf148f612010-09-03 18:29:30 +0000205static void ibmveth_replenish_buffer_pool(struct ibmveth_adapter *adapter,
206 struct ibmveth_buff_pool *pool)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207{
208 u32 i;
209 u32 count = pool->size - atomic_read(&pool->available);
210 u32 buffers_added = 0;
Robert Jennings1096d632008-07-24 04:34:52 +1000211 struct sk_buff *skb;
212 unsigned int free_index, index;
213 u64 correlator;
214 unsigned long lpar_rc;
215 dma_addr_t dma_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217 mb();
218
Santiago Leonf148f612010-09-03 18:29:30 +0000219 for (i = 0; i < count; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 union ibmveth_buf_desc desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Santiago Leon003212c2010-09-03 18:29:03 +0000222 skb = netdev_alloc_skb(adapter->netdev, pool->buff_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Santiago Leonf148f612010-09-03 18:29:30 +0000224 if (!skb) {
Santiago Leonc43ced12010-09-03 18:29:14 +0000225 netdev_dbg(adapter->netdev,
226 "replenish: unable to allocate skb\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 adapter->replenish_no_mem++;
228 break;
229 }
230
David Gibson047a66d2006-10-21 10:24:13 -0700231 free_index = pool->consumer_index;
Santiago Leona613f582010-09-03 18:28:04 +0000232 pool->consumer_index++;
233 if (pool->consumer_index >= pool->size)
234 pool->consumer_index = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 index = pool->free_map[free_index];
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400236
Santiago Leon64859112010-09-03 18:29:41 +0000237 BUG_ON(index == IBM_VETH_INVALID_MAP);
238 BUG_ON(pool->skbuff[index] != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240 dma_addr = dma_map_single(&adapter->vdev->dev, skb->data,
241 pool->buff_size, DMA_FROM_DEVICE);
242
Stephen Rothwellc713e7c2008-07-28 02:14:24 +1000243 if (dma_mapping_error(&adapter->vdev->dev, dma_addr))
Robert Jennings1096d632008-07-24 04:34:52 +1000244 goto failure;
245
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 pool->free_map[free_index] = IBM_VETH_INVALID_MAP;
247 pool->dma_addr[index] = dma_addr;
248 pool->skbuff[index] = skb;
249
250 correlator = ((u64)pool->index << 32) | index;
Santiago Leonf148f612010-09-03 18:29:30 +0000251 *(u64 *)skb->data = correlator;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Brian King79ef4a42007-08-17 09:16:56 -0500253 desc.fields.flags_len = IBMVETH_BUF_VALID | pool->buff_size;
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400254 desc.fields.address = dma_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Santiago Leon0c26b672010-09-03 18:28:41 +0000256 if (rx_flush) {
257 unsigned int len = min(pool->buff_size,
258 adapter->netdev->mtu +
259 IBMVETH_BUFF_OH);
260 ibmveth_flush_buffer(skb->data, len);
261 }
Santiago Leonf148f612010-09-03 18:29:30 +0000262 lpar_rc = h_add_logical_lan_buffer(adapter->vdev->unit_address,
263 desc.desc);
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400264
Santiago Leonf148f612010-09-03 18:29:30 +0000265 if (lpar_rc != H_SUCCESS) {
Robert Jennings1096d632008-07-24 04:34:52 +1000266 goto failure;
Santiago Leonf148f612010-09-03 18:29:30 +0000267 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 buffers_added++;
269 adapter->replenish_add_buff_success++;
270 }
271 }
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 mb();
274 atomic_add(buffers_added, &(pool->available));
Robert Jennings1096d632008-07-24 04:34:52 +1000275 return;
276
277failure:
278 pool->free_map[free_index] = index;
279 pool->skbuff[index] = NULL;
280 if (pool->consumer_index == 0)
281 pool->consumer_index = pool->size - 1;
282 else
283 pool->consumer_index--;
Stephen Rothwellc713e7c2008-07-28 02:14:24 +1000284 if (!dma_mapping_error(&adapter->vdev->dev, dma_addr))
Robert Jennings1096d632008-07-24 04:34:52 +1000285 dma_unmap_single(&adapter->vdev->dev,
286 pool->dma_addr[index], pool->buff_size,
287 DMA_FROM_DEVICE);
288 dev_kfree_skb_any(skb);
289 adapter->replenish_add_buff_failure++;
290
291 mb();
292 atomic_add(buffers_added, &(pool->available));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293}
294
Santiago Leone2adbcb2005-10-26 10:47:08 -0600295/* replenish routine */
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400296static void ibmveth_replenish_task(struct ibmveth_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297{
Santiago Leonb6d35182005-10-26 10:47:01 -0600298 int i;
299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 adapter->replenish_task_cycles++;
301
Santiago Leon517e80e2010-09-03 18:29:25 +0000302 for (i = (IBMVETH_NUM_BUFF_POOLS - 1); i >= 0; i--) {
Santiago Leonc033a6d2010-09-03 18:28:09 +0000303 struct ibmveth_buff_pool *pool = &adapter->rx_buff_pool[i];
304
305 if (pool->active &&
306 (atomic_read(&pool->available) < pool->threshold))
307 ibmveth_replenish_buffer_pool(adapter, pool);
308 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Santiago Leonf148f612010-09-03 18:29:30 +0000310 adapter->rx_no_buffer = *(u64 *)(((char*)adapter->buffer_list_addr) +
311 4096 - 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312}
313
314/* empty and free ana buffer pool - also used to do cleanup in error paths */
Santiago Leonf148f612010-09-03 18:29:30 +0000315static void ibmveth_free_buffer_pool(struct ibmveth_adapter *adapter,
316 struct ibmveth_buff_pool *pool)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317{
318 int i;
319
Jesper Juhlb4558ea2005-10-28 16:53:13 -0400320 kfree(pool->free_map);
321 pool->free_map = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Santiago Leonf148f612010-09-03 18:29:30 +0000323 if (pool->skbuff && pool->dma_addr) {
324 for (i = 0; i < pool->size; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 struct sk_buff *skb = pool->skbuff[i];
Santiago Leonf148f612010-09-03 18:29:30 +0000326 if (skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 dma_unmap_single(&adapter->vdev->dev,
328 pool->dma_addr[i],
329 pool->buff_size,
330 DMA_FROM_DEVICE);
331 dev_kfree_skb_any(skb);
332 pool->skbuff[i] = NULL;
333 }
334 }
335 }
336
Santiago Leonf148f612010-09-03 18:29:30 +0000337 if (pool->dma_addr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 kfree(pool->dma_addr);
339 pool->dma_addr = NULL;
340 }
341
Santiago Leonf148f612010-09-03 18:29:30 +0000342 if (pool->skbuff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 kfree(pool->skbuff);
344 pool->skbuff = NULL;
345 }
346}
347
348/* remove a buffer from a pool */
Santiago Leonf148f612010-09-03 18:29:30 +0000349static void ibmveth_remove_buffer_from_pool(struct ibmveth_adapter *adapter,
350 u64 correlator)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351{
352 unsigned int pool = correlator >> 32;
353 unsigned int index = correlator & 0xffffffffUL;
354 unsigned int free_index;
355 struct sk_buff *skb;
356
Santiago Leon64859112010-09-03 18:29:41 +0000357 BUG_ON(pool >= IBMVETH_NUM_BUFF_POOLS);
358 BUG_ON(index >= adapter->rx_buff_pool[pool].size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
360 skb = adapter->rx_buff_pool[pool].skbuff[index];
361
Santiago Leon64859112010-09-03 18:29:41 +0000362 BUG_ON(skb == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
364 adapter->rx_buff_pool[pool].skbuff[index] = NULL;
365
366 dma_unmap_single(&adapter->vdev->dev,
367 adapter->rx_buff_pool[pool].dma_addr[index],
368 adapter->rx_buff_pool[pool].buff_size,
369 DMA_FROM_DEVICE);
370
David Gibson047a66d2006-10-21 10:24:13 -0700371 free_index = adapter->rx_buff_pool[pool].producer_index;
Santiago Leona613f582010-09-03 18:28:04 +0000372 adapter->rx_buff_pool[pool].producer_index++;
373 if (adapter->rx_buff_pool[pool].producer_index >=
374 adapter->rx_buff_pool[pool].size)
375 adapter->rx_buff_pool[pool].producer_index = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 adapter->rx_buff_pool[pool].free_map[free_index] = index;
377
378 mb();
379
380 atomic_dec(&(adapter->rx_buff_pool[pool].available));
381}
382
383/* get the current buffer on the rx queue */
384static inline struct sk_buff *ibmveth_rxq_get_buffer(struct ibmveth_adapter *adapter)
385{
386 u64 correlator = adapter->rx_queue.queue_addr[adapter->rx_queue.index].correlator;
387 unsigned int pool = correlator >> 32;
388 unsigned int index = correlator & 0xffffffffUL;
389
Santiago Leon64859112010-09-03 18:29:41 +0000390 BUG_ON(pool >= IBMVETH_NUM_BUFF_POOLS);
391 BUG_ON(index >= adapter->rx_buff_pool[pool].size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
393 return adapter->rx_buff_pool[pool].skbuff[index];
394}
395
396/* recycle the current buffer on the rx queue */
397static void ibmveth_rxq_recycle_buffer(struct ibmveth_adapter *adapter)
398{
399 u32 q_index = adapter->rx_queue.index;
400 u64 correlator = adapter->rx_queue.queue_addr[q_index].correlator;
401 unsigned int pool = correlator >> 32;
402 unsigned int index = correlator & 0xffffffffUL;
403 union ibmveth_buf_desc desc;
404 unsigned long lpar_rc;
405
Santiago Leon64859112010-09-03 18:29:41 +0000406 BUG_ON(pool >= IBMVETH_NUM_BUFF_POOLS);
407 BUG_ON(index >= adapter->rx_buff_pool[pool].size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Santiago Leonf148f612010-09-03 18:29:30 +0000409 if (!adapter->rx_buff_pool[pool].active) {
Santiago Leonb6d35182005-10-26 10:47:01 -0600410 ibmveth_rxq_harvest_buffer(adapter);
411 ibmveth_free_buffer_pool(adapter, &adapter->rx_buff_pool[pool]);
412 return;
413 }
414
Brian King79ef4a42007-08-17 09:16:56 -0500415 desc.fields.flags_len = IBMVETH_BUF_VALID |
416 adapter->rx_buff_pool[pool].buff_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 desc.fields.address = adapter->rx_buff_pool[pool].dma_addr[index];
418
419 lpar_rc = h_add_logical_lan_buffer(adapter->vdev->unit_address, desc.desc);
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400420
Santiago Leonf148f612010-09-03 18:29:30 +0000421 if (lpar_rc != H_SUCCESS) {
Santiago Leonc43ced12010-09-03 18:29:14 +0000422 netdev_dbg(adapter->netdev, "h_add_logical_lan_buffer failed "
423 "during recycle rc=%ld", lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 ibmveth_remove_buffer_from_pool(adapter, adapter->rx_queue.queue_addr[adapter->rx_queue.index].correlator);
425 }
426
Santiago Leonf148f612010-09-03 18:29:30 +0000427 if (++adapter->rx_queue.index == adapter->rx_queue.num_slots) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 adapter->rx_queue.index = 0;
429 adapter->rx_queue.toggle = !adapter->rx_queue.toggle;
430 }
431}
432
Michael Ellerman493a6842007-04-17 13:12:55 +1000433static void ibmveth_rxq_harvest_buffer(struct ibmveth_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
435 ibmveth_remove_buffer_from_pool(adapter, adapter->rx_queue.queue_addr[adapter->rx_queue.index].correlator);
436
Santiago Leonf148f612010-09-03 18:29:30 +0000437 if (++adapter->rx_queue.index == adapter->rx_queue.num_slots) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 adapter->rx_queue.index = 0;
439 adapter->rx_queue.toggle = !adapter->rx_queue.toggle;
440 }
441}
442
443static void ibmveth_cleanup(struct ibmveth_adapter *adapter)
444{
Santiago Leonb6d35182005-10-26 10:47:01 -0600445 int i;
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700446 struct device *dev = &adapter->vdev->dev;
Santiago Leonb6d35182005-10-26 10:47:01 -0600447
Santiago Leonf148f612010-09-03 18:29:30 +0000448 if (adapter->buffer_list_addr != NULL) {
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700449 if (!dma_mapping_error(dev, adapter->buffer_list_dma)) {
450 dma_unmap_single(dev, adapter->buffer_list_dma, 4096,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 DMA_BIDIRECTIONAL);
452 adapter->buffer_list_dma = DMA_ERROR_CODE;
453 }
454 free_page((unsigned long)adapter->buffer_list_addr);
455 adapter->buffer_list_addr = NULL;
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400456 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
Santiago Leonf148f612010-09-03 18:29:30 +0000458 if (adapter->filter_list_addr != NULL) {
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700459 if (!dma_mapping_error(dev, adapter->filter_list_dma)) {
460 dma_unmap_single(dev, adapter->filter_list_dma, 4096,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 DMA_BIDIRECTIONAL);
462 adapter->filter_list_dma = DMA_ERROR_CODE;
463 }
464 free_page((unsigned long)adapter->filter_list_addr);
465 adapter->filter_list_addr = NULL;
466 }
467
Santiago Leonf148f612010-09-03 18:29:30 +0000468 if (adapter->rx_queue.queue_addr != NULL) {
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700469 if (!dma_mapping_error(dev, adapter->rx_queue.queue_dma)) {
470 dma_unmap_single(dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 adapter->rx_queue.queue_dma,
472 adapter->rx_queue.queue_len,
473 DMA_BIDIRECTIONAL);
474 adapter->rx_queue.queue_dma = DMA_ERROR_CODE;
475 }
476 kfree(adapter->rx_queue.queue_addr);
477 adapter->rx_queue.queue_addr = NULL;
478 }
479
Santiago Leonf148f612010-09-03 18:29:30 +0000480 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++)
Santiago Leon860f2422006-04-25 11:19:59 -0500481 if (adapter->rx_buff_pool[i].active)
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400482 ibmveth_free_buffer_pool(adapter,
Santiago Leon860f2422006-04-25 11:19:59 -0500483 &adapter->rx_buff_pool[i]);
Robert Jennings1096d632008-07-24 04:34:52 +1000484
485 if (adapter->bounce_buffer != NULL) {
Stephen Rothwellc713e7c2008-07-28 02:14:24 +1000486 if (!dma_mapping_error(dev, adapter->bounce_buffer_dma)) {
Robert Jennings1096d632008-07-24 04:34:52 +1000487 dma_unmap_single(&adapter->vdev->dev,
488 adapter->bounce_buffer_dma,
489 adapter->netdev->mtu + IBMVETH_BUFF_OH,
490 DMA_BIDIRECTIONAL);
491 adapter->bounce_buffer_dma = DMA_ERROR_CODE;
492 }
493 kfree(adapter->bounce_buffer);
494 adapter->bounce_buffer = NULL;
495 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496}
497
Michael Ellermanbbedefc2006-10-03 12:24:23 -0500498static int ibmveth_register_logical_lan(struct ibmveth_adapter *adapter,
499 union ibmveth_buf_desc rxq_desc, u64 mac_address)
500{
501 int rc, try_again = 1;
502
Santiago Leonf148f612010-09-03 18:29:30 +0000503 /*
504 * After a kexec the adapter will still be open, so our attempt to
505 * open it will fail. So if we get a failure we free the adapter and
506 * try again, but only once.
507 */
Michael Ellermanbbedefc2006-10-03 12:24:23 -0500508retry:
509 rc = h_register_logical_lan(adapter->vdev->unit_address,
510 adapter->buffer_list_dma, rxq_desc.desc,
511 adapter->filter_list_dma, mac_address);
512
513 if (rc != H_SUCCESS && try_again) {
514 do {
515 rc = h_free_logical_lan(adapter->vdev->unit_address);
516 } while (H_IS_LONG_BUSY(rc) || (rc == H_BUSY));
517
518 try_again = 0;
519 goto retry;
520 }
521
522 return rc;
523}
524
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525static int ibmveth_open(struct net_device *netdev)
526{
Wang Chen4cf16532008-11-12 23:38:14 -0800527 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 u64 mac_address = 0;
Santiago Leonb6d35182005-10-26 10:47:01 -0600529 int rxq_entries = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 unsigned long lpar_rc;
531 int rc;
532 union ibmveth_buf_desc rxq_desc;
Santiago Leonb6d35182005-10-26 10:47:01 -0600533 int i;
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700534 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
Santiago Leonc43ced12010-09-03 18:29:14 +0000536 netdev_dbg(netdev, "open starting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700538 napi_enable(&adapter->napi);
539
Santiago Leon517e80e2010-09-03 18:29:25 +0000540 for(i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++)
Santiago Leonb6d35182005-10-26 10:47:01 -0600541 rxq_entries += adapter->rx_buff_pool[i].size;
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400542
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 adapter->buffer_list_addr = (void*) get_zeroed_page(GFP_KERNEL);
544 adapter->filter_list_addr = (void*) get_zeroed_page(GFP_KERNEL);
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400545
Santiago Leonf148f612010-09-03 18:29:30 +0000546 if (!adapter->buffer_list_addr || !adapter->filter_list_addr) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000547 netdev_err(netdev, "unable to allocate filter or buffer list "
548 "pages\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 ibmveth_cleanup(adapter);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700550 napi_disable(&adapter->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 return -ENOMEM;
552 }
553
Santiago Leonf148f612010-09-03 18:29:30 +0000554 adapter->rx_queue.queue_len = sizeof(struct ibmveth_rx_q_entry) *
555 rxq_entries;
556 adapter->rx_queue.queue_addr = kmalloc(adapter->rx_queue.queue_len,
557 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Santiago Leonf148f612010-09-03 18:29:30 +0000559 if (!adapter->rx_queue.queue_addr) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000560 netdev_err(netdev, "unable to allocate rx queue pages\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 ibmveth_cleanup(adapter);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700562 napi_disable(&adapter->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 return -ENOMEM;
564 }
565
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700566 dev = &adapter->vdev->dev;
567
568 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);
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700572 adapter->rx_queue.queue_dma = dma_map_single(dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 adapter->rx_queue.queue_addr,
574 adapter->rx_queue.queue_len, DMA_BIDIRECTIONAL);
575
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700576 if ((dma_mapping_error(dev, adapter->buffer_list_dma)) ||
577 (dma_mapping_error(dev, adapter->filter_list_dma)) ||
578 (dma_mapping_error(dev, adapter->rx_queue.queue_dma))) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000579 netdev_err(netdev, "unable to map filter or buffer list "
580 "pages\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 ibmveth_cleanup(adapter);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700582 napi_disable(&adapter->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 return -ENOMEM;
584 }
585
586 adapter->rx_queue.index = 0;
587 adapter->rx_queue.num_slots = rxq_entries;
588 adapter->rx_queue.toggle = 1;
589
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 memcpy(&mac_address, netdev->dev_addr, netdev->addr_len);
591 mac_address = mac_address >> 16;
592
Santiago Leonf148f612010-09-03 18:29:30 +0000593 rxq_desc.fields.flags_len = IBMVETH_BUF_VALID |
594 adapter->rx_queue.queue_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 rxq_desc.fields.address = adapter->rx_queue.queue_dma;
596
Santiago Leonc43ced12010-09-03 18:29:14 +0000597 netdev_dbg(netdev, "buffer list @ 0x%p\n", adapter->buffer_list_addr);
598 netdev_dbg(netdev, "filter list @ 0x%p\n", adapter->filter_list_addr);
599 netdev_dbg(netdev, "receive q @ 0x%p\n", adapter->rx_queue.queue_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Santiago Leon4347ef12006-10-03 12:24:34 -0500601 h_vio_signal(adapter->vdev->unit_address, VIO_IRQ_DISABLE);
602
Michael Ellermanbbedefc2006-10-03 12:24:23 -0500603 lpar_rc = ibmveth_register_logical_lan(adapter, rxq_desc, mac_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
Santiago Leonf148f612010-09-03 18:29:30 +0000605 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000606 netdev_err(netdev, "h_register_logical_lan failed with %ld\n",
607 lpar_rc);
608 netdev_err(netdev, "buffer TCE:0x%llx filter TCE:0x%llx rxq "
609 "desc:0x%llx MAC:0x%llx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 adapter->buffer_list_dma,
611 adapter->filter_list_dma,
612 rxq_desc.desc,
613 mac_address);
614 ibmveth_cleanup(adapter);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700615 napi_disable(&adapter->napi);
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400616 return -ENONET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 }
618
Santiago Leonf148f612010-09-03 18:29:30 +0000619 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++) {
620 if (!adapter->rx_buff_pool[i].active)
Santiago Leon860f2422006-04-25 11:19:59 -0500621 continue;
622 if (ibmveth_alloc_buffer_pool(&adapter->rx_buff_pool[i])) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000623 netdev_err(netdev, "unable to alloc pool\n");
Santiago Leon860f2422006-04-25 11:19:59 -0500624 adapter->rx_buff_pool[i].active = 0;
625 ibmveth_cleanup(adapter);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700626 napi_disable(&adapter->napi);
Santiago Leon860f2422006-04-25 11:19:59 -0500627 return -ENOMEM ;
628 }
629 }
630
Santiago Leonc43ced12010-09-03 18:29:14 +0000631 netdev_dbg(netdev, "registering irq 0x%x\n", netdev->irq);
Santiago Leonf148f612010-09-03 18:29:30 +0000632 rc = request_irq(netdev->irq, ibmveth_interrupt, 0, netdev->name,
633 netdev);
634 if (rc != 0) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000635 netdev_err(netdev, "unable to request irq 0x%x, rc %d\n",
636 netdev->irq, rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 do {
638 rc = h_free_logical_lan(adapter->vdev->unit_address);
Segher Boessenkool706c8c92006-03-30 14:49:40 +0200639 } while (H_IS_LONG_BUSY(rc) || (rc == H_BUSY));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
641 ibmveth_cleanup(adapter);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700642 napi_disable(&adapter->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 return rc;
644 }
645
Robert Jennings1096d632008-07-24 04:34:52 +1000646 adapter->bounce_buffer =
647 kmalloc(netdev->mtu + IBMVETH_BUFF_OH, GFP_KERNEL);
648 if (!adapter->bounce_buffer) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000649 netdev_err(netdev, "unable to allocate bounce buffer\n");
Robert Jennings1096d632008-07-24 04:34:52 +1000650 ibmveth_cleanup(adapter);
651 napi_disable(&adapter->napi);
652 return -ENOMEM;
653 }
654 adapter->bounce_buffer_dma =
655 dma_map_single(&adapter->vdev->dev, adapter->bounce_buffer,
656 netdev->mtu + IBMVETH_BUFF_OH, DMA_BIDIRECTIONAL);
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700657 if (dma_mapping_error(dev, adapter->bounce_buffer_dma)) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000658 netdev_err(netdev, "unable to map bounce buffer\n");
Robert Jennings1096d632008-07-24 04:34:52 +1000659 ibmveth_cleanup(adapter);
660 napi_disable(&adapter->napi);
661 return -ENOMEM;
662 }
663
Santiago Leonc43ced12010-09-03 18:29:14 +0000664 netdev_dbg(netdev, "initial replenish cycle\n");
David Howells7d12e782006-10-05 14:55:46 +0100665 ibmveth_interrupt(netdev->irq, netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
Santiago Leone2adbcb2005-10-26 10:47:08 -0600667 netif_start_queue(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
Santiago Leonc43ced12010-09-03 18:29:14 +0000669 netdev_dbg(netdev, "open complete\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
671 return 0;
672}
673
674static int ibmveth_close(struct net_device *netdev)
675{
Wang Chen4cf16532008-11-12 23:38:14 -0800676 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 long lpar_rc;
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400678
Santiago Leonc43ced12010-09-03 18:29:14 +0000679 netdev_dbg(netdev, "close starting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700681 napi_disable(&adapter->napi);
682
Santiago Leon860f2422006-04-25 11:19:59 -0500683 if (!adapter->pool_config)
684 netif_stop_queue(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Robert Jenningsee2e6112010-07-16 04:57:25 +0000686 h_vio_signal(adapter->vdev->unit_address, VIO_IRQ_DISABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 do {
689 lpar_rc = h_free_logical_lan(adapter->vdev->unit_address);
Segher Boessenkool706c8c92006-03-30 14:49:40 +0200690 } while (H_IS_LONG_BUSY(lpar_rc) || (lpar_rc == H_BUSY));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
Santiago Leonf148f612010-09-03 18:29:30 +0000692 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000693 netdev_err(netdev, "h_free_logical_lan failed with %lx, "
694 "continuing with close\n", lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 }
696
Robert Jenningsee2e6112010-07-16 04:57:25 +0000697 free_irq(netdev->irq, netdev);
698
Santiago Leonf148f612010-09-03 18:29:30 +0000699 adapter->rx_no_buffer = *(u64 *)(((char *)adapter->buffer_list_addr) +
700 4096 - 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
702 ibmveth_cleanup(adapter);
703
Santiago Leonc43ced12010-09-03 18:29:14 +0000704 netdev_dbg(netdev, "close complete\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
706 return 0;
707}
708
Santiago Leonf148f612010-09-03 18:29:30 +0000709static int netdev_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
710{
711 cmd->supported = (SUPPORTED_1000baseT_Full | SUPPORTED_Autoneg |
712 SUPPORTED_FIBRE);
713 cmd->advertising = (ADVERTISED_1000baseT_Full | ADVERTISED_Autoneg |
714 ADVERTISED_FIBRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 cmd->speed = SPEED_1000;
716 cmd->duplex = DUPLEX_FULL;
717 cmd->port = PORT_FIBRE;
718 cmd->phy_address = 0;
719 cmd->transceiver = XCVR_INTERNAL;
720 cmd->autoneg = AUTONEG_ENABLE;
721 cmd->maxtxpkt = 0;
722 cmd->maxrxpkt = 1;
723 return 0;
724}
725
Santiago Leonf148f612010-09-03 18:29:30 +0000726static void netdev_get_drvinfo(struct net_device *dev,
727 struct ethtool_drvinfo *info)
728{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 strncpy(info->driver, ibmveth_driver_name, sizeof(info->driver) - 1);
Santiago Leonf148f612010-09-03 18:29:30 +0000730 strncpy(info->version, ibmveth_driver_version,
731 sizeof(info->version) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732}
733
Santiago Leonf148f612010-09-03 18:29:30 +0000734static u32 netdev_get_link(struct net_device *dev)
735{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 return 1;
737}
738
Brian King5fc7e012007-08-17 09:16:31 -0500739static void ibmveth_set_rx_csum_flags(struct net_device *dev, u32 data)
740{
Wang Chen4cf16532008-11-12 23:38:14 -0800741 struct ibmveth_adapter *adapter = netdev_priv(dev);
Brian King5fc7e012007-08-17 09:16:31 -0500742
Santiago Leonf148f612010-09-03 18:29:30 +0000743 if (data) {
Brian King5fc7e012007-08-17 09:16:31 -0500744 adapter->rx_csum = 1;
Santiago Leonf148f612010-09-03 18:29:30 +0000745 } else {
Brian King5fc7e012007-08-17 09:16:31 -0500746 /*
Santiago Leonf148f612010-09-03 18:29:30 +0000747 * Since the ibmveth firmware interface does not have the
748 * concept of separate tx/rx checksum offload enable, if rx
749 * checksum is disabled we also have to disable tx checksum
750 * offload. Once we disable rx checksum offload, we are no
751 * longer allowed to send tx buffers that are not properly
752 * checksummed.
Brian King5fc7e012007-08-17 09:16:31 -0500753 */
754 adapter->rx_csum = 0;
755 dev->features &= ~NETIF_F_IP_CSUM;
Santiago Leonab78df72010-09-03 18:28:52 +0000756 dev->features &= ~NETIF_F_IPV6_CSUM;
Brian King5fc7e012007-08-17 09:16:31 -0500757 }
758}
759
760static void ibmveth_set_tx_csum_flags(struct net_device *dev, u32 data)
761{
Wang Chen4cf16532008-11-12 23:38:14 -0800762 struct ibmveth_adapter *adapter = netdev_priv(dev);
Brian King5fc7e012007-08-17 09:16:31 -0500763
764 if (data) {
Santiago Leonab78df72010-09-03 18:28:52 +0000765 if (adapter->fw_ipv4_csum_support)
766 dev->features |= NETIF_F_IP_CSUM;
767 if (adapter->fw_ipv6_csum_support)
768 dev->features |= NETIF_F_IPV6_CSUM;
Brian King5fc7e012007-08-17 09:16:31 -0500769 adapter->rx_csum = 1;
Santiago Leonab78df72010-09-03 18:28:52 +0000770 } else {
Brian King5fc7e012007-08-17 09:16:31 -0500771 dev->features &= ~NETIF_F_IP_CSUM;
Santiago Leonab78df72010-09-03 18:28:52 +0000772 dev->features &= ~NETIF_F_IPV6_CSUM;
773 }
Brian King5fc7e012007-08-17 09:16:31 -0500774}
775
776static int ibmveth_set_csum_offload(struct net_device *dev, u32 data,
777 void (*done) (struct net_device *, u32))
778{
Wang Chen4cf16532008-11-12 23:38:14 -0800779 struct ibmveth_adapter *adapter = netdev_priv(dev);
Stephen Rothwellff5bfc32009-01-06 10:47:44 -0800780 unsigned long set_attr, clr_attr, ret_attr;
Santiago Leonab78df72010-09-03 18:28:52 +0000781 unsigned long set_attr6, clr_attr6;
782 long ret, ret6;
Brian King5fc7e012007-08-17 09:16:31 -0500783 int rc1 = 0, rc2 = 0;
784 int restart = 0;
785
786 if (netif_running(dev)) {
787 restart = 1;
788 adapter->pool_config = 1;
789 ibmveth_close(dev);
790 adapter->pool_config = 0;
791 }
792
Brian King79ef4a42007-08-17 09:16:56 -0500793 set_attr = 0;
794 clr_attr = 0;
Brian King5fc7e012007-08-17 09:16:31 -0500795
Santiago Leonab78df72010-09-03 18:28:52 +0000796 if (data) {
Brian King79ef4a42007-08-17 09:16:56 -0500797 set_attr = IBMVETH_ILLAN_IPV4_TCP_CSUM;
Santiago Leonab78df72010-09-03 18:28:52 +0000798 set_attr6 = IBMVETH_ILLAN_IPV6_TCP_CSUM;
799 } else {
Brian King79ef4a42007-08-17 09:16:56 -0500800 clr_attr = IBMVETH_ILLAN_IPV4_TCP_CSUM;
Santiago Leonab78df72010-09-03 18:28:52 +0000801 clr_attr6 = IBMVETH_ILLAN_IPV6_TCP_CSUM;
802 }
Brian King5fc7e012007-08-17 09:16:31 -0500803
Brian King79ef4a42007-08-17 09:16:56 -0500804 ret = h_illan_attributes(adapter->vdev->unit_address, 0, 0, &ret_attr);
Brian King5fc7e012007-08-17 09:16:31 -0500805
Brian King79ef4a42007-08-17 09:16:56 -0500806 if (ret == H_SUCCESS && !(ret_attr & IBMVETH_ILLAN_ACTIVE_TRUNK) &&
807 !(ret_attr & IBMVETH_ILLAN_TRUNK_PRI_MASK) &&
808 (ret_attr & IBMVETH_ILLAN_PADDED_PKT_CSUM)) {
809 ret = h_illan_attributes(adapter->vdev->unit_address, clr_attr,
810 set_attr, &ret_attr);
Brian King5fc7e012007-08-17 09:16:31 -0500811
812 if (ret != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000813 netdev_err(dev, "unable to change IPv4 checksum "
814 "offload settings. %d rc=%ld\n",
815 data, ret);
Brian King5fc7e012007-08-17 09:16:31 -0500816
817 ret = h_illan_attributes(adapter->vdev->unit_address,
Brian King79ef4a42007-08-17 09:16:56 -0500818 set_attr, clr_attr, &ret_attr);
Santiago Leonf148f612010-09-03 18:29:30 +0000819 } else {
Santiago Leonab78df72010-09-03 18:28:52 +0000820 adapter->fw_ipv4_csum_support = data;
Santiago Leonf148f612010-09-03 18:29:30 +0000821 }
Santiago Leonab78df72010-09-03 18:28:52 +0000822
823 ret6 = h_illan_attributes(adapter->vdev->unit_address,
824 clr_attr6, set_attr6, &ret_attr);
825
826 if (ret6 != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000827 netdev_err(dev, "unable to change IPv6 checksum "
828 "offload settings. %d rc=%ld\n",
829 data, ret);
Santiago Leonab78df72010-09-03 18:28:52 +0000830
831 ret = h_illan_attributes(adapter->vdev->unit_address,
832 set_attr6, clr_attr6,
833 &ret_attr);
834 } else
835 adapter->fw_ipv6_csum_support = data;
836
837 if (ret == H_SUCCESS || ret6 == H_SUCCESS)
Brian King5fc7e012007-08-17 09:16:31 -0500838 done(dev, data);
Santiago Leonab78df72010-09-03 18:28:52 +0000839 else
840 rc1 = -EIO;
Brian King5fc7e012007-08-17 09:16:31 -0500841 } else {
842 rc1 = -EIO;
Santiago Leon21c2dec2010-09-03 18:29:19 +0000843 netdev_err(dev, "unable to change checksum offload settings."
844 " %d rc=%ld ret_attr=%lx\n", data, ret,
845 ret_attr);
Brian King5fc7e012007-08-17 09:16:31 -0500846 }
847
848 if (restart)
849 rc2 = ibmveth_open(dev);
850
851 return rc1 ? rc1 : rc2;
852}
853
854static int ibmveth_set_rx_csum(struct net_device *dev, u32 data)
855{
Wang Chen4cf16532008-11-12 23:38:14 -0800856 struct ibmveth_adapter *adapter = netdev_priv(dev);
Brian King5fc7e012007-08-17 09:16:31 -0500857
858 if ((data && adapter->rx_csum) || (!data && !adapter->rx_csum))
859 return 0;
860
861 return ibmveth_set_csum_offload(dev, data, ibmveth_set_rx_csum_flags);
862}
863
864static int ibmveth_set_tx_csum(struct net_device *dev, u32 data)
865{
Wang Chen4cf16532008-11-12 23:38:14 -0800866 struct ibmveth_adapter *adapter = netdev_priv(dev);
Brian King5fc7e012007-08-17 09:16:31 -0500867 int rc = 0;
868
Santiago Leonab78df72010-09-03 18:28:52 +0000869 if (data && (dev->features & (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM)))
Brian King5fc7e012007-08-17 09:16:31 -0500870 return 0;
Santiago Leonab78df72010-09-03 18:28:52 +0000871 if (!data && !(dev->features & (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM)))
Brian King5fc7e012007-08-17 09:16:31 -0500872 return 0;
873
874 if (data && !adapter->rx_csum)
Santiago Leonf148f612010-09-03 18:29:30 +0000875 rc = ibmveth_set_csum_offload(dev, data,
876 ibmveth_set_tx_csum_flags);
Brian King5fc7e012007-08-17 09:16:31 -0500877 else
878 ibmveth_set_tx_csum_flags(dev, data);
879
880 return rc;
881}
882
883static u32 ibmveth_get_rx_csum(struct net_device *dev)
884{
Wang Chen4cf16532008-11-12 23:38:14 -0800885 struct ibmveth_adapter *adapter = netdev_priv(dev);
Brian King5fc7e012007-08-17 09:16:31 -0500886 return adapter->rx_csum;
887}
888
Brian Kingddbb4de2007-08-17 09:16:43 -0500889static void ibmveth_get_strings(struct net_device *dev, u32 stringset, u8 *data)
890{
891 int i;
892
893 if (stringset != ETH_SS_STATS)
894 return;
895
896 for (i = 0; i < ARRAY_SIZE(ibmveth_stats); i++, data += ETH_GSTRING_LEN)
897 memcpy(data, ibmveth_stats[i].name, ETH_GSTRING_LEN);
898}
899
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700900static int ibmveth_get_sset_count(struct net_device *dev, int sset)
Brian Kingddbb4de2007-08-17 09:16:43 -0500901{
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700902 switch (sset) {
903 case ETH_SS_STATS:
904 return ARRAY_SIZE(ibmveth_stats);
905 default:
906 return -EOPNOTSUPP;
907 }
Brian Kingddbb4de2007-08-17 09:16:43 -0500908}
909
910static void ibmveth_get_ethtool_stats(struct net_device *dev,
911 struct ethtool_stats *stats, u64 *data)
912{
913 int i;
Wang Chen4cf16532008-11-12 23:38:14 -0800914 struct ibmveth_adapter *adapter = netdev_priv(dev);
Brian Kingddbb4de2007-08-17 09:16:43 -0500915
916 for (i = 0; i < ARRAY_SIZE(ibmveth_stats); i++)
917 data[i] = IBMVETH_GET_STAT(adapter, ibmveth_stats[i].offset);
918}
919
Jeff Garzik7282d492006-09-13 14:30:00 -0400920static const struct ethtool_ops netdev_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 .get_drvinfo = netdev_get_drvinfo,
922 .get_settings = netdev_get_settings,
923 .get_link = netdev_get_link,
Brian King5fc7e012007-08-17 09:16:31 -0500924 .set_tx_csum = ibmveth_set_tx_csum,
925 .get_rx_csum = ibmveth_get_rx_csum,
926 .set_rx_csum = ibmveth_set_rx_csum,
Brian Kingddbb4de2007-08-17 09:16:43 -0500927 .get_strings = ibmveth_get_strings,
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700928 .get_sset_count = ibmveth_get_sset_count,
Brian Kingddbb4de2007-08-17 09:16:43 -0500929 .get_ethtool_stats = ibmveth_get_ethtool_stats,
Santiago Leon6e8ab302010-09-03 18:28:36 +0000930 .set_sg = ethtool_op_set_sg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931};
932
933static int ibmveth_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
934{
935 return -EOPNOTSUPP;
936}
937
938#define page_offset(v) ((unsigned long)(v) & ((1 << 12) - 1))
939
Santiago Leon6e8ab302010-09-03 18:28:36 +0000940static int ibmveth_send(struct ibmveth_adapter *adapter,
941 union ibmveth_buf_desc *descs)
942{
943 unsigned long correlator;
944 unsigned int retry_count;
945 unsigned long ret;
946
947 /*
948 * The retry count sets a maximum for the number of broadcast and
949 * multicast destinations within the system.
950 */
951 retry_count = 1024;
952 correlator = 0;
953 do {
954 ret = h_send_logical_lan(adapter->vdev->unit_address,
955 descs[0].desc, descs[1].desc,
956 descs[2].desc, descs[3].desc,
957 descs[4].desc, descs[5].desc,
958 correlator, &correlator);
959 } while ((ret == H_BUSY) && (retry_count--));
960
961 if (ret != H_SUCCESS && ret != H_DROPPED) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000962 netdev_err(adapter->netdev, "tx: h_send_logical_lan failed "
963 "with rc=%ld\n", ret);
Santiago Leon6e8ab302010-09-03 18:28:36 +0000964 return 1;
965 }
966
967 return 0;
968}
969
Stephen Hemminger613573252009-08-31 19:50:58 +0000970static netdev_tx_t ibmveth_start_xmit(struct sk_buff *skb,
971 struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972{
Wang Chen4cf16532008-11-12 23:38:14 -0800973 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Santiago Leon6e8ab302010-09-03 18:28:36 +0000974 unsigned int desc_flags;
975 union ibmveth_buf_desc descs[6];
976 int last, i;
977 int force_bounce = 0;
Santiago Leon60296d92005-10-26 10:47:16 -0600978
Santiago Leon6e8ab302010-09-03 18:28:36 +0000979 /*
980 * veth handles a maximum of 6 segments including the header, so
981 * we have to linearize the skb if there are more than this.
982 */
983 if (skb_shinfo(skb)->nr_frags > 5 && __skb_linearize(skb)) {
984 netdev->stats.tx_dropped++;
Brian Kingf4ff2872007-09-15 13:36:07 -0700985 goto out;
986 }
987
Santiago Leon6e8ab302010-09-03 18:28:36 +0000988 /* veth can't checksum offload UDP */
989 if (skb->ip_summed == CHECKSUM_PARTIAL &&
Santiago Leonab78df72010-09-03 18:28:52 +0000990 ((skb->protocol == htons(ETH_P_IP) &&
991 ip_hdr(skb)->protocol != IPPROTO_TCP) ||
992 (skb->protocol == htons(ETH_P_IPV6) &&
993 ipv6_hdr(skb)->nexthdr != IPPROTO_TCP)) &&
994 skb_checksum_help(skb)) {
995
Santiago Leon21c2dec2010-09-03 18:29:19 +0000996 netdev_err(netdev, "tx: failed to checksum packet\n");
Santiago Leon6e8ab302010-09-03 18:28:36 +0000997 netdev->stats.tx_dropped++;
998 goto out;
999 }
Brian Kingf4ff2872007-09-15 13:36:07 -07001000
Santiago Leon6e8ab302010-09-03 18:28:36 +00001001 desc_flags = IBMVETH_BUF_VALID;
1002
1003 if (skb->ip_summed == CHECKSUM_PARTIAL) {
1004 unsigned char *buf = skb_transport_header(skb) +
1005 skb->csum_offset;
1006
1007 desc_flags |= (IBMVETH_BUF_NO_CSUM | IBMVETH_BUF_CSUM_GOOD);
Brian Kingf4ff2872007-09-15 13:36:07 -07001008
1009 /* Need to zero out the checksum */
1010 buf[0] = 0;
1011 buf[1] = 0;
1012 }
1013
Santiago Leon6e8ab302010-09-03 18:28:36 +00001014retry_bounce:
1015 memset(descs, 0, sizeof(descs));
Santiago Leonc08cc3c2010-09-03 18:28:20 +00001016
Santiago Leon6e8ab302010-09-03 18:28:36 +00001017 /*
1018 * If a linear packet is below the rx threshold then
1019 * copy it into the static bounce buffer. This avoids the
1020 * cost of a TCE insert and remove.
1021 */
1022 if (force_bounce || (!skb_is_nonlinear(skb) &&
1023 (skb->len < tx_copybreak))) {
Robert Jennings1096d632008-07-24 04:34:52 +10001024 skb_copy_from_linear_data(skb, adapter->bounce_buffer,
1025 skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
Santiago Leon6e8ab302010-09-03 18:28:36 +00001027 descs[0].fields.flags_len = desc_flags | skb->len;
1028 descs[0].fields.address = adapter->bounce_buffer_dma;
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001029
Santiago Leon6e8ab302010-09-03 18:28:36 +00001030 if (ibmveth_send(adapter, descs)) {
1031 adapter->tx_send_failed++;
1032 netdev->stats.tx_dropped++;
1033 } else {
1034 netdev->stats.tx_packets++;
1035 netdev->stats.tx_bytes += skb->len;
1036 }
1037
1038 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 }
1040
Santiago Leon6e8ab302010-09-03 18:28:36 +00001041 /* Map the header */
1042 descs[0].fields.address = dma_map_single(&adapter->vdev->dev, skb->data,
1043 skb_headlen(skb),
1044 DMA_TO_DEVICE);
1045 if (dma_mapping_error(&adapter->vdev->dev, descs[0].fields.address))
1046 goto map_failed;
1047
1048 descs[0].fields.flags_len = desc_flags | skb_headlen(skb);
1049
1050 /* Map the frags */
1051 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1052 unsigned long dma_addr;
1053 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1054
1055 dma_addr = dma_map_page(&adapter->vdev->dev, frag->page,
1056 frag->page_offset, frag->size,
1057 DMA_TO_DEVICE);
1058
1059 if (dma_mapping_error(&adapter->vdev->dev, dma_addr))
1060 goto map_failed_frags;
1061
1062 descs[i+1].fields.flags_len = desc_flags | frag->size;
1063 descs[i+1].fields.address = dma_addr;
1064 }
1065
1066 if (ibmveth_send(adapter, descs)) {
1067 adapter->tx_send_failed++;
1068 netdev->stats.tx_dropped++;
1069 } else {
1070 netdev->stats.tx_packets++;
1071 netdev->stats.tx_bytes += skb->len;
1072 }
1073
1074 for (i = 0; i < skb_shinfo(skb)->nr_frags + 1; i++)
1075 dma_unmap_page(&adapter->vdev->dev, descs[i].fields.address,
1076 descs[i].fields.flags_len & IBMVETH_BUF_LEN_MASK,
1077 DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
Santiago Leone8cb7eb2010-09-03 18:28:15 +00001079out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 dev_kfree_skb(skb);
Patrick McHardy6ed10652009-06-23 06:03:08 +00001081 return NETDEV_TX_OK;
Santiago Leon6e8ab302010-09-03 18:28:36 +00001082
1083map_failed_frags:
1084 last = i+1;
1085 for (i = 0; i < last; i++)
1086 dma_unmap_page(&adapter->vdev->dev, descs[i].fields.address,
1087 descs[i].fields.flags_len & IBMVETH_BUF_LEN_MASK,
1088 DMA_TO_DEVICE);
1089
1090map_failed:
1091 if (!firmware_has_feature(FW_FEATURE_CMO))
Santiago Leon21c2dec2010-09-03 18:29:19 +00001092 netdev_err(netdev, "tx: unable to map xmit buffer\n");
Santiago Leon6e8ab302010-09-03 18:28:36 +00001093 adapter->tx_map_failed++;
1094 skb_linearize(skb);
1095 force_bounce = 1;
1096 goto retry_bounce;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097}
1098
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001099static int ibmveth_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100{
Santiago Leonf148f612010-09-03 18:29:30 +00001101 struct ibmveth_adapter *adapter =
1102 container_of(napi, struct ibmveth_adapter, napi);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001103 struct net_device *netdev = adapter->netdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 int frames_processed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 unsigned long lpar_rc;
1106
Santiago Leonf148f612010-09-03 18:29:30 +00001107restart_poll:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 do {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001109 if (!ibmveth_rxq_pending_buffer(adapter))
1110 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
Anton Blanchardf89e49e2010-09-06 18:21:41 -07001112 smp_rmb();
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001113 if (!ibmveth_rxq_buffer_valid(adapter)) {
1114 wmb(); /* suggested by larson1 */
1115 adapter->rx_invalid_buffer++;
Santiago Leonc43ced12010-09-03 18:29:14 +00001116 netdev_dbg(netdev, "recycling invalid buffer\n");
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001117 ibmveth_rxq_recycle_buffer(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 } else {
Santiago Leon8d86c612010-09-03 18:28:25 +00001119 struct sk_buff *skb, *new_skb;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001120 int length = ibmveth_rxq_frame_length(adapter);
1121 int offset = ibmveth_rxq_frame_offset(adapter);
Brian Kingf4ff2872007-09-15 13:36:07 -07001122 int csum_good = ibmveth_rxq_csum_good(adapter);
1123
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001124 skb = ibmveth_rxq_get_buffer(adapter);
1125
Santiago Leon8d86c612010-09-03 18:28:25 +00001126 new_skb = NULL;
1127 if (length < rx_copybreak)
1128 new_skb = netdev_alloc_skb(netdev, length);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001129
Santiago Leon8d86c612010-09-03 18:28:25 +00001130 if (new_skb) {
1131 skb_copy_to_linear_data(new_skb,
1132 skb->data + offset,
1133 length);
Santiago Leon0c26b672010-09-03 18:28:41 +00001134 if (rx_flush)
1135 ibmveth_flush_buffer(skb->data,
1136 length + offset);
Santiago Leon8d86c612010-09-03 18:28:25 +00001137 skb = new_skb;
1138 ibmveth_rxq_recycle_buffer(adapter);
1139 } else {
1140 ibmveth_rxq_harvest_buffer(adapter);
1141 skb_reserve(skb, offset);
1142 }
1143
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001144 skb_put(skb, length);
1145 skb->protocol = eth_type_trans(skb, netdev);
1146
Santiago Leon8d86c612010-09-03 18:28:25 +00001147 if (csum_good)
1148 skb->ip_summed = CHECKSUM_UNNECESSARY;
1149
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001150 netif_receive_skb(skb); /* send it up */
1151
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001152 netdev->stats.rx_packets++;
1153 netdev->stats.rx_bytes += length;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001154 frames_processed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 }
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001156 } while (frames_processed < budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
Santiago Leone2adbcb2005-10-26 10:47:08 -06001158 ibmveth_replenish_task(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001160 if (frames_processed < budget) {
1161 /* We think we are done - reenable interrupts,
1162 * then check once more to make sure we are done.
1163 */
1164 lpar_rc = h_vio_signal(adapter->vdev->unit_address,
1165 VIO_IRQ_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166
Santiago Leon64859112010-09-03 18:29:41 +00001167 BUG_ON(lpar_rc != H_SUCCESS);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001168
Ben Hutchings288379f2009-01-19 16:43:59 -08001169 napi_complete(napi);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001170
1171 if (ibmveth_rxq_pending_buffer(adapter) &&
Ben Hutchings288379f2009-01-19 16:43:59 -08001172 napi_reschedule(napi)) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001173 lpar_rc = h_vio_signal(adapter->vdev->unit_address,
1174 VIO_IRQ_DISABLE);
1175 goto restart_poll;
1176 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 }
1178
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001179 return frames_processed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180}
1181
David Howells7d12e782006-10-05 14:55:46 +01001182static irqreturn_t ibmveth_interrupt(int irq, void *dev_instance)
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001183{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 struct net_device *netdev = dev_instance;
Wang Chen4cf16532008-11-12 23:38:14 -08001185 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 unsigned long lpar_rc;
1187
Ben Hutchings288379f2009-01-19 16:43:59 -08001188 if (napi_schedule_prep(&adapter->napi)) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001189 lpar_rc = h_vio_signal(adapter->vdev->unit_address,
1190 VIO_IRQ_DISABLE);
Santiago Leon64859112010-09-03 18:29:41 +00001191 BUG_ON(lpar_rc != H_SUCCESS);
Ben Hutchings288379f2009-01-19 16:43:59 -08001192 __napi_schedule(&adapter->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 }
1194 return IRQ_HANDLED;
1195}
1196
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197static void ibmveth_set_multicast_list(struct net_device *netdev)
1198{
Wang Chen4cf16532008-11-12 23:38:14 -08001199 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 unsigned long lpar_rc;
1201
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001202 if ((netdev->flags & IFF_PROMISC) ||
1203 (netdev_mc_count(netdev) > adapter->mcastFilterSize)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 lpar_rc = h_multicast_ctrl(adapter->vdev->unit_address,
1205 IbmVethMcastEnableRecv |
1206 IbmVethMcastDisableFiltering,
1207 0);
Santiago Leonf148f612010-09-03 18:29:30 +00001208 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001209 netdev_err(netdev, "h_multicast_ctrl rc=%ld when "
1210 "entering promisc mode\n", lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 }
1212 } else {
Jiri Pirko22bedad32010-04-01 21:22:57 +00001213 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 /* clear the filter table & disable filtering */
1215 lpar_rc = h_multicast_ctrl(adapter->vdev->unit_address,
1216 IbmVethMcastEnableRecv |
1217 IbmVethMcastDisableFiltering |
1218 IbmVethMcastClearFilterTable,
1219 0);
Santiago Leonf148f612010-09-03 18:29:30 +00001220 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001221 netdev_err(netdev, "h_multicast_ctrl rc=%ld when "
1222 "attempting to clear filter table\n",
1223 lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 }
1225 /* add the addresses to the filter table */
Jiri Pirko22bedad32010-04-01 21:22:57 +00001226 netdev_for_each_mc_addr(ha, netdev) {
Santiago Leonf148f612010-09-03 18:29:30 +00001227 /* add the multicast address to the filter table */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 unsigned long mcast_addr = 0;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001229 memcpy(((char *)&mcast_addr)+2, ha->addr, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 lpar_rc = h_multicast_ctrl(adapter->vdev->unit_address,
1231 IbmVethMcastAddFilter,
1232 mcast_addr);
Santiago Leonf148f612010-09-03 18:29:30 +00001233 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001234 netdev_err(netdev, "h_multicast_ctrl rc=%ld "
1235 "when adding an entry to the filter "
1236 "table\n", lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 }
1238 }
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001239
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 /* re-enable filtering */
1241 lpar_rc = h_multicast_ctrl(adapter->vdev->unit_address,
1242 IbmVethMcastEnableFiltering,
1243 0);
Santiago Leonf148f612010-09-03 18:29:30 +00001244 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001245 netdev_err(netdev, "h_multicast_ctrl rc=%ld when "
1246 "enabling filtering\n", lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 }
1248 }
1249}
1250
1251static int ibmveth_change_mtu(struct net_device *dev, int new_mtu)
1252{
Wang Chen4cf16532008-11-12 23:38:14 -08001253 struct ibmveth_adapter *adapter = netdev_priv(dev);
Robert Jennings1096d632008-07-24 04:34:52 +10001254 struct vio_dev *viodev = adapter->vdev;
Santiago Leon860f2422006-04-25 11:19:59 -05001255 int new_mtu_oh = new_mtu + IBMVETH_BUFF_OH;
Robert Jennings0645bab2010-08-17 09:15:45 +00001256 int i, rc;
1257 int need_restart = 0;
Santiago Leonb6d35182005-10-26 10:47:01 -06001258
Santiago Leon517e80e2010-09-03 18:29:25 +00001259 if (new_mtu < IBMVETH_MIN_MTU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 return -EINVAL;
Santiago Leonb6d35182005-10-26 10:47:01 -06001261
Santiago Leon517e80e2010-09-03 18:29:25 +00001262 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++)
Brian Kingce6eea52007-06-08 14:05:17 -05001263 if (new_mtu_oh < adapter->rx_buff_pool[i].buff_size)
1264 break;
1265
Santiago Leon517e80e2010-09-03 18:29:25 +00001266 if (i == IBMVETH_NUM_BUFF_POOLS)
Brian Kingce6eea52007-06-08 14:05:17 -05001267 return -EINVAL;
1268
Santiago Leonea866e62008-07-24 04:34:23 +10001269 /* Deactivate all the buffer pools so that the next loop can activate
1270 only the buffer pools necessary to hold the new MTU */
Robert Jennings0645bab2010-08-17 09:15:45 +00001271 if (netif_running(adapter->netdev)) {
1272 need_restart = 1;
1273 adapter->pool_config = 1;
1274 ibmveth_close(adapter->netdev);
1275 adapter->pool_config = 0;
1276 }
Brian Kingce6eea52007-06-08 14:05:17 -05001277
Santiago Leonea866e62008-07-24 04:34:23 +10001278 /* Look for an active buffer pool that can hold the new MTU */
Santiago Leonf148f612010-09-03 18:29:30 +00001279 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++) {
Santiago Leonea866e62008-07-24 04:34:23 +10001280 adapter->rx_buff_pool[i].active = 1;
1281
Santiago Leon860f2422006-04-25 11:19:59 -05001282 if (new_mtu_oh < adapter->rx_buff_pool[i].buff_size) {
Robert Jennings1096d632008-07-24 04:34:52 +10001283 dev->mtu = new_mtu;
1284 vio_cmo_set_dev_desired(viodev,
1285 ibmveth_get_desired_dma
1286 (viodev));
Robert Jennings0645bab2010-08-17 09:15:45 +00001287 if (need_restart) {
1288 return ibmveth_open(adapter->netdev);
1289 }
Santiago Leon860f2422006-04-25 11:19:59 -05001290 return 0;
Santiago Leonb6d35182005-10-26 10:47:01 -06001291 }
Santiago Leonb6d35182005-10-26 10:47:01 -06001292 }
Robert Jennings0645bab2010-08-17 09:15:45 +00001293
1294 if (need_restart && (rc = ibmveth_open(adapter->netdev)))
1295 return rc;
1296
Santiago Leon860f2422006-04-25 11:19:59 -05001297 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298}
1299
Santiago Leon6b422372006-10-03 12:24:28 -05001300#ifdef CONFIG_NET_POLL_CONTROLLER
1301static void ibmveth_poll_controller(struct net_device *dev)
1302{
Wang Chen4cf16532008-11-12 23:38:14 -08001303 ibmveth_replenish_task(netdev_priv(dev));
Andrew Morton5f771132006-10-10 14:33:30 -07001304 ibmveth_interrupt(dev->irq, dev);
Santiago Leon6b422372006-10-03 12:24:28 -05001305}
1306#endif
1307
Robert Jennings1096d632008-07-24 04:34:52 +10001308/**
1309 * ibmveth_get_desired_dma - Calculate IO memory desired by the driver
1310 *
1311 * @vdev: struct vio_dev for the device whose desired IO mem is to be returned
1312 *
1313 * Return value:
1314 * Number of bytes of IO data the driver will need to perform well.
1315 */
1316static unsigned long ibmveth_get_desired_dma(struct vio_dev *vdev)
1317{
1318 struct net_device *netdev = dev_get_drvdata(&vdev->dev);
1319 struct ibmveth_adapter *adapter;
1320 unsigned long ret;
1321 int i;
1322 int rxqentries = 1;
1323
1324 /* netdev inits at probe time along with the structures we need below*/
1325 if (netdev == NULL)
1326 return IOMMU_PAGE_ALIGN(IBMVETH_IO_ENTITLEMENT_DEFAULT);
1327
1328 adapter = netdev_priv(netdev);
1329
1330 ret = IBMVETH_BUFF_LIST_SIZE + IBMVETH_FILT_LIST_SIZE;
1331 ret += IOMMU_PAGE_ALIGN(netdev->mtu);
1332
Santiago Leon517e80e2010-09-03 18:29:25 +00001333 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++) {
Robert Jennings1096d632008-07-24 04:34:52 +10001334 /* add the size of the active receive buffers */
1335 if (adapter->rx_buff_pool[i].active)
1336 ret +=
1337 adapter->rx_buff_pool[i].size *
1338 IOMMU_PAGE_ALIGN(adapter->rx_buff_pool[i].
1339 buff_size);
1340 rxqentries += adapter->rx_buff_pool[i].size;
1341 }
1342 /* add the size of the receive queue entries */
1343 ret += IOMMU_PAGE_ALIGN(rxqentries * sizeof(struct ibmveth_rx_q_entry));
1344
1345 return ret;
1346}
1347
Alexander Beregalove186d172009-04-15 12:52:39 +00001348static const struct net_device_ops ibmveth_netdev_ops = {
1349 .ndo_open = ibmveth_open,
1350 .ndo_stop = ibmveth_close,
1351 .ndo_start_xmit = ibmveth_start_xmit,
1352 .ndo_set_multicast_list = ibmveth_set_multicast_list,
1353 .ndo_do_ioctl = ibmveth_ioctl,
1354 .ndo_change_mtu = ibmveth_change_mtu,
1355 .ndo_validate_addr = eth_validate_addr,
1356 .ndo_set_mac_address = eth_mac_addr,
1357#ifdef CONFIG_NET_POLL_CONTROLLER
1358 .ndo_poll_controller = ibmveth_poll_controller,
1359#endif
1360};
1361
Santiago Leonf148f612010-09-03 18:29:30 +00001362static int __devinit ibmveth_probe(struct vio_dev *dev,
1363 const struct vio_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364{
Santiago Leonb6d35182005-10-26 10:47:01 -06001365 int rc, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 struct net_device *netdev;
Mariusz Kozlowski9dc83af2007-08-06 23:44:03 +02001367 struct ibmveth_adapter *adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 unsigned char *mac_addr_p;
1369 unsigned int *mcastFilterSize_p;
1370
Santiago Leonc43ced12010-09-03 18:29:14 +00001371 dev_dbg(&dev->dev, "entering ibmveth_probe for UA 0x%x\n",
1372 dev->unit_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
Santiago Leonf148f612010-09-03 18:29:30 +00001374 mac_addr_p = (unsigned char *)vio_get_attribute(dev, VETH_MAC_ADDR,
1375 NULL);
1376 if (!mac_addr_p) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001377 dev_err(&dev->dev, "Can't find VETH_MAC_ADDR attribute\n");
Santiago Leonbe35ae92010-09-03 18:29:36 +00001378 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 }
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001380
Santiago Leonf148f612010-09-03 18:29:30 +00001381 mcastFilterSize_p = (unsigned int *)vio_get_attribute(dev,
Michael Ellerman493a6842007-04-17 13:12:55 +10001382 VETH_MCAST_FILTER_SIZE, NULL);
Santiago Leonf148f612010-09-03 18:29:30 +00001383 if (!mcastFilterSize_p) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001384 dev_err(&dev->dev, "Can't find VETH_MCAST_FILTER_SIZE "
1385 "attribute\n");
Santiago Leonbe35ae92010-09-03 18:29:36 +00001386 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 }
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001388
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 netdev = alloc_etherdev(sizeof(struct ibmveth_adapter));
1390
Santiago Leonf148f612010-09-03 18:29:30 +00001391 if (!netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 return -ENOMEM;
1393
Wang Chen4cf16532008-11-12 23:38:14 -08001394 adapter = netdev_priv(netdev);
Greg Kroah-Hartmanc7ae0112009-05-04 21:33:19 -07001395 dev_set_drvdata(&dev->dev, netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
1397 adapter->vdev = dev;
1398 adapter->netdev = netdev;
Santiago Leonf148f612010-09-03 18:29:30 +00001399 adapter->mcastFilterSize = *mcastFilterSize_p;
Santiago Leon860f2422006-04-25 11:19:59 -05001400 adapter->pool_config = 0;
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001401
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001402 netif_napi_add(netdev, &adapter->napi, ibmveth_poll, 16);
1403
Santiago Leonf148f612010-09-03 18:29:30 +00001404 /*
1405 * Some older boxes running PHYP non-natively have an OF that returns
1406 * a 8-byte local-mac-address field (and the first 2 bytes have to be
1407 * ignored) while newer boxes' OF return a 6-byte field. Note that
1408 * IEEE 1275 specifies that local-mac-address must be a 6-byte field.
1409 * The RPA doc specifies that the first byte must be 10b, so we'll
1410 * just look for it to solve this 8 vs. 6 byte field issue
1411 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 if ((*mac_addr_p & 0x3) != 0x02)
1413 mac_addr_p += 2;
1414
1415 adapter->mac_addr = 0;
1416 memcpy(&adapter->mac_addr, mac_addr_p, 6);
1417
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 netdev->irq = dev->irq;
Alexander Beregalove186d172009-04-15 12:52:39 +00001419 netdev->netdev_ops = &ibmveth_netdev_ops;
1420 netdev->ethtool_ops = &netdev_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 SET_NETDEV_DEV(netdev, &dev->dev);
Santiago Leon6e8ab302010-09-03 18:28:36 +00001422 netdev->features |= NETIF_F_SG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423
Stephen Rothwelld44b5e02009-05-11 21:44:51 +00001424 memcpy(netdev->dev_addr, &adapter->mac_addr, netdev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425
Santiago Leonf148f612010-09-03 18:29:30 +00001426 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++) {
Santiago Leon860f2422006-04-25 11:19:59 -05001427 struct kobject *kobj = &adapter->rx_buff_pool[i].kobj;
Greg Kroah-Hartman8dde2a92007-12-17 15:54:39 -04001428 int error;
1429
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001430 ibmveth_init_buffer_pool(&adapter->rx_buff_pool[i], i,
1431 pool_count[i], pool_size[i],
Santiago Leon860f2422006-04-25 11:19:59 -05001432 pool_active[i]);
Greg Kroah-Hartman8dde2a92007-12-17 15:54:39 -04001433 error = kobject_init_and_add(kobj, &ktype_veth_pool,
1434 &dev->dev.kobj, "pool%d", i);
1435 if (!error)
1436 kobject_uevent(kobj, KOBJ_ADD);
Santiago Leon860f2422006-04-25 11:19:59 -05001437 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
Santiago Leonc43ced12010-09-03 18:29:14 +00001439 netdev_dbg(netdev, "adapter @ 0x%p\n", adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 adapter->buffer_list_dma = DMA_ERROR_CODE;
1442 adapter->filter_list_dma = DMA_ERROR_CODE;
1443 adapter->rx_queue.queue_dma = DMA_ERROR_CODE;
1444
Santiago Leonc43ced12010-09-03 18:29:14 +00001445 netdev_dbg(netdev, "registering netdev...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
Santiago Leonbc4c6f52010-09-03 18:28:47 +00001447 ibmveth_set_csum_offload(netdev, 1, ibmveth_set_tx_csum_flags);
Brian Kingf4ff2872007-09-15 13:36:07 -07001448
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 rc = register_netdev(netdev);
1450
Santiago Leonf148f612010-09-03 18:29:30 +00001451 if (rc) {
Santiago Leonc43ced12010-09-03 18:29:14 +00001452 netdev_dbg(netdev, "failed to register netdev rc=%d\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 free_netdev(netdev);
1454 return rc;
1455 }
1456
Santiago Leonc43ced12010-09-03 18:29:14 +00001457 netdev_dbg(netdev, "registered\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 return 0;
1460}
1461
1462static int __devexit ibmveth_remove(struct vio_dev *dev)
1463{
Greg Kroah-Hartmanc7ae0112009-05-04 21:33:19 -07001464 struct net_device *netdev = dev_get_drvdata(&dev->dev);
Wang Chen4cf16532008-11-12 23:38:14 -08001465 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Santiago Leon860f2422006-04-25 11:19:59 -05001466 int i;
1467
Santiago Leonf148f612010-09-03 18:29:30 +00001468 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++)
Greg Kroah-Hartmanc10997f2007-12-20 08:13:05 -08001469 kobject_put(&adapter->rx_buff_pool[i].kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
1471 unregister_netdev(netdev);
1472
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 free_netdev(netdev);
Robert Jennings1096d632008-07-24 04:34:52 +10001474 dev_set_drvdata(&dev->dev, NULL);
1475
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 return 0;
1477}
1478
Santiago Leon860f2422006-04-25 11:19:59 -05001479static struct attribute veth_active_attr;
1480static struct attribute veth_num_attr;
1481static struct attribute veth_size_attr;
1482
Santiago Leonf148f612010-09-03 18:29:30 +00001483static ssize_t veth_pool_show(struct kobject *kobj,
1484 struct attribute *attr, char *buf)
Santiago Leon860f2422006-04-25 11:19:59 -05001485{
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001486 struct ibmveth_buff_pool *pool = container_of(kobj,
Santiago Leon860f2422006-04-25 11:19:59 -05001487 struct ibmveth_buff_pool,
1488 kobj);
1489
1490 if (attr == &veth_active_attr)
1491 return sprintf(buf, "%d\n", pool->active);
1492 else if (attr == &veth_num_attr)
1493 return sprintf(buf, "%d\n", pool->size);
1494 else if (attr == &veth_size_attr)
1495 return sprintf(buf, "%d\n", pool->buff_size);
1496 return 0;
1497}
1498
Santiago Leonf148f612010-09-03 18:29:30 +00001499static ssize_t veth_pool_store(struct kobject *kobj, struct attribute *attr,
1500 const char *buf, size_t count)
Santiago Leon860f2422006-04-25 11:19:59 -05001501{
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001502 struct ibmveth_buff_pool *pool = container_of(kobj,
Santiago Leon860f2422006-04-25 11:19:59 -05001503 struct ibmveth_buff_pool,
1504 kobj);
Greg Kroah-Hartmanc7ae0112009-05-04 21:33:19 -07001505 struct net_device *netdev = dev_get_drvdata(
1506 container_of(kobj->parent, struct device, kobj));
Wang Chen4cf16532008-11-12 23:38:14 -08001507 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Santiago Leon860f2422006-04-25 11:19:59 -05001508 long value = simple_strtol(buf, NULL, 10);
1509 long rc;
1510
1511 if (attr == &veth_active_attr) {
1512 if (value && !pool->active) {
Brian King4aa9c932007-06-08 14:05:16 -05001513 if (netif_running(netdev)) {
Santiago Leonf148f612010-09-03 18:29:30 +00001514 if (ibmveth_alloc_buffer_pool(pool)) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001515 netdev_err(netdev,
1516 "unable to alloc pool\n");
Brian King4aa9c932007-06-08 14:05:16 -05001517 return -ENOMEM;
1518 }
1519 pool->active = 1;
1520 adapter->pool_config = 1;
1521 ibmveth_close(netdev);
1522 adapter->pool_config = 0;
1523 if ((rc = ibmveth_open(netdev)))
1524 return rc;
Santiago Leonf148f612010-09-03 18:29:30 +00001525 } else {
Brian King4aa9c932007-06-08 14:05:16 -05001526 pool->active = 1;
Santiago Leonf148f612010-09-03 18:29:30 +00001527 }
Santiago Leon860f2422006-04-25 11:19:59 -05001528 } else if (!value && pool->active) {
1529 int mtu = netdev->mtu + IBMVETH_BUFF_OH;
1530 int i;
1531 /* Make sure there is a buffer pool with buffers that
1532 can hold a packet of the size of the MTU */
Santiago Leon517e80e2010-09-03 18:29:25 +00001533 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++) {
Santiago Leon860f2422006-04-25 11:19:59 -05001534 if (pool == &adapter->rx_buff_pool[i])
1535 continue;
1536 if (!adapter->rx_buff_pool[i].active)
1537 continue;
Brian King76b9cfc2007-08-03 13:55:19 +10001538 if (mtu <= adapter->rx_buff_pool[i].buff_size)
1539 break;
Santiago Leon860f2422006-04-25 11:19:59 -05001540 }
Brian King76b9cfc2007-08-03 13:55:19 +10001541
Santiago Leon517e80e2010-09-03 18:29:25 +00001542 if (i == IBMVETH_NUM_BUFF_POOLS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001543 netdev_err(netdev, "no active pool >= MTU\n");
Santiago Leon860f2422006-04-25 11:19:59 -05001544 return -EPERM;
1545 }
Brian King76b9cfc2007-08-03 13:55:19 +10001546
Brian King76b9cfc2007-08-03 13:55:19 +10001547 if (netif_running(netdev)) {
1548 adapter->pool_config = 1;
1549 ibmveth_close(netdev);
Santiago Leonea866e62008-07-24 04:34:23 +10001550 pool->active = 0;
Brian King76b9cfc2007-08-03 13:55:19 +10001551 adapter->pool_config = 0;
1552 if ((rc = ibmveth_open(netdev)))
1553 return rc;
1554 }
Santiago Leonea866e62008-07-24 04:34:23 +10001555 pool->active = 0;
Santiago Leon860f2422006-04-25 11:19:59 -05001556 }
1557 } else if (attr == &veth_num_attr) {
Santiago Leonf148f612010-09-03 18:29:30 +00001558 if (value <= 0 || value > IBMVETH_MAX_POOL_COUNT) {
Santiago Leon860f2422006-04-25 11:19:59 -05001559 return -EINVAL;
Santiago Leonf148f612010-09-03 18:29:30 +00001560 } else {
Brian King4aa9c932007-06-08 14:05:16 -05001561 if (netif_running(netdev)) {
1562 adapter->pool_config = 1;
1563 ibmveth_close(netdev);
1564 adapter->pool_config = 0;
1565 pool->size = value;
1566 if ((rc = ibmveth_open(netdev)))
1567 return rc;
Santiago Leonf148f612010-09-03 18:29:30 +00001568 } else {
Brian King4aa9c932007-06-08 14:05:16 -05001569 pool->size = value;
Santiago Leonf148f612010-09-03 18:29:30 +00001570 }
Santiago Leon860f2422006-04-25 11:19:59 -05001571 }
1572 } else if (attr == &veth_size_attr) {
Santiago Leonf148f612010-09-03 18:29:30 +00001573 if (value <= IBMVETH_BUFF_OH || value > IBMVETH_MAX_BUF_SIZE) {
Santiago Leon860f2422006-04-25 11:19:59 -05001574 return -EINVAL;
Santiago Leonf148f612010-09-03 18:29:30 +00001575 } else {
Brian King4aa9c932007-06-08 14:05:16 -05001576 if (netif_running(netdev)) {
1577 adapter->pool_config = 1;
1578 ibmveth_close(netdev);
1579 adapter->pool_config = 0;
1580 pool->buff_size = value;
1581 if ((rc = ibmveth_open(netdev)))
1582 return rc;
Santiago Leonf148f612010-09-03 18:29:30 +00001583 } else {
Brian King4aa9c932007-06-08 14:05:16 -05001584 pool->buff_size = value;
Santiago Leonf148f612010-09-03 18:29:30 +00001585 }
Santiago Leon860f2422006-04-25 11:19:59 -05001586 }
1587 }
1588
1589 /* kick the interrupt handler to allocate/deallocate pools */
David Howells7d12e782006-10-05 14:55:46 +01001590 ibmveth_interrupt(netdev->irq, netdev);
Santiago Leon860f2422006-04-25 11:19:59 -05001591 return count;
1592}
1593
1594
Santiago Leonf148f612010-09-03 18:29:30 +00001595#define ATTR(_name, _mode) \
1596 struct attribute veth_##_name##_attr = { \
1597 .name = __stringify(_name), .mode = _mode, \
1598 };
Santiago Leon860f2422006-04-25 11:19:59 -05001599
1600static ATTR(active, 0644);
1601static ATTR(num, 0644);
1602static ATTR(size, 0644);
1603
Santiago Leonf148f612010-09-03 18:29:30 +00001604static struct attribute *veth_pool_attrs[] = {
Santiago Leon860f2422006-04-25 11:19:59 -05001605 &veth_active_attr,
1606 &veth_num_attr,
1607 &veth_size_attr,
1608 NULL,
1609};
1610
Emese Revfy52cf25d2010-01-19 02:58:23 +01001611static const struct sysfs_ops veth_pool_ops = {
Santiago Leon860f2422006-04-25 11:19:59 -05001612 .show = veth_pool_show,
1613 .store = veth_pool_store,
1614};
1615
1616static struct kobj_type ktype_veth_pool = {
1617 .release = NULL,
1618 .sysfs_ops = &veth_pool_ops,
1619 .default_attrs = veth_pool_attrs,
1620};
1621
Brian Kinge7a3af52010-05-07 08:56:08 +00001622static int ibmveth_resume(struct device *dev)
1623{
1624 struct net_device *netdev = dev_get_drvdata(dev);
1625 ibmveth_interrupt(netdev->irq, netdev);
1626 return 0;
1627}
Santiago Leon860f2422006-04-25 11:19:59 -05001628
Santiago Leonf148f612010-09-03 18:29:30 +00001629static struct vio_device_id ibmveth_device_table[] __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 { "network", "IBM,l-lan"},
Stephen Rothwellfb120da2005-08-17 16:42:59 +10001631 { "", "" }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633MODULE_DEVICE_TABLE(vio, ibmveth_device_table);
1634
Brian Kinge7a3af52010-05-07 08:56:08 +00001635static struct dev_pm_ops ibmveth_pm_ops = {
1636 .resume = ibmveth_resume
1637};
1638
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639static struct vio_driver ibmveth_driver = {
Stephen Rothwell6fdf5392005-10-24 14:53:21 +10001640 .id_table = ibmveth_device_table,
1641 .probe = ibmveth_probe,
1642 .remove = ibmveth_remove,
Robert Jennings1096d632008-07-24 04:34:52 +10001643 .get_desired_dma = ibmveth_get_desired_dma,
Stephen Rothwell6fdf5392005-10-24 14:53:21 +10001644 .driver = {
1645 .name = ibmveth_driver_name,
Stephen Rothwell915124d2005-10-24 15:12:22 +10001646 .owner = THIS_MODULE,
Brian Kinge7a3af52010-05-07 08:56:08 +00001647 .pm = &ibmveth_pm_ops,
Stephen Rothwell6fdf5392005-10-24 14:53:21 +10001648 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649};
1650
1651static int __init ibmveth_module_init(void)
1652{
Santiago Leon21c2dec2010-09-03 18:29:19 +00001653 printk(KERN_DEBUG "%s: %s %s\n", ibmveth_driver_name,
1654 ibmveth_driver_string, ibmveth_driver_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 return vio_register_driver(&ibmveth_driver);
1657}
1658
1659static void __exit ibmveth_module_exit(void)
1660{
1661 vio_unregister_driver(&ibmveth_driver);
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001662}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663
1664module_init(ibmveth_module_init);
1665module_exit(ibmveth_module_exit);