eth1394.c 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746
  1. /*
  2. * eth1394.c -- IPv4 driver for Linux IEEE-1394 Subsystem
  3. *
  4. * Copyright (C) 2001-2003 Ben Collins <bcollins@debian.org>
  5. * 2000 Bonin Franck <boninf@free.fr>
  6. * 2003 Steve Kinneberg <kinnebergsteve@acmsystems.com>
  7. *
  8. * Mainly based on work by Emanuel Pirker and Andreas E. Bombe
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License as published by
  12. * the Free Software Foundation; either version 2 of the License, or
  13. * (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software Foundation,
  22. * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  23. */
  24. /*
  25. * This driver intends to support RFC 2734, which describes a method for
  26. * transporting IPv4 datagrams over IEEE-1394 serial busses.
  27. *
  28. * TODO:
  29. * RFC 2734 related:
  30. * - Add MCAP. Limited Multicast exists only to 224.0.0.1 and 224.0.0.2.
  31. *
  32. * Non-RFC 2734 related:
  33. * - Handle fragmented skb's coming from the networking layer.
  34. * - Move generic GASP reception to core 1394 code
  35. * - Convert kmalloc/kfree for link fragments to use kmem_cache_* instead
  36. * - Stability improvements
  37. * - Performance enhancements
  38. * - Consider garbage collecting old partial datagrams after X amount of time
  39. */
  40. #include <linux/module.h>
  41. #include <linux/kernel.h>
  42. #include <linux/slab.h>
  43. #include <linux/errno.h>
  44. #include <linux/types.h>
  45. #include <linux/delay.h>
  46. #include <linux/init.h>
  47. #include <linux/workqueue.h>
  48. #include <linux/netdevice.h>
  49. #include <linux/inetdevice.h>
  50. #include <linux/if_arp.h>
  51. #include <linux/if_ether.h>
  52. #include <linux/ip.h>
  53. #include <linux/in.h>
  54. #include <linux/tcp.h>
  55. #include <linux/skbuff.h>
  56. #include <linux/bitops.h>
  57. #include <linux/ethtool.h>
  58. #include <asm/uaccess.h>
  59. #include <asm/delay.h>
  60. #include <asm/unaligned.h>
  61. #include <net/arp.h>
  62. #include "config_roms.h"
  63. #include "csr1212.h"
  64. #include "eth1394.h"
  65. #include "highlevel.h"
  66. #include "ieee1394.h"
  67. #include "ieee1394_core.h"
  68. #include "ieee1394_hotplug.h"
  69. #include "ieee1394_transactions.h"
  70. #include "ieee1394_types.h"
  71. #include "iso.h"
  72. #include "nodemgr.h"
  73. #define ETH1394_PRINT_G(level, fmt, args...) \
  74. printk(level "%s: " fmt, driver_name, ## args)
  75. #define ETH1394_PRINT(level, dev_name, fmt, args...) \
  76. printk(level "%s: %s: " fmt, driver_name, dev_name, ## args)
  77. struct fragment_info {
  78. struct list_head list;
  79. int offset;
  80. int len;
  81. };
  82. struct partial_datagram {
  83. struct list_head list;
  84. u16 dgl;
  85. u16 dg_size;
  86. __be16 ether_type;
  87. struct sk_buff *skb;
  88. char *pbuf;
  89. struct list_head frag_info;
  90. };
  91. struct pdg_list {
  92. struct list_head list; /* partial datagram list per node */
  93. unsigned int sz; /* partial datagram list size per node */
  94. spinlock_t lock; /* partial datagram lock */
  95. };
  96. struct eth1394_host_info {
  97. struct hpsb_host *host;
  98. struct net_device *dev;
  99. };
  100. struct eth1394_node_ref {
  101. struct unit_directory *ud;
  102. struct list_head list;
  103. };
  104. struct eth1394_node_info {
  105. u16 maxpayload; /* max payload */
  106. u8 sspd; /* max speed */
  107. u64 fifo; /* FIFO address */
  108. struct pdg_list pdg; /* partial RX datagram lists */
  109. int dgl; /* outgoing datagram label */
  110. };
  111. static const char driver_name[] = "eth1394";
  112. static struct kmem_cache *packet_task_cache;
  113. static struct hpsb_highlevel eth1394_highlevel;
  114. /* Use common.lf to determine header len */
  115. static const int hdr_type_len[] = {
  116. sizeof(struct eth1394_uf_hdr),
  117. sizeof(struct eth1394_ff_hdr),
  118. sizeof(struct eth1394_sf_hdr),
  119. sizeof(struct eth1394_sf_hdr)
  120. };
  121. static const u16 eth1394_speedto_maxpayload[] = {
  122. /* S100, S200, S400, S800, S1600, S3200 */
  123. 512, 1024, 2048, 4096, 4096, 4096
  124. };
  125. MODULE_AUTHOR("Ben Collins (bcollins@debian.org)");
  126. MODULE_DESCRIPTION("IEEE 1394 IPv4 Driver (IPv4-over-1394 as per RFC 2734)");
  127. MODULE_LICENSE("GPL");
  128. /*
  129. * The max_partial_datagrams parameter is the maximum number of fragmented
  130. * datagrams per node that eth1394 will keep in memory. Providing an upper
  131. * bound allows us to limit the amount of memory that partial datagrams
  132. * consume in the event that some partial datagrams are never completed.
  133. */
  134. static int max_partial_datagrams = 25;
  135. module_param(max_partial_datagrams, int, S_IRUGO | S_IWUSR);
  136. MODULE_PARM_DESC(max_partial_datagrams,
  137. "Maximum number of partially received fragmented datagrams "
  138. "(default = 25).");
  139. static int ether1394_header(struct sk_buff *skb, struct net_device *dev,
  140. unsigned short type, const void *daddr,
  141. const void *saddr, unsigned len);
  142. static int ether1394_rebuild_header(struct sk_buff *skb);
  143. static int ether1394_header_parse(const struct sk_buff *skb,
  144. unsigned char *haddr);
  145. static int ether1394_header_cache(const struct neighbour *neigh,
  146. struct hh_cache *hh);
  147. static void ether1394_header_cache_update(struct hh_cache *hh,
  148. const struct net_device *dev,
  149. const unsigned char *haddr);
  150. static int ether1394_tx(struct sk_buff *skb, struct net_device *dev);
  151. static void ether1394_iso(struct hpsb_iso *iso);
  152. static struct ethtool_ops ethtool_ops;
  153. static int ether1394_write(struct hpsb_host *host, int srcid, int destid,
  154. quadlet_t *data, u64 addr, size_t len, u16 flags);
  155. static void ether1394_add_host(struct hpsb_host *host);
  156. static void ether1394_remove_host(struct hpsb_host *host);
  157. static void ether1394_host_reset(struct hpsb_host *host);
  158. /* Function for incoming 1394 packets */
  159. static const struct hpsb_address_ops addr_ops = {
  160. .write = ether1394_write,
  161. };
  162. /* Ieee1394 highlevel driver functions */
  163. static struct hpsb_highlevel eth1394_highlevel = {
  164. .name = driver_name,
  165. .add_host = ether1394_add_host,
  166. .remove_host = ether1394_remove_host,
  167. .host_reset = ether1394_host_reset,
  168. };
  169. static int ether1394_recv_init(struct eth1394_priv *priv)
  170. {
  171. unsigned int iso_buf_size;
  172. /* FIXME: rawiso limits us to PAGE_SIZE */
  173. iso_buf_size = min((unsigned int)PAGE_SIZE,
  174. 2 * (1U << (priv->host->csr.max_rec + 1)));
  175. priv->iso = hpsb_iso_recv_init(priv->host,
  176. ETHER1394_GASP_BUFFERS * iso_buf_size,
  177. ETHER1394_GASP_BUFFERS,
  178. priv->broadcast_channel,
  179. HPSB_ISO_DMA_PACKET_PER_BUFFER,
  180. 1, ether1394_iso);
  181. if (priv->iso == NULL) {
  182. ETH1394_PRINT_G(KERN_ERR, "Failed to allocate IR context\n");
  183. priv->bc_state = ETHER1394_BC_ERROR;
  184. return -EAGAIN;
  185. }
  186. if (hpsb_iso_recv_start(priv->iso, -1, (1 << 3), -1) < 0)
  187. priv->bc_state = ETHER1394_BC_STOPPED;
  188. else
  189. priv->bc_state = ETHER1394_BC_RUNNING;
  190. return 0;
  191. }
  192. /* This is called after an "ifup" */
  193. static int ether1394_open(struct net_device *dev)
  194. {
  195. struct eth1394_priv *priv = netdev_priv(dev);
  196. int ret;
  197. if (priv->bc_state == ETHER1394_BC_ERROR) {
  198. ret = ether1394_recv_init(priv);
  199. if (ret)
  200. return ret;
  201. }
  202. netif_start_queue(dev);
  203. return 0;
  204. }
  205. /* This is called after an "ifdown" */
  206. static int ether1394_stop(struct net_device *dev)
  207. {
  208. /* flush priv->wake */
  209. flush_scheduled_work();
  210. netif_stop_queue(dev);
  211. return 0;
  212. }
  213. /* FIXME: What to do if we timeout? I think a host reset is probably in order,
  214. * so that's what we do. Should we increment the stat counters too? */
  215. static void ether1394_tx_timeout(struct net_device *dev)
  216. {
  217. struct hpsb_host *host =
  218. ((struct eth1394_priv *)netdev_priv(dev))->host;
  219. ETH1394_PRINT(KERN_ERR, dev->name, "Timeout, resetting host\n");
  220. ether1394_host_reset(host);
  221. }
  222. static inline int ether1394_max_mtu(struct hpsb_host* host)
  223. {
  224. return (1 << (host->csr.max_rec + 1))
  225. - sizeof(union eth1394_hdr) - ETHER1394_GASP_OVERHEAD;
  226. }
  227. static int ether1394_change_mtu(struct net_device *dev, int new_mtu)
  228. {
  229. int max_mtu;
  230. if (new_mtu < 68)
  231. return -EINVAL;
  232. max_mtu = ether1394_max_mtu(
  233. ((struct eth1394_priv *)netdev_priv(dev))->host);
  234. if (new_mtu > max_mtu) {
  235. ETH1394_PRINT(KERN_INFO, dev->name,
  236. "Local node constrains MTU to %d\n", max_mtu);
  237. return -ERANGE;
  238. }
  239. dev->mtu = new_mtu;
  240. return 0;
  241. }
  242. static void purge_partial_datagram(struct list_head *old)
  243. {
  244. struct partial_datagram *pd;
  245. struct list_head *lh, *n;
  246. struct fragment_info *fi;
  247. pd = list_entry(old, struct partial_datagram, list);
  248. list_for_each_safe(lh, n, &pd->frag_info) {
  249. fi = list_entry(lh, struct fragment_info, list);
  250. list_del(lh);
  251. kfree(fi);
  252. }
  253. list_del(old);
  254. kfree_skb(pd->skb);
  255. kfree(pd);
  256. }
  257. /******************************************
  258. * 1394 bus activity functions
  259. ******************************************/
  260. static struct eth1394_node_ref *eth1394_find_node(struct list_head *inl,
  261. struct unit_directory *ud)
  262. {
  263. struct eth1394_node_ref *node;
  264. list_for_each_entry(node, inl, list)
  265. if (node->ud == ud)
  266. return node;
  267. return NULL;
  268. }
  269. static struct eth1394_node_ref *eth1394_find_node_guid(struct list_head *inl,
  270. u64 guid)
  271. {
  272. struct eth1394_node_ref *node;
  273. list_for_each_entry(node, inl, list)
  274. if (node->ud->ne->guid == guid)
  275. return node;
  276. return NULL;
  277. }
  278. static struct eth1394_node_ref *eth1394_find_node_nodeid(struct list_head *inl,
  279. nodeid_t nodeid)
  280. {
  281. struct eth1394_node_ref *node;
  282. list_for_each_entry(node, inl, list)
  283. if (node->ud->ne->nodeid == nodeid)
  284. return node;
  285. return NULL;
  286. }
  287. static int eth1394_new_node(struct eth1394_host_info *hi,
  288. struct unit_directory *ud)
  289. {
  290. struct eth1394_priv *priv;
  291. struct eth1394_node_ref *new_node;
  292. struct eth1394_node_info *node_info;
  293. new_node = kmalloc(sizeof(*new_node), GFP_KERNEL);
  294. if (!new_node)
  295. return -ENOMEM;
  296. node_info = kmalloc(sizeof(*node_info), GFP_KERNEL);
  297. if (!node_info) {
  298. kfree(new_node);
  299. return -ENOMEM;
  300. }
  301. spin_lock_init(&node_info->pdg.lock);
  302. INIT_LIST_HEAD(&node_info->pdg.list);
  303. node_info->pdg.sz = 0;
  304. node_info->fifo = CSR1212_INVALID_ADDR_SPACE;
  305. dev_set_drvdata(&ud->device, node_info);
  306. new_node->ud = ud;
  307. priv = netdev_priv(hi->dev);
  308. list_add_tail(&new_node->list, &priv->ip_node_list);
  309. return 0;
  310. }
  311. static int eth1394_probe(struct device *dev)
  312. {
  313. struct unit_directory *ud;
  314. struct eth1394_host_info *hi;
  315. ud = container_of(dev, struct unit_directory, device);
  316. hi = hpsb_get_hostinfo(&eth1394_highlevel, ud->ne->host);
  317. if (!hi)
  318. return -ENOENT;
  319. return eth1394_new_node(hi, ud);
  320. }
  321. static int eth1394_remove(struct device *dev)
  322. {
  323. struct unit_directory *ud;
  324. struct eth1394_host_info *hi;
  325. struct eth1394_priv *priv;
  326. struct eth1394_node_ref *old_node;
  327. struct eth1394_node_info *node_info;
  328. struct list_head *lh, *n;
  329. unsigned long flags;
  330. ud = container_of(dev, struct unit_directory, device);
  331. hi = hpsb_get_hostinfo(&eth1394_highlevel, ud->ne->host);
  332. if (!hi)
  333. return -ENOENT;
  334. priv = netdev_priv(hi->dev);
  335. old_node = eth1394_find_node(&priv->ip_node_list, ud);
  336. if (!old_node)
  337. return 0;
  338. list_del(&old_node->list);
  339. kfree(old_node);
  340. node_info = dev_get_drvdata(&ud->device);
  341. spin_lock_irqsave(&node_info->pdg.lock, flags);
  342. /* The partial datagram list should be empty, but we'll just
  343. * make sure anyway... */
  344. list_for_each_safe(lh, n, &node_info->pdg.list)
  345. purge_partial_datagram(lh);
  346. spin_unlock_irqrestore(&node_info->pdg.lock, flags);
  347. kfree(node_info);
  348. dev_set_drvdata(&ud->device, NULL);
  349. return 0;
  350. }
  351. static int eth1394_update(struct unit_directory *ud)
  352. {
  353. struct eth1394_host_info *hi;
  354. struct eth1394_priv *priv;
  355. struct eth1394_node_ref *node;
  356. hi = hpsb_get_hostinfo(&eth1394_highlevel, ud->ne->host);
  357. if (!hi)
  358. return -ENOENT;
  359. priv = netdev_priv(hi->dev);
  360. node = eth1394_find_node(&priv->ip_node_list, ud);
  361. if (node)
  362. return 0;
  363. return eth1394_new_node(hi, ud);
  364. }
  365. static const struct ieee1394_device_id eth1394_id_table[] = {
  366. {
  367. .match_flags = (IEEE1394_MATCH_SPECIFIER_ID |
  368. IEEE1394_MATCH_VERSION),
  369. .specifier_id = ETHER1394_GASP_SPECIFIER_ID,
  370. .version = ETHER1394_GASP_VERSION,
  371. },
  372. {}
  373. };
  374. MODULE_DEVICE_TABLE(ieee1394, eth1394_id_table);
  375. static struct hpsb_protocol_driver eth1394_proto_driver = {
  376. .name = driver_name,
  377. .id_table = eth1394_id_table,
  378. .update = eth1394_update,
  379. .driver = {
  380. .probe = eth1394_probe,
  381. .remove = eth1394_remove,
  382. },
  383. };
  384. static void ether1394_reset_priv(struct net_device *dev, int set_mtu)
  385. {
  386. unsigned long flags;
  387. int i;
  388. struct eth1394_priv *priv = netdev_priv(dev);
  389. struct hpsb_host *host = priv->host;
  390. u64 guid = get_unaligned((u64 *)&(host->csr.rom->bus_info_data[3]));
  391. int max_speed = IEEE1394_SPEED_MAX;
  392. spin_lock_irqsave(&priv->lock, flags);
  393. memset(priv->ud_list, 0, sizeof(priv->ud_list));
  394. priv->bc_maxpayload = 512;
  395. /* Determine speed limit */
  396. /* FIXME: This is broken for nodes with link speed < PHY speed,
  397. * and it is suboptimal for S200B...S800B hardware.
  398. * The result of nodemgr's speed probe should be used somehow. */
  399. for (i = 0; i < host->node_count; i++) {
  400. /* take care of S100B...S400B PHY ports */
  401. if (host->speed[i] == SELFID_SPEED_UNKNOWN) {
  402. max_speed = IEEE1394_SPEED_100;
  403. break;
  404. }
  405. if (max_speed > host->speed[i])
  406. max_speed = host->speed[i];
  407. }
  408. priv->bc_sspd = max_speed;
  409. if (set_mtu) {
  410. /* Use the RFC 2734 default 1500 octets or the maximum payload
  411. * as initial MTU */
  412. dev->mtu = min(1500, ether1394_max_mtu(host));
  413. /* Set our hardware address while we're at it */
  414. memcpy(dev->dev_addr, &guid, sizeof(u64));
  415. memset(dev->broadcast, 0xff, sizeof(u64));
  416. }
  417. spin_unlock_irqrestore(&priv->lock, flags);
  418. }
  419. static const struct header_ops ether1394_header_ops = {
  420. .create = ether1394_header,
  421. .rebuild = ether1394_rebuild_header,
  422. .cache = ether1394_header_cache,
  423. .cache_update = ether1394_header_cache_update,
  424. .parse = ether1394_header_parse,
  425. };
  426. static const struct net_device_ops ether1394_netdev_ops = {
  427. .ndo_open = ether1394_open,
  428. .ndo_stop = ether1394_stop,
  429. .ndo_start_xmit = ether1394_tx,
  430. .ndo_tx_timeout = ether1394_tx_timeout,
  431. .ndo_change_mtu = ether1394_change_mtu,
  432. };
  433. static void ether1394_init_dev(struct net_device *dev)
  434. {
  435. dev->header_ops = &ether1394_header_ops;
  436. dev->netdev_ops = &ether1394_netdev_ops;
  437. SET_ETHTOOL_OPS(dev, &ethtool_ops);
  438. dev->watchdog_timeo = ETHER1394_TIMEOUT;
  439. dev->flags = IFF_BROADCAST | IFF_MULTICAST;
  440. dev->features = NETIF_F_HIGHDMA;
  441. dev->addr_len = ETH1394_ALEN;
  442. dev->hard_header_len = ETH1394_HLEN;
  443. dev->type = ARPHRD_IEEE1394;
  444. /* FIXME: This value was copied from ether_setup(). Is it too much? */
  445. dev->tx_queue_len = 1000;
  446. }
  447. /*
  448. * Wake the queue up after commonly encountered transmit failure conditions are
  449. * hopefully over. Currently only tlabel exhaustion is accounted for.
  450. */
  451. static void ether1394_wake_queue(struct work_struct *work)
  452. {
  453. struct eth1394_priv *priv;
  454. struct hpsb_packet *packet;
  455. priv = container_of(work, struct eth1394_priv, wake);
  456. packet = hpsb_alloc_packet(0);
  457. /* This is really bad, but unjam the queue anyway. */
  458. if (!packet)
  459. goto out;
  460. packet->host = priv->host;
  461. packet->node_id = priv->wake_node;
  462. /*
  463. * A transaction label is all we really want. If we get one, it almost
  464. * always means we can get a lot more because the ieee1394 core recycled
  465. * a whole batch of tlabels, at last.
  466. */
  467. if (hpsb_get_tlabel(packet) == 0)
  468. hpsb_free_tlabel(packet);
  469. hpsb_free_packet(packet);
  470. out:
  471. netif_wake_queue(priv->wake_dev);
  472. }
  473. /*
  474. * This function is called every time a card is found. It is generally called
  475. * when the module is installed. This is where we add all of our ethernet
  476. * devices. One for each host.
  477. */
  478. static void ether1394_add_host(struct hpsb_host *host)
  479. {
  480. struct eth1394_host_info *hi = NULL;
  481. struct net_device *dev = NULL;
  482. struct eth1394_priv *priv;
  483. u64 fifo_addr;
  484. if (hpsb_config_rom_ip1394_add(host) != 0) {
  485. ETH1394_PRINT_G(KERN_ERR, "Can't add IP-over-1394 ROM entry\n");
  486. return;
  487. }
  488. fifo_addr = hpsb_allocate_and_register_addrspace(
  489. &eth1394_highlevel, host, &addr_ops,
  490. ETHER1394_REGION_ADDR_LEN, ETHER1394_REGION_ADDR_LEN,
  491. CSR1212_INVALID_ADDR_SPACE, CSR1212_INVALID_ADDR_SPACE);
  492. if (fifo_addr == CSR1212_INVALID_ADDR_SPACE) {
  493. ETH1394_PRINT_G(KERN_ERR, "Cannot register CSR space\n");
  494. hpsb_config_rom_ip1394_remove(host);
  495. return;
  496. }
  497. dev = alloc_netdev(sizeof(*priv), "eth%d", ether1394_init_dev);
  498. if (dev == NULL) {
  499. ETH1394_PRINT_G(KERN_ERR, "Out of memory\n");
  500. goto out;
  501. }
  502. SET_NETDEV_DEV(dev, &host->device);
  503. priv = netdev_priv(dev);
  504. INIT_LIST_HEAD(&priv->ip_node_list);
  505. spin_lock_init(&priv->lock);
  506. priv->host = host;
  507. priv->local_fifo = fifo_addr;
  508. INIT_WORK(&priv->wake, ether1394_wake_queue);
  509. priv->wake_dev = dev;
  510. hi = hpsb_create_hostinfo(&eth1394_highlevel, host, sizeof(*hi));
  511. if (hi == NULL) {
  512. ETH1394_PRINT_G(KERN_ERR, "Out of memory\n");
  513. goto out;
  514. }
  515. ether1394_reset_priv(dev, 1);
  516. if (register_netdev(dev)) {
  517. ETH1394_PRINT_G(KERN_ERR, "Cannot register the driver\n");
  518. goto out;
  519. }
  520. ETH1394_PRINT(KERN_INFO, dev->name, "IPv4 over IEEE 1394 (fw-host%d)\n",
  521. host->id);
  522. hi->host = host;
  523. hi->dev = dev;
  524. /* Ignore validity in hopes that it will be set in the future. It'll
  525. * be checked when the eth device is opened. */
  526. priv->broadcast_channel = host->csr.broadcast_channel & 0x3f;
  527. ether1394_recv_init(priv);
  528. return;
  529. out:
  530. if (dev)
  531. free_netdev(dev);
  532. if (hi)
  533. hpsb_destroy_hostinfo(&eth1394_highlevel, host);
  534. hpsb_unregister_addrspace(&eth1394_highlevel, host, fifo_addr);
  535. hpsb_config_rom_ip1394_remove(host);
  536. }
  537. /* Remove a card from our list */
  538. static void ether1394_remove_host(struct hpsb_host *host)
  539. {
  540. struct eth1394_host_info *hi;
  541. struct eth1394_priv *priv;
  542. hi = hpsb_get_hostinfo(&eth1394_highlevel, host);
  543. if (!hi)
  544. return;
  545. priv = netdev_priv(hi->dev);
  546. hpsb_unregister_addrspace(&eth1394_highlevel, host, priv->local_fifo);
  547. hpsb_config_rom_ip1394_remove(host);
  548. if (priv->iso)
  549. hpsb_iso_shutdown(priv->iso);
  550. unregister_netdev(hi->dev);
  551. free_netdev(hi->dev);
  552. }
  553. /* A bus reset happened */
  554. static void ether1394_host_reset(struct hpsb_host *host)
  555. {
  556. struct eth1394_host_info *hi;
  557. struct eth1394_priv *priv;
  558. struct net_device *dev;
  559. struct list_head *lh, *n;
  560. struct eth1394_node_ref *node;
  561. struct eth1394_node_info *node_info;
  562. unsigned long flags;
  563. hi = hpsb_get_hostinfo(&eth1394_highlevel, host);
  564. /* This can happen for hosts that we don't use */
  565. if (!hi)
  566. return;
  567. dev = hi->dev;
  568. priv = netdev_priv(dev);
  569. /* Reset our private host data, but not our MTU */
  570. netif_stop_queue(dev);
  571. ether1394_reset_priv(dev, 0);
  572. list_for_each_entry(node, &priv->ip_node_list, list) {
  573. node_info = dev_get_drvdata(&node->ud->device);
  574. spin_lock_irqsave(&node_info->pdg.lock, flags);
  575. list_for_each_safe(lh, n, &node_info->pdg.list)
  576. purge_partial_datagram(lh);
  577. INIT_LIST_HEAD(&(node_info->pdg.list));
  578. node_info->pdg.sz = 0;
  579. spin_unlock_irqrestore(&node_info->pdg.lock, flags);
  580. }
  581. netif_wake_queue(dev);
  582. }
  583. /******************************************
  584. * HW Header net device functions
  585. ******************************************/
  586. /* These functions have been adapted from net/ethernet/eth.c */
  587. /* Create a fake MAC header for an arbitrary protocol layer.
  588. * saddr=NULL means use device source address
  589. * daddr=NULL means leave destination address (eg unresolved arp). */
  590. static int ether1394_header(struct sk_buff *skb, struct net_device *dev,
  591. unsigned short type, const void *daddr,
  592. const void *saddr, unsigned len)
  593. {
  594. struct eth1394hdr *eth =
  595. (struct eth1394hdr *)skb_push(skb, ETH1394_HLEN);
  596. eth->h_proto = htons(type);
  597. if (dev->flags & (IFF_LOOPBACK | IFF_NOARP)) {
  598. memset(eth->h_dest, 0, dev->addr_len);
  599. return dev->hard_header_len;
  600. }
  601. if (daddr) {
  602. memcpy(eth->h_dest, daddr, dev->addr_len);
  603. return dev->hard_header_len;
  604. }
  605. return -dev->hard_header_len;
  606. }
  607. /* Rebuild the faked MAC header. This is called after an ARP
  608. * (or in future other address resolution) has completed on this
  609. * sk_buff. We now let ARP fill in the other fields.
  610. *
  611. * This routine CANNOT use cached dst->neigh!
  612. * Really, it is used only when dst->neigh is wrong.
  613. */
  614. static int ether1394_rebuild_header(struct sk_buff *skb)
  615. {
  616. struct eth1394hdr *eth = (struct eth1394hdr *)skb->data;
  617. if (eth->h_proto == htons(ETH_P_IP))
  618. return arp_find((unsigned char *)&eth->h_dest, skb);
  619. ETH1394_PRINT(KERN_DEBUG, skb->dev->name,
  620. "unable to resolve type %04x addresses\n",
  621. ntohs(eth->h_proto));
  622. return 0;
  623. }
  624. static int ether1394_header_parse(const struct sk_buff *skb,
  625. unsigned char *haddr)
  626. {
  627. memcpy(haddr, skb->dev->dev_addr, ETH1394_ALEN);
  628. return ETH1394_ALEN;
  629. }
  630. static int ether1394_header_cache(const struct neighbour *neigh,
  631. struct hh_cache *hh)
  632. {
  633. __be16 type = hh->hh_type;
  634. struct net_device *dev = neigh->dev;
  635. struct eth1394hdr *eth =
  636. (struct eth1394hdr *)((u8 *)hh->hh_data + 16 - ETH1394_HLEN);
  637. if (type == htons(ETH_P_802_3))
  638. return -1;
  639. eth->h_proto = type;
  640. memcpy(eth->h_dest, neigh->ha, dev->addr_len);
  641. hh->hh_len = ETH1394_HLEN;
  642. return 0;
  643. }
  644. /* Called by Address Resolution module to notify changes in address. */
  645. static void ether1394_header_cache_update(struct hh_cache *hh,
  646. const struct net_device *dev,
  647. const unsigned char * haddr)
  648. {
  649. memcpy((u8 *)hh->hh_data + 16 - ETH1394_HLEN, haddr, dev->addr_len);
  650. }
  651. /******************************************
  652. * Datagram reception code
  653. ******************************************/
  654. /* Copied from net/ethernet/eth.c */
  655. static __be16 ether1394_type_trans(struct sk_buff *skb, struct net_device *dev)
  656. {
  657. struct eth1394hdr *eth;
  658. unsigned char *rawp;
  659. skb_reset_mac_header(skb);
  660. skb_pull(skb, ETH1394_HLEN);
  661. eth = eth1394_hdr(skb);
  662. if (*eth->h_dest & 1) {
  663. if (memcmp(eth->h_dest, dev->broadcast, dev->addr_len) == 0)
  664. skb->pkt_type = PACKET_BROADCAST;
  665. #if 0
  666. else
  667. skb->pkt_type = PACKET_MULTICAST;
  668. #endif
  669. } else {
  670. if (memcmp(eth->h_dest, dev->dev_addr, dev->addr_len))
  671. skb->pkt_type = PACKET_OTHERHOST;
  672. }
  673. if (ntohs(eth->h_proto) >= 1536)
  674. return eth->h_proto;
  675. rawp = skb->data;
  676. if (*(unsigned short *)rawp == 0xFFFF)
  677. return htons(ETH_P_802_3);
  678. return htons(ETH_P_802_2);
  679. }
  680. /* Parse an encapsulated IP1394 header into an ethernet frame packet.
  681. * We also perform ARP translation here, if need be. */
  682. static __be16 ether1394_parse_encap(struct sk_buff *skb, struct net_device *dev,
  683. nodeid_t srcid, nodeid_t destid,
  684. __be16 ether_type)
  685. {
  686. struct eth1394_priv *priv = netdev_priv(dev);
  687. __be64 dest_hw;
  688. __be16 ret = 0;
  689. /* Setup our hw addresses. We use these to build the ethernet header. */
  690. if (destid == (LOCAL_BUS | ALL_NODES))
  691. dest_hw = ~cpu_to_be64(0); /* broadcast */
  692. else
  693. dest_hw = cpu_to_be64((u64)priv->host->csr.guid_hi << 32 |
  694. priv->host->csr.guid_lo);
  695. /* If this is an ARP packet, convert it. First, we want to make
  696. * use of some of the fields, since they tell us a little bit
  697. * about the sending machine. */
  698. if (ether_type == htons(ETH_P_ARP)) {
  699. struct eth1394_arp *arp1394 = (struct eth1394_arp *)skb->data;
  700. struct arphdr *arp = (struct arphdr *)skb->data;
  701. unsigned char *arp_ptr = (unsigned char *)(arp + 1);
  702. u64 fifo_addr = (u64)ntohs(arp1394->fifo_hi) << 32 |
  703. ntohl(arp1394->fifo_lo);
  704. u8 max_rec = min(priv->host->csr.max_rec,
  705. (u8)(arp1394->max_rec));
  706. int sspd = arp1394->sspd;
  707. u16 maxpayload;
  708. struct eth1394_node_ref *node;
  709. struct eth1394_node_info *node_info;
  710. __be64 guid;
  711. /* Sanity check. MacOSX seems to be sending us 131 in this
  712. * field (atleast on my Panther G5). Not sure why. */
  713. if (sspd > 5 || sspd < 0)
  714. sspd = 0;
  715. maxpayload = min(eth1394_speedto_maxpayload[sspd],
  716. (u16)(1 << (max_rec + 1)));
  717. guid = get_unaligned(&arp1394->s_uniq_id);
  718. node = eth1394_find_node_guid(&priv->ip_node_list,
  719. be64_to_cpu(guid));
  720. if (!node)
  721. return cpu_to_be16(0);
  722. node_info = dev_get_drvdata(&node->ud->device);
  723. /* Update our speed/payload/fifo_offset table */
  724. node_info->maxpayload = maxpayload;
  725. node_info->sspd = sspd;
  726. node_info->fifo = fifo_addr;
  727. /* Now that we're done with the 1394 specific stuff, we'll
  728. * need to alter some of the data. Believe it or not, all
  729. * that needs to be done is sender_IP_address needs to be
  730. * moved, the destination hardware address get stuffed
  731. * in and the hardware address length set to 8.
  732. *
  733. * IMPORTANT: The code below overwrites 1394 specific data
  734. * needed above so keep the munging of the data for the
  735. * higher level IP stack last. */
  736. arp->ar_hln = 8;
  737. arp_ptr += arp->ar_hln; /* skip over sender unique id */
  738. *(u32 *)arp_ptr = arp1394->sip; /* move sender IP addr */
  739. arp_ptr += arp->ar_pln; /* skip over sender IP addr */
  740. if (arp->ar_op == htons(ARPOP_REQUEST))
  741. memset(arp_ptr, 0, sizeof(u64));
  742. else
  743. memcpy(arp_ptr, dev->dev_addr, sizeof(u64));
  744. }
  745. /* Now add the ethernet header. */
  746. if (dev_hard_header(skb, dev, ntohs(ether_type), &dest_hw, NULL,
  747. skb->len) >= 0)
  748. ret = ether1394_type_trans(skb, dev);
  749. return ret;
  750. }
  751. static int fragment_overlap(struct list_head *frag_list, int offset, int len)
  752. {
  753. struct fragment_info *fi;
  754. int end = offset + len;
  755. list_for_each_entry(fi, frag_list, list)
  756. if (offset < fi->offset + fi->len && end > fi->offset)
  757. return 1;
  758. return 0;
  759. }
  760. static struct list_head *find_partial_datagram(struct list_head *pdgl, int dgl)
  761. {
  762. struct partial_datagram *pd;
  763. list_for_each_entry(pd, pdgl, list)
  764. if (pd->dgl == dgl)
  765. return &pd->list;
  766. return NULL;
  767. }
  768. /* Assumes that new fragment does not overlap any existing fragments */
  769. static int new_fragment(struct list_head *frag_info, int offset, int len)
  770. {
  771. struct list_head *lh;
  772. struct fragment_info *fi, *fi2, *new;
  773. list_for_each(lh, frag_info) {
  774. fi = list_entry(lh, struct fragment_info, list);
  775. if (fi->offset + fi->len == offset) {
  776. /* The new fragment can be tacked on to the end */
  777. fi->len += len;
  778. /* Did the new fragment plug a hole? */
  779. fi2 = list_entry(lh->next, struct fragment_info, list);
  780. if (fi->offset + fi->len == fi2->offset) {
  781. /* glue fragments together */
  782. fi->len += fi2->len;
  783. list_del(lh->next);
  784. kfree(fi2);
  785. }
  786. return 0;
  787. } else if (offset + len == fi->offset) {
  788. /* The new fragment can be tacked on to the beginning */
  789. fi->offset = offset;
  790. fi->len += len;
  791. /* Did the new fragment plug a hole? */
  792. fi2 = list_entry(lh->prev, struct fragment_info, list);
  793. if (fi2->offset + fi2->len == fi->offset) {
  794. /* glue fragments together */
  795. fi2->len += fi->len;
  796. list_del(lh);
  797. kfree(fi);
  798. }
  799. return 0;
  800. } else if (offset > fi->offset + fi->len) {
  801. break;
  802. } else if (offset + len < fi->offset) {
  803. lh = lh->prev;
  804. break;
  805. }
  806. }
  807. new = kmalloc(sizeof(*new), GFP_ATOMIC);
  808. if (!new)
  809. return -ENOMEM;
  810. new->offset = offset;
  811. new->len = len;
  812. list_add(&new->list, lh);
  813. return 0;
  814. }
  815. static int new_partial_datagram(struct net_device *dev, struct list_head *pdgl,
  816. int dgl, int dg_size, char *frag_buf,
  817. int frag_off, int frag_len)
  818. {
  819. struct partial_datagram *new;
  820. new = kmalloc(sizeof(*new), GFP_ATOMIC);
  821. if (!new)
  822. return -ENOMEM;
  823. INIT_LIST_HEAD(&new->frag_info);
  824. if (new_fragment(&new->frag_info, frag_off, frag_len) < 0) {
  825. kfree(new);
  826. return -ENOMEM;
  827. }
  828. new->dgl = dgl;
  829. new->dg_size = dg_size;
  830. new->skb = dev_alloc_skb(dg_size + dev->hard_header_len + 15);
  831. if (!new->skb) {
  832. struct fragment_info *fi = list_entry(new->frag_info.next,
  833. struct fragment_info,
  834. list);
  835. kfree(fi);
  836. kfree(new);
  837. return -ENOMEM;
  838. }
  839. skb_reserve(new->skb, (dev->hard_header_len + 15) & ~15);
  840. new->pbuf = skb_put(new->skb, dg_size);
  841. memcpy(new->pbuf + frag_off, frag_buf, frag_len);
  842. list_add(&new->list, pdgl);
  843. return 0;
  844. }
  845. static int update_partial_datagram(struct list_head *pdgl, struct list_head *lh,
  846. char *frag_buf, int frag_off, int frag_len)
  847. {
  848. struct partial_datagram *pd =
  849. list_entry(lh, struct partial_datagram, list);
  850. if (new_fragment(&pd->frag_info, frag_off, frag_len) < 0)
  851. return -ENOMEM;
  852. memcpy(pd->pbuf + frag_off, frag_buf, frag_len);
  853. /* Move list entry to beginnig of list so that oldest partial
  854. * datagrams percolate to the end of the list */
  855. list_move(lh, pdgl);
  856. return 0;
  857. }
  858. static int is_datagram_complete(struct list_head *lh, int dg_size)
  859. {
  860. struct partial_datagram *pd;
  861. struct fragment_info *fi;
  862. pd = list_entry(lh, struct partial_datagram, list);
  863. fi = list_entry(pd->frag_info.next, struct fragment_info, list);
  864. return (fi->len == dg_size);
  865. }
  866. /* Packet reception. We convert the IP1394 encapsulation header to an
  867. * ethernet header, and fill it with some of our other fields. This is
  868. * an incoming packet from the 1394 bus. */
  869. static int ether1394_data_handler(struct net_device *dev, int srcid, int destid,
  870. char *buf, int len)
  871. {
  872. struct sk_buff *skb;
  873. unsigned long flags;
  874. struct eth1394_priv *priv = netdev_priv(dev);
  875. union eth1394_hdr *hdr = (union eth1394_hdr *)buf;
  876. __be16 ether_type = cpu_to_be16(0); /* initialized to clear warning */
  877. int hdr_len;
  878. struct unit_directory *ud = priv->ud_list[NODEID_TO_NODE(srcid)];
  879. struct eth1394_node_info *node_info;
  880. if (!ud) {
  881. struct eth1394_node_ref *node;
  882. node = eth1394_find_node_nodeid(&priv->ip_node_list, srcid);
  883. if (unlikely(!node)) {
  884. HPSB_PRINT(KERN_ERR, "ether1394 rx: sender nodeid "
  885. "lookup failure: " NODE_BUS_FMT,
  886. NODE_BUS_ARGS(priv->host, srcid));
  887. dev->stats.rx_dropped++;
  888. return -1;
  889. }
  890. ud = node->ud;
  891. priv->ud_list[NODEID_TO_NODE(srcid)] = ud;
  892. }
  893. node_info = dev_get_drvdata(&ud->device);
  894. /* First, did we receive a fragmented or unfragmented datagram? */
  895. hdr->words.word1 = ntohs(hdr->words.word1);
  896. hdr_len = hdr_type_len[hdr->common.lf];
  897. if (hdr->common.lf == ETH1394_HDR_LF_UF) {
  898. /* An unfragmented datagram has been received by the ieee1394
  899. * bus. Build an skbuff around it so we can pass it to the
  900. * high level network layer. */
  901. skb = dev_alloc_skb(len + dev->hard_header_len + 15);
  902. if (unlikely(!skb)) {
  903. ETH1394_PRINT_G(KERN_ERR, "Out of memory\n");
  904. dev->stats.rx_dropped++;
  905. return -1;
  906. }
  907. skb_reserve(skb, (dev->hard_header_len + 15) & ~15);
  908. memcpy(skb_put(skb, len - hdr_len), buf + hdr_len,
  909. len - hdr_len);
  910. ether_type = hdr->uf.ether_type;
  911. } else {
  912. /* A datagram fragment has been received, now the fun begins. */
  913. struct list_head *pdgl, *lh;
  914. struct partial_datagram *pd;
  915. int fg_off;
  916. int fg_len = len - hdr_len;
  917. int dg_size;
  918. int dgl;
  919. int retval;
  920. struct pdg_list *pdg = &(node_info->pdg);
  921. hdr->words.word3 = ntohs(hdr->words.word3);
  922. /* The 4th header word is reserved so no need to do ntohs() */
  923. if (hdr->common.lf == ETH1394_HDR_LF_FF) {
  924. ether_type = hdr->ff.ether_type;
  925. dgl = hdr->ff.dgl;
  926. dg_size = hdr->ff.dg_size + 1;
  927. fg_off = 0;
  928. } else {
  929. hdr->words.word2 = ntohs(hdr->words.word2);
  930. dgl = hdr->sf.dgl;
  931. dg_size = hdr->sf.dg_size + 1;
  932. fg_off = hdr->sf.fg_off;
  933. }
  934. spin_lock_irqsave(&pdg->lock, flags);
  935. pdgl = &(pdg->list);
  936. lh = find_partial_datagram(pdgl, dgl);
  937. if (lh == NULL) {
  938. while (pdg->sz >= max_partial_datagrams) {
  939. /* remove the oldest */
  940. purge_partial_datagram(pdgl->prev);
  941. pdg->sz--;
  942. }
  943. retval = new_partial_datagram(dev, pdgl, dgl, dg_size,
  944. buf + hdr_len, fg_off,
  945. fg_len);
  946. if (retval < 0) {
  947. spin_unlock_irqrestore(&pdg->lock, flags);
  948. goto bad_proto;
  949. }
  950. pdg->sz++;
  951. lh = find_partial_datagram(pdgl, dgl);
  952. } else {
  953. pd = list_entry(lh, struct partial_datagram, list);
  954. if (fragment_overlap(&pd->frag_info, fg_off, fg_len)) {
  955. /* Overlapping fragments, obliterate old
  956. * datagram and start new one. */
  957. purge_partial_datagram(lh);
  958. retval = new_partial_datagram(dev, pdgl, dgl,
  959. dg_size,
  960. buf + hdr_len,
  961. fg_off, fg_len);
  962. if (retval < 0) {
  963. pdg->sz--;
  964. spin_unlock_irqrestore(&pdg->lock, flags);
  965. goto bad_proto;
  966. }
  967. } else {
  968. retval = update_partial_datagram(pdgl, lh,
  969. buf + hdr_len,
  970. fg_off, fg_len);
  971. if (retval < 0) {
  972. /* Couldn't save off fragment anyway
  973. * so might as well obliterate the
  974. * datagram now. */
  975. purge_partial_datagram(lh);
  976. pdg->sz--;
  977. spin_unlock_irqrestore(&pdg->lock, flags);
  978. goto bad_proto;
  979. }
  980. } /* fragment overlap */
  981. } /* new datagram or add to existing one */
  982. pd = list_entry(lh, struct partial_datagram, list);
  983. if (hdr->common.lf == ETH1394_HDR_LF_FF)
  984. pd->ether_type = ether_type;
  985. if (is_datagram_complete(lh, dg_size)) {
  986. ether_type = pd->ether_type;
  987. pdg->sz--;
  988. skb = skb_get(pd->skb);
  989. purge_partial_datagram(lh);
  990. spin_unlock_irqrestore(&pdg->lock, flags);
  991. } else {
  992. /* Datagram is not complete, we're done for the
  993. * moment. */
  994. spin_unlock_irqrestore(&pdg->lock, flags);
  995. return 0;
  996. }
  997. } /* unframgented datagram or fragmented one */
  998. /* Write metadata, and then pass to the receive level */
  999. skb->dev = dev;
  1000. skb->ip_summed = CHECKSUM_UNNECESSARY; /* don't check it */
  1001. /* Parse the encapsulation header. This actually does the job of
  1002. * converting to an ethernet frame header, aswell as arp
  1003. * conversion if needed. ARP conversion is easier in this
  1004. * direction, since we are using ethernet as our backend. */
  1005. skb->protocol = ether1394_parse_encap(skb, dev, srcid, destid,
  1006. ether_type);
  1007. spin_lock_irqsave(&priv->lock, flags);
  1008. if (!skb->protocol) {
  1009. dev->stats.rx_errors++;
  1010. dev->stats.rx_dropped++;
  1011. dev_kfree_skb_any(skb);
  1012. } else if (netif_rx(skb) == NET_RX_DROP) {
  1013. dev->stats.rx_errors++;
  1014. dev->stats.rx_dropped++;
  1015. } else {
  1016. dev->stats.rx_packets++;
  1017. dev->stats.rx_bytes += skb->len;
  1018. }
  1019. spin_unlock_irqrestore(&priv->lock, flags);
  1020. bad_proto:
  1021. if (netif_queue_stopped(dev))
  1022. netif_wake_queue(dev);
  1023. return 0;
  1024. }
  1025. static int ether1394_write(struct hpsb_host *host, int srcid, int destid,
  1026. quadlet_t *data, u64 addr, size_t len, u16 flags)
  1027. {
  1028. struct eth1394_host_info *hi;
  1029. hi = hpsb_get_hostinfo(&eth1394_highlevel, host);
  1030. if (unlikely(!hi)) {
  1031. ETH1394_PRINT_G(KERN_ERR, "No net device at fw-host%d\n",
  1032. host->id);
  1033. return RCODE_ADDRESS_ERROR;
  1034. }
  1035. if (ether1394_data_handler(hi->dev, srcid, destid, (char*)data, len))
  1036. return RCODE_ADDRESS_ERROR;
  1037. else
  1038. return RCODE_COMPLETE;
  1039. }
  1040. static void ether1394_iso(struct hpsb_iso *iso)
  1041. {
  1042. __be32 *data;
  1043. char *buf;
  1044. struct eth1394_host_info *hi;
  1045. struct net_device *dev;
  1046. struct eth1394_priv *priv;
  1047. unsigned int len;
  1048. u32 specifier_id;
  1049. u16 source_id;
  1050. int i;
  1051. int nready;
  1052. hi = hpsb_get_hostinfo(&eth1394_highlevel, iso->host);
  1053. if (unlikely(!hi)) {
  1054. ETH1394_PRINT_G(KERN_ERR, "No net device at fw-host%d\n",
  1055. iso->host->id);
  1056. return;
  1057. }
  1058. dev = hi->dev;
  1059. nready = hpsb_iso_n_ready(iso);
  1060. for (i = 0; i < nready; i++) {
  1061. struct hpsb_iso_packet_info *info =
  1062. &iso->infos[(iso->first_packet + i) % iso->buf_packets];
  1063. data = (__be32 *)(iso->data_buf.kvirt + info->offset);
  1064. /* skip over GASP header */
  1065. buf = (char *)data + 8;
  1066. len = info->len - 8;
  1067. specifier_id = (be32_to_cpu(data[0]) & 0xffff) << 8 |
  1068. (be32_to_cpu(data[1]) & 0xff000000) >> 24;
  1069. source_id = be32_to_cpu(data[0]) >> 16;
  1070. priv = netdev_priv(dev);
  1071. if (info->channel != (iso->host->csr.broadcast_channel & 0x3f)
  1072. || specifier_id != ETHER1394_GASP_SPECIFIER_ID) {
  1073. /* This packet is not for us */
  1074. continue;
  1075. }
  1076. ether1394_data_handler(dev, source_id, LOCAL_BUS | ALL_NODES,
  1077. buf, len);
  1078. }
  1079. hpsb_iso_recv_release_packets(iso, i);
  1080. dev->last_rx = jiffies;
  1081. }
  1082. /******************************************
  1083. * Datagram transmission code
  1084. ******************************************/
  1085. /* Convert a standard ARP packet to 1394 ARP. The first 8 bytes (the entire
  1086. * arphdr) is the same format as the ip1394 header, so they overlap. The rest
  1087. * needs to be munged a bit. The remainder of the arphdr is formatted based
  1088. * on hwaddr len and ipaddr len. We know what they'll be, so it's easy to
  1089. * judge.
  1090. *
  1091. * Now that the EUI is used for the hardware address all we need to do to make
  1092. * this work for 1394 is to insert 2 quadlets that contain max_rec size,
  1093. * speed, and unicast FIFO address information between the sender_unique_id
  1094. * and the IP addresses.
  1095. */
  1096. static void ether1394_arp_to_1394arp(struct sk_buff *skb,
  1097. struct net_device *dev)
  1098. {
  1099. struct eth1394_priv *priv = netdev_priv(dev);
  1100. struct arphdr *arp = (struct arphdr *)skb->data;
  1101. unsigned char *arp_ptr = (unsigned char *)(arp + 1);
  1102. struct eth1394_arp *arp1394 = (struct eth1394_arp *)skb->data;
  1103. arp1394->hw_addr_len = 16;
  1104. arp1394->sip = *(u32*)(arp_ptr + ETH1394_ALEN);
  1105. arp1394->max_rec = priv->host->csr.max_rec;
  1106. arp1394->sspd = priv->host->csr.lnk_spd;
  1107. arp1394->fifo_hi = htons(priv->local_fifo >> 32);
  1108. arp1394->fifo_lo = htonl(priv->local_fifo & ~0x0);
  1109. }
  1110. /* We need to encapsulate the standard header with our own. We use the
  1111. * ethernet header's proto for our own. */
  1112. static unsigned int ether1394_encapsulate_prep(unsigned int max_payload,
  1113. __be16 proto,
  1114. union eth1394_hdr *hdr,
  1115. u16 dg_size, u16 dgl)
  1116. {
  1117. unsigned int adj_max_payload =
  1118. max_payload - hdr_type_len[ETH1394_HDR_LF_UF];
  1119. /* Does it all fit in one packet? */
  1120. if (dg_size <= adj_max_payload) {
  1121. hdr->uf.lf = ETH1394_HDR_LF_UF;
  1122. hdr->uf.ether_type = proto;
  1123. } else {
  1124. hdr->ff.lf = ETH1394_HDR_LF_FF;
  1125. hdr->ff.ether_type = proto;
  1126. hdr->ff.dg_size = dg_size - 1;
  1127. hdr->ff.dgl = dgl;
  1128. adj_max_payload = max_payload - hdr_type_len[ETH1394_HDR_LF_FF];
  1129. }
  1130. return DIV_ROUND_UP(dg_size, adj_max_payload);
  1131. }
  1132. static unsigned int ether1394_encapsulate(struct sk_buff *skb,
  1133. unsigned int max_payload,
  1134. union eth1394_hdr *hdr)
  1135. {
  1136. union eth1394_hdr *bufhdr;
  1137. int ftype = hdr->common.lf;
  1138. int hdrsz = hdr_type_len[ftype];
  1139. unsigned int adj_max_payload = max_payload - hdrsz;
  1140. switch (ftype) {
  1141. case ETH1394_HDR_LF_UF:
  1142. bufhdr = (union eth1394_hdr *)skb_push(skb, hdrsz);
  1143. bufhdr->words.word1 = htons(hdr->words.word1);
  1144. bufhdr->words.word2 = hdr->words.word2;
  1145. break;
  1146. case ETH1394_HDR_LF_FF:
  1147. bufhdr = (union eth1394_hdr *)skb_push(skb, hdrsz);
  1148. bufhdr->words.word1 = htons(hdr->words.word1);
  1149. bufhdr->words.word2 = hdr->words.word2;
  1150. bufhdr->words.word3 = htons(hdr->words.word3);
  1151. bufhdr->words.word4 = 0;
  1152. /* Set frag type here for future interior fragments */
  1153. hdr->common.lf = ETH1394_HDR_LF_IF;
  1154. hdr->sf.fg_off = 0;
  1155. break;
  1156. default:
  1157. hdr->sf.fg_off += adj_max_payload;
  1158. bufhdr = (union eth1394_hdr *)skb_pull(skb, adj_max_payload);
  1159. if (max_payload >= skb->len)
  1160. hdr->common.lf = ETH1394_HDR_LF_LF;
  1161. bufhdr->words.word1 = htons(hdr->words.word1);
  1162. bufhdr->words.word2 = htons(hdr->words.word2);
  1163. bufhdr->words.word3 = htons(hdr->words.word3);
  1164. bufhdr->words.word4 = 0;
  1165. }
  1166. return min(max_payload, skb->len);
  1167. }
  1168. static struct hpsb_packet *ether1394_alloc_common_packet(struct hpsb_host *host)
  1169. {
  1170. struct hpsb_packet *p;
  1171. p = hpsb_alloc_packet(0);
  1172. if (p) {
  1173. p->host = host;
  1174. p->generation = get_hpsb_generation(host);
  1175. p->type = hpsb_async;
  1176. }
  1177. return p;
  1178. }
  1179. static int ether1394_prep_write_packet(struct hpsb_packet *p,
  1180. struct hpsb_host *host, nodeid_t node,
  1181. u64 addr, void *data, int tx_len)
  1182. {
  1183. p->node_id = node;
  1184. if (hpsb_get_tlabel(p))
  1185. return -EAGAIN;
  1186. p->tcode = TCODE_WRITEB;
  1187. p->header_size = 16;
  1188. p->expect_response = 1;
  1189. p->header[0] =
  1190. p->node_id << 16 | p->tlabel << 10 | 1 << 8 | TCODE_WRITEB << 4;
  1191. p->header[1] = host->node_id << 16 | addr >> 32;
  1192. p->header[2] = addr & 0xffffffff;
  1193. p->header[3] = tx_len << 16;
  1194. p->data_size = (tx_len + 3) & ~3;
  1195. p->data = data;
  1196. return 0;
  1197. }
  1198. static void ether1394_prep_gasp_packet(struct hpsb_packet *p,
  1199. struct eth1394_priv *priv,
  1200. struct sk_buff *skb, int length)
  1201. {
  1202. p->header_size = 4;
  1203. p->tcode = TCODE_STREAM_DATA;
  1204. p->header[0] = length << 16 | 3 << 14 | priv->broadcast_channel << 8 |
  1205. TCODE_STREAM_DATA << 4;
  1206. p->data_size = length;
  1207. p->data = (quadlet_t *)skb->data - 2;
  1208. p->data[0] = cpu_to_be32(priv->host->node_id << 16 |
  1209. ETHER1394_GASP_SPECIFIER_ID_HI);
  1210. p->data[1] = cpu_to_be32(ETHER1394_GASP_SPECIFIER_ID_LO << 24 |
  1211. ETHER1394_GASP_VERSION);
  1212. p->speed_code = priv->bc_sspd;
  1213. /* prevent hpsb_send_packet() from overriding our speed code */
  1214. p->node_id = LOCAL_BUS | ALL_NODES;
  1215. }
  1216. static void ether1394_free_packet(struct hpsb_packet *packet)
  1217. {
  1218. if (packet->tcode != TCODE_STREAM_DATA)
  1219. hpsb_free_tlabel(packet);
  1220. hpsb_free_packet(packet);
  1221. }
  1222. static void ether1394_complete_cb(void *__ptask);
  1223. static int ether1394_send_packet(struct packet_task *ptask, unsigned int tx_len)
  1224. {
  1225. struct eth1394_priv *priv = ptask->priv;
  1226. struct hpsb_packet *packet = NULL;
  1227. packet = ether1394_alloc_common_packet(priv->host);
  1228. if (!packet)
  1229. return -ENOMEM;
  1230. if (ptask->tx_type == ETH1394_GASP) {
  1231. int length = tx_len + 2 * sizeof(quadlet_t);
  1232. ether1394_prep_gasp_packet(packet, priv, ptask->skb, length);
  1233. } else if (ether1394_prep_write_packet(packet, priv->host,
  1234. ptask->dest_node,
  1235. ptask->addr, ptask->skb->data,
  1236. tx_len)) {
  1237. hpsb_free_packet(packet);
  1238. return -EAGAIN;
  1239. }
  1240. ptask->packet = packet;
  1241. hpsb_set_packet_complete_task(ptask->packet, ether1394_complete_cb,
  1242. ptask);
  1243. if (hpsb_send_packet(packet) < 0) {
  1244. ether1394_free_packet(packet);
  1245. return -EIO;
  1246. }
  1247. return 0;
  1248. }
  1249. /* Task function to be run when a datagram transmission is completed */
  1250. static void ether1394_dg_complete(struct packet_task *ptask, int fail)
  1251. {
  1252. struct sk_buff *skb = ptask->skb;
  1253. struct net_device *dev = skb->dev;
  1254. struct eth1394_priv *priv = netdev_priv(dev);
  1255. unsigned long flags;
  1256. /* Statistics */
  1257. spin_lock_irqsave(&priv->lock, flags);
  1258. if (fail) {
  1259. dev->stats.tx_dropped++;
  1260. dev->stats.tx_errors++;
  1261. } else {
  1262. dev->stats.tx_bytes += skb->len;
  1263. dev->stats.tx_packets++;
  1264. }
  1265. spin_unlock_irqrestore(&priv->lock, flags);
  1266. dev_kfree_skb_any(skb);
  1267. kmem_cache_free(packet_task_cache, ptask);
  1268. }
  1269. /* Callback for when a packet has been sent and the status of that packet is
  1270. * known */
  1271. static void ether1394_complete_cb(void *__ptask)
  1272. {
  1273. struct packet_task *ptask = (struct packet_task *)__ptask;
  1274. struct hpsb_packet *packet = ptask->packet;
  1275. int fail = 0;
  1276. if (packet->tcode != TCODE_STREAM_DATA)
  1277. fail = hpsb_packet_success(packet);
  1278. ether1394_free_packet(packet);
  1279. ptask->outstanding_pkts--;
  1280. if (ptask->outstanding_pkts > 0 && !fail) {
  1281. int tx_len, err;
  1282. /* Add the encapsulation header to the fragment */
  1283. tx_len = ether1394_encapsulate(ptask->skb, ptask->max_payload,
  1284. &ptask->hdr);
  1285. err = ether1394_send_packet(ptask, tx_len);
  1286. if (err) {
  1287. if (err == -EAGAIN)
  1288. ETH1394_PRINT_G(KERN_ERR, "Out of tlabels\n");
  1289. ether1394_dg_complete(ptask, 1);
  1290. }
  1291. } else {
  1292. ether1394_dg_complete(ptask, fail);
  1293. }
  1294. }
  1295. /* Transmit a packet (called by kernel) */
  1296. static int ether1394_tx(struct sk_buff *skb, struct net_device *dev)
  1297. {
  1298. struct eth1394hdr hdr_buf;
  1299. struct eth1394_priv *priv = netdev_priv(dev);
  1300. __be16 proto;
  1301. unsigned long flags;
  1302. nodeid_t dest_node;
  1303. eth1394_tx_type tx_type;
  1304. unsigned int tx_len;
  1305. unsigned int max_payload;
  1306. u16 dg_size;
  1307. u16 dgl;
  1308. struct packet_task *ptask;
  1309. struct eth1394_node_ref *node;
  1310. struct eth1394_node_info *node_info = NULL;
  1311. ptask = kmem_cache_alloc(packet_task_cache, GFP_ATOMIC);
  1312. if (ptask == NULL)
  1313. goto fail;
  1314. /* XXX Ignore this for now. Noticed that when MacOSX is the IRM,
  1315. * it does not set our validity bit. We need to compensate for
  1316. * that somewhere else, but not in eth1394. */
  1317. #if 0
  1318. if ((priv->host->csr.broadcast_channel & 0xc0000000) != 0xc0000000)
  1319. goto fail;
  1320. #endif
  1321. skb = skb_share_check(skb, GFP_ATOMIC);
  1322. if (!skb)
  1323. goto fail;
  1324. /* Get rid of the fake eth1394 header, but first make a copy.
  1325. * We might need to rebuild the header on tx failure. */
  1326. memcpy(&hdr_buf, skb->data, sizeof(hdr_buf));
  1327. skb_pull(skb, ETH1394_HLEN);
  1328. proto = hdr_buf.h_proto;
  1329. dg_size = skb->len;
  1330. /* Set the transmission type for the packet. ARP packets and IP
  1331. * broadcast packets are sent via GASP. */
  1332. if (memcmp(hdr_buf.h_dest, dev->broadcast, ETH1394_ALEN) == 0 ||
  1333. proto == htons(ETH_P_ARP) ||
  1334. (proto == htons(ETH_P_IP) &&
  1335. IN_MULTICAST(ntohl(ip_hdr(skb)->daddr)))) {
  1336. tx_type = ETH1394_GASP;
  1337. dest_node = LOCAL_BUS | ALL_NODES;
  1338. max_payload = priv->bc_maxpayload - ETHER1394_GASP_OVERHEAD;
  1339. BUG_ON(max_payload < 512 - ETHER1394_GASP_OVERHEAD);
  1340. dgl = priv->bc_dgl;
  1341. if (max_payload < dg_size + hdr_type_len[ETH1394_HDR_LF_UF])
  1342. priv->bc_dgl++;
  1343. } else {
  1344. __be64 guid = get_unaligned((__be64 *)hdr_buf.h_dest);
  1345. node = eth1394_find_node_guid(&priv->ip_node_list,
  1346. be64_to_cpu(guid));
  1347. if (!node)
  1348. goto fail;
  1349. node_info = dev_get_drvdata(&node->ud->device);
  1350. if (node_info->fifo == CSR1212_INVALID_ADDR_SPACE)
  1351. goto fail;
  1352. dest_node = node->ud->ne->nodeid;
  1353. max_payload = node_info->maxpayload;
  1354. BUG_ON(max_payload < 512 - ETHER1394_GASP_OVERHEAD);
  1355. dgl = node_info->dgl;
  1356. if (max_payload < dg_size + hdr_type_len[ETH1394_HDR_LF_UF])
  1357. node_info->dgl++;
  1358. tx_type = ETH1394_WRREQ;
  1359. }
  1360. /* If this is an ARP packet, convert it */
  1361. if (proto == htons(ETH_P_ARP))
  1362. ether1394_arp_to_1394arp(skb, dev);
  1363. ptask->hdr.words.word1 = 0;
  1364. ptask->hdr.words.word2 = 0;
  1365. ptask->hdr.words.word3 = 0;
  1366. ptask->hdr.words.word4 = 0;
  1367. ptask->skb = skb;
  1368. ptask->priv = priv;
  1369. ptask->tx_type = tx_type;
  1370. if (tx_type != ETH1394_GASP) {
  1371. u64 addr;
  1372. spin_lock_irqsave(&priv->lock, flags);
  1373. addr = node_info->fifo;
  1374. spin_unlock_irqrestore(&priv->lock, flags);
  1375. ptask->addr = addr;
  1376. ptask->dest_node = dest_node;
  1377. }
  1378. ptask->tx_type = tx_type;
  1379. ptask->max_payload = max_payload;
  1380. ptask->outstanding_pkts = ether1394_encapsulate_prep(max_payload,
  1381. proto, &ptask->hdr, dg_size, dgl);
  1382. /* Add the encapsulation header to the fragment */
  1383. tx_len = ether1394_encapsulate(skb, max_payload, &ptask->hdr);
  1384. dev->trans_start = jiffies;
  1385. if (ether1394_send_packet(ptask, tx_len)) {
  1386. if (dest_node == (LOCAL_BUS | ALL_NODES))
  1387. goto fail;
  1388. /* At this point we want to restore the packet. When we return
  1389. * here with NETDEV_TX_BUSY we will get another entrance in this
  1390. * routine with the same skb and we need it to look the same.
  1391. * So we pull 4 more bytes, then build the header again. */
  1392. skb_pull(skb, 4);
  1393. ether1394_header(skb, dev, ntohs(hdr_buf.h_proto),
  1394. hdr_buf.h_dest, NULL, 0);
  1395. /* Most failures of ether1394_send_packet are recoverable. */
  1396. netif_stop_queue(dev);
  1397. priv->wake_node = dest_node;
  1398. schedule_work(&priv->wake);
  1399. kmem_cache_free(packet_task_cache, ptask);
  1400. return NETDEV_TX_BUSY;
  1401. }
  1402. return NETDEV_TX_OK;
  1403. fail:
  1404. if (ptask)
  1405. kmem_cache_free(packet_task_cache, ptask);
  1406. if (skb != NULL)
  1407. dev_kfree_skb(skb);
  1408. spin_lock_irqsave(&priv->lock, flags);
  1409. dev->stats.tx_dropped++;
  1410. dev->stats.tx_errors++;
  1411. spin_unlock_irqrestore(&priv->lock, flags);
  1412. /*
  1413. * FIXME: According to a patch from 2003-02-26, "returning non-zero
  1414. * causes serious problems" here, allegedly. Before that patch,
  1415. * -ERRNO was returned which is not appropriate under Linux 2.6.
  1416. * Perhaps more needs to be done? Stop the queue in serious
  1417. * conditions and restart it elsewhere?
  1418. */
  1419. /* return NETDEV_TX_BUSY; */
  1420. return NETDEV_TX_OK;
  1421. }
  1422. static void ether1394_get_drvinfo(struct net_device *dev,
  1423. struct ethtool_drvinfo *info)
  1424. {
  1425. strcpy(info->driver, driver_name);
  1426. strcpy(info->bus_info, "ieee1394"); /* FIXME provide more detail? */
  1427. }
  1428. static struct ethtool_ops ethtool_ops = {
  1429. .get_drvinfo = ether1394_get_drvinfo
  1430. };
  1431. static int __init ether1394_init_module(void)
  1432. {
  1433. int err;
  1434. packet_task_cache = kmem_cache_create("packet_task",
  1435. sizeof(struct packet_task),
  1436. 0, 0, NULL);
  1437. if (!packet_task_cache)
  1438. return -ENOMEM;
  1439. hpsb_register_highlevel(&eth1394_highlevel);
  1440. err = hpsb_register_protocol(&eth1394_proto_driver);
  1441. if (err) {
  1442. hpsb_unregister_highlevel(&eth1394_highlevel);
  1443. kmem_cache_destroy(packet_task_cache);
  1444. }
  1445. return err;
  1446. }
  1447. static void __exit ether1394_exit_module(void)
  1448. {
  1449. hpsb_unregister_protocol(&eth1394_proto_driver);
  1450. hpsb_unregister_highlevel(&eth1394_highlevel);
  1451. kmem_cache_destroy(packet_task_cache);
  1452. }
  1453. module_init(ether1394_init_module);
  1454. module_exit(ether1394_exit_module);