ibmveth.c 43.9 KB
Newer Older
S
Santiago Leon 已提交
1
/*
2
 * IBM Power Virtual Ethernet Device Driver
S
Santiago Leon 已提交
3
 *
4 5 6 7
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
S
Santiago Leon 已提交
8
 *
9 10 11 12
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
S
Santiago Leon 已提交
13
 *
14 15 16
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
S
Santiago Leon 已提交
17
 *
18 19 20 21 22 23 24
 * Copyright (C) IBM Corporation, 2003, 2010
 *
 * Authors: Dave Larson <larson1@us.ibm.com>
 *	    Santiago Leon <santil@linux.vnet.ibm.com>
 *	    Brian King <brking@linux.vnet.ibm.com>
 *	    Robert Jennings <rcj@linux.vnet.ibm.com>
 *	    Anton Blanchard <anton@au.ibm.com>
S
Santiago Leon 已提交
25
 */
L
Linus Torvalds 已提交
26 27

#include <linux/module.h>
R
Robert Jennings 已提交
28
#include <linux/moduleparam.h>
L
Linus Torvalds 已提交
29 30 31 32 33 34 35 36
#include <linux/types.h>
#include <linux/errno.h>
#include <linux/dma-mapping.h>
#include <linux/kernel.h>
#include <linux/netdevice.h>
#include <linux/etherdevice.h>
#include <linux/skbuff.h>
#include <linux/init.h>
37
#include <linux/interrupt.h>
L
Linus Torvalds 已提交
38
#include <linux/mm.h>
B
Brian King 已提交
39
#include <linux/pm.h>
L
Linus Torvalds 已提交
40
#include <linux/ethtool.h>
B
Brian King 已提交
41 42
#include <linux/in.h>
#include <linux/ip.h>
43
#include <linux/ipv6.h>
44
#include <linux/slab.h>
L
Linus Torvalds 已提交
45
#include <asm/hvcall.h>
A
Arun Sharma 已提交
46
#include <linux/atomic.h>
L
Linus Torvalds 已提交
47
#include <asm/vio.h>
R
Robert Jennings 已提交
48 49
#include <asm/iommu.h>
#include <asm/firmware.h>
L
Linus Torvalds 已提交
50 51 52

#include "ibmveth.h"

53
static irqreturn_t ibmveth_interrupt(int irq, void *dev_instance);
54
static void ibmveth_rxq_harvest_buffer(struct ibmveth_adapter *adapter);
R
Robert Jennings 已提交
55
static unsigned long ibmveth_get_desired_dma(struct vio_dev *vdev);
56

57
static struct kobj_type ktype_veth_pool;
L
Linus Torvalds 已提交
58

R
Robert Jennings 已提交
59

L
Linus Torvalds 已提交
60
static const char ibmveth_driver_name[] = "ibmveth";
61 62
static const char ibmveth_driver_string[] = "IBM Power Virtual Ethernet Driver";
#define ibmveth_driver_version "1.04"
L
Linus Torvalds 已提交
63

64 65
MODULE_AUTHOR("Santiago Leon <santil@linux.vnet.ibm.com>");
MODULE_DESCRIPTION("IBM Power Virtual Ethernet Driver");
L
Linus Torvalds 已提交
66 67 68
MODULE_LICENSE("GPL");
MODULE_VERSION(ibmveth_driver_version);

S
Santiago Leon 已提交
69 70 71 72 73
static unsigned int tx_copybreak __read_mostly = 128;
module_param(tx_copybreak, uint, 0644);
MODULE_PARM_DESC(tx_copybreak,
	"Maximum size of packet that is copied to a new buffer on transmit");

S
Santiago Leon 已提交
74 75 76 77 78
static unsigned int rx_copybreak __read_mostly = 128;
module_param(rx_copybreak, uint, 0644);
MODULE_PARM_DESC(rx_copybreak,
	"Maximum size of packet that is copied to a new buffer on receive");

79 80 81 82
static unsigned int rx_flush __read_mostly = 0;
module_param(rx_flush, uint, 0644);
MODULE_PARM_DESC(rx_flush, "Flush receive buffers before use");

83 84 85 86 87 88 89 90 91 92 93
struct ibmveth_stat {
	char name[ETH_GSTRING_LEN];
	int offset;
};

#define IBMVETH_STAT_OFF(stat) offsetof(struct ibmveth_adapter, stat)
#define IBMVETH_GET_STAT(a, off) *((u64 *)(((unsigned long)(a)) + off))

struct ibmveth_stat ibmveth_stats[] = {
	{ "replenish_task_cycles", IBMVETH_STAT_OFF(replenish_task_cycles) },
	{ "replenish_no_mem", IBMVETH_STAT_OFF(replenish_no_mem) },
S
Santiago Leon 已提交
94 95 96 97
	{ "replenish_add_buff_failure",
			IBMVETH_STAT_OFF(replenish_add_buff_failure) },
	{ "replenish_add_buff_success",
			IBMVETH_STAT_OFF(replenish_add_buff_success) },
98 99 100 101
	{ "rx_invalid_buffer", IBMVETH_STAT_OFF(rx_invalid_buffer) },
	{ "rx_no_buffer", IBMVETH_STAT_OFF(rx_no_buffer) },
	{ "tx_map_failed", IBMVETH_STAT_OFF(tx_map_failed) },
	{ "tx_send_failed", IBMVETH_STAT_OFF(tx_send_failed) },
102 103
	{ "fw_enabled_ipv4_csum", IBMVETH_STAT_OFF(fw_ipv4_csum_support) },
	{ "fw_enabled_ipv6_csum", IBMVETH_STAT_OFF(fw_ipv6_csum_support) },
104 105
};

L
Linus Torvalds 已提交
106
/* simple methods of getting data from the current rxq entry */
B
Brian King 已提交
107 108 109 110 111 112 113
static inline u32 ibmveth_rxq_flags(struct ibmveth_adapter *adapter)
{
	return adapter->rx_queue.queue_addr[adapter->rx_queue.index].flags_off;
}

static inline int ibmveth_rxq_toggle(struct ibmveth_adapter *adapter)
{
S
Santiago Leon 已提交
114 115
	return (ibmveth_rxq_flags(adapter) & IBMVETH_RXQ_TOGGLE) >>
			IBMVETH_RXQ_TOGGLE_SHIFT;
B
Brian King 已提交
116 117
}

L
Linus Torvalds 已提交
118 119
static inline int ibmveth_rxq_pending_buffer(struct ibmveth_adapter *adapter)
{
S
Santiago Leon 已提交
120
	return ibmveth_rxq_toggle(adapter) == adapter->rx_queue.toggle;
L
Linus Torvalds 已提交
121 122 123 124
}

static inline int ibmveth_rxq_buffer_valid(struct ibmveth_adapter *adapter)
{
S
Santiago Leon 已提交
125
	return ibmveth_rxq_flags(adapter) & IBMVETH_RXQ_VALID;
L
Linus Torvalds 已提交
126 127 128 129
}

static inline int ibmveth_rxq_frame_offset(struct ibmveth_adapter *adapter)
{
S
Santiago Leon 已提交
130
	return ibmveth_rxq_flags(adapter) & IBMVETH_RXQ_OFF_MASK;
L
Linus Torvalds 已提交
131 132 133 134
}

static inline int ibmveth_rxq_frame_length(struct ibmveth_adapter *adapter)
{
S
Santiago Leon 已提交
135
	return adapter->rx_queue.queue_addr[adapter->rx_queue.index].length;
L
Linus Torvalds 已提交
136 137
}

B
Brian King 已提交
138 139
static inline int ibmveth_rxq_csum_good(struct ibmveth_adapter *adapter)
{
S
Santiago Leon 已提交
140
	return ibmveth_rxq_flags(adapter) & IBMVETH_RXQ_CSUM_GOOD;
B
Brian King 已提交
141 142
}

L
Linus Torvalds 已提交
143
/* setup the initial settings for a buffer pool */
S
Santiago Leon 已提交
144 145 146
static void ibmveth_init_buffer_pool(struct ibmveth_buff_pool *pool,
				     u32 pool_index, u32 pool_size,
				     u32 buff_size, u32 pool_active)
L
Linus Torvalds 已提交
147 148 149 150
{
	pool->size = pool_size;
	pool->index = pool_index;
	pool->buff_size = buff_size;
151
	pool->threshold = pool_size * 7 / 8;
152
	pool->active = pool_active;
L
Linus Torvalds 已提交
153 154 155 156 157 158 159
}

/* allocate and setup an buffer pool - called during open */
static int ibmveth_alloc_buffer_pool(struct ibmveth_buff_pool *pool)
{
	int i;

160
	pool->free_map = kmalloc(sizeof(u16) * pool->size, GFP_KERNEL);
L
Linus Torvalds 已提交
161

S
Santiago Leon 已提交
162
	if (!pool->free_map)
L
Linus Torvalds 已提交
163 164
		return -1;

165
	pool->dma_addr = kmalloc(sizeof(dma_addr_t) * pool->size, GFP_KERNEL);
S
Santiago Leon 已提交
166
	if (!pool->dma_addr) {
L
Linus Torvalds 已提交
167 168 169 170 171
		kfree(pool->free_map);
		pool->free_map = NULL;
		return -1;
	}

172
	pool->skbuff = kcalloc(pool->size, sizeof(void *), GFP_KERNEL);
L
Linus Torvalds 已提交
173

S
Santiago Leon 已提交
174
	if (!pool->skbuff) {
L
Linus Torvalds 已提交
175 176 177 178 179 180 181 182 183 184
		kfree(pool->dma_addr);
		pool->dma_addr = NULL;

		kfree(pool->free_map);
		pool->free_map = NULL;
		return -1;
	}

	memset(pool->dma_addr, 0, sizeof(dma_addr_t) * pool->size);

S
Santiago Leon 已提交
185
	for (i = 0; i < pool->size; ++i)
L
Linus Torvalds 已提交
186 187 188 189 190 191 192 193 194
		pool->free_map[i] = i;

	atomic_set(&pool->available, 0);
	pool->producer_index = 0;
	pool->consumer_index = 0;

	return 0;
}

