Shad Ansari | b7b0ced | 2018-05-11 21:53:32 +0000 | [diff] [blame] | 1 | /* |
Girish Gowdra | a707e7c | 2019-11-07 11:36:13 +0530 | [diff] [blame] | 2 | * Copyright 2018-present Open Networking Foundation |
Shad Ansari | b7b0ced | 2018-05-11 21:53:32 +0000 | [diff] [blame] | 3 | |
Girish Gowdra | a707e7c | 2019-11-07 11:36:13 +0530 | [diff] [blame] | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
Shad Ansari | b7b0ced | 2018-05-11 21:53:32 +0000 | [diff] [blame] | 7 | |
Girish Gowdra | a707e7c | 2019-11-07 11:36:13 +0530 | [diff] [blame] | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
Shad Ansari | b7b0ced | 2018-05-11 21:53:32 +0000 | [diff] [blame] | 9 | |
Girish Gowdra | a707e7c | 2019-11-07 11:36:13 +0530 | [diff] [blame] | 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
Shad Ansari | b7b0ced | 2018-05-11 21:53:32 +0000 | [diff] [blame] | 16 | |
| 17 | #ifndef OPENOLT_CORE_H_ |
| 18 | #define OPENOLT_CORE_H_ |
| 19 | |
| 20 | #include <grpc++/grpc++.h> |
| 21 | using grpc::Status; |
Thiyagarajan Subramani | 89fffc0 | 2019-05-13 21:33:20 +0000 | [diff] [blame] | 22 | #include <voltha_protos/openolt.grpc.pb.h> |
Shad Ansari | b7b0ced | 2018-05-11 21:53:32 +0000 | [diff] [blame] | 23 | |
Shad Ansari | edef213 | 2018-08-10 22:14:50 +0000 | [diff] [blame] | 24 | #include "state.h" |
| 25 | |
Thiyagarajan Subramani | 89fffc0 | 2019-05-13 21:33:20 +0000 | [diff] [blame] | 26 | #define NONE "\033[m" |
| 27 | #define LIGHT_RED "\033[1;31m" |
| 28 | #define BROWN "\033[0;33m" |
| 29 | #define LIGHT_GREEN "\033[1;32m" |
| 30 | #define OPENOLT_LOG(level, id, fmt, ...) \ |
| 31 | if (DEV_LOG_LEVEL_##level == DEV_LOG_LEVEL_ERROR) \ |
| 32 | BCM_LOG(level, id, "%s" fmt "%s", LIGHT_RED, ##__VA_ARGS__, NONE); \ |
| 33 | else if (DEV_LOG_LEVEL_##level == DEV_LOG_LEVEL_INFO) \ |
| 34 | BCM_LOG(level, id, "%s" fmt "%s", NONE, ##__VA_ARGS__, NONE); \ |
| 35 | else if (DEV_LOG_LEVEL_##level == DEV_LOG_LEVEL_WARNING) \ |
| 36 | BCM_LOG(level, id, "%s" fmt "%s", BROWN, ##__VA_ARGS__, NONE); \ |
| 37 | else if (DEV_LOG_LEVEL_##level == DEV_LOG_LEVEL_DEBUG) \ |
| 38 | BCM_LOG(level, id, "%s" fmt "%s", LIGHT_GREEN, ##__VA_ARGS__, NONE); \ |
| 39 | else \ |
| 40 | BCM_LOG(INFO, id, fmt, ##__VA_ARGS__); |
Girish Gowdra | 9646105 | 2019-11-22 20:13:59 +0530 | [diff] [blame] | 41 | #define COLLECTION_PERIOD 15 // in seconds |
Girish Gowdru | 376b33c | 2019-05-06 21:46:31 -0700 | [diff] [blame] | 42 | #define BAL_DYNAMIC_LIST_BUFFER_SIZE (32 * 1024) |
| 43 | #define MAX_REGID_LENGTH 36 |
Shad Ansari | 627b578 | 2018-08-13 22:49:32 +0000 | [diff] [blame] | 44 | |
Shad Ansari | edef213 | 2018-08-10 22:14:50 +0000 | [diff] [blame] | 45 | extern State state; |
| 46 | |
Thiyagarajan Subramani | 89fffc0 | 2019-05-13 21:33:20 +0000 | [diff] [blame] | 47 | enum FLOW_CFG { |
| 48 | ONU_ID = 0, |
| 49 | FLOW_TYPE = 1, |
| 50 | SVC_PORT_ID = 2, |
| 51 | PRIORITY = 3, |
| 52 | COOKIE = 4, |
| 53 | INGRESS_INTF_TYPE= 5, |
| 54 | EGRESS_INTF_TYPE= 6, |
| 55 | INGRESS_INTF_ID = 7, |
| 56 | EGRESS_INTF_ID = 8, |
| 57 | CLASSIFIER_O_VID = 9, |
| 58 | CLASSIFIER_O_PBITS = 10, |
| 59 | CLASSIFIER_I_VID = 11, |
| 60 | CLASSIFIER_I_PBITS = 12, |
| 61 | CLASSIFIER_ETHER_TYPE = 13, |
| 62 | CLASSIFIER_IP_PROTO =14, |
| 63 | CLASSIFIER_SRC_PORT = 15, |
| 64 | CLASSIFIER_DST_PORT = 16, |
| 65 | CLASSIFIER_PKT_TAG_TYPE = 17, |
| 66 | EGRESS_QOS_TYPE = 18, |
| 67 | EGRESS_QOS_QUEUE_ID = 19, |
| 68 | EGRESS_QOS_TM_SCHED_ID = 20, |
| 69 | ACTION_CMDS_BITMASK = 21, |
| 70 | ACTION_O_VID = 22, |
| 71 | ACTION_O_PBITS = 23, |
| 72 | ACTION_I_VID = 24, |
| 73 | ACTION_I_PBITS = 25, |
| 74 | STATE = 26 |
| 75 | }; |
| 76 | |
Girish Gowdra | 9646105 | 2019-11-22 20:13:59 +0530 | [diff] [blame] | 77 | enum AllocCfgAction { |
| 78 | ALLOC_OBJECT_CREATE, |
| 79 | ALLOC_OBJECT_DELETE |
| 80 | }; |
| 81 | |
| 82 | enum AllocObjectState { |
| 83 | ALLOC_OBJECT_STATE_NOT_CONFIGURED, |
| 84 | ALLOC_OBJECT_STATE_INACTIVE, |
| 85 | ALLOC_OBJECT_STATE_PROCESSING, |
| 86 | ALLOC_OBJECT_STATE_ACTIVE |
| 87 | }; |
| 88 | |
| 89 | enum AllocCfgStatus { |
| 90 | ALLOC_CFG_STATUS_SUCCESS, |
| 91 | ALLOC_CFG_STATUS_FAIL |
| 92 | }; |
| 93 | |
| 94 | typedef struct { |
| 95 | uint32_t pon_intf_id; |
| 96 | uint32_t alloc_id; |
| 97 | AllocObjectState state; |
| 98 | AllocCfgStatus status; |
| 99 | } alloc_cfg_complete_result; |
| 100 | |
| 101 | // key for map used for tracking ITU PON Alloc Configuration results from BAL |
| 102 | typedef std::tuple<uint32_t, uint32_t> alloc_cfg_compltd_key; |
| 103 | |
Shad Ansari | 627b578 | 2018-08-13 22:49:32 +0000 | [diff] [blame] | 104 | Status Enable_(int argc, char *argv[]); |
Shad Ansari | b7b0ced | 2018-05-11 21:53:32 +0000 | [diff] [blame] | 105 | Status ActivateOnu_(uint32_t intf_id, uint32_t onu_id, |
Girish Gowdru | 7c4ec2d | 2018-10-25 00:29:54 -0700 | [diff] [blame] | 106 | const char *vendor_id, const char *vendor_specific, uint32_t pir); |
Jonathan Davis | 70c2181 | 2018-07-19 15:32:10 -0400 | [diff] [blame] | 107 | Status DeactivateOnu_(uint32_t intf_id, uint32_t onu_id, |
| 108 | const char *vendor_id, const char *vendor_specific); |
| 109 | Status DeleteOnu_(uint32_t intf_id, uint32_t onu_id, |
Girish Gowdru | 7c4ec2d | 2018-10-25 00:29:54 -0700 | [diff] [blame] | 110 | const char *vendor_id, const char *vendor_specific); |
Shad Ansari | b7b0ced | 2018-05-11 21:53:32 +0000 | [diff] [blame] | 111 | Status EnablePonIf_(uint32_t intf_id); |
Nicolas Palpacuer | 05ea0ea | 2018-07-06 11:47:21 -0400 | [diff] [blame] | 112 | Status DisablePonIf_(uint32_t intf_id); |
Thiyagarajan Subramani | 89fffc0 | 2019-05-13 21:33:20 +0000 | [diff] [blame] | 113 | Status SetStateUplinkIf_(uint32_t intf_id, bool set_state); |
Craig Lutgen | 88a22ad | 2018-10-04 12:30:46 -0500 | [diff] [blame] | 114 | unsigned NumNniIf_(); |
| 115 | unsigned NumPonIf_(); |
Shad Ansari | b7b0ced | 2018-05-11 21:53:32 +0000 | [diff] [blame] | 116 | Status OmciMsgOut_(uint32_t intf_id, uint32_t onu_id, const std::string pkt); |
Girish Gowdru | c8ed2ef | 2019-02-13 08:18:44 -0800 | [diff] [blame] | 117 | Status OnuPacketOut_(uint32_t intf_id, uint32_t onu_id, uint32_t port_no, uint32_t gemport_id, const std::string pkt); |
Craig Lutgen | 88a22ad | 2018-10-04 12:30:46 -0500 | [diff] [blame] | 118 | Status ProbeDeviceCapabilities_(); |
| 119 | Status ProbePonIfTechnology_(); |
Nicolas Palpacuer | b78def4 | 2018-06-07 12:55:26 -0400 | [diff] [blame] | 120 | Status UplinkPacketOut_(uint32_t intf_id, const std::string pkt); |
Craig Lutgen | 967a1d0 | 2018-11-27 10:41:51 -0600 | [diff] [blame] | 121 | Status FlowAdd_(int32_t access_intf_id, int32_t onu_id, int32_t uni_id, uint32_t port_no, |
Shad Ansari | b7b0ced | 2018-05-11 21:53:32 +0000 | [diff] [blame] | 122 | uint32_t flow_id, const std::string flow_type, |
Girish Gowdru | 7c4ec2d | 2018-10-25 00:29:54 -0700 | [diff] [blame] | 123 | int32_t alloc_id, int32_t network_intf_id, |
| 124 | int32_t gemport_id, const ::openolt::Classifier& classifier, |
Craig Lutgen | 967a1d0 | 2018-11-27 10:41:51 -0600 | [diff] [blame] | 125 | const ::openolt::Action& action, int32_t priority_value, uint64_t cookie); |
Nicolas Palpacuer | edfaa0c | 2018-07-05 15:05:27 -0400 | [diff] [blame] | 126 | Status FlowRemove_(uint32_t flow_id, const std::string flow_type); |
Nicolas Palpacuer | e3fc0d2 | 2018-08-02 16:51:05 -0400 | [diff] [blame] | 127 | Status Disable_(); |
| 128 | Status Reenable_(); |
Nicolas Palpacuer | dff9679 | 2018-09-06 14:59:32 -0400 | [diff] [blame] | 129 | Status GetDeviceInfo_(openolt::DeviceInfo* device_info); |
Girish Gowdru | c8ed2ef | 2019-02-13 08:18:44 -0800 | [diff] [blame] | 130 | Status CreateTrafficSchedulers_(const tech_profile::TrafficSchedulers *traffic_scheds); |
| 131 | Status RemoveTrafficSchedulers_(const tech_profile::TrafficSchedulers *traffic_scheds); |
| 132 | Status CreateTrafficQueues_(const tech_profile::TrafficQueues *traffic_queues); |
| 133 | Status RemoveTrafficQueues_(const tech_profile::TrafficQueues *traffic_queues); |
Craig Lutgen | 967a1d0 | 2018-11-27 10:41:51 -0600 | [diff] [blame] | 134 | uint32_t GetPortNum_(uint32_t flow_id); |
Thiyagarajan Subramani | 89fffc0 | 2019-05-13 21:33:20 +0000 | [diff] [blame] | 135 | int get_status_bcm_cli_quit(void); |
Jason Huang | bf45ffb | 2019-10-30 17:29:02 +0800 | [diff] [blame] | 136 | uint16_t get_dev_id(void); |
Thiyagarajan Subramani | 89fffc0 | 2019-05-13 21:33:20 +0000 | [diff] [blame] | 137 | Status pushOltOperInd(uint32_t intf_id, const char *type, const char *state); |
| 138 | uint64_t get_flow_status(uint16_t flow_id, uint16_t flow_type, uint16_t data_id); |
Nicolas Palpacuer | e3fc0d2 | 2018-08-02 16:51:05 -0400 | [diff] [blame] | 139 | |
Nicolas Palpacuer | 6a63ea9 | 2018-09-05 17:21:37 -0400 | [diff] [blame] | 140 | void stats_collection(); |
Jason Huang | bf45ffb | 2019-10-30 17:29:02 +0800 | [diff] [blame] | 141 | Status check_connection(); |
| 142 | Status check_bal_ready(); |
Shad Ansari | b7b0ced | 2018-05-11 21:53:32 +0000 | [diff] [blame] | 143 | #endif |