eth1394.c 47.3 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
S
Stefan Richter 已提交
2
 * eth1394.c -- IPv4 driver for Linux IEEE-1394 Subsystem
L
Linus Torvalds 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
 *
 * Copyright (C) 2001-2003 Ben Collins <bcollins@debian.org>
 *               2000 Bonin Franck <boninf@free.fr>
 *               2003 Steve Kinneberg <kinnebergsteve@acmsystems.com>
 *
 * Mainly based on work by Emanuel Pirker and Andreas E. Bombe
 *
 * 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.
 */

S
Stefan Richter 已提交
25 26 27
/*
 * This driver intends to support RFC 2734, which describes a method for
 * transporting IPv4 datagrams over IEEE-1394 serial busses.
L
Linus Torvalds 已提交
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
 *
 * TODO:
 * RFC 2734 related:
 * - Add MCAP. Limited Multicast exists only to 224.0.0.1 and 224.0.0.2.
 *
 * Non-RFC 2734 related:
 * - Handle fragmented skb's coming from the networking layer.
 * - Move generic GASP reception to core 1394 code
 * - Convert kmalloc/kfree for link fragments to use kmem_cache_* instead
 * - Stability improvements
 * - Performance enhancements
 * - Consider garbage collecting old partial datagrams after X amount of time
 */

#include <linux/module.h>

#include <linux/kernel.h>
#include <linux/slab.h>
#include <linux/errno.h>
#include <linux/types.h>
#include <linux/delay.h>
#include <linux/init.h>
50
#include <linux/workqueue.h>
L
Linus Torvalds 已提交
51 52 53 54 55 56 57 58 59 60 61 62 63

#include <linux/netdevice.h>
#include <linux/inetdevice.h>
#include <linux/if_arp.h>
#include <linux/if_ether.h>
#include <linux/ip.h>
#include <linux/in.h>
#include <linux/tcp.h>
#include <linux/skbuff.h>
#include <linux/bitops.h>
#include <linux/ethtool.h>
#include <asm/uaccess.h>
#include <asm/delay.h>
64
#include <asm/unaligned.h>
L
Linus Torvalds 已提交
65 66
#include <net/arp.h>

67
#include "config_roms.h"
L
Linus Torvalds 已提交
68
#include "csr1212.h"
69 70 71
#include "eth1394.h"
#include "highlevel.h"
#include "ieee1394.h"
L
Linus Torvalds 已提交
72
#include "ieee1394_core.h"
73
#include "ieee1394_hotplug.h"
L
Linus Torvalds 已提交
74
#include "ieee1394_transactions.h"
75
#include "ieee1394_types.h"
L
Linus Torvalds 已提交
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
#include "iso.h"
#include "nodemgr.h"