195 196 197 198 199 200 201 202
static inline void ibmveth_flush_buffer(void *addr, unsigned long length)
{
	unsigned long offset;

	for (offset = 0; offset < length; offset += SMP_CACHE_BYTES)
		asm("dcbfl %0,%1" :: "b" (addr), "r" (offset));
}

L
Linus Torvalds 已提交
203 204 205
/* replenish the buffers for a pool.  note that we don't need to
 * skb_reserve these since they are used for incoming...
 */
S
Santiago Leon 已提交
206 207
static void ibmveth_replenish_buffer_pool(struct ibmveth_adapter *adapter,
					  struct ibmveth_buff_pool *pool)
L
Linus Torvalds 已提交
208 209 210 211
{
	u32 i;
	u32 count = pool->size - atomic_read(&pool->available);
	u32 buffers_added = 0;
R
Robert Jennings 已提交
212 213 214 215 216
	struct sk_buff *skb;
	unsigned int free_index, index;
	u64 correlator;
	unsigned long lpar_rc;
	dma_addr_t dma_addr;
L
Linus Torvalds 已提交
217 218 219

	mb();

S
Santiago Leon 已提交
220
	for (i = 0; i < count; ++i) {
L
Linus Torvalds 已提交
221 222
		union ibmveth_buf_desc desc;

223
		skb = netdev_alloc_skb(adapter->netdev, pool->buff_size);
L
Linus Torvalds 已提交
224

S
Santiago Leon 已提交
225
		if (!skb) {
226 227
			netdev_dbg(adapter->netdev,
				   "replenish: unable to allocate skb\n");
L
Linus Torvalds 已提交
228 229 230 231
			adapter->replenish_no_mem++;
			break;
		}

232
		free_index = pool->consumer_index;
233 234 235
		pool->consumer_index++;
		if (pool->consumer_index >= pool->size)
			pool->consumer_index = 0;
L
Linus Torvalds 已提交
236
		index = pool->free_map[free_index];
237

238 239
		BUG_ON(index == IBM_VETH_INVALID_MAP);
		BUG_ON(pool->skbuff[index] != NULL);
L
Linus Torvalds 已提交
240 241 242 243

		dma_addr = dma_map_single(&adapter->vdev->dev, skb->data,
				pool->buff_size, DMA_FROM_DEVICE);

244
		if (dma_mapping_error(&adapter->vdev->dev, dma_addr))
R
Robert Jennings 已提交
245 246
			goto failure;

L
Linus Torvalds 已提交
247 248 249 250 251
		pool->free_map[free_index] = IBM_VETH_INVALID_MAP;
		pool->dma_addr[index] = dma_addr;
		pool->skbuff[index] = skb;

		correlator = ((u64)pool->index << 32) | index;
S
Santiago Leon 已提交
252
		*(u64 *)skb->data = correlator;
L
Linus Torvalds 已提交
253

B
Brian King 已提交
254
		desc.fields.flags_len = IBMVETH_BUF_VALID | pool->buff_size;
255
		desc.fields.address = dma_addr;
L
Linus Torvalds 已提交
256

257 258 259 260 261 262
		if (rx_flush) {
			unsigned int len = min(pool->buff_size,
						adapter->netdev->mtu +
						IBMVETH_BUFF_OH);
			ibmveth_flush_buffer(skb->data, len);
		}
S
Santiago Leon 已提交
263 264
		lpar_rc = h_add_logical_lan_buffer(adapter->vdev->unit_address,
						   desc.desc);
265

S
Santiago Leon 已提交
266
		if (lpar_rc != H_SUCCESS) {
R
Robert Jennings 已提交
267
			goto failure;
S
Santiago Leon 已提交
268
		} else {
L
Linus Torvalds 已提交
269 270 271 272
			buffers_added++;
			adapter->replenish_add_buff_success++;
		}
	}
273

R
Robert Jennings 已提交
274 275 276 277 278 279 280 281 282 283 284
	mb();
	atomic_add(buffers_added, &(pool->available));
	return;

failure:
	pool->free_map[free_index] = index;
	pool->skbuff[index] = NULL;
	if (pool->consumer_index == 0)
		pool->consumer_index = pool->size - 1;
	else
		pool->consumer_index--;
285
	if (!dma_mapping_error(&adapter->vdev->dev, dma_addr))
R
Robert Jennings 已提交
286 287 288 289 290 291
		dma_unmap_single(&adapter->vdev->dev,
		                 pool->dma_addr[index], pool->buff_size,
		                 DMA_FROM_DEVICE);
	dev_kfree_skb_any(skb);
	adapter->replenish_add_buff_failure++;

L
Linus Torvalds 已提交
292 293 294 295
	mb();
	atomic_add(buffers_added, &(pool->available));
}

296
/* replenish routine */
297
static void ibmveth_replenish_task(struct ibmveth_adapter *adapter)
L
Linus Torvalds 已提交
298
{
299 300
	int i;

L
Linus Torvalds 已提交
301 302
	adapter->replenish_task_cycles++;

S
Santiago Leon 已提交
303
	for (i = (IBMVETH_NUM_BUFF_POOLS - 1); i >= 0; i--) {
304 305 306 307 308 309
		struct ibmveth_buff_pool *pool = &adapter->rx_buff_pool[i];

		if (pool->active &&
		    (atomic_read(&pool->available) < pool->threshold))
			ibmveth_replenish_buffer_pool(adapter, pool);
	}
L
Linus Torvalds 已提交
310

S
Santiago Leon 已提交
311 312
	adapter->rx_no_buffer = *(u64 *)(((char*)adapter->buffer_list_addr) +
						4096 - 8);
L
Linus Torvalds 已提交
313 314 315
}

/* empty and free ana buffer pool - also used to do cleanup in error paths */
S
Santiago Leon 已提交
316 317
static void ibmveth_free_buffer_pool(struct ibmveth_adapter *adapter,
				     struct ibmveth_buff_pool *pool)
L
Linus Torvalds 已提交
318 319 320
{
	int i;

321 322
	kfree(pool->free_map);
	pool->free_map = NULL;
L
Linus Torvalds 已提交
323

S
Santiago Leon 已提交
324 325
	if (pool->skbuff && pool->dma_addr) {
		for (i = 0; i < pool->size; ++i) {
L
Linus Torvalds 已提交
326
			struct sk_buff *skb = pool->skbuff[i];
S
Santiago Leon 已提交
327
			if (skb) {
L
Linus Torvalds 已提交
328 329 330 331 332 333 334 335 336 337
				dma_unmap_single(&adapter->vdev->dev,
						 pool->dma_addr[i],
						 pool->buff_size,
						 DMA_FROM_DEVICE);
				dev_kfree_skb_any(skb);
				pool->skbuff[i] = NULL;
			}
		}
	}

S
Santiago Leon 已提交
338
	if (pool->dma_addr) {
L
Linus Torvalds 已提交
339 340 341 342
		kfree(pool->dma_addr);
		pool->dma_addr = NULL;
	}

S
Santiago Leon 已提交
343
	if (pool->skbuff) {
L
Linus Torvalds 已提交
344 345 346 347 348 349
		kfree(pool->skbuff);
		pool->skbuff = NULL;
	}
}

/* remove a buffer from a pool */
S
Santiago Leon 已提交
350 351
static void ibmveth_remove_buffer_from_pool(struct ibmveth_adapter *adapter,
					    u64 correlator)
L
Linus Torvalds 已提交
352 353 354 355 356 357
{
	unsigned int pool  = correlator >> 32;
	unsigned int index = correlator & 0xffffffffUL;
	unsigned int free_index;
	struct sk_buff *skb;

358 359
	BUG_ON(pool >= IBMVETH_NUM_BUFF_POOLS);
	BUG_ON(index >= adapter->rx_buff_pool[pool].size);
L
Linus Torvalds 已提交
360 361 362

	skb = adapter->rx_buff_pool[pool].skbuff[index];

363
	BUG_ON(skb == NULL);
L
Linus Torvalds 已提交
364 365 366 367 368 369 370 371

	adapter->rx_buff_pool[pool].skbuff[index] = NULL;

	dma_unmap_single(&adapter->vdev->dev,
			 adapter->rx_buff_pool[pool].dma_addr[index],
			 adapter->rx_buff_pool[pool].buff_size,
			 DMA_FROM_DEVICE);

372
	free_index = adapter->rx_buff_pool[pool].producer_index;
373 374 375 376
	adapter->rx_buff_pool[pool].producer_index++;
	if (adapter->rx_buff_pool[pool].producer_index >=
	    adapter->rx_buff_pool[pool].size)
		adapter->rx_buff_pool[pool].producer_index = 0;
L
Linus Torvalds 已提交
377 378 379 380 381 382 383 384 385 386 387 388 389 390
	adapter->rx_buff_pool[pool].free_map[free_index] = index;

	mb();

	atomic_dec(&(adapter->rx_buff_pool[pool].available));
}

/* get the current buffer on the rx queue */
static inline struct sk_buff *ibmveth_rxq_get_buffer(struct ibmveth_adapter *adapter)
{
	u64 correlator = adapter->rx_queue.queue_addr[adapter->rx_queue.index].correlator;
	unsigned int pool = correlator >> 32;
	unsigned int index = correlator & 0xffffffffUL;

391 392
	BUG_ON(pool >= IBMVETH_NUM_BUFF_POOLS);
	BUG_ON(index >= adapter->rx_buff_pool[pool].size);
L
Linus Torvalds 已提交
393 394 395 396 397

	return adapter->rx_buff_pool[pool].skbuff[index];
}

