2018-05-08 10:37:35 -05:00
|
|
|
{% set default_cable = '5m' %}
|
2020-02-16 05:47:16 -06:00
|
|
|
{% set ingress_lossless_pool_size = '2097100' %}
|
|
|
|
{% set ingress_lossy_pool_size = '2097100' %}
|
|
|
|
{% set egress_lossless_pool_size = '14024599' %}
|
|
|
|
{% set egress_lossy_pool_size = '2097100' %}
|
2018-05-08 10:37:35 -05:00
|
|
|
|
|
|
|
{%- macro generate_port_lists(PORT_ALL) %}
|
|
|
|
{# Generate list of ports #}
|
|
|
|
{%- for port_idx in range(0, 32) %}
|
|
|
|
{%- if PORT_ALL.append("Ethernet%d" % (port_idx)) %}{%- endif %}
|
|
|
|
{%- endfor %}
|
|
|
|
{%- endmacro %}
|
|
|
|
|
|
|
|
{%- macro generate_buffer_pool_and_profiles() %}
|
|
|
|
"BUFFER_POOL": {
|
|
|
|
"ingress_lossless_pool": {
|
|
|
|
"size": "{{ ingress_lossless_pool_size }}",
|
|
|
|
"type": "ingress",
|
|
|
|
"mode": "dynamic"
|
|
|
|
},
|
|
|
|
"ingress_lossy_pool": {
|
|
|
|
"size": "{{ ingress_lossy_pool_size }}",
|
|
|
|
"type": "ingress",
|
|
|
|
"mode": "dynamic"
|
|
|
|
},
|
|
|
|
"egress_lossless_pool": {
|
|
|
|
"size": "{{ egress_lossless_pool_size }}",
|
|
|
|
"type": "egress",
|
|
|
|
"mode": "dynamic"
|
|
|
|
},
|
|
|
|
"egress_lossy_pool": {
|
|
|
|
"size": "{{ egress_lossy_pool_size }}",
|
|
|
|
"type": "egress",
|
|
|
|
"mode": "dynamic"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"BUFFER_PROFILE": {
|
|
|
|
"ingress_lossless_profile": {
|
|
|
|
"pool":"[BUFFER_POOL|ingress_lossless_pool]",
|
|
|
|
"size":"0",
|
|
|
|
"dynamic_th":"0"
|
|
|
|
},
|
|
|
|
"ingress_lossy_profile": {
|
|
|
|
"pool":"[BUFFER_POOL|ingress_lossy_pool]",
|
|
|
|
"size":"0",
|
|
|
|
"dynamic_th":"3"
|
|
|
|
},
|
|
|
|
"egress_lossless_profile": {
|
|
|
|
"pool":"[BUFFER_POOL|egress_lossless_pool]",
|
|
|
|
"size":"0",
|
|
|
|
"dynamic_th":"7"
|
|
|
|
},
|
|
|
|
"egress_lossy_profile": {
|
|
|
|
"pool":"[BUFFER_POOL|egress_lossy_pool]",
|
|
|
|
"size":"4096",
|
|
|
|
"dynamic_th":"3"
|
|
|
|
},
|
|
|
|
"q_lossy_profile": {
|
|
|
|
"pool":"[BUFFER_POOL|egress_lossy_pool]",
|
|
|
|
"size":"0",
|
|
|
|
"dynamic_th":"3"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{%- endmacro %}
|
|
|
|
|
|
|
|
{%- macro generate_profile_lists(port_names) %}
|
|
|
|
"BUFFER_PORT_INGRESS_PROFILE_LIST": {
|
2019-10-22 11:37:45 -05:00
|
|
|
{% for port in port_names.split(',') %}
|
|
|
|
"{{ port }}": {
|
2018-05-08 10:37:35 -05:00
|
|
|
"profile_list" : "[BUFFER_PROFILE|ingress_lossless_profile],[BUFFER_PROFILE|ingress_lossy_profile]"
|
2019-10-22 11:37:45 -05:00
|
|
|
}{% if not loop.last %},{% endif %}
|
|
|
|
|
|
|
|
{% endfor %}
|
2018-05-08 10:37:35 -05:00
|
|
|
},
|
|
|
|
"BUFFER_PORT_EGRESS_PROFILE_LIST": {
|
2019-10-22 11:37:45 -05:00
|
|
|
{% for port in port_names.split(',') %}
|
|
|
|
"{{ port }}": {
|
2018-05-08 10:37:35 -05:00
|
|
|
"profile_list" : "[BUFFER_PROFILE|egress_lossless_profile],[BUFFER_PROFILE|egress_lossy_profile]"
|
2019-10-22 11:37:45 -05:00
|
|
|
}{% if not loop.last %},{% endif %}
|
|
|
|
|
|
|
|
{% endfor %}
|
2018-05-08 10:37:35 -05:00
|
|
|
}
|
|
|
|
{%- endmacro %}
|
|
|
|
|
|
|
|
{%- macro generate_queue_buffers(port_names) %}
|
|
|
|
"BUFFER_QUEUE": {
|
2019-10-22 11:37:45 -05:00
|
|
|
{% for port in port_names.split(',') %}
|
|
|
|
"{{ port }}|3-4": {
|
2018-05-08 10:37:35 -05:00
|
|
|
"profile" : "[BUFFER_PROFILE|egress_lossless_profile]"
|
|
|
|
},
|
2019-10-22 11:37:45 -05:00
|
|
|
{% endfor %}
|
|
|
|
{% for port in port_names.split(',') %}
|
|
|
|
"{{ port }}|0-2": {
|
2018-05-08 10:37:35 -05:00
|
|
|
"profile" : "[BUFFER_PROFILE|q_lossy_profile]"
|
2018-12-04 22:51:55 -06:00
|
|
|
},
|
2019-10-22 11:37:45 -05:00
|
|
|
{% endfor %}
|
|
|
|
{% for port in port_names.split(',') %}
|
|
|
|
"{{ port }}|5-6": {
|
2018-12-04 22:51:55 -06:00
|
|
|
"profile" : "[BUFFER_PROFILE|q_lossy_profile]"
|
2019-10-22 11:37:45 -05:00
|
|
|
}{% if not loop.last %},{% endif %}
|
|
|
|
|
|
|
|
{% endfor %}
|
2018-05-08 10:37:35 -05:00
|
|
|
}
|
|
|
|
{%- endmacro %}
|
|
|
|
|
|
|
|
|