#define ETH1394_PRINT_G(level, fmt, args...) \
	printk(level "%s: " fmt, driver_name, ## args)

#define ETH1394_PRINT(level, dev_name, fmt, args...) \
	printk(level "%s: %s: " fmt, driver_name, dev_name, ## args)

struct fragment_info {
	struct list_head list;
	int offset;
	int len;
};

struct partial_datagram {
	struct list_head list;
	u16 dgl;
	u16 dg_size;
95
	__be16 ether_type;
L
Linus Torvalds 已提交
96 97 98 99 100 101
	struct sk_buff *skb;
	char *pbuf;
	struct list_head frag_info;
};

struct pdg_list {
S
Stefan Richter 已提交
102 103 104
	struct list_head list;	/* partial datagram list per node	*/
	unsigned int sz;	/* partial datagram list size per node	*/
	spinlock_t lock;	/* partial datagram lock		*/
L
Linus Torvalds 已提交
105 106 107 108 109 110 111 112 113 114 115 116 117
};

struct eth1394_host_info {
	struct hpsb_host *host;
	struct net_device *dev;
};

struct eth1394_node_ref {
	struct unit_directory *ud;
	struct list_head list;
};

struct eth1394_node_info {
S
Stefan Richter 已提交
118 119 120 121 122
	u16 maxpayload;		/* max payload			*/
	u8 sspd;		/* max speed			*/
	u64 fifo;		/* FIFO address			*/
	struct pdg_list pdg;	/* partial RX datagram lists	*/
	int dgl;		/* outgoing datagram label	*/
L
Linus Torvalds 已提交
123 124
};

S
Stefan Richter 已提交
125
static const char driver_name[] = "eth1394";
L
Linus Torvalds 已提交
126

127
static struct kmem_cache *packet_task_cache;
L
Linus Torvalds 已提交
128 129 130 131 132

static struct hpsb_highlevel eth1394_highlevel;

/* Use common.lf to determine header len */
static const int hdr_type_len[] = {
S
Stefan Richter 已提交
133 134 135 136
	sizeof(struct eth1394_uf_hdr),
	sizeof(struct eth1394_ff_hdr),
	sizeof(struct eth1394_sf_hdr),
	sizeof(struct eth1394_sf_hdr)
L
Linus Torvalds 已提交
137 138 139 140 141 142 143 144 145 146 147
};

static const u16 eth1394_speedto_maxpayload[] = {
/*     S100, S200, S400, S800, S1600, S3200 */
	512, 1024, 2048, 4096,  4096,  4096
};

MODULE_AUTHOR("Ben Collins (bcollins@debian.org)");
MODULE_DESCRIPTION("IEEE 1394 IPv4 Driver (IPv4-over-1394 as per RFC 2734)");
MODULE_LICENSE("GPL");

S
Stefan Richter 已提交
148 149
/*
 * The max_partial_datagrams parameter is the maximum number of fragmented
L
Linus Torvalds 已提交
150 151 152 153 154 155 156 157 158 159 160 161
 * datagrams per node that eth1394 will keep in memory.  Providing an upper
 * bound allows us to limit the amount of memory that partial datagrams
 * consume in the event that some partial datagrams are never completed.
 */
static int max_partial_datagrams = 25;
module_param(max_partial_datagrams, int, S_IRUGO | S_IWUSR);
MODULE_PARM_DESC(max_partial_datagrams,
		 "Maximum number of partially received fragmented datagrams "
		 "(default = 25).");


static int ether1394_header(struct sk_buff *skb, struct net_device *dev,
162 163
			    unsigned short type, const void *daddr,
			    const void *saddr, unsigned len);
L
Linus Torvalds 已提交
164
static int ether1394_rebuild_header(struct sk_buff *skb);
S
Stephen Hemminger 已提交
165 166
static int ether1394_header_parse(const struct sk_buff *skb,
				  unsigned char *haddr);
167 168
static int ether1394_header_cache(const struct neighbour *neigh,
				  struct hh_cache *hh);
L
Linus Torvalds 已提交
169
static void ether1394_header_cache_update(struct hh_cache *hh,
170 171
					  const struct net_device *dev,
					  const unsigned char *haddr);
L
Linus Torvalds 已提交
172 173 174 175 176 177 178
static int ether1394_tx(struct sk_buff *skb, struct net_device *dev);
static void ether1394_iso(struct hpsb_iso *iso);

static struct ethtool_ops ethtool_ops;

static int ether1394_write(struct hpsb_host *host, int srcid, int destid,
			   quadlet_t *data, u64 addr, size_t len, u16 flags);
S
Stefan Richter 已提交
179 180 181
static void ether1394_add_host(struct hpsb_host *host);
static void ether1394_remove_host(struct hpsb_host *host);
static void ether1394_host_reset(struct hpsb_host *host);
L
Linus Torvalds 已提交
182 183

/* Function for incoming 1394 packets */
184
const static struct hpsb_address_ops addr_ops = {
L
Linus Torvalds 已提交
185 186 187 188 189 190 191 192 193 194 195
	.write =	ether1394_write,
};

/* Ieee1394 highlevel driver functions */
static struct hpsb_highlevel eth1394_highlevel = {
	.name =		driver_name,
	.add_host =	ether1394_add_host,
	.remove_host =	ether1394_remove_host,
	.host_reset =	ether1394_host_reset,
};

196
static int ether1394_recv_init(struct eth1394_priv *priv)
197
{
S
Stefan Richter 已提交
198 199 200 201 202
	unsigned int iso_buf_size;

	/* FIXME: rawiso limits us to PAGE_SIZE */
	iso_buf_size = min((unsigned int)PAGE_SIZE,
			   2 * (1U << (priv->host->csr.max_rec + 1)));
203 204

	priv->iso = hpsb_iso_recv_init(priv->host,
S
Stefan Richter 已提交
205
				       ETHER1394_GASP_BUFFERS * iso_buf_size,
206 207 208 209 210
				       ETHER1394_GASP_BUFFERS,
				       priv->broadcast_channel,
				       HPSB_ISO_DMA_PACKET_PER_BUFFER,
				       1, ether1394_iso);
	if (priv->iso == NULL) {
211
		ETH1394_PRINT_G(KERN_ERR, "Failed to allocate IR context\n");
212 213 214 215 216 217 218 219 220 221 222
		priv->bc_state = ETHER1394_BC_ERROR;
		return -EAGAIN;
	}

	if (hpsb_iso_recv_start(priv->iso, -1, (1 << 3), -1) < 0)
		priv->bc_state = ETHER1394_BC_STOPPED;
	else
		priv->bc_state = ETHER1394_BC_RUNNING;
	return 0;
}

L
Linus Torvalds 已提交
223
/* This is called after an "ifup" */
224
static int ether1394_open(struct net_device *dev)
L
Linus Torvalds 已提交
225 226
{
	struct eth1394_priv *priv = netdev_priv(dev);
227
	int ret;
L
Linus Torvalds 已提交
228 229

	if (priv->bc_state == ETHER1394_BC_ERROR) {
230
		ret = ether1394_recv_init(priv);
231 232
		if (ret)
			return ret;
L
Linus Torvalds 已提交
233
	}
S
Stefan Richter 已提交
234
	netif_start_queue(dev);
L
Linus Torvalds 已提交
235 236 237 238
	return 0;
}

/* This is called after an "ifdown" */
S
Stefan Richter 已提交
239
static int ether1394_stop(struct net_device *dev)
L
Linus Torvalds 已提交
240
{
241 242 243
	/* flush priv->wake */
	flush_scheduled_work();

S
Stefan Richter 已提交
244
	netif_stop_queue(dev);
L
Linus Torvalds 已提交
245 246 247 248
	return 0;
}

/* Return statistics to the caller */
S
Stefan Richter 已提交
249
static struct net_device_stats *ether1394_stats(struct net_device *dev)
L
Linus Torvalds 已提交
250 251 252 253
{
	return &(((struct eth1394_priv *)netdev_priv(dev))->stats);
}

S
Stefan Richter 已提交
254 255 256
/* FIXME: What to do if we timeout? I think a host reset is probably in order,
 * so that's what we do. Should we increment the stat counters too?  */
static void ether1394_tx_timeout(struct net_device *dev)
L
Linus Torvalds 已提交
257
{
S
Stefan Richter 已提交
258 259
	struct hpsb_host *host =
			((struct eth1394_priv *)netdev_priv(dev))->host;
L
Linus Torvalds 已提交
260

261 262
	ETH1394_PRINT(KERN_ERR, dev->name, "Timeout, resetting host\n");
	ether1394_host_reset(host);
L
Linus Torvalds 已提交
263 264
}

265 266 267 268 269 270
static inline int ether1394_max_mtu(struct hpsb_host* host)
{
	return (1 << (host->csr.max_rec + 1))
			- sizeof(union eth1394_hdr) - ETHER1394_GASP_OVERHEAD;
}

L
Linus Torvalds 已提交
271 272
static int ether1394_change_mtu(struct net_device *dev, int new_mtu)
{
273
	int max_mtu;
L
Linus Torvalds 已提交
274

275
	if (new_mtu < 68)
L
Linus Torvalds 已提交
276
		return -EINVAL;
S
Stefan Richter 已提交
277

278 279 280 281 282 283 284 285
	max_mtu = ether1394_max_mtu(
			((struct eth1394_priv *)netdev_priv(dev))->host);
	if (new_mtu > max_mtu) {
		ETH1394_PRINT(KERN_INFO, dev->name,
			      "Local node constrains MTU to %d\n", max_mtu);
		return -ERANGE;
	}

L
Linus Torvalds 已提交
286 287 288 289 290 291
	dev->mtu = new_mtu;
	return 0;
}

static void purge_partial_datagram(struct list_head *old)
{
S
Stefan Richter 已提交
292
	struct partial_datagram *pd;
L
Linus Torvalds 已提交
293
	struct list_head *lh, *n;
S
Stefan Richter 已提交
294 295 296
	struct fragment_info *fi;

	pd = list_entry(old, struct partial_datagram, list);
L
Linus Torvalds 已提交
297 298

	list_for_each_safe(lh, n, &pd->frag_info) {
S
Stefan Richter 已提交
299
		fi = list_entry(lh, struct fragment_info, list);
L
Linus Torvalds 已提交
300 301 302 303 304 305 306 307 308 309 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
		list_del(lh);
		kfree(fi);
	}
	list_del(old);
	kfree_skb(pd->skb);
	kfree(pd);
}

/******************************************
 * 1394 bus activity functions
 ******************************************/

static struct eth1394_node_ref *eth1394_find_node(struct list_head *inl,
						  struct unit_directory *ud)
{
	struct eth1394_node_ref *node;

	list_for_each_entry(node, inl, list)
		if (node->ud == ud)
			return node;

	return NULL;
}

static struct eth1394_node_ref *eth1394_find_node_guid(struct list_head *inl,
						       u64 guid)
{
	struct eth1394_node_ref *node;

	list_for_each_entry(node, inl, list)
		if (node->ud->ne->guid == guid)
			return node;

	return NULL;
}

static struct eth1394_node_ref *eth1394_find_node_nodeid(struct list_head *inl,
							 nodeid_t nodeid)
{
	struct eth1394_node_ref *node;
S
Stefan Richter 已提交
340 341

	list_for_each_entry(node, inl, list)
L
Linus Torvalds 已提交
342 343 344 345 346 347
		if (node->ud->ne->nodeid == nodeid)
			return node;

	return NULL;
}

348 349
static int eth1394_new_node(struct eth1394_host_info *hi,
			    struct unit_directory *ud)
L
Linus Torvalds 已提交
350 351 352 353 354
{
	struct eth1394_priv *priv;
	struct eth1394_node_ref *new_node;
	struct eth1394_node_info *node_info;

355
	new_node = kmalloc(sizeof(*new_node), GFP_KERNEL);
L
Linus Torvalds 已提交
356 357 358
	if (!new_node)
		return -ENOMEM;

359
	node_info = kmalloc(sizeof(*node_info), GFP_KERNEL);
L
Linus Torvalds 已提交
360 361 362 363 364 365 366 367
	if (!node_info) {
		kfree(new_node);
		return -ENOMEM;
	}

	spin_lock_init(&node_info->pdg.lock);
	INIT_LIST_HEAD(&node_info->pdg.list);
	node_info->pdg.sz = 0;
368
	node_info->fifo = CSR1212_INVALID_ADDR_SPACE;
L
Linus Torvalds 已提交
369 370 371 372 373 374 375 376 377

	ud->device.driver_data = node_info;
	new_node->ud = ud;

	priv = netdev_priv(hi->dev);
	list_add_tail(&new_node->list, &priv->ip_node_list);
	return 0;
}

378 379 380 381 382 383 384 385 386 387 388 389 390
static int eth1394_probe(struct device *dev)
{
	struct unit_directory *ud;
	struct eth1394_host_info *hi;

	ud = container_of(dev, struct unit_directory, device);
	hi = hpsb_get_hostinfo(&eth1394_highlevel, ud->ne->host);
	if (!hi)
		return -ENOENT;

	return eth1394_new_node(hi, ud);
}

L
Linus Torvalds 已提交
391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408
static int eth1394_remove(struct device *dev)
{
	struct unit_directory *ud;
	struct eth1394_host_info *hi;
	struct eth1394_priv *priv;
	struct eth1394_node_ref *old_node;
	struct eth1394_node_info *node_info;
	struct list_head *lh, *n;
	unsigned long flags;

	ud = container_of(dev, struct unit_directory, device);
	hi = hpsb_get_hostinfo(&eth1394_highlevel, ud->ne->host);
	if (!hi)
		return -ENOENT;

	priv = netdev_priv(hi->dev);

	old_node = eth1394_find_node(&priv->ip_node_list, ud);
S
Stefan Richter 已提交
409 410
	if (!old_node)
		return 0;
L
Linus Torvalds 已提交
411

S
Stefan Richter 已提交
412 413
	list_del(&old_node->list);
	kfree(old_node);
L
Linus Torvalds 已提交
414

S
Stefan Richter 已提交
415
	node_info = (struct eth1394_node_info*)ud->device.driver_data;
L
Linus Torvalds 已提交
416

S
Stefan Richter 已提交
417 418 419 420 421 422
	spin_lock_irqsave(&node_info->pdg.lock, flags);
	/* The partial datagram list should be empty, but we'll just
	 * make sure anyway... */
	list_for_each_safe(lh, n, &node_info->pdg.list)
		purge_partial_datagram(lh);
	spin_unlock_irqrestore(&node_info->pdg.lock, flags);
L
Linus Torvalds 已提交
423

S
Stefan Richter 已提交
424 425
	kfree(node_info);
	ud->device.driver_data = NULL;
L
Linus Torvalds 已提交
426 427 428 429 430 431 432 433 434 435 436 437 438 439 440
	return 0;
}

static int eth1394_update(struct unit_directory *ud)
{
	struct eth1394_host_info *hi;
	struct eth1394_priv *priv;
	struct eth1394_node_ref *node;

	hi = hpsb_get_hostinfo(&eth1394_highlevel, ud->ne->host);
	if (!hi)
		return -ENOENT;

	priv = netdev_priv(hi->dev);
	node = eth1394_find_node(&priv->ip_node_list, ud);
S
Stefan Richter 已提交
441 442
	if (node)
		return 0;
L
Linus Torvalds 已提交
443

444
	return eth1394_new_node(hi, ud);
L
Linus Torvalds 已提交
445 446 447 448 449 450 451 452 453 454 455 456 457 458 459
}

static struct ieee1394_device_id eth1394_id_table[] = {
	{
		.match_flags = (IEEE1394_MATCH_SPECIFIER_ID |
				IEEE1394_MATCH_VERSION),
		.specifier_id =	ETHER1394_GASP_SPECIFIER_ID,
		.version = ETHER1394_GASP_VERSION,
	},
	{}
};

MODULE_DEVICE_TABLE(ieee1394, eth1394_id_table);

static struct hpsb_protocol_driver eth1394_proto_driver = {
S
Stefan Richter 已提交
460
	.name		= driver_name,
L
Linus Torvalds 已提交
461 462 463 464 465 466 467 468
	.id_table	= eth1394_id_table,
	.update		= eth1394_update,
	.driver		= {
		.probe		= eth1394_probe,
		.remove		= eth1394_remove,
	},
};

S
Stefan Richter 已提交
469
static void ether1394_reset_priv(struct net_device *dev, int set_mtu)
L
Linus Torvalds 已提交
470 471 472 473 474
{
	unsigned long flags;
	int i;
	struct eth1394_priv *priv = netdev_priv(dev);
	struct hpsb_host *host = priv->host;
S
Stefan Richter 已提交
475
	u64 guid = get_unaligned((u64 *)&(host->csr.rom->bus_info_data[3]));
L
Linus Torvalds 已提交
476 477
	int max_speed = IEEE1394_SPEED_MAX;

S
Stefan Richter 已提交
478
	spin_lock_irqsave(&priv->lock, flags);
L
Linus Torvalds 已提交
479

480
	memset(priv->ud_list, 0, sizeof(priv->ud_list));
L
Linus Torvalds 已提交
481 482 483
	priv->bc_maxpayload = 512;

	/* Determine speed limit */
484 485 486 487 488 489 490 491 492
	/* FIXME: This is broken for nodes with link speed < PHY speed,
	 * and it is suboptimal for S200B...S800B hardware.
	 * The result of nodemgr's speed probe should be used somehow. */
	for (i = 0; i < host->node_count; i++) {
		/* take care of S100B...S400B PHY ports */
		if (host->speed[i] == SELFID_SPEED_UNKNOWN) {
			max_speed = IEEE1394_SPEED_100;
			break;
		}
493 494
		if (max_speed > host->speed[i])
			max_speed = host->speed[i];
495
	}
L
Linus Torvalds 已提交
496 497 498
	priv->bc_sspd = max_speed;

	if (set_mtu) {
499 500 501
		/* Use the RFC 2734 default 1500 octets or the maximum payload
		 * as initial MTU */
		dev->mtu = min(1500, ether1394_max_mtu(host));
L
Linus Torvalds 已提交
502 503

		/* Set our hardware address while we're at it */
504 505
		memcpy(dev->dev_addr, &guid, sizeof(u64));
		memset(dev->broadcast, 0xff, sizeof(u64));
L
Linus Torvalds 已提交
506 507
	}

S
Stefan Richter 已提交
508
	spin_unlock_irqrestore(&priv->lock, flags);
L
Linus Torvalds 已提交
509 510
}

511 512 513 514 515 516 517 518
static const struct header_ops ether1394_header_ops = {
	.create		= ether1394_header,
	.rebuild	= ether1394_rebuild_header,
	.cache  	= ether1394_header_cache,
	.cache_update	= ether1394_header_cache_update,
	.parse		= ether1394_header_parse,
};

S
Stefan Richter 已提交
519
static void ether1394_init_dev(struct net_device *dev)
L
Linus Torvalds 已提交
520 521 522 523 524 525 526 527
{
	dev->open		= ether1394_open;
	dev->stop		= ether1394_stop;
	dev->hard_start_xmit	= ether1394_tx;
	dev->get_stats		= ether1394_stats;
	dev->tx_timeout		= ether1394_tx_timeout;
	dev->change_mtu		= ether1394_change_mtu;

528
	dev->header_ops		= &ether1394_header_ops;
529

L
Linus Torvalds 已提交
530 531 532 533 534 535 536 537 538
	SET_ETHTOOL_OPS(dev, &ethtool_ops);

	dev->watchdog_timeo	= ETHER1394_TIMEOUT;
	dev->flags		= IFF_BROADCAST | IFF_MULTICAST;
	dev->features		= NETIF_F_HIGHDMA;
	dev->addr_len		= ETH1394_ALEN;
	dev->hard_header_len 	= ETH1394_HLEN;
	dev->type		= ARPHRD_IEEE1394;

539 540
	/* FIXME: This value was copied from ether_setup(). Is it too much? */
	dev->tx_queue_len	= 1000;
L
Linus Torvalds 已提交
541 542
}

543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573
/*
 * Wake the queue up after commonly encountered transmit failure conditions are
 * hopefully over.  Currently only tlabel exhaustion is accounted for.
 */
static void ether1394_wake_queue(struct work_struct *work)
{
	struct eth1394_priv *priv;
	struct hpsb_packet *packet;

	priv = container_of(work, struct eth1394_priv, wake);
	packet = hpsb_alloc_packet(0);

	/* This is really bad, but unjam the queue anyway. */
	if (!packet)
		goto out;

	packet->host = priv->host;
	packet->node_id = priv->wake_node;
	/*
	 * A transaction label is all we really want.  If we get one, it almost
	 * always means we can get a lot more because the ieee1394 core recycled
	 * a whole batch of tlabels, at last.
	 */
	if (hpsb_get_tlabel(packet) == 0)
		hpsb_free_tlabel(packet);

	hpsb_free_packet(packet);
out:
	netif_wake_queue(priv->wake_dev);
}

L
Linus Torvalds 已提交
574 575 576 577 578
/*
 * This function is called every time a card is found. It is generally called
 * when the module is installed. This is where we add all of our ethernet
 * devices. One for each host.
 */
S
Stefan Richter 已提交
579
static void ether1394_add_host(struct hpsb_host *host)
L
Linus Torvalds 已提交
580 581 582 583 584 585
{
	struct eth1394_host_info *hi = NULL;
	struct net_device *dev = NULL;
	struct eth1394_priv *priv;
	u64 fifo_addr;

586 587
	if (hpsb_config_rom_ip1394_add(host) != 0) {
		ETH1394_PRINT_G(KERN_ERR, "Can't add IP-over-1394 ROM entry\n");
L
Linus Torvalds 已提交
588
		return;
589
	}
L
Linus Torvalds 已提交
590

591 592 593 594
	fifo_addr = hpsb_allocate_and_register_addrspace(
			&eth1394_highlevel, host, &addr_ops,
			ETHER1394_REGION_ADDR_LEN, ETHER1394_REGION_ADDR_LEN,
			CSR1212_INVALID_ADDR_SPACE, CSR1212_INVALID_ADDR_SPACE);
595 596
	if (fifo_addr == CSR1212_INVALID_ADDR_SPACE) {
		ETH1394_PRINT_G(KERN_ERR, "Cannot register CSR space\n");
597
		hpsb_config_rom_ip1394_remove(host);
598 599
		return;
	}
L
Linus Torvalds 已提交
600

601
	dev = alloc_netdev(sizeof(*priv), "eth%d", ether1394_init_dev);
L
Linus Torvalds 已提交
602
	if (dev == NULL) {
603
		ETH1394_PRINT_G(KERN_ERR, "Out of memory\n");
L
Linus Torvalds 已提交
604
		goto out;
S
Stefan Richter 已提交
605
	}
L
Linus Torvalds 已提交
606

607
	SET_NETDEV_DEV(dev, &host->device);
L
Linus Torvalds 已提交
608 609 610 611 612 613

	priv = netdev_priv(dev);
	INIT_LIST_HEAD(&priv->ip_node_list);
	spin_lock_init(&priv->lock);
	priv->host = host;
	priv->local_fifo = fifo_addr;
614 615
	INIT_WORK(&priv->wake, ether1394_wake_queue);
	priv->wake_dev = dev;
L
Linus Torvalds 已提交
616 617 618

	hi = hpsb_create_hostinfo(&eth1394_highlevel, host, sizeof(*hi));
	if (hi == NULL) {
619
		ETH1394_PRINT_G(KERN_ERR, "Out of memory\n");
L
Linus Torvalds 已提交
620
		goto out;
S
Stefan Richter 已提交
621
	}
L
Linus Torvalds 已提交
622

623
	ether1394_reset_priv(dev, 1);
L
Linus Torvalds 已提交
624

625 626
	if (register_netdev(dev)) {
		ETH1394_PRINT_G(KERN_ERR, "Cannot register the driver\n");
L
Linus Torvalds 已提交
627 628 629
		goto out;
	}

630 631
	ETH1394_PRINT(KERN_INFO, dev->name, "IPv4 over IEEE 1394 (fw-host%d)\n",
		      host->id);
L
Linus Torvalds 已提交
632 633 634 635 636 637 638 639

	hi->host = host;
	hi->dev = dev;

	/* Ignore validity in hopes that it will be set in the future.  It'll
	 * be checked when the eth device is opened. */
	priv->broadcast_channel = host->csr.broadcast_channel & 0x3f;

640
	ether1394_recv_init(priv);
L
Linus Torvalds 已提交
641 642
	return;
out:
643
	if (dev)
L
Linus Torvalds 已提交
644 645 646
		free_netdev(dev);
	if (hi)
		hpsb_destroy_hostinfo(&eth1394_highlevel, host);
647
	hpsb_unregister_addrspace(&eth1394_highlevel, host, fifo_addr);
648
	hpsb_config_rom_ip1394_remove(host);
L
Linus Torvalds 已提交
649 650 651
}

/* Remove a card from our list */
S
Stefan Richter 已提交
652
static void ether1394_remove_host(struct hpsb_host *host)
L
Linus Torvalds 已提交
653 654
{
	struct eth1394_host_info *hi;
655
	struct eth1394_priv *priv;
L
Linus Torvalds 已提交
656 657

	hi = hpsb_get_hostinfo(&eth1394_highlevel, host);
658 659 660 661
	if (!hi)
		return;
	priv = netdev_priv(hi->dev);
	hpsb_unregister_addrspace(&eth1394_highlevel, host, priv->local_fifo);
662
	hpsb_config_rom_ip1394_remove(host);
663 664 665 666
	if (priv->iso)
		hpsb_iso_shutdown(priv->iso);
	unregister_netdev(hi->dev);
	free_netdev(hi->dev);
L
Linus Torvalds 已提交
667 668
}

S
Stefan Richter 已提交
669 670
/* A bus reset happened */
static void ether1394_host_reset(struct hpsb_host *host)
L
Linus Torvalds 已提交
671 672 673 674 675 676 677 678 679 680 681 682
{
	struct eth1394_host_info *hi;
	struct eth1394_priv *priv;
	struct net_device *dev;
	struct list_head *lh, *n;
	struct eth1394_node_ref *node;
	struct eth1394_node_info *node_info;
	unsigned long flags;

	hi = hpsb_get_hostinfo(&eth1394_highlevel, host);

	/* This can happen for hosts that we don't use */
683
	if (!hi)
L
Linus Torvalds 已提交
684 685 686
		return;

	dev = hi->dev;
S
Stefan Richter 已提交
687
	priv = netdev_priv(dev);
L
Linus Torvalds 已提交
688

S
Stefan Richter 已提交
689 690 691
	/* Reset our private host data, but not our MTU */
	netif_stop_queue(dev);
	ether1394_reset_priv(dev, 0);
L
Linus Torvalds 已提交
692 693

	list_for_each_entry(node, &priv->ip_node_list, list) {
S
Stefan Richter 已提交
694
		node_info = node->ud->device.driver_data;
L
Linus Torvalds 已提交
695 696 697

		spin_lock_irqsave(&node_info->pdg.lock, flags);

S
Stefan Richter 已提交
698
		list_for_each_safe(lh, n, &node_info->pdg.list)
L
Linus Torvalds 已提交
699 700 701 702 703 704 705 706
			purge_partial_datagram(lh);

		INIT_LIST_HEAD(&(node_info->pdg.list));
		node_info->pdg.sz = 0;

		spin_unlock_irqrestore(&node_info->pdg.lock, flags);
	}

S
Stefan Richter 已提交
707
	netif_wake_queue(dev);
L
Linus Torvalds 已提交
708 709 710 711 712 713 714 715 716 717 718
}

/******************************************
 * HW Header net device functions
 ******************************************/
/* These functions have been adapted from net/ethernet/eth.c */

/* Create a fake MAC header for an arbitrary protocol layer.
 * saddr=NULL means use device source address
 * daddr=NULL means leave destination address (eg unresolved arp). */
static int ether1394_header(struct sk_buff *skb, struct net_device *dev,
719 720
			    unsigned short type, const void *daddr,
			    const void *saddr, unsigned len)
L
Linus Torvalds 已提交
721
{
S
Stefan Richter 已提交
722 723
	struct eth1394hdr *eth =
			(struct eth1394hdr *)skb_push(skb, ETH1394_HLEN);
L
Linus Torvalds 已提交
724 725 726

	eth->h_proto = htons(type);

S
Stefan Richter 已提交
727
	if (dev->flags & (IFF_LOOPBACK | IFF_NOARP)) {
L
Linus Torvalds 已提交
728
		memset(eth->h_dest, 0, dev->addr_len);
S
Stefan Richter 已提交
729
		return dev->hard_header_len;
L
Linus Torvalds 已提交
730 731 732
	}

	if (daddr) {
S
Stefan Richter 已提交
733
		memcpy(eth->h_dest, daddr, dev->addr_len);
L
Linus Torvalds 已提交
734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750
		return dev->hard_header_len;
	}

	return -dev->hard_header_len;
}

/* Rebuild the faked MAC header. This is called after an ARP
 * (or in future other address resolution) has completed on this
 * sk_buff. We now let ARP fill in the other fields.
 *
 * This routine CANNOT use cached dst->neigh!
 * Really, it is used only when dst->neigh is wrong.
 */
static int ether1394_rebuild_header(struct sk_buff *skb)
{
	struct eth1394hdr *eth = (struct eth1394hdr *)skb->data;

751
	if (eth->h_proto == htons(ETH_P_IP))
S
Stefan Richter 已提交
752
		return arp_find((unsigned char *)&eth->h_dest, skb);
L
Linus Torvalds 已提交
753

754 755 756
	ETH1394_PRINT(KERN_DEBUG, skb->dev->name,
		      "unable to resolve type %04x addresses\n",
		      ntohs(eth->h_proto));
L
Linus Torvalds 已提交
757 758 759
	return 0;
}

S
Stephen Hemminger 已提交
760 761
static int ether1394_header_parse(const struct sk_buff *skb,
				  unsigned char *haddr)
L
Linus Torvalds 已提交
762
{
S
Stephen Hemminger 已提交
763
	memcpy(haddr, skb->dev->dev_addr, ETH1394_ALEN);
L
Linus Torvalds 已提交
764 765 766
	return ETH1394_ALEN;
}

767 768
static int ether1394_header_cache(const struct neighbour *neigh,
				  struct hh_cache *hh)
L
Linus Torvalds 已提交
769
{
770
	__be16 type = hh->hh_type;
L
Linus Torvalds 已提交
771
	struct net_device *dev = neigh->dev;
S
Stefan Richter 已提交
772 773
	struct eth1394hdr *eth =
		(struct eth1394hdr *)((u8 *)hh->hh_data + 16 - ETH1394_HLEN);
L
Linus Torvalds 已提交
774

775
	if (type == htons(ETH_P_802_3))
L
Linus Torvalds 已提交
776 777 778 779 780 781 782 783 784 785 786
		return -1;

	eth->h_proto = type;
	memcpy(eth->h_dest, neigh->ha, dev->addr_len);

	hh->hh_len = ETH1394_HLEN;
	return 0;
}

/* Called by Address Resolution module to notify changes in address. */
static void ether1394_header_cache_update(struct hh_cache *hh,
787 788
					  const struct net_device *dev,
					  const unsigned char * haddr)
L
Linus Torvalds 已提交
789
{
S
Stefan Richter 已提交
790
	memcpy((u8 *)hh->hh_data + 16 - ETH1394_HLEN, haddr, dev->addr_len);
L
Linus Torvalds 已提交
791 792 793 794 795 796 797
}

/******************************************
 * Datagram reception code
 ******************************************/

/* Copied from net/ethernet/eth.c */
798
static __be16 ether1394_type_trans(struct sk_buff *skb, struct net_device *dev)
L
Linus Torvalds 已提交
799 800 801 802
{
	struct eth1394hdr *eth;
	unsigned char *rawp;

803
	skb_reset_mac_header(skb);
S
Stefan Richter 已提交
804
	skb_pull(skb, ETH1394_HLEN);
L
Linus Torvalds 已提交
805 806 807
	eth = eth1394_hdr(skb);

	if (*eth->h_dest & 1) {
S
Stefan Richter 已提交
808
		if (memcmp(eth->h_dest, dev->broadcast, dev->addr_len) == 0)
L
Linus Torvalds 已提交
809 810 811 812 813 814 815 816
			skb->pkt_type = PACKET_BROADCAST;
#if 0
		else
			skb->pkt_type = PACKET_MULTICAST;
#endif
	} else {
		if (memcmp(eth->h_dest, dev->dev_addr, dev->addr_len))
			skb->pkt_type = PACKET_OTHERHOST;
S
Stefan Richter 已提交
817
	}
L
Linus Torvalds 已提交
818

S
Stefan Richter 已提交
819
	if (ntohs(eth->h_proto) >= 1536)
L
Linus Torvalds 已提交
820 821 822 823
		return eth->h_proto;

	rawp = skb->data;

S
Stefan Richter 已提交
824 825
	if (*(unsigned short *)rawp == 0xFFFF)
		return htons(ETH_P_802_3);
L
Linus Torvalds 已提交
826

S
Stefan Richter 已提交
827
	return htons(ETH_P_802_2);
L
Linus Torvalds 已提交
828 829 830 831
}

/* Parse an encapsulated IP1394 header into an ethernet frame packet.
 * We also perform ARP translation here, if need be.  */
832
static __be16 ether1394_parse_encap(struct sk_buff *skb, struct net_device *dev,
833
				 nodeid_t srcid, nodeid_t destid,
834
				 __be16 ether_type)
L
Linus Torvalds 已提交
835 836
{
	struct eth1394_priv *priv = netdev_priv(dev);
837 838
	__be64 dest_hw;
	__be16 ret = 0;
L
Linus Torvalds 已提交
839

S
Stefan Richter 已提交
840
	/* Setup our hw addresses. We use these to build the ethernet header. */
L
Linus Torvalds 已提交
841
	if (destid == (LOCAL_BUS | ALL_NODES))
842
		dest_hw = ~cpu_to_be64(0);  /* broadcast */
L
Linus Torvalds 已提交
843
	else
S
Stefan Richter 已提交
844
		dest_hw = cpu_to_be64((u64)priv->host->csr.guid_hi << 32 |
L
Linus Torvalds 已提交
845 846 847 848 849
				      priv->host->csr.guid_lo);

	/* If this is an ARP packet, convert it. First, we want to make
	 * use of some of the fields, since they tell us a little bit
	 * about the sending machine.  */
850
	if (ether_type == htons(ETH_P_ARP)) {
S
Stefan Richter 已提交
851
		struct eth1394_arp *arp1394 = (struct eth1394_arp *)skb->data;
L
Linus Torvalds 已提交
852 853 854
		struct arphdr *arp = (struct arphdr *)skb->data;
		unsigned char *arp_ptr = (unsigned char *)(arp + 1);
		u64 fifo_addr = (u64)ntohs(arp1394->fifo_hi) << 32 |
S
Stefan Richter 已提交
855
					   ntohl(arp1394->fifo_lo);
L
Linus Torvalds 已提交
856 857 858 859 860 861
		u8 max_rec = min(priv->host->csr.max_rec,
				 (u8)(arp1394->max_rec));
		int sspd = arp1394->sspd;
		u16 maxpayload;
		struct eth1394_node_ref *node;
		struct eth1394_node_info *node_info;
862
		__be64 guid;
L
Linus Torvalds 已提交
863 864 865 866 867 868

		/* Sanity check. MacOSX seems to be sending us 131 in this
		 * field (atleast on my Panther G5). Not sure why. */
		if (sspd > 5 || sspd < 0)
			sspd = 0;

S
Stefan Richter 已提交
869 870
		maxpayload = min(eth1394_speedto_maxpayload[sspd],
				 (u16)(1 << (max_rec + 1)));
L
Linus Torvalds 已提交
871

872
		guid = get_unaligned(&arp1394->s_uniq_id);
L
Linus Torvalds 已提交
873
		node = eth1394_find_node_guid(&priv->ip_node_list,
874
					      be64_to_cpu(guid));
S
Stefan Richter 已提交
875
		if (!node)
876
			return cpu_to_be16(0);
L
Linus Torvalds 已提交
877

S
Stefan Richter 已提交
878 879
		node_info =
		    (struct eth1394_node_info *)node->ud->device.driver_data;
L
Linus Torvalds 已提交
880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897

		/* Update our speed/payload/fifo_offset table */
		node_info->maxpayload =	maxpayload;
		node_info->sspd =	sspd;
		node_info->fifo =	fifo_addr;

		/* Now that we're done with the 1394 specific stuff, we'll
		 * need to alter some of the data.  Believe it or not, all
		 * that needs to be done is sender_IP_address needs to be
		 * moved, the destination hardware address get stuffed
		 * in and the hardware address length set to 8.
		 *
		 * IMPORTANT: The code below overwrites 1394 specific data
		 * needed above so keep the munging of the data for the
		 * higher level IP stack last. */

		arp->ar_hln = 8;
		arp_ptr += arp->ar_hln;		/* skip over sender unique id */
S
Stefan Richter 已提交
898
		*(u32 *)arp_ptr = arp1394->sip;	/* move sender IP addr */
L
Linus Torvalds 已提交
899 900
		arp_ptr += arp->ar_pln;		/* skip over sender IP addr */

B
Ben Collins 已提交
901
		if (arp->ar_op == htons(ARPOP_REQUEST))
902
			memset(arp_ptr, 0, sizeof(u64));
L
Linus Torvalds 已提交
903
		else
904
			memcpy(arp_ptr, dev->dev_addr, sizeof(u64));
L
Linus Torvalds 已提交
905 906 907
	}

	/* Now add the ethernet header. */
908 909
	if (dev_hard_header(skb, dev, ntohs(ether_type), &dest_hw, NULL,
			    skb->len) >= 0)
L
Linus Torvalds 已提交
910 911 912 913 914
		ret = ether1394_type_trans(skb, dev);

	return ret;
}

915
static int fragment_overlap(struct list_head *frag_list, int offset, int len)
L
Linus Torvalds 已提交
916 917
{
	struct fragment_info *fi;
918
	int end = offset + len;
L
Linus Torvalds 已提交
919

920 921
	list_for_each_entry(fi, frag_list, list)
		if (offset < fi->offset + fi->len && end > fi->offset)
L
Linus Torvalds 已提交
922
			return 1;
923

L
Linus Torvalds 已提交
924 925 926
	return 0;
}

927
static struct list_head *find_partial_datagram(struct list_head *pdgl, int dgl)
L
Linus Torvalds 已提交
928 929 930
{
	struct partial_datagram *pd;

S
Stefan Richter 已提交
931
	list_for_each_entry(pd, pdgl, list)
L
Linus Torvalds 已提交
932 933
		if (pd->dgl == dgl)
			return &pd->list;
S
Stefan Richter 已提交
934

L
Linus Torvalds 已提交
935 936 937 938
	return NULL;
}

/* Assumes that new fragment does not overlap any existing fragments */
939
static int new_fragment(struct list_head *frag_info, int offset, int len)
L
Linus Torvalds 已提交
940 941 942 943 944 945
{
	struct list_head *lh;
	struct fragment_info *fi, *fi2, *new;

	list_for_each(lh, frag_info) {
		fi = list_entry(lh, struct fragment_info, list);
S
Stefan Richter 已提交
946
		if (fi->offset + fi->len == offset) {
L
Linus Torvalds 已提交
947 948 949 950
			/* The new fragment can be tacked on to the end */
			fi->len += len;
			/* Did the new fragment plug a hole? */
			fi2 = list_entry(lh->next, struct fragment_info, list);
S
Stefan Richter 已提交
951
			if (fi->offset + fi->len == fi2->offset) {
L
Linus Torvalds 已提交
952 953 954 955 956 957
				/* glue fragments together */
				fi->len += fi2->len;
				list_del(lh->next);
				kfree(fi2);
			}
			return 0;
S
Stefan Richter 已提交
958
		} else if (offset + len == fi->offset) {
L
Linus Torvalds 已提交
959 960 961 962 963
			/* The new fragment can be tacked on to the beginning */
			fi->offset = offset;
			fi->len += len;
			/* Did the new fragment plug a hole? */
			fi2 = list_entry(lh->prev, struct fragment_info, list);
S
Stefan Richter 已提交
964
			if (fi2->offset + fi2->len == fi->offset) {
L
Linus Torvalds 已提交
965 966 967 968 969 970
				/* glue fragments together */
				fi2->len += fi->len;
				list_del(lh);
				kfree(fi);
			}
			return 0;
S
Stefan Richter 已提交
971
		} else if (offset > fi->offset + fi->len) {
L
Linus Torvalds 已提交
972
			break;
S
Stefan Richter 已提交
973
		} else if (offset + len < fi->offset) {
L
Linus Torvalds 已提交
974 975 976 977 978
			lh = lh->prev;
			break;
		}
	}

S
Stefan Richter 已提交
979
	new = kmalloc(sizeof(*new), GFP_ATOMIC);
L
Linus Torvalds 已提交
980 981 982 983 984 985 986 987 988 989
	if (!new)
		return -ENOMEM;

	new->offset = offset;
	new->len = len;

	list_add(&new->list, lh);
	return 0;
}

990 991 992
static int new_partial_datagram(struct net_device *dev, struct list_head *pdgl,
				int dgl, int dg_size, char *frag_buf,
				int frag_off, int frag_len)
L
Linus Torvalds 已提交
993 994 995
{
	struct partial_datagram *new;

S
Stefan Richter 已提交
996
	new = kmalloc(sizeof(*new), GFP_ATOMIC);
L
Linus Torvalds 已提交
997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027
	if (!new)
		return -ENOMEM;

	INIT_LIST_HEAD(&new->frag_info);

	if (new_fragment(&new->frag_info, frag_off, frag_len) < 0) {
		kfree(new);
		return -ENOMEM;
	}

	new->dgl = dgl;
	new->dg_size = dg_size;

	new->skb = dev_alloc_skb(dg_size + dev->hard_header_len + 15);
	if (!new->skb) {
		struct fragment_info *fi = list_entry(new->frag_info.next,
						      struct fragment_info,
						      list);
		kfree(fi);
		kfree(new);
		return -ENOMEM;
	}

	skb_reserve(new->skb, (dev->hard_header_len + 15) & ~15);
	new->pbuf = skb_put(new->skb, dg_size);
	memcpy(new->pbuf + frag_off, frag_buf, frag_len);

	list_add(&new->list, pdgl);
	return 0;
}

1028 1029
static int update_partial_datagram(struct list_head *pdgl, struct list_head *lh,
				   char *frag_buf, int frag_off, int frag_len)
L
Linus Torvalds 已提交
1030
{
S
Stefan Richter 已提交
1031 1032
	struct partial_datagram *pd =
			list_entry(lh, struct partial_datagram, list);
L
Linus Torvalds 已提交
1033

S
Stefan Richter 已提交
1034
	if (new_fragment(&pd->frag_info, frag_off, frag_len) < 0)
L
Linus Torvalds 已提交
1035 1036 1037 1038 1039 1040
		return -ENOMEM;

	memcpy(pd->pbuf + frag_off, frag_buf, frag_len);

	/* Move list entry to beginnig of list so that oldest partial
	 * datagrams percolate to the end of the list */
A
Akinobu Mita 已提交
1041
	list_move(lh, pdgl);
L
Linus Torvalds 已提交
1042 1043 1044
	return 0;
}

1045
static int is_datagram_complete(struct list_head *lh, int dg_size)
L
Linus Torvalds 已提交
1046
{
1047 1048 1049 1050 1051
	struct partial_datagram *pd;
	struct fragment_info *fi;

	pd = list_entry(lh, struct partial_datagram, list);
	fi = list_entry(pd->frag_info.next, struct fragment_info, list);
L
Linus Torvalds 已提交
1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065

	return (fi->len == dg_size);
}

/* Packet reception. We convert the IP1394 encapsulation header to an
 * ethernet header, and fill it with some of our other fields. This is
 * an incoming packet from the 1394 bus.  */
static int ether1394_data_handler(struct net_device *dev, int srcid, int destid,
				  char *buf, int len)
{
	struct sk_buff *skb;
	unsigned long flags;
	struct eth1394_priv *priv = netdev_priv(dev);
	union eth1394_hdr *hdr = (union eth1394_hdr *)buf;
1066
	__be16 ether_type = cpu_to_be16(0);  /* initialized to clear warning */
L
Linus Torvalds 已提交
1067 1068 1069 1070 1071 1072 1073
	int hdr_len;
	struct unit_directory *ud = priv->ud_list[NODEID_TO_NODE(srcid)];
	struct eth1394_node_info *node_info;

	if (!ud) {
		struct eth1394_node_ref *node;
		node = eth1394_find_node_nodeid(&priv->ip_node_list, srcid);
1074
		if (unlikely(!node)) {
L
Linus Torvalds 已提交
1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085
			HPSB_PRINT(KERN_ERR, "ether1394 rx: sender nodeid "
				   "lookup failure: " NODE_BUS_FMT,
				   NODE_BUS_ARGS(priv->host, srcid));
			priv->stats.rx_dropped++;
			return -1;
		}
		ud = node->ud;

		priv->ud_list[NODEID_TO_NODE(srcid)] = ud;
	}

S
Stefan Richter 已提交
1086
	node_info = (struct eth1394_node_info *)ud->device.driver_data;
L
Linus Torvalds 已提交
1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098

	/* First, did we receive a fragmented or unfragmented datagram? */
	hdr->words.word1 = ntohs(hdr->words.word1);

	hdr_len = hdr_type_len[hdr->common.lf];

	if (hdr->common.lf == ETH1394_HDR_LF_UF) {
		/* An unfragmented datagram has been received by the ieee1394
		 * bus. Build an skbuff around it so we can pass it to the
		 * high level network layer. */

		skb = dev_alloc_skb(len + dev->hard_header_len + 15);
1099
		if (unlikely(!skb)) {
1100
			ETH1394_PRINT_G(KERN_ERR, "Out of memory\n");
L
Linus Torvalds 已提交
1101 1102 1103 1104
			priv->stats.rx_dropped++;
			return -1;
		}
		skb_reserve(skb, (dev->hard_header_len + 15) & ~15);
S
Stefan Richter 已提交
1105 1106
		memcpy(skb_put(skb, len - hdr_len), buf + hdr_len,
		       len - hdr_len);
L
Linus Torvalds 已提交
1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188
		ether_type = hdr->uf.ether_type;
	} else {
		/* A datagram fragment has been received, now the fun begins. */

		struct list_head *pdgl, *lh;
		struct partial_datagram *pd;
		int fg_off;
		int fg_len = len - hdr_len;
		int dg_size;
		int dgl;
		int retval;
		struct pdg_list *pdg = &(node_info->pdg);

		hdr->words.word3 = ntohs(hdr->words.word3);
		/* The 4th header word is reserved so no need to do ntohs() */

		if (hdr->common.lf == ETH1394_HDR_LF_FF) {
			ether_type = hdr->ff.ether_type;
			dgl = hdr->ff.dgl;
			dg_size = hdr->ff.dg_size + 1;
			fg_off = 0;
		} else {
			hdr->words.word2 = ntohs(hdr->words.word2);
			dgl = hdr->sf.dgl;
			dg_size = hdr->sf.dg_size + 1;
			fg_off = hdr->sf.fg_off;
		}
		spin_lock_irqsave(&pdg->lock, flags);

		pdgl = &(pdg->list);
		lh = find_partial_datagram(pdgl, dgl);

		if (lh == NULL) {
			while (pdg->sz >= max_partial_datagrams) {
				/* remove the oldest */
				purge_partial_datagram(pdgl->prev);
				pdg->sz--;
			}

			retval = new_partial_datagram(dev, pdgl, dgl, dg_size,
						      buf + hdr_len, fg_off,
						      fg_len);
			if (retval < 0) {
				spin_unlock_irqrestore(&pdg->lock, flags);
				goto bad_proto;
			}
			pdg->sz++;
			lh = find_partial_datagram(pdgl, dgl);
		} else {
			pd = list_entry(lh, struct partial_datagram, list);

			if (fragment_overlap(&pd->frag_info, fg_off, fg_len)) {
				/* Overlapping fragments, obliterate old
				 * datagram and start new one. */
				purge_partial_datagram(lh);
				retval = new_partial_datagram(dev, pdgl, dgl,
							      dg_size,
							      buf + hdr_len,
							      fg_off, fg_len);
				if (retval < 0) {
					pdg->sz--;
					spin_unlock_irqrestore(&pdg->lock, flags);
					goto bad_proto;
				}
			} else {
				retval = update_partial_datagram(pdgl, lh,
								 buf + hdr_len,
								 fg_off, fg_len);
				if (retval < 0) {
					/* Couldn't save off fragment anyway
					 * so might as well obliterate the
					 * datagram now. */
					purge_partial_datagram(lh);
					pdg->sz--;
					spin_unlock_irqrestore(&pdg->lock, flags);
					goto bad_proto;
				}
			} /* fragment overlap */
		} /* new datagram or add to existing one */

		pd = list_entry(lh, struct partial_datagram, list);

S
Stefan Richter 已提交
1189
		if (hdr->common.lf == ETH1394_HDR_LF_FF)
L
Linus Torvalds 已提交
1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217
			pd->ether_type = ether_type;

		if (is_datagram_complete(lh, dg_size)) {
			ether_type = pd->ether_type;
			pdg->sz--;
			skb = skb_get(pd->skb);
			purge_partial_datagram(lh);
			spin_unlock_irqrestore(&pdg->lock, flags);
		} else {
			/* Datagram is not complete, we're done for the
			 * moment. */
			spin_unlock_irqrestore(&pdg->lock, flags);
			return 0;
		}
	} /* unframgented datagram or fragmented one */

	/* Write metadata, and then pass to the receive level */
	skb->dev = dev;
	skb->ip_summed = CHECKSUM_UNNECESSARY;	/* don't check it */

	/* Parse the encapsulation header. This actually does the job of
	 * converting to an ethernet frame header, aswell as arp
	 * conversion if needed. ARP conversion is easier in this
	 * direction, since we are using ethernet as our backend.  */
	skb->protocol = ether1394_parse_encap(skb, dev, srcid, destid,
					      ether_type);

	spin_lock_irqsave(&priv->lock, flags);
S
Stefan Richter 已提交
1218

L
Linus Torvalds 已提交
1219 1220 1221 1222
	if (!skb->protocol) {
		priv->stats.rx_errors++;
		priv->stats.rx_dropped++;
		dev_kfree_skb_any(skb);
1223
	} else if (netif_rx(skb) == NET_RX_DROP) {
L
Linus Torvalds 已提交
1224 1225
		priv->stats.rx_errors++;
		priv->stats.rx_dropped++;
1226 1227 1228
	} else {
		priv->stats.rx_packets++;
		priv->stats.rx_bytes += skb->len;
L
Linus Torvalds 已提交
1229 1230
	}

1231
	spin_unlock_irqrestore(&priv->lock, flags);
L
Linus Torvalds 已提交
1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247

bad_proto:
	if (netif_queue_stopped(dev))
		netif_wake_queue(dev);

	dev->last_rx = jiffies;

	return 0;
}

static int ether1394_write(struct hpsb_host *host, int srcid, int destid,
			   quadlet_t *data, u64 addr, size_t len, u16 flags)
{
	struct eth1394_host_info *hi;

	hi = hpsb_get_hostinfo(&eth1394_highlevel, host);
1248
	if (unlikely(!hi)) {
1249 1250
		ETH1394_PRINT_G(KERN_ERR, "No net device at fw-host%d\n",
				host->id);
L
Linus Torvalds 已提交
1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261
		return RCODE_ADDRESS_ERROR;
	}

	if (ether1394_data_handler(hi->dev, srcid, destid, (char*)data, len))
		return RCODE_ADDRESS_ERROR;
	else
		return RCODE_COMPLETE;
}

static void ether1394_iso(struct hpsb_iso *iso)
{
1262
	__be32 *data;
L
Linus Torvalds 已提交
1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273
	char *buf;
	struct eth1394_host_info *hi;
	struct net_device *dev;
	struct eth1394_priv *priv;
	unsigned int len;
	u32 specifier_id;
	u16 source_id;
	int i;
	int nready;

	hi = hpsb_get_hostinfo(&eth1394_highlevel, iso->host);
1274
	if (unlikely(!hi)) {
1275 1276
		ETH1394_PRINT_G(KERN_ERR, "No net device at fw-host%d\n",
				iso->host->id);
L
Linus Torvalds 已提交
1277 1278 1279 1280 1281 1282 1283 1284 1285
		return;
	}

	dev = hi->dev;

	nready = hpsb_iso_n_ready(iso);
	for (i = 0; i < nready; i++) {
		struct hpsb_iso_packet_info *info =
			&iso->infos[(iso->first_packet + i) % iso->buf_packets];
1286
		data = (__be32 *)(iso->data_buf.kvirt + info->offset);
L
Linus Torvalds 已提交
1287 1288 1289 1290 1291

		/* skip over GASP header */
		buf = (char *)data + 8;
		len = info->len - 8;

S
Stefan Richter 已提交
1292 1293
		specifier_id = (be32_to_cpu(data[0]) & 0xffff) << 8 |
			       (be32_to_cpu(data[1]) & 0xff000000) >> 24;
L
Linus Torvalds 已提交
1294 1295 1296 1297
		source_id = be32_to_cpu(data[0]) >> 16;

		priv = netdev_priv(dev);

S
Stefan Richter 已提交
1298 1299
		if (info->channel != (iso->host->csr.broadcast_channel & 0x3f)
		    || specifier_id != ETHER1394_GASP_SPECIFIER_ID) {
L
Linus Torvalds 已提交
1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326
			/* This packet is not for us */
			continue;
		}
		ether1394_data_handler(dev, source_id, LOCAL_BUS | ALL_NODES,
				       buf, len);
	}

	hpsb_iso_recv_release_packets(iso, i);

	dev->last_rx = jiffies;
}

/******************************************
 * Datagram transmission code
 ******************************************/

/* Convert a standard ARP packet to 1394 ARP. The first 8 bytes (the entire
 * arphdr) is the same format as the ip1394 header, so they overlap.  The rest
 * needs to be munged a bit.  The remainder of the arphdr is formatted based
 * on hwaddr len and ipaddr len.  We know what they'll be, so it's easy to
 * judge.
 *
 * Now that the EUI is used for the hardware address all we need to do to make
 * this work for 1394 is to insert 2 quadlets that contain max_rec size,
 * speed, and unicast FIFO address information between the sender_unique_id
 * and the IP addresses.
 */
1327 1328
static void ether1394_arp_to_1394arp(struct sk_buff *skb,
				     struct net_device *dev)
L
Linus Torvalds 已提交
1329 1330 1331 1332 1333 1334 1335 1336 1337 1338
{
	struct eth1394_priv *priv = netdev_priv(dev);
	struct arphdr *arp = (struct arphdr *)skb->data;
	unsigned char *arp_ptr = (unsigned char *)(arp + 1);
	struct eth1394_arp *arp1394 = (struct eth1394_arp *)skb->data;

	arp1394->hw_addr_len	= 16;
	arp1394->sip		= *(u32*)(arp_ptr + ETH1394_ALEN);
	arp1394->max_rec	= priv->host->csr.max_rec;
	arp1394->sspd		= priv->host->csr.lnk_spd;
S
Stefan Richter 已提交
1339 1340
	arp1394->fifo_hi	= htons(priv->local_fifo >> 32);
	arp1394->fifo_lo	= htonl(priv->local_fifo & ~0x0);
L
Linus Torvalds 已提交
1341 1342 1343 1344
}

/* We need to encapsulate the standard header with our own. We use the
 * ethernet header's proto for our own. */
1345 1346 1347 1348
static unsigned int ether1394_encapsulate_prep(unsigned int max_payload,
					       __be16 proto,
					       union eth1394_hdr *hdr,
					       u16 dg_size, u16 dgl)
L
Linus Torvalds 已提交
1349
{
S
Stefan Richter 已提交
1350 1351
	unsigned int adj_max_payload =
				max_payload - hdr_type_len[ETH1394_HDR_LF_UF];
L
Linus Torvalds 已提交
1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363

	/* Does it all fit in one packet? */
	if (dg_size <= adj_max_payload) {
		hdr->uf.lf = ETH1394_HDR_LF_UF;
		hdr->uf.ether_type = proto;
	} else {
		hdr->ff.lf = ETH1394_HDR_LF_FF;
		hdr->ff.ether_type = proto;
		hdr->ff.dg_size = dg_size - 1;
		hdr->ff.dgl = dgl;
		adj_max_payload = max_payload - hdr_type_len[ETH1394_HDR_LF_FF];
	}
J
Julia Lawall 已提交
1364
	return DIV_ROUND_UP(dg_size, adj_max_payload);
L
Linus Torvalds 已提交
1365 1366
}

1367 1368 1369
static unsigned int ether1394_encapsulate(struct sk_buff *skb,
					  unsigned int max_payload,
					  union eth1394_hdr *hdr)
L
Linus Torvalds 已提交
1370 1371 1372 1373 1374 1375
{
	union eth1394_hdr *bufhdr;
	int ftype = hdr->common.lf;
	int hdrsz = hdr_type_len[ftype];
	unsigned int adj_max_payload = max_payload - hdrsz;

S
Stefan Richter 已提交
1376
	switch (ftype) {
L
Linus Torvalds 已提交
1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407
	case ETH1394_HDR_LF_UF:
		bufhdr = (union eth1394_hdr *)skb_push(skb, hdrsz);
		bufhdr->words.word1 = htons(hdr->words.word1);
		bufhdr->words.word2 = hdr->words.word2;
		break;

	case ETH1394_HDR_LF_FF:
		bufhdr = (union eth1394_hdr *)skb_push(skb, hdrsz);
		bufhdr->words.word1 = htons(hdr->words.word1);
		bufhdr->words.word2 = hdr->words.word2;
		bufhdr->words.word3 = htons(hdr->words.word3);
		bufhdr->words.word4 = 0;

		/* Set frag type here for future interior fragments */
		hdr->common.lf = ETH1394_HDR_LF_IF;
		hdr->sf.fg_off = 0;
		break;

	default:
		hdr->sf.fg_off += adj_max_payload;
		bufhdr = (union eth1394_hdr *)skb_pull(skb, adj_max_payload);
		if (max_payload >= skb->len)
			hdr->common.lf = ETH1394_HDR_LF_LF;
		bufhdr->words.word1 = htons(hdr->words.word1);
		bufhdr->words.word2 = htons(hdr->words.word2);
		bufhdr->words.word3 = htons(hdr->words.word3);
		bufhdr->words.word4 = 0;
	}
	return min(max_payload, skb->len);
}

1408
static struct hpsb_packet *ether1394_alloc_common_packet(struct hpsb_host *host)
L
Linus Torvalds 已提交
1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420
{
	struct hpsb_packet *p;

	p = hpsb_alloc_packet(0);
	if (p) {
		p->host = host;
		p->generation = get_hpsb_generation(host);
		p->type = hpsb_async;
	}
	return p;
}

1421 1422
static int ether1394_prep_write_packet(struct hpsb_packet *p,
				       struct hpsb_host *host, nodeid_t node,
S
Stefan Richter 已提交
1423
				       u64 addr, void *data, int tx_len)
L
Linus Torvalds 已提交
1424 1425 1426
{
	p->node_id = node;

1427 1428
	if (hpsb_get_tlabel(p))
		return -EAGAIN;
L
Linus Torvalds 已提交
1429

1430
	p->tcode = TCODE_WRITEB;
L
Linus Torvalds 已提交
1431 1432
	p->header_size = 16;
	p->expect_response = 1;
S
Stefan Richter 已提交
1433 1434
	p->header[0] =
		p->node_id << 16 | p->tlabel << 10 | 1 << 8 | TCODE_WRITEB << 4;
1435 1436
	p->header[1] = host->node_id << 16 | addr >> 32;
	p->header[2] = addr & 0xffffffff;
L
Linus Torvalds 已提交
1437 1438
	p->header[3] = tx_len << 16;
	p->data_size = (tx_len + 3) & ~3;
S
Stefan Richter 已提交
1439
	p->data = data;
L
Linus Torvalds 已提交
1440 1441 1442 1443

	return 0;
}

1444 1445 1446
static void ether1394_prep_gasp_packet(struct hpsb_packet *p,
				       struct eth1394_priv *priv,
				       struct sk_buff *skb, int length)
L
Linus Torvalds 已提交
1447 1448 1449 1450
{
	p->header_size = 4;
	p->tcode = TCODE_STREAM_DATA;

S
Stefan Richter 已提交
1451 1452
	p->header[0] = length << 16 | 3 << 14 | priv->broadcast_channel << 8 |
		       TCODE_STREAM_DATA << 4;
L
Linus Torvalds 已提交
1453
	p->data_size = length;
S
Stefan Richter 已提交
1454 1455
	p->data = (quadlet_t *)skb->data - 2;
	p->data[0] = cpu_to_be32(priv->host->node_id << 16 |
L
Linus Torvalds 已提交
1456
				 ETHER1394_GASP_SPECIFIER_ID_HI);
S
Stefan Richter 已提交
1457
	p->data[1] = cpu_to_be32(ETHER1394_GASP_SPECIFIER_ID_LO << 24 |
1458
				 ETHER1394_GASP_VERSION);
L
Linus Torvalds 已提交
1459 1460

	p->speed_code = priv->bc_sspd;
1461 1462 1463

	/* prevent hpsb_send_packet() from overriding our speed code */
	p->node_id = LOCAL_BUS | ALL_NODES;
L
Linus Torvalds 已提交
1464 1465
}

1466
static void ether1394_free_packet(struct hpsb_packet *packet)
L
Linus Torvalds 已提交
1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481
{
	if (packet->tcode != TCODE_STREAM_DATA)
		hpsb_free_tlabel(packet);
	hpsb_free_packet(packet);
}

static void ether1394_complete_cb(void *__ptask);

static int ether1394_send_packet(struct packet_task *ptask, unsigned int tx_len)
{
	struct eth1394_priv *priv = ptask->priv;
	struct hpsb_packet *packet = NULL;

	packet = ether1394_alloc_common_packet(priv->host);
	if (!packet)
1482
		return -ENOMEM;
L
Linus Torvalds 已提交
1483 1484

	if (ptask->tx_type == ETH1394_GASP) {
S
Stefan Richter 已提交
1485
		int length = tx_len + 2 * sizeof(quadlet_t);
L
Linus Torvalds 已提交
1486 1487 1488 1489 1490 1491 1492

		ether1394_prep_gasp_packet(packet, priv, ptask->skb, length);
	} else if (ether1394_prep_write_packet(packet, priv->host,
					       ptask->dest_node,
					       ptask->addr, ptask->skb->data,
					       tx_len)) {
		hpsb_free_packet(packet);
1493
		return -EAGAIN;
L
Linus Torvalds 已提交
1494 1495 1496 1497 1498 1499 1500 1501
	}

	ptask->packet = packet;
	hpsb_set_packet_complete_task(ptask->packet, ether1394_complete_cb,
				      ptask);

	if (hpsb_send_packet(packet) < 0) {
		ether1394_free_packet(packet);
1502
		return -EIO;
L
Linus Torvalds 已提交
1503 1504 1505 1506 1507 1508
	}

	return 0;
}

/* Task function to be run when a datagram transmission is completed */
1509
static void ether1394_dg_complete(struct packet_task *ptask, int fail)
L
Linus Torvalds 已提交
1510 1511
{
	struct sk_buff *skb = ptask->skb;
S
Stefan Richter 已提交
1512
	struct eth1394_priv *priv = netdev_priv(skb->dev);
L
Linus Torvalds 已提交
1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544
	unsigned long flags;

	/* Statistics */
	spin_lock_irqsave(&priv->lock, flags);
	if (fail) {
		priv->stats.tx_dropped++;
		priv->stats.tx_errors++;
	} else {
		priv->stats.tx_bytes += skb->len;
		priv->stats.tx_packets++;
	}
	spin_unlock_irqrestore(&priv->lock, flags);

	dev_kfree_skb_any(skb);
	kmem_cache_free(packet_task_cache, ptask);
}

/* Callback for when a packet has been sent and the status of that packet is
 * known */
static void ether1394_complete_cb(void *__ptask)
{
	struct packet_task *ptask = (struct packet_task *)__ptask;
	struct hpsb_packet *packet = ptask->packet;
	int fail = 0;

	if (packet->tcode != TCODE_STREAM_DATA)
		fail = hpsb_packet_success(packet);

	ether1394_free_packet(packet);

	ptask->outstanding_pkts--;
	if (ptask->outstanding_pkts > 0 && !fail) {
1545
		int tx_len, err;
L
Linus Torvalds 已提交
1546 1547 1548 1549

		/* Add the encapsulation header to the fragment */
		tx_len = ether1394_encapsulate(ptask->skb, ptask->max_payload,
					       &ptask->hdr);
1550 1551 1552 1553 1554
		err = ether1394_send_packet(ptask, tx_len);
		if (err) {
			if (err == -EAGAIN)
				ETH1394_PRINT_G(KERN_ERR, "Out of tlabels\n");

L
Linus Torvalds 已提交
1555
			ether1394_dg_complete(ptask, 1);
1556
		}
L
Linus Torvalds 已提交
1557 1558 1559 1560 1561 1562
	} else {
		ether1394_dg_complete(ptask, fail);
	}
}

/* Transmit a packet (called by kernel) */
S
Stefan Richter 已提交
1563
static int ether1394_tx(struct sk_buff *skb, struct net_device *dev)
L
Linus Torvalds 已提交
1564
{
1565
	struct eth1394hdr hdr_buf;
L
Linus Torvalds 已提交
1566
	struct eth1394_priv *priv = netdev_priv(dev);
B
Ben Collins 已提交
1567
	__be16 proto;
L
Linus Torvalds 已提交
1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578
	unsigned long flags;
	nodeid_t dest_node;
	eth1394_tx_type tx_type;
	unsigned int tx_len;
	unsigned int max_payload;
	u16 dg_size;
	u16 dgl;
	struct packet_task *ptask;
	struct eth1394_node_ref *node;
	struct eth1394_node_info *node_info = NULL;

1579
	ptask = kmem_cache_alloc(packet_task_cache, GFP_ATOMIC);
1580
	if (ptask == NULL)
L
Linus Torvalds 已提交
1581 1582 1583 1584 1585 1586
		goto fail;

	/* XXX Ignore this for now. Noticed that when MacOSX is the IRM,
	 * it does not set our validity bit. We need to compensate for
	 * that somewhere else, but not in eth1394. */
#if 0
1587
	if ((priv->host->csr.broadcast_channel & 0xc0000000) != 0xc0000000)
L
Linus Torvalds 已提交
1588 1589 1590
		goto fail;
#endif

1591
	skb = skb_share_check(skb, GFP_ATOMIC);
1592
	if (!skb)
L
Linus Torvalds 已提交
1593 1594
		goto fail;

1595 1596 1597
	/* Get rid of the fake eth1394 header, but first make a copy.
	 * We might need to rebuild the header on tx failure. */
	memcpy(&hdr_buf, skb->data, sizeof(hdr_buf));
L
Linus Torvalds 已提交
1598 1599
	skb_pull(skb, ETH1394_HLEN);

1600
	proto = hdr_buf.h_proto;
L
Linus Torvalds 已提交
1601 1602 1603 1604
	dg_size = skb->len;

	/* Set the transmission type for the packet.  ARP packets and IP
	 * broadcast packets are sent via GASP. */
1605
	if (memcmp(hdr_buf.h_dest, dev->broadcast, ETH1394_ALEN) == 0 ||
1606 1607
	    proto == htons(ETH_P_ARP) ||
	    (proto == htons(ETH_P_IP) &&
1608
	     IN_MULTICAST(ntohl(ip_hdr(skb)->daddr)))) {
L
Linus Torvalds 已提交
1609 1610 1611
		tx_type = ETH1394_GASP;
		dest_node = LOCAL_BUS | ALL_NODES;
		max_payload = priv->bc_maxpayload - ETHER1394_GASP_OVERHEAD;
S
Stefan Richter 已提交
1612
		BUG_ON(max_payload < 512 - ETHER1394_GASP_OVERHEAD);
L
Linus Torvalds 已提交
1613 1614 1615 1616
		dgl = priv->bc_dgl;
		if (max_payload < dg_size + hdr_type_len[ETH1394_HDR_LF_UF])
			priv->bc_dgl++;
	} else {
1617
		__be64 guid = get_unaligned((__be64 *)hdr_buf.h_dest);
1618

L
Linus Torvalds 已提交
1619
		node = eth1394_find_node_guid(&priv->ip_node_list,
1620
					      be64_to_cpu(guid));
1621
		if (!node)
L
Linus Torvalds 已提交
1622
			goto fail;
1623

S
Stefan Richter 已提交
1624 1625
		node_info =
		    (struct eth1394_node_info *)node->ud->device.driver_data;
1626
		if (node_info->fifo == CSR1212_INVALID_ADDR_SPACE)
L
Linus Torvalds 已提交
1627 1628 1629 1630
			goto fail;

		dest_node = node->ud->ne->nodeid;
		max_payload = node_info->maxpayload;
S
Stefan Richter 已提交
1631
		BUG_ON(max_payload < 512 - ETHER1394_GASP_OVERHEAD);
L
Linus Torvalds 已提交
1632 1633 1634 1635 1636 1637 1638 1639

		dgl = node_info->dgl;
		if (max_payload < dg_size + hdr_type_len[ETH1394_HDR_LF_UF])
			node_info->dgl++;
		tx_type = ETH1394_WRREQ;
	}

	/* If this is an ARP packet, convert it */
1640
	if (proto == htons(ETH_P_ARP))
S
Stefan Richter 已提交
1641
		ether1394_arp_to_1394arp(skb, dev);
L
Linus Torvalds 已提交
1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663

	ptask->hdr.words.word1 = 0;
	ptask->hdr.words.word2 = 0;
	ptask->hdr.words.word3 = 0;
	ptask->hdr.words.word4 = 0;
	ptask->skb = skb;
	ptask->priv = priv;
	ptask->tx_type = tx_type;

	if (tx_type != ETH1394_GASP) {
		u64 addr;

		spin_lock_irqsave(&priv->lock, flags);
		addr = node_info->fifo;
		spin_unlock_irqrestore(&priv->lock, flags);

		ptask->addr = addr;
		ptask->dest_node = dest_node;
	}

	ptask->tx_type = tx_type;
	ptask->max_payload = max_payload;
S
Stefan Richter 已提交
1664 1665
	ptask->outstanding_pkts = ether1394_encapsulate_prep(max_payload,
					proto, &ptask->hdr, dg_size, dgl);
L
Linus Torvalds 已提交
1666 1667 1668 1669

	/* Add the encapsulation header to the fragment */
	tx_len = ether1394_encapsulate(skb, max_payload, &ptask->hdr);
	dev->trans_start = jiffies;
1670 1671 1672 1673
	if (ether1394_send_packet(ptask, tx_len)) {
		if (dest_node == (LOCAL_BUS | ALL_NODES))
			goto fail;

1674 1675 1676 1677 1678 1679 1680 1681
		/* At this point we want to restore the packet.  When we return
		 * here with NETDEV_TX_BUSY we will get another entrance in this
		 * routine with the same skb and we need it to look the same.
		 * So we pull 4 more bytes, then build the header again. */
		skb_pull(skb, 4);
		ether1394_header(skb, dev, ntohs(hdr_buf.h_proto),
				 hdr_buf.h_dest, NULL, 0);

1682 1683 1684 1685 1686 1687 1688
		/* Most failures of ether1394_send_packet are recoverable. */
		netif_stop_queue(dev);
		priv->wake_node = dest_node;
		schedule_work(&priv->wake);
		kmem_cache_free(packet_task_cache, ptask);
		return NETDEV_TX_BUSY;
	}
L
Linus Torvalds 已提交
1689

1690
	return NETDEV_TX_OK;
L
Linus Torvalds 已提交
1691 1692 1693 1694 1695 1696 1697
fail:
	if (ptask)
		kmem_cache_free(packet_task_cache, ptask);

	if (skb != NULL)
		dev_kfree_skb(skb);

S
Stefan Richter 已提交
1698
	spin_lock_irqsave(&priv->lock, flags);
L
Linus Torvalds 已提交
1699 1700
	priv->stats.tx_dropped++;
	priv->stats.tx_errors++;
S
Stefan Richter 已提交
1701
	spin_unlock_irqrestore(&priv->lock, flags);
L
Linus Torvalds 已提交
1702

1703 1704 1705 1706 1707 1708 1709 1710 1711
	/*
	 * FIXME: According to a patch from 2003-02-26, "returning non-zero
	 * causes serious problems" here, allegedly.  Before that patch,
	 * -ERRNO was returned which is not appropriate under Linux 2.6.
	 * Perhaps more needs to be done?  Stop the queue in serious
	 * conditions and restart it elsewhere?
	 */
	/* return NETDEV_TX_BUSY; */
	return NETDEV_TX_OK;
L
Linus Torvalds 已提交
1712 1713
}

S
Stefan Richter 已提交
1714 1715
static void ether1394_get_drvinfo(struct net_device *dev,
				  struct ethtool_drvinfo *info)
L
Linus Torvalds 已提交
1716
{
S
Stefan Richter 已提交
1717 1718
	strcpy(info->driver, driver_name);
	strcpy(info->bus_info, "ieee1394"); /* FIXME provide more detail? */
L
Linus Torvalds 已提交
1719 1720 1721 1722 1723 1724
}

static struct ethtool_ops ethtool_ops = {
	.get_drvinfo = ether1394_get_drvinfo
};

1725
static int __init ether1394_init_module(void)
L
Linus Torvalds 已提交
1726
{
1727 1728
	int err;

S
Stefan Richter 已提交
1729 1730
	packet_task_cache = kmem_cache_create("packet_task",
					      sizeof(struct packet_task),
1731
					      0, 0, NULL);
1732 1733
	if (!packet_task_cache)
		return -ENOMEM;
L
Linus Torvalds 已提交
1734 1735

	hpsb_register_highlevel(&eth1394_highlevel);
1736 1737 1738 1739 1740 1741
	err = hpsb_register_protocol(&eth1394_proto_driver);
	if (err) {
		hpsb_unregister_highlevel(&eth1394_highlevel);
		kmem_cache_destroy(packet_task_cache);
	}
	return err;
L
Linus Torvalds 已提交
1742 1743
}

1744
static void __exit ether1394_exit_module(void)
L
Linus Torvalds 已提交
1745 1746 1747 1748 1749 1750 1751 1752
{
	hpsb_unregister_protocol(&eth1394_proto_driver);
	hpsb_unregister_highlevel(&eth1394_highlevel);
	kmem_cache_destroy(packet_task_cache);
}

module_init(ether1394_init_module);
module_exit(ether1394_exit_module);