1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- #ifndef _GPXE_INFINIBAND_H
- #define _GPXE_INFINIBAND_H
-
-
-
- #include <stdint.h>
- #include <gpxe/netdevice.h>
-
-
- #define IB_ALEN 20
- #define IB_HLEN 24
-
-
- struct ib_gid {
- uint8_t bytes[16];
- };
-
-
- struct ib_global_route_header {
-
-
- uint32_t ipver_tclass_flowlabel;
-
- uint16_t paylen;
-
- uint8_t nxthdr;
-
- uint8_t hoplmt;
-
- struct ib_gid sgid;
-
- struct ib_gid dgid;
- } __attribute__ (( packed ));
-
-
- struct ib_mac {
-
-
- uint32_t qpn;
-
- struct ib_gid gid;
- } __attribute__ (( packed ));
-
-
- struct ibhdr {
-
- uint8_t peer[IB_ALEN];
-
- uint16_t proto;
-
- uint16_t reserved;
- } __attribute__ (( packed ));
-
- extern struct ll_protocol infiniband_protocol;
-
- extern const char * ib_ntoa ( const void *ll_addr );
-
-
- static inline struct net_device * alloc_ibdev ( size_t priv_size ) {
- struct net_device *netdev;
-
- netdev = alloc_netdev ( priv_size );
- if ( netdev ) {
- netdev->ll_protocol = &infiniband_protocol;
- }
- return netdev;
- }
-
- #endif
|