network.c 14.5 KB
Newer Older
1 2
/*
 *
3
 * arch/xtensa/platforms/iss/network.c
4 5 6 7 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
 *
 * Platform specific initialization.
 *
 * Authors: Chris Zankel <chris@zankel.net>
 * Based on work form the UML team.
 *
 * Copyright 2005 Tensilica Inc.
 *
 * 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.
 *
 */

#include <linux/list.h>
#include <linux/irq.h>
#include <linux/spinlock.h>
#include <linux/slab.h>
#include <linux/timer.h>
#include <linux/if_ether.h>
#include <linux/inetdevice.h>
#include <linux/init.h>
#include <linux/if_tun.h>
#include <linux/etherdevice.h>
#include <linux/interrupt.h>
#include <linux/ioctl.h>
#include <linux/bootmem.h>
#include <linux/ethtool.h>
#include <linux/rtnetlink.h>
34
#include <linux/platform_device.h>
35

36
#include <platform/simcall.h>
37 38 39 40

#define DRIVER_NAME "iss-netdev"
#define ETH_MAX_PACKET 1500
#define ETH_HEADER_OTHER 14
41
#define ISS_NET_TIMER_VALUE (HZ / 10)
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 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107


static DEFINE_SPINLOCK(opened_lock);
static LIST_HEAD(opened);

static DEFINE_SPINLOCK(devices_lock);
static LIST_HEAD(devices);

/* ------------------------------------------------------------------------- */

/* We currently only support the TUNTAP transport protocol. */

#define TRANSPORT_TUNTAP_NAME "tuntap"
#define TRANSPORT_TUNTAP_MTU ETH_MAX_PACKET

struct tuntap_info {
	char dev_name[IFNAMSIZ];
	int fd;
};

/* ------------------------------------------------------------------------- */


/* This structure contains out private information for the driver. */

struct iss_net_private {
	struct list_head device_list;
	struct list_head opened_list;

	spinlock_t lock;
	struct net_device *dev;
	struct platform_device pdev;
	struct timer_list tl;
	struct net_device_stats stats;

	struct timer_list timer;
	unsigned int timer_val;

	int index;
	int mtu;

	struct {
		union {
			struct tuntap_info tuntap;
		} info;

		int (*open)(struct iss_net_private *lp);
		void (*close)(struct iss_net_private *lp);
		int (*read)(struct iss_net_private *lp, struct sk_buff **skb);
		int (*write)(struct iss_net_private *lp, struct sk_buff **skb);
		unsigned short (*protocol)(struct sk_buff *skb);
		int (*poll)(struct iss_net_private *lp);
	} tp;

};

/* ================================ HELPERS ================================ */


static char *split_if_spec(char *str, ...)
{
	char **arg, *end;
	va_list ap;

	va_start(ap, str);
	while ((arg = va_arg(ap, char**)) != NULL) {
108 109
		if (*str == '\0') {
			va_end(ap);
110
			return NULL;
111
		}
112 113 114
		end = strchr(str, ',');
		if (end != str)
			*arg = str;
115 116
		if (end == NULL) {
			va_end(ap);
117
			return NULL;
118
		}
119
		*end++ = '\0';
120 121 122 123 124 125
		str = end;
	}
	va_end(ap);
	return str;
}

126
/* Set Ethernet address of the specified device. */
127

128
static void setup_etheraddr(struct net_device *dev, char *str)
129
{
130
	unsigned char *addr = dev->dev_addr;
131

132 133
	if (str == NULL)
		goto random;
134

135 136 137 138
	if (!mac_pton(str, addr)) {
		pr_err("%s: failed to parse '%s' as an ethernet address\n",
		       dev->name, str);
		goto random;
139
	}
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
	if (is_multicast_ether_addr(addr)) {
		pr_err("%s: attempt to assign a multicast ethernet address\n",
		       dev->name);
		goto random;
	}
	if (!is_valid_ether_addr(addr)) {
		pr_err("%s: attempt to assign an invalid ethernet address\n",
		       dev->name);
		goto random;
	}
	if (!is_local_ether_addr(addr))
		pr_warn("%s: assigning a globally valid ethernet address\n",
			dev->name);
	return;

random:
	pr_info("%s: choosing a random ethernet address\n",
		dev->name);
	eth_hw_addr_random(dev);
159 160 161 162 163 164 165 166 167 168 169
}

