blob: ad407b0cfffbf4f5b21fc6eeca23b0843af5fccf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
#ifndef _IPXE_IB_SRP_H
#define _IPXE_IB_SRP_H
/** @file
*
* SCSI RDMA Protocol over Infiniband
*
*/
FILE_LICENCE ( BSD2 );
#include <stdint.h>
#include <ipxe/infiniband.h>
#include <ipxe/srp.h>
/** SRP initiator port identifier for Infiniband */
union ib_srp_initiator_port_id {
/** SRP version of port identifier */
union srp_port_id srp;
/** Infiniband version of port identifier */
struct {
/** Identifier extension */
union ib_guid id_ext;
/** IB channel adapter GUID */
union ib_guid hca_guid;
} __attribute__ (( packed )) ib;
};
/** SRP target port identifier for Infiniband */
union ib_srp_target_port_id {
/** SRP version of port identifier */
union srp_port_id srp;
/** Infiniband version of port identifier */
struct {
/** Identifier extension */
union ib_guid id_ext;
/** I/O controller GUID */
union ib_guid ioc_guid;
} __attribute__ (( packed )) ib;
};
/**
* sBFT Infiniband subtable
*/
struct sbft_ib_subtable {
/** Source GID */
union ib_gid sgid;
/** Destination GID */
union ib_gid dgid;
/** Service ID */
union ib_guid service_id;
/** Partition key */
uint16_t pkey;
/** Reserved */
uint8_t reserved[6];
} __attribute__ (( packed ));
#endif /* _IPXE_IB_SRP_H */
|