Switchtec Userspace PROJECT_NUMBER = 3.1
bind.h
1/*
2 * Microsemi Switchtec(tm) PCIe Management Library
3 * Copyright (c) 2017, Microsemi Corporation
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be included
13 * in all copies or substantial portions of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
16 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
19 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
20 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
21 * OTHER DEALINGS IN THE SOFTWARE.
22 *
23 */
24
25#ifndef LIBSWITCHTEC_BIND_H
26#define LIBSWITCHTEC_BIND_H
27
28#include <stdint.h>
29#include <switchtec/switchtec.h>
30
31#define SWITCHTEC_MAX_PHY_PORTS 48
32
33#pragma pack(push, 1)
34
35enum switchtec_bind_info_result {
36 BIND_INFO_SUCCESS = 0,
37 BIND_INFO_FAIL = 1,
38 BIND_INFO_IN_PROGRESS = 2,
39};
40
42 uint8_t sub_cmd;
43 uint8_t phys_port_id;
44 uint8_t reserved1;
45 uint8_t reserved2;
46};
47
49 uint8_t inf_cnt;
50 uint8_t reserved1;
51 uint8_t reserved2;
52 uint8_t reserved3;
53 struct {
54 uint8_t phys_port_id;
55 uint8_t par_id;
56 uint8_t log_port_id;
57 uint8_t bind_state;
58 } port_info[SWITCHTEC_MAX_PHY_PORTS];
59};
60
62 uint8_t sub_cmd;
63 uint8_t par_id;
64 uint8_t log_port_id;
65 uint8_t phys_port_id;
66};
67
69 uint8_t sub_cmd;
70 uint8_t par_id;
71 uint8_t log_port_id;
72 uint8_t opt;
73};
74
76 uint8_t sub_cmd;
77 uint8_t stack_id;
78 uint8_t resvd[2];
79 uint32_t code;
80};
81
82#pragma pack(pop)
83
84#endif
Main Switchtec header.