Zack Williams | 5220966 | 2019-02-07 10:15:31 -0700 | [diff] [blame] | 1 | syntax = "proto3"; |
| 2 | |
Scott Baker | 383964b | 2019-11-01 14:26:07 -0700 | [diff] [blame] | 3 | option go_package = "github.com/opencord/voltha-protos/v2/go/voltha"; |
Zack Williams | 5220966 | 2019-02-07 10:15:31 -0700 | [diff] [blame] | 4 | |
| 5 | package voltha; |
| 6 | |
| 7 | import "google/api/annotations.proto"; |
| 8 | import "voltha_protos/meta.proto"; |
| 9 | import "voltha_protos/openflow_13.proto"; |
| 10 | |
| 11 | message LogicalPortId { |
| 12 | // unique id of logical device |
| 13 | string id = 1; |
| 14 | |
| 15 | // id of the port on the logical device |
| 16 | string port_id = 2; |
| 17 | } |
| 18 | |
| 19 | message LogicalPort { |
| 20 | string id = 1; |
| 21 | openflow_13.ofp_port ofp_port = 2; |
| 22 | string device_id = 3; |
| 23 | uint32 device_port_no = 4; |
| 24 | bool root_port = 5; |
Matt Jeanneret | 4604c42 | 2019-03-14 19:04:43 -0400 | [diff] [blame] | 25 | openflow_13.ofp_port_stats ofp_port_stats = 6; |
Zack Williams | 5220966 | 2019-02-07 10:15:31 -0700 | [diff] [blame] | 26 | } |
| 27 | |
| 28 | message LogicalPorts { |
| 29 | repeated LogicalPort items = 1; |
| 30 | } |
| 31 | |
| 32 | message LogicalDevice { |
| 33 | |
| 34 | // unique id of logical device |
| 35 | string id = 1; |
| 36 | |
| 37 | // unique datapath id for the logical device (used by the SDN controller) |
| 38 | uint64 datapath_id = 2; |
| 39 | |
| 40 | // device description |
| 41 | openflow_13.ofp_desc desc = 3; |
| 42 | |
| 43 | // device features |
| 44 | openflow_13.ofp_switch_features switch_features = 4; |
| 45 | |
| 46 | // name of the root device anchoring logical device |
| 47 | string root_device_id = 5; |
| 48 | |
| 49 | // logical device ports |
| 50 | repeated LogicalPort ports = 128 [(child_node) = {key: "id"}]; |
| 51 | |
| 52 | // flows configured on the logical device |
| 53 | openflow_13.Flows flows = 129 [(child_node) = {}]; |
| 54 | |
| 55 | // flow groups configured on the logical device |
| 56 | openflow_13.FlowGroups flow_groups = 130 [(child_node) = {}]; |
| 57 | |
Abhilash Laxmeshwar | dfbb74d | 2019-07-23 08:03:08 -0400 | [diff] [blame] | 58 | // meters configured on the logical device |
| 59 | openflow_13.Meters meters = 131 [(child_node) = {}]; |
| 60 | |
| 61 | |
Zack Williams | 5220966 | 2019-02-07 10:15:31 -0700 | [diff] [blame] | 62 | } |
| 63 | |
| 64 | message LogicalDevices { |
| 65 | repeated LogicalDevice items = 1; |
| 66 | } |