Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0+ |
Jason Liu | 18936ee | 2011-11-25 00:18:01 +0000 | [diff] [blame] | 2 | # |
| 3 | # (C) Copyright 2000-2006 |
| 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 5 | # |
| 6 | # (C) Copyright 2011 Freescale Semiconductor, Inc. |
Jason Liu | 18936ee | 2011-11-25 00:18:01 +0000 | [diff] [blame] | 7 | |
Peng Fan | cd357ad | 2018-11-20 10:19:25 +0000 | [diff] [blame^] | 8 | ifeq ($(SOC),$(filter $(SOC),mx25 mx35 mx5 mx6 mx7 imx8m vf610)) |
Masahiro Yamada | 71f84ef | 2013-10-17 17:34:53 +0900 | [diff] [blame] | 9 | obj-y = iomux-v3.o |
Benoît Thébaudeau | ab3a990 | 2013-05-03 10:32:13 +0000 | [diff] [blame] | 10 | endif |
Peng Fan | e0e4e53 | 2018-01-10 13:20:38 +0800 | [diff] [blame] | 11 | |
Peng Fan | cd357ad | 2018-11-20 10:19:25 +0000 | [diff] [blame^] | 12 | ifeq ($(SOC),$(filter $(SOC),imx8m)) |
Peng Fan | e0e4e53 | 2018-01-10 13:20:38 +0800 | [diff] [blame] | 13 | obj-$(CONFIG_IMX_BOOTAUX) += imx_bootaux.o |
| 14 | obj-$(CONFIG_ENV_IS_IN_MMC) += mmc_env.o |
| 15 | obj-$(CONFIG_FEC_MXC) += mac.o |
| 16 | obj-$(CONFIG_SYS_I2C_MXC) += i2c-mxv7.o |
| 17 | obj-y += cpu.o |
| 18 | endif |
| 19 | |
Stefano Babic | ea00e59 | 2012-09-05 20:16:36 +0000 | [diff] [blame] | 20 | ifeq ($(SOC),$(filter $(SOC),mx5 mx6)) |
Stefan Agner | 23b6a13 | 2018-01-05 15:08:18 +0100 | [diff] [blame] | 21 | obj-y += cpu.o speed.o |
| 22 | obj-$(CONFIG_GPT_TIMER) += timer.o |
Masahiro Yamada | 71f84ef | 2013-10-17 17:34:53 +0900 | [diff] [blame] | 23 | obj-$(CONFIG_SYS_I2C_MXC) += i2c-mxv7.o |
Stefano Babic | ea00e59 | 2012-09-05 20:16:36 +0000 | [diff] [blame] | 24 | endif |
Peng Fan | cd357ad | 2018-11-20 10:19:25 +0000 | [diff] [blame^] | 25 | ifeq ($(SOC),$(filter $(SOC),mx7 mx6 mxs imx8m)) |
Masahiro Yamada | 71f84ef | 2013-10-17 17:34:53 +0900 | [diff] [blame] | 26 | obj-y += misc.o |
Tim Harvey | 887717d | 2014-06-02 16:13:20 -0700 | [diff] [blame] | 27 | obj-$(CONFIG_SPL_BUILD) += spl.o |
Stefan Roese | 8870e45 | 2013-04-09 21:06:08 +0000 | [diff] [blame] | 28 | endif |
Adrian Alonso | cd562c8 | 2015-09-02 13:54:23 -0500 | [diff] [blame] | 29 | ifeq ($(SOC),$(filter $(SOC),mx7)) |
| 30 | obj-y += cpu.o |
| 31 | obj-$(CONFIG_SYS_I2C_MXC) += i2c-mxv7.o |
Peng Fan | c1ef486 | 2018-01-10 13:20:36 +0800 | [diff] [blame] | 32 | obj-$(CONFIG_ENV_IS_IN_MMC) += mmc_env.o |
Adrian Alonso | cd562c8 | 2015-09-02 13:54:23 -0500 | [diff] [blame] | 33 | endif |
Marek Vasut | 0b6b8a3 | 2018-10-04 21:16:42 +0200 | [diff] [blame] | 34 | ifeq ($(SOC),$(filter $(SOC),mx5 mx6 mx7)) |
| 35 | obj-$(CONFIG_IMX_VIDEO_SKIP) += video.o |
| 36 | endif |
Adrian Alonso | cd562c8 | 2015-09-02 13:54:23 -0500 | [diff] [blame] | 37 | ifeq ($(SOC),$(filter $(SOC),mx6 mx7)) |
Adrian Alonso | 50a082a | 2015-09-02 13:54:15 -0500 | [diff] [blame] | 38 | obj-y += cache.o init.o |
Peng Fan | 6ce8b10 | 2018-01-10 13:20:31 +0800 | [diff] [blame] | 39 | obj-$(CONFIG_FEC_MXC) += mac.o |
Peng Fan | de09c43 | 2016-01-28 16:55:00 +0800 | [diff] [blame] | 40 | obj-$(CONFIG_IMX_RDC) += rdc-sema.o |
Tom Rini | 20b9f2e | 2018-01-03 08:52:39 -0500 | [diff] [blame] | 41 | ifneq ($(CONFIG_SPL_BUILD),y) |
Peng Fan | 6f6058b | 2016-01-28 16:55:04 +0800 | [diff] [blame] | 42 | obj-$(CONFIG_IMX_BOOTAUX) += imx_bootaux.o |
Tom Rini | 20b9f2e | 2018-01-03 08:52:39 -0500 | [diff] [blame] | 43 | endif |
Peng Fan | 6ce8b10 | 2018-01-10 13:20:31 +0800 | [diff] [blame] | 44 | obj-$(CONFIG_SATA) += sata.o |
Adrian Alonso | 7a7281a | 2015-10-12 13:48:08 -0500 | [diff] [blame] | 45 | obj-$(CONFIG_SECURE_BOOT) += hab.o |
Stefan Agner | 4671835 | 2018-01-05 15:08:19 +0100 | [diff] [blame] | 46 | obj-$(CONFIG_SYSCOUNTER_TIMER) += syscounter.o |
Giuseppe Pagano | 164d984 | 2013-11-28 12:32:48 +0100 | [diff] [blame] | 47 | endif |
Peng Fan | 1b40982 | 2017-02-22 16:21:43 +0800 | [diff] [blame] | 48 | ifeq ($(SOC),$(filter $(SOC),mx7ulp)) |
| 49 | obj-y += cache.o |
| 50 | obj-$(CONFIG_SECURE_BOOT) += hab.o |
| 51 | endif |
Sanchayan Maity | c7ea243 | 2015-04-15 16:24:22 +0530 | [diff] [blame] | 52 | ifeq ($(SOC),$(filter $(SOC),vf610)) |
| 53 | obj-y += ddrmc-vf610.o |
| 54 | endif |
Sven Ebenfeld | 99f49fd | 2016-11-06 16:37:54 +0100 | [diff] [blame] | 55 | ifneq ($(CONFIG_SPL_BUILD),y) |
Masahiro Yamada | 71f84ef | 2013-10-17 17:34:53 +0900 | [diff] [blame] | 56 | obj-$(CONFIG_CMD_BMODE) += cmd_bmode.o |
| 57 | obj-$(CONFIG_CMD_HDMIDETECT) += cmd_hdmidet.o |
Raul Cardenas | 0200020 | 2015-02-27 11:22:06 -0600 | [diff] [blame] | 58 | obj-$(CONFIG_CMD_DEKBLOB) += cmd_dek.o |
Sven Ebenfeld | 99f49fd | 2016-11-06 16:37:54 +0100 | [diff] [blame] | 59 | endif |
Jason Liu | 18936ee | 2011-11-25 00:18:01 +0000 | [diff] [blame] | 60 | |
Marcel Ziswiler | 43e6f94 | 2018-11-09 15:31:17 +0100 | [diff] [blame] | 61 | ifneq ($(CONFIG_BOARD_SIZE_LIMIT),) |
| 62 | BOARD_SIZE_CHECK = \ |
| 63 | @actual=`wc -c $@ | awk '{print $$1}'`; \ |
| 64 | limit=`printf "%d" $(CONFIG_BOARD_SIZE_LIMIT)`; \ |
| 65 | if test $$actual -gt $$limit; then \ |
| 66 | echo "$@ exceeds file size limit:" >&2 ; \ |
| 67 | echo " limit: $$limit bytes" >&2 ; \ |
| 68 | echo " actual: $$actual bytes" >&2 ; \ |
| 69 | echo " excess: $$((actual - limit)) bytes" >&2; \ |
| 70 | exit 1; \ |
| 71 | fi |
| 72 | else |
| 73 | BOARD_SIZE_CHECK = |
| 74 | endif |
| 75 | |
Peng Fan | b3513c5 | 2016-10-11 14:29:14 +0800 | [diff] [blame] | 76 | PLUGIN = board/$(BOARDDIR)/plugin |
| 77 | |
| 78 | ifeq ($(CONFIG_USE_IMXIMG_PLUGIN),y) |
| 79 | |
| 80 | $(PLUGIN).o: $(PLUGIN).S FORCE |
| 81 | $(Q)mkdir -p $(dir $@) |
| 82 | $(call if_changed_dep,as_o_S) |
| 83 | |
| 84 | $(PLUGIN).bin: $(PLUGIN).o FORCE |
| 85 | $(Q)mkdir -p $(dir $@) |
| 86 | $(OBJCOPY) -O binary --gap-fill 0xff $< $@ |
| 87 | else |
| 88 | |
| 89 | $(PLUGIN).bin: |
| 90 | |
| 91 | endif |
| 92 | |
Masahiro Yamada | 4e0c8ab | 2014-02-24 11:12:20 +0900 | [diff] [blame] | 93 | quiet_cmd_cpp_cfg = CFGS $@ |
| 94 | cmd_cpp_cfg = $(CPP) $(cpp_flags) -x c -o $@ $< |
Troy Kisky | 71a988a | 2013-01-18 16:14:24 +0000 | [diff] [blame] | 95 | |
Trent Piepho | f916757 | 2018-04-06 17:11:27 -0700 | [diff] [blame] | 96 | # mkimage source config file |
| 97 | IMX_CONFIG = $(CONFIG_IMX_CONFIG:"%"=%) |
Troy Kisky | 71a988a | 2013-01-18 16:14:24 +0000 | [diff] [blame] | 98 | |
Trent Piepho | f916757 | 2018-04-06 17:11:27 -0700 | [diff] [blame] | 99 | # How to create a cpp processed config file, they all use the same source |
| 100 | %.cfgout: $(IMX_CONFIG) FORCE |
Masahiro Yamada | 4e0c8ab | 2014-02-24 11:12:20 +0900 | [diff] [blame] | 101 | $(Q)mkdir -p $(dir $@) |
| 102 | $(call if_changed_dep,cpp_cfg) |
Troy Kisky | 71a988a | 2013-01-18 16:14:24 +0000 | [diff] [blame] | 103 | |
Peng Fan | 0e5c8ce | 2018-10-16 04:50:35 +0000 | [diff] [blame] | 104 | ifeq ($(CONFIG_ARCH_IMX8), y) |
Peng Fan | d796115 | 2018-10-25 08:32:40 +0000 | [diff] [blame] | 105 | CNTR_DEPFILES := $(srctree)/tools/imx_cntr_image.sh |
| 106 | IMAGE_TYPE := imx8image |
Peng Fan | 4ac94bfa | 2018-11-05 10:01:37 +0000 | [diff] [blame] | 107 | DEPFILE_EXISTS := $(shell $(CPP) $(cpp_flags) -x c -o u-boot-dtb.cfgout $(srctree)/$(IMX_CONFIG); if [ -f u-boot-dtb.cfgout ]; then $(CNTR_DEPFILES) u-boot-dtb.cfgout; echo $$?; fi) |
Peng Fan | d796115 | 2018-10-25 08:32:40 +0000 | [diff] [blame] | 108 | else |
| 109 | IMAGE_TYPE := imximage |
| 110 | DEPFILE_EXISTS := 0 |
Peng Fan | 0e5c8ce | 2018-10-16 04:50:35 +0000 | [diff] [blame] | 111 | endif |
| 112 | |
| 113 | MKIMAGEFLAGS_u-boot.imx = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) \ |
| 114 | -T $(IMAGE_TYPE) -e $(CONFIG_SYS_TEXT_BASE) |
Sven Ebenfeld | 1f6a664 | 2016-11-06 16:37:58 +0100 | [diff] [blame] | 115 | u-boot.imx: MKIMAGEOUTPUT = u-boot.imx.log |
Masahiro Yamada | 4e0c8ab | 2014-02-24 11:12:20 +0900 | [diff] [blame] | 116 | |
Trent Piepho | f916757 | 2018-04-06 17:11:27 -0700 | [diff] [blame] | 117 | u-boot.imx: u-boot.bin u-boot.cfgout $(PLUGIN).bin FORCE |
Masahiro Yamada | 4e0c8ab | 2014-02-24 11:12:20 +0900 | [diff] [blame] | 118 | $(call if_changed,mkimage) |
Marcel Ziswiler | 43e6f94 | 2018-11-09 15:31:17 +0100 | [diff] [blame] | 119 | $(BOARD_SIZE_CHECK) |
Masahiro Yamada | 4e0c8ab | 2014-02-24 11:12:20 +0900 | [diff] [blame] | 120 | |
Stefano Babic | e64348f | 2014-03-31 09:50:35 +0200 | [diff] [blame] | 121 | ifeq ($(CONFIG_OF_SEPARATE),y) |
Peng Fan | 0e5c8ce | 2018-10-16 04:50:35 +0000 | [diff] [blame] | 122 | MKIMAGEFLAGS_u-boot-dtb.imx = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) \ |
| 123 | -T $(IMAGE_TYPE) -e $(CONFIG_SYS_TEXT_BASE) |
Sven Ebenfeld | 1f6a664 | 2016-11-06 16:37:58 +0100 | [diff] [blame] | 124 | u-boot-dtb.imx: MKIMAGEOUTPUT = u-boot-dtb.imx.log |
Stefano Babic | e64348f | 2014-03-31 09:50:35 +0200 | [diff] [blame] | 125 | |
Trent Piepho | f916757 | 2018-04-06 17:11:27 -0700 | [diff] [blame] | 126 | u-boot-dtb.imx: u-boot-dtb.bin u-boot-dtb.cfgout $(PLUGIN).bin FORCE |
Peng Fan | d796115 | 2018-10-25 08:32:40 +0000 | [diff] [blame] | 127 | ifeq ($(DEPFILE_EXISTS),0) |
Stefano Babic | e64348f | 2014-03-31 09:50:35 +0200 | [diff] [blame] | 128 | $(call if_changed,mkimage) |
| 129 | endif |
Peng Fan | d796115 | 2018-10-25 08:32:40 +0000 | [diff] [blame] | 130 | endif |
Stefano Babic | e64348f | 2014-03-31 09:50:35 +0200 | [diff] [blame] | 131 | |
Peng Fan | 0e5c8ce | 2018-10-16 04:50:35 +0000 | [diff] [blame] | 132 | MKIMAGEFLAGS_SPL = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) \ |
| 133 | -T $(IMAGE_TYPE) -e $(CONFIG_SPL_TEXT_BASE) |
Sven Ebenfeld | 1f6a664 | 2016-11-06 16:37:58 +0100 | [diff] [blame] | 134 | SPL: MKIMAGEOUTPUT = SPL.log |
| 135 | |
Trent Piepho | f916757 | 2018-04-06 17:11:27 -0700 | [diff] [blame] | 136 | SPL: spl/u-boot-spl.bin spl/u-boot-spl.cfgout $(PLUGIN).bin FORCE |
Masahiro Yamada | 4e0c8ab | 2014-02-24 11:12:20 +0900 | [diff] [blame] | 137 | $(call if_changed,mkimage) |
| 138 | |
| 139 | MKIMAGEFLAGS_u-boot.uim = -A arm -O U-Boot -a $(CONFIG_SYS_TEXT_BASE) \ |
Tom Rini | f1ab00f | 2016-05-02 18:36:07 -0400 | [diff] [blame] | 140 | -e $(CONFIG_SYS_TEXT_BASE) -C none -T firmware |
Masahiro Yamada | 4e0c8ab | 2014-02-24 11:12:20 +0900 | [diff] [blame] | 141 | |
| 142 | u-boot.uim: u-boot.bin FORCE |
| 143 | $(call if_changed,mkimage) |
| 144 | |
| 145 | OBJCOPYFLAGS += -I binary -O binary --pad-to=$(CONFIG_SPL_PAD_TO) |
| 146 | append = cat $(filter-out $< $(PHONY), $^) >> $@ |
| 147 | |
| 148 | quiet_cmd_pad_cat = CAT $@ |
| 149 | cmd_pad_cat = $(cmd_objcopy) && $(append) || rm -f $@ |
| 150 | |
| 151 | u-boot-with-spl.imx: SPL u-boot.uim FORCE |
| 152 | $(call if_changed,pad_cat) |
| 153 | |
| 154 | u-boot-with-nand-spl.imx: spl/u-boot-nand-spl.imx u-boot.uim FORCE |
| 155 | $(call if_changed,pad_cat) |
| 156 | |
| 157 | quiet_cmd_u-boot-nand-spl_imx = GEN $@ |
Marek Vasut | 0297bd1 | 2016-04-05 10:54:06 +0200 | [diff] [blame] | 158 | cmd_u-boot-nand-spl_imx = (printf '\000\000\000\000\106\103\102\040\001' && \ |
Masahiro Yamada | 4e0c8ab | 2014-02-24 11:12:20 +0900 | [diff] [blame] | 159 | dd bs=1015 count=1 if=/dev/zero 2>/dev/null) | cat - $< > $@ |
| 160 | |
| 161 | spl/u-boot-nand-spl.imx: SPL FORCE |
| 162 | $(call if_changed,u-boot-nand-spl_imx) |
| 163 | |
Trent Piepho | f916757 | 2018-04-06 17:11:27 -0700 | [diff] [blame] | 164 | targets += $(addprefix ../../../,SPL spl/u-boot-spl.cfgout u-boot-dtb.cfgout u-boot.cfgout u-boot.uim spl/u-boot-nand-spl.imx) |
Stefano Babic | 552a848 | 2017-06-29 10:16:06 +0200 | [diff] [blame] | 165 | |
Peng Fan | de27466 | 2018-01-10 13:20:23 +0800 | [diff] [blame] | 166 | obj-$(CONFIG_ARM64) += sip.o |
| 167 | |
Stefano Babic | 552a848 | 2017-06-29 10:16:06 +0200 | [diff] [blame] | 168 | obj-$(CONFIG_MX5) += mx5/ |
| 169 | obj-$(CONFIG_MX6) += mx6/ |
| 170 | obj-$(CONFIG_MX7) += mx7/ |
| 171 | obj-$(CONFIG_ARCH_MX7ULP) += mx7ulp/ |
Peng Fan | cd357ad | 2018-11-20 10:19:25 +0000 | [diff] [blame^] | 172 | obj-$(CONFIG_IMX8M) += imx8m/ |
Peng Fan | b2b8b9b | 2018-10-18 14:28:08 +0200 | [diff] [blame] | 173 | obj-$(CONFIG_ARCH_IMX8) += imx8/ |