/* recycle the current buffer on the rx queue */
398
static int ibmveth_rxq_recycle_buffer(struct ibmveth_adapter *adapter)
L
Linus Torvalds 已提交
399 400 401 402 403 404 405
{
	u32 q_index = adapter->rx_queue.index;
	u64 correlator = adapter->rx_queue.queue_addr[q_index].correlator;
	unsigned int pool = correlator >> 32;
	unsigned int index = correlator & 0xffffffffUL;
	union ibmveth_buf_desc desc;
	unsigned long lpar_rc;
406
	int ret = 1;
L
Linus Torvalds 已提交
407

408 409
	BUG_ON(pool >= IBMVETH_NUM_BUFF_POOLS);
	BUG_ON(index >= adapter->rx_buff_pool[pool].size);
L
Linus Torvalds 已提交
410

S
Santiago Leon 已提交
411
	if (!adapter->rx_buff_pool[pool].active) {
412 413
		ibmveth_rxq_harvest_buffer(adapter);
		ibmveth_free_buffer_pool(adapter, &adapter->rx_buff_pool[pool]);
414
		goto out;
415 416
	}

B
Brian King 已提交
417 418
	desc.fields.flags_len = IBMVETH_BUF_VALID |
		adapter->rx_buff_pool[pool].buff_size;
L
Linus Torvalds 已提交
419 420 421
	desc.fields.address = adapter->rx_buff_pool[pool].dma_addr[index];

	lpar_rc = h_add_logical_lan_buffer(adapter->vdev->unit_address, desc.desc);
422

S
Santiago Leon 已提交
423
	if (lpar_rc != H_SUCCESS) {
424 425
		netdev_dbg(adapter->netdev, "h_add_logical_lan_buffer failed "
			   "during recycle rc=%ld", lpar_rc);
L
Linus Torvalds 已提交
426
		ibmveth_remove_buffer_from_pool(adapter, adapter->rx_queue.queue_addr[adapter->rx_queue.index].correlator);
427
		ret = 0;
L
Linus Torvalds 已提交
428 429
	}

S
Santiago Leon 已提交
430
	if (++adapter->rx_queue.index == adapter->rx_queue.num_slots) {
L
Linus Torvalds 已提交
431 432 433
		adapter->rx_queue.index = 0;
		adapter->rx_queue.toggle = !adapter->rx_queue.toggle;
	}
434 435 436

out:
	return ret;
L
Linus Torvalds 已提交
437 438
}

439
static void ibmveth_rxq_harvest_buffer(struct ibmveth_adapter *adapter)
L
Linus Torvalds 已提交
440 441 442
{
	ibmveth_remove_buffer_from_pool(adapter, adapter->rx_queue.queue_addr[adapter->rx_queue.index].correlator);

S
Santiago Leon 已提交
443
	if (++adapter->rx_queue.index == adapter->rx_queue.num_slots) {
L
Linus Torvalds 已提交
444 445 446 447 448 449 450
		adapter->rx_queue.index = 0;
		adapter->rx_queue.toggle = !adapter->rx_queue.toggle;
	}
}

static void ibmveth_cleanup(struct ibmveth_adapter *adapter)
{
451
	int i;
452
	struct device *dev = &adapter->vdev->dev;
453

S
Santiago Leon 已提交
454
	if (adapter->buffer_list_addr != NULL) {
455 456
		if (!dma_mapping_error(dev, adapter->buffer_list_dma)) {
			dma_unmap_single(dev, adapter->buffer_list_dma, 4096,
L
Linus Torvalds 已提交
457 458 459 460 461
					DMA_BIDIRECTIONAL);
			adapter->buffer_list_dma = DMA_ERROR_CODE;
		}
		free_page((unsigned long)adapter->buffer_list_addr);
		adapter->buffer_list_addr = NULL;
462
	}
L
Linus Torvalds 已提交
463

S
Santiago Leon 已提交
464
	if (adapter->filter_list_addr != NULL) {
465 466
		if (!dma_mapping_error(dev, adapter->filter_list_dma)) {
			dma_unmap_single(dev, adapter->filter_list_dma, 4096,
L
Linus Torvalds 已提交
467 468 469 470 471 472 473
					DMA_BIDIRECTIONAL);
			adapter->filter_list_dma = DMA_ERROR_CODE;
		}
		free_page((unsigned long)adapter->filter_list_addr);
		adapter->filter_list_addr = NULL;
	}

S
Santiago Leon 已提交
474
	if (adapter->rx_queue.queue_addr != NULL) {
475 476
		if (!dma_mapping_error(dev, adapter->rx_queue.queue_dma)) {
			dma_unmap_single(dev,
L
Linus Torvalds 已提交
477 478 479 480 481 482 483 484 485
					adapter->rx_queue.queue_dma,
					adapter->rx_queue.queue_len,
					DMA_BIDIRECTIONAL);
			adapter->rx_queue.queue_dma = DMA_ERROR_CODE;
		}
		kfree(adapter->rx_queue.queue_addr);
		adapter->rx_queue.queue_addr = NULL;
	}

S
Santiago Leon 已提交
486
	for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++)
487
		if (adapter->rx_buff_pool[i].active)
488
			ibmveth_free_buffer_pool(adapter,
489
						 &adapter->rx_buff_pool[i]);
R
Robert Jennings 已提交
490 491

	if (adapter->bounce_buffer != NULL) {
492
		if (!dma_mapping_error(dev, adapter->bounce_buffer_dma)) {
R
Robert Jennings 已提交
493 494 495 496 497 498 499 500 501
			dma_unmap_single(&adapter->vdev->dev,
					adapter->bounce_buffer_dma,
					adapter->netdev->mtu + IBMVETH_BUFF_OH,
					DMA_BIDIRECTIONAL);
			adapter->bounce_buffer_dma = DMA_ERROR_CODE;
		}
		kfree(adapter->bounce_buffer);
		adapter->bounce_buffer = NULL;
	}
L
Linus Torvalds 已提交
502 503
}

504 505 506 507 508
static int ibmveth_register_logical_lan(struct ibmveth_adapter *adapter,
        union ibmveth_buf_desc rxq_desc, u64 mac_address)
{
	int rc, try_again = 1;

S
Santiago Leon 已提交
509 510 511 512 513
	/*
	 * After a kexec the adapter will still be open, so our attempt to
	 * open it will fail. So if we get a failure we free the adapter and
	 * try again, but only once.
	 */
514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530
retry:
	rc = h_register_logical_lan(adapter->vdev->unit_address,
				    adapter->buffer_list_dma, rxq_desc.desc,
				    adapter->filter_list_dma, mac_address);

	if (rc != H_SUCCESS && try_again) {
		do {
			rc = h_free_logical_lan(adapter->vdev->unit_address);
		} while (H_IS_LONG_BUSY(rc) || (rc == H_BUSY));

		try_again = 0;
		goto retry;
	}

	return rc;
}

L
Linus Torvalds 已提交
531 532
static int ibmveth_open(struct net_device *netdev)
{
533
	struct ibmveth_adapter *adapter = netdev_priv(netdev);
L
Linus Torvalds 已提交
534
	u64 mac_address = 0;
535
	int rxq_entries = 1;
L
Linus Torvalds 已提交
536 537 538
	unsigned long lpar_rc;
	int rc;
	union ibmveth_buf_desc rxq_desc;
539
	int i;
540
	struct device *dev;
L
Linus Torvalds 已提交
541

542
	netdev_dbg(netdev, "open starting\n");
L
Linus Torvalds 已提交
543

544 545
	napi_enable(&adapter->napi);

S
Santiago Leon 已提交
546
	for(i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++)
547
		rxq_entries += adapter->rx_buff_pool[i].size;
548

L
Linus Torvalds 已提交
549 550
	adapter->buffer_list_addr = (void*) get_zeroed_page(GFP_KERNEL);
	adapter->filter_list_addr = (void*) get_zeroed_page(GFP_KERNEL);
551

S
Santiago Leon 已提交
552
	if (!adapter->buffer_list_addr || !adapter->filter_list_addr) {
553 554
		netdev_err(netdev, "unable to allocate filter or buffer list "
			   "pages\n");
555 556
		rc = -ENOMEM;
		goto err_out;
L
Linus Torvalds 已提交
557 558
	}

S
Santiago Leon 已提交
559 560 561 562
	adapter->rx_queue.queue_len = sizeof(struct ibmveth_rx_q_entry) *
						rxq_entries;
	adapter->rx_queue.queue_addr = kmalloc(adapter->rx_queue.queue_len,
						GFP_KERNEL);
L
Linus Torvalds 已提交
563

S
Santiago Leon 已提交
564
	if (!adapter->rx_queue.queue_addr) {
565
		netdev_err(netdev, "unable to allocate rx queue pages\n");
566 567
		rc = -ENOMEM;
		goto err_out;
L
Linus Torvalds 已提交
568 569
	}

570 571 572
	dev = &adapter->vdev->dev;

	adapter->buffer_list_dma = dma_map_single(dev,
L
Linus Torvalds 已提交
573
			adapter->buffer_list_addr, 4096, DMA_BIDIRECTIONAL);
574
	adapter->filter_list_dma = dma_map_single(dev,
L
Linus Torvalds 已提交
575
			adapter->filter_list_addr, 4096, DMA_BIDIRECTIONAL);
576
	adapter->rx_queue.queue_dma = dma_map_single(dev,
L
Linus Torvalds 已提交
577 578 579
			adapter->rx_queue.queue_addr,
			adapter->rx_queue.queue_len, DMA_BIDIRECTIONAL);

580 581 582
	if ((dma_mapping_error(dev, adapter->buffer_list_dma)) ||
	    (dma_mapping_error(dev, adapter->filter_list_dma)) ||
	    (dma_mapping_error(dev, adapter->rx_queue.queue_dma))) {
583 584
		netdev_err(netdev, "unable to map filter or buffer list "
			   "pages\n");
585 586
		rc = -ENOMEM;
		goto err_out;
L
Linus Torvalds 已提交
587 588 589 590 591 592 593 594 595
	}

	adapter->rx_queue.index = 0;
	adapter->rx_queue.num_slots = rxq_entries;
	adapter->rx_queue.toggle = 1;

	memcpy(&mac_address, netdev->dev_addr, netdev->addr_len);
	mac_address = mac_address >> 16;

S
Santiago Leon 已提交
596 597
	rxq_desc.fields.flags_len = IBMVETH_BUF_VALID |
					adapter->rx_queue.queue_len;
L
Linus Torvalds 已提交
598 599
	rxq_desc.fields.address = adapter->rx_queue.queue_dma;

600 601 602
	netdev_dbg(netdev, "buffer list @ 0x%p\n", adapter->buffer_list_addr);
	netdev_dbg(netdev, "filter list @ 0x%p\n", adapter->filter_list_addr);
	netdev_dbg(netdev, "receive q   @ 0x%p\n", adapter->rx_queue.queue_addr);
L
Linus Torvalds 已提交
603

604 605
	h_vio_signal(adapter->vdev->unit_address, VIO_IRQ_DISABLE);

606
	lpar_rc = ibmveth_register_logical_lan(adapter, rxq_desc, mac_address);
L
Linus Torvalds 已提交
607

S
Santiago Leon 已提交
608
	if (lpar_rc != H_SUCCESS) {
609 610 611 612
		netdev_err(netdev, "h_register_logical_lan failed with %ld\n",
			   lpar_rc);
		netdev_err(netdev, "buffer TCE:0x%llx filter TCE:0x%llx rxq "
			   "desc:0x%llx MAC:0x%llx\n",
L
Linus Torvalds 已提交
613 614 615 616
				     adapter->buffer_list_dma,
				     adapter->filter_list_dma,
				     rxq_desc.desc,
				     mac_address);
617 618
		rc = -ENONET;
		goto err_out;
L
Linus Torvalds 已提交
619 620
	}

S
Santiago Leon 已提交
621 622
	for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++) {
		if (!adapter->rx_buff_pool[i].active)
623 624
			continue;
		if (ibmveth_alloc_buffer_pool(&adapter->rx_buff_pool[i])) {
625
			netdev_err(netdev, "unable to alloc pool\n");
626
			adapter->rx_buff_pool[i].active = 0;
627 628
			rc = -ENOMEM;
			goto err_out;
629 630 631
		}
	}