/* ======================= TUNTAP TRANSPORT INTERFACE ====================== */

static int tuntap_open(struct iss_net_private *lp)
{
	struct ifreq ifr;
	char *dev_name = lp->tp.info.tuntap.dev_name;
	int err = -EINVAL;
	int fd;

170 171
	fd = simc_open("/dev/net/tun", 02, 0); /* O_RDWR */
	if (fd < 0) {
172 173
		pr_err("%s: failed to open /dev/net/tun, returned %d (errno = %d)\n",
		       lp->dev->name, fd, errno);
174 175 176
		return fd;
	}

177
	memset(&ifr, 0, sizeof(ifr));
178
	ifr.ifr_flags = IFF_TAP | IFF_NO_PI;
179
	strlcpy(ifr.ifr_name, dev_name, sizeof(ifr.ifr_name));
180

181 182
	err = simc_ioctl(fd, TUNSETIFF, &ifr);
	if (err < 0) {
183 184
		pr_err("%s: failed to set interface %s, returned %d (errno = %d)\n",
		       lp->dev->name, dev_name, err, errno);
185 186 187 188 189 190 191 192 193 194 195 196 197 198
		simc_close(fd);
		return err;
	}

	lp->tp.info.tuntap.fd = fd;
	return err;
}

static void tuntap_close(struct iss_net_private *lp)
{
	simc_close(lp->tp.info.tuntap.fd);
	lp->tp.info.tuntap.fd = -1;
}

199
static int tuntap_read(struct iss_net_private *lp, struct sk_buff **skb)
200 201 202 203 204
{
	return simc_read(lp->tp.info.tuntap.fd,
			(*skb)->data, (*skb)->dev->mtu + ETH_HEADER_OTHER);
}

205
static int tuntap_write(struct iss_net_private *lp, struct sk_buff **skb)
206 207 208 209 210 211 212 213 214 215 216 217 218 219 220
{
	return simc_write(lp->tp.info.tuntap.fd, (*skb)->data, (*skb)->len);
}

unsigned short tuntap_protocol(struct sk_buff *skb)
{
	return eth_type_trans(skb, skb->dev);
}

static int tuntap_poll(struct iss_net_private *lp)
{
	return simc_poll(lp->tp.info.tuntap.fd);
}

/*
221
 * ethX=tuntap,[mac address],device name
222 223 224 225
 */

static int tuntap_probe(struct iss_net_private *lp, int index, char *init)
{
226
	struct net_device *dev = lp->dev;
227 228 229 230
	char *dev_name = NULL, *mac_str = NULL, *rem = NULL;

	/* Transport should be 'tuntap': ethX=tuntap,mac,dev_name */

231 232
	if (strncmp(init, TRANSPORT_TUNTAP_NAME,
		    sizeof(TRANSPORT_TUNTAP_NAME) - 1))
233 234
		return 0;

235 236 237 238
	init += sizeof(TRANSPORT_TUNTAP_NAME) - 1;
	if (*init == ',') {
		rem = split_if_spec(init + 1, &mac_str, &dev_name);
		if (rem != NULL) {
239 240
			pr_err("%s: extra garbage on specification : '%s'\n",
			       dev->name, rem);
241 242 243
			return 0;
		}
	} else if (*init != '\0') {
244 245
		pr_err("%s: invalid argument: %s. Skipping device!\n",
		       dev->name, init);
246 247 248
		return 0;
	}

249 250 251 252 253 254 255
	if (!dev_name) {
		pr_err("%s: missing tuntap device name\n", dev->name);
		return 0;
	}

	strlcpy(lp->tp.info.tuntap.dev_name, dev_name,
		sizeof(lp->tp.info.tuntap.dev_name));
256

257
	setup_etheraddr(dev, mac_str);
258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276

	lp->mtu = TRANSPORT_TUNTAP_MTU;

	lp->tp.info.tuntap.fd = -1;

	lp->tp.open = tuntap_open;
	lp->tp.close = tuntap_close;
	lp->tp.read = tuntap_read;
	lp->tp.write = tuntap_write;
	lp->tp.protocol = tuntap_protocol;
	lp->tp.poll = tuntap_poll;

	return 1;
}

