eth1394.c 48 KB

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