rionet.c 15.7 KB
Newer Older
M
Matt Porter 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * rionet - Ethernet driver over RapidIO messaging services
 *
 * Copyright 2005 MontaVista Software, Inc.
 * Matt Porter <mporter@kernel.crashing.org>
 *
 * 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/module.h>
#include <linux/kernel.h>
#include <linux/dma-mapping.h>
#include <linux/delay.h>
#include <linux/rio.h>
#include <linux/rio_drv.h>
19
#include <linux/slab.h>
M
Matt Porter 已提交
20 21 22 23 24 25 26 27 28
#include <linux/rio_ids.h>

#include <linux/netdevice.h>
#include <linux/etherdevice.h>
#include <linux/skbuff.h>
#include <linux/crc32.h>
#include <linux/ethtool.h>

#define DRV_NAME        "rionet"
29
#define DRV_VERSION     "0.3"
M
Matt Porter 已提交
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
#define DRV_AUTHOR      "Matt Porter <mporter@kernel.crashing.org>"
#define DRV_DESC        "Ethernet over RapidIO"

MODULE_AUTHOR(DRV_AUTHOR);
MODULE_DESCRIPTION(DRV_DESC);
MODULE_LICENSE("GPL");

#define RIONET_DEFAULT_MSGLEVEL \
			(NETIF_MSG_DRV          | \
			 NETIF_MSG_LINK         | \
			 NETIF_MSG_RX_ERR       | \
			 NETIF_MSG_TX_ERR)

#define RIONET_DOORBELL_JOIN	0x1000
#define RIONET_DOORBELL_LEAVE	0x1001

#define RIONET_MAILBOX		0

#define RIONET_TX_RING_SIZE	CONFIG_RIONET_TX_SIZE
#define RIONET_RX_RING_SIZE	CONFIG_RIONET_RX_SIZE
50
#define RIONET_MAX_NETS		8
M
Matt Porter 已提交
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70

struct rionet_private {
	struct rio_mport *mport;
	struct sk_buff *rx_skb[RIONET_RX_RING_SIZE];
	struct sk_buff *tx_skb[RIONET_TX_RING_SIZE];
	int rx_slot;
	int tx_slot;
	int tx_cnt;
	int ack_slot;
	spinlock_t lock;
	spinlock_t tx_lock;
	u32 msg_enable;
};

struct rionet_peer {
	struct list_head node;
	struct rio_dev *rdev;
	struct resource *res;
};

71 72 73 74 75 76
struct rionet_net {
	struct net_device *ndev;
	struct list_head peers;
	struct rio_dev **active;
	int nact;	/* number of active peers */
};
M
Matt Porter 已提交
77

78
static struct rionet_net nets[RIONET_MAX_NETS];
M
Matt Porter 已提交
79

80 81 82
#define is_rionet_capable(src_ops, dst_ops)			\
			((src_ops & RIO_SRC_OPS_DATA_MSG) &&	\
			 (dst_ops & RIO_DST_OPS_DATA_MSG) &&	\
M
Matt Porter 已提交
83 84 85
			 (src_ops & RIO_SRC_OPS_DOORBELL) &&	\
			 (dst_ops & RIO_DST_OPS_DOORBELL))
#define dev_rionet_capable(dev) \
86
	is_rionet_capable(dev->src_ops, dev->dst_ops)
M
Matt Porter 已提交
87

88 89
#define RIONET_MAC_MATCH(x)	(!memcmp((x), "\00\01\00\01", 4))
#define RIONET_GET_DESTID(x)	((*((u8 *)x + 4) << 8) | *((u8 *)x + 5))
M
Matt Porter 已提交
90 91 92 93 94

static int rionet_rx_clean(struct net_device *ndev)
{
	int i;
	int error = 0;
95
	struct rionet_private *rnet = netdev_priv(ndev);
M
Matt Porter 已提交
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
	void *data;

	i = rnet->rx_slot;

	do {
		if (!rnet->rx_skb[i])
			continue;

		if (!(data = rio_get_inb_message(rnet->mport, RIONET_MAILBOX)))
			break;

		rnet->rx_skb[i]->data = data;
		skb_put(rnet->rx_skb[i], RIO_MAX_MSG_SIZE);
		rnet->rx_skb[i]->protocol =
		    eth_type_trans(rnet->rx_skb[i], ndev);
		error = netif_rx(rnet->rx_skb[i]);

		if (error == NET_RX_DROP) {
114
			ndev->stats.rx_dropped++;
M
Matt Porter 已提交
115
		} else {
116 117
			ndev->stats.rx_packets++;
			ndev->stats.rx_bytes += RIO_MAX_MSG_SIZE;
M
Matt Porter 已提交
118 119 120 121 122 123 124 125 126 127
		}

	} while ((i = (i + 1) % RIONET_RX_RING_SIZE) != rnet->rx_slot);

	return i;
}

