summaryrefslogtreecommitdiffstats
path: root/src/include/gpxe/ib_sma.h
blob: 835ed4eadbfd80a50c1c4dc0edd0e8699bc41207 (plain) (blame)
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
59
60
61
62
63
#ifndef _GPXE_IB_SMA_H
#define _GPXE_IB_SMA_H

/** @file
 *
 * Infiniband Subnet Management Agent
 *
 */

#include <gpxe/infiniband.h>
#include <gpxe/process.h>

/** Infiniband Subnet Management Agent operations */
struct ib_sma_operations {
	/** Set port information
	 *
	 * @v ibdev		Infiniband device
	 * @v port_info		New port information
	 */
	int ( * set_port_info ) ( struct ib_device *ibdev,
				  const struct ib_port_info *port_info );
};

/** An Infiniband Subnet Management Agent */
struct ib_sma {
	/** Infiniband device */
	struct ib_device *ibdev;
	/** SMA operations */
	struct ib_sma_operations *op;
	/** SMA completion queue */
	struct ib_completion_queue *cq;
	/** SMA queue pair */
	struct ib_queue_pair *qp;
	/** Poll process */
	struct process poll;
};

/** SMA payload size allocated for received packets */
#define IB_SMA_PAYLOAD_LEN 2048

/** SMA number of send WQEs
 *
 * This is a policy decision.
 */
#define IB_SMA_NUM_SEND_WQES 4

/** SMA number of receive WQEs
 *
 * This is a policy decision.
 */
#define IB_SMA_NUM_RECV_WQES 2

/** SMA number of completion queue entries
 *
 * This is a policy decision
 */
#define IB_SMA_NUM_CQES 8

extern int ib_create_sma ( struct ib_sma *sma, struct ib_device *ibdev,
			   struct ib_sma_operations *op );
extern void ib_destroy_sma ( struct ib_sma *sma );

#endif /* _GPXE_IB_SMA_H */