if_arcnet.h 3.6 KB

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