Skip to content

Add Basic 1.6t Support to sonic-swss #3786

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

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion orchagent/port/porthlpr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ typedef decltype(PortConfig::link_event_damping_config) PortDampingConfig_t;
// constants ----------------------------------------------------------------------------------------------------------

static const std::uint32_t minPortSpeed = 1;
static const std::uint32_t maxPortSpeed = 800000;
static const std::uint32_t maxPortSpeed = 1600000;

static const std::uint32_t minPortMtu = 68;
static const std::uint32_t maxPortMtu = 9216;
Expand Down
2 changes: 2 additions & 0 deletions orchagent/port_rates.lua
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ local function calculate_lane_and_serdes_speed(count, speed)
serdes = 53.125e+9
elseif lane_speed == 100000 then
serdes = 106.25e+9
elseif lane_speed == 200000 then
serdes = 212.5e+9
else
logit("Invalid serdes speed")
end
Expand Down
Loading