static void rionet_rx_fill(struct net_device *ndev, int end)
{
	int i;
128
	struct rionet_private *rnet = netdev_priv(ndev);
M
Matt Porter 已提交
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146

	i = rnet->rx_slot;
	do {
		rnet->rx_skb[i] = dev_alloc_skb(RIO_MAX_MSG_SIZE);

		if (!rnet->rx_skb[i])
			break;

		rio_add_inb_buffer(rnet->mport, RIONET_MAILBOX,
				   rnet->rx_skb[i]->data);
	} while ((i = (i + 1) % RIONET_RX_RING_SIZE) != end);

	rnet->rx_slot = i;
}

static int rionet_queue_tx_msg(struct sk_buff *skb, struct net_device *ndev,
			       struct rio_dev *rdev)
{
147
	struct rionet_private *rnet = netdev_priv(ndev);
M
Matt Porter 已提交
148 149 150 151

	rio_add_outb_message(rnet->mport, rdev, 0, skb->data, skb->len);
	rnet->tx_skb[rnet->tx_slot] = skb;

152 153
	ndev->stats.tx_packets++;
	ndev->stats.tx_bytes += skb->len;
M
Matt Porter 已提交
154 155 156 157 158 159 160 161

	if (++rnet->tx_cnt == RIONET_TX_RING_SIZE)
		netif_stop_queue(ndev);

	++rnet->tx_slot;
	rnet->tx_slot &= (RIONET_TX_RING_SIZE - 1);

	if (netif_msg_tx_queued(rnet))
162 163
		printk(KERN_INFO "%s: queued skb len %8.8x\n", DRV_NAME,
		       skb->len);
M
Matt Porter 已提交
164 165 166 167 168 169 170

	return 0;
}

static int rionet_start_xmit(struct sk_buff *skb, struct net_device *ndev)
{
	int i;
171
	struct rionet_private *rnet = netdev_priv(ndev);
M
Matt Porter 已提交
172 173 174
	struct ethhdr *eth = (struct ethhdr *)skb->data;
	u16 destid;
	unsigned long flags;
175
	int add_num = 1;
M
Matt Porter 已提交
176 177 178 179 180 181 182

	local_irq_save(flags);
	if (!spin_trylock(&rnet->tx_lock)) {
		local_irq_restore(flags);
		return NETDEV_TX_LOCKED;
	}

183
	if (is_multicast_ether_addr(eth->h_dest))
184
		add_num = nets[rnet->mport->id].nact;
185 186

	if ((rnet->tx_cnt + add_num) > RIONET_TX_RING_SIZE) {
M
Matt Porter 已提交
187 188 189 190 191 192 193
		netif_stop_queue(ndev);
		spin_unlock_irqrestore(&rnet->tx_lock, flags);
		printk(KERN_ERR "%s: BUG! Tx Ring full when queue awake!\n",
		       ndev->name);
		return NETDEV_TX_BUSY;
	}

194
	if (is_multicast_ether_addr(eth->h_dest)) {
195
		int count = 0;
196

197 198
		for (i = 0; i < RIO_MAX_ROUTE_ENTRIES(rnet->mport->sys_size);
				i++)
199
			if (nets[rnet->mport->id].active[i]) {
M
Matt Porter 已提交
200
				rionet_queue_tx_msg(skb, ndev,
201
					nets[rnet->mport->id].active[i]);
202 203 204 205
				if (count)
					atomic_inc(&skb->users);
				count++;
			}
M
Matt Porter 已提交
206 207
	} else if (RIONET_MAC_MATCH(eth->h_dest)) {
		destid = RIONET_GET_DESTID(eth->h_dest);
208 209 210
		if (nets[rnet->mport->id].active[destid])
			rionet_queue_tx_msg(skb, ndev,
					nets[rnet->mport->id].active[destid]);
211 212 213 214 215 216 217 218 219 220 221
		else {
			/*
			 * If the target device was removed from the list of
			 * active peers but we still have TX packets targeting
			 * it just report sending a packet to the target
			 * (without actual packet transfer).
			 */
			dev_kfree_skb_any(skb);
			ndev->stats.tx_packets++;
			ndev->stats.tx_bytes += skb->len;
		}
M
Matt Porter 已提交
222 223 224 225
	}

	spin_unlock_irqrestore(&rnet->tx_lock, flags);

226
	return NETDEV_TX_OK;
M
Matt Porter 已提交
227 228 229 230 231 232
}

