if_arcnet.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:4k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * INET         An implementation of the TCP/IP protocol suite for the LINUX
  3.  *              operating system.  INET is implemented using the  BSD Socket
  4.  *              interface as the means of communication with the user level.
  5.  *
  6.  *              Global definitions for the ARCnet interface.
  7.  *
  8.  * Authors:     David Woodhouse and Avery Pennarun
  9.  *
  10.  *              This program is free software; you can redistribute it and/or
  11.  *              modify it under the terms of the GNU General Public License
  12.  *              as published by the Free Software Foundation; either version
  13.  *              2 of the License, or (at your option) any later version.
  14.  */
  15. #ifndef _LINUX_IF_ARCNET_H
  16. #define _LINUX_IF_ARCNET_H
  17. #include <linux/if_ether.h>
  18. /*
  19.  *    These are the defined ARCnet Protocol ID's.
  20.  */
  21. /* CAP mode */
  22. /* No macro but uses 1-8 */
  23. /* RFC1201 Protocol ID's */
  24. #define ARC_P_IP 212 /* 0xD4 */
  25. #define ARC_P_IPV6 196 /* 0xC4: RFC2497 */
  26. #define ARC_P_ARP 213 /* 0xD5 */
  27. #define ARC_P_RARP 214 /* 0xD6 */
  28. #define ARC_P_IPX 250 /* 0xFA */
  29. #define ARC_P_NOVELL_EC 236 /* 0xEC */
  30. /* Old RFC1051 Protocol ID's */
  31. #define ARC_P_IP_RFC1051 240 /* 0xF0 */
  32. #define ARC_P_ARP_RFC1051 241 /* 0xF1 */
  33. /* MS LanMan/WfWg "NDIS" encapsulation */
  34. #define ARC_P_ETHER 232 /* 0xE8 */
  35. /* Unsupported/indirectly supported protocols */
  36. #define ARC_P_DATAPOINT_BOOT 0 /* very old Datapoint equipment */
  37. #define ARC_P_DATAPOINT_MOUNT 1
  38. #define ARC_P_POWERLAN_BEACON 8 /* Probably ATA-Netbios related */
  39. #define ARC_P_POWERLAN_BEACON2 243 /* 0xF3 */
  40. #define ARC_P_LANSOFT 251 /* 0xFB - what is this? */
  41. #define ARC_P_ATALK 0xDD
  42. /* Hardware address length */
  43. #define ARCNET_ALEN 1
  44. /*
  45.  * The RFC1201-specific components of an arcnet packet header.
  46.  */
  47. struct arc_rfc1201
  48. {
  49.     uint8_t  proto; /* protocol ID field - varies */
  50.     uint8_t  split_flag; /* for use with split packets */
  51.     uint16_t sequence; /* sequence number */
  52.     uint8_t  payload[0]; /* space remaining in packet (504 bytes)*/
  53. };
  54. #define RFC1201_HDR_SIZE 4
  55. /*
  56.  * The RFC1051-specific components.
  57.  */
  58. struct arc_rfc1051
  59. {
  60.     uint8_t proto; /* ARC_P_RFC1051_ARP/RFC1051_IP */
  61.     uint8_t payload[0]; /* 507 bytes */
  62. };
  63. #define RFC1051_HDR_SIZE 1
  64. /*
  65.  * The ethernet-encap-specific components.  We have a real ethernet header
  66.  * and some data.
  67.  */
  68. struct arc_eth_encap
  69. {
  70.     uint8_t proto; /* Always ARC_P_ETHER */
  71.     struct ethhdr eth; /* standard ethernet header (yuck!) */
  72.     uint8_t payload[0]; /* 493 bytes */
  73. };
  74. #define ETH_ENCAP_HDR_SIZE 14
  75. struct arc_cap
  76. {
  77. uint8_t proto;
  78. uint8_t cookie[sizeof(int)];   /* Actually NOT sent over the network */
  79. union {
  80. uint8_t ack;
  81. uint8_t raw[0]; /* 507 bytes */
  82. } mes;
  83. };
  84. /*
  85.  * The data needed by the actual arcnet hardware.
  86.  *
  87.  * Now, in the real arcnet hardware, the third and fourth bytes are the
  88.  * 'offset' specification instead of the length, and the soft data is at
  89.  * the _end_ of the 512-byte buffer.  We hide this complexity inside the
  90.  * driver.
  91.  */
  92. struct arc_hardware
  93. {
  94.     uint8_t  source, /* source ARCnet - filled in automagically */
  95.              dest, /* destination ARCnet - 0 for broadcast    */
  96.           offset[2]; /* offset bytes (some weird semantics)     */
  97. };
  98. #define ARC_HDR_SIZE 4
  99. /*
  100.  * This is an ARCnet frame header, as seen by the kernel (and userspace,
  101.  * when you do a raw packet capture).
  102.  */
  103. struct archdr
  104. {
  105.     /* hardware requirements */
  106.     struct arc_hardware hard;
  107.      
  108.     /* arcnet encapsulation-specific bits */
  109.     union {
  110. struct arc_rfc1201   rfc1201;
  111. struct arc_rfc1051   rfc1051;
  112. struct arc_eth_encap eth_encap;
  113. struct arc_cap       cap;
  114. uint8_t raw[0]; /* 508 bytes */
  115.     } soft;
  116. };
  117. #endif /* _LINUX_IF_ARCNET_H */