ibmveth.c 50.5 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
/**************************************************************************/
/*                                                                        */
/* IBM eServer i/pSeries Virtual Ethernet Device Driver                   */
/* Copyright (C) 2003 IBM Corp.                                           */
/*  Originally written by Dave Larson (larson1@us.ibm.com)                */
/*  Maintained by Santiago Leon (santil@us.ibm.com)                       */
/*                                                                        */
/*  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.                                   */
/*                                                                        */
/*  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.                          */
/*                                                                        */
/*  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  */
/*                                                                        */
/* This module contains the implementation of a virtual ethernet device   */
/* for use with IBM i/pSeries LPAR Linux.  It utilizes the logical LAN    */
/* option of the RS/6000 Platform Architechture to interface with virtual */
/* ethernet NICs that are presented to the partition by the hypervisor.   */
27
/*                                                                        */
L
Linus Torvalds 已提交
28 29 30 31 32 33 34 35
/**************************************************************************/
/*
  TODO:
  - add support for sysfs
  - possibly remove procfs support
*/

#include <linux/module.h>
R
Robert Jennings 已提交
36
#include <linux/moduleparam.h>
L
Linus Torvalds 已提交
37 38 39 40 41 42 43 44 45 46 47
#include <linux/types.h>
#include <linux/errno.h>
#include <linux/ioport.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>
#include <linux/delay.h>
#include <linux/mm.h>
B
Brian King 已提交
48
#include <linux/pm.h>
L
Linus Torvalds 已提交
49 50
#include <linux/ethtool.h>
#include <linux/proc_fs.h>
B
Brian King 已提交
51 52
#include <linux/in.h>
#include <linux/ip.h>
53
#include <linux/ipv6.h>
54
#include <linux/slab.h>
55
#include <net/net_namespace.h>
L
Linus Torvalds 已提交
56 57 58
#include <asm/hvcall.h>
#include <asm/atomic.h>
#include <asm/vio.h>
R
Robert Jennings 已提交
59
#include <asm/iommu.h>
L
Linus Torvalds 已提交
60
#include <asm/uaccess.h>
R
Robert Jennings 已提交
61
#include <asm/firmware.h>
L
Linus Torvalds 已提交
62 63 64 65
#include <linux/seq_file.h>

#include "ibmveth.h"

A
Anton Blanchard 已提交
66
#undef DEBUG
L
Linus Torvalds 已提交
67 68

#define ibmveth_printk(fmt, args...) \
69
  printk(KERN_DEBUG "%s: " fmt, __FILE__, ## args)
L
Linus Torvalds 已提交
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86

#define ibmveth_error_printk(fmt, args...) \
  printk(KERN_ERR "(%s:%3.3d ua:%x) ERROR: " fmt, __FILE__, __LINE__ , adapter->vdev->unit_address, ## args)

#ifdef DEBUG
#define ibmveth_debug_printk_no_adapter(fmt, args...) \
  printk(KERN_DEBUG "(%s:%3.3d): " fmt, __FILE__, __LINE__ , ## args)
#define ibmveth_debug_printk(fmt, args...) \
  printk(KERN_DEBUG "(%s:%3.3d ua:%x): " fmt, __FILE__, __LINE__ , adapter->vdev->unit_address, ## args)
#define ibmveth_assert(expr) \
  if(!(expr)) {                                   \
    printk(KERN_DEBUG "assertion failed (%s:%3.3d ua:%x): %s\n", __FILE__, __LINE__, adapter->vdev->unit_address, #expr); \
    BUG(); \
  }
#else
#define ibmveth_debug_printk_no_adapter(fmt, args...)
#define ibmveth_debug_printk(fmt, args...)
87
#define ibmveth_assert(expr)
L
Linus Torvalds 已提交
88 89 90 91 92
#endif

static int ibmveth_open(struct net_device *dev);
static int ibmveth_close(struct net_device *dev);
static int ibmveth_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd);
93
static int ibmveth_poll(struct napi_struct *napi, int budget);
L
Linus Torvalds 已提交
94 95 96 97 98 99 100
static int ibmveth_start_xmit(struct sk_buff *skb, struct net_device *dev);
static void ibmveth_set_multicast_list(struct net_device *dev);
static int ibmveth_change_mtu(struct net_device *dev, int new_mtu);
static void ibmveth_proc_register_driver(void);
static void ibmveth_proc_unregister_driver(void);
static void ibmveth_proc_register_adapter(struct ibmveth_adapter *adapter);
static void ibmveth_proc_unregister_adapter(struct ibmveth_adapter *adapter);
101
static irqreturn_t ibmveth_interrupt(int irq, void *dev_instance);
102
static void ibmveth_rxq_harvest_buffer(struct ibmveth_adapter *adapter);
R
Robert Jennings 已提交
103
static unsigned long ibmveth_get_desired_dma(struct vio_dev *vdev);
104
static struct kobj_type ktype_veth_pool;
L
Linus Torvalds 已提交
105

R
Robert Jennings 已提交
106

L
Linus Torvalds 已提交
107
#ifdef CONFIG_PROC_FS
108
#define IBMVETH_PROC_DIR "ibmveth"
L
Linus Torvalds 已提交
109 110 111 112 113 114 115 116 117 118 119 120
static struct proc_dir_entry *ibmveth_proc_dir;
#endif

static const char ibmveth_driver_name[] = "ibmveth";
static const char ibmveth_driver_string[] = "IBM i/pSeries Virtual Ethernet Driver";
#define ibmveth_driver_version "1.03"

MODULE_AUTHOR("Santiago Leon <santil@us.ibm.com>");
MODULE_DESCRIPTION("IBM i/pSeries Virtual Ethernet Driver");
MODULE_LICENSE("GPL");
MODULE_VERSION(ibmveth_driver_version);

S
Santiago Leon 已提交
121 122 123 124 125
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 已提交
126 127 128 129 130
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");

131 132 133 134
static unsigned int rx_flush __read_mostly = 0;
module_param(rx_flush, uint, 0644);
MODULE_PARM_DESC(rx_flush, "Flush receive buffers before use");

135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
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) },
	{ "replenish_add_buff_failure", IBMVETH_STAT_OFF(replenish_add_buff_failure) },
	{ "replenish_add_buff_success", IBMVETH_STAT_OFF(replenish_add_buff_success) },
	{ "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) },
152 153
	{ "fw_enabled_ipv4_csum", IBMVETH_STAT_OFF(fw_ipv4_csum_support) },
	{ "fw_enabled_ipv6_csum", IBMVETH_STAT_OFF(fw_ipv6_csum_support) },
154 155
};

L
Linus Torvalds 已提交
156
/* simple methods of getting data from the current rxq entry */
B
Brian King 已提交
157 158 159 160 161 162 163 164 165 166
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)
{
	return (ibmveth_rxq_flags(adapter) & IBMVETH_RXQ_TOGGLE) >> IBMVETH_RXQ_TOGGLE_SHIFT;
}

L
Linus Torvalds 已提交
167 168
static inline int ibmveth_rxq_pending_buffer(struct ibmveth_adapter *adapter)
{
B
Brian King 已提交
169
	return (ibmveth_rxq_toggle(adapter) == adapter->rx_queue.toggle);
L
Linus Torvalds 已提交
170 171 172 173
}

static inline int ibmveth_rxq_buffer_valid(struct ibmveth_adapter *adapter)
{
B
Brian King 已提交
174
	return (ibmveth_rxq_flags(adapter) & IBMVETH_RXQ_VALID);
L
Linus Torvalds 已提交
175 176 177 178
}

static inline int ibmveth_rxq_frame_offset(struct ibmveth_adapter *adapter)
{
B
Brian King 已提交
179
	return (ibmveth_rxq_flags(adapter) & IBMVETH_RXQ_OFF_MASK);
L
Linus Torvalds 已提交
180 181 182 183 184 185 186
}

static inline int ibmveth_rxq_frame_length(struct ibmveth_adapter *adapter)
{
	return (adapter->rx_queue.queue_addr[adapter->rx_queue.index].length);
}

B
Brian King 已提交
187 188
static inline int ibmveth_rxq_csum_good(struct ibmveth_adapter *adapter)
{
B
Brian King 已提交
189
	return (ibmveth_rxq_flags(adapter) & IBMVETH_RXQ_CSUM_GOOD);
B
Brian King 已提交
190 191
}

L
Linus Torvalds 已提交
192
/* setup the initial settings for a buffer pool */
193
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 已提交
194 195 196 197
{
	pool->size = pool_size;
	pool->index = pool_index;
	pool->buff_size = buff_size;
198
	pool->threshold = pool_size * 7 / 8;
199
	pool->active = pool_active;
L
Linus Torvalds 已提交
200 201 202 203 204 205 206
}

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

207
	pool->free_map = kmalloc(sizeof(u16) * pool->size, GFP_KERNEL);
L
Linus Torvalds 已提交
208 209 210 211 212

	if(!pool->free_map) {
		return -1;
	}

213
	pool->dma_addr = kmalloc(sizeof(dma_addr_t) * pool->size, GFP_KERNEL);
L
Linus Torvalds 已提交
214 215 216 217 218 219
	if(!pool->dma_addr) {
		kfree(pool->free_map);
		pool->free_map = NULL;
		return -1;
	}

220
	pool->skbuff = kcalloc(pool->size, sizeof(void *), GFP_KERNEL);
L
Linus Torvalds 已提交
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243

	if(!pool->skbuff) {
		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);

	for(i = 0; i < pool->size; ++i) {
		pool->free_map[i] = i;
	}

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

	return 0;
}

