Skip to content

Commit

Permalink
Platform DCS-7060DX5-64S misc update
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentpcng committed Sep 20, 2024
1 parent 3d452b4 commit 464bfe4
Show file tree
Hide file tree
Showing 15 changed files with 6,445 additions and 168 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ bcm_device:
0:
global:
pktio_mode: 1
default_cpu_tx_queue: 7
vlan_flooding_l2mc_num_reserved: 0
ipv6_lpm_128b_enable: 1
shared_block_mask_section: uc_bc
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ bcm_device:
0:
global:
pktio_mode: 1
default_cpu_tx_queue: 7
vlan_flooding_l2mc_num_reserved: 0
ipv6_lpm_128b_enable: 1
shared_block_mask_section: uc_bc
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ bcm_device:
0:
global:
pktio_mode: 1
default_cpu_tx_queue: 7
vlan_flooding_l2mc_num_reserved: 0
ipv6_lpm_128b_enable: 1
shared_block_mask_section: uc_bc
Expand Down

This file was deleted.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
{%- set default_topo = 't1' %}
{%- include 'buffers_config.j2' %}
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{%- set default_cable = '5m' %}

{%- macro generate_port_lists(PORT_ALL) %}
{# Generate list of ports #}
{%- for port_idx in range(0,512,8) %}
{%- if PORT_ALL.append("Ethernet%d" % (port_idx)) %}{%- endif %}
{%- endfor %}
{%- endmacro %}

{%- macro generate_buffer_pool_and_profiles() %}
"BUFFER_POOL": {
"ingress_lossless_pool": {
"size": "37333333",
"type": "ingress",
"mode": "dynamic",
"xoff": "16000000"
},
"egress_lossy_pool": {
"size": "24000000",
"type": "egress",
"mode": "dynamic"
},
"egress_lossless_pool": {
"size": "31000000",
"type": "egress",
"mode": "static"
}
},
"BUFFER_PROFILE": {
"ingress_lossy_profile": {
"pool":"ingress_lossless_pool",
"size":"0",
"dynamic_th":"3"
},
"egress_lossless_profile": {
"pool":"egress_lossless_pool",
"size":"0",
"static_th":"56000000"
},
"egress_lossy_profile": {
"pool":"egress_lossless_pool",
"size":"0",
"dynamic_th":"3"
}
},
{%- endmacro %}
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{%- set default_cable = '5m' %}

{%- macro generate_port_lists(PORT_ALL) %}
{# Generate list of ports #}
{%- for port_idx in range(0,512,8) %}
{%- if PORT_ALL.append("Ethernet%d" % (port_idx)) %}{%- endif %}
{%- endfor %}
{%- endmacro %}

{%- macro generate_buffer_pool_and_profiles() %}
"BUFFER_POOL": {
"ingress_lossless_pool": {
"size": "37333333",
"type": "ingress",
"mode": "dynamic",
"xoff": "16000000"
},
"egress_lossy_pool": {
"size": "24000000",
"type": "egress",
"mode": "dynamic"
},
"egress_lossless_pool": {
"size": "31000000",
"type": "egress",
"mode": "static"
}
},
"BUFFER_PROFILE": {
"ingress_lossy_profile": {
"pool":"ingress_lossless_pool",
"size":"0",
"dynamic_th":"3"
},
"egress_lossless_profile": {
"pool":"egress_lossless_pool",
"size":"0",
"static_th":"56000000"
},
"egress_lossy_profile": {
"pool":"egress_lossless_pool",
"size":"0",
"dynamic_th":"3"
}
},
{%- endmacro %}
Loading

0 comments on commit 464bfe4

Please sign in to comment.