/* ================================ ISS NET ================================ */

static int iss_net_rx(struct net_device *dev)
{
277
	struct iss_net_private *lp = netdev_priv(dev);
278 279 280 281 282 283 284 285 286 287
	int pkt_len;
	struct sk_buff *skb;

	/* Check if there is any new data. */

	if (lp->tp.poll(lp) == 0)
		return 0;

	/* Try to allocate memory, if it fails, try again next round. */

288 289
	skb = dev_alloc_skb(dev->mtu + 2 + ETH_HEADER_OTHER);
	if (skb == NULL) {
290 291 292 293 294 295 296 297 298
		lp->stats.rx_dropped++;
		return 0;
	}

	skb_reserve(skb, 2);

	/* Setup skb */

	skb->dev = dev;
299
	skb_reset_mac_header(skb);
300 301 302 303 304 305 306 307 308
	pkt_len = lp->tp.read(lp, &skb);
	skb_put(skb, pkt_len);

	if (pkt_len > 0) {
		skb_trim(skb, pkt_len);
		skb->protocol = lp->tp.protocol(skb);

		lp->stats.rx_bytes += skb->len;
		lp->stats.rx_packets++;
309
		netif_rx_ni(skb);
310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338
		return pkt_len;
	}
	kfree_skb(skb);
	return pkt_len;
}

static int iss_net_poll(void)
{
	struct list_head *ele;
	int err, ret = 0;

	spin_lock(&opened_lock);

	list_for_each(ele, &opened) {
		struct iss_net_private *lp;

		lp = list_entry(ele, struct iss_net_private, opened_list);

		if (!netif_running(lp->dev))
			break;

		spin_lock(&lp->lock);

		while ((err = iss_net_rx(lp->dev)) > 0)
			ret++;

		spin_unlock(&lp->lock);

		if (err < 0) {
339 340
			pr_err("Device '%s' read returned %d, shutting it down\n",
			       lp->dev->name, err);
341 342
			dev_close(lp->dev);
		} else {
343
			/* FIXME reactivate_fd(lp->fd, ISS_ETH_IRQ); */
344 345 346 347 348 349 350 351 352 353
		}
	}

	spin_unlock(&opened_lock);
	return ret;
}


static void iss_net_timer(unsigned long priv)
{
354
	struct iss_net_private *lp = (struct iss_net_private *)priv;
355 356

	iss_net_poll();
357
	spin_lock(&lp->lock);
358 359 360 361 362 363 364
	mod_timer(&lp->timer, jiffies + lp->timer_val);
	spin_unlock(&lp->lock);
}


static int iss_net_open(struct net_device *dev)
{
365
	struct iss_net_private *lp = netdev_priv(dev);
366 367
	int err;

368
	spin_lock_bh(&lp->lock);
369

370 371
	err = lp->tp.open(lp);
	if (err < 0)
372 373 374 375 376
		goto out;

	netif_start_queue(dev);

	/* clear buffer - it can happen that the host side of the interface
377
	 * is full when we get here. In this case, new data is never queued,
378 379 380 381 382
	 * SIGIOs never arrive, and the net never works.
	 */
	while ((err = iss_net_rx(dev)) > 0)
		;

383 384
	spin_unlock_bh(&lp->lock);
	spin_lock_bh(&opened_lock);
385
	list_add(&lp->opened_list, &opened);
386 387
	spin_unlock_bh(&opened_lock);
	spin_lock_bh(&lp->lock);
388 389 390 391 392 393 394 395

	init_timer(&lp->timer);
	lp->timer_val = ISS_NET_TIMER_VALUE;
	lp->timer.data = (unsigned long) lp;
	lp->timer.function = iss_net_timer;
	mod_timer(&lp->timer, jiffies + lp->timer_val);

out:
396
	spin_unlock_bh(&lp->lock);
397 398 399 400 401
	return err;
}

static int iss_net_close(struct net_device *dev)
{
402
	struct iss_net_private *lp = netdev_priv(dev);
403
	netif_stop_queue(dev);
404
	spin_lock_bh(&lp->lock);
405 406 407 408 409 410 411 412 413

	spin_lock(&opened_lock);
	list_del(&opened);
	spin_unlock(&opened_lock);

	del_timer_sync(&lp->timer);

	lp->tp.close(lp);

414
	spin_unlock_bh(&lp->lock);
415 416 417 418 419
	return 0;
}