632
	netdev_dbg(netdev, "registering irq 0x%x\n", netdev->irq);
S
Santiago Leon 已提交
633 634 635
	rc = request_irq(netdev->irq, ibmveth_interrupt, 0, netdev->name,
			 netdev);
	if (rc != 0) {
636 637
		netdev_err(netdev, "unable to request irq 0x%x, rc %d\n",
			   netdev->irq, rc);
L
Linus Torvalds 已提交
638
		do {
639 640
			lpar_rc = h_free_logical_lan(adapter->vdev->unit_address);
		} while (H_IS_LONG_BUSY(lpar_rc) || (lpar_rc == H_BUSY));
L
Linus Torvalds 已提交
641

642
		goto err_out;
L
Linus Torvalds 已提交
643 644
	}

R
Robert Jennings 已提交
645 646 647
	adapter->bounce_buffer =
	    kmalloc(netdev->mtu + IBMVETH_BUFF_OH, GFP_KERNEL);
	if (!adapter->bounce_buffer) {
648
		netdev_err(netdev, "unable to allocate bounce buffer\n");
649
		rc = -ENOMEM;
D
Denis Kirjanov 已提交
650
		goto err_out_free_irq;
R
Robert Jennings 已提交
651 652 653 654
	}
	adapter->bounce_buffer_dma =
	    dma_map_single(&adapter->vdev->dev, adapter->bounce_buffer,
			   netdev->mtu + IBMVETH_BUFF_OH, DMA_BIDIRECTIONAL);
655
	if (dma_mapping_error(dev, adapter->bounce_buffer_dma)) {
656
		netdev_err(netdev, "unable to map bounce buffer\n");
657
		rc = -ENOMEM;
D
Denis Kirjanov 已提交
658
		goto err_out_free_irq;
R
Robert Jennings 已提交
659 660
	}

661
	netdev_dbg(netdev, "initial replenish cycle\n");
662
	ibmveth_interrupt(netdev->irq, netdev);
L
Linus Torvalds 已提交
663

664
	netif_start_queue(netdev);
L
Linus Torvalds 已提交
665

666
	netdev_dbg(netdev, "open complete\n");
L
Linus Torvalds 已提交
667 668

	return 0;
669

D
Denis Kirjanov 已提交
670 671
err_out_free_irq:
	free_irq(netdev->irq, netdev);
672 673 674 675
err_out:
	ibmveth_cleanup(adapter);
	napi_disable(&adapter->napi);
	return rc;
L
Linus Torvalds 已提交
676 677 678 679
}

static int ibmveth_close(struct net_device *netdev)
{
680
	struct ibmveth_adapter *adapter = netdev_priv(netdev);
L
Linus Torvalds 已提交
681
	long lpar_rc;
682

683
	netdev_dbg(netdev, "close starting\n");
L
Linus Torvalds 已提交
684

685 686
	napi_disable(&adapter->napi);

687 688
	if (!adapter->pool_config)
		netif_stop_queue(netdev);
L
Linus Torvalds 已提交
689

690
	h_vio_signal(adapter->vdev->unit_address, VIO_IRQ_DISABLE);
L
Linus Torvalds 已提交
691 692 693

	do {
		lpar_rc = h_free_logical_lan(adapter->vdev->unit_address);
694
	} while (H_IS_LONG_BUSY(lpar_rc) || (lpar_rc == H_BUSY));
L
Linus Torvalds 已提交
695

S
Santiago Leon 已提交
696
	if (lpar_rc != H_SUCCESS) {
697 698
		netdev_err(netdev, "h_free_logical_lan failed with %lx, "
			   "continuing with close\n", lpar_rc);
L
Linus Torvalds 已提交
699 700
	}

701 702
	free_irq(netdev->irq, netdev);

S
Santiago Leon 已提交
703 704
	adapter->rx_no_buffer = *(u64 *)(((char *)adapter->buffer_list_addr) +
						4096 - 8);
L
Linus Torvalds 已提交
705 706 707

	ibmveth_cleanup(adapter);

708
	netdev_dbg(netdev, "close complete\n");
L
Linus Torvalds 已提交
709 710 711 712

	return 0;
}

S
Santiago Leon 已提交
713 714 715 716 717 718
static int netdev_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
{
	cmd->supported = (SUPPORTED_1000baseT_Full | SUPPORTED_Autoneg |
				SUPPORTED_FIBRE);
	cmd->advertising = (ADVERTISED_1000baseT_Full | ADVERTISED_Autoneg |
				ADVERTISED_FIBRE);
719
	ethtool_cmd_speed_set(cmd, SPEED_1000);
L
Linus Torvalds 已提交
720 721 722 723 724 725 726 727 728 729
	cmd->duplex = DUPLEX_FULL;
	cmd->port = PORT_FIBRE;
	cmd->phy_address = 0;
	cmd->transceiver = XCVR_INTERNAL;
	cmd->autoneg = AUTONEG_ENABLE;
	cmd->maxtxpkt = 0;
	cmd->maxrxpkt = 1;
	return 0;
}

S
Santiago Leon 已提交
730 731 732
static void netdev_get_drvinfo(struct net_device *dev,
			       struct ethtool_drvinfo *info)
{
L
Linus Torvalds 已提交
733
	strncpy(info->driver, ibmveth_driver_name, sizeof(info->driver) - 1);
S
Santiago Leon 已提交
734 735
	strncpy(info->version, ibmveth_driver_version,
		sizeof(info->version) - 1);
L
Linus Torvalds 已提交
736 737
}

738
static u32 ibmveth_fix_features(struct net_device *dev, u32 features)
739
{
740 741 742 743 744 745 746 747
	/*
	 * Since the ibmveth firmware interface does not have the
	 * concept of separate tx/rx checksum offload enable, if rx
	 * checksum is disabled we also have to disable tx checksum
	 * offload. Once we disable rx checksum offload, we are no
	 * longer allowed to send tx buffers that are not properly
	 * checksummed.
	 */
748

749 750
	if (!(features & NETIF_F_RXCSUM))
		features &= ~NETIF_F_ALL_CSUM;
751

752
	return features;
753 754
}

