307e39bde4
* [Marvell-arm64] Add platform support for rd98DX35xx This change adds following two variants of rd98DX35xx board to arm64 build. Board with CPU integrated into the 98DX35xx switching chip: Platform: arm64-marvell_rd98DX35xx-r0 HwSKU: rd98DX35xx ASIC: marvell Port Config: 32x1G + 16x2.5G + 6x25G Board with external CN9131 CPU connected over PCI to 98DX35xx switching chip: Platform: arm64-marvell_rd98DX35xx_cn9131-r0 HwSKU: rd98DX35xx_cn9131 ASIC: marvell Port Config: 32x1G + 16x2.5G + 6x25G Change-Id: I21dc9fe972417daaabb20a5bddf7779d72b7972e Signed-off-by: Pavan Naregundi <pnaregundi@marvell.com> * Add HWSKU for rd98DX35xx and rd98DX35xx_cn9131 This patch adds new HWSKU's for Marvell arm64 platforms rd98DX35xx and rd98DX35xx_cn9131. Change-Id: Id7c14f49f0e304335cc4ca73dcae52362c49d231 Signed-off-by: Pavan Naregundi <pnaregundi@marvell.com> --------- Signed-off-by: Pavan Naregundi <pnaregundi@marvell.com>
27 lines
823 B
Makefile
27 lines
823 B
Makefile
#include $(PLATFORM_PATH)/sdk.mk
|
|
include $(PLATFORM_PATH)/sai.mk
|
|
include $(PLATFORM_PATH)/docker-syncd-mrvl.mk
|
|
include $(PLATFORM_PATH)/docker-syncd-mrvl-rpc.mk
|
|
include $(PLATFORM_PATH)/docker-saiserver-mrvl.mk
|
|
include $(PLATFORM_PATH)/libsaithrift-dev.mk
|
|
include $(PLATFORM_PATH)/one-image.mk
|
|
include $(PLATFORM_PATH)/mrvl-prestera.mk
|
|
include $(PLATFORM_PATH)/platform-nokia.mk
|
|
include $(PLATFORM_PATH)/platform-marvell.mk
|
|
|
|
SONIC_ALL += $(SONIC_ONE_IMAGE) \
|
|
$(DOCKER_FPM) \
|
|
$(DOCKER_PTF_MRVL) \
|
|
$(DOCKER_SYNCD_MRVL_RPC)
|
|
|
|
# Inject mrvl sai into syncd
|
|
$(SYNCD)_DEPENDS += $(MRVL_SAI)
|
|
$(SYNCD)_UNINSTALLS += $(MRVL_SAI)
|
|
|
|
ifeq ($(ENABLE_SYNCD_RPC),y)
|
|
$(SYNCD)_DEPENDS += $(LIBSAITHRIFT_DEV)
|
|
endif
|
|
|
|
# Runtime dependency on mrvl sai is set only for syncd
|
|
$(SYNCD)_RDEPENDS += $(MRVL_SAI)
|