static int iss_net_start_xmit(struct sk_buff *skb, struct net_device *dev)
{
420
	struct iss_net_private *lp = netdev_priv(dev);
421 422 423
	int len;

	netif_stop_queue(dev);
424
	spin_lock_bh(&lp->lock);
425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442

	len = lp->tp.write(lp, &skb);

	if (len == skb->len) {
		lp->stats.tx_packets++;
		lp->stats.tx_bytes += skb->len;
		dev->trans_start = jiffies;
		netif_start_queue(dev);

		/* this is normally done in the interrupt when tx finishes */
		netif_wake_queue(dev);

	} else if (len == 0) {
		netif_start_queue(dev);
		lp->stats.tx_dropped++;

	} else {
		netif_start_queue(dev);
443
		pr_err("%s: %s failed(%d)\n", dev->name, __func__, len);
444 445
	}

446
	spin_unlock_bh(&lp->lock);
447 448

	dev_kfree_skb(skb);
449
	return NETDEV_TX_OK;
450 451 452 453 454
}


static struct net_device_stats *iss_net_get_stats(struct net_device *dev)
{
455
	struct iss_net_private *lp = netdev_priv(dev);
456 457 458 459 460 461 462 463 464 465 466 467 468
	return &lp->stats;
}

static void iss_net_set_multicast_list(struct net_device *dev)
{
}

static void iss_net_tx_timeout(struct net_device *dev)
{
}

static int iss_net_set_mac(struct net_device *dev, void *addr)
{
469
	struct iss_net_private *lp = netdev_priv(dev);
470 471
	struct sockaddr *hwaddr = addr;

472 473
	if (!is_valid_ether_addr(hwaddr->sa_data))
		return -EADDRNOTAVAIL;
474
	spin_lock_bh(&lp->lock);
475
	memcpy(dev->dev_addr, hwaddr->sa_data, ETH_ALEN);
476
	spin_unlock_bh(&lp->lock);
477 478 479 480 481 482 483 484 485 486 487 488 489
	return 0;
}

static int iss_net_change_mtu(struct net_device *dev, int new_mtu)
{
	return -EINVAL;
}

void iss_net_user_timer_expire(unsigned long _conn)
{
}


490 491 492 493
static struct platform_driver iss_net_driver = {
	.driver = {
		.name  = DRIVER_NAME,
	},
494 495 496 497
};

static int driver_registered;

498 499 500 501 502 503 504 505 506
static const struct net_device_ops iss_netdev_ops = {
	.ndo_open		= iss_net_open,
	.ndo_stop		= iss_net_close,
	.ndo_get_stats		= iss_net_get_stats,
	.ndo_start_xmit		= iss_net_start_xmit,
	.ndo_validate_addr	= eth_validate_addr,
	.ndo_change_mtu		= iss_net_change_mtu,
	.ndo_set_mac_address	= iss_net_set_mac,
	.ndo_tx_timeout		= iss_net_tx_timeout,
507
	.ndo_set_rx_mode	= iss_net_set_multicast_list,
508 509
};