755
static int ibmveth_set_csum_offload(struct net_device *dev, u32 data)
756
{
757
	struct ibmveth_adapter *adapter = netdev_priv(dev);
S
Stephen Rothwell 已提交
758
	unsigned long set_attr, clr_attr, ret_attr;
759
	unsigned long set_attr6, clr_attr6;
760
	long ret, ret4, ret6;
761 762 763 764 765 766 767 768 769 770
	int rc1 = 0, rc2 = 0;
	int restart = 0;

	if (netif_running(dev)) {
		restart = 1;
		adapter->pool_config = 1;
		ibmveth_close(dev);
		adapter->pool_config = 0;
	}

B
Brian King 已提交
771 772
	set_attr = 0;
	clr_attr = 0;
773 774
	set_attr6 = 0;
	clr_attr6 = 0;
775

776
	if (data) {
B
Brian King 已提交
777
		set_attr = IBMVETH_ILLAN_IPV4_TCP_CSUM;
778 779
		set_attr6 = IBMVETH_ILLAN_IPV6_TCP_CSUM;
	} else {
B
Brian King 已提交
780
		clr_attr = IBMVETH_ILLAN_IPV4_TCP_CSUM;
781 782
		clr_attr6 = IBMVETH_ILLAN_IPV6_TCP_CSUM;
	}
783

B
Brian King 已提交
784
	ret = h_illan_attributes(adapter->vdev->unit_address, 0, 0, &ret_attr);
785

B
Brian King 已提交
786 787 788
	if (ret == H_SUCCESS && !(ret_attr & IBMVETH_ILLAN_ACTIVE_TRUNK) &&
	    !(ret_attr & IBMVETH_ILLAN_TRUNK_PRI_MASK) &&
	    (ret_attr & IBMVETH_ILLAN_PADDED_PKT_CSUM)) {
789
		ret4 = h_illan_attributes(adapter->vdev->unit_address, clr_attr,
B
Brian King 已提交
790
					 set_attr, &ret_attr);
791

792
		if (ret4 != H_SUCCESS) {
793 794
			netdev_err(dev, "unable to change IPv4 checksum "
					"offload settings. %d rc=%ld\n",
795 796 797 798 799 800 801
					data, ret4);

			h_illan_attributes(adapter->vdev->unit_address,
					   set_attr, clr_attr, &ret_attr);

			if (data == 1)
				dev->features &= ~NETIF_F_IP_CSUM;
802

S
Santiago Leon 已提交
803
		} else {
804
			adapter->fw_ipv4_csum_support = data;
S
Santiago Leon 已提交
805
		}
806 807 808 809 810

		ret6 = h_illan_attributes(adapter->vdev->unit_address,
					 clr_attr6, set_attr6, &ret_attr);

		if (ret6 != H_SUCCESS) {
811 812
			netdev_err(dev, "unable to change IPv6 checksum "
					"offload settings. %d rc=%ld\n",
813 814 815 816 817 818 819
					data, ret6);

			h_illan_attributes(adapter->vdev->unit_address,
					   set_attr6, clr_attr6, &ret_attr);

			if (data == 1)
				dev->features &= ~NETIF_F_IPV6_CSUM;
820 821 822 823

		} else
			adapter->fw_ipv6_csum_support = data;

824
		if (ret4 == H_SUCCESS || ret6 == H_SUCCESS)
825
			adapter->rx_csum = data;
826 827
		else
			rc1 = -EIO;
828 829
	} else {
		rc1 = -EIO;
830 831 832
		netdev_err(dev, "unable to change checksum offload settings."
				     " %d rc=%ld ret_attr=%lx\n", data, ret,
				     ret_attr);
833 834 835 836 837 838 839 840
	}

	if (restart)
		rc2 = ibmveth_open(dev);

	return rc1 ? rc1 : rc2;
}

841
static int ibmveth_set_features(struct net_device *dev, u32 features)
842
{
843
	struct ibmveth_adapter *adapter = netdev_priv(dev);
844 845
	int rx_csum = !!(features & NETIF_F_RXCSUM);
	int rc;
846

847
	if (rx_csum == adapter->rx_csum)
848 849
		return 0;

850 851 852
	rc = ibmveth_set_csum_offload(dev, rx_csum);
	if (rc && !adapter->rx_csum)
		dev->features = features & ~(NETIF_F_ALL_CSUM | NETIF_F_RXCSUM);
853 854 855 856

	return rc;
}

857 858 859 860 861 862 863 864 865 866 867
static void ibmveth_get_strings(struct net_device *dev, u32 stringset, u8 *data)
{
	int i;

	if (stringset != ETH_SS_STATS)
		return;

	for (i = 0; i < ARRAY_SIZE(ibmveth_stats); i++, data += ETH_GSTRING_LEN)
		memcpy(data, ibmveth_stats[i].name, ETH_GSTRING_LEN);
}

868
static int ibmveth_get_sset_count(struct net_device *dev, int sset)
869
{
870 871 872 873 874 875
	switch (sset) {
	case ETH_SS_STATS:
		return ARRAY_SIZE(ibmveth_stats);
	default:
		return -EOPNOTSUPP;
	}
876 877 878 879 880 881
}

static void ibmveth_get_ethtool_stats(struct net_device *dev,
				      struct ethtool_stats *stats, u64 *data)
{
	int i;
882
	struct ibmveth_adapter *adapter = netdev_priv(dev);
883 884 885 886 887

	for (i = 0; i < ARRAY_SIZE(ibmveth_stats); i++)
		data[i] = IBMVETH_GET_STAT(adapter, ibmveth_stats[i].offset);
}

888
static const struct ethtool_ops netdev_ethtool_ops = {
L
Linus Torvalds 已提交
889 890
	.get_drvinfo		= netdev_get_drvinfo,
	.get_settings		= netdev_get_settings,
891
	.get_link		= ethtool_op_get_link,
892
	.get_strings		= ibmveth_get_strings,
893
	.get_sset_count		= ibmveth_get_sset_count,
894
	.get_ethtool_stats	= ibmveth_get_ethtool_stats,
L
Linus Torvalds 已提交
895 896 897 898 899 900 901 902 903
};

static int ibmveth_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
{
	return -EOPNOTSUPP;
}

#define page_offset(v) ((unsigned long)(v) & ((1 << 12) - 1))

904 905
static int ibmveth_send(struct ibmveth_adapter *adapter,
			union ibmveth_buf_desc *descs)
L
Linus Torvalds 已提交
906 907 908
{
	unsigned long correlator;
	unsigned int retry_count;
909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925
	unsigned long ret;

	/*
	 * The retry count sets a maximum for the number of broadcast and
	 * multicast destinations within the system.
	 */
	retry_count = 1024;
	correlator = 0;
	do {
		ret = h_send_logical_lan(adapter->vdev->unit_address,
					     descs[0].desc, descs[1].desc,
					     descs[2].desc, descs[3].desc,
					     descs[4].desc, descs[5].desc,
					     correlator, &correlator);
	} while ((ret == H_BUSY) && (retry_count--));

	if (ret != H_SUCCESS && ret != H_DROPPED) {
926 927
		netdev_err(adapter->netdev, "tx: h_send_logical_lan failed "
			   "with rc=%ld\n", ret);
928 929 930 931 932
		return 1;
	}

	return 0;
}
S
Santiago Leon 已提交
933

934 935 936 937 938 939 940 941
static netdev_tx_t ibmveth_start_xmit(struct sk_buff *skb,
				      struct net_device *netdev)
{
	struct ibmveth_adapter *adapter = netdev_priv(netdev);
	unsigned int desc_flags;
	union ibmveth_buf_desc descs[6];
	int last, i;
	int force_bounce = 0;
942
	dma_addr_t dma_addr;
943 944 945 946 947 948 949 950 951

	/*
	 * veth handles a maximum of 6 segments including the header, so
	 * we have to linearize the skb if there are more than this.
	 */
	if (skb_shinfo(skb)->nr_frags > 5 && __skb_linearize(skb)) {
		netdev->stats.tx_dropped++;
		goto out;
	}
L
Linus Torvalds 已提交
952

953
	/* veth can't checksum offload UDP */
B
Brian King 已提交
954
	if (skb->ip_summed == CHECKSUM_PARTIAL &&
955 956 957 958 959 960
	    ((skb->protocol == htons(ETH_P_IP) &&
	      ip_hdr(skb)->protocol != IPPROTO_TCP) ||
	     (skb->protocol == htons(ETH_P_IPV6) &&
	      ipv6_hdr(skb)->nexthdr != IPPROTO_TCP)) &&
	    skb_checksum_help(skb)) {

961
		netdev_err(netdev, "tx: failed to checksum packet\n");
962
		netdev->stats.tx_dropped++;
B
Brian King 已提交
963 964 965
		goto out;
	}

966 967
	desc_flags = IBMVETH_BUF_VALID;

B
Brian King 已提交
968
	if (skb->ip_summed == CHECKSUM_PARTIAL) {
969 970
		unsigned char *buf = skb_transport_header(skb) +
						skb->csum_offset;
B
Brian King 已提交
971

972
		desc_flags |= (IBMVETH_BUF_NO_CSUM | IBMVETH_BUF_CSUM_GOOD);
B
Brian King 已提交
973 974 975 976 977 978

		/* Need to zero out the checksum */
		buf[0] = 0;
		buf[1] = 0;
	}

979 980
retry_bounce:
	memset(descs, 0, sizeof(descs));
S
Santiago Leon 已提交
981

982 983 984 985 986 987 988
	/*
	 * If a linear packet is below the rx threshold then
	 * copy it into the static bounce buffer. This avoids the
	 * cost of a TCE insert and remove.
	 */
	if (force_bounce || (!skb_is_nonlinear(skb) &&
				(skb->len < tx_copybreak))) {
R
Robert Jennings 已提交
989 990
		skb_copy_from_linear_data(skb, adapter->bounce_buffer,
					  skb->len);
L
Linus Torvalds 已提交
991

992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006
		descs[0].fields.flags_len = desc_flags | skb->len;
		descs[0].fields.address = adapter->bounce_buffer_dma;

		if (ibmveth_send(adapter, descs)) {
			adapter->tx_send_failed++;
			netdev->stats.tx_dropped++;
		} else {
			netdev->stats.tx_packets++;
			netdev->stats.tx_bytes += skb->len;
		}

		goto out;
	}

	/* Map the header */
1007 1008 1009
	dma_addr = dma_map_single(&adapter->vdev->dev, skb->data,
				  skb_headlen(skb), DMA_TO_DEVICE);
	if (dma_mapping_error(&adapter->vdev->dev, dma_addr))
1010 1011 1012
		goto map_failed;

	descs[0].fields.flags_len = desc_flags | skb_headlen(skb);
1013
	descs[0].fields.address = dma_addr;
1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032

	/* Map the frags */
	for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
		skb_frag_t *frag = &skb_shinfo(skb)->frags[i];

		dma_addr = dma_map_page(&adapter->vdev->dev, frag->page,
					frag->page_offset, frag->size,
					DMA_TO_DEVICE);