244 245 246 247 248 249 250 251
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 已提交
252 253 254 255 256 257 258 259
/* replenish the buffers for a pool.  note that we don't need to
 * skb_reserve these since they are used for incoming...
 */
static void ibmveth_replenish_buffer_pool(struct ibmveth_adapter *adapter, struct ibmveth_buff_pool *pool)
{
	u32 i;
	u32 count = pool->size - atomic_read(&pool->available);
	u32 buffers_added = 0;
R
Robert Jennings 已提交
260 261 262 263 264
	struct sk_buff *skb;
	unsigned int free_index, index;
	u64 correlator;
	unsigned long lpar_rc;
	dma_addr_t dma_addr;
L
Linus Torvalds 已提交
265 266 267 268 269 270 271 272 273 274 275 276 277 278

	mb();

	for(i = 0; i < count; ++i) {
		union ibmveth_buf_desc desc;

		skb = alloc_skb(pool->buff_size, GFP_ATOMIC);

		if(!skb) {
			ibmveth_debug_printk("replenish: unable to allocate skb\n");
			adapter->replenish_no_mem++;
			break;
		}

279
		free_index = pool->consumer_index;
280 281 282
		pool->consumer_index++;
		if (pool->consumer_index >= pool->size)
			pool->consumer_index = 0;
L
Linus Torvalds 已提交
283
		index = pool->free_map[free_index];
284

L
Linus Torvalds 已提交
285 286 287 288 289 290
		ibmveth_assert(index != IBM_VETH_INVALID_MAP);
		ibmveth_assert(pool->skbuff[index] == NULL);

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

291
		if (dma_mapping_error(&adapter->vdev->dev, dma_addr))
R
Robert Jennings 已提交
292 293
			goto failure;

L
Linus Torvalds 已提交
294 295 296 297 298 299 300
		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;
		*(u64*)skb->data = correlator;

B
Brian King 已提交
301
		desc.fields.flags_len = IBMVETH_BUF_VALID | pool->buff_size;
302
		desc.fields.address = dma_addr;
L
Linus Torvalds 已提交
303

304 305 306 307 308 309
		if (rx_flush) {
			unsigned int len = min(pool->buff_size,
						adapter->netdev->mtu +
						IBMVETH_BUFF_OH);
			ibmveth_flush_buffer(skb->data, len);
		}
L
Linus Torvalds 已提交
310
		lpar_rc = h_add_logical_lan_buffer(adapter->vdev->unit_address, desc.desc);
311

R
Robert Jennings 已提交
312 313 314
		if (lpar_rc != H_SUCCESS)
			goto failure;
		else {
L
Linus Torvalds 已提交
315 316 317 318
			buffers_added++;
			adapter->replenish_add_buff_success++;
		}
	}
319

R
Robert Jennings 已提交
320 321 322 323 324 325 326 327 328 329 330
	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--;
331
	if (!dma_mapping_error(&adapter->vdev->dev, dma_addr))
R
Robert Jennings 已提交
332 333 334 335 336 337
		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 已提交
338 339 340 341
	mb();
	atomic_add(buffers_added, &(pool->available));
}

