iseries_veth.c 43.2 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6
/* File veth.c created by Kyle A. Lucke on Mon Aug  7 2000. */
/*
 * IBM eServer iSeries Virtual Ethernet Device Driver
 * Copyright (C) 2001 Kyle A. Lucke (klucke@us.ibm.com), IBM Corp.
 * Substantially cleaned up by:
 * Copyright (C) 2003 David Gibson <dwg@au1.ibm.com>, IBM Corporation.
7
 * Copyright (C) 2004-2005 Michael Ellerman, IBM Corporation.
L
Linus Torvalds 已提交
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
 *
 * 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 implements the virtual ethernet device for iSeries LPAR
 * Linux.  It uses hypervisor message passing to implement an
 * ethernet-like network device communicating between partitions on
 * the iSeries.
 *
 * The iSeries LPAR hypervisor currently allows for up to 16 different
 * virtual ethernets.  These are all dynamically configurable on
 * OS/400 partitions, but dynamic configuration is not supported under
 * Linux yet.  An ethXX network device will be created for each
 * virtual ethernet this partition is connected to.
 *
 * - This driver is responsible for routing packets to and from other
 *   partitions.  The MAC addresses used by the virtual ethernets
 *   contains meaning and must not be modified.
 *
 * - Having 2 virtual ethernets to the same remote partition DOES NOT
 *   double the available bandwidth.  The 2 devices will share the
 *   available hypervisor bandwidth.
 *
 * - If you send a packet to your own mac address, it will just be
 *   dropped, you won't get it on the receive side.
 *
 * - Multicast is implemented by sending the frame frame to every
 *   other partition.  It is the responsibility of the receiving
 *   partition to filter the addresses desired.
 *
 * Tunable parameters:
 *
 * VETH_NUMBUFFERS: This compile time option defaults to 120.  It
 * controls how much memory Linux will allocate per remote partition
 * it is communicating with.  It can be thought of as the maximum
 * number of packets outstanding to a remote partition at a time.
 */

#include <linux/module.h>
#include <linux/types.h>
#include <linux/errno.h>
#include <linux/ioport.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>
#include <linux/ethtool.h>
71
#include <linux/if_ether.h>
72
#include <linux/slab.h>
73 74

#include <asm/abs_addr.h>
75
#include <asm/iseries/mf.h>
L
Linus Torvalds 已提交
76
#include <asm/uaccess.h>
77
#include <asm/firmware.h>
78
#include <asm/iseries/hv_lp_config.h>
79
#include <asm/iseries/hv_types.h>
80
#include <asm/iseries/hv_lp_event.h>
L
Linus Torvalds 已提交
81 82 83
#include <asm/iommu.h>
#include <asm/vio.h>

84 85
#undef DEBUG

L
Linus Torvalds 已提交
86 87 88 89
MODULE_AUTHOR("Kyle Lucke <klucke@us.ibm.com>");
MODULE_DESCRIPTION("iSeries Virtual ethernet driver");
MODULE_LICENSE("GPL");

90 91 92 93
#define VETH_EVENT_CAP	(0)
#define VETH_EVENT_FRAMES	(1)
#define VETH_EVENT_MONITOR	(2)
#define VETH_EVENT_FRAMES_ACK	(3)
94 95 96 97

#define VETH_MAX_ACKS_PER_MSG	(20)
#define VETH_MAX_FRAMES_PER_MSG	(6)

98
struct veth_frames_data {
99 100 101 102 103 104
	u32 addr[VETH_MAX_FRAMES_PER_MSG];
	u16 len[VETH_MAX_FRAMES_PER_MSG];
	u32 eofmask;
};
#define VETH_EOF_SHIFT		(32-VETH_MAX_FRAMES_PER_MSG)

105
struct veth_frames_ack_data {
106 107 108
	u16 token[VETH_MAX_ACKS_PER_MSG];
};

109
struct veth_cap_data {
110 111 112 113 114 115 116 117 118 119
	u8 caps_version;
	u8 rsvd1;
	u16 num_buffers;
	u16 ack_threshold;
	u16 rsvd2;
	u32 ack_timeout;
	u32 rsvd3;
	u64 rsvd4[3];
};

120
struct veth_lpevent {
121 122
	struct HvLpEvent base_event;
	union {
123 124 125
		struct veth_cap_data caps_data;
		struct veth_frames_data frames_data;
		struct veth_frames_ack_data frames_ack_data;
126 127 128 129
	} u;

};

130 131 132
#define DRV_NAME	"iseries_veth"
#define DRV_VERSION	"2.0"

L
Linus Torvalds 已提交
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
#define VETH_NUMBUFFERS		(120)
#define VETH_ACKTIMEOUT 	(1000000) /* microseconds */
#define VETH_MAX_MCAST		(12)

#define VETH_MAX_MTU		(9000)

#if VETH_NUMBUFFERS < 10
#define ACK_THRESHOLD 		(1)
#elif VETH_NUMBUFFERS < 20
#define ACK_THRESHOLD 		(4)
#elif VETH_NUMBUFFERS < 40
#define ACK_THRESHOLD 		(10)
#else
#define ACK_THRESHOLD 		(20)
#endif

#define	VETH_STATE_SHUTDOWN	(0x0001)
#define VETH_STATE_OPEN		(0x0002)
#define VETH_STATE_RESET	(0x0004)
#define VETH_STATE_SENTMON	(0x0008)
#define VETH_STATE_SENTCAPS	(0x0010)
#define VETH_STATE_GOTCAPACK	(0x0020)
#define VETH_STATE_GOTCAPS	(0x0040)
#define VETH_STATE_SENTCAPACK	(0x0080)
#define VETH_STATE_READY	(0x0100)

struct veth_msg {
	struct veth_msg *next;
161
	struct veth_frames_data data;
L
Linus Torvalds 已提交
162
	int token;
163
	int in_use;
L
Linus Torvalds 已提交
164 165 166 167 168 169
	struct sk_buff *skb;
	struct device *dev;
};

struct veth_lpar_connection {
	HvLpIndex remote_lp;
D
David Howells 已提交
170
	struct delayed_work statemachine_wq;
L
Linus Torvalds 已提交
171 172
	struct veth_msg *msgs;
	int num_events;
173
	struct veth_cap_data local_caps;
L
Linus Torvalds 已提交
174

175
	struct kobject kobject;
L
Linus Torvalds 已提交
176 177
	struct timer_list ack_timer;

178 179 180 181 182
	struct timer_list reset_timer;
	unsigned int reset_timeout;
	unsigned long last_contact;
	int outstanding_tx;

L
Linus Torvalds 已提交
183 184 185 186
	spinlock_t lock;
	unsigned long state;
	HvLpInstanceId src_inst;
	HvLpInstanceId dst_inst;
187
	struct veth_lpevent cap_event, cap_ack_event;
L
Linus Torvalds 已提交
188 189 190 191
	u16 pending_acks[VETH_MAX_ACKS_PER_MSG];
	u32 num_pending_acks;

	int num_ack_events;
192
	struct veth_cap_data remote_caps;
L
Linus Torvalds 已提交
193 194 195 196 197 198 199 200 201 202
	u32 ack_timeout;

	struct veth_msg *msg_stack_head;
};

struct veth_port {
	struct device *dev;
	u64 mac_addr;
	HvLpIndexMap lpar_map;

203 204 205
	/* queue_lock protects the stopped_map and dev's queue. */
	spinlock_t queue_lock;
	HvLpIndexMap stopped_map;
L
Linus Torvalds 已提交
206

207
	/* mcast_gate protects promiscuous, num_mcast & mcast_addr. */
L
Linus Torvalds 已提交
208 209 210 211
	rwlock_t mcast_gate;
	int promiscuous;
	int num_mcast;
	u64 mcast_addr[VETH_MAX_MCAST];
212 213

	struct kobject kobject;
L
Linus Torvalds 已提交
214 215 216 217 218 219 220 221
};

static HvLpIndex this_lp;
static struct veth_lpar_connection *veth_cnx[HVMAXARCHITECTEDLPS]; /* = 0 */
static struct net_device *veth_dev[HVMAXARCHITECTEDVIRTUALLANS]; /* = 0 */

static int veth_start_xmit(struct sk_buff *skb, struct net_device *dev);
static void veth_recycle_msg(struct veth_lpar_connection *, struct veth_msg *);
222 223
static void veth_wake_queues(struct veth_lpar_connection *cnx);
static void veth_stop_queues(struct veth_lpar_connection *cnx);
224
static void veth_receive(struct veth_lpar_connection *, struct veth_lpevent *);
225
static void veth_release_connection(struct kobject *kobject);
226 227
static void veth_timed_ack(unsigned long ptr);
static void veth_timed_reset(unsigned long ptr);
228

L
Linus Torvalds 已提交
229 230 231 232
/*
 * Utility functions
 */