		if (dma_mapping_error(&adapter->vdev->dev, dma_addr))
			goto map_failed_frags;

		descs[i+1].fields.flags_len = desc_flags | frag->size;
		descs[i+1].fields.address = dma_addr;
	}

	if (ibmveth_send(adapter, descs)) {
		adapter->tx_send_failed++;
		netdev->stats.tx_dropped++;
L
Linus Torvalds 已提交
1033
	} else {
1034 1035
		netdev->stats.tx_packets++;
		netdev->stats.tx_bytes += skb->len;
L
Linus Torvalds 已提交
1036 1037
	}

B
Brian King 已提交
1038 1039 1040 1041 1042 1043
	dma_unmap_single(&adapter->vdev->dev,
			 descs[0].fields.address,
			 descs[0].fields.flags_len & IBMVETH_BUF_LEN_MASK,
			 DMA_TO_DEVICE);

	for (i = 1; i < skb_shinfo(skb)->nr_frags + 1; i++)
1044 1045 1046
		dma_unmap_page(&adapter->vdev->dev, descs[i].fields.address,
			       descs[i].fields.flags_len & IBMVETH_BUF_LEN_MASK,
			       DMA_TO_DEVICE);
L
Linus Torvalds 已提交
1047

S
Santiago Leon 已提交
1048
out:
L
Linus Torvalds 已提交
1049
	dev_kfree_skb(skb);
1050
	return NETDEV_TX_OK;
1051 1052 1053 1054 1055 1056 1057 1058 1059 1060

map_failed_frags:
	last = i+1;
	for (i = 0; i < last; i++)
		dma_unmap_page(&adapter->vdev->dev, descs[i].fields.address,
			       descs[i].fields.flags_len & IBMVETH_BUF_LEN_MASK,
			       DMA_TO_DEVICE);

map_failed:
	if (!firmware_has_feature(FW_FEATURE_CMO))
1061
		netdev_err(netdev, "tx: unable to map xmit buffer\n");
1062 1063 1064 1065
	adapter->tx_map_failed++;
	skb_linearize(skb);
	force_bounce = 1;
	goto retry_bounce;
L
Linus Torvalds 已提交
1066 1067
}

1068
static int ibmveth_poll(struct napi_struct *napi, int budget)
L
Linus Torvalds 已提交
1069
{
S
Santiago Leon 已提交
1070 1071
	struct ibmveth_adapter *adapter =
			container_of(napi, struct ibmveth_adapter, napi);
1072
	struct net_device *netdev = adapter->netdev;
L
Linus Torvalds 已提交
1073 1074 1075
	int frames_processed = 0;
	unsigned long lpar_rc;

S
Santiago Leon 已提交
1076
restart_poll:
L
Linus Torvalds 已提交
1077
	do {
1078 1079
		if (!ibmveth_rxq_pending_buffer(adapter))
			break;
L
Linus Torvalds 已提交
1080

1081
		smp_rmb();
1082 1083 1084
		if (!ibmveth_rxq_buffer_valid(adapter)) {
			wmb(); /* suggested by larson1 */
			adapter->rx_invalid_buffer++;
1085
			netdev_dbg(netdev, "recycling invalid buffer\n");
1086 1087
			ibmveth_rxq_recycle_buffer(adapter);
		} else {
S
Santiago Leon 已提交
1088
			struct sk_buff *skb, *new_skb;
1089 1090
			int length = ibmveth_rxq_frame_length(adapter);
			int offset = ibmveth_rxq_frame_offset(adapter);
B
Brian King 已提交
1091 1092
			int csum_good = ibmveth_rxq_csum_good(adapter);

1093
			skb = ibmveth_rxq_get_buffer(adapter);
L
Linus Torvalds 已提交
1094

S
Santiago Leon 已提交
1095 1096 1097 1098 1099 1100 1101 1102
			new_skb = NULL;
			if (length < rx_copybreak)
				new_skb = netdev_alloc_skb(netdev, length);

			if (new_skb) {
				skb_copy_to_linear_data(new_skb,
							skb->data + offset,
							length);
1103 1104 1105
				if (rx_flush)
					ibmveth_flush_buffer(skb->data,
						length + offset);
1106 1107
				if (!ibmveth_rxq_recycle_buffer(adapter))
					kfree_skb(skb);
S
Santiago Leon 已提交
1108 1109 1110 1111 1112
				skb = new_skb;
			} else {
				ibmveth_rxq_harvest_buffer(adapter);
				skb_reserve(skb, offset);
			}
L
Linus Torvalds 已提交
1113

1114 1115
			skb_put(skb, length);
			skb->protocol = eth_type_trans(skb, netdev);
L
Linus Torvalds 已提交
1116

S
Santiago Leon 已提交
1117 1118 1119
			if (csum_good)
				skb->ip_summed = CHECKSUM_UNNECESSARY;

1120
			netif_receive_skb(skb);	/* send it up */
L
Linus Torvalds 已提交
1121

1122 1123
			netdev->stats.rx_packets++;
			netdev->stats.rx_bytes += length;
1124
			frames_processed++;
L
Linus Torvalds 已提交
1125
		}
1126
	} while (frames_processed < budget);
L
Linus Torvalds 已提交
1127

1128
	ibmveth_replenish_task(adapter);
L
Linus Torvalds 已提交
1129

1130 1131 1132 1133 1134 1135
	if (frames_processed < budget) {
		/* We think we are done - reenable interrupts,
		 * then check once more to make sure we are done.
		 */
		lpar_rc = h_vio_signal(adapter->vdev->unit_address,
				       VIO_IRQ_ENABLE);
L
Linus Torvalds 已提交
1136

1137
		BUG_ON(lpar_rc != H_SUCCESS);
L
Linus Torvalds 已提交
1138

1139
		napi_complete(napi);
L
Linus Torvalds 已提交
1140

1141
		if (ibmveth_rxq_pending_buffer(adapter) &&
1142
		    napi_reschedule(napi)) {
1143 1144 1145 1146
			lpar_rc = h_vio_signal(adapter->vdev->unit_address,
					       VIO_IRQ_DISABLE);
			goto restart_poll;
		}
L
Linus Torvalds 已提交
1147 1148
	}

1149
	return frames_processed;
L
Linus Torvalds 已提交
1150 1151
}

1152
static irqreturn_t ibmveth_interrupt(int irq, void *dev_instance)
1153
{
L
Linus Torvalds 已提交
1154
	struct net_device *netdev = dev_instance;
1155
	struct ibmveth_adapter *adapter = netdev_priv(netdev);
L
Linus Torvalds 已提交
1156 1157
	unsigned long lpar_rc;

1158
	if (napi_schedule_prep(&adapter->napi)) {
1159 1160
		lpar_rc = h_vio_signal(adapter->vdev->unit_address,
				       VIO_IRQ_DISABLE);
1161
		BUG_ON(lpar_rc != H_SUCCESS);
1162
		__napi_schedule(&adapter->napi);
L
Linus Torvalds 已提交
1163 1164 1165 1166 1167 1168
	}
	return IRQ_HANDLED;
}

static void ibmveth_set_multicast_list(struct net_device *netdev)
{
1169
	struct ibmveth_adapter *adapter = netdev_priv(netdev);
L
Linus Torvalds 已提交
1170 1171
	unsigned long lpar_rc;

1172 1173
	if ((netdev->flags & IFF_PROMISC) ||
	    (netdev_mc_count(netdev) > adapter->mcastFilterSize)) {
L
Linus Torvalds 已提交
1174 1175 1176 1177
		lpar_rc = h_multicast_ctrl(adapter->vdev->unit_address,
					   IbmVethMcastEnableRecv |
					   IbmVethMcastDisableFiltering,
					   0);
S
Santiago Leon 已提交
1178
		if (lpar_rc != H_SUCCESS) {
1179 1180
			netdev_err(netdev, "h_multicast_ctrl rc=%ld when "
				   "entering promisc mode\n", lpar_rc);
L
Linus Torvalds 已提交
1181 1182
		}
	} else {
1183
		struct netdev_hw_addr *ha;
L
Linus Torvalds 已提交
1184 1185 1186 1187 1188 1189
		/* clear the filter table & disable filtering */
		lpar_rc = h_multicast_ctrl(adapter->vdev->unit_address,
					   IbmVethMcastEnableRecv |
					   IbmVethMcastDisableFiltering |
					   IbmVethMcastClearFilterTable,
					   0);
S
Santiago Leon 已提交
1190
		if (lpar_rc != H_SUCCESS) {
1191 1192 1193
			netdev_err(netdev, "h_multicast_ctrl rc=%ld when "
				   "attempting to clear filter table\n",
				   lpar_rc);
L
Linus Torvalds 已提交
1194 1195
		}
		/* add the addresses to the filter table */
1196
		netdev_for_each_mc_addr(ha, netdev) {
S
Santiago Leon 已提交
1197
			/* add the multicast address to the filter table */
L
Linus Torvalds 已提交
1198
			unsigned long mcast_addr = 0;
1199
			memcpy(((char *)&mcast_addr)+2, ha->addr, 6);
L
Linus Torvalds 已提交
1200 1201 1202
			lpar_rc = h_multicast_ctrl(adapter->vdev->unit_address,
						   IbmVethMcastAddFilter,
						   mcast_addr);
S
Santiago Leon 已提交
1203
			if (lpar_rc != H_SUCCESS) {
1204 1205 1206
				netdev_err(netdev, "h_multicast_ctrl rc=%ld "
					   "when adding an entry to the filter "
					   "table\n", lpar_rc);
L
Linus Torvalds 已提交
1207 1208
			}
		}
1209

L
Linus Torvalds 已提交
1210 1211 1212 1213
		/* re-enable filtering */
		lpar_rc = h_multicast_ctrl(adapter->vdev->unit_address,
					   IbmVethMcastEnableFiltering,
					   0);
S
Santiago Leon 已提交
1214
		if (lpar_rc != H_SUCCESS) {
1215 1216
			netdev_err(netdev, "h_multicast_ctrl rc=%ld when "
				   "enabling filtering\n", lpar_rc);
L
Linus Torvalds 已提交
1217 1218 1219 1220 1221 1222
		}
	}
}