342
/* replenish routine */
343
static void ibmveth_replenish_task(struct ibmveth_adapter *adapter)
L
Linus Torvalds 已提交
344
{
345 346
	int i;

L
Linus Torvalds 已提交
347 348
	adapter->replenish_task_cycles++;

349 350 351 352 353 354 355
	for (i = (IbmVethNumBufferPools - 1); i >= 0; i--) {
		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 已提交
356 357 358 359 360 361 362 363 364

	adapter->rx_no_buffer = *(u64*)(((char*)adapter->buffer_list_addr) + 4096 - 8);
}

/* empty and free ana buffer pool - also used to do cleanup in error paths */
static void ibmveth_free_buffer_pool(struct ibmveth_adapter *adapter, struct ibmveth_buff_pool *pool)
{
	int i;

365 366
	kfree(pool->free_map);
	pool->free_map = NULL;
L
Linus Torvalds 已提交
367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414

	if(pool->skbuff && pool->dma_addr) {
		for(i = 0; i < pool->size; ++i) {
			struct sk_buff *skb = pool->skbuff[i];
			if(skb) {
				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;
			}
		}
	}

	if(pool->dma_addr) {
		kfree(pool->dma_addr);
		pool->dma_addr = NULL;
	}

	if(pool->skbuff) {
		kfree(pool->skbuff);
		pool->skbuff = NULL;
	}
}

/* remove a buffer from a pool */
static void ibmveth_remove_buffer_from_pool(struct ibmveth_adapter *adapter, u64 correlator)
{
	unsigned int pool  = correlator >> 32;
	unsigned int index = correlator & 0xffffffffUL;
	unsigned int free_index;
	struct sk_buff *skb;

	ibmveth_assert(pool < IbmVethNumBufferPools);
	ibmveth_assert(index < adapter->rx_buff_pool[pool].size);

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

	ibmveth_assert(skb != NULL);

	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);

415
	free_index = adapter->rx_buff_pool[pool].producer_index;
416 417 418 419
	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 已提交
420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452
	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;

	ibmveth_assert(pool < IbmVethNumBufferPools);
	ibmveth_assert(index < adapter->rx_buff_pool[pool].size);

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

/* recycle the current buffer on the rx queue */
static void ibmveth_rxq_recycle_buffer(struct ibmveth_adapter *adapter)
{
	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;

	ibmveth_assert(pool < IbmVethNumBufferPools);
	ibmveth_assert(index < adapter->rx_buff_pool[pool].size);

453 454 455 456 457 458
	if(!adapter->rx_buff_pool[pool].active) {
		ibmveth_rxq_harvest_buffer(adapter);
		ibmveth_free_buffer_pool(adapter, &adapter->rx_buff_pool[pool]);
		return;
	}

B
Brian King 已提交
459 460
	desc.fields.flags_len = IBMVETH_BUF_VALID |
		adapter->rx_buff_pool[pool].buff_size;
L
Linus Torvalds 已提交
461 462 463
	desc.fields.address = adapter->rx_buff_pool[pool].dma_addr[index];

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

465
	if(lpar_rc != H_SUCCESS) {
L
Linus Torvalds 已提交
466 467 468 469 470 471 472 473 474 475
		ibmveth_debug_printk("h_add_logical_lan_buffer failed during recycle rc=%ld", lpar_rc);
		ibmveth_remove_buffer_from_pool(adapter, adapter->rx_queue.queue_addr[adapter->rx_queue.index].correlator);
	}

	if(++adapter->rx_queue.index == adapter->rx_queue.num_slots) {
		adapter->rx_queue.index = 0;
		adapter->rx_queue.toggle = !adapter->rx_queue.toggle;
	}
}

476
static void ibmveth_rxq_harvest_buffer(struct ibmveth_adapter *adapter)
L
Linus Torvalds 已提交
477 478 479 480 481 482 483 484 485 486 487
{
	ibmveth_remove_buffer_from_pool(adapter, adapter->rx_queue.queue_addr[adapter->rx_queue.index].correlator);

	if(++adapter->rx_queue.index == adapter->rx_queue.num_slots) {
		adapter->rx_queue.index = 0;
		adapter->rx_queue.toggle = !adapter->rx_queue.toggle;
	}
}

static void ibmveth_cleanup(struct ibmveth_adapter *adapter)
{
488
	int i;
489
	struct device *dev = &adapter->vdev->dev;
490

L
Linus Torvalds 已提交
491
	if(adapter->buffer_list_addr != NULL) {
492 493
		if (!dma_mapping_error(dev, adapter->buffer_list_dma)) {
			dma_unmap_single(dev, adapter->buffer_list_dma, 4096,
L
Linus Torvalds 已提交
494 495 496 497 498
					DMA_BIDIRECTIONAL);
			adapter->buffer_list_dma = DMA_ERROR_CODE;
		}
		free_page((unsigned long)adapter->buffer_list_addr);
		adapter->buffer_list_addr = NULL;
499
	}
L
Linus Torvalds 已提交
500 501

	if(adapter->filter_list_addr != NULL) {
502 503
		if (!dma_mapping_error(dev, adapter->filter_list_dma)) {
			dma_unmap_single(dev, adapter->filter_list_dma, 4096,
L
Linus Torvalds 已提交
504 505 506 507 508 509 510 511
					DMA_BIDIRECTIONAL);
			adapter->filter_list_dma = DMA_ERROR_CODE;
		}
		free_page((unsigned long)adapter->filter_list_addr);
		adapter->filter_list_addr = NULL;
	}

	if(adapter->rx_queue.queue_addr != NULL) {
512 513
		if (!dma_mapping_error(dev, adapter->rx_queue.queue_dma)) {
			dma_unmap_single(dev,
L
Linus Torvalds 已提交
514 515 516 517 518 519 520 521 522
					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;
	}

523
	for(i = 0; i<IbmVethNumBufferPools; i++)
524
		if (adapter->rx_buff_pool[i].active)
525
			ibmveth_free_buffer_pool(adapter,
526
						 &adapter->rx_buff_pool[i]);
R
Robert Jennings 已提交
527 528

	if (adapter->bounce_buffer != NULL) {
529
		if (!dma_mapping_error(dev, adapter->bounce_buffer_dma)) {
R
Robert Jennings 已提交
530 531 532 533 534 535 536 537 538
			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 已提交
539 540
}

541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565
static int ibmveth_register_logical_lan(struct ibmveth_adapter *adapter,
        union ibmveth_buf_desc rxq_desc, u64 mac_address)
{
	int rc, try_again = 1;

	/* 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. */
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 已提交
566 567
static int ibmveth_open(struct net_device *netdev)
{
568
	struct ibmveth_adapter *adapter = netdev_priv(netdev);
L
Linus Torvalds 已提交
569
	u64 mac_address = 0;
570
	int rxq_entries = 1;
L
Linus Torvalds 已提交
571 572 573
	unsigned long lpar_rc;
	int rc;
	union ibmveth_buf_desc rxq_desc;
574
	int i;
575
	struct device *dev;
L
Linus Torvalds 已提交
576 577 578

	ibmveth_debug_printk("open starting\n");

579 580
	napi_enable(&adapter->napi);

581 582
	for(i = 0; i<IbmVethNumBufferPools; i++)
		rxq_entries += adapter->rx_buff_pool[i].size;
583

L
Linus Torvalds 已提交
584 585
	adapter->buffer_list_addr = (void*) get_zeroed_page(GFP_KERNEL);
	adapter->filter_list_addr = (void*) get_zeroed_page(GFP_KERNEL);
586

L
Linus Torvalds 已提交
587 588 589
	if(!adapter->buffer_list_addr || !adapter->filter_list_addr) {
		ibmveth_error_printk("unable to allocate filter or buffer list pages\n");
		ibmveth_cleanup(adapter);
590
		napi_disable(&adapter->napi);
L
Linus Torvalds 已提交
591 592 593 594 595 596 597 598 599
		return -ENOMEM;
	}

	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);

	if(!adapter->rx_queue.queue_addr) {
		ibmveth_error_printk("unable to allocate rx queue pages\n");
		ibmveth_cleanup(adapter);
600
		napi_disable(&adapter->napi);
L
Linus Torvalds 已提交
601 602 603
		return -ENOMEM;
	}

604 605 606
	dev = &adapter->vdev->dev;

	adapter->buffer_list_dma = dma_map_single(dev,
L
Linus Torvalds 已提交
607
			adapter->buffer_list_addr, 4096, DMA_BIDIRECTIONAL);
608
	adapter->filter_list_dma = dma_map_single(dev,
L
Linus Torvalds 已提交
609
			adapter->filter_list_addr, 4096, DMA_BIDIRECTIONAL);
610
	adapter->rx_queue.queue_dma = dma_map_single(dev,
L
Linus Torvalds 已提交
611 612 613
			adapter->rx_queue.queue_addr,
			adapter->rx_queue.queue_len, DMA_BIDIRECTIONAL);

614 615 616
	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))) {
L
Linus Torvalds 已提交
617 618
		ibmveth_error_printk("unable to map filter or buffer list pages\n");
		ibmveth_cleanup(adapter);
619
		napi_disable(&adapter->napi);
L
Linus Torvalds 已提交
620 621 622 623 624 625 626 627 628 629
		return -ENOMEM;
	}

	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;

B
Brian King 已提交
630
	rxq_desc.fields.flags_len = IBMVETH_BUF_VALID | adapter->rx_queue.queue_len;
L
Linus Torvalds 已提交
631 632 633 634 635 636
	rxq_desc.fields.address = adapter->rx_queue.queue_dma;

	ibmveth_debug_printk("buffer list @ 0x%p\n", adapter->buffer_list_addr);
	ibmveth_debug_printk("filter list @ 0x%p\n", adapter->filter_list_addr);
	ibmveth_debug_printk("receive q   @ 0x%p\n", adapter->rx_queue.queue_addr);

637 638
	h_vio_signal(adapter->vdev->unit_address, VIO_IRQ_DISABLE);

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

641
	if(lpar_rc != H_SUCCESS) {
L
Linus Torvalds 已提交
642
		ibmveth_error_printk("h_register_logical_lan failed with %ld\n", lpar_rc);
643
		ibmveth_error_printk("buffer TCE:0x%llx filter TCE:0x%llx rxq desc:0x%llx MAC:0x%llx\n",
L
Linus Torvalds 已提交
644 645 646 647 648
				     adapter->buffer_list_dma,
				     adapter->filter_list_dma,
				     rxq_desc.desc,
				     mac_address);
		ibmveth_cleanup(adapter);
649
		napi_disable(&adapter->napi);
650
		return -ENONET;
L
Linus Torvalds 已提交
651 652
	}

653 654 655 656 657 658 659
	for(i = 0; i<IbmVethNumBufferPools; i++) {
		if(!adapter->rx_buff_pool[i].active)
			continue;
		if (ibmveth_alloc_buffer_pool(&adapter->rx_buff_pool[i])) {
			ibmveth_error_printk("unable to alloc pool\n");
			adapter->rx_buff_pool[i].active = 0;
			ibmveth_cleanup(adapter);
660
			napi_disable(&adapter->napi);
661 662 663 664
			return -ENOMEM ;
		}
	}

L
Linus Torvalds 已提交
665
	ibmveth_debug_printk("registering irq 0x%x\n", netdev->irq);
666
	if((rc = request_irq(netdev->irq, ibmveth_interrupt, 0, netdev->name, netdev)) != 0) {
L
Linus Torvalds 已提交
667 668 669
		ibmveth_error_printk("unable to request irq 0x%x, rc %d\n", netdev->irq, rc);
		do {
			rc = h_free_logical_lan(adapter->vdev->unit_address);
670
		} while (H_IS_LONG_BUSY(rc) || (rc == H_BUSY));
L
Linus Torvalds 已提交
671 672

		ibmveth_cleanup(adapter);
673
		napi_disable(&adapter->napi);
L
Linus Torvalds 已提交
674 675 676
		return rc;
	}

R
Robert Jennings 已提交
677 678 679 680 681 682 683 684 685 686 687
	adapter->bounce_buffer =
	    kmalloc(netdev->mtu + IBMVETH_BUFF_OH, GFP_KERNEL);
	if (!adapter->bounce_buffer) {
		ibmveth_error_printk("unable to allocate bounce buffer\n");
		ibmveth_cleanup(adapter);
		napi_disable(&adapter->napi);
		return -ENOMEM;
	}
	adapter->bounce_buffer_dma =
	    dma_map_single(&adapter->vdev->dev, adapter->bounce_buffer,
			   netdev->mtu + IBMVETH_BUFF_OH, DMA_BIDIRECTIONAL);
688
	if (dma_mapping_error(dev, adapter->bounce_buffer_dma)) {
R
Robert Jennings 已提交
689 690 691 692 693 694
		ibmveth_error_printk("unable to map bounce buffer\n");
		ibmveth_cleanup(adapter);
		napi_disable(&adapter->napi);
		return -ENOMEM;
	}

695
	ibmveth_debug_printk("initial replenish cycle\n");
696
	ibmveth_interrupt(netdev->irq, netdev);
L
Linus Torvalds 已提交
697

698
	netif_start_queue(netdev);
L
Linus Torvalds 已提交
699 700 701 702 703 704 705 706

	ibmveth_debug_printk("open complete\n");

	return 0;
}

static int ibmveth_close(struct net_device *netdev)
{
707
	struct ibmveth_adapter *adapter = netdev_priv(netdev);
L
Linus Torvalds 已提交
708
	long lpar_rc;
709

L
Linus Torvalds 已提交
710 711
	ibmveth_debug_printk("close starting\n");

712 713
	napi_disable(&adapter->napi);

714 715
	if (!adapter->pool_config)
		netif_stop_queue(netdev);
L
Linus Torvalds 已提交
716

717
	h_vio_signal(adapter->vdev->unit_address, VIO_IRQ_DISABLE);
L
Linus Torvalds 已提交
718 719 720

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

723
	if(lpar_rc != H_SUCCESS)
L
Linus Torvalds 已提交
724 725 726 727 728
	{
		ibmveth_error_printk("h_free_logical_lan failed with %lx, continuing with close\n",
				     lpar_rc);
	}

729 730
	free_irq(netdev->irq, netdev);

L
Linus Torvalds 已提交
731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762
	adapter->rx_no_buffer = *(u64*)(((char*)adapter->buffer_list_addr) + 4096 - 8);

	ibmveth_cleanup(adapter);

	ibmveth_debug_printk("close complete\n");

	return 0;
}

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);
	cmd->speed = SPEED_1000;
	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;
}