static void rionet_dbell_event(struct rio_mport *mport, void *dev_id, u16 sid, u16 tid,
			       u16 info)
{
	struct net_device *ndev = dev_id;
233
	struct rionet_private *rnet = netdev_priv(ndev);
M
Matt Porter 已提交
234 235 236 237 238 239
	struct rionet_peer *peer;

	if (netif_msg_intr(rnet))
		printk(KERN_INFO "%s: doorbell sid %4.4x tid %4.4x info %4.4x",
		       DRV_NAME, sid, tid, info);
	if (info == RIONET_DOORBELL_JOIN) {
240 241 242
		if (!nets[rnet->mport->id].active[sid]) {
			list_for_each_entry(peer,
					   &nets[rnet->mport->id].peers, node) {
243
				if (peer->rdev->destid == sid) {
244 245 246
					nets[rnet->mport->id].active[sid] =
								peer->rdev;
					nets[rnet->mport->id].nact++;
247
				}
M
Matt Porter 已提交
248 249 250 251 252
			}
			rio_mport_send_doorbell(mport, sid,
						RIONET_DOORBELL_JOIN);
		}
	} else if (info == RIONET_DOORBELL_LEAVE) {
253 254
		nets[rnet->mport->id].active[sid] = NULL;
		nets[rnet->mport->id].nact--;
M
Matt Porter 已提交
255 256 257 258 259 260 261 262 263 264 265
	} else {
		if (netif_msg_intr(rnet))
			printk(KERN_WARNING "%s: unhandled doorbell\n",
			       DRV_NAME);
	}
}

static void rionet_inb_msg_event(struct rio_mport *mport, void *dev_id, int mbox, int slot)
{
	int n;
	struct net_device *ndev = dev_id;
266
	struct rionet_private *rnet = netdev_priv(ndev);
M
Matt Porter 已提交
267 268 269 270 271 272 273 274 275 276 277 278 279 280

	if (netif_msg_intr(rnet))
		printk(KERN_INFO "%s: inbound message event, mbox %d slot %d\n",
		       DRV_NAME, mbox, slot);

	spin_lock(&rnet->lock);
	if ((n = rionet_rx_clean(ndev)) != rnet->rx_slot)
		rionet_rx_fill(ndev, n);
	spin_unlock(&rnet->lock);
}

static void rionet_outb_msg_event(struct rio_mport *mport, void *dev_id, int mbox, int slot)
{
	struct net_device *ndev = dev_id;
281
	struct rionet_private *rnet = netdev_priv(ndev);
M
Matt Porter 已提交
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

	spin_lock(&rnet->lock);

	if (netif_msg_intr(rnet))
		printk(KERN_INFO
		       "%s: outbound message event, mbox %d slot %d\n",
		       DRV_NAME, mbox, slot);

	while (rnet->tx_cnt && (rnet->ack_slot != slot)) {
		/* dma unmap single */
		dev_kfree_skb_irq(rnet->tx_skb[rnet->ack_slot]);
		rnet->tx_skb[rnet->ack_slot] = NULL;
		++rnet->ack_slot;
		rnet->ack_slot &= (RIONET_TX_RING_SIZE - 1);
		rnet->tx_cnt--;
	}

	if (rnet->tx_cnt < RIONET_TX_RING_SIZE)
		netif_wake_queue(ndev);

	spin_unlock(&rnet->lock);
}

