Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

201911 cel dev #217

Merged
merged 4 commits into from
Oct 19, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -818,7 +818,7 @@ def get_current_bios(self):
# @return a string, "master" or "slave"
"""
bios_ver = "N/A"
data = self.get_from_bmc(self.bmc_info_uri)
data = self.get_from_bmc(self.bios_boot_uri)
if not data or "Flash" not in data:
return bios_ver

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# BCM56780 20x400g port configuration.
# BCM56780 40x200g port configuration.
#
# configuration yaml file
# device:
Expand All @@ -24,7 +24,7 @@ device:
# CORE CLOCK FREQUENCY
CORE_CLK_FREQ: CLK_1350MHZ
# PP CLOCK FREQUENCY
PP_CLK_FREQ: CLK_950MHZ
PP_CLK_FREQ: CLK_1350MHZ
...
---
bcm_device:
Expand Down Expand Up @@ -590,7 +590,6 @@ device:
NUM_LANES: 4
FEC_MODE: PC_FEC_RS544_2XN
MAX_FRAME_SIZE: 9416
LINK_TRAINING : 1
?
PORT_ID: [38, # Management port 0 (Pipe 1)
78] # Management port 1 (Pipe 3)
Expand All @@ -602,6 +601,89 @@ device:
MAX_FRAME_SIZE: 0x3fe8
...
---
device:
0:
PC_TX_TAPS:
?
PORT_ID: [1,2,3,4,66,67,68,69]
LANE_INDEX: [0, 1, 2, 3]
:
TX_SIG_MODE: PC_SIG_MODE_PAM4
TX_SIG_MODE_AUTO: 0
TXFIR_TAP_MODE: PC_TXFIR_PAM4_TAPS_6
TXFIR_TAP_MODE_AUTO: 0
TX_PRE_SIGN: 1
TX_PRE: 12
TX_PRE_AUTO: 0
TX_MAIN_SIGN: 0
TX_MAIN: 136
TX_MAIN_AUTO: 0
TX_POST_SIGN: 1
TX_POST: 12
TX_POST_AUTO: 0
TX_PRE2_SIGN: 0
TX_PRE2: 0
TX_PRE2_AUTO: 0
TX_POST2_SIGN: 0
TX_POST2: 0
TX_POST2_AUTO: 0
TX_POST3_SIGN: 0
TX_POST3: 0
TX_POST3_AUTO: 0
?
PORT_ID: [5,6,7,8,20,21,62,63,64,65,48,49]
LANE_INDEX: [0, 1, 2, 3]
:
TX_SIG_MODE: PC_SIG_MODE_PAM4
TX_SIG_MODE_AUTO: 0
TXFIR_TAP_MODE: PC_TXFIR_PAM4_TAPS_6
TXFIR_TAP_MODE_AUTO: 0
TX_PRE_SIGN: 1
TX_PRE: 8
TX_PRE_AUTO: 0
TX_MAIN_SIGN: 0
TX_MAIN: 116
TX_MAIN_AUTO: 0
TX_POST_SIGN: 1
TX_POST: 4
TX_POST_AUTO: 0
TX_PRE2_SIGN: 0
TX_PRE2: 0
TX_PRE2_AUTO: 0
TX_POST2_SIGN: 0
TX_POST2: 0
TX_POST2_AUTO: 0
TX_POST3_SIGN: 0
TX_POST3: 0
TX_POST3_AUTO: 0
?
PORT_ID: [9,10,24,25,22,28,23,29,26,27,42,43,46,40,47,41,60,44,61,45]
LANE_INDEX: [0, 1, 2, 3]
:
TX_SIG_MODE: PC_SIG_MODE_PAM4
TX_SIG_MODE_AUTO: 0
TXFIR_TAP_MODE: PC_TXFIR_PAM4_TAPS_6
TXFIR_TAP_MODE_AUTO: 0
TX_PRE_SIGN: 1
TX_PRE: 8
TX_PRE_AUTO: 0
TX_MAIN_SIGN: 0
TX_MAIN: 112
TX_MAIN_AUTO: 0
TX_POST_SIGN: 0
TX_POST: 0
TX_POST_AUTO: 0
TX_PRE2_SIGN: 0
TX_PRE2: 0
TX_PRE2_AUTO: 0
TX_POST2_SIGN: 0
TX_POST2: 0
TX_POST2_AUTO: 0
TX_POST3_SIGN: 0
TX_POST3: 0
TX_POST3_AUTO: 0
...
---
device:
0:
TM_SCHEDULER_CONFIG:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -819,7 +819,7 @@ def get_current_bios(self):
# @return a string, "master" or "slave"
"""
bios_ver = "N/A"
data = self.get_from_bmc(self.bmc_info_uri)
data = self.get_from_bmc(self.bios_boot_uri)
if not data or "Flash" not in data:
return bios_ver

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -818,7 +818,7 @@ def get_current_bios(self):
# @return a string, "master" or "slave"
"""
bios_ver = "N/A"
data = self.get_from_bmc(self.bmc_info_uri)
data = self.get_from_bmc(self.bios_boot_uri)
if not data or "Flash" not in data:
return bios_ver

Expand Down