static void netdev_get_drvinfo (struct net_device *dev, struct ethtool_drvinfo *info) {
	strncpy(info->driver, ibmveth_driver_name, sizeof(info->driver) - 1);
	strncpy(info->version, ibmveth_driver_version, sizeof(info->version) - 1);
}

static u32 netdev_get_link(struct net_device *dev) {
	return 1;
}

763 764
static void ibmveth_set_rx_csum_flags(struct net_device *dev, u32 data)
{
765
	struct ibmveth_adapter *adapter = netdev_priv(dev);
766 767 768 769 770 771 772 773 774 775 776 777 778

	if (data)
		adapter->rx_csum = 1;
	else {
		/*
		 * 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.
		 */
		adapter->rx_csum = 0;
		dev->features &= ~NETIF_F_IP_CSUM;
779
		dev->features &= ~NETIF_F_IPV6_CSUM;
780 781 782 783 784
	}
}

static void ibmveth_set_tx_csum_flags(struct net_device *dev, u32 data)
{
785
	struct ibmveth_adapter *adapter = netdev_priv(dev);
786 787

	if (data) {
788 789 790 791
		if (adapter->fw_ipv4_csum_support)
			dev->features |= NETIF_F_IP_CSUM;
		if (adapter->fw_ipv6_csum_support)
			dev->features |= NETIF_F_IPV6_CSUM;
792
		adapter->rx_csum = 1;
793
	} else {
794
		dev->features &= ~NETIF_F_IP_CSUM;
795 796
		dev->features &= ~NETIF_F_IPV6_CSUM;
	}
797 798 799 800 801
}

static int ibmveth_set_csum_offload(struct net_device *dev, u32 data,
				    void (*done) (struct net_device *, u32))
{
802
	struct ibmveth_adapter *adapter = netdev_priv(dev);
S
Stephen Rothwell 已提交
803
	unsigned long set_attr, clr_attr, ret_attr;
804 805
	unsigned long set_attr6, clr_attr6;
	long ret, ret6;
806 807 808 809 810 811 812 813 814 815
	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 已提交
816 817
	set_attr = 0;
	clr_attr = 0;
818

819
	if (data) {
B
Brian King 已提交
820
		set_attr = IBMVETH_ILLAN_IPV4_TCP_CSUM;
821 822
		set_attr6 = IBMVETH_ILLAN_IPV6_TCP_CSUM;
	} else {
B
Brian King 已提交
823
		clr_attr = IBMVETH_ILLAN_IPV4_TCP_CSUM;
824 825
		clr_attr6 = IBMVETH_ILLAN_IPV6_TCP_CSUM;
	}
826

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

B
Brian King 已提交
829 830 831 832 833
	if (ret == H_SUCCESS && !(ret_attr & IBMVETH_ILLAN_ACTIVE_TRUNK) &&
	    !(ret_attr & IBMVETH_ILLAN_TRUNK_PRI_MASK) &&
	    (ret_attr & IBMVETH_ILLAN_PADDED_PKT_CSUM)) {
		ret = h_illan_attributes(adapter->vdev->unit_address, clr_attr,
					 set_attr, &ret_attr);
834 835

		if (ret != H_SUCCESS) {
836 837 838
			ibmveth_error_printk("unable to change IPv4 checksum "
					     "offload settings. %d rc=%ld\n",
					     data, ret);
839 840

			ret = h_illan_attributes(adapter->vdev->unit_address,
B
Brian King 已提交
841
						 set_attr, clr_attr, &ret_attr);
842
		} else
843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859
			adapter->fw_ipv4_csum_support = data;

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

		if (ret6 != H_SUCCESS) {
			ibmveth_error_printk("unable to change IPv6 checksum "
					     "offload settings. %d rc=%ld\n",
					     data, ret);

			ret = h_illan_attributes(adapter->vdev->unit_address,
						 set_attr6, clr_attr6,
						 &ret_attr);
		} else
			adapter->fw_ipv6_csum_support = data;

		if (ret == H_SUCCESS || ret6 == H_SUCCESS)
860
			done(dev, data);
861 862
		else
			rc1 = -EIO;
863 864 865
	} else {
		rc1 = -EIO;
		ibmveth_error_printk("unable to change checksum offload settings."
B
Brian King 已提交
866
				     " %d rc=%ld ret_attr=%lx\n", data, ret, ret_attr);
867 868 869 870 871 872 873 874 875 876
	}

	if (restart)
		rc2 = ibmveth_open(dev);

	return rc1 ? rc1 : rc2;
}