static int rionet_open(struct net_device *ndev)
{
	int i, rc = 0;
	struct rionet_peer *peer, *tmp;
309
	struct rionet_private *rnet = netdev_priv(ndev);
M
Matt Porter 已提交
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 339 340 341 342 343 344 345 346 347

	if (netif_msg_ifup(rnet))
		printk(KERN_INFO "%s: open\n", DRV_NAME);

	if ((rc = rio_request_inb_dbell(rnet->mport,
					(void *)ndev,
					RIONET_DOORBELL_JOIN,
					RIONET_DOORBELL_LEAVE,
					rionet_dbell_event)) < 0)
		goto out;

	if ((rc = rio_request_inb_mbox(rnet->mport,
				       (void *)ndev,
				       RIONET_MAILBOX,
				       RIONET_RX_RING_SIZE,
				       rionet_inb_msg_event)) < 0)
		goto out;

	if ((rc = rio_request_outb_mbox(rnet->mport,
					(void *)ndev,
					RIONET_MAILBOX,
					RIONET_TX_RING_SIZE,
					rionet_outb_msg_event)) < 0)
		goto out;

	/* Initialize inbound message ring */
	for (i = 0; i < RIONET_RX_RING_SIZE; i++)
		rnet->rx_skb[i] = NULL;
	rnet->rx_slot = 0;
	rionet_rx_fill(ndev, 0);

	rnet->tx_slot = 0;
	rnet->tx_cnt = 0;
	rnet->ack_slot = 0;

	netif_carrier_on(ndev);
	netif_start_queue(ndev);

348 349
	list_for_each_entry_safe(peer, tmp,
				 &nets[rnet->mport->id].peers, node) {
M
Matt Porter 已提交
350 351 352 353 354 355 356 357 358
		if (!(peer->res = rio_request_outb_dbell(peer->rdev,
							 RIONET_DOORBELL_JOIN,
							 RIONET_DOORBELL_LEAVE)))
		{
			printk(KERN_ERR "%s: error requesting doorbells\n",
			       DRV_NAME);
			continue;
		}

359 360
		/* Send a join message */
		rio_send_doorbell(peer->rdev, RIONET_DOORBELL_JOIN);
M
Matt Porter 已提交
361 362 363 364 365 366 367 368
	}

      out:
	return rc;
}

static int rionet_close(struct net_device *ndev)
{
369
	struct rionet_private *rnet = netdev_priv(ndev);
M
Matt Porter 已提交
370 371 372 373
	struct rionet_peer *peer, *tmp;
	int i;

	if (netif_msg_ifup(rnet))
374
		printk(KERN_INFO "%s: close %s\n", DRV_NAME, ndev->name);
M
Matt Porter 已提交
375 376 377 378 379

	netif_stop_queue(ndev);
	netif_carrier_off(ndev);

	for (i = 0; i < RIONET_RX_RING_SIZE; i++)
380
		kfree_skb(rnet->rx_skb[i]);
M
Matt Porter 已提交
381

382 383 384
	list_for_each_entry_safe(peer, tmp,
				 &nets[rnet->mport->id].peers, node) {
		if (nets[rnet->mport->id].active[peer->rdev->destid]) {
M
Matt Porter 已提交
385
			rio_send_doorbell(peer->rdev, RIONET_DOORBELL_LEAVE);
386
			nets[rnet->mport->id].active[peer->rdev->destid] = NULL;
M
Matt Porter 已提交
387 388 389 390 391 392 393 394 395 396 397 398
		}
		rio_release_outb_dbell(peer->rdev, peer->res);
	}

	rio_release_inb_dbell(rnet->mport, RIONET_DOORBELL_JOIN,
			      RIONET_DOORBELL_LEAVE);
	rio_release_inb_mbox(rnet->mport, RIONET_MAILBOX);
	rio_release_outb_mbox(rnet->mport, RIONET_MAILBOX);

	return 0;
}

399
static int rionet_remove_dev(struct device *dev, struct subsys_interface *sif)
M
Matt Porter 已提交
400
{
401
	struct rio_dev *rdev = to_rio_dev(dev);
402
	unsigned char netid = rdev->net->hport->id;
M
Matt Porter 已提交
403 404
	struct rionet_peer *peer, *tmp;

405 406 407 408 409 410 411
	if (dev_rionet_capable(rdev)) {
		list_for_each_entry_safe(peer, tmp, &nets[netid].peers, node) {
			if (peer->rdev == rdev) {
				if (nets[netid].active[rdev->destid]) {
					nets[netid].active[rdev->destid] = NULL;
					nets[netid].nact--;
				}
412

413 414 415 416 417
				list_del(&peer->node);
				kfree(peer);
				break;
			}
		}
M
Matt Porter 已提交
418
	}
419

420
	return 0;
M
Matt Porter 已提交
421 422 423 424 425
}

static void rionet_get_drvinfo(struct net_device *ndev,
			       struct ethtool_drvinfo *info)
{
426
	struct rionet_private *rnet = netdev_priv(ndev);
M
Matt Porter 已提交
427

428 429 430 431
	strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
	strlcpy(info->version, DRV_VERSION, sizeof(info->version));
	strlcpy(info->fw_version, "n/a", sizeof(info->fw_version));
	strlcpy(info->bus_info, rnet->mport->name, sizeof(info->bus_info));
M
Matt Porter 已提交
432 433 434 435
}

