1 /* SPDX-License-Identifier: GPL-2.0 */ 1 /* SPDX-License-Identifier: GPL-2.0 */ 2 #ifndef _NET_FIREWIRE_H 2 #ifndef _NET_FIREWIRE_H 3 #define _NET_FIREWIRE_H 3 #define _NET_FIREWIRE_H 4 4 5 #include <linux/types.h> << 6 << 7 /* Pseudo L2 address */ 5 /* Pseudo L2 address */ 8 #define FWNET_ALEN 16 6 #define FWNET_ALEN 16 9 union fwnet_hwaddr { 7 union fwnet_hwaddr { 10 u8 u[FWNET_ALEN]; 8 u8 u[FWNET_ALEN]; 11 /* "Hardware address" defined in RFC27 9 /* "Hardware address" defined in RFC2734/RF3146 */ 12 struct { 10 struct { 13 __be64 uniq_id; /* EUI 11 __be64 uniq_id; /* EUI-64 */ 14 u8 max_rec; /* max 12 u8 max_rec; /* max packet size */ 15 u8 sspd; /* max 13 u8 sspd; /* max speed */ 16 u8 fifo[6]; /* FIF !! 14 __be16 fifo_hi; /* hi 16bits of FIFO addr */ >> 15 __be32 fifo_lo; /* lo 32bits of FIFO addr */ 17 } __packed uc; 16 } __packed uc; 18 }; 17 }; 19 18 20 /* Pseudo L2 Header */ 19 /* Pseudo L2 Header */ 21 #define FWNET_HLEN 18 20 #define FWNET_HLEN 18 22 struct fwnet_header { 21 struct fwnet_header { 23 u8 h_dest[FWNET_ALEN]; /* destination 22 u8 h_dest[FWNET_ALEN]; /* destination address */ 24 __be16 h_proto; /* packet type 23 __be16 h_proto; /* packet type ID field */ 25 } __packed; 24 } __packed; 26 25 27 #endif 26 #endif 28 27
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.