static int ibmveth_set_rx_csum(struct net_device *dev, u32 data)
{
877
	struct ibmveth_adapter *adapter = netdev_priv(dev);
878 879 880 881 882 883 884 885 886

	if ((data && adapter->rx_csum) || (!data && !adapter->rx_csum))
		return 0;

	return ibmveth_set_csum_offload(dev, data, ibmveth_set_rx_csum_flags);
}

static int ibmveth_set_tx_csum(struct net_device *dev, u32 data)
{
887
	struct ibmveth_adapter *adapter = netdev_priv(dev);
888 889
	int rc = 0;

890
	if (data && (dev->features & (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM)))
891
		return 0;
892
	if (!data && !(dev->features & (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM)))
893 894 895 896 897 898 899 900 901 902 903 904
		return 0;

	if (data && !adapter->rx_csum)
		rc = ibmveth_set_csum_offload(dev, data, ibmveth_set_tx_csum_flags);
	else
		ibmveth_set_tx_csum_flags(dev, data);

	return rc;
}

static u32 ibmveth_get_rx_csum(struct net_device *dev)
{
905
	struct ibmveth_adapter *adapter = netdev_priv(dev);
906 907 908
	return adapter->rx_csum;
}

909 910 911 912 913 914 915 916 917 918 919
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);
}

920
static int ibmveth_get_sset_count(struct net_device *dev, int sset)
921
{
922 923 924 925 926 927
	switch (sset) {
	case ETH_SS_STATS:
		return ARRAY_SIZE(ibmveth_stats);
	default:
		return -EOPNOTSUPP;
	}
928 929 930 931 932 933
}

static void ibmveth_get_ethtool_stats(struct net_device *dev,
				      struct ethtool_stats *stats, u64 *data)
{
	int i;
934
	struct ibmveth_adapter *adapter = netdev_priv(dev);
935 936 937 938 939

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

940
static const struct ethtool_ops netdev_ethtool_ops = {
L
Linus Torvalds 已提交
941 942 943
	.get_drvinfo		= netdev_get_drvinfo,
	.get_settings		= netdev_get_settings,
	.get_link		= netdev_get_link,
944 945 946
	.set_tx_csum		= ibmveth_set_tx_csum,
	.get_rx_csum		= ibmveth_get_rx_csum,
	.set_rx_csum		= ibmveth_set_rx_csum,
947
	.get_strings		= ibmveth_get_strings,
948
	.get_sset_count		= ibmveth_get_sset_count,
949
	.get_ethtool_stats	= ibmveth_get_ethtool_stats,
950
	.set_sg			= ethtool_op_set_sg,
L
Linus Torvalds 已提交
951 952 953 954 955 956 957 958 959
};

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))

960 961
static int ibmveth_send(struct ibmveth_adapter *adapter,
			union ibmveth_buf_desc *descs)
L
Linus Torvalds 已提交
962 963 964
{
	unsigned long correlator;
	unsigned int retry_count;
965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988
	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) {
		ibmveth_error_printk("tx: h_send_logical_lan failed with "
				     "rc=%ld\n", ret);
		return 1;
	}

	return 0;
}
S
Santiago Leon 已提交
989

990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006
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;

	/*
	 * 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 已提交
1007

1008
	/* veth can't checksum offload UDP */
B
Brian King 已提交
1009
	if (skb->ip_summed == CHECKSUM_PARTIAL &&
1010 1011 1012 1013 1014 1015
	    ((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)) {

B
Brian King 已提交
1016
		ibmveth_error_printk("tx: failed to checksum packet\n");
1017
		netdev->stats.tx_dropped++;
B
Brian King 已提交
1018 1019 1020
		goto out;
	}

1021 1022
	desc_flags = IBMVETH_BUF_VALID;

B
Brian King 已提交
1023
	if (skb->ip_summed == CHECKSUM_PARTIAL) {
1024 1025
		unsigned char *buf = skb_transport_header(skb) +
						skb->csum_offset;
B
Brian King 已提交
1026

1027
		desc_flags |= (IBMVETH_BUF_NO_CSUM | IBMVETH_BUF_CSUM_GOOD);
B
Brian King 已提交
1028 1029 1030 1031 1032 1033

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

1034 1035
retry_bounce:
	memset(descs, 0, sizeof(descs));
S
Santiago Leon 已提交
1036

1037 1038 1039 1040 1041 1042 1043
	/*
	 * 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 已提交
1044 1045
		skb_copy_from_linear_data(skb, adapter->bounce_buffer,
					  skb->len);
L
Linus Torvalds 已提交
1046

1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088
		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 */
	descs[0].fields.address = dma_map_single(&adapter->vdev->dev, skb->data,
						 skb_headlen(skb),
						 DMA_TO_DEVICE);
	if (dma_mapping_error(&adapter->vdev->dev, descs[0].fields.address))
		goto map_failed;

	descs[0].fields.flags_len = desc_flags | skb_headlen(skb);

	/* Map the frags */
	for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
		unsigned long dma_addr;
		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 已提交
1089
	} else {
1090 1091
		netdev->stats.tx_packets++;
		netdev->stats.tx_bytes += skb->len;
L
Linus Torvalds 已提交
1092 1093
	}

1094 1095 1096 1097
	for (i = 0; i < skb_shinfo(skb)->nr_frags + 1; i++)
		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 已提交
1098

S
Santiago Leon 已提交
1099
out:
L
Linus Torvalds 已提交
1100
	dev_kfree_skb(skb);
1101
	return NETDEV_TX_OK;
1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116

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))
		ibmveth_error_printk("tx: unable to map xmit buffer\n");
	adapter->tx_map_failed++;
	skb_linearize(skb);
	force_bounce = 1;
	goto retry_bounce;
L
Linus Torvalds 已提交
1117 1118
}

1119
static int ibmveth_poll(struct napi_struct *napi, int budget)
L
Linus Torvalds 已提交
1120
{
1121 1122
	struct ibmveth_adapter *adapter = container_of(napi, struct ibmveth_adapter, napi);
	struct net_device *netdev = adapter->netdev;
L
Linus Torvalds 已提交
1123 1124 1125 1126 1127
	int frames_processed = 0;
	unsigned long lpar_rc;

 restart_poll:
	do {
1128 1129
		if (!ibmveth_rxq_pending_buffer(adapter))
			break;
L
Linus Torvalds 已提交
1130

1131
		smp_rmb();
1132 1133 1134 1135 1136 1137
		if (!ibmveth_rxq_buffer_valid(adapter)) {
			wmb(); /* suggested by larson1 */
			adapter->rx_invalid_buffer++;
			ibmveth_debug_printk("recycling invalid buffer\n");
			ibmveth_rxq_recycle_buffer(adapter);
		} else {
S
Santiago Leon 已提交
1138
			struct sk_buff *skb, *new_skb;
1139 1140
			int length = ibmveth_rxq_frame_length(adapter);
			int offset = ibmveth_rxq_frame_offset(adapter);
B
Brian King 已提交
1141 1142
			int csum_good = ibmveth_rxq_csum_good(adapter);

1143
			skb = ibmveth_rxq_get_buffer(adapter);
L
Linus Torvalds 已提交
1144

S
Santiago Leon 已提交
1145 1146 1147 1148 1149 1150 1151 1152
			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);
1153 1154 1155
				if (rx_flush)
					ibmveth_flush_buffer(skb->data,
						length + offset);
S
Santiago Leon 已提交
1156 1157 1158 1159 1160 1161
				skb = new_skb;
				ibmveth_rxq_recycle_buffer(adapter);
			} else {
				ibmveth_rxq_harvest_buffer(adapter);
				skb_reserve(skb, offset);
			}
L
Linus Torvalds 已提交
1162

1163 1164
			skb_put(skb, length);
			skb->protocol = eth_type_trans(skb, netdev);
L
Linus Torvalds 已提交
1165

S
Santiago Leon 已提交
1166 1167 1168
			if (csum_good)
				skb->ip_summed = CHECKSUM_UNNECESSARY;

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

1171 1172
			netdev->stats.rx_packets++;
			netdev->stats.rx_bytes += length;
1173
			frames_processed++;
L
Linus Torvalds 已提交
1174
		}