static int ibmveth_change_mtu(struct net_device *dev, int new_mtu)
{
1223
	struct ibmveth_adapter *adapter = netdev_priv(dev);
R
Robert Jennings 已提交
1224
	struct vio_dev *viodev = adapter->vdev;
1225
	int new_mtu_oh = new_mtu + IBMVETH_BUFF_OH;
1226 1227
	int i, rc;
	int need_restart = 0;
1228

S
Santiago Leon 已提交
1229
	if (new_mtu < IBMVETH_MIN_MTU)
L
Linus Torvalds 已提交
1230
		return -EINVAL;
1231

S
Santiago Leon 已提交
1232
	for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++)
1233 1234 1235
		if (new_mtu_oh < adapter->rx_buff_pool[i].buff_size)
			break;

S
Santiago Leon 已提交
1236
	if (i == IBMVETH_NUM_BUFF_POOLS)
1237 1238
		return -EINVAL;

1239 1240
	/* Deactivate all the buffer pools so that the next loop can activate
	   only the buffer pools necessary to hold the new MTU */
1241 1242 1243 1244 1245 1246
	if (netif_running(adapter->netdev)) {
		need_restart = 1;
		adapter->pool_config = 1;
		ibmveth_close(adapter->netdev);
		adapter->pool_config = 0;
	}
1247

1248
	/* Look for an active buffer pool that can hold the new MTU */
S
Santiago Leon 已提交
1249
	for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++) {
1250
		adapter->rx_buff_pool[i].active = 1;
1251

1252
		if (new_mtu_oh < adapter->rx_buff_pool[i].buff_size) {
R
Robert Jennings 已提交
1253 1254 1255 1256
			dev->mtu = new_mtu;
			vio_cmo_set_dev_desired(viodev,
						ibmveth_get_desired_dma
						(viodev));
1257 1258 1259
			if (need_restart) {
				return ibmveth_open(adapter->netdev);
			}
1260
			return 0;
1261 1262
		}
	}
1263 1264 1265 1266

	if (need_restart && (rc = ibmveth_open(adapter->netdev)))
		return rc;

1267
	return -EINVAL;
L
Linus Torvalds 已提交
1268 1269
}

1270 1271 1272
#ifdef CONFIG_NET_POLL_CONTROLLER
static void ibmveth_poll_controller(struct net_device *dev)
{
1273
	ibmveth_replenish_task(netdev_priv(dev));
A
Andrew Morton 已提交
1274
	ibmveth_interrupt(dev->irq, dev);
1275 1276 1277
}
#endif

R
Robert Jennings 已提交
1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302
/**
 * ibmveth_get_desired_dma - Calculate IO memory desired by the driver
 *
 * @vdev: struct vio_dev for the device whose desired IO mem is to be returned
 *
 * Return value:
 *	Number of bytes of IO data the driver will need to perform well.
 */
static unsigned long ibmveth_get_desired_dma(struct vio_dev *vdev)
{
	struct net_device *netdev = dev_get_drvdata(&vdev->dev);
	struct ibmveth_adapter *adapter;
	unsigned long ret;
	int i;
	int rxqentries = 1;

	/* netdev inits at probe time along with the structures we need below*/
	if (netdev == NULL)
		return IOMMU_PAGE_ALIGN(IBMVETH_IO_ENTITLEMENT_DEFAULT);

	adapter = netdev_priv(netdev);

	ret = IBMVETH_BUFF_LIST_SIZE + IBMVETH_FILT_LIST_SIZE;
	ret += IOMMU_PAGE_ALIGN(netdev->mtu);

S
Santiago Leon 已提交
1303
	for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++) {
R
Robert Jennings 已提交
1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317
		/* add the size of the active receive buffers */
		if (adapter->rx_buff_pool[i].active)
			ret +=
			    adapter->rx_buff_pool[i].size *
			    IOMMU_PAGE_ALIGN(adapter->rx_buff_pool[i].
			            buff_size);
		rxqentries += adapter->rx_buff_pool[i].size;
	}
	/* add the size of the receive queue entries */
	ret += IOMMU_PAGE_ALIGN(rxqentries * sizeof(struct ibmveth_rx_q_entry));

	return ret;
}

1318 1319 1320 1321 1322 1323 1324
static const struct net_device_ops ibmveth_netdev_ops = {
	.ndo_open		= ibmveth_open,
	.ndo_stop		= ibmveth_close,
	.ndo_start_xmit		= ibmveth_start_xmit,
	.ndo_set_multicast_list	= ibmveth_set_multicast_list,
	.ndo_do_ioctl		= ibmveth_ioctl,
	.ndo_change_mtu		= ibmveth_change_mtu,
1325 1326
	.ndo_fix_features	= ibmveth_fix_features,
	.ndo_set_features	= ibmveth_set_features,
1327 1328 1329 1330 1331 1332 1333
	.ndo_validate_addr	= eth_validate_addr,
	.ndo_set_mac_address	= eth_mac_addr,
#ifdef CONFIG_NET_POLL_CONTROLLER
	.ndo_poll_controller	= ibmveth_poll_controller,
#endif
};

S
Santiago Leon 已提交
1334 1335
static int __devinit ibmveth_probe(struct vio_dev *dev,
				   const struct vio_device_id *id)
L
Linus Torvalds 已提交
1336
{
1337
	int rc, i;
L
Linus Torvalds 已提交
1338
	struct net_device *netdev;
1339
	struct ibmveth_adapter *adapter;
L
Linus Torvalds 已提交
1340 1341 1342
	unsigned char *mac_addr_p;
	unsigned int *mcastFilterSize_p;

1343 1344
	dev_dbg(&dev->dev, "entering ibmveth_probe for UA 0x%x\n",
		dev->unit_address);
L
Linus Torvalds 已提交
1345

S
Santiago Leon 已提交
1346 1347 1348
	mac_addr_p = (unsigned char *)vio_get_attribute(dev, VETH_MAC_ADDR,
							NULL);
	if (!mac_addr_p) {
1349
		dev_err(&dev->dev, "Can't find VETH_MAC_ADDR attribute\n");
1350
		return -EINVAL;
L
Linus Torvalds 已提交
1351
	}
1352

S
Santiago Leon 已提交
1353
	mcastFilterSize_p = (unsigned int *)vio_get_attribute(dev,
1354
						VETH_MCAST_FILTER_SIZE, NULL);
S
Santiago Leon 已提交
1355
	if (!mcastFilterSize_p) {
1356 1357
		dev_err(&dev->dev, "Can't find VETH_MCAST_FILTER_SIZE "
			"attribute\n");
1358
		return -EINVAL;
L
Linus Torvalds 已提交
1359
	}
1360

L
Linus Torvalds 已提交
1361 1362
	netdev = alloc_etherdev(sizeof(struct ibmveth_adapter));

S
Santiago Leon 已提交
1363
	if (!netdev)
L
Linus Torvalds 已提交
1364 1365
		return -ENOMEM;

1366
	adapter = netdev_priv(netdev);
1367
	dev_set_drvdata(&dev->dev, netdev);
L
Linus Torvalds 已提交
1368 1369 1370

	adapter->vdev = dev;
	adapter->netdev = netdev;
S
Santiago Leon 已提交
1371
	adapter->mcastFilterSize = *mcastFilterSize_p;
1372
	adapter->pool_config = 0;
1373

1374 1375
	netif_napi_add(netdev, &adapter->napi, ibmveth_poll, 16);

S
Santiago Leon 已提交
1376 1377 1378 1379 1380 1381 1382 1383
	/*
	 * Some older boxes running PHYP non-natively have an OF that returns
	 * a 8-byte local-mac-address field (and the first 2 bytes have to be
	 * ignored) while newer boxes' OF return a 6-byte field. Note that
	 * IEEE 1275 specifies that local-mac-address must be a 6-byte field.
	 * The RPA doc specifies that the first byte must be 10b, so we'll
	 * just look for it to solve this 8 vs. 6 byte field issue
	 */
L
Linus Torvalds 已提交
1384 1385 1386 1387 1388 1389 1390
	if ((*mac_addr_p & 0x3) != 0x02)
		mac_addr_p += 2;

	adapter->mac_addr = 0;
	memcpy(&adapter->mac_addr, mac_addr_p, 6);

	netdev->irq = dev->irq;
1391 1392
	netdev->netdev_ops = &ibmveth_netdev_ops;
	netdev->ethtool_ops = &netdev_ethtool_ops;
L
Linus Torvalds 已提交
1393
	SET_NETDEV_DEV(netdev, &dev->dev);
1394 1395 1396
	netdev->hw_features = NETIF_F_SG | NETIF_F_RXCSUM |
		NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM;
	netdev->features |= netdev->hw_features;
L
Linus Torvalds 已提交
1397

1398
	memcpy(netdev->dev_addr, &adapter->mac_addr, netdev->addr_len);
L
Linus Torvalds 已提交
1399

S
Santiago Leon 已提交
1400
	for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++) {
1401
		struct kobject *kobj = &adapter->rx_buff_pool[i].kobj;
1402 1403
		int error;

1404 1405
		ibmveth_init_buffer_pool(&adapter->rx_buff_pool[i], i,
					 pool_count[i], pool_size[i],
1406
					 pool_active[i]);
1407 1408 1409 1410
		error = kobject_init_and_add(kobj, &ktype_veth_pool,
					     &dev->dev.kobj, "pool%d", i);
		if (!error)
			kobject_uevent(kobj, KOBJ_ADD);
1411
	}
