2018-08-07 02:14:37 -05:00
|
|
|
#
|
2021-01-28 10:38:47 -06:00
|
|
|
# Copyright 2007-2020 Broadcom Inc. All rights reserved.
|
|
|
|
#
|
|
|
|
# Permission is granted to use, copy, modify and/or distribute this
|
|
|
|
# software under either one of the licenses below.
|
|
|
|
#
|
|
|
|
# License Option 1: GPL
|
2018-08-07 02:14:37 -05:00
|
|
|
#
|
2018-08-23 14:05:14 -05:00
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License, version 2, as
|
|
|
|
# published by the Free Software Foundation (the "GPL").
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful, but
|
|
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
# General Public License version 2 (GPLv2) for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# version 2 (GPLv2) along with this source code.
|
2021-01-28 10:38:47 -06:00
|
|
|
#
|
|
|
|
#
|
|
|
|
# License Option 2: Broadcom Open Network Switch APIs (OpenNSA) license
|
|
|
|
#
|
|
|
|
# This software is governed by the Broadcom Open Network Switch APIs license:
|
|
|
|
# https://www.broadcom.com/products/ethernet-connectivity/software/opennsa
|
2018-08-07 02:14:37 -05:00
|
|
|
#
|
|
|
|
# $Id: Makefile.linux-x86-smp_generic_64-2_6,v 1.5 Broadcom SDK $
|
|
|
|
# $Copyright: (c) 2008 Broadcom Corp.
|
|
|
|
# All Rights Reserved.$
|
|
|
|
|
|
|
|
CFGFLAGS += -DLONGS_ARE_64BITS
|
|
|
|
CFGFLAGS += -DPTRS_ARE_64BITS
|
|
|
|
CFGFLAGS += -DPHYS_ADDRS_ARE_64BITS
|
|
|
|
CFGFLAGS += -DSAL_SPL_LOCK_ON_IRQ
|
|
|
|
|
|
|
|
include ${SDK}/make/Makefile.linux-x86-generic-common-2_6
|
|
|
|
|
|
|
|
ifeq (,$(KFLAGS))
|
2021-01-28 10:38:47 -06:00
|
|
|
KFLAGS := -nostdinc -isystem $(SYSINC) -I$(KERNDIR)/include -I$(KERNDIR)/arch/x86/include -include $(AUTOCONF) -D__KERNEL__ -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -Os -m64 -mtune=generic -mno-red-zone -fno-pie -mcmodel=kernel -funit-at-a-time -maccumulate-outgoing-args -DCONFIG_AS_CFI=1 -DCONFIG_AS_CFI_SIGNAL_FRAME=1 -pipe -Wno-sign-compare -fno-asynchronous-unwind-tables -mno-sse -mno-mmx -mno-sse2 -mno-3dnow -fno-stack-protector -fomit-frame-pointer -g -Wdeclaration-after-statement -Wno-pointer-sign
|
2018-08-07 02:14:37 -05:00
|
|
|
endif
|
|
|
|
|
2018-08-23 14:07:17 -05:00
|
|
|
ifeq ($(LINUX_MAKE_SHARED_LIB), 1)
|
2020-10-06 09:58:00 -05:00
|
|
|
KFLAGS += -fPIC -mcmodel=small
|
2018-08-23 14:07:17 -05:00
|
|
|
else
|
2020-10-06 09:58:00 -05:00
|
|
|
KFLAGS += -fno-pie -mcmodel=kernel
|
2018-08-23 14:07:17 -05:00
|
|
|
endif
|
2018-08-07 02:14:37 -05:00
|
|
|
|
2018-08-23 14:05:14 -05:00
|
|
|
LINUX_UAPI = $(LINUX_INCLUDE)/uapi
|
2020-10-06 09:58:00 -05:00
|
|
|
ifneq (,$(shell ls $(LINUX_UAPI) 2>/dev/null))
|
2018-08-23 14:05:14 -05:00
|
|
|
KFLAGS += -I$(LINUX_INCLUDE)/uapi -I$(LINUX_INCLUDE)/generated/uapi -I$(KERNDIR)/arch/x86/include/generated -I$(KERNDIR)/arch/x86/include/uapi -I$(KERNDIR)/arch/x86/include/generated/uapi
|
2020-10-06 09:58:00 -05:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef LTSW_CHIPS
|
|
|
|
# Ensure we do not use an out-of-date libelf.so
|
|
|
|
ELFUTILS_MIN = 158
|
|
|
|
ELFUTILS_DIR ?= /projects/ntsw-tools/lib
|
|
|
|
|
|
|
|
# Default open source target build
|
|
|
|
OPENSRC_BUILD ?= x86_64
|
|
|
|
|
|
|
|
# Hardware interface (see $SDKLT/bcma/sys/probe directory)
|
|
|
|
SYSTEM_INTERFACE ?= ngbde
|
|
|
|
|
|
|
|
# Turn on direct register access if running on real hardware.
|
|
|
|
ifeq (ngbde,$(SYSTEM_INTERFACE))
|
|
|
|
LTSW_ADD_CPPFLAGS += -DBCMDRD_CONFIG_MEMMAP_DIRECT=1
|
|
|
|
endif
|
2018-08-23 14:07:17 -05:00
|
|
|
|
2020-10-06 09:58:00 -05:00
|
|
|
export SYSTEM_INTERFACE
|
2018-08-07 02:14:37 -05:00
|
|
|
endif
|
|
|
|
|
[BCMSAI] Update BCMSAI debian to 6.0.0.10 with 6.5.23 SDK, and opennsl module to 6.5.23 (#9046)
Manual verification on switch (TH3 device)
admin@str2-xxxxx-01:~$ bcmcmd bsv
bsv
BRCM SAI ver: [6.0.0.10], OCP SAI ver: [1.9.1], SDK ver: [sdk-6.5.23]
drivshell>
admin@str2-xxxxx-01:~$ bcmcmd version
version
Broadcom Command Monitor: Copyright (c) 1998-2021 Broadcom
Release: sdk-6.5.23 built 20211020 (Wed Oct 20 06:52:58 2021)
From root@fedbbfdbee81:/__w/2/s/output/x86-xgsall-deb/hsdk
Platform: X86
OS: Unix (Posix)
Chips:
BCM56640_A0,
BCM56850_A0,
BCM56340_A0,
BCM56960_A0, BCM56860_A0,
BCM56970_A0, BCM56870_A0,
BCM56980_A0, BCM56980_B0,
BCM56370_A0, BCM56275_A0, BCM56770_A0,
Chips:
BCM56780_A0, BCM56782_A0, BCM56784_A0, BCM56785_A0,
BCM56786_A0, BCM56787_A0, BCM56788_A0, BCM56789_A0,
BCM56880_A0, BCM56880_B0, BCM56881_A0, BCM56881_B0,
BCM56883_A0, BCM56883_B0, BCM56990_A0, BCM56990_B0,
BCM56991_B0, BCM56992_B0, BCM56996_A0, BCM56996_B0,
BCM56997_A0, BCM56997_B0
Variant drivers:
BCM56780_A0_CNA_1_2_10, BCM56780_A0_DNA_2_7_6_0, BCM56880_A0_CNA_1_2_9, BCM56880_A0_DNA_4_9_5_0
PHYs: BCM5400, BCM54182, BCM54185, BCM54180,
BCM54140, BCM54192, BCM54195, BCM54190,
BCM54194, BCM54210, BCM54220, BCM54280,
BCM54282, BCM54240, BCM54285, BCM5428X,
BCM54290, BCM54292, BCM54294, BCM54295,
BCM54296, BCM56160-GPHY, BCM53540-GPHY, BCM56275-GPHY,
BCM8750, BCM8752, BCM8754, BCM84740,
BCM84164, BCM84758, BCM84780, BCM84784,
BCM84318, BCM84328, Sesto, BCM82780,
copper sfp
drivshell>
2021-10-28 02:12:32 -05:00
|
|
|
ifneq (, $(EDKHOST))
|
|
|
|
# Default open source target build
|
|
|
|
OPENSRC_BUILD ?= x86_64
|
|
|
|
endif
|
|
|
|
|
2018-08-07 02:14:37 -05:00
|
|
|
include ${SDK}/make/Makefile.linux-x86-common-2_6
|