1175
	} while (frames_processed < budget);
L
Linus Torvalds 已提交
1176

1177
	ibmveth_replenish_task(adapter);
L
Linus Torvalds 已提交
1178

1179 1180 1181 1182 1183 1184
	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 已提交
1185

1186
		ibmveth_assert(lpar_rc == H_SUCCESS);
L
Linus Torvalds 已提交
1187

1188
		napi_complete(napi);
L
Linus Torvalds 已提交
1189

1190
		if (ibmveth_rxq_pending_buffer(adapter) &&
1191
		    napi_reschedule(napi)) {
1192 1193 1194 1195
			lpar_rc = h_vio_signal(adapter->vdev->unit_address,
					       VIO_IRQ_DISABLE);
			goto restart_poll;
		}
L
Linus Torvalds 已提交
1196 1197
	}

1198
	return frames_processed;
L
Linus Torvalds 已提交
1199 1200
}

1201
static irqreturn_t ibmveth_interrupt(int irq, void *dev_instance)
1202
{
L
Linus Torvalds 已提交
1203
	struct net_device *netdev = dev_instance;
1204
	struct ibmveth_adapter *adapter = netdev_priv(netdev);
L
Linus Torvalds 已提交
1205 1206
	unsigned long lpar_rc;

1207
	if (napi_schedule_prep(&adapter->napi)) {
1208 1209
		lpar_rc = h_vio_signal(adapter->vdev->unit_address,
				       VIO_IRQ_DISABLE);
1210
		ibmveth_assert(lpar_rc == H_SUCCESS);
1211
		__napi_schedule(&adapter->napi);
L
Linus Torvalds 已提交
1212 1213 1214 1215 1216 1217
	}
	return IRQ_HANDLED;
}

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

1221 1222
	if ((netdev->flags & IFF_PROMISC) ||
	    (netdev_mc_count(netdev) > adapter->mcastFilterSize)) {
L
Linus Torvalds 已提交
1223 1224 1225 1226
		lpar_rc = h_multicast_ctrl(adapter->vdev->unit_address,
					   IbmVethMcastEnableRecv |
					   IbmVethMcastDisableFiltering,
					   0);
1227
		if(lpar_rc != H_SUCCESS) {
L
Linus Torvalds 已提交
1228 1229 1230
			ibmveth_error_printk("h_multicast_ctrl rc=%ld when entering promisc mode\n", lpar_rc);
		}
	} else {
1231
		struct netdev_hw_addr *ha;
L
Linus Torvalds 已提交
1232 1233 1234 1235 1236 1237
		/* clear the filter table & disable filtering */
		lpar_rc = h_multicast_ctrl(adapter->vdev->unit_address,
					   IbmVethMcastEnableRecv |
					   IbmVethMcastDisableFiltering |
					   IbmVethMcastClearFilterTable,
					   0);
1238
		if(lpar_rc != H_SUCCESS) {
L
Linus Torvalds 已提交
1239 1240 1241
			ibmveth_error_printk("h_multicast_ctrl rc=%ld when attempting to clear filter table\n", lpar_rc);
		}
		/* add the addresses to the filter table */
1242
		netdev_for_each_mc_addr(ha, netdev) {
L
Linus Torvalds 已提交
1243 1244
			// add the multicast address to the filter table
			unsigned long mcast_addr = 0;
1245
			memcpy(((char *)&mcast_addr)+2, ha->addr, 6);
L
Linus Torvalds 已提交
1246 1247 1248
			lpar_rc = h_multicast_ctrl(adapter->vdev->unit_address,
						   IbmVethMcastAddFilter,
						   mcast_addr);
1249
			if(lpar_rc != H_SUCCESS) {
L
Linus Torvalds 已提交
1250 1251 1252
				ibmveth_error_printk("h_multicast_ctrl rc=%ld when adding an entry to the filter table\n", lpar_rc);
			}
		}
1253

L
Linus Torvalds 已提交
1254 1255 1256 1257
		/* re-enable filtering */
		lpar_rc = h_multicast_ctrl(adapter->vdev->unit_address,
					   IbmVethMcastEnableFiltering,
					   0);
1258
		if(lpar_rc != H_SUCCESS) {
L
Linus Torvalds 已提交
1259 1260 1261 1262 1263 1264 1265
			ibmveth_error_printk("h_multicast_ctrl rc=%ld when enabling filtering\n", lpar_rc);
		}
	}
}

static int ibmveth_change_mtu(struct net_device *dev, int new_mtu)
{
1266
	struct ibmveth_adapter *adapter = netdev_priv(dev);
R
Robert Jennings 已提交
1267
	struct vio_dev *viodev = adapter->vdev;
1268
	int new_mtu_oh = new_mtu + IBMVETH_BUFF_OH;
1269 1270
	int i, rc;
	int need_restart = 0;
1271

1272
	if (new_mtu < IBMVETH_MAX_MTU)
L
Linus Torvalds 已提交
1273
		return -EINVAL;
1274

1275 1276 1277 1278 1279 1280 1281
	for (i = 0; i < IbmVethNumBufferPools; i++)
		if (new_mtu_oh < adapter->rx_buff_pool[i].buff_size)
			break;

	if (i == IbmVethNumBufferPools)
		return -EINVAL;

1282 1283
	/* Deactivate all the buffer pools so that the next loop can activate
	   only the buffer pools necessary to hold the new MTU */
1284 1285 1286 1287 1288 1289
	if (netif_running(adapter->netdev)) {
		need_restart = 1;
		adapter->pool_config = 1;
		ibmveth_close(adapter->netdev);
		adapter->pool_config = 0;
	}
1290

1291
	/* Look for an active buffer pool that can hold the new MTU */
1292
	for(i = 0; i<IbmVethNumBufferPools; i++) {
1293
		adapter->rx_buff_pool[i].active = 1;
1294

1295
		if (new_mtu_oh < adapter->rx_buff_pool[i].buff_size) {
R
Robert Jennings 已提交
1296 1297 1298 1299
			dev->mtu = new_mtu;
			vio_cmo_set_dev_desired(viodev,
						ibmveth_get_desired_dma
						(viodev));
1300 1301 1302
			if (need_restart) {
				return ibmveth_open(adapter->netdev);
			}
1303
			return 0;
1304 1305
		}
	}
1306 1307 1308 1309

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

1310
	return -EINVAL;
L
Linus Torvalds 已提交
1311 1312
}

1313 1314 1315
#ifdef CONFIG_NET_POLL_CONTROLLER
static void ibmveth_poll_controller(struct net_device *dev)
{
1316
	ibmveth_replenish_task(netdev_priv(dev));
A
Andrew Morton 已提交
1317
	ibmveth_interrupt(dev->irq, dev);
1318 1319 1320
}
#endif

