vmittal-msft
ee8c3d34a2
[sonic-sairedis submodule] Updated SAI header 1.7.1 for BRCM and Mellanox SDK/SAI ( #6218 )
...
* [Mellanox] Update SAI to 1.18.0
* [Mellanox] Update SDK to 4.4.2112
* Updated Mellanox SAI to 1.18.0.2
* Updated bcmsai debians to use SAI 1.7.1
* Updated Mellanox to use SAI 1.7.1
* Updated submodule sonic-sairedis using SAI 1.7.1
Co-authored-by: Vineet Mittal <vmittalmittal@microsoft.com>
Co-authored-by: Nazarii Hnydyn <nazariig@nvidia.com>
2020-12-20 12:11:06 -08:00
gechiang
f9e96283e4
fix BRCM SAI warm-reboot Removing ip2me trap entry returns error results in orchagent crash ( #6244 )
2020-12-18 10:08:56 -08:00
vmittal-msft
a624aa01c7
Upgrade syncd to buster. ( #6106 )
...
- Why I did it
To upgrade brcm syncd to buster
- How I did it
Updated BCM SAI using kernel version 4.19.0-12 and debian 10 to support buster.
Updated syncd docker from stretch to buster in sonic-buildimage
- How to verify it
Ensured docker is running synd buster.
After upgrade, ensured all BGP peers and ip interfaces are up.
Ping to BGP neighbors is working fine.
2020-12-17 12:46:45 -08:00
gechiang
0ffadf357e
Upgrade to SAI BCM 4.2.1.5-6 to pick up the fib hash patch (CS00011388674) and the fdb invalid port patch (CS00011298546) ( #6165 )
2020-12-09 13:53:27 -08:00
Mahesh Maddikayala
3be3f4d104
[BCM SAI] update BCM SAI to 4.2.1.5 ( #5866 )
...
This release includes changes for supporting Debian Buster, fixes for internally found issues and more enhancement related to spec coverage and feature parity for Broadcom ASICs.
Additional fixes included:
CS00011465498 - Warm reboot
CS00011465061 - interfaces not coming up
CS00011396506 - nexthop resource leak
CS00011452080 - BCM SAI crash while getting lane count
2020-11-18 11:20:43 -08:00
gechiang
33076348ca
Moving BRCM SAI 4.2.1.3 to 4.2.1.3-1 to pick up fix for CS00011396506 to fix CRM nexthop resource inuse leak ( #5878 )
2020-11-10 15:28:42 -08:00
Mahesh Maddikayala
49b34dc433
[BCMSAI] Update BCM SAI debian package to 4.2.1.3 (6.5.19 hsdk) ( #5532 )
...
* [BCMSAI DEB] Update BCM SAI debian package to 4.2.1.3 (6.5.19 hsdk)(1.6.5 SAI)
* [BCMSAI GPL] Update BCMSAI GPL to 6.5.19
2020-10-06 07:58:00 -07:00
gechiang
52e3ba4e0f
Moving BRCM SAI from 3.7.5.1-2 to 3.7.5.1-3 to pick up COPP Fix (CS00010697761) ( #5127 )
...
Picking up the fix for COPP. See BRCM case CS00010697761 for details on the issue.
2020-08-10 10:32:33 -07:00
gechiang
569289ac86
Moving BRCM SAI from 3.7.5.1-1 to 3.7.5.1-2 to pick up the stubbed SA… ( #5101 )
...
* Moving BRCM SAI from 3.7.5.1-1 to 3.7.5.1-2 to pick up the stubbed SAI API that were present in the header but missing in SAI implementation that cause link error during build.
In SAI header 1.5.2 there are defined SAI APIs such as "sai_query_attribute_capability()" and few other APIs that were missing the stub code in BRCM 3.7.5.1 SAI code delivery. This causes linking issue during build when we implemented the common handler to support "sai_query_attribute_capability()" that other platform supports. The expectation is that all SAI vendors must implement all the SAI header defined SAI APIs by stubbing those that they don't have the actual code support to return "SAI_STATUS_NOT_IMPLEMENTED". This allows common code for all platforms to be developed without having linking issue during build for all platforms. BRCM has provided the patch code and this PR moves the BRCM SAI from 3.7.5.1-1 to 3.7.5.1-2 to pick up those missing stubbed SAI APIs.
See BRCM case CS00010790550 for more details
2020-08-05 09:12:04 -07:00
lguohan
e1ac3cfc6a
[build]: wait for conflicts package to be uninstalled ( #5039 )
...
when parallel build is enabled, both docker-fpm-frr and docker-syncd-brcm
is built at the same time, docker-fpm-frr requires swss which requires to
install libsaivs-dev. docker-syncd-brcm requires syncd package which requires
to install libsaibcm-dev.
since libsaivs-dev and libsaibcm-dev install the sai header in the same
location, these two packages cannot be installed at the same time. Therefore,
we need to serialize the build between these two packages. Simply uninstall
the conflict package is not enough to solve this issue. The correct solution
is to have one package wait for another package to be uninstalled.
For example, if syncd is built first, then it will install libsaibcm-dev.
Meanwhile, if the swss build job starts and tries to install libsaivs-dev,
it will first try to query if libsaibcm-dev is installed or not. if it is
installed, then it will wait until libsaibcm-dev is uninstalled. After syncd
job is finished, it will uninstall libsaibcm-dev and swss build job will be
unblocked.
To solve this issue, _UNINSTALLS is introduced to uninstall a package that
is no longer needed and to allow blocked job to continue.
Signed-off-by: Guohan Lu <lguohan@gmail.com>
2020-07-27 10:46:20 -07:00
lguohan
58632e6e83
[docker-orchagent]: make build depends only on sairedis package ( #4880 )
...
make swss build depends only on libsairedis instead of syncd. This allows to build swss without depending
on vendor sai library.
Currently, libsairedis build also buils syncd which requires vendor SAI lib. This makes difficult to build
swss docker in buster while still keeping syncd docker in stretch, as swss requires libsairedis which also
build syncd and requires vendor to provide SAI for buster. As swss docker does not really contain syncd
binary, so it is not necessary to build syncd for swss docker.
* [submodule]: update sonic-sairedis
* ccbb3bc 2020-06-28 | add option to build without syncd (HEAD, origin/master, origin/HEAD) [Guohan Lu]
* 4247481 2020-06-28 | install saidiscovery into syncd package [Guohan Lu]
* 61b8e8e 2020-06-26 | Revert "sonic-sairedis: Add support to sonic-sairedis for gearbox phys (#624 )" (#630 ) [Danny Allen]
* 85e543c 2020-06-26 | add a README to tests directory to describe how to run 'make check' (#629 ) [Syd Logan]
* 2772f15 2020-06-26 | sonic-sairedis: Add support to sonic-sairedis for gearbox phys (#624 ) [Syd Logan]
Signed-off-by: Guohan Lu <lguohan@gmail.com>
2020-07-12 18:08:51 +00:00
Mahesh Maddikayala
5eabae1ede
Fix in libsaibcm for high CPU utilization of syncd ( #4874 )
2020-07-12 18:08:51 +00:00
Mahesh Maddikayala
74389cb402
[sonic-sairedis] sonic-sairedis submodule update ( #4847 )
...
* sonic-sairedis submodule update
* Update BRCM SAI to 3.7.5.1
2020-07-12 18:08:51 +00:00
Mahesh Maddikayala
af81b8ebcd
[libsaibcm] Update pointer to Broadcom SAI debian package ( #4725 )
2020-06-08 17:03:09 -07:00
Mahesh Maddikayala
fb6916f88b
Update packages and pointers to use SAI1.6 headers. ( #4597 )
...
* Update sonic-sairedis (sairedis with SAI 1.6 headers)
* Update SAIBCM to 3.7.4.2, which is built upon SAI1.6 headers
* missed updating BRCM_SAI variable, fixed it
* Update SAIBCM to 3.7.4.2, updated link to libsaibcm
* [Mellanox] Update SAI (release:v1.16.3; API:v1.6)
Signed-off-by: Volodymyr Samotiy <volodymyrs@mellanox.com>
* Update sonic-sairedis pointer to include SAI1.6 headers
* [Mellanox] Update SDK to 4.4.0914 and FW to xx.2007.1112 to match SAI 1.16.3 (API:v1.6)
Signed-off-by: Volodymyr Samotiy <volodymyrs@mellanox.com>
* ensure the veth link is up in docker VS container
* ensure the veth link is up in docker VS container
* [Mellanox] Update SAI (release:v1.16.3.2; API:v1.6)
Signed-off-by: Volodymyr Samotiy <volodymyrs@mellanox.com>
* use 'config interface startup' instead of using ifconfig command, also undid the previous change'
Co-authored-by: Volodymyr Samotiy <volodymyrs@mellanox.com>
2020-05-30 14:23:34 -07:00
abdosi
d8b716681c
[sonic-buildimage] libsaibcm Debian package update ( #4439 )
...
from 3.7.3.3-3 to 3.7.3.3-4
Fixes for PFC WD
Signed-off-by: Abhishek Dosi <abdosi@microsoft.com>
2020-04-17 10:46:56 -07:00
Danny Allen
590caaf5cf
[bcmsai] Update BRCM SAI Debian to 3.7.3.3-3 ( #4233 )
...
Signed-off-by: Danny Allen <daall@microsoft.com>
2020-03-07 00:38:09 -08:00
abdosi
7aae61abb5
[broadcom]: Updated BRCM SAI Debian package revision number to 3.7.3.3-2. ( #4182 )
...
This has patch to fix enable/disable attribute for lag member. It's on top of vanilla 3.7.3.3
2020-02-25 09:14:23 -08:00
Judy Joseph
9c4c36e1b5
[broadom]: Upgrade broadcom SAI to 3.7.3.2
...
[Broadcom] : update saibcm-modules to sdk 6.5.16
[Broadcom SAI] : upgrade Broadcom SAI to 3.7.3.2
2019-12-19 06:28:38 +00:00
Danny Allen
5174ec8923
[bcm SAI] Upgrade Broadcom SAI to version 3.5.3.1m-26 ( #50 )
...
Signed-off-by: Danny Allen <daall@microsoft.com>
2019-11-12 18:46:21 -08:00
Ying Xie
9bdd693e81
[bcm SAI] upgrade Broadcom SAI to version 3.5.3.1m-25 ( #48 )
...
- Built with SAI header version v1.5.0.
Signed-off-by: Ying Xie <ying.xie@microsoft.com>
2019-10-09 17:28:33 -07:00
Wenda Ni
7b0a5ba6ae
Remove the divide by 4 operation to the under the hood SAI ( #1532 )
...
* Remove the divide by 4 operation to the under the hood SAI
This is to avoid the need and thus the confusion for application program to know
the mmu internal architecture
This change must have support from SAI change to reach the correct
config
Signed-off-by: Wenda <wenni@microsoft.com>
* Relegate the divide by 4 operation to the under the hood SAI for egress
lossless pool
Extend to 7060 and 6100
Signed-off-by: Wenda <wenni@microsoft.com>
* Add more TH/TH2 hwskus
Signed-off-by: Wenda Ni <wenni@microsoft.com>
* Update config test
Signed-off-by: Wenda Ni <wenni@microsoft.com>
* Add TH2 ingress lossy profile
Signed-off-by: Wenda Ni <wenni@microsoft.com>
* Move the divide by 4 operation to SAI internal
Signed-off-by: Wenda Ni <wenni@microsoft.com>
* [bcm SAI] Upgrade Broadcom SAI to version 3.5.3.1-15
- Broadcom SAI 3.5 GA release 20190924.
Signed-off-by: Ying Xie <ying.xie@microsoft.com>
2019-09-25 15:57:07 -07:00
Shuotian Cheng
a5aa3bb0a5
[Broadcom]: Update SAI version to 3.5.2.3 ( #3014 )
...
--Create/remove port fix
--Support SAI_PORT_ATTR_SERDES_IPREDRIVER
--Egress ACL fix for PFC storm restoration
--Memory corruption during warm reboot
--SAI_OBJECT_TYPE_TUNNEL_MAP_ENTRY removal fix
--Segfault/memory corruption fix during switch shutdown
--Directed boardcast fix
--Pre-emphasis value for Dell 6100
Signed-off-by: Shu0T1an ChenG <shuche@microsoft.com>
2019-06-14 15:47:11 -07:00
Guohan Lu
38ef219b7c
[broadcom]: update broadcom sai to 3.5.2.1
2019-05-06 05:39:17 +00:00
Ying Xie
1af74d5662
[Bcm SAI] ugprade Broadcom SAI to version 3.3.5.4m-1 ( #2765 )
...
- Broadcom SAI 3.3 GA release 20190402.
Signed-off-by: Ying Xie <ying.xie@microsoft.com>
2019-04-10 19:11:59 -07:00
Ying Xie
0846654585
[sai and sairedis] advance sairedis sub-module and upgrade to matching Broadcom SAI build ( #2488 )
...
* [Broadcom SAI] upgrade Broadcom SAI to 3.3.4.3m-3
This is SAI 3.3.4.3m-3 compiled with SAI header file at commit ID
6ad3382217ec22f64cd268faefcbc2ff7caba4fd of SAI repo.
Signed-off-by: Ying Xie <ying.xie@microsoft.com>
* change libsaithrift version to 0.9.4
Signed-off-by: Guohan Lu <gulv@microsoft.com>
* [submodule]: update swss, sairedis, swss-common, sonic-utilities
swss
* a6d60f2 2019-02-15 | Create egress ACL table group during the PFCWD stats list installment (#787 ) (HEAD, origin/master, origin/HEAD) [Wenda Ni]
* 52de963 2019-02-15 | [fpmsyncd] Add VNET routes support (#772 ) [Wei Bai]
* d27f49e 2019-02-13 | Move warm_restart enable/disable config to stateDB WARM_RESTART_ENABLE_TABLE (#786 ) [Jipan Yang]
* 6363985 2019-02-08 | [vstest]: Potential fix for timing issue in warm_reboot's routing UT (#788 ) [Rodny Molina]
* 6d5424d 2019-02-07 | VNet/Vxlan delete handling (#766 ) [Prince Sunny]
* d680ce2 2019-02-07 | [neighsyncd] increase neighbor syncd restore timeout to 110 seconds (#745 ) [Ying Xie]
* b78cc8d 2019-02-01 | support 8 lanes for a physical port (#778 ) [lguohan]
* 73b620c 2019-02-01 | Increase the watermark polling interval to 10s (#777 ) [Wenda Ni]
* a2b987b 2019-02-01 | [vstest]: fix test_speed.py (#780 ) [lguohan]
* cef4bd0 2019-02-01 | [vstest]: fix test_port_an_warm.py test (#779 ) [lguohan]
* 9f20eda 2019-02-01 | fix a unstable swss egress acl test (#776 ) [Kebo Liu]
* 316ae6c 2019-01-30 | portsorch ports init done flag should means buffer, autoneg, speed, m… (#747 ) [Jipan Yang]
* 4280036 2019-01-30 | [teammgrd] Fix inconsistent port admin status (#755 ) [Jipan Yang]
* cf12bdf 2019-01-30 | Remove AclTableGroup upon removal of port/lag/vlan (#751 ) [Jipan Yang]
* 5779c1a 2019-01-29 | [aclorch] Remove L4 port range support limitation on egress ACL table and add new SWSS virtual test. (#741 ) [Kebo Liu]
* 36e85eb 2019-01-29 | On a routing vlan, the neighbor entry in the /31 subnet is not added to hardware (#771 ) [Kiran Kumar Kella]
* 882ccc6 2019-01-24 | [vnetorch] Change logic for adding VNet interface (#761 ) [Marian Pritsak]
* f637557 2019-01-25 | [vrfmgrd] Fix VRF is not set to VRF_TABLE in APP_DB correctly (#768 ) [yorke]
* e84a6ab 2019-01-24 | use sai_stat_id_t for new SAI header file (#769 ) [lguohan]
sairedis
* d685e35 2019-02-15 | Add support for fdb_event MOVE and check fdb event oids (#420 ) (HEAD, origin/master, origin/HEAD) [Kamil Cudnik]
* 2b91013 2019-02-15 | [vslib] add missing port attributes for virtual switch (#419 ) [Stepan Blyshchak]
* dcc8688 2019-02-14 | Add more specific logic for ingress ACL and buffer profile (#421 ) [Kamil Cudnik]
* c0b39ea 2019-02-12 | Move warm_restart enable/disable config to stateDB WARM_RESTART_ENABLE_TABLE (#418 ) [Jipan Yang]
* ab35dfa 2019-02-11 | Add support for vlan tagged frames in virtual switch (#417 ) [Kamil Cudnik]
* 145ea44 2019-02-02 | [flex counter] handle router interface stats (#410 ) [Mykola F]
* c03d639 2019-02-02 | Add more information on failed map sizes (#416 ) [Kamil Cudnik]
* 29f1e3c 2019-01-31 | Update SAI pointer (#414 ) [Marian Pritsak]
* c0a948d 2019-01-30 | Add WRED specific comparison logic (#413 ) [Kamil Cudnik]
* 1b6a661 2019-01-24 | install SAI extension header files into /usr/include/sai (#412 ) [lguohan]
* 849525a 2019-01-24 | Initialize notification queue pointer before switch create (#411 ) [Kamil Cudnik]
* 02d92f1 2019-01-23 | Add log info for not matching SG/IPG/QUEUES (#409 ) [Kamil Cudnik]
* 8793562 2019-01-18 | Update SAI pointer to latest master (#408 ) [Marian Pritsak]
swss-common
* ec04a5a 2019-02-14 | Add support for WarmStart::setDataCheckState() (#242 ) [Jipan Yang]
* 56bd73f 2019-02-13 | Force only supported commands on consumer table (#261 ) [Kamil Cudnik]
* 414de0f 2019-02-12 | Move warm_restart enable/disable config to stateDB WARM_RESTART_ENABLE_TABLE (#260 ) [Jipan Yang]
* 88de725 2019-02-05 | [pyext] enable types in stdint.h (#259 ) [Ying Xie]
* f457ae8 2019-02-05 | Optimized ProducerStateTable set/del notification processing to avoid… (#257 ) [Jipan Yang]
* e5286fd 2019-01-30 | [rif counters] Rif counter schema update (#256 ) [Mykola F]
sonic-utilities
* b44b462 2019-02-14 | Move warm_restart enable/disable config to stateDB WARM_RESTART_ENABL… (#458 ) (HEAD, origin/master, origin/HEAD) [Jipan Yang]
* e856b8b 2019-02-11 | [aclshow] output only counters per table/rule (#442 ) [Roman Kachur]
Signed-off-by: Guohan Lu <gulv@microsoft.com>
* [mlnx] update mellanox sai
Signed-off-by: Stepan Blyschak <stepanb@mellanox.com>
2019-02-16 10:14:18 -08:00
Ying Xie
ca522a3da9
[bcm sai] Upgrade Broadcom SAI to version 3.3.4.3-2 ( #2550 )
...
- Including Broadcom patch for CS7252202.
Signed-off-by: Ying Xie <ying.xie@microsoft.com>
2019-02-12 05:33:57 +00:00
Ying Xie
8a1d73d76d
[Broadcom SAI] Upgrade Broadcom SAI to 3.3.4.3-1 ( #2472 )
...
- Broadcom SAI 3.3 GA 20190118.
- With warm reboot support.
Signed-off-by: Ying Xie <ying.xie@microsoft.com>
2019-01-22 14:49:10 -08:00
Ying Xie
ff7ef2a8fc
[bcm sai] upgrace Broadcom SAI to 3.3.3.1-3 ( #2389 )
...
- Include helix4 fix.
- Include support for TD2 56854.
- Add dummy support for SAI_PORT_ATTR_ADVERTISED_SPEED.
Signed-off-by: Ying Xie <ying.xie@microsoft.com>
2018-12-17 00:44:05 -08:00
Ying Xie
1812d6c238
[bcm sai] upgrade to Broadcom SAI 3.3 GA release
...
Signed-off-by: Ying Xie <ying.xie@microsoft.com>
2018-12-01 07:10:30 +00:00
Ying Xie
2590aedda4
[bcm sai] Upgrade Broadcom SAI to 3.1.3.5-12 ( #2319 )
...
- Rebuilt with SAI header version v1.3.6
Signed-off-by: Ying Xie <ying.xie@microsoft.com>
2018-11-29 13:04:50 -08:00
Joe LeVeque
5c65c7730d
[build]: Eliminate build warning messages ( #2172 )
2018-10-20 14:39:04 -07:00
lguohan
794981f283
[submodule]: update broadcom SAI to 3.1.3.5-11 ( #2135 )
...
disable vxlan init for helix4
Signed-off-by: Guohan Lu <gulv@microsoft.com>
2018-10-09 23:43:31 -07:00
Shuotian Cheng
792e2dfbf3
[broadcom]: Update SAI to 3.1.3.5-10 ( #2068 )
...
* Fix Trident2 parity error correction bug
* VXLAN decapsulation implementation
Signed-off-by: Shu0T1an ChenG <shuche@microsoft.com>
2018-09-21 21:56:44 -07:00
lguohan
22edc33896
[broadcom]: upgrade SAI to 3.1.3.5-8 ( #2028 )
...
Fix get_fdb_entry_attribute bridge port ID [Shuotian Cheng]
Signed-off-by: Guohan Lu <gulv@microsoft.com>
2018-09-07 12:59:10 -07:00
lguohan
f05ee30d53
[sai]: upgrade SAI to version 1.3.3 ( #1944 )
...
* [sai]: upgrade SAI to version 1.3.3
Signed-off-by: Guohan Lu <gulv@microsoft.com>
* update mellanox sai
2018-08-17 11:13:08 -07:00
lguohan
75361042f5
[device]: add support for celestica E1031 ( #1528 )
2018-08-04 21:19:29 -07:00
lguohan
2944f3e3cb
[swss]: sonic-swss submodule update ( #1856 )
...
* [swss]: sonic-swss submodule update
Signed-off-by: Guohan Lu <gulv@microsoft.com>
* [broadcom]: update sai.mk
Signed-off-by: Guohan Lu <gulv@microsoft.com>
2018-07-13 13:43:16 -07:00
Ying Xie
daf590e677
[broadcom sai] update Broadcom SDK/SAI version ( #1853 )
...
Signed-off-by: Ying Xie <ying.xie@microsoft.com>
2018-07-12 01:52:38 -07:00
lguohan
48e3e15f52
[broadcom]: update sai.mk ( #1850 )
...
* Add function pointers for extended get stats API
Signed-off-by: Guohan Lu <gulv@microsoft.com>
2018-07-08 11:32:17 -07:00
Prince Sunny
51bfc2ebd5
[SAI] update SAI header to 1.3 ( #1778 )
2018-07-06 09:30:53 -07:00
sihuihan88
82343ca165
[sai]: update SAI version to 3.1.3.4-15 ( #1808 )
...
Signed-off-by: Sihui Han <sihan@microsoft.com>
2018-06-22 18:03:27 -07:00
Shuotian Cheng
493ae71f8f
[Broadcom]: update Broadcom SAI to 3.1.3.4-14 ( #1797 )
...
Fix mirror session destination update bug causing no resources issue
Signed-off-by: Shu0T1an ChenG <shuche@microsoft.com>
2018-06-19 17:52:09 -07:00
lguohan
e7d17c0a2b
[broadcom]: update brcm sai to 3.1.3.4-13 ( #1760 )
...
Signed-off-by: Guohan Lu <gulv@microsoft.com>
2018-06-01 08:13:58 -07:00
Ying Xie
4d564688bf
[broadcom sai] upgrade Broadcom SAI to version 3.1.3.4-12 ( #1740 )
...
Signed-off-by: Ying Xie <ying.xie@microsoft.com>
2018-05-24 16:49:24 -07:00
lguohan
9a23770173
[broadcom]: update broadcom SAI to 3.1.3.4-11 ( #1670 )
...
Provide better ECMP load-balancing via hash seed
Signed-off-by: Guohan Lu <gulv@microsoft.com>
2018-05-02 02:36:12 -07:00
Ying Xie
7759bc8b92
[Broadcom SAI] upgrade Broadcom SAI to version 3.1.3.4-10 ( #1591 )
...
* [Broadcom SAI] upgrade Broadcom SAI to version 3.1.3.4-9
Includes configuration files for following devices:
- Quanta 1X1B-32X
- Dell Z9264F
- Inventec D7054Q28B and D7032Q28B
* [bcm sai] upgrade sai version to 3.1.3.4-10
include configuration change to 7060 T0.
2018-04-12 17:55:08 -07:00
lguohan
3ba84ec1f7
[SAI]: Update sonic to use SAI v1.2.4 ( #1509 )
...
* Update SAI to v1.2.4
Signed-off-by: Andriy Moroz <c_andriym@mellanox.com>
* update SAI to v1.2.4 header
2018-03-17 19:07:28 -07:00
Ying Xie
f306dd36cd
[BCM SAI] update Broadcom SDK and SAI ( #1485 )
...
SDK: no functional change, update version number to 3.4.1.11-2.
SAI: upgrade to 3.1.3.4-5, enable warm shutdown feature.
2018-03-14 14:44:40 -07:00
Ying Xie
e4a02cbf65
[SAI] upgrade to Broadcom SAI 3.1.3.4-4 ( #1475 )
2018-03-08 10:36:39 -08:00
Ying Xie
b9f4aa9f00
[bcm sai] upgrade to sai version 3.1.3.4-3 ( #1451 )
...
- included bcm config files missed between 3.0 and 3.1.
2018-03-02 21:21:47 -08:00
Ying Xie
4cac329472
[SAI] upgrade to Broadcom SAI 3.1.3.4-2 ( #1427 )
2018-02-27 18:34:57 -08:00
lguohan
005a59fc4d
[image]: Upgrade SONiC stack to use SAI version to v1.2 ( #1336 )
2018-02-22 19:36:39 -08:00
Shuotian Cheng
c568e8fd27
[Broadcom]: Update Boradcom SAI package to 3.0.3.3-3 ( #1312 )
...
- update Arista 7050-QX32S config.bcm file
- update Accton th-as771*-32x100G.config.bcm files
2018-01-16 19:16:34 -08:00
lguohan
52e07979e2
[broadcom]: update sai to 3.0.3.3-1 ( #1243 )
...
add SAI_ROUTER_INTERFACE_ATTR_MTU support in broadcom SAI
2017-12-17 02:03:39 -08:00
Shuotian Cheng
d9c0ede2e4
[Broadcom]: Update Broadcom SDK/SAI package ( #1205 )
...
Update Broadcom OpenNSL to 3.2.3.7-1
Update Broadcom SAI to 3.0.3.3
Signed-off-by: Shu0T1an ChenG <shuche@microsoft.com>
2017-12-07 11:32:47 -08:00
Shuotian Cheng
b7c2ffa73a
[Broadcom]: Update Broadcom SAI package to 3.0.3.2-15 ( #1186 )
...
Add support for TD2 BCM 56854
Add th-ag9032v1-32x100G.config.bcm for Delta AG9032v1
Signed-off-by: Shu0T1an ChenG <shuche@microsoft.com>
2017-11-27 19:07:58 -08:00
Shuotian Cheng
343597ce22
[Broadcom]: Update Broadcom SAI package to 3.0.3.2-13 ( #1161 )
...
Fix crash due to dirty pointers
Signed-off-by: Shu0T1an ChenG <shuche@microsoft.com>
2017-11-17 09:36:02 -08:00
Shuotian Cheng
6284452535
[Broadcom]: Update Broadcom SAI package to 3.0.3.2-12 ( #1150 )
...
Fix memory leak in multipath routing (part II)
Update th-s6100-64x40G.config.bcm
Signed-off-by: Shu0T1an ChenG <shuche@microsoft.com>
2017-11-14 03:23:55 -08:00
Shuotian Cheng
cb009ba807
[Broadcom]: Update Broadcom SAI package to 3.0.3.2-11 ( #1127 )
...
Fix memory leak in multipath routing
Signed-off-by: Shu0T1an ChenG <shuche@microsoft.com>
2017-11-07 15:19:47 -08:00
Shuotian Cheng
961a6669f7
[Broadcom]: Update Broadcom OpenNSL/SAI packages ( #1090 )
...
Update OpenNSL to 3.2.3.3-2
Update SAI to 3.0.3.2-10
This commit fixes S6100 CPU high usage issue
Signed-off-by: Shu0T1an ChenG <shuche@microsoft.com>
2017-10-27 13:59:51 -07:00
Shuotian Cheng
a4ecade8f6
[Broadcom]: Update Broadcom SAI package to 3.0.3.2-8 ( #1070 )
...
Update Arista config.bcm files
Signed-off-by: Shu0T1an ChenG <shuche@microsoft.com>
2017-10-23 15:46:07 -07:00
Shuotian Cheng
a9566bdb1e
[Broadcom]: Update Broadcom SAI package to 3.0.3.2-8 ( #1057 )
...
Update Inventec config.bcm files
Signed-off-by: Shu0T1an ChenG <shuche@microsoft.com>
2017-10-19 16:52:33 -07:00
Shuotian Cheng
834890f192
[Broadcom]: Update Broadcom SAI package to 3.0.3.2-7 ( #1049 )
...
Update Accton config.bcm files
Signed-off-by: Shu0T1an ChenG <shuche@microsoft.com>
2017-10-18 01:14:15 -07:00
Shuotian Cheng
60a4d75b07
[Broadcom]: Update Broadcom SAI package to 3.0.3.2-6 ( #1044 )
...
msft patch: Trap all ARP packets including unicast/broadcast
Signed-off-by: Shu0T1an ChenG <shuche@microsoft.com>
2017-10-16 19:46:44 -07:00
Shuotian Cheng
6483919852
[Broadcom]: Update SAI version to 3.0.3.2-5 ( #997 )
...
- Add additional DropCancel and CopyToCpuCancel action rules for every redirect
2017-09-28 20:29:31 -07:00
Shuotian Cheng
a4ceff7284
[Broadcom]: Update SAI version to 3.0.3.2-4 ( #983 )
...
- Update Seastone config.bcm files
- bugfix: Fix set attribute for ipv6 neighbor
2017-09-25 17:54:46 -07:00
Shuotian Cheng
7a9894a99c
[Broadcom]: Update libsai version to 3.0.3.2-2 ( #973 )
...
Update Ingrasys/Accton config.bcm files
2017-09-21 13:19:44 -07:00
Shuotian Cheng
034b47df6c
[Broadcom]: Update OpenNSL/SAI version ( #959 )
2017-09-15 11:57:19 -07:00
Shuotian Cheng
38cd1d5368
[Broadcom]: Remove BRCM_OPENNSL library and upgrade BRCM_SAI to 3.0.3.2 ( #938 )
...
This library will be archived in to BRCM_SAI library
2017-09-06 20:08:25 -07:00
Shuotian Cheng
5cf37cbcb3
[Broadcom]: Update Broadcom SAI/SDK version ( #883 )
2017-08-10 18:53:51 -07:00
Qi Luo
618b25f18c
Squash merge v1.0.3 branch onto master
2017-08-02 22:28:17 +00:00
Shuotian Cheng
2090cd341f
[Broadcom]: Update SAI to 2.1.5.1-16 ( #803 )
...
Add Inventec-D7032Q28B-C32 config.bcm file
2017-07-12 18:15:35 -07:00
Shuotian Cheng
ecd0b29533
[Broadcom]: Update SAI to 2.1.5.1-15 ( #799 )
...
Add Arista-7050-Q16S64 config.bcm file
2017-07-11 13:01:45 -07:00
Shuotian Cheng
39bd495ea9
[Broadcom]: Update SAI package to support Celestica Seastone DX010 and Accton AS7716 ( #768 )
2017-06-29 10:50:53 -07:00
Shuotian Cheng
c4133e166b
[Broadcom]: Update SAI package to support Accton-AS7712-C32 ( #720 )
2017-06-20 20:50:51 -07:00
Shuotian Cheng
b55ab4614b
[Broadcom]: Update SAI package to support Arista-7050-QX32S ( #671 )
2017-06-05 22:41:20 -07:00
Shuotian Cheng
5f8e495cb0
[Broadcom]: Update SAI package ( #665 )
...
Increase the maximum logical ports supported to prevent TH initialization crash
2017-06-02 23:33:37 -07:00
Shuotian Cheng
984e6c4bc9
[Broadcom]: Update SAI package ( #659 )
...
Add Ingrasys config.bcm files
2017-06-01 17:51:12 -07:00
Shuotian Cheng
a5c0dff209
[Broadcom]: Update SAI package to 2.1.5.1-8 ( #649 )
...
Add config_checker/permitted_list
Please check etc/bcm/ folder to check the README.msft file!
2017-05-31 10:57:42 -07:00
Shuotian Cheng
faf33d80d3
[Broadcom]: Update Broadcom SAI to 2.1.5.1-7 ( #616 )
...
* 20170519 (0843e2a858c2e730b25e7106c83a472e43cd527d)
Fixed unknown neighbor processing and neighbor update scenarios.
2017-05-19 23:23:59 -07:00
Shuotian Cheng
68545416dc
[Broadcom]: Update Broadcom SDK to 3.2.2.2-6 and SAI to 2.1.5.1-6 ( #583 )
...
Signed-off-by: Shuotian Cheng <shuche@microsoft.com>
2017-05-10 12:49:52 -07:00
Shuotian Cheng
97b4924476
[Broadcom]: Update broacom SDK to 3.2.2.2-5 and SAI to 2.1.5.1-5 ( #570 )
...
Signed-off-by: Shuotian Cheng <shuche@microsoft.com>
2017-05-08 11:31:00 -07:00
lguohan
03cd2cef78
[Broadcom]: Update broacom SAI to 2.1.5.1-4 and opennsl to 3.2.2.2-3 ( #543 )
2017-04-26 22:19:31 -07:00
Shuotian Cheng
3223996404
[Broadcom]: Update debian package versions ( #538 )
...
- libsaibcm 2.1.5.1-3
Signed-off-by: Shuotian Cheng <shuche@microsoft.com>
2017-04-26 06:12:23 -07:00
Shuotian Cheng
fb01755d48
[swss]: Update sonic-swss to enable SAI_NUM_ECMP_MEMBERS option in sai.profile ( #518 )
...
- Update Broadcom libsaibcm debian package to 2.1.5.1-2
- Add SAI_NUM_ECMP_MEMBERS=32 to two Trident II platforms
- Update sonic-swss submodule version to support such changes
Signed-off-by: Shuotian Cheng <shuche@microsoft.com>
2017-04-19 19:34:27 -07:00
Shuotian Cheng
b0901ecb8e
[broadcom]: Update Broadcom debian packages and add config.bcm files ( #478 )
2017-04-07 11:26:45 -07:00
Shuotian Cheng
366775a64e
[Broadcom]: Update debian package versions ( #373 )
...
Signed-off-by: Shuotian Cheng <shuche@microsoft.com>
2017-03-03 23:07:23 -08:00
Shuotian Cheng
fd6080a362
[Broadcom]: Update debian package versions ( #354 )
...
Signed-off-by: Shuotian Cheng <shuche@microsoft.com>
2017-03-01 18:22:47 -08:00
lguohan
1b240e8f37
[boardcom]: update saibcm to 2.1.3.1-3 ( #336 )
2017-02-24 16:27:39 -08:00
lguohan
b21d26dfe0
[platform]: add support for Force10-Z9100 32x100G ( #332 )
...
* [platform]: add support for Force10-Z9100 32x100G
* update sonic-swss submodule
* [broadcom]: update broadcom sai/sdk
2017-02-24 08:35:11 -08:00
Shuotian Cheng
e702fc0732
[Broadcom]: Update debian packages ( #296 )
...
Signed-off-by: Shuotian Cheng <shuche@microsoft.com>
2017-02-15 08:48:52 -08:00
Shuotian Cheng
00fe0784b4
[Broadcom]: Update Broadcom debian packages and m3000-r0 m3000-r1 config.bcm files ( #251 )
...
Signed-off-by: Shuotian Cheng <shuche@microsoft.com>
2017-02-03 19:44:00 -08:00
Shuotian Cheng
6d4d54c984
[platform]: Update Broadcom debian packages ( #195 )
...
Fix /proc/bcm/knet/link set wrong port status
2017-01-18 17:11:29 -08:00
Shuotian Cheng
387399663f
[platform]: Update Broadcom debian packages ( #188 )
2017-01-12 10:40:25 -08:00
Shuotian Cheng
d92f99799b
[platform]: Update Broadcom debian package versions and chmod on executables ( #185 )
2017-01-09 14:34:14 -08:00
lguohan
4673be0d70
add download url for broadcom sai/sdk deb packages ( #159 )
2016-12-25 00:44:06 -08:00
lguohan
98e3479e26
build orchagent and syncd docker on broadcom platform ( #118 )
...
* build orchagent and syncd docker on broadcom platform
2016-12-14 14:33:07 -08:00