233
#define veth_info(fmt, args...) \
234
	printk(KERN_INFO DRV_NAME ": " fmt, ## args)
L
Linus Torvalds 已提交
235 236

#define veth_error(fmt, args...) \
237
	printk(KERN_ERR DRV_NAME ": Error: " fmt, ## args)
238 239 240

#ifdef DEBUG
#define veth_debug(fmt, args...) \
241
	printk(KERN_DEBUG DRV_NAME ": " fmt, ## args)
242 243 244
#else
#define veth_debug(fmt, args...) do {} while (0)
#endif
L
Linus Torvalds 已提交
245

246
/* You must hold the connection's lock when you call this function. */
L
Linus Torvalds 已提交
247 248 249 250 251 252 253
static inline void veth_stack_push(struct veth_lpar_connection *cnx,
				   struct veth_msg *msg)
{
	msg->next = cnx->msg_stack_head;
	cnx->msg_stack_head = msg;
}

254
/* You must hold the connection's lock when you call this function. */
L
Linus Torvalds 已提交
255 256 257 258 259 260 261
static inline struct veth_msg *veth_stack_pop(struct veth_lpar_connection *cnx)
{
	struct veth_msg *msg;

	msg = cnx->msg_stack_head;
	if (msg)
		cnx->msg_stack_head = cnx->msg_stack_head->next;
262

L
Linus Torvalds 已提交
263 264 265
	return msg;
}

266 267 268 269 270 271
/* You must hold the connection's lock when you call this function. */
static inline int veth_stack_is_empty(struct veth_lpar_connection *cnx)
{
	return cnx->msg_stack_head == NULL;
}

L
Linus Torvalds 已提交
272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311
static inline HvLpEvent_Rc
veth_signalevent(struct veth_lpar_connection *cnx, u16 subtype,
		 HvLpEvent_AckInd ackind, HvLpEvent_AckType acktype,
		 u64 token,
		 u64 data1, u64 data2, u64 data3, u64 data4, u64 data5)
{
	return HvCallEvent_signalLpEventFast(cnx->remote_lp,
					     HvLpEvent_Type_VirtualLan,
					     subtype, ackind, acktype,
					     cnx->src_inst,
					     cnx->dst_inst,
					     token, data1, data2, data3,
					     data4, data5);
}

static inline HvLpEvent_Rc veth_signaldata(struct veth_lpar_connection *cnx,
					   u16 subtype, u64 token, void *data)
{
	u64 *p = (u64 *) data;

	return veth_signalevent(cnx, subtype, HvLpEvent_AckInd_NoAck,
				HvLpEvent_AckType_ImmediateAck,
				token, p[0], p[1], p[2], p[3], p[4]);
}

struct veth_allocation {
	struct completion c;
	int num;
};

static void veth_complete_allocation(void *parm, int number)
{
	struct veth_allocation *vc = (struct veth_allocation *)parm;

	vc->num = number;
	complete(&vc->c);
}

static int veth_allocate_events(HvLpIndex rlp, int number)
{
312 313
	struct veth_allocation vc =
		{ COMPLETION_INITIALIZER_ONSTACK(vc.c), 0 };
L
Linus Torvalds 已提交
314 315

	mf_allocate_lp_events(rlp, HvLpEvent_Type_VirtualLan,
316
			    sizeof(struct veth_lpevent), number,
L
Linus Torvalds 已提交
317 318 319 320 321 322
			    &veth_complete_allocation, &vc);
	wait_for_completion(&vc.c);

	return vc.num;
}

323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387
/*
 * sysfs support
 */

struct veth_cnx_attribute {
	struct attribute attr;
	ssize_t (*show)(struct veth_lpar_connection *, char *buf);
	ssize_t (*store)(struct veth_lpar_connection *, const char *buf);
};

static ssize_t veth_cnx_attribute_show(struct kobject *kobj,
		struct attribute *attr, char *buf)
{
	struct veth_cnx_attribute *cnx_attr;
	struct veth_lpar_connection *cnx;

	cnx_attr = container_of(attr, struct veth_cnx_attribute, attr);
	cnx = container_of(kobj, struct veth_lpar_connection, kobject);

	if (!cnx_attr->show)
		return -EIO;

	return cnx_attr->show(cnx, buf);
}

#define CUSTOM_CNX_ATTR(_name, _format, _expression)			\
static ssize_t _name##_show(struct veth_lpar_connection *cnx, char *buf)\
{									\
	return sprintf(buf, _format, _expression);			\
}									\
struct veth_cnx_attribute veth_cnx_attr_##_name = __ATTR_RO(_name)

#define SIMPLE_CNX_ATTR(_name)	\
	CUSTOM_CNX_ATTR(_name, "%lu\n", (unsigned long)cnx->_name)

SIMPLE_CNX_ATTR(outstanding_tx);
SIMPLE_CNX_ATTR(remote_lp);
SIMPLE_CNX_ATTR(num_events);
SIMPLE_CNX_ATTR(src_inst);
SIMPLE_CNX_ATTR(dst_inst);
SIMPLE_CNX_ATTR(num_pending_acks);
SIMPLE_CNX_ATTR(num_ack_events);
CUSTOM_CNX_ATTR(ack_timeout, "%d\n", jiffies_to_msecs(cnx->ack_timeout));
CUSTOM_CNX_ATTR(reset_timeout, "%d\n", jiffies_to_msecs(cnx->reset_timeout));
CUSTOM_CNX_ATTR(state, "0x%.4lX\n", cnx->state);
CUSTOM_CNX_ATTR(last_contact, "%d\n", cnx->last_contact ?
		jiffies_to_msecs(jiffies - cnx->last_contact) : 0);

#define GET_CNX_ATTR(_name)	(&veth_cnx_attr_##_name.attr)

static struct attribute *veth_cnx_default_attrs[] = {
	GET_CNX_ATTR(outstanding_tx),
	GET_CNX_ATTR(remote_lp),
	GET_CNX_ATTR(num_events),
	GET_CNX_ATTR(reset_timeout),
	GET_CNX_ATTR(last_contact),
	GET_CNX_ATTR(state),
	GET_CNX_ATTR(src_inst),
	GET_CNX_ATTR(dst_inst),
	GET_CNX_ATTR(num_pending_acks),
	GET_CNX_ATTR(num_ack_events),
	GET_CNX_ATTR(ack_timeout),
	NULL
};

388
static const struct sysfs_ops veth_cnx_sysfs_ops = {
389 390 391 392 393 394 395 396 397
		.show = veth_cnx_attribute_show
};

static struct kobj_type veth_lpar_connection_ktype = {
	.release	= veth_release_connection,
	.sysfs_ops	= &veth_cnx_sysfs_ops,
	.default_attrs	= veth_cnx_default_attrs
};

398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432
struct veth_port_attribute {
	struct attribute attr;
	ssize_t (*show)(struct veth_port *, char *buf);
	ssize_t (*store)(struct veth_port *, const char *buf);
};

static ssize_t veth_port_attribute_show(struct kobject *kobj,
		struct attribute *attr, char *buf)
{
	struct veth_port_attribute *port_attr;
	struct veth_port *port;

	port_attr = container_of(attr, struct veth_port_attribute, attr);
	port = container_of(kobj, struct veth_port, kobject);

	if (!port_attr->show)
		return -EIO;

	return port_attr->show(port, buf);
}

#define CUSTOM_PORT_ATTR(_name, _format, _expression)			\
static ssize_t _name##_show(struct veth_port *port, char *buf)		\
{									\
	return sprintf(buf, _format, _expression);			\
}									\
struct veth_port_attribute veth_port_attr_##_name = __ATTR_RO(_name)

#define SIMPLE_PORT_ATTR(_name)	\
	CUSTOM_PORT_ATTR(_name, "%lu\n", (unsigned long)port->_name)

SIMPLE_PORT_ATTR(promiscuous);
SIMPLE_PORT_ATTR(num_mcast);
CUSTOM_PORT_ATTR(lpar_map, "0x%X\n", port->lpar_map);
CUSTOM_PORT_ATTR(stopped_map, "0x%X\n", port->stopped_map);
433
CUSTOM_PORT_ATTR(mac_addr, "0x%llX\n", port->mac_addr);
434 435 436 437 438 439 440 441 442 443 444

#define GET_PORT_ATTR(_name)	(&veth_port_attr_##_name.attr)
static struct attribute *veth_port_default_attrs[] = {
	GET_PORT_ATTR(mac_addr),
	GET_PORT_ATTR(lpar_map),
	GET_PORT_ATTR(stopped_map),
	GET_PORT_ATTR(promiscuous),
	GET_PORT_ATTR(num_mcast),
	NULL
};

445
static const struct sysfs_ops veth_port_sysfs_ops = {
446 447 448 449 450 451 452 453
	.show = veth_port_attribute_show
};

static struct kobj_type veth_port_ktype = {
	.sysfs_ops	= &veth_port_sysfs_ops,
	.default_attrs	= veth_port_default_attrs
};

L
Linus Torvalds 已提交
454 455 456 457 458 459
/*
 * LPAR connection code
 */

static inline void veth_kick_statemachine(struct veth_lpar_connection *cnx)
{
D
David Howells 已提交
460
	schedule_delayed_work(&cnx->statemachine_wq, 0);
L
Linus Torvalds 已提交
461 462 463
}

static void veth_take_cap(struct veth_lpar_connection *cnx,
464
			  struct veth_lpevent *event)
L
Linus Torvalds 已提交
465 466 467 468 469 470 471 472 473 474 475
{
	unsigned long flags;

	spin_lock_irqsave(&cnx->lock, flags);
	/* Receiving caps may mean the other end has just come up, so
	 * we need to reload the instance ID of the far end */
	cnx->dst_inst =
		HvCallEvent_getTargetLpInstanceId(cnx->remote_lp,
						  HvLpEvent_Type_VirtualLan);

	if (cnx->state & VETH_STATE_GOTCAPS) {
476
		veth_error("Received a second capabilities from LPAR %d.\n",
L
Linus Torvalds 已提交
477 478 479 480 481 482 483 484 485 486 487 488
			   cnx->remote_lp);
		event->base_event.xRc = HvLpEvent_Rc_BufferNotAvailable;
		HvCallEvent_ackLpEvent((struct HvLpEvent *) event);
	} else {
		memcpy(&cnx->cap_event, event, sizeof(cnx->cap_event));
		cnx->state |= VETH_STATE_GOTCAPS;
		veth_kick_statemachine(cnx);
	}
	spin_unlock_irqrestore(&cnx->lock, flags);
}

static void veth_take_cap_ack(struct veth_lpar_connection *cnx,
489
			      struct veth_lpevent *event)
L
Linus Torvalds 已提交
490 491 492 493 494
{
	unsigned long flags;

	spin_lock_irqsave(&cnx->lock, flags);
	if (cnx->state & VETH_STATE_GOTCAPACK) {
495
		veth_error("Received a second capabilities ack from LPAR %d.\n",
L
Linus Torvalds 已提交
496 497 498
			   cnx->remote_lp);
	} else {
		memcpy(&cnx->cap_ack_event, event,
J
Jean Delvare 已提交
499
		       sizeof(cnx->cap_ack_event));
L
Linus Torvalds 已提交
500 501 502 503 504 505 506
		cnx->state |= VETH_STATE_GOTCAPACK;
		veth_kick_statemachine(cnx);
	}
	spin_unlock_irqrestore(&cnx->lock, flags);
}

static void veth_take_monitor_ack(struct veth_lpar_connection *cnx,
507
				  struct veth_lpevent *event)
L
Linus Torvalds 已提交
508 509 510 511
{
	unsigned long flags;

	spin_lock_irqsave(&cnx->lock, flags);
512
	veth_debug("cnx %d: lost connection.\n", cnx->remote_lp);
513 514 515 516 517 518 519 520

	/* Avoid kicking the statemachine once we're shutdown.
	 * It's unnecessary and it could break veth_stop_connection(). */

	if (! (cnx->state & VETH_STATE_SHUTDOWN)) {
		cnx->state |= VETH_STATE_RESET;
		veth_kick_statemachine(cnx);
	}
L
Linus Torvalds 已提交
521 522 523
	spin_unlock_irqrestore(&cnx->lock, flags);
}

524
static void veth_handle_ack(struct veth_lpevent *event)
L
Linus Torvalds 已提交
525 526 527 528 529 530 531
{
	HvLpIndex rlp = event->base_event.xTargetLp;
	struct veth_lpar_connection *cnx = veth_cnx[rlp];

	BUG_ON(! cnx);

	switch (event->base_event.xSubtype) {
532
	case VETH_EVENT_CAP:
L
Linus Torvalds 已提交
533 534
		veth_take_cap_ack(cnx, event);
		break;
535
	case VETH_EVENT_MONITOR:
L
Linus Torvalds 已提交
536 537 538
		veth_take_monitor_ack(cnx, event);
		break;
	default:
539 540
		veth_error("Unknown ack type %d from LPAR %d.\n",
				event->base_event.xSubtype, rlp);
L
Linus Torvalds 已提交
541 542 543
	};
}

544
static void veth_handle_int(struct veth_lpevent *event)
L
Linus Torvalds 已提交
545 546 547 548
{
	HvLpIndex rlp = event->base_event.xSourceLp;
	struct veth_lpar_connection *cnx = veth_cnx[rlp];
	unsigned long flags;
549
	int i, acked = 0;
L
Linus Torvalds 已提交
550 551 552 553

	BUG_ON(! cnx);

	switch (event->base_event.xSubtype) {
554
	case VETH_EVENT_CAP:
L
Linus Torvalds 已提交
555 556
		veth_take_cap(cnx, event);
		break;
557
	case VETH_EVENT_MONITOR:
L
Linus Torvalds 已提交
558 559 560
		/* do nothing... this'll hang out here til we're dead,
		 * and the hypervisor will return it for us. */
		break;
561
	case VETH_EVENT_FRAMES_ACK:
L
Linus Torvalds 已提交
562
		spin_lock_irqsave(&cnx->lock, flags);
563

L
Linus Torvalds 已提交
564 565 566
		for (i = 0; i < VETH_MAX_ACKS_PER_MSG; ++i) {
			u16 msgnum = event->u.frames_ack_data.token[i];

567
			if (msgnum < VETH_NUMBUFFERS) {
L
Linus Torvalds 已提交
568
				veth_recycle_msg(cnx, cnx->msgs + msgnum);
569 570 571
				cnx->outstanding_tx--;
				acked++;
			}
L
Linus Torvalds 已提交
572
		}
573

574
		if (acked > 0) {
575
			cnx->last_contact = jiffies;
576 577
			veth_wake_queues(cnx);
		}
578

L
Linus Torvalds 已提交
579 580
		spin_unlock_irqrestore(&cnx->lock, flags);
		break;
581
	case VETH_EVENT_FRAMES:
L
Linus Torvalds 已提交
582 583 584
		veth_receive(cnx, event);
		break;
	default:
585 586
		veth_error("Unknown interrupt type %d from LPAR %d.\n",
				event->base_event.xSubtype, rlp);
L
Linus Torvalds 已提交
587 588 589
	};
}

590
static void veth_handle_event(struct HvLpEvent *event)
L
Linus Torvalds 已提交
591
{
592
	struct veth_lpevent *veth_event = (struct veth_lpevent *)event;
L
Linus Torvalds 已提交
593

594
	if (hvlpevent_is_ack(event))
L
Linus Torvalds 已提交
595
		veth_handle_ack(veth_event);
596
	else
L
Linus Torvalds 已提交
597 598 599 600 601
		veth_handle_int(veth_event);
}

static int veth_process_caps(struct veth_lpar_connection *cnx)
{
602
	struct veth_cap_data *remote_caps = &cnx->remote_caps;
L
Linus Torvalds 已提交
603 604 605 606 607
	int num_acks_needed;

	/* Convert timer to jiffies */
	cnx->ack_timeout = remote_caps->ack_timeout * HZ / 1000000;

608 609 610 611
	if ( (remote_caps->num_buffers == 0) ||
	     (remote_caps->ack_threshold > VETH_MAX_ACKS_PER_MSG) ||
	     (remote_caps->ack_threshold == 0) ||
	     (cnx->ack_timeout == 0) ) {
612 613
		veth_error("Received incompatible capabilities from LPAR %d.\n",
				cnx->remote_lp);
L
Linus Torvalds 已提交
614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629
		return HvLpEvent_Rc_InvalidSubtypeData;
	}

	num_acks_needed = (remote_caps->num_buffers
			   / remote_caps->ack_threshold) + 1;

	/* FIXME: locking on num_ack_events? */
	if (cnx->num_ack_events < num_acks_needed) {
		int num;

		num = veth_allocate_events(cnx->remote_lp,
					   num_acks_needed-cnx->num_ack_events);
		if (num > 0)
			cnx->num_ack_events += num;

		if (cnx->num_ack_events < num_acks_needed) {
630 631
			veth_error("Couldn't allocate enough ack events "
					"for LPAR %d.\n", cnx->remote_lp);
L
Linus Torvalds 已提交
632 633 634 635 636 637 638 639 640 641

			return HvLpEvent_Rc_BufferNotAvailable;
		}
	}


	return HvLpEvent_Rc_Good;
}

/* FIXME: The gotos here are a bit dubious */
D
David Howells 已提交
642
static void veth_statemachine(struct work_struct *work)
L
Linus Torvalds 已提交
643
{
D
David Howells 已提交
644 645 646
	struct veth_lpar_connection *cnx =
		container_of(work, struct veth_lpar_connection,
			     statemachine_wq.work);
L
Linus Torvalds 已提交
647 648 649 650 651 652 653 654 655 656 657
	int rlp = cnx->remote_lp;
	int rc;

	spin_lock_irq(&cnx->lock);

 restart:
	if (cnx->state & VETH_STATE_RESET) {
		if (cnx->state & VETH_STATE_OPEN)
			HvCallEvent_closeLpEventPath(cnx->remote_lp,
						     HvLpEvent_Type_VirtualLan);

658 659 660 661 662
		/*
		 * Reset ack data. This prevents the ack_timer actually
		 * doing anything, even if it runs one more time when
		 * we drop the lock below.
		 */
L
Linus Torvalds 已提交
663 664 665 666 667 668 669 670 671
		memset(&cnx->pending_acks, 0xff, sizeof (cnx->pending_acks));
		cnx->num_pending_acks = 0;

		cnx->state &= ~(VETH_STATE_RESET | VETH_STATE_SENTMON
				| VETH_STATE_OPEN | VETH_STATE_SENTCAPS
				| VETH_STATE_GOTCAPACK | VETH_STATE_GOTCAPS
				| VETH_STATE_SENTCAPACK | VETH_STATE_READY);

		/* Clean up any leftover messages */
672 673
		if (cnx->msgs) {
			int i;
L
Linus Torvalds 已提交
674 675
			for (i = 0; i < VETH_NUMBUFFERS; ++i)
				veth_recycle_msg(cnx, cnx->msgs + i);
676
		}
677

678
		cnx->outstanding_tx = 0;
679
		veth_wake_queues(cnx);
680 681 682

		/* Drop the lock so we can do stuff that might sleep or
		 * take other locks. */
L
Linus Torvalds 已提交
683
		spin_unlock_irq(&cnx->lock);
684 685

		del_timer_sync(&cnx->ack_timer);
686 687
		del_timer_sync(&cnx->reset_timer);

L
Linus Torvalds 已提交
688
		spin_lock_irq(&cnx->lock);
689

L
Linus Torvalds 已提交
690 691
		if (cnx->state & VETH_STATE_RESET)
			goto restart;
692 693 694 695 696 697

		/* Hack, wait for the other end to reset itself. */
		if (! (cnx->state & VETH_STATE_SHUTDOWN)) {
			schedule_delayed_work(&cnx->statemachine_wq, 5 * HZ);
			goto out;
		}
L
Linus Torvalds 已提交
698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717
	}

	if (cnx->state & VETH_STATE_SHUTDOWN)
		/* It's all over, do nothing */
		goto out;

	if ( !(cnx->state & VETH_STATE_OPEN) ) {
		if (! cnx->msgs || (cnx->num_events < (2 + VETH_NUMBUFFERS)) )
			goto cant_cope;

		HvCallEvent_openLpEventPath(rlp, HvLpEvent_Type_VirtualLan);
		cnx->src_inst =
			HvCallEvent_getSourceLpInstanceId(rlp,
							  HvLpEvent_Type_VirtualLan);
		cnx->dst_inst =
			HvCallEvent_getTargetLpInstanceId(rlp,
							  HvLpEvent_Type_VirtualLan);
		cnx->state |= VETH_STATE_OPEN;
	}

718 719
	if ( (cnx->state & VETH_STATE_OPEN) &&
	     !(cnx->state & VETH_STATE_SENTMON) ) {
720
		rc = veth_signalevent(cnx, VETH_EVENT_MONITOR,
L
Linus Torvalds 已提交
721 722 723 724 725 726 727
				      HvLpEvent_AckInd_DoAck,
				      HvLpEvent_AckType_DeferredAck,
				      0, 0, 0, 0, 0, 0);

		if (rc == HvLpEvent_Rc_Good) {
			cnx->state |= VETH_STATE_SENTMON;
		} else {
728 729
			if ( (rc != HvLpEvent_Rc_PartitionDead) &&
			     (rc != HvLpEvent_Rc_PathClosed) )
730 731
				veth_error("Error sending monitor to LPAR %d, "
						"rc = %d\n", rlp, rc);
L
Linus Torvalds 已提交
732 733 734 735 736 737 738

			/* Oh well, hope we get a cap from the other
			 * end and do better when that kicks us */
			goto out;
		}
	}

739 740
	if ( (cnx->state & VETH_STATE_OPEN) &&
	     !(cnx->state & VETH_STATE_SENTCAPS)) {
L
Linus Torvalds 已提交
741 742
		u64 *rawcap = (u64 *)&cnx->local_caps;

743
		rc = veth_signalevent(cnx, VETH_EVENT_CAP,
L
Linus Torvalds 已提交
744 745 746 747 748 749 750 751
				      HvLpEvent_AckInd_DoAck,
				      HvLpEvent_AckType_ImmediateAck,
				      0, rawcap[0], rawcap[1], rawcap[2],
				      rawcap[3], rawcap[4]);

		if (rc == HvLpEvent_Rc_Good) {
			cnx->state |= VETH_STATE_SENTCAPS;
		} else {
752 753
			if ( (rc != HvLpEvent_Rc_PartitionDead) &&
			     (rc != HvLpEvent_Rc_PathClosed) )
754 755 756
				veth_error("Error sending caps to LPAR %d, "
						"rc = %d\n", rlp, rc);

L
Linus Torvalds 已提交
757 758 759 760 761 762
			/* Oh well, hope we get a cap from the other
			 * end and do better when that kicks us */
			goto out;
		}
	}

763 764
	if ((cnx->state & VETH_STATE_GOTCAPS) &&
	    !(cnx->state & VETH_STATE_SENTCAPACK)) {
765
		struct veth_cap_data *remote_caps = &cnx->remote_caps;
L
Linus Torvalds 已提交
766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786

		memcpy(remote_caps, &cnx->cap_event.u.caps_data,
		       sizeof(*remote_caps));

		spin_unlock_irq(&cnx->lock);
		rc = veth_process_caps(cnx);
		spin_lock_irq(&cnx->lock);

		/* We dropped the lock, so recheck for anything which
		 * might mess us up */
		if (cnx->state & (VETH_STATE_RESET|VETH_STATE_SHUTDOWN))
			goto restart;

		cnx->cap_event.base_event.xRc = rc;
		HvCallEvent_ackLpEvent((struct HvLpEvent *)&cnx->cap_event);
		if (rc == HvLpEvent_Rc_Good)
			cnx->state |= VETH_STATE_SENTCAPACK;
		else
			goto cant_cope;
	}

787 788 789
	if ((cnx->state & VETH_STATE_GOTCAPACK) &&
	    (cnx->state & VETH_STATE_GOTCAPS) &&
	    !(cnx->state & VETH_STATE_READY)) {
L
Linus Torvalds 已提交
790 791 792 793 794 795
		if (cnx->cap_ack_event.base_event.xRc == HvLpEvent_Rc_Good) {
			/* Start the ACK timer */
			cnx->ack_timer.expires = jiffies + cnx->ack_timeout;
			add_timer(&cnx->ack_timer);
			cnx->state |= VETH_STATE_READY;
		} else {
796 797
			veth_error("Caps rejected by LPAR %d, rc = %d\n",
					rlp, cnx->cap_ack_event.base_event.xRc);
L
Linus Torvalds 已提交
798 799 800 801 802 803 804 805 806 807 808 809
			goto cant_cope;
		}
	}

 out:
	spin_unlock_irq(&cnx->lock);
	return;

 cant_cope:
	/* FIXME: we get here if something happens we really can't
	 * cope with.  The link will never work once we get here, and
	 * all we can do is not lock the rest of the system up */
810 811
	veth_error("Unrecoverable error on connection to LPAR %d, shutting down"
			" (state = 0x%04lx)\n", rlp, cnx->state);
L
Linus Torvalds 已提交
812 813 814 815 816 817 818 819
	cnx->state |= VETH_STATE_SHUTDOWN;
	spin_unlock_irq(&cnx->lock);
}

static int veth_init_connection(u8 rlp)
{
	struct veth_lpar_connection *cnx;
	struct veth_msg *msgs;
820
	int i;
L
Linus Torvalds 已提交
821

822 823
	if ( (rlp == this_lp) ||
	     ! HvLpConfig_doLpsCommunicateOnVirtualLan(this_lp, rlp) )
L
Linus Torvalds 已提交
824 825
		return 0;

826
	cnx = kzalloc(sizeof(*cnx), GFP_KERNEL);
L
Linus Torvalds 已提交
827 828 829 830 831
	if (! cnx)
		return -ENOMEM;

	cnx->remote_lp = rlp;
	spin_lock_init(&cnx->lock);
D
David Howells 已提交
832
	INIT_DELAYED_WORK(&cnx->statemachine_wq, veth_statemachine);
833

L
Linus Torvalds 已提交
834 835 836
	init_timer(&cnx->ack_timer);
	cnx->ack_timer.function = veth_timed_ack;
	cnx->ack_timer.data = (unsigned long) cnx;
837 838 839 840 841 842

	init_timer(&cnx->reset_timer);
	cnx->reset_timer.function = veth_timed_reset;
	cnx->reset_timer.data = (unsigned long) cnx;
	cnx->reset_timeout = 5 * HZ * (VETH_ACKTIMEOUT / 1000000);

L
Linus Torvalds 已提交
843 844 845 846
	memset(&cnx->pending_acks, 0xff, sizeof (cnx->pending_acks));

	veth_cnx[rlp] = cnx;

847 848
	/* This gets us 1 reference, which is held on behalf of the driver
	 * infrastructure. It's released at module unload. */
849
	kobject_init(&cnx->kobject, &veth_lpar_connection_ktype);
850

851
	msgs = kcalloc(VETH_NUMBUFFERS, sizeof(struct veth_msg), GFP_KERNEL);
L
Linus Torvalds 已提交
852
	if (! msgs) {
853
		veth_error("Can't allocate buffers for LPAR %d.\n", rlp);
L
Linus Torvalds 已提交
854 855 856 857 858 859 860 861 862 863 864 865 866
		return -ENOMEM;
	}

	cnx->msgs = msgs;

	for (i = 0; i < VETH_NUMBUFFERS; i++) {
		msgs[i].token = i;
		veth_stack_push(cnx, msgs + i);
	}

	cnx->num_events = veth_allocate_events(rlp, 2 + VETH_NUMBUFFERS);

	if (cnx->num_events < (2 + VETH_NUMBUFFERS)) {
867
		veth_error("Can't allocate enough events for LPAR %d.\n", rlp);
L
Linus Torvalds 已提交
868 869 870 871 872 873 874 875 876 877
		return -ENOMEM;
	}

	cnx->local_caps.num_buffers = VETH_NUMBUFFERS;
	cnx->local_caps.ack_threshold = ACK_THRESHOLD;
	cnx->local_caps.ack_timeout = VETH_ACKTIMEOUT;

	return 0;
}

878
static void veth_stop_connection(struct veth_lpar_connection *cnx)
L
Linus Torvalds 已提交
879
{
880
	if (!cnx)
L
Linus Torvalds 已提交
881 882 883 884 885 886 887
		return;

	spin_lock_irq(&cnx->lock);
	cnx->state |= VETH_STATE_RESET | VETH_STATE_SHUTDOWN;
	veth_kick_statemachine(cnx);
	spin_unlock_irq(&cnx->lock);

888 889 890 891 892 893 894 895 896
	/* There's a slim chance the reset code has just queued the
	 * statemachine to run in five seconds. If so we need to cancel
	 * that and requeue the work to run now. */
	if (cancel_delayed_work(&cnx->statemachine_wq)) {
		spin_lock_irq(&cnx->lock);
		veth_kick_statemachine(cnx);
		spin_unlock_irq(&cnx->lock);
	}

897
	/* Wait for the state machine to run. */
L
Linus Torvalds 已提交
898
	flush_scheduled_work();
899 900
}

901
static void veth_destroy_connection(struct veth_lpar_connection *cnx)
902
{
903
	if (!cnx)
904
		return;
L
Linus Torvalds 已提交
905 906 907 908 909 910 911 912 913 914 915 916 917

	if (cnx->num_events > 0)
		mf_deallocate_lp_events(cnx->remote_lp,
				      HvLpEvent_Type_VirtualLan,
				      cnx->num_events,
				      NULL, NULL);
	if (cnx->num_ack_events > 0)
		mf_deallocate_lp_events(cnx->remote_lp,
				      HvLpEvent_Type_VirtualLan,
				      cnx->num_ack_events,
				      NULL, NULL);

	kfree(cnx->msgs);
918
	veth_cnx[cnx->remote_lp] = NULL;
L
Linus Torvalds 已提交
919
	kfree(cnx);
920 921 922 923 924 925 926 927
}

static void veth_release_connection(struct kobject *kobj)
{
	struct veth_lpar_connection *cnx;
	cnx = container_of(kobj, struct veth_lpar_connection, kobject);
	veth_stop_connection(cnx);
	veth_destroy_connection(cnx);
L
Linus Torvalds 已提交
928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955
}

/*
 * net_device code
 */

static int veth_open(struct net_device *dev)
{
	netif_start_queue(dev);
	return 0;
}

static int veth_close(struct net_device *dev)
{
	netif_stop_queue(dev);
	return 0;
}

static int veth_change_mtu(struct net_device *dev, int new_mtu)
{
	if ((new_mtu < 68) || (new_mtu > VETH_MAX_MTU))
		return -EINVAL;
	dev->mtu = new_mtu;
	return 0;
}

static void veth_set_multicast_list(struct net_device *dev)
{
956
	struct veth_port *port = netdev_priv(dev);
L
Linus Torvalds 已提交
957 958 959 960
	unsigned long flags;

	write_lock_irqsave(&port->mcast_gate, flags);

961
	if ((dev->flags & IFF_PROMISC) || (dev->flags & IFF_ALLMULTI) ||
962
			(netdev_mc_count(dev) > VETH_MAX_MCAST)) {
L
Linus Torvalds 已提交
963 964
		port->promiscuous = 1;
	} else {
965
		struct netdev_hw_addr *ha;
L
Linus Torvalds 已提交
966

967 968
		port->promiscuous = 0;

L
Linus Torvalds 已提交
969 970 971
		/* Update table */
		port->num_mcast = 0;

972 973
		netdev_for_each_mc_addr(ha, dev) {
			u8 *addr = ha->addr;
L
Linus Torvalds 已提交
974 975 976 977 978 979 980 981 982 983 984 985 986 987 988
			u64 xaddr = 0;

			if (addr[0] & 0x01) {/* multicast address? */
				memcpy(&xaddr, addr, ETH_ALEN);
				port->mcast_addr[port->num_mcast] = xaddr;
				port->num_mcast++;
			}
		}
	}

	write_unlock_irqrestore(&port->mcast_gate, flags);
}

static void veth_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
{
989
	strncpy(info->driver, DRV_NAME, sizeof(info->driver) - 1);
L
Linus Torvalds 已提交
990
	info->driver[sizeof(info->driver) - 1] = '\0';
991 992
	strncpy(info->version, DRV_VERSION, sizeof(info->version) - 1);
	info->version[sizeof(info->version) - 1] = '\0';
L
Linus Torvalds 已提交
993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016
}

static int veth_get_settings(struct net_device *dev, struct ethtool_cmd *ecmd)
{
	ecmd->supported = (SUPPORTED_1000baseT_Full
			  | SUPPORTED_Autoneg | SUPPORTED_FIBRE);
	ecmd->advertising = (SUPPORTED_1000baseT_Full
			    | SUPPORTED_Autoneg | SUPPORTED_FIBRE);
	ecmd->port = PORT_FIBRE;
	ecmd->transceiver = XCVR_INTERNAL;
	ecmd->phy_address = 0;
	ecmd->speed = SPEED_1000;
	ecmd->duplex = DUPLEX_FULL;
	ecmd->autoneg = AUTONEG_ENABLE;
	ecmd->maxtxpkt = 120;
	ecmd->maxrxpkt = 120;
	return 0;
}

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

1017
static const struct ethtool_ops ops = {
L
Linus Torvalds 已提交
1018 1019 1020 1021 1022
	.get_drvinfo = veth_get_drvinfo,
	.get_settings = veth_get_settings,
	.get_link = veth_get_link,
};

1023 1024 1025 1026 1027 1028 1029 1030 1031 1032
static const struct net_device_ops veth_netdev_ops = {
	.ndo_open		= veth_open,
	.ndo_stop		= veth_close,
	.ndo_start_xmit		= veth_start_xmit,
	.ndo_change_mtu		= veth_change_mtu,
	.ndo_set_multicast_list	= veth_set_multicast_list,
	.ndo_set_mac_address	= NULL,
	.ndo_validate_addr	= eth_validate_addr,
};

1033
static struct net_device *veth_probe_one(int vlan,
1034
		struct vio_dev *vio_dev)
L
Linus Torvalds 已提交
1035 1036 1037
{
	struct net_device *dev;
	struct veth_port *port;
1038
	struct device *vdev = &vio_dev->dev;
L
Linus Torvalds 已提交
1039
	int i, rc;
1040 1041 1042 1043 1044 1045 1046 1047 1048
	const unsigned char *mac_addr;

	mac_addr = vio_get_attribute(vio_dev, "local-mac-address", NULL);
	if (mac_addr == NULL)
		mac_addr = vio_get_attribute(vio_dev, "mac-address", NULL);
	if (mac_addr == NULL) {
		veth_error("Unable to fetch MAC address from device tree.\n");
		return NULL;
	}
L
Linus Torvalds 已提交
1049 1050 1051 1052 1053 1054 1055

	dev = alloc_etherdev(sizeof (struct veth_port));
	if (! dev) {
		veth_error("Unable to allocate net_device structure!\n");
		return NULL;
	}

1056
	port = netdev_priv(dev);
L
Linus Torvalds 已提交
1057

1058
	spin_lock_init(&port->queue_lock);
L
Linus Torvalds 已提交
1059
	rwlock_init(&port->mcast_gate);
1060
	port->stopped_map = 0;
L
Linus Torvalds 已提交
1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072

	for (i = 0; i < HVMAXARCHITECTEDLPS; i++) {
		HvLpVirtualLanIndexMap map;

		if (i == this_lp)
			continue;
		map = HvLpConfig_getVirtualLanIndexMapForLp(i);
		if (map & (0x8000 >> vlan))
			port->lpar_map |= (1 << i);
	}
	port->dev = vdev;

1073
	memcpy(dev->dev_addr, mac_addr, ETH_ALEN);
L
Linus Torvalds 已提交
1074 1075 1076

	dev->mtu = VETH_MAX_MTU;

1077
	memcpy(&port->mac_addr, mac_addr, ETH_ALEN);
L
Linus Torvalds 已提交
1078

1079
	dev->netdev_ops = &veth_netdev_ops;
L
Linus Torvalds 已提交
1080 1081 1082 1083 1084 1085
	SET_ETHTOOL_OPS(dev, &ops);

	SET_NETDEV_DEV(dev, vdev);

	rc = register_netdev(dev);
	if (rc != 0) {
1086
		veth_error("Failed registering net device for vlan%d.\n", vlan);
L
Linus Torvalds 已提交
1087 1088 1089 1090
		free_netdev(dev);
		return NULL;
	}

1091
	kobject_init(&port->kobject, &veth_port_ktype);
1092
	if (0 != kobject_add(&port->kobject, &dev->dev.kobj, "veth_port"))
1093 1094
		veth_error("Failed adding port for %s to sysfs.\n", dev->name);

1095 1096
	veth_info("%s attached to iSeries vlan %d (LPAR map = 0x%.4X)\n",
			dev->name, vlan, port->lpar_map);
L
Linus Torvalds 已提交
1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108

	return dev;
}

/*
 * Tx path
 */

static int veth_transmit_to_one(struct sk_buff *skb, HvLpIndex rlp,
				struct net_device *dev)
{
	struct veth_lpar_connection *cnx = veth_cnx[rlp];
1109
	struct veth_port *port = netdev_priv(dev);
L
Linus Torvalds 已提交
1110 1111 1112 1113
	HvLpEvent_Rc rc;
	struct veth_msg *msg = NULL;
	unsigned long flags;

1114
	if (! cnx)
L
Linus Torvalds 已提交
1115 1116 1117 1118
		return 0;

	spin_lock_irqsave(&cnx->lock, flags);

1119
	if (! (cnx->state & VETH_STATE_READY))
1120
		goto no_error;
L
Linus Torvalds 已提交
1121

1122
	if ((skb->len - ETH_HLEN) > VETH_MAX_MTU)
L
Linus Torvalds 已提交
1123 1124 1125
		goto drop;

	msg = veth_stack_pop(cnx);
1126
	if (! msg)
L
Linus Torvalds 已提交
1127 1128
		goto drop;

1129
	msg->in_use = 1;
1130
	msg->skb = skb_get(skb);
1131

1132 1133
	msg->data.addr[0] = dma_map_single(port->dev, skb->data,
				skb->len, DMA_TO_DEVICE);
L
Linus Torvalds 已提交
1134

1135
	if (dma_mapping_error(port->dev, msg->data.addr[0]))
L
Linus Torvalds 已提交
1136 1137 1138
		goto recycle_and_drop;

	msg->dev = port->dev;
1139
	msg->data.len[0] = skb->len;
L
Linus Torvalds 已提交
1140
	msg->data.eofmask = 1 << VETH_EOF_SHIFT;
1141

1142
	rc = veth_signaldata(cnx, VETH_EVENT_FRAMES, msg->token, &msg->data);
L
Linus Torvalds 已提交
1143 1144 1145 1146

	if (rc != HvLpEvent_Rc_Good)
		goto recycle_and_drop;

1147 1148 1149 1150 1151 1152 1153
	/* If the timer's not already running, start it now. */
	if (0 == cnx->outstanding_tx)
		mod_timer(&cnx->reset_timer, jiffies + cnx->reset_timeout);

	cnx->last_contact = jiffies;
	cnx->outstanding_tx++;

1154 1155 1156
	if (veth_stack_is_empty(cnx))
		veth_stop_queues(cnx);

1157
 no_error:
L
Linus Torvalds 已提交
1158 1159 1160 1161 1162 1163 1164
	spin_unlock_irqrestore(&cnx->lock, flags);
	return 0;

 recycle_and_drop:
	veth_recycle_msg(cnx, msg);
 drop:
	spin_unlock_irqrestore(&cnx->lock, flags);
1165
	return 1;
L
Linus Torvalds 已提交
1166 1167
}

1168
static void veth_transmit_to_many(struct sk_buff *skb,
L
Linus Torvalds 已提交
1169 1170 1171
					  HvLpIndexMap lpmask,
					  struct net_device *dev)
{
1172 1173 1174
	int i, success, error;

	success = error = 0;
L
Linus Torvalds 已提交
1175 1176 1177 1178 1179

	for (i = 0; i < HVMAXARCHITECTEDLPS; i++) {
		if ((lpmask & (1 << i)) == 0)
			continue;

1180 1181 1182 1183
		if (veth_transmit_to_one(skb, i, dev))
			error = 1;
		else
			success = 1;
L
Linus Torvalds 已提交
1184 1185
	}

1186
	if (error)
1187
		dev->stats.tx_errors++;
1188 1189

	if (success) {
1190 1191
		dev->stats.tx_packets++;
		dev->stats.tx_bytes += skb->len;
L
Linus Torvalds 已提交
1192 1193 1194 1195 1196 1197
	}
}

static int veth_start_xmit(struct sk_buff *skb, struct net_device *dev)
{
	unsigned char *frame = skb->data;
1198
	struct veth_port *port = netdev_priv(dev);
L
Linus Torvalds 已提交
1199 1200 1201 1202 1203 1204 1205 1206
	HvLpIndexMap lpmask;

	if (! (frame[0] & 0x01)) {
		/* unicast packet */
		HvLpIndex rlp = frame[5];

		if ( ! ((1 << rlp) & port->lpar_map) ) {
			dev_kfree_skb(skb);
1207
			return NETDEV_TX_OK;
L
Linus Torvalds 已提交
1208 1209 1210 1211 1212 1213 1214
		}

		lpmask = 1 << rlp;
	} else {
		lpmask = port->lpar_map;
	}

1215
	veth_transmit_to_many(skb, lpmask, dev);
L
Linus Torvalds 已提交
1216

1217
	dev_kfree_skb(skb);
L
Linus Torvalds 已提交
1218

1219
	return NETDEV_TX_OK;
L
Linus Torvalds 已提交
1220 1221
}

1222
/* You must hold the connection's lock when you call this function. */
L
Linus Torvalds 已提交
1223 1224 1225 1226 1227
static void veth_recycle_msg(struct veth_lpar_connection *cnx,
			     struct veth_msg *msg)
{
	u32 dma_address, dma_length;

1228 1229
	if (msg->in_use) {
		msg->in_use = 0;
L
Linus Torvalds 已提交
1230 1231 1232
		dma_address = msg->data.addr[0];
		dma_length = msg->data.len[0];

1233
		if (!dma_mapping_error(msg->dev, dma_address))
1234 1235
			dma_unmap_single(msg->dev, dma_address, dma_length,
					DMA_TO_DEVICE);
L
Linus Torvalds 已提交
1236 1237 1238 1239 1240 1241 1242 1243

		if (msg->skb) {
			dev_kfree_skb_any(msg->skb);
			msg->skb = NULL;
		}

		memset(&msg->data, 0, sizeof(msg->data));
		veth_stack_push(cnx, msg);
1244 1245 1246 1247
	} else if (cnx->state & VETH_STATE_OPEN) {
		veth_error("Non-pending frame (# %d) acked by LPAR %d.\n",
				cnx->remote_lp, msg->token);
	}
L
Linus Torvalds 已提交
1248 1249
}

1250
static void veth_wake_queues(struct veth_lpar_connection *cnx)
L
Linus Torvalds 已提交
1251 1252
{
	int i;
1253

L
Linus Torvalds 已提交
1254 1255 1256 1257 1258 1259 1260 1261
	for (i = 0; i < HVMAXARCHITECTEDVIRTUALLANS; i++) {
		struct net_device *dev = veth_dev[i];
		struct veth_port *port;
		unsigned long flags;

		if (! dev)
			continue;

1262
		port = netdev_priv(dev);
L
Linus Torvalds 已提交
1263 1264 1265 1266

		if (! (port->lpar_map & (1<<cnx->remote_lp)))
			continue;

1267 1268 1269 1270 1271 1272 1273 1274
		spin_lock_irqsave(&port->queue_lock, flags);

		port->stopped_map &= ~(1 << cnx->remote_lp);

		if (0 == port->stopped_map && netif_queue_stopped(dev)) {
			veth_debug("cnx %d: woke queue for %s.\n",
					cnx->remote_lp, dev->name);
			netif_wake_queue(dev);
L
Linus Torvalds 已提交
1275
		}
1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290
		spin_unlock_irqrestore(&port->queue_lock, flags);
	}
}

static void veth_stop_queues(struct veth_lpar_connection *cnx)
{
	int i;

	for (i = 0; i < HVMAXARCHITECTEDVIRTUALLANS; i++) {
		struct net_device *dev = veth_dev[i];
		struct veth_port *port;

		if (! dev)
			continue;

1291
		port = netdev_priv(dev);
1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305

		/* If this cnx is not on the vlan for this port, continue */
		if (! (port->lpar_map & (1 << cnx->remote_lp)))
			continue;

		spin_lock(&port->queue_lock);

		netif_stop_queue(dev);
		port->stopped_map |= (1 << cnx->remote_lp);

		veth_debug("cnx %d: stopped queue for %s, map = 0x%x.\n",
				cnx->remote_lp, dev->name, port->stopped_map);

		spin_unlock(&port->queue_lock);
L
Linus Torvalds 已提交
1306 1307 1308
	}
}

1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339
static void veth_timed_reset(unsigned long ptr)
{
	struct veth_lpar_connection *cnx = (struct veth_lpar_connection *)ptr;
	unsigned long trigger_time, flags;

	/* FIXME is it possible this fires after veth_stop_connection()?
	 * That would reschedule the statemachine for 5 seconds and probably
	 * execute it after the module's been unloaded. Hmm. */

	spin_lock_irqsave(&cnx->lock, flags);

	if (cnx->outstanding_tx > 0) {
		trigger_time = cnx->last_contact + cnx->reset_timeout;

		if (trigger_time < jiffies) {
			cnx->state |= VETH_STATE_RESET;
			veth_kick_statemachine(cnx);
			veth_error("%d packets not acked by LPAR %d within %d "
					"seconds, resetting.\n",
					cnx->outstanding_tx, cnx->remote_lp,
					cnx->reset_timeout / HZ);
		} else {
			/* Reschedule the timer */
			trigger_time = jiffies + cnx->reset_timeout;
			mod_timer(&cnx->reset_timer, trigger_time);
		}
	}

	spin_unlock_irqrestore(&cnx->lock, flags);
}

L
Linus Torvalds 已提交
1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354
/*
 * Rx path
 */

static inline int veth_frame_wanted(struct veth_port *port, u64 mac_addr)
{
	int wanted = 0;
	int i;
	unsigned long flags;

	if ( (mac_addr == port->mac_addr) || (mac_addr == 0xffffffffffff0000) )
		return 1;

	read_lock_irqsave(&port->mcast_gate, flags);

1355
	if (port->promiscuous) {
L
Linus Torvalds 已提交
1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385
		wanted = 1;
		goto out;
	}

	for (i = 0; i < port->num_mcast; ++i) {
		if (port->mcast_addr[i] == mac_addr) {
			wanted = 1;
			break;
		}
	}

 out:
	read_unlock_irqrestore(&port->mcast_gate, flags);

	return wanted;
}

struct dma_chunk {
	u64 addr;
	u64 size;
};

#define VETH_MAX_PAGES_PER_FRAME ( (VETH_MAX_MTU+PAGE_SIZE-2)/PAGE_SIZE + 1 )

static inline void veth_build_dma_list(struct dma_chunk *list,
				       unsigned char *p, unsigned long length)
{
	unsigned long done;
	int i = 1;

1386
	/* FIXME: skbs are contiguous in real addresses.  Do we
L
Linus Torvalds 已提交
1387 1388 1389 1390
	 * really need to break it into PAGE_SIZE chunks, or can we do
	 * it just at the granularity of iSeries real->absolute
	 * mapping?  Indeed, given the way the allocator works, can we
	 * count on them being absolutely contiguous? */
1391
	list[0].addr = iseries_hv_addr(p);
L
Linus Torvalds 已提交
1392 1393 1394 1395 1396
	list[0].size = min(length,
			   PAGE_SIZE - ((unsigned long)p & ~PAGE_MASK));

	done = list[0].size;
	while (done < length) {
1397
		list[i].addr = iseries_hv_addr(p + done);
L
Linus Torvalds 已提交
1398 1399 1400 1401 1402 1403 1404 1405 1406 1407
		list[i].size = min(length-done, PAGE_SIZE);
		done += list[i].size;
		i++;
	}
}

static void veth_flush_acks(struct veth_lpar_connection *cnx)
{
	HvLpEvent_Rc rc;

1408
	rc = veth_signaldata(cnx, VETH_EVENT_FRAMES_ACK,
L
Linus Torvalds 已提交
1409 1410 1411
			     0, &cnx->pending_acks);

	if (rc != HvLpEvent_Rc_Good)
1412 1413
		veth_error("Failed acking frames from LPAR %d, rc = %d\n",
				cnx->remote_lp, (int)rc);
L
Linus Torvalds 已提交
1414 1415 1416 1417 1418 1419

	cnx->num_pending_acks = 0;
	memset(&cnx->pending_acks, 0xff, sizeof(cnx->pending_acks));
}

static void veth_receive(struct veth_lpar_connection *cnx,
1420
			 struct veth_lpevent *event)
L
Linus Torvalds 已提交
1421
{
1422
	struct veth_frames_data *senddata = &event->u.frames_data;
L
Linus Torvalds 已提交
1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448
	int startchunk = 0;
	int nchunks;
	unsigned long flags;
	HvLpDma_Rc rc;

	do {
		u16 length = 0;
		struct sk_buff *skb;
		struct dma_chunk local_list[VETH_MAX_PAGES_PER_FRAME];
		struct dma_chunk remote_list[VETH_MAX_FRAMES_PER_MSG];
		u64 dest;
		HvLpVirtualLanIndex vlan;
		struct net_device *dev;
		struct veth_port *port;

		/* FIXME: do we need this? */
		memset(local_list, 0, sizeof(local_list));
		memset(remote_list, 0, sizeof(VETH_MAX_FRAMES_PER_MSG));

		/* a 0 address marks the end of the valid entries */
		if (senddata->addr[startchunk] == 0)
			break;

		/* make sure that we have at least 1 EOF entry in the
		 * remaining entries */
		if (! (senddata->eofmask >> (startchunk + VETH_EOF_SHIFT))) {
1449 1450 1451 1452
			veth_error("Missing EOF fragment in event "
					"eofmask = 0x%x startchunk = %d\n",
					(unsigned)senddata->eofmask,
					startchunk);
L
Linus Torvalds 已提交
1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470
			break;
		}

		/* build list of chunks in this frame */
		nchunks = 0;
		do {
			remote_list[nchunks].addr =
				(u64) senddata->addr[startchunk+nchunks] << 32;
			remote_list[nchunks].size =
				senddata->len[startchunk+nchunks];
			length += remote_list[nchunks].size;
		} while (! (senddata->eofmask &
			    (1 << (VETH_EOF_SHIFT + startchunk + nchunks++))));

		/* length == total length of all chunks */
		/* nchunks == # of chunks in this frame */

		if ((length - ETH_HLEN) > VETH_MAX_MTU) {
1471 1472 1473
			veth_error("Received oversize frame from LPAR %d "
					"(length = %d)\n",
					cnx->remote_lp, length);
L
Linus Torvalds 已提交
1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489
			continue;
		}

		skb = alloc_skb(length, GFP_ATOMIC);
		if (!skb)
			continue;

		veth_build_dma_list(local_list, skb->data, length);

		rc = HvCallEvent_dmaBufList(HvLpEvent_Type_VirtualLan,
					    event->base_event.xSourceLp,
					    HvLpDma_Direction_RemoteToLocal,
					    cnx->src_inst,
					    cnx->dst_inst,
					    HvLpDma_AddressType_RealAddress,
					    HvLpDma_AddressType_TceIndex,
1490 1491
					    iseries_hv_addr(&local_list),
					    iseries_hv_addr(&remote_list),
L
Linus Torvalds 已提交
1492 1493 1494 1495 1496 1497 1498 1499
					    length);
		if (rc != HvLpDma_Rc_Good) {
			dev_kfree_skb_irq(skb);
			continue;
		}

		vlan = skb->data[9];
		dev = veth_dev[vlan];
1500 1501 1502 1503 1504 1505 1506 1507 1508 1509
		if (! dev) {
			/*
			 * Some earlier versions of the driver sent
			 * broadcasts down all connections, even to lpars
			 * that weren't on the relevant vlan. So ignore
			 * packets belonging to a vlan we're not on.
			 * We can also be here if we receive packets while
			 * the driver is going down, because then dev is NULL.
			 */
			dev_kfree_skb_irq(skb);
L
Linus Torvalds 已提交
1510
			continue;
1511
		}
L
Linus Torvalds 已提交
1512

1513
		port = netdev_priv(dev);
L
Linus Torvalds 已提交
1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526
		dest = *((u64 *) skb->data) & 0xFFFFFFFFFFFF0000;

		if ((vlan > HVMAXARCHITECTEDVIRTUALLANS) || !port) {
			dev_kfree_skb_irq(skb);
			continue;
		}
		if (! veth_frame_wanted(port, dest)) {
			dev_kfree_skb_irq(skb);
			continue;
		}

		skb_put(skb, length);
		skb->protocol = eth_type_trans(skb, dev);
1527
		skb_checksum_none_assert(skb);
L
Linus Torvalds 已提交
1528
		netif_rx(skb);	/* send it up */
1529 1530
		dev->stats.rx_packets++;
		dev->stats.rx_bytes += length;
L
Linus Torvalds 已提交
1531 1532 1533 1534 1535 1536 1537 1538 1539
	} while (startchunk += nchunks, startchunk < VETH_MAX_FRAMES_PER_MSG);

	/* Ack it */
	spin_lock_irqsave(&cnx->lock, flags);
	BUG_ON(cnx->num_pending_acks > VETH_MAX_ACKS_PER_MSG);

	cnx->pending_acks[cnx->num_pending_acks++] =
		event->base_event.xCorrelationToken;

1540 1541
	if ( (cnx->num_pending_acks >= cnx->remote_caps.ack_threshold) ||
	     (cnx->num_pending_acks >= VETH_MAX_ACKS_PER_MSG) )
L
Linus Torvalds 已提交
1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564
		veth_flush_acks(cnx);

	spin_unlock_irqrestore(&cnx->lock, flags);
}

static void veth_timed_ack(unsigned long ptr)
{
	struct veth_lpar_connection *cnx = (struct veth_lpar_connection *) ptr;
	unsigned long flags;

	/* Ack all the events */
	spin_lock_irqsave(&cnx->lock, flags);
	if (cnx->num_pending_acks > 0)
		veth_flush_acks(cnx);

	/* Reschedule the timer */
	cnx->ack_timer.expires = jiffies + cnx->ack_timeout;
	add_timer(&cnx->ack_timer);
	spin_unlock_irqrestore(&cnx->lock, flags);
}

static int veth_remove(struct vio_dev *vdev)
{
1565
	struct veth_lpar_connection *cnx;
L
Linus Torvalds 已提交
1566
	struct net_device *dev;
1567 1568
	struct veth_port *port;
	int i;
L
Linus Torvalds 已提交
1569

1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583
	dev = veth_dev[vdev->unit_address];

	if (! dev)
		return 0;

	port = netdev_priv(dev);

	for (i = 0; i < HVMAXARCHITECTEDLPS; i++) {
		cnx = veth_cnx[i];

		if (cnx && (port->lpar_map & (1 << i))) {
			/* Drop our reference to connections on our VLAN */
			kobject_put(&cnx->kobject);
		}
L
Linus Torvalds 已提交
1584
	}
1585 1586

	veth_dev[vdev->unit_address] = NULL;
1587 1588
	kobject_del(&port->kobject);
	kobject_put(&port->kobject);
1589 1590 1591
	unregister_netdev(dev);
	free_netdev(dev);

L
Linus Torvalds 已提交
1592 1593 1594 1595 1596 1597 1598
	return 0;
}

static int veth_probe(struct vio_dev *vdev, const struct vio_device_id *id)
{
	int i = vdev->unit_address;
	struct net_device *dev;
1599
	struct veth_port *port;
L
Linus Torvalds 已提交
1600

1601
	dev = veth_probe_one(i, vdev);
L
Linus Torvalds 已提交
1602 1603 1604 1605 1606 1607
	if (dev == NULL) {
		veth_remove(vdev);
		return 1;
	}
	veth_dev[i] = dev;

1608
	port = netdev_priv(dev);
1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624

	/* Start the state machine on each connection on this vlan. If we're
	 * the first dev to do so this will commence link negotiation */
	for (i = 0; i < HVMAXARCHITECTEDLPS; i++) {
		struct veth_lpar_connection *cnx;

		if (! (port->lpar_map & (1 << i)))
			continue;

		cnx = veth_cnx[i];
		if (!cnx)
			continue;

		kobject_get(&cnx->kobject);
		veth_kick_statemachine(cnx);
	}
L
Linus Torvalds 已提交
1625 1626 1627 1628 1629 1630 1631 1632 1633

	return 0;
}

/**
 * veth_device_table: Used by vio.c to match devices that we
 * support.
 */
static struct vio_device_id veth_device_table[] __devinitdata = {
1634
	{ "network", "IBM,iSeries-l-lan" },
1635
	{ "", "" }
L
Linus Torvalds 已提交
1636 1637 1638 1639 1640 1641
};
MODULE_DEVICE_TABLE(vio, veth_device_table);

static struct vio_driver veth_driver = {
	.id_table = veth_device_table,
	.probe = veth_probe,
1642 1643 1644
	.remove = veth_remove,
	.driver = {
		.name = DRV_NAME,
1645
		.owner = THIS_MODULE,
1646
	}
L
Linus Torvalds 已提交
1647 1648 1649 1650 1651 1652
};

/*
 * Module initialization/cleanup
 */

1653
static void __exit veth_module_cleanup(void)
L
Linus Torvalds 已提交
1654 1655
{
	int i;
1656
	struct veth_lpar_connection *cnx;
L
Linus Torvalds 已提交
1657

1658
	/* Disconnect our "irq" to stop events coming from the Hypervisor. */
L
Linus Torvalds 已提交
1659 1660
	HvLpEvent_unregisterHandler(HvLpEvent_Type_VirtualLan);

1661
	/* Make sure any work queued from Hypervisor callbacks is finished. */
L
Linus Torvalds 已提交
1662 1663
	flush_scheduled_work();

1664 1665 1666 1667 1668
	for (i = 0; i < HVMAXARCHITECTEDLPS; ++i) {
		cnx = veth_cnx[i];

		if (!cnx)
			continue;
1669

1670 1671
		/* Remove the connection from sysfs */
		kobject_del(&cnx->kobject);
1672 1673 1674
		/* Drop the driver's reference to the connection */
		kobject_put(&cnx->kobject);
	}
L
Linus Torvalds 已提交
1675

1676 1677 1678
	/* Unregister the driver, which will close all the netdevs and stop
	 * the connections when they're no longer referenced. */
	vio_unregister_driver(&veth_driver);
L
Linus Torvalds 已提交
1679 1680 1681
}
module_exit(veth_module_cleanup);

1682
static int __init veth_module_init(void)
L
Linus Torvalds 已提交
1683 1684 1685 1686
{
	int i;
	int rc;

1687 1688 1689
	if (!firmware_has_feature(FW_FEATURE_ISERIES))
		return -ENODEV;

L
Linus Torvalds 已提交
1690 1691 1692 1693
	this_lp = HvLpConfig_getLpIndex_outline();

	for (i = 0; i < HVMAXARCHITECTEDLPS; ++i) {
		rc = veth_init_connection(i);
1694 1695
		if (rc != 0)
			goto error;
L
Linus Torvalds 已提交
1696 1697 1698 1699 1700
	}

	HvLpEvent_registerHandler(HvLpEvent_Type_VirtualLan,
				  &veth_handle_event);

1701 1702 1703 1704
	rc = vio_register_driver(&veth_driver);
	if (rc != 0)
		goto error;

1705 1706 1707 1708 1709 1710 1711 1712
	for (i = 0; i < HVMAXARCHITECTEDLPS; ++i) {
		struct kobject *kobj;

		if (!veth_cnx[i])
			continue;

		kobj = &veth_cnx[i]->kobject;
		/* If the add failes, complain but otherwise continue */
1713
		if (0 != driver_add_kobj(&veth_driver.driver, kobj,
1714
					"cnx%.2d", veth_cnx[i]->remote_lp))
1715 1716 1717
			veth_error("cnx %d: Failed adding to sysfs.\n", i);
	}

1718 1719 1720 1721
	return 0;

error:
	for (i = 0; i < HVMAXARCHITECTEDLPS; ++i) {
1722
		veth_destroy_connection(veth_cnx[i]);
1723 1724 1725
	}

	return rc;
L
Linus Torvalds 已提交
1726 1727
}
module_init(veth_module_init);