Amit Ghosh | 09f2836 | 2020-06-12 21:52:19 +0100 | [diff] [blame] | 1 | syntax = "proto3";
|
| 2 |
|
| 3 | option go_package = "github.com/opencord/device-management-interface/v3/go/dmi";
|
| 4 | package dmi;
|
| 5 |
|
| 6 | import "google/protobuf/timestamp.proto";
|
| 7 |
|
| 8 | // The model used to represent a HW is based on RFC8348 (https://tools.ietf.org/html/rfc8348)
|
| 9 |
|
| 10 | message Uuid {
|
| 11 | string uuid = 1;
|
| 12 | }
|
| 13 |
|
| 14 | message HardwareID {
|
| 15 | Uuid uuid = 1;
|
| 16 | }
|
| 17 |
|
| 18 | message Uri {
|
| 19 | string uri = 1;
|
| 20 | }
|
| 21 |
|
| 22 | enum 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.ghosh | 2a6b60b | 2021-02-03 15:16:02 +0100 | [diff] [blame] | 37 | // A component of type "TRANSCEIVER" could have 0 or more components of type "PORT" as children.
|
Amit Ghosh | 09f2836 | 2020-06-12 21:52:19 +0100 | [diff] [blame] | 38 | COMPONENT_TYPE_TRANSCEIVER = 14;
|
| 39 | }
|
| 40 |
|
| 41 | enum 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 |
|
| 49 | enum 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 |
|
| 57 | enum 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 |
|
| 65 | enum 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.ghosh | 3a5c7f1 | 2020-12-11 13:56:26 +0100 | [diff] [blame] | 73 | COMP_ALARM_STATE_INDETERMINATE = 7;
|
Amit Ghosh | 09f2836 | 2020-06-12 21:52:19 +0100 | [diff] [blame] | 74 | }
|
| 75 |
|
| 76 | enum 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 |
|
| 84 | message 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.ghosh | 2a6b60b | 2021-02-03 15:16:02 +0100 | [diff] [blame] | 93 | enum 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.ghosh | f54a9a3 | 2021-03-10 16:39:54 +0100 | [diff] [blame] | 107 | VALUE_TYPE_PERCENT = 13;
|
| 108 | VALUE_TYPE_METERS = 14;
|
| 109 | VALUE_TYPE_BYTES = 15;
|
Amit Ghosh | 09f2836 | 2020-06-12 21:52:19 +0100 | [diff] [blame] | 110 | }
|
| 111 |
|
amit.ghosh | 2a6b60b | 2021-02-03 15:16:02 +0100 | [diff] [blame] | 112 | enum 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 Ghosh | 09f2836 | 2020-06-12 21:52:19 +0100 | [diff] [blame] | 131 | }
|
| 132 |
|
| 133 | enum SensorStatus {
|
| 134 | SENSOR_STATUS_UNDEFINED = 0;
|
| 135 | SENSOR_STATUS_OK = 1;
|
| 136 | SENSOR_STATUS_UNAVAILABLE = 2;
|
| 137 | SENSOR_STATUS_NONOPERATIONAL = 3;
|
| 138 | }
|
| 139 |
|
| 140 | message ComponentSensorData {
|
| 141 | int32 value = 1;
|
amit.ghosh | 2a6b60b | 2021-02-03 15:16:02 +0100 | [diff] [blame] | 142 | DataValueType type = 2;
|
| 143 | ValueScale scale = 3;
|
Amit Ghosh | 09f2836 | 2020-06-12 21:52:19 +0100 | [diff] [blame] | 144 | 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.ghosh | 2a6b60b | 2021-02-03 15:16:02 +0100 | [diff] [blame] | 153 | message 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.ghosh | 6682fef | 2021-03-19 14:53:37 +0100 | [diff] [blame^] | 160 | RS232 = 5;
|
amit.ghosh | 2a6b60b | 2021-02-03 15:16:02 +0100 | [diff] [blame] | 161 | }
|
| 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.ghosh | 6682fef | 2021-03-19 14:53:37 +0100 | [diff] [blame^] | 183 | BITS = 8;
|
amit.ghosh | 2a6b60b | 2021-02-03 15:16:02 +0100 | [diff] [blame] | 184 | }
|
| 185 | ConnectorType connector_type = 1;
|
| 186 | Speed speed = 2;
|
| 187 | Protocol protocol = 3;
|
| 188 | string physical_label = 4;
|
| 189 | }
|
| 190 |
|
| 191 | message ContainerComponentAttributes{
|
| 192 | string physical_label = 1;
|
| 193 | }
|
| 194 |
|
| 195 | message PsuComponentAttributes{
|
| 196 | enum SupportedVoltage {
|
| 197 | SUPPORTED_VOLTAGE_UNDEFINED = 0;
|
| 198 | V48 = 1;
|
| 199 | V230 = 2;
|
| 200 | V115 = 3;
|
| 201 | }
|
| 202 | SupportedVoltage supported_voltage = 1;
|
| 203 | }
|
| 204 |
|
| 205 | message TransceiverComponentsAttributes{
|
| 206 | enum FormFactor {
|
| 207 | FORM_FACTOR_UNKNOWN = 0;
|
| 208 | QSFP = 1;
|
| 209 | QSFP_PLUS = 2;
|
| 210 | QSFP28 = 3;
|
| 211 | SFP = 4;
|
| 212 | SFP_PLUS = 5;
|
| 213 | XFP = 6;
|
| 214 | CFP4 = 7;
|
| 215 | CFP2 = 8;
|
| 216 | CPAK = 9;
|
| 217 | X2 = 10;
|
| 218 | OTHER = 11;
|
| 219 | CFP = 12;
|
| 220 | CFP2_ACO = 13;
|
| 221 | CFP2_DCO = 14;
|
| 222 | }
|
| 223 |
|
| 224 | enum Type {
|
| 225 | TYPE_UNKNOWN = 0;
|
| 226 | ETHERNET = 1;
|
| 227 | GPON = 2;
|
| 228 | XGPON = 3;
|
| 229 | XGSPON = 4;
|
| 230 | CPON = 5;
|
| 231 | NG_PON2 = 6;
|
| 232 | EPON = 7;
|
| 233 | }
|
| 234 | FormFactor form_factor = 1;
|
| 235 | Type trans_type = 2;
|
| 236 | // The maximum reach that can be achieved by this transceiver
|
| 237 | uint32 max_distance = 3;
|
| 238 | ValueScale max_distance_scale = 4;
|
| 239 | // The receive and transmit wavelengths that the transeiver operates on
|
| 240 | repeated uint32 rx_wavelength = 5;
|
| 241 | repeated uint32 tx_wavelength = 6;
|
| 242 | ValueScale wavelength_scale = 7;
|
| 243 | }
|
| 244 |
|
Amit Ghosh | 09f2836 | 2020-06-12 21:52:19 +0100 | [diff] [blame] | 245 | message Component {
|
amit.ghosh | 2a6b60b | 2021-02-03 15:16:02 +0100 | [diff] [blame] | 246 | // The name of a component uniquely identifies a component within the hardware
|
Amit Ghosh | 09f2836 | 2020-06-12 21:52:19 +0100 | [diff] [blame] | 247 | string name = 1;
|
| 248 | ComponentType class = 2;
|
| 249 | string description = 3;
|
amit.ghosh | 2a6b60b | 2021-02-03 15:16:02 +0100 | [diff] [blame] | 250 | // The name of the parent of this component, empty string("") in case of the root component
|
Amit Ghosh | 121f7c2 | 2020-07-21 10:18:38 +0100 | [diff] [blame] | 251 | string parent = 4;
|
Amit Ghosh | 09f2836 | 2020-06-12 21:52:19 +0100 | [diff] [blame] | 252 | int32 parent_rel_pos = 5;
|
| 253 | repeated Component children = 6;
|
| 254 | string hardware_rev = 7;
|
| 255 | string firmware_rev = 8;
|
| 256 | string software_rev = 9;
|
| 257 | string serial_num = 10;
|
| 258 | string mfg_name = 11;
|
amit.ghosh | 2a6b60b | 2021-02-03 15:16:02 +0100 | [diff] [blame] | 259 | // Apart from the definition of this attribute as defined in RFC 8348, implementations could choose to carry
|
| 260 | // the manufacturer's part number in this attribute.
|
Amit Ghosh | 09f2836 | 2020-06-12 21:52:19 +0100 | [diff] [blame] | 261 | string model_name = 12;
|
| 262 | string alias = 13;
|
| 263 | string asset_id = 14;
|
| 264 | bool is_fru = 15;
|
| 265 | google.protobuf.Timestamp mfg_date = 16;
|
| 266 | Uri uri = 17;
|
| 267 | // The uuid of the component uniquely identifies the component across the entire system
|
| 268 | Uuid uuid= 18;
|
| 269 | ComponentState state = 19;
|
| 270 | repeated ComponentSensorData sensor_data = 20;
|
amit.ghosh | 2a6b60b | 2021-02-03 15:16:02 +0100 | [diff] [blame] | 271 | // The attribute 'specific' can be populated for components where more details are required by the users of the DMI interface
|
| 272 | oneof specific {
|
| 273 | PortComponentAttributes port_attr = 50;
|
| 274 | ContainerComponentAttributes container_attr = 51;
|
| 275 | PsuComponentAttributes psu_attr = 52;
|
| 276 | TransceiverComponentsAttributes transceiver_attr = 53;
|
| 277 | }
|
Amit Ghosh | 09f2836 | 2020-06-12 21:52:19 +0100 | [diff] [blame] | 278 | }
|
| 279 |
|
| 280 | message Hardware {
|
| 281 | google.protobuf.Timestamp last_change = 1;
|
| 282 | // Each HW has one parent/root and all other components are children of this
|
| 283 | // The class of the root component would be set as UNDEFINED
|
| 284 | Component root = 2;
|
amit.ghosh | 2a6b60b | 2021-02-03 15:16:02 +0100 | [diff] [blame] | 285 | // TODO: Authentication?
|
| 286 | // Timestamp at which the hardware last booted
|
| 287 | google.protobuf.Timestamp last_booted = 3;
|
Amit Ghosh | 09f2836 | 2020-06-12 21:52:19 +0100 | [diff] [blame] | 288 | }
|
| 289 |
|
| 290 | // The attributes of a component which are modifiable from the client side
|
| 291 | message ModifiableComponent {
|
| 292 | // The name has to be unique for each component within the hardware and implementations need to
|
| 293 | // ascertain this when modifying the name
|
| 294 | string name = 1;
|
| 295 | ComponentType class = 2;
|
| 296 | Component parent = 3;
|
| 297 | int32 parent_rel_pos = 4;
|
| 298 | string alias = 5;
|
| 299 | string asset_id = 6;
|
| 300 | Uri uri = 7;
|
| 301 | ComponentAdminState admin_state = 8;
|
| 302 | }
|