blob: d31f441c4237e0d8cbefa5a1b49231794779c183 [file] [log] [blame]
Amit Ghosh09f28362020-06-12 21:52:19 +01001syntax = "proto3";
2
3option go_package = "github.com/opencord/device-management-interface/v3/go/dmi";
4package dmi;
5
6import "google/protobuf/timestamp.proto";
7
8// The model used to represent a HW is based on RFC8348 (https://tools.ietf.org/html/rfc8348)
9
10message Uuid {
11 string uuid = 1;
12}
13
14message HardwareID {
15 Uuid uuid = 1;
16}
17
18message Uri {
19 string uri = 1;
20}
21
22enum ComponentType {
23 COMPONENT_TYPE_UNDEFINED = 0;
24 COMPONENT_TYPE_UNKNOWN = 1;
25 COMPONENT_TYPE_CHASSIS = 2;
26 COMPONENT_TYPE_BACKPLANE = 3;
27 COMPONENT_TYPE_CONTAINER = 4;
28 COMPONENT_TYPE_POWER_SUPPLY = 5;
29 COMPONENT_TYPE_FAN = 6;
30 COMPONENT_TYPE_SENSOR = 7;
31 COMPONENT_TYPE_MODULE = 8;
32 COMPONENT_TYPE_PORT = 9;
33 COMPONENT_TYPE_CPU = 10;
34 COMPONENT_TYPE_BATTERY = 11;
35 COMPONENT_TYPE_STORAGE = 12;
36 COMPONENT_TYPE_MEMORY = 13;
amit.ghosh2a6b60b2021-02-03 15:16:02 +010037 // A component of type "TRANSCEIVER" could have 0 or more components of type "PORT" as children.
Amit Ghosh09f28362020-06-12 21:52:19 +010038 COMPONENT_TYPE_TRANSCEIVER = 14;
39}
40
41enum ComponentAdminState {
42 COMP_ADMIN_STATE_UNDEFINED = 0;
43 COMP_ADMIN_STATE_UNKNOWN = 1;
44 COMP_ADMIN_STATE_LOCKED = 2;
45 COMP_ADMIN_STATE_SHUTTING_DOWN = 3;
46 COMP_ADMIN_STATE_UNLOCKED = 4;
47}
48
49enum ComponentOperState {
50 COMP_OPER_STATE_UNDEFINED = 0;
51 COMP_OPER_STATE_UNKNOWN = 1;
52 COMP_OPER_STATE_DISABLED = 2;
53 COMP_OPER_STATE_ENABLED = 3;
54 COMP_OPER_STATE_TESTING = 4;
55}
56
57enum ComponentUsageState {
58 COMP_USAGE_STATE_UNDEFINED = 0;
59 COMP_USAGE_STATE_UNKNOWN = 1;
60 COMP_USAGE_STATE_IDLE = 2;
61 COMP_USAGE_STATE_ACTIVE = 3;
62 COMP_USAGE_STATE_BUSY = 4;
63}
64
65enum ComponentAlarmState {
66 COMP_ALARM_STATE_UNDEFINED = 0;
67 COMP_ALARM_STATE_UNKNOWN = 1;
68 COMP_ALARM_STATE_UNDER_REPAIR= 2;
69 COMP_ALARM_STATE_CRITICAL = 3;
70 COMP_ALARM_STATE_MAJOR = 4;
71 COMP_ALARM_STATE_MINOR = 5;
72 COMP_ALARM_STATE_WARNING = 6;
amit.ghosh3a5c7f12020-12-11 13:56:26 +010073 COMP_ALARM_STATE_INDETERMINATE = 7;
Amit Ghosh09f28362020-06-12 21:52:19 +010074}
75
76enum ComponentStandbyState {
77 COMP_STANDBY_STATE_UNDEFINED = 0;
78 COMP_STANDBY_STATE_UNKNOWN = 1;
79 COMP_STANDBY_STATE_HOT = 2;
80 COMP_STANDBY_STATE_COLD = 3;
81 COMP_STANDBY_STATE_PROVIDING_SERVICE = 4;
82}
83
84message ComponentState {
85 google.protobuf.Timestamp state_last_changed = 1;
86 ComponentAdminState admin_state = 2;
87 ComponentOperState oper_state = 3;
88 ComponentUsageState usage_state = 4;
89 ComponentAlarmState alarm_state = 5;
90 ComponentStandbyState standby_state = 6;
91}
92
amit.ghosh2a6b60b2021-02-03 15:16:02 +010093enum DataValueType {
94 VALUE_TYPE_UNDEFINED = 0;
95 VALUE_TYPE_OTHER = 1;
96 VALUE_TYPE_UNKNOWN = 2;
97 VALUE_TYPE_VOLTS_AC = 3;
98 VALUE_TYPE_VOLTS_DC = 4;
99 VALUE_TYPE_AMPERES = 5;
100 VALUE_TYPE_WATTS = 6;
101 VALUE_TYPE_HERTZ = 7;
102 VALUE_TYPE_CELSIUS = 8;
103 VALUE_TYPE_PERCENT_RH = 9;
104 VALUE_TYPE_RPM = 10;
105 VALUE_TYPE_CMM = 11;
106 VALUE_TYPE_TRUTH_VALUE = 12;
amit.ghoshf54a9a32021-03-10 16:39:54 +0100107 VALUE_TYPE_PERCENT = 13;
108 VALUE_TYPE_METERS = 14;
109 VALUE_TYPE_BYTES = 15;
Amit Ghosh09f28362020-06-12 21:52:19 +0100110}
111
amit.ghosh2a6b60b2021-02-03 15:16:02 +0100112enum ValueScale {
113 VALUE_SCALE_UNDEFINED = 0;
114 VALUE_SCALE_YOCTO = 1;
115 VALUE_SCALE_ZEPTO = 2;
116 VALUE_SCALE_ATTO = 3;
117 VALUE_SCALE_FEMTO = 4;
118 VALUE_SCALE_PICO = 5;
119 VALUE_SCALE_NANO = 6;
120 VALUE_SCALE_MICRO = 7;
121 VALUE_SCALE_MILLI = 8;
122 VALUE_SCALE_UNITS = 9;
123 VALUE_SCALE_KILO = 10;
124 VALUE_SCALE_MEGA = 11;
125 VALUE_SCALE_GIGA = 12;
126 VALUE_SCALE_TERA = 13;
127 VALUE_SCALE_PETA = 14;
128 VALUE_SCALE_EXA = 15;
129 VALUE_SCALE_ZETTA = 16;
130 VALUE_SCALE_YOTTA =17;
Amit Ghosh09f28362020-06-12 21:52:19 +0100131}
132
133enum SensorStatus {
134 SENSOR_STATUS_UNDEFINED = 0;
135 SENSOR_STATUS_OK = 1;
136 SENSOR_STATUS_UNAVAILABLE = 2;
137 SENSOR_STATUS_NONOPERATIONAL = 3;
138}
139
140message ComponentSensorData {
141 int32 value = 1;
amit.ghosh2a6b60b2021-02-03 15:16:02 +0100142 DataValueType type = 2;
143 ValueScale scale = 3;
Amit Ghosh09f28362020-06-12 21:52:19 +0100144 int32 precision = 4;
145 SensorStatus status = 5;
146 string units_display = 6;
147 google.protobuf.Timestamp timestamp = 7;
148 uint32 value_update_rate = 8;
149 // data_type can be of the string representation of MetricNames or something else as well
150 string data_type = 9;
151}
152
amit.ghosh2a6b60b2021-02-03 15:16:02 +0100153message PortComponentAttributes{
154 enum ConnectorType {
155 CONNECTOR_TYPE_UNDEFINED = 0;
156 RJ45 = 1;
157 FIBER_LC = 2;
158 FIBER_SC_PC = 3;
159 FIBER_MPO = 4;
amit.ghosh6682fef2021-03-19 14:53:37 +0100160 RS232 = 5;
amit.ghosh2a6b60b2021-02-03 15:16:02 +0100161 }
162 enum Speed {
163 SPEED_UNDEFINED = 0;
164 DYNAMIC = 1;
165 GIGABIT_1 = 2;
166 GIGABIT_10 = 3;
167 GIGABIT_25 = 4;
168 GIGABIT_40 = 5;
169 GIGABIT_100 = 6;
170 GIGABIT_400 = 7;
171 MEGABIT_2500 = 8;
172 MEGABIT_1250 = 9;
173 }
174 enum Protocol {
175 PROTOCOL_UNDEFINED = 0;
176 ETHERNET = 1;
177 GPON = 2;
178 XGPON = 3;
179 XGSPON = 4;
180 GFAST = 5;
181 SERIAL = 6;
182 EPON = 7;
amit.ghosh6682fef2021-03-19 14:53:37 +0100183 BITS = 8;
amit.ghosh2a6b60b2021-02-03 15:16:02 +0100184 }
185 ConnectorType connector_type = 1;
186 Speed speed = 2;
187 Protocol protocol = 3;
188 string physical_label = 4;
amit.ghosh98c5a6c2021-08-12 16:19:46 +0200189 // The mapping_label can be used to map ports between the DMI interface and other systems like VOLTHA
190 // The value of the mapping_label should be exactly the same as generated for the same port by the other
191 // system
192 string mapping_label = 5;
193 PonIdConfig pon_id_config = 6;
194}
195
196message PortComponentChangeAttributes {
197 PonIdConfig pon_id_config = 1;
198}
199
200message PonIdConfig {
201 // The pon_id and pon_id_transmit_periodicity attributes are valid only for ports of type GPON, XGPON and XGSPON
202 // For GPON pon_id is a 7 byte value
203 // For XGS-PON, it's a 32 bit value, should be encoded in the first 4 bytes of pon_id in network byte order
204 bytes pon_id = 1;
205 uint32 pon_id_transmit_periodicity = 2; // The value is in seconds and defaults to 1 second
amit.ghosh2a6b60b2021-02-03 15:16:02 +0100206}
207
208message ContainerComponentAttributes{
209 string physical_label = 1;
210}
211
212message PsuComponentAttributes{
213 enum SupportedVoltage {
214 SUPPORTED_VOLTAGE_UNDEFINED = 0;
215 V48 = 1;
216 V230 = 2;
217 V115 = 3;
218 }
219 SupportedVoltage supported_voltage = 1;
220}
221
222message TransceiverComponentsAttributes{
223 enum FormFactor {
224 FORM_FACTOR_UNKNOWN = 0;
225 QSFP = 1;
226 QSFP_PLUS = 2;
227 QSFP28 = 3;
228 SFP = 4;
229 SFP_PLUS = 5;
230 XFP = 6;
231 CFP4 = 7;
232 CFP2 = 8;
233 CPAK = 9;
234 X2 = 10;
235 OTHER = 11;
236 CFP = 12;
237 CFP2_ACO = 13;
238 CFP2_DCO = 14;
239 }
240
241 enum Type {
242 TYPE_UNKNOWN = 0;
243 ETHERNET = 1;
244 GPON = 2;
245 XGPON = 3;
246 XGSPON = 4;
247 CPON = 5;
248 NG_PON2 = 6;
249 EPON = 7;
250 }
251 FormFactor form_factor = 1;
252 Type trans_type = 2;
253 // The maximum reach that can be achieved by this transceiver
254 uint32 max_distance = 3;
255 ValueScale max_distance_scale = 4;
256 // The receive and transmit wavelengths that the transeiver operates on
257 repeated uint32 rx_wavelength = 5;
258 repeated uint32 tx_wavelength = 6;
259 ValueScale wavelength_scale = 7;
260}
261
Amit Ghosh09f28362020-06-12 21:52:19 +0100262message Component {
amit.ghosh2a6b60b2021-02-03 15:16:02 +0100263 // The name of a component uniquely identifies a component within the hardware
Amit Ghosh09f28362020-06-12 21:52:19 +0100264 string name = 1;
265 ComponentType class = 2;
266 string description = 3;
amit.ghosh2a6b60b2021-02-03 15:16:02 +0100267 // The name of the parent of this component, empty string("") in case of the root component
Amit Ghosh121f7c22020-07-21 10:18:38 +0100268 string parent = 4;
Amit Ghosh09f28362020-06-12 21:52:19 +0100269 int32 parent_rel_pos = 5;
270 repeated Component children = 6;
271 string hardware_rev = 7;
272 string firmware_rev = 8;
273 string software_rev = 9;
274 string serial_num = 10;
275 string mfg_name = 11;
amit.ghosh2a6b60b2021-02-03 15:16:02 +0100276 // Apart from the definition of this attribute as defined in RFC 8348, implementations could choose to carry
277 // the manufacturer's part number in this attribute.
Amit Ghosh09f28362020-06-12 21:52:19 +0100278 string model_name = 12;
279 string alias = 13;
280 string asset_id = 14;
281 bool is_fru = 15;
282 google.protobuf.Timestamp mfg_date = 16;
283 Uri uri = 17;
284 // The uuid of the component uniquely identifies the component across the entire system
285 Uuid uuid= 18;
286 ComponentState state = 19;
287 repeated ComponentSensorData sensor_data = 20;
amit.ghosh2a6b60b2021-02-03 15:16:02 +0100288 // The attribute 'specific' can be populated for components where more details are required by the users of the DMI interface
289 oneof specific {
290 PortComponentAttributes port_attr = 50;
291 ContainerComponentAttributes container_attr = 51;
292 PsuComponentAttributes psu_attr = 52;
293 TransceiverComponentsAttributes transceiver_attr = 53;
294 }
Amit Ghosh09f28362020-06-12 21:52:19 +0100295}
296
297message Hardware {
298 google.protobuf.Timestamp last_change = 1;
299 // Each HW has one parent/root and all other components are children of this
300 // The class of the root component would be set as UNDEFINED
301 Component root = 2;
amit.ghosh2a6b60b2021-02-03 15:16:02 +0100302 // TODO: Authentication?
303 // Timestamp at which the hardware last booted
304 google.protobuf.Timestamp last_booted = 3;
Amit Ghosh09f28362020-06-12 21:52:19 +0100305}
306
307// The attributes of a component which are modifiable from the client side
308message ModifiableComponent {
309 // The name has to be unique for each component within the hardware and implementations need to
310 // ascertain this when modifying the name
311 string name = 1;
312 ComponentType class = 2;
313 Component parent = 3;
314 int32 parent_rel_pos = 4;
315 string alias = 5;
316 string asset_id = 6;
317 Uri uri = 7;
318 ComponentAdminState admin_state = 8;
amit.ghosh98c5a6c2021-08-12 16:19:46 +0200319 // The attribute 'specific' can be populated for specific class of components
320 oneof specific {
321 PortComponentChangeAttributes port_attr = 50;
322 }
Amit Ghosh09f28362020-06-12 21:52:19 +0100323}