Skip to content

Commit

Permalink
[devices]: ALPM is not working on AS5712/TD2 platforms. (#2469)
Browse files Browse the repository at this point in the history
- Also initialized the number of cos queues in AS5712 to 8.
    Else the interfaces are not coming up due to a lower default value of cos queues in AS5712.

  Fix:
    - Enable alpm settings in the platform config file for AS5712.
    - With the current values of l2_mem_entries (163840) and l3_mem_entries (81920), the memory is not sufficient. Scale them down to the
      values that work for ALPM in as5712 [l2_mem_entries = 32768, l3_mem_entries = 16384].

  Signed-off-by: [email protected]
  • Loading branch information
kirankella authored and lguohan committed Jan 23, 2019
1 parent 8a1d73d commit e6251bd
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@ bcm_stat_flags=0
parity_enable=0
parity_correction=0

l2_mem_entries=163840
l3_mem_entries=81920
bcm_num_cos=8
l2_mem_entries=32768
l3_mem_entries=16384
l3_alpm_enable=2
ipv6_lpm_128b_enable=1

mmu_lossless=0
lls_num_l2uc=12
module_64ports=0
Expand Down

0 comments on commit e6251bd

Please sign in to comment.