static u32 rionet_get_msglevel(struct net_device *ndev)
{
436
	struct rionet_private *rnet = netdev_priv(ndev);
M
Matt Porter 已提交
437 438 439 440 441 442

	return rnet->msg_enable;
}

static void rionet_set_msglevel(struct net_device *ndev, u32 value)
{
443
	struct rionet_private *rnet = netdev_priv(ndev);
M
Matt Porter 已提交
444 445 446 447

	rnet->msg_enable = value;
}

448
static const struct ethtool_ops rionet_ethtool_ops = {
M
Matt Porter 已提交
449 450 451 452 453 454
	.get_drvinfo = rionet_get_drvinfo,
	.get_msglevel = rionet_get_msglevel,
	.set_msglevel = rionet_set_msglevel,
	.get_link = ethtool_op_get_link,
};

455 456 457 458 459 460 461 462 463
static const struct net_device_ops rionet_netdev_ops = {
	.ndo_open		= rionet_open,
	.ndo_stop		= rionet_close,
	.ndo_start_xmit		= rionet_start_xmit,
	.ndo_change_mtu		= eth_change_mtu,
	.ndo_validate_addr	= eth_validate_addr,
	.ndo_set_mac_address	= eth_mac_addr,
};

464
static int rionet_setup_netdev(struct rio_mport *mport, struct net_device *ndev)
M
Matt Porter 已提交
465 466 467 468
{
	int rc = 0;
	struct rionet_private *rnet;
	u16 device_id;
469 470
	const size_t rionet_active_bytes = sizeof(void *) *
				RIO_MAX_ROUTE_ENTRIES(mport->sys_size);
M
Matt Porter 已提交
471

472 473 474
	nets[mport->id].active = (struct rio_dev **)__get_free_pages(GFP_KERNEL,
						get_order(rionet_active_bytes));
	if (!nets[mport->id].active) {
475 476 477
		rc = -ENOMEM;
		goto out;
	}
478
	memset((void *)nets[mport->id].active, 0, rionet_active_bytes);
479

M
Matt Porter 已提交
480
	/* Set up private area */
481
	rnet = netdev_priv(ndev);
M
Matt Porter 已提交
482 483 484 485 486 487 488 489 490 491 492
	rnet->mport = mport;

	/* Set the default MAC address */
	device_id = rio_local_get_device_id(mport);
	ndev->dev_addr[0] = 0x00;
	ndev->dev_addr[1] = 0x01;
	ndev->dev_addr[2] = 0x00;
	ndev->dev_addr[3] = 0x01;
	ndev->dev_addr[4] = device_id >> 8;
	ndev->dev_addr[5] = device_id & 0xff;

493
	ndev->netdev_ops = &rionet_netdev_ops;
M
Matt Porter 已提交
494 495
	ndev->mtu = RIO_MAX_MSG_SIZE - 14;
	ndev->features = NETIF_F_LLTX;
496
	SET_NETDEV_DEV(ndev, &mport->dev);
497
	ndev->ethtool_ops = &rionet_ethtool_ops;
M
Matt Porter 已提交
498 499 500 501 502 503 504 505 506 507

	spin_lock_init(&rnet->lock);
	spin_lock_init(&rnet->tx_lock);

	rnet->msg_enable = RIONET_DEFAULT_MSGLEVEL;

	rc = register_netdev(ndev);
	if (rc != 0)
		goto out;

508
	printk(KERN_INFO "%s: %s %s Version %s, MAC %pM, %s\n",
M
Matt Porter 已提交
509 510 511 512
	       ndev->name,
	       DRV_NAME,
	       DRV_DESC,
	       DRV_VERSION,
513 514
	       ndev->dev_addr,
	       mport->name);
M
Matt Porter 已提交
515 516 517 518 519

      out:
	return rc;
}

520 521
static unsigned long net_table[RIONET_MAX_NETS/sizeof(unsigned long) + 1];

