]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - processor-sdk/pdk.git/blob - packages/ti/board/diag/pcie/build/makefile
d385fb4536d2c317639b4901c1b990581e4d0623
[processor-sdk/pdk.git] / packages / ti / board / diag / pcie / build / makefile
1 # Copyright (C) 2020 Texas Instruments Incorporated - http://www.ti.com/\r
2 #\r
3 #\r
4 #  Redistribution and use in source and binary forms, with or without\r
5 #  modification, are permitted provided that the following conditions\r
6 #  are met:\r
7 #\r
8 #    Redistributions of source code must retain the above copyright\r
9 #    notice, this list of conditions and the following disclaimer.\r
10 #\r
11 #    Redistributions in binary form must reproduce the above copyright\r
12 #    notice, this list of conditions and the following disclaimer in the\r
13 #    documentation and/or other materials provided with the\r
14 #    distribution.\r
15 #\r
16 #    Neither the name of Texas Instruments Incorporated nor the names of\r
17 #    its contributors may be used to endorse or promote products derived\r
18 #    from this software without specific prior written permission.\r
19 #\r
20 #  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\r
21 #  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\r
22 #  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\r
23 #  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\r
24 #  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\r
25 #  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\r
26 #  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\r
27 #  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\r
28 #  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\r
29 #  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\r
30 #  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r
31 \r
32 #\r
33 # Macro definitions referenced below\r
34 #\r
35 \r
36 #\r
37 # This file is the makefile for building CSL uart app.\r
38 #\r
39 include $(PDK_INSTALL_PATH)/ti/build/Rules.make\r
40 \r
41 # Board diag parameters which can be controlled outside this makefile\r
42 DIAGNAME ?= pcie\r
43 PROFILE ?= release\r
44 TESTMODE ?= FUNCTIONAL_TEST\r
45 MODENAME ?=\r
46 BOARD_DIAG_CFLAGS ?=\r
47 APP_NAME ?= board_diag_$(DIAGNAME)\r
48 \r
49 BUILD_PROFILE_$(CORE) = $(PROFILE)\r
50 \r
51 BUILD_OS_TYPE = baremetal\r
52 LNKFLAGS_LOCAL_mpu1_0  += --entry Entry\r
53 EXTERNAL_INTERFACES =\r
54 XDC_CFG_FILE_mpu1_0 =\r
55 XDC_CFG_FILE_mcu1_0 =\r
56 \r
57 SRCDIR = ../src ../../common/$(SOC) ./$(BOARD)\r
58 INCDIR = ../../../../board ../src ../../../src/$(BOARD)/include ../../../src/$(BOARD) ../../common/$(SOC) ../../../../csl\r
59 \r
60 # List all the external components/interfaces, whose interface header files\r
61 # need to be included for this component\r
62 INCLUDE_EXTERNAL_INTERFACES = pdk\r
63 \r
64 # List all the components required by the application\r
65 COMP_LIST_COMMON = uart osal_nonos csl csl_init board i2c\r
66 ifeq ($(SOC), $(filter $(SOC), am65xx))\r
67 COMP_LIST_COMMON += sciclient\r
68 endif\r
69 \r
70 \r
71 # Common source files and CFLAGS across all platforms and cores\r
72 PACKAGE_SRCS_COMMON = ../src makefile\r
73 PACKAGE_SRCS_COMMON += ../../common/$(SOC)\r
74 PACKAGE_SRCS_COMMON += ../../board_diag_component.mk\r
75 PACKAGE_SRCS_COMMON += ../../create_sd.bat ../../create_sd.sh\r
76 \r
77 SRCS_COMMON += pcie_test_am65xx.c diag_common_cfg.c\r
78 \r
79 ifeq ($(CORE),$(filter $(CORE), mcu1_0))\r
80 SRCS_ASM_COMMON += diag_entry_r5.asm\r
81 EXTERNAL_LNKCMD_FILE_LOCAL = ../../common/$(SOC)/linker_$(CORE).lds\r
82 endif\r
83 \r
84 ifeq ($(CORE),$(filter $(CORE), mpu1_0))\r
85 SRCS_ASM_COMMON += diag_entry.asm\r
86 EXTERNAL_LNKCMD_FILE_LOCAL = ../../common/$(SOC)/linker_$(CORE).lds\r
87 endif\r
88 \r
89 CFLAGS_LOCAL_COMMON = $(PDK_CFLAGS) -DDIAG_$(TESTMODE) $(BOARD_DIAG_CFLAGS)\r
90 \r
91 # Include common make files\r
92 ifeq ($(MAKERULEDIR), )\r
93 #Makerule path not defined, define this and assume relative path from ROOTDIR\r
94   MAKERULEDIR := $(ROOTDIR)/ti/build/makerules\r
95   export MAKERULEDIR\r
96 endif\r
97 include $(MAKERULEDIR)/common.mk\r
98 \r
99 # OBJs and libraries are built by using rule defined in rules_<target>.mk\r
100 #     and need not be explicitly specified here\r
101 \r
102 # Nothing beyond this point\r