infiniband.h 1.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. #ifndef _GPXE_INFINIBAND_H
  2. #define _GPXE_INFINIBAND_H
  3. /** @file
  4. *
  5. * Infiniband protocol
  6. *
  7. */
  8. #include <stdint.h>
  9. #include <gpxe/netdevice.h>
  10. /** Infiniband hardware address length */
  11. #define IB_ALEN 20
  12. #define IB_HLEN 24
  13. /** An Infiniband Global Identifier */
  14. struct ib_gid {
  15. uint8_t bytes[16];
  16. };
  17. /** An Infiniband Global Route Header */
  18. struct ib_global_route_header {
  19. /** IP version, traffic class, and flow label
  20. *
  21. * 4 bits : Version of the GRH
  22. * 8 bits : Traffic class
  23. * 20 bits : Flow label
  24. */
  25. uint32_t ipver_tclass_flowlabel;
  26. /** Payload length */
  27. uint16_t paylen;
  28. /** Next header */
  29. uint8_t nxthdr;
  30. /** Hop limit */
  31. uint8_t hoplmt;
  32. /** Source GID */
  33. struct ib_gid sgid;
  34. /** Destiniation GID */
  35. struct ib_gid dgid;
  36. } __attribute__ (( packed ));
  37. /** An Infiniband MAC address */
  38. struct ib_mac {
  39. /** Queue pair number
  40. *
  41. * MSB must be zero; QPNs are only 24-bit.
  42. */
  43. uint32_t qpn;
  44. /** Port GID */
  45. struct ib_gid gid;
  46. } __attribute__ (( packed ));
  47. /** An Infiniband header
  48. *
  49. * This data structure doesn't represent the on-wire format, but does
  50. * contain all the information required by the driver to construct the
  51. * packet.
  52. */
  53. struct ibhdr {
  54. /** Peer address */
  55. uint8_t peer[IB_ALEN];
  56. /** Network-layer protocol */
  57. uint16_t proto;
  58. /** Reserved, must be zero */
  59. uint16_t reserved;
  60. } __attribute__ (( packed ));
  61. extern struct ll_protocol infiniband_protocol;
  62. extern const char * ib_ntoa ( const void *ll_addr );
  63. /**
  64. * Allocate Infiniband device
  65. *
  66. * @v priv_size Size of driver private data
  67. * @ret netdev Network device, or NULL
  68. */
  69. static inline struct net_device * alloc_ibdev ( size_t priv_size ) {
  70. struct net_device *netdev;
  71. netdev = alloc_netdev ( priv_size );
  72. if ( netdev ) {
  73. netdev->ll_protocol = &infiniband_protocol;
  74. }
  75. return netdev;
  76. }
  77. #endif /* _GPXE_INFINIBAND_H */