522
static int rionet_add_dev(struct device *dev, struct subsys_interface *sif)
M
Matt Porter 已提交
523 524
{
	int rc = -ENODEV;
525
	u32 lsrc_ops, ldst_ops;
M
Matt Porter 已提交
526
	struct rionet_peer *peer;
527
	struct net_device *ndev = NULL;
528
	struct rio_dev *rdev = to_rio_dev(dev);
529 530
	unsigned char netid = rdev->net->hport->id;
	int oldnet;
M
Matt Porter 已提交
531

532 533
	if (netid >= RIONET_MAX_NETS)
		return rc;
M
Matt Porter 已提交
534

535
	oldnet = test_and_set_bit(netid, net_table);
536

M
Matt Porter 已提交
537
	/*
538 539 540
	 * If first time through this net, make sure local device is rionet
	 * capable and setup netdev (this step will be skipped in later probes
	 * on the same net).
M
Matt Porter 已提交
541
	 */
542
	if (!oldnet) {
M
Matt Porter 已提交
543 544 545 546
		rio_local_read_config_32(rdev->net->hport, RIO_SRC_OPS_CAR,
					 &lsrc_ops);
		rio_local_read_config_32(rdev->net->hport, RIO_DST_OPS_CAR,
					 &ldst_ops);
547
		if (!is_rionet_capable(lsrc_ops, ldst_ops)) {
M
Matt Porter 已提交
548
			printk(KERN_ERR
549 550
			       "%s: local device %s is not network capable\n",
			       DRV_NAME, rdev->net->hport->name);
M
Matt Porter 已提交
551 552 553
			goto out;
		}

554 555 556 557 558 559 560
		/* Allocate our net_device structure */
		ndev = alloc_etherdev(sizeof(struct rionet_private));
		if (ndev == NULL) {
			rc = -ENOMEM;
			goto out;
		}
		nets[netid].ndev = ndev;
561
		rc = rionet_setup_netdev(rdev->net->hport, ndev);
562 563 564 565 566 567
		if (rc) {
			printk(KERN_ERR "%s: failed to setup netdev (rc=%d)\n",
			       DRV_NAME, rc);
			goto out;
		}

568 569 570 571
		INIT_LIST_HEAD(&nets[netid].peers);
		nets[netid].nact = 0;
	} else if (nets[netid].ndev == NULL)
		goto out;
M
Matt Porter 已提交
572 573 574 575 576 577 578 579 580 581 582

	/*
	 * If the remote device has mailbox/doorbell capabilities,
	 * add it to the peer list.
	 */
	if (dev_rionet_capable(rdev)) {
		if (!(peer = kmalloc(sizeof(struct rionet_peer), GFP_KERNEL))) {
			rc = -ENOMEM;
			goto out;
		}
		peer->rdev = rdev;
583
		list_add_tail(&peer->node, &nets[netid].peers);
M
Matt Porter 已提交
584 585
	}

586 587
	return 0;
out:
M
Matt Porter 已提交
588 589 590
	return rc;
}

591
#ifdef MODULE
M
Matt Porter 已提交
592
static struct rio_device_id rionet_id_table[] = {
593 594
	{RIO_DEVICE(RIO_ANY_ID, RIO_ANY_ID)},
	{ 0, }	/* terminate list */
M
Matt Porter 已提交
595 596
};

597 598 599 600 601 602 603 604
MODULE_DEVICE_TABLE(rapidio, rionet_id_table);
#endif

static struct subsys_interface rionet_interface = {
	.name		= "rionet",
	.subsys		= &rio_bus_type,
	.add_dev	= rionet_add_dev,
	.remove_dev	= rionet_remove_dev,
M
Matt Porter 已提交
605 606 607 608
};

static int __init rionet_init(void)
{
609
	return subsys_interface_register(&rionet_interface);
M
Matt Porter 已提交
610 611 612 613
}

static void __exit rionet_exit(void)
{
614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640
	struct rionet_private *rnet;
	struct net_device *ndev;
	struct rionet_peer *peer, *tmp;
	int i;

	for (i = 0; i < RIONET_MAX_NETS; i++) {
		if (nets[i].ndev != NULL) {
			ndev = nets[i].ndev;
			rnet = netdev_priv(ndev);
			unregister_netdev(ndev);

			list_for_each_entry_safe(peer,
						 tmp, &nets[i].peers, node) {
				list_del(&peer->node);
				kfree(peer);
			}

			free_pages((unsigned long)nets[i].active,
				 get_order(sizeof(void *) *
				 RIO_MAX_ROUTE_ENTRIES(rnet->mport->sys_size)));
			nets[i].active = NULL;

			free_netdev(ndev);
		}
	}

	subsys_interface_unregister(&rionet_interface);
M
Matt Porter 已提交
641 642
}

643
late_initcall(rionet_init);
M
Matt Porter 已提交
644
module_exit(rionet_exit);