blob: 75542bf8243f7349e2b39de2e6447aed231eb758 [file] [log] [blame]
Arthur Syu094df162022-04-21 17:50:06 +08001/*
2 * Copyright 2018-present Open Networking Foundation
3
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
7
8 * http://www.apache.org/licenses/LICENSE-2.0
9
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 */
16
17#include "vendor.h"
18
19void vendor_init()
20{
21}
Girish Gowdrab0337eb2022-03-25 16:44:21 -070022
23// Returns the MAC System Mode based on the set of SFP IDs provided.
24// The derived class will most likely need to override this method to provide a
25// different implementation for that particular OLT platform.
26pair<bcmolt_system_mode, bool> PonTrx::get_mac_system_mode(int olt_mac_id, set<int> sfp_ids) {
27 bool ret = true;
28 bcmolt_system_mode sm = BCMOLT_SYSTEM_MODE_XGS__8_X_GPON__8_X_WDMA;
29
30 return {sm, ret};
31}