510 511 512 513 514 515
static int iss_net_configure(int index, char *init)
{
	struct net_device *dev;
	struct iss_net_private *lp;
	int err;

516 517 518
	dev = alloc_etherdev(sizeof(*lp));
	if (dev == NULL) {
		pr_err("eth_configure: failed to allocate device\n");
519 520 521 522 523
		return 1;
	}

	/* Initialize private element. */

524
	lp = netdev_priv(dev);
525
	*lp = (struct iss_net_private) {
526 527 528 529
		.device_list		= LIST_HEAD_INIT(lp->device_list),
		.opened_list		= LIST_HEAD_INIT(lp->opened_list),
		.dev			= dev,
		.index			= index,
530
	};
531

532
	spin_lock_init(&lp->lock);
533 534 535 536 537 538 539
	/*
	 * If this name ends up conflicting with an existing registered
	 * netdevice, that is OK, register_netdev{,ice}() will notice this
	 * and fail.
	 */
	snprintf(dev->name, sizeof(dev->name), "eth%d", index);

540 541 542 543 544 545
	/*
	 * Try all transport protocols.
	 * Note: more protocols can be added by adding '&& !X_init(lp, eth)'.
	 */

	if (!tuntap_probe(lp, index, init)) {
546 547
		pr_err("%s: invalid arguments. Skipping device!\n",
		       dev->name);
548 549 550
		goto errout;
	}

551
	pr_info("Netdevice %d (%pM)\n", index, dev->dev_addr);
552 553 554 555

	/* sysfs register */

	if (!driver_registered) {
556
		platform_driver_register(&iss_net_driver);
557 558 559 560 561 562 563 564 565 566
		driver_registered = 1;
	}

	spin_lock(&devices_lock);
	list_add(&lp->device_list, &devices);
	spin_unlock(&devices_lock);

	lp->pdev.id = index;
	lp->pdev.name = DRIVER_NAME;
	platform_device_register(&lp->pdev);
567
	SET_NETDEV_DEV(dev, &lp->pdev.dev);
568

569
	dev->netdev_ops = &iss_netdev_ops;
570 571 572 573 574 575 576 577 578
	dev->mtu = lp->mtu;
	dev->watchdog_timeo = (HZ >> 1);
	dev->irq = -1;

	rtnl_lock();
	err = register_netdevice(dev);
	rtnl_unlock();

	if (err) {
579
		pr_err("%s: error registering net device!\n", dev->name);
580 581 582 583 584 585 586 587 588 589 590
		/* XXX: should we call ->remove() here? */
		free_netdev(dev);
		return 1;
	}

	init_timer(&lp->tl);
	lp->tl.function = iss_net_user_timer_expire;

	return 0;

errout:
591
	/* FIXME: unregister; free, etc.. */
592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613
	return -EIO;
}

/* ------------------------------------------------------------------------- */

/* Filled in during early boot */

struct list_head eth_cmd_line = LIST_HEAD_INIT(eth_cmd_line);

struct iss_net_init {
	struct list_head list;
	char *init;		/* init string */
	int index;
};

/*
 * Parse the command line and look for 'ethX=...' fields, and register all
 * those fields. They will be later initialized in iss_net_init.
 */

#define ERR KERN_ERR "iss_net_setup: "

614
static int __init iss_net_setup(char *str)
615 616 617 618 619
{
	struct iss_net_private *device = NULL;
	struct iss_net_init *new;
	struct list_head *ele;
	char *end;
620 621
	int rc;
	unsigned n;
622

623 624 625
	end = strchr(str, '=');
	if (!end) {
		printk(ERR "Expected '=' after device number\n");
626 627
		return 1;
	}
628 629 630 631 632
	*end = 0;
	rc = kstrtouint(str, 0, &n);
	*end = '=';
	if (rc < 0) {
		printk(ERR "Failed to parse '%s'\n", str);
633 634
		return 1;
	}
635
	str = end;
636 637 638 639 640 641 642 643 644 645 646 647

	spin_lock(&devices_lock);

	list_for_each(ele, &devices) {
		device = list_entry(ele, struct iss_net_private, device_list);
		if (device->index == n)
			break;
	}

	spin_unlock(&devices_lock);

	if (device && device->index == n) {
648
		printk(ERR "Device %u already configured\n", n);
649 650 651
		return 1;
	}

T
Thomas Meyer 已提交
652 653
	new = alloc_bootmem(sizeof(*new));
	if (new == NULL) {
654
		printk(ERR "Alloc_bootmem failed\n");
655 656 657 658 659 660 661 662 663 664 665 666 667
		return 1;
	}

	INIT_LIST_HEAD(&new->list);
	new->index = n;
	new->init = str + 1;

	list_add_tail(&new->list, &eth_cmd_line);
	return 1;
}

#undef ERR

668
__setup("eth", iss_net_setup);
669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687

/*
 * Initialize all ISS Ethernet devices previously registered in iss_net_setup.
 */

static int iss_net_init(void)
{
	struct list_head *ele, *next;

	/* Walk through all Ethernet devices specified in the command line. */

	list_for_each_safe(ele, next, &eth_cmd_line) {
		struct iss_net_init *eth;
		eth = list_entry(ele, struct iss_net_init, list);
		iss_net_configure(eth->index, eth->init);
	}

	return 1;
}
688
device_initcall(iss_net_init);