L
Linus Torvalds 已提交
1412

1413
	netdev_dbg(netdev, "adapter @ 0x%p\n", adapter);
L
Linus Torvalds 已提交
1414 1415 1416 1417 1418

	adapter->buffer_list_dma = DMA_ERROR_CODE;
	adapter->filter_list_dma = DMA_ERROR_CODE;
	adapter->rx_queue.queue_dma = DMA_ERROR_CODE;

1419
	netdev_dbg(netdev, "registering netdev...\n");
L
Linus Torvalds 已提交
1420

1421 1422
	ibmveth_set_features(netdev, netdev->features);

L
Linus Torvalds 已提交
1423 1424
	rc = register_netdev(netdev);

S
Santiago Leon 已提交
1425
	if (rc) {
1426
		netdev_dbg(netdev, "failed to register netdev rc=%d\n", rc);
L
Linus Torvalds 已提交
1427 1428 1429 1430
		free_netdev(netdev);
		return rc;
	}

1431
	netdev_dbg(netdev, "registered\n");
L
Linus Torvalds 已提交
1432 1433 1434 1435 1436 1437

	return 0;
}

static int __devexit ibmveth_remove(struct vio_dev *dev)
{
1438
	struct net_device *netdev = dev_get_drvdata(&dev->dev);
1439
	struct ibmveth_adapter *adapter = netdev_priv(netdev);
1440 1441
	int i;

S
Santiago Leon 已提交
1442
	for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++)
1443
		kobject_put(&adapter->rx_buff_pool[i].kobj);
L
Linus Torvalds 已提交
1444 1445 1446 1447

	unregister_netdev(netdev);

	free_netdev(netdev);
R
Robert Jennings 已提交
1448 1449
	dev_set_drvdata(&dev->dev, NULL);

L
Linus Torvalds 已提交
1450 1451 1452
	return 0;
}

1453 1454 1455 1456
static struct attribute veth_active_attr;
static struct attribute veth_num_attr;
static struct attribute veth_size_attr;

S
Santiago Leon 已提交
1457 1458
static ssize_t veth_pool_show(struct kobject *kobj,
			      struct attribute *attr, char *buf)
1459
{
1460
	struct ibmveth_buff_pool *pool = container_of(kobj,
1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472
						      struct ibmveth_buff_pool,
						      kobj);

	if (attr == &veth_active_attr)
		return sprintf(buf, "%d\n", pool->active);
	else if (attr == &veth_num_attr)
		return sprintf(buf, "%d\n", pool->size);
	else if (attr == &veth_size_attr)
		return sprintf(buf, "%d\n", pool->buff_size);
	return 0;
}

S
Santiago Leon 已提交
1473 1474
static ssize_t veth_pool_store(struct kobject *kobj, struct attribute *attr,
			       const char *buf, size_t count)
1475
{
1476
	struct ibmveth_buff_pool *pool = container_of(kobj,
1477 1478
						      struct ibmveth_buff_pool,
						      kobj);
1479 1480
	struct net_device *netdev = dev_get_drvdata(
	    container_of(kobj->parent, struct device, kobj));
1481
	struct ibmveth_adapter *adapter = netdev_priv(netdev);
1482 1483 1484 1485 1486
	long value = simple_strtol(buf, NULL, 10);
	long rc;

	if (attr == &veth_active_attr) {
		if (value && !pool->active) {
1487
			if (netif_running(netdev)) {
S
Santiago Leon 已提交
1488
				if (ibmveth_alloc_buffer_pool(pool)) {
1489 1490
					netdev_err(netdev,
						   "unable to alloc pool\n");
1491 1492 1493 1494 1495 1496 1497 1498
					return -ENOMEM;
				}
				pool->active = 1;
				adapter->pool_config = 1;
				ibmveth_close(netdev);
				adapter->pool_config = 0;
				if ((rc = ibmveth_open(netdev)))
					return rc;
S
Santiago Leon 已提交
1499
			} else {
1500
				pool->active = 1;
S
Santiago Leon 已提交
1501
			}
1502 1503 1504 1505 1506
		} else if (!value && pool->active) {
			int mtu = netdev->mtu + IBMVETH_BUFF_OH;
			int i;
			/* Make sure there is a buffer pool with buffers that
			   can hold a packet of the size of the MTU */
S
Santiago Leon 已提交
1507
			for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++) {
1508 1509 1510 1511
				if (pool == &adapter->rx_buff_pool[i])
					continue;
				if (!adapter->rx_buff_pool[i].active)
					continue;
1512 1513
				if (mtu <= adapter->rx_buff_pool[i].buff_size)
					break;
1514
			}
1515

S
Santiago Leon 已提交
1516
			if (i == IBMVETH_NUM_BUFF_POOLS) {
1517
				netdev_err(netdev, "no active pool >= MTU\n");
1518 1519
				return -EPERM;
			}
1520 1521 1522 1523

			if (netif_running(netdev)) {
				adapter->pool_config = 1;
				ibmveth_close(netdev);
1524
				pool->active = 0;
1525 1526 1527 1528
				adapter->pool_config = 0;
				if ((rc = ibmveth_open(netdev)))
					return rc;
			}
1529
			pool->active = 0;
1530 1531
		}
	} else if (attr == &veth_num_attr) {
S
Santiago Leon 已提交
1532
		if (value <= 0 || value > IBMVETH_MAX_POOL_COUNT) {
1533
			return -EINVAL;
S
Santiago Leon 已提交
1534
		} else {
1535 1536 1537 1538 1539 1540 1541
			if (netif_running(netdev)) {
				adapter->pool_config = 1;
				ibmveth_close(netdev);
				adapter->pool_config = 0;
				pool->size = value;
				if ((rc = ibmveth_open(netdev)))
					return rc;
S
Santiago Leon 已提交
1542
			} else {
1543
				pool->size = value;
S
Santiago Leon 已提交
1544
			}
1545 1546
		}
	} else if (attr == &veth_size_attr) {
S
Santiago Leon 已提交
1547
		if (value <= IBMVETH_BUFF_OH || value > IBMVETH_MAX_BUF_SIZE) {
1548
			return -EINVAL;
S
Santiago Leon 已提交
1549
		} else {
1550 1551 1552 1553 1554 1555 1556
			if (netif_running(netdev)) {
				adapter->pool_config = 1;
				ibmveth_close(netdev);
				adapter->pool_config = 0;
				pool->buff_size = value;
				if ((rc = ibmveth_open(netdev)))
					return rc;
S
Santiago Leon 已提交
1557
			} else {
1558
				pool->buff_size = value;
S
Santiago Leon 已提交
1559
			}
1560 1561 1562 1563
		}
	}

	/* kick the interrupt handler to allocate/deallocate pools */
1564
	ibmveth_interrupt(netdev->irq, netdev);
1565 1566 1567 1568
	return count;
}


S
Santiago Leon 已提交
1569 1570 1571 1572
#define ATTR(_name, _mode)				\
	struct attribute veth_##_name##_attr = {	\
	.name = __stringify(_name), .mode = _mode,	\
	};
1573 1574 1575 1576 1577

static ATTR(active, 0644);
static ATTR(num, 0644);
static ATTR(size, 0644);

S
Santiago Leon 已提交
1578
static struct attribute *veth_pool_attrs[] = {
1579 1580 1581 1582 1583 1584
	&veth_active_attr,
	&veth_num_attr,
	&veth_size_attr,
	NULL,
};

1585
static const struct sysfs_ops veth_pool_ops = {
1586 1587 1588 1589 1590 1591 1592 1593 1594 1595
	.show   = veth_pool_show,
	.store  = veth_pool_store,
};

static struct kobj_type ktype_veth_pool = {
	.release        = NULL,
	.sysfs_ops      = &veth_pool_ops,
	.default_attrs  = veth_pool_attrs,
};

B
Brian King 已提交
1596 1597 1598 1599 1600 1601
static int ibmveth_resume(struct device *dev)
{
	struct net_device *netdev = dev_get_drvdata(dev);
	ibmveth_interrupt(netdev->irq, netdev);
	return 0;
}
1602

S
Santiago Leon 已提交
1603
static struct vio_device_id ibmveth_device_table[] __devinitdata = {
L
Linus Torvalds 已提交
1604
	{ "network", "IBM,l-lan"},
1605
	{ "", "" }
L
Linus Torvalds 已提交
1606 1607 1608
};
MODULE_DEVICE_TABLE(vio, ibmveth_device_table);

B
Brian King 已提交
1609 1610 1611 1612
static struct dev_pm_ops ibmveth_pm_ops = {
	.resume = ibmveth_resume
};

L
Linus Torvalds 已提交
1613
static struct vio_driver ibmveth_driver = {
1614 1615 1616
	.id_table	= ibmveth_device_table,
	.probe		= ibmveth_probe,
	.remove		= ibmveth_remove,
R
Robert Jennings 已提交
1617
	.get_desired_dma = ibmveth_get_desired_dma,
1618 1619
	.driver		= {
		.name	= ibmveth_driver_name,
1620
		.owner	= THIS_MODULE,
B
Brian King 已提交
1621
		.pm = &ibmveth_pm_ops,
1622
	}
L
Linus Torvalds 已提交
1623 1624 1625 1626
};

static int __init ibmveth_module_init(void)
{
1627 1628
	printk(KERN_DEBUG "%s: %s %s\n", ibmveth_driver_name,
	       ibmveth_driver_string, ibmveth_driver_version);
L
Linus Torvalds 已提交
1629 1630 1631 1632 1633 1634 1635

	return vio_register_driver(&ibmveth_driver);
}

static void __exit ibmveth_module_exit(void)
{
	vio_unregister_driver(&ibmveth_driver);
1636
}
L
Linus Torvalds 已提交
1637 1638 1639

module_init(ibmveth_module_init);
module_exit(ibmveth_module_exit);