at91: reorganize at91 subtargets
[oweals/openwrt.git] / package / boot / at91bootstrap / Makefile
1 #
2 # Copyright (C) 2016 Microchip Technology Inc.
3 #     <Sandeepsheriker.mallikarjun@microchip.com>
4 #
5 # This is free software, licensed under the GNU General Public License v2.
6 # See /LICENSE for more information.
7 #
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=at91bootstrap
12 PKG_VERSION:=v3.8.10
13 PKG_RELEASE:=
14
15 PKG_SOURCE_PROTO:=git
16 PKG_SOURCE_URL:=https://github.com/linux4sam/at91bootstrap.git
17 PKG_SOURCE_VERSION:=04efa5500d60a0211d14b6ee60df7ce0a828704d
18
19 PKG_BUILD_DIR = \
20     $(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_NAME)-$(PKG_VERSION)
21
22 include at91bootstrap.mk
23 include $(INCLUDE_DIR)/package.mk
24
25 define AT91Bootstrap/Default
26   BUILD_TARGET:=at91
27   HIDDEN:=1
28   AT91BOOTSTRAP_IMAGE:=at91bootstrap.bin
29 endef
30
31 define AT91Bootstrap/sama5d2_xplaineddf_uboot
32   TITLE:=AT91Bootstrap for SAMA5D2 Xplained board (SPI Flash)
33   BUILD_SUBTARGET:=sama5d2
34   BUILD_DEVICES:=at91-sama5d2_xplained
35 endef
36
37 define AT91Bootstrap/sama5d2_xplaineddf_qspi_uboot
38   TITLE:=AT91Bootstrap for SAMA5D2 Xplained board (QSPI Flash)
39   BUILD_SUBTARGET:=sama5d2
40   BUILD_DEVICES:=at91-sama5d2_xplained
41 endef
42
43 define AT91Bootstrap/sama5d2_xplainedsd_uboot
44   TITLE:=AT91Bootstrap for SAMA5D2 Xplained board (SDcard/EMMC)
45   BUILD_SUBTARGET:=sama5d2
46   BUILD_DEVICES:=at91-sama5d2_xplained
47 endef
48
49 define AT91Bootstrap/sama5d3_xplainednf_uboot
50   TITLE:=AT91Bootstrap for SAMA5D3 Xplained board (Nand Flash)
51   BUILD_SUBTARGET:=sama5d3
52   BUILD_DEVICES:=at91-sama5d3_xplained
53 endef
54
55 define AT91Bootstrap/sama5d3_xplainedsd_uboot
56   TITLE:=AT91Bootstrap for SAMA5D3 Xplained board (SDcard)
57   BUILD_SUBTARGET:=sama5d3
58   BUILD_DEVICES:=at91-sama5d3_xplained
59 endef
60
61 define AT91Bootstrap/sama5d4_xplainednf_uboot_secure
62   TITLE:=AT91Bootstrap for SAMA5D4 Xplained board (Nand Flash)
63   BUILD_SUBTARGET:=sama5d4
64   BUILD_DEVICES:=at91-sama5d4_xplained
65 endef
66
67 define AT91Bootstrap/sama5d4_xplaineddf_uboot_secure
68   TITLE:=AT91Bootstrap for SAMA5D4 Xplained board (SPI Flash)
69   BUILD_SUBTARGET:=sama5d4
70   BUILD_DEVICES:=at91-sama5d4_xplained
71 endef
72
73 define AT91Bootstrap/sama5d4_xplainedsd_uboot_secure
74   TITLE:=AT91Bootstrap for SAMA5D4 Xplained board (SDcard)
75   BUILD_SUBTARGET:=sama5d4
76   BUILD_DEVICES:=at91-sama5d4_xplained
77 endef
78
79 define AT91Bootstrap/sama5d27_som1_eksd_uboot
80   TITLE:=AT91Bootstrap for SAMA5D27 SOM1 Ek (SDcard0)
81   BUILD_SUBTARGET:=sama5d2
82   BUILD_DEVICES:=at91-sama5d27_som1_ek
83 endef
84
85 define AT91Bootstrap/sama5d27_som1_eksd1_uboot
86   TITLE:=AT91Bootstrap for SAMA5D27 SOM1 Ek (SDcard1)
87   BUILD_SUBTARGET:=sama5d2
88   BUILD_DEVICES:=at91-sama5d27_som1_ek
89 endef
90
91 define AT91Bootstrap/sama5d27_som1_ekqspi_uboot
92   TITLE:=AT91Bootstrap for SAMA5D27 SOM1 Ek (QSPI Flash)
93   BUILD_SUBTARGET:=sama5d2
94   BUILD_DEVICES:=at91-sama5d27_som1_ek
95 endef
96
97 AT91BOOTSTRAP_TARGETS := \
98     sama5d2_xplaineddf_uboot \
99     sama5d2_xplaineddf_qspi_uboot \
100     sama5d2_xplainedsd_uboot \
101     sama5d3_xplainednf_uboot \
102     sama5d3_xplainedsd_uboot \
103     sama5d4_xplainednf_uboot_secure \
104     sama5d4_xplaineddf_uboot_secure \
105     sama5d4_xplainedsd_uboot_secure \
106         sama5d27_som1_eksd_uboot \
107         sama5d27_som1_ekqspi_uboot
108
109 define Build/Compile
110         +$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \
111         CROSS_COMPILE=$(TARGET_CROSS)
112 endef
113
114 $(eval $(call BuildPackage/AT91Bootstrap))