]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/imx-common/Makefile
Merge branch 'master' of git://git.denx.de/u-boot-usb
[karo-tx-uboot.git] / arch / arm / imx-common / Makefile
1 #
2 # (C) Copyright 2000-2006
3 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 #
5 # (C) Copyright 2011 Freescale Semiconductor, Inc.
6 #
7 # SPDX-License-Identifier:      GPL-2.0+
8 #
9
10 ifeq ($(SOC),$(filter $(SOC),mx25 mx35 mx5 mx6 vf610))
11 obj-y   = iomux-v3.o
12 endif
13 ifeq ($(SOC),$(filter $(SOC),mx5 mx6))
14 obj-y   += timer.o cpu.o speed.o
15 obj-$(CONFIG_SYS_I2C_MXC) += i2c-mxv7.o
16 endif
17 ifeq ($(SOC),$(filter $(SOC),mx6 mxs))
18 obj-y   += misc.o
19 endif
20 ifeq ($(SOC),$(filter $(SOC),mx6))
21 obj-$(CONFIG_CMD_SATA) += sata.o
22 obj-$(CONFIG_IMX_VIDEO_SKIP) += video.o
23 endif
24 obj-$(CONFIG_CMD_BMODE) += cmd_bmode.o
25 obj-$(CONFIG_CMD_HDMIDETECT) += cmd_hdmidet.o
26
27 quiet_cmd_cpp_cfg = CFGS    $@
28       cmd_cpp_cfg = $(CPP) $(cpp_flags) -x c -o $@ $<
29
30 IMX_CONFIG = $(CONFIG_IMX_CONFIG:"%"=%).cfgtmp
31
32 $(IMX_CONFIG): %.cfgtmp: % FORCE
33         $(Q)mkdir -p $(dir $@)
34         $(call if_changed_dep,cpp_cfg)
35
36 MKIMAGEFLAGS_u-boot.imx = -n $(filter-out $< $(PHONY),$^) -T imximage \
37         -e $(CONFIG_SYS_TEXT_BASE)
38
39 u-boot.imx: u-boot.bin $(IMX_CONFIG) FORCE
40         $(call if_changed,mkimage)
41
42 ifeq ($(CONFIG_OF_SEPARATE),y)
43 MKIMAGEFLAGS_u-boot-dtb.imx = -n $(filter-out $< $(PHONY),$^) -T imximage \
44         -e $(CONFIG_SYS_TEXT_BASE)
45
46 u-boot-dtb.imx: u-boot-dtb.bin $(IMX_CONFIG) FORCE
47         $(call if_changed,mkimage)
48 endif
49
50 MKIMAGEFLAGS_SPL = -n $(filter-out $< $(PHONY),$^) -T imximage \
51         -e $(CONFIG_SPL_TEXT_BASE)
52
53 SPL: spl/u-boot-spl.bin $(IMX_CONFIG) FORCE
54         $(call if_changed,mkimage)
55
56 MKIMAGEFLAGS_u-boot.uim = -A arm -O U-Boot -a $(CONFIG_SYS_TEXT_BASE) \
57                 -e $(CONFIG_SYS_TEXT_BASE) -C none
58
59 u-boot.uim: u-boot.bin FORCE
60         $(call if_changed,mkimage)
61
62 OBJCOPYFLAGS += -I binary -O binary --pad-to=$(CONFIG_SPL_PAD_TO)
63 append = cat $(filter-out $< $(PHONY), $^) >> $@
64
65 quiet_cmd_pad_cat = CAT     $@
66 cmd_pad_cat = $(cmd_objcopy) && $(append) || rm -f $@
67
68 u-boot-with-spl.imx: SPL u-boot.uim FORCE
69         $(call if_changed,pad_cat)
70
71 u-boot-with-nand-spl.imx: spl/u-boot-nand-spl.imx u-boot.uim FORCE
72         $(call if_changed,pad_cat)
73
74 quiet_cmd_u-boot-nand-spl_imx = GEN     $@
75 cmd_u-boot-nand-spl_imx = (echo -ne '\x00\x00\x00\x00\x46\x43\x42\x20\x01' && \
76         dd bs=1015 count=1 if=/dev/zero 2>/dev/null) | cat - $< > $@
77
78 spl/u-boot-nand-spl.imx: SPL FORCE
79         $(call if_changed,u-boot-nand-spl_imx)
80
81 targets += $(addprefix ../../../,$(IMX_CONFIG) SPL u-boot.uim spl/u-boot-nand-spl.imx)