R
Robert Jennings 已提交
1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360
/**
 * 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);

	for (i = 0; i < IbmVethNumBufferPools; i++) {
		/* 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;
}

1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374
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,
	.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
};

L
Linus Torvalds 已提交
1375 1376
static int __devinit ibmveth_probe(struct vio_dev *dev, const struct vio_device_id *id)
{
1377
	int rc, i;
L
Linus Torvalds 已提交
1378
	struct net_device *netdev;
1379
	struct ibmveth_adapter *adapter;
L
Linus Torvalds 已提交
1380 1381 1382 1383 1384

	unsigned char *mac_addr_p;
	unsigned int *mcastFilterSize_p;


1385
	ibmveth_debug_printk_no_adapter("entering ibmveth_probe for UA 0x%x\n",
L
Linus Torvalds 已提交
1386 1387
					dev->unit_address);

1388 1389
	mac_addr_p = (unsigned char *) vio_get_attribute(dev,
						VETH_MAC_ADDR, NULL);
L
Linus Torvalds 已提交
1390 1391 1392 1393 1394
	if(!mac_addr_p) {
		printk(KERN_ERR "(%s:%3.3d) ERROR: Can't find VETH_MAC_ADDR "
				"attribute\n", __FILE__, __LINE__);
		return 0;
	}
1395

1396 1397
	mcastFilterSize_p = (unsigned int *) vio_get_attribute(dev,
						VETH_MCAST_FILTER_SIZE, NULL);
L
Linus Torvalds 已提交
1398 1399 1400 1401 1402 1403
	if(!mcastFilterSize_p) {
		printk(KERN_ERR "(%s:%3.3d) ERROR: Can't find "
				"VETH_MCAST_FILTER_SIZE attribute\n",
				__FILE__, __LINE__);
		return 0;
	}
1404

L
Linus Torvalds 已提交
1405 1406 1407 1408 1409
	netdev = alloc_etherdev(sizeof(struct ibmveth_adapter));

	if(!netdev)
		return -ENOMEM;

1410
	adapter = netdev_priv(netdev);
1411
	dev_set_drvdata(&dev->dev, netdev);
L
Linus Torvalds 已提交
1412 1413 1414 1415

	adapter->vdev = dev;
	adapter->netdev = netdev;
	adapter->mcastFilterSize= *mcastFilterSize_p;
1416
	adapter->pool_config = 0;
1417

1418 1419
	netif_napi_add(netdev, &adapter->napi, ibmveth_poll, 16);

L
Linus Torvalds 已提交
1420
	/* 	Some older boxes running PHYP non-natively have an OF that
1421
		returns a 8-byte local-mac-address field (and the first
L
Linus Torvalds 已提交
1422
		2 bytes have to be ignored) while newer boxes' OF return
1423
		a 6-byte field. Note that IEEE 1275 specifies that
L
Linus Torvalds 已提交
1424
		local-mac-address must be a 6-byte field.
1425
		The RPA doc specifies that the first byte must be 10b, so
L
Linus Torvalds 已提交
1426 1427 1428 1429 1430 1431 1432 1433 1434
		we'll just look for it to solve this 8 vs. 6 byte field issue */

	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;
1435 1436
	netdev->netdev_ops = &ibmveth_netdev_ops;
	netdev->ethtool_ops = &netdev_ethtool_ops;
L
Linus Torvalds 已提交
1437
	SET_NETDEV_DEV(netdev, &dev->dev);
1438
	netdev->features |= NETIF_F_SG;
L
Linus Torvalds 已提交
1439

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

1442 1443
	for(i = 0; i<IbmVethNumBufferPools; i++) {
		struct kobject *kobj = &adapter->rx_buff_pool[i].kobj;
1444 1445
		int error;

1446 1447
		ibmveth_init_buffer_pool(&adapter->rx_buff_pool[i], i,
					 pool_count[i], pool_size[i],
1448
					 pool_active[i]);
1449 1450 1451 1452
		error = kobject_init_and_add(kobj, &ktype_veth_pool,
					     &dev->dev.kobj, "pool%d", i);
		if (!error)
			kobject_uevent(kobj, KOBJ_ADD);
1453
	}
L
Linus Torvalds 已提交
1454 1455 1456 1457 1458 1459 1460 1461 1462

	ibmveth_debug_printk("adapter @ 0x%p\n", adapter);

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

	ibmveth_debug_printk("registering netdev...\n");

1463
	ibmveth_set_csum_offload(netdev, 1, ibmveth_set_tx_csum_flags);
B
Brian King 已提交
1464

L
Linus Torvalds 已提交
1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481
	rc = register_netdev(netdev);

	if(rc) {
		ibmveth_debug_printk("failed to register netdev rc=%d\n", rc);
		free_netdev(netdev);
		return rc;
	}

	ibmveth_debug_printk("registered\n");

	ibmveth_proc_register_adapter(adapter);

	return 0;
}

static int __devexit ibmveth_remove(struct vio_dev *dev)
{
1482
	struct net_device *netdev = dev_get_drvdata(&dev->dev);
1483
	struct ibmveth_adapter *adapter = netdev_priv(netdev);
1484 1485 1486
	int i;

	for(i = 0; i<IbmVethNumBufferPools; i++)
1487
		kobject_put(&adapter->rx_buff_pool[i].kobj);
L
Linus Torvalds 已提交
1488 1489 1490 1491 1492 1493

	unregister_netdev(netdev);

	ibmveth_proc_unregister_adapter(adapter);

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

L
Linus Torvalds 已提交
1496 1497 1498 1499 1500 1501
	return 0;
}

#ifdef CONFIG_PROC_FS
static void ibmveth_proc_register_driver(void)
{
1502
	ibmveth_proc_dir = proc_mkdir(IBMVETH_PROC_DIR, init_net.proc_net);
L
Linus Torvalds 已提交
1503 1504 1505 1506 1507 1508
	if (ibmveth_proc_dir) {
	}
}

static void ibmveth_proc_unregister_driver(void)
{
1509
	remove_proc_entry(IBMVETH_PROC_DIR, init_net.proc_net);
L
Linus Torvalds 已提交
1510 1511
}

1512
static int ibmveth_show(struct seq_file *seq, void *v)
L
Linus Torvalds 已提交
1513 1514
{
	struct ibmveth_adapter *adapter = seq->private;
1515 1516
	char *current_mac = (char *) adapter->netdev->dev_addr;
	char *firmware_mac = (char *) &adapter->mac_addr;
L
Linus Torvalds 已提交
1517 1518

	seq_printf(seq, "%s %s\n\n", ibmveth_driver_string, ibmveth_driver_version);
1519

L
Linus Torvalds 已提交
1520
	seq_printf(seq, "Unit Address:    0x%x\n", adapter->vdev->unit_address);
J
Johannes Berg 已提交
1521 1522
	seq_printf(seq, "Current MAC:     %pM\n", current_mac);
	seq_printf(seq, "Firmware MAC:    %pM\n", firmware_mac);
1523

L
Linus Torvalds 已提交
1524
	seq_printf(seq, "\nAdapter Statistics:\n");
1525 1526 1527 1528 1529 1530 1531
	seq_printf(seq, "  TX:  vio_map_single failres:      %lld\n", adapter->tx_map_failed);
	seq_printf(seq, "       send failures:               %lld\n", adapter->tx_send_failed);
	seq_printf(seq, "  RX:  replenish task cycles:       %lld\n", adapter->replenish_task_cycles);
	seq_printf(seq, "       alloc_skb_failures:          %lld\n", adapter->replenish_no_mem);
	seq_printf(seq, "       add buffer failures:         %lld\n", adapter->replenish_add_buff_failure);
	seq_printf(seq, "       invalid buffers:             %lld\n", adapter->rx_invalid_buffer);
	seq_printf(seq, "       no buffers:                  %lld\n", adapter->rx_no_buffer);
1532

L
Linus Torvalds 已提交
1533 1534 1535 1536 1537
	return 0;
}

