| /* |
| * Copyright 2018-present Open Networking Foundation |
| |
| * Licensed under the Apache License, Version 2.0 (the "License"); |
| * you may not use this file except in compliance with the License. |
| * You may obtain a copy of the License at |
| |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| */ |
| |
| #ifndef __VENDOR_H__ |
| #define __VENDOR_H__ |
| #define VENDOR_ID "generic" |
| #define MODEL_ID "generic" |
| |
| // DeviceInfo definitions |
| |
| #define ONU_ID_START 1 |
| #define ONU_ID_END 32 |
| #define MAX_ONUS_PER_PON 32 |
| |
| #define ALLOC_ID_START 1024 |
| #define ALLOC_ID_END 16383 |
| |
| #define GEM_PORT_ID_START 1024 |
| #define GEM_PORT_ID_END 65535 |
| |
| #define FLOW_ID_START 1 |
| #define FLOW_ID_END 65535 |
| #define MAX_FLOW_ID 65535 |
| #define INVALID_FLOW_ID 0 |
| |
| #endif |