static int ibmveth_proc_open(struct inode *inode, struct file *file)
{
1538
	return single_open(file, ibmveth_show, PDE(inode)->data);
L
Linus Torvalds 已提交
1539 1540
}

1541
static const struct file_operations ibmveth_proc_fops = {
L
Linus Torvalds 已提交
1542 1543 1544 1545
	.owner	 = THIS_MODULE,
	.open    = ibmveth_proc_open,
	.read    = seq_read,
	.llseek  = seq_lseek,
1546
	.release = single_release,
L
Linus Torvalds 已提交
1547 1548 1549 1550 1551 1552
};

static void ibmveth_proc_register_adapter(struct ibmveth_adapter *adapter)
{
	struct proc_dir_entry *entry;
	if (ibmveth_proc_dir) {
1553 1554
		char u_addr[10];
		sprintf(u_addr, "%x", adapter->vdev->unit_address);
1555 1556 1557
		entry = proc_create_data(u_addr, S_IFREG, ibmveth_proc_dir,
					 &ibmveth_proc_fops, adapter);
		if (!entry)
L
Linus Torvalds 已提交
1558 1559 1560 1561 1562 1563 1564
			ibmveth_error_printk("Cannot create adapter proc entry");
	}
}

static void ibmveth_proc_unregister_adapter(struct ibmveth_adapter *adapter)
{
	if (ibmveth_proc_dir) {
1565 1566 1567
		char u_addr[10];
		sprintf(u_addr, "%x", adapter->vdev->unit_address);
		remove_proc_entry(u_addr, ibmveth_proc_dir);
L
Linus Torvalds 已提交
1568 1569 1570 1571
	}
}

#else /* CONFIG_PROC_FS */
1572
static void ibmveth_proc_register_adapter(struct ibmveth_adapter *adapter)
L
Linus Torvalds 已提交
1573 1574 1575
{
}

1576
static void ibmveth_proc_unregister_adapter(struct ibmveth_adapter *adapter)
L
Linus Torvalds 已提交
1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587
{
}
static void ibmveth_proc_register_driver(void)
{
}

static void ibmveth_proc_unregister_driver(void)
{
}
#endif /* CONFIG_PROC_FS */

1588 1589 1590 1591 1592 1593 1594
static struct attribute veth_active_attr;
static struct attribute veth_num_attr;
static struct attribute veth_size_attr;

static ssize_t veth_pool_show(struct kobject * kobj,
                              struct attribute * attr, char * buf)
{
1595
	struct ibmveth_buff_pool *pool = container_of(kobj,
1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610
						      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;
}

static ssize_t veth_pool_store(struct kobject * kobj, struct attribute * attr,
const char * buf, size_t count)
{
1611
	struct ibmveth_buff_pool *pool = container_of(kobj,
1612 1613
						      struct ibmveth_buff_pool,
						      kobj);
1614 1615
	struct net_device *netdev = dev_get_drvdata(
	    container_of(kobj->parent, struct device, kobj));
1616
	struct ibmveth_adapter *adapter = netdev_priv(netdev);
1617 1618 1619 1620 1621
	long value = simple_strtol(buf, NULL, 10);
	long rc;

	if (attr == &veth_active_attr) {
		if (value && !pool->active) {
1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634
			if (netif_running(netdev)) {
				if(ibmveth_alloc_buffer_pool(pool)) {
					ibmveth_error_printk("unable to alloc pool\n");
					return -ENOMEM;
				}
				pool->active = 1;
				adapter->pool_config = 1;
				ibmveth_close(netdev);
				adapter->pool_config = 0;
				if ((rc = ibmveth_open(netdev)))
					return rc;
			} else
				pool->active = 1;
1635 1636 1637 1638 1639
		} 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 */
1640
			for (i = 0; i < IbmVethNumBufferPools; i++) {
1641 1642 1643 1644
				if (pool == &adapter->rx_buff_pool[i])
					continue;
				if (!adapter->rx_buff_pool[i].active)
					continue;
1645 1646
				if (mtu <= adapter->rx_buff_pool[i].buff_size)
					break;
1647
			}
1648 1649

			if (i == IbmVethNumBufferPools) {
1650 1651 1652
				ibmveth_error_printk("no active pool >= MTU\n");
				return -EPERM;
			}
1653 1654 1655 1656

			if (netif_running(netdev)) {
				adapter->pool_config = 1;
				ibmveth_close(netdev);
1657
				pool->active = 0;
1658 1659 1660 1661
				adapter->pool_config = 0;
				if ((rc = ibmveth_open(netdev)))
					return rc;
			}
1662
			pool->active = 0;
1663 1664 1665 1666 1667
		}
	} else if (attr == &veth_num_attr) {
		if (value <= 0 || value > IBMVETH_MAX_POOL_COUNT)
			return -EINVAL;
		else {
1668 1669 1670 1671 1672 1673 1674 1675 1676
			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;
			} else
				pool->size = value;
1677 1678 1679 1680 1681
		}
	} else if (attr == &veth_size_attr) {
		if (value <= IBMVETH_BUFF_OH || value > IBMVETH_MAX_BUF_SIZE)
			return -EINVAL;
		else {
1682 1683 1684 1685 1686 1687 1688 1689 1690
			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;
			} else
				pool->buff_size = value;
1691 1692 1693 1694
		}
	}

	/* kick the interrupt handler to allocate/deallocate pools */
1695
	ibmveth_interrupt(netdev->irq, netdev);
1696 1697 1698 1699 1700 1701
	return count;
}


#define ATTR(_name, _mode)      \
        struct attribute veth_##_name##_attr = {               \
1702
        .name = __stringify(_name), .mode = _mode, \
1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715
        };

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

static struct attribute * veth_pool_attrs[] = {
	&veth_active_attr,
	&veth_num_attr,
	&veth_size_attr,
	NULL,
};

1716
static const struct sysfs_ops veth_pool_ops = {
1717 1718 1719 1720 1721 1722 1723 1724 1725 1726
	.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 已提交
1727 1728 1729 1730 1731 1732
static int ibmveth_resume(struct device *dev)
{
	struct net_device *netdev = dev_get_drvdata(dev);
	ibmveth_interrupt(netdev->irq, netdev);
	return 0;
}
1733

L
Linus Torvalds 已提交
1734 1735
static struct vio_device_id ibmveth_device_table[] __devinitdata= {
	{ "network", "IBM,l-lan"},
1736
	{ "", "" }
L
Linus Torvalds 已提交
1737 1738 1739
};
MODULE_DEVICE_TABLE(vio, ibmveth_device_table);

B
Brian King 已提交
1740 1741 1742 1743
static struct dev_pm_ops ibmveth_pm_ops = {
	.resume = ibmveth_resume
};

L
Linus Torvalds 已提交
1744
static struct vio_driver ibmveth_driver = {
1745 1746 1747
	.id_table	= ibmveth_device_table,
	.probe		= ibmveth_probe,
	.remove		= ibmveth_remove,
R
Robert Jennings 已提交
1748
	.get_desired_dma = ibmveth_get_desired_dma,
1749 1750
	.driver		= {
		.name	= ibmveth_driver_name,
1751
		.owner	= THIS_MODULE,
B
Brian King 已提交
1752
		.pm = &ibmveth_pm_ops,
1753
	}
L
Linus Torvalds 已提交
1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768
};

static int __init ibmveth_module_init(void)
{
	ibmveth_printk("%s: %s %s\n", ibmveth_driver_name, ibmveth_driver_string, ibmveth_driver_version);

	ibmveth_proc_register_driver();

	return vio_register_driver(&ibmveth_driver);
}

static void __exit ibmveth_module_exit(void)
{
	vio_unregister_driver(&ibmveth_driver);
	ibmveth_proc_unregister_driver();
1769
}
L
Linus Torvalds 已提交
1770 1771 1772

module_init(ibmveth_module_init);
module_exit(ibmveth_module_exit);