d644f89266d1d851b47caa776d67a9aa41f8e6e1
[openwrt/openwrt.git] / target / linux / at91 / image / sama5.mk
1
2 define Device/default-nand
3 BLOCKSIZE := 128k
4 PAGESIZE := 2048
5 SUBPAGESIZE := 2048
6 MKUBIFS_OPTS := -m $$(PAGESIZE) -e 124KiB -c 2048
7 endef
8
9 define Build/at91-sdcard
10 $(if $(findstring ext4,$@), \
11 rm -f $@.boot
12 mkfs.fat -C $@.boot $(FAT32_BLOCKS)
13
14 mcopy -i $@.boot \
15 $(KDIR)/$(DEVICE_NAME)-fit-zImage.itb \
16 ::$(DEVICE_NAME)-fit.itb
17
18 $(if $(findstring sama5d27-som1-ek,$@), \
19 mcopy -i $@.boot \
20 $(BIN_DIR)/u-boot-$(DEVICE_DTS:at91-%=%)_mmc1/u-boot.bin \
21 ::u-boot.bin
22 mcopy -i $@.boot \
23 $(BIN_DIR)/at91bootstrap-$(DEVICE_DTS:at91-%=%)sd1_uboot/at91bootstrap.bin \
24 ::BOOT.bin,
25 mcopy -i $@.boot \
26 $(BIN_DIR)/u-boot-$(DEVICE_DTS:at91-%=%)_mmc/u-boot.bin \
27 ::u-boot.bin
28 $(if $(findstring sama5d4-xplained,$@), \
29 mcopy -i $@.boot \
30 $(BIN_DIR)/at91bootstrap-$(DEVICE_DTS:at91-%=%)sd_uboot_secure/at91bootstrap.bin \
31 ::BOOT.bin,
32 mcopy -i $@.boot \
33 $(BIN_DIR)/at91bootstrap-$(DEVICE_DTS:at91-%=%)sd_uboot/at91bootstrap.bin \
34 ::BOOT.bin))
35
36 $(CP) uboot-env.txt $@-uboot-env.txt
37 sed -i '2d;3d' $@-uboot-env.txt
38 sed -i '2i board='"$(DEVICE_NAME)"'' $@-uboot-env.txt
39 sed -i '3i board_name='"$(firstword $(SUPPORTED_DEVICES))"'' $@-uboot-env.txt
40
41 mkenvimage -s 0x4000 -o $@-uboot.env $@-uboot-env.txt
42
43 mcopy -i $@.boot $@-uboot.env ::uboot.env
44
45 ./gen_at91_sdcard_img.sh \
46 $@.img \
47 $@.boot \
48 $(KDIR)/root.ext4 \
49 $(AT91_SD_BOOT_PARTSIZE) \
50 $(CONFIG_TARGET_ROOTFS_PARTSIZE)
51
52 gzip -nc9 $@.img > $@
53
54 rm -f $@.img $@.boot $@-uboot.env $@-uboot-env.txt)
55 endef
56
57 define Device/microchip_sama5d2-xplained
58 $(Device/evaluation-dtb)
59 DEVICE_VENDOR := Microchip
60 DEVICE_MODEL := SAMA5D2 Xplained
61 DEVICE_DTS := at91-sama5d2_xplained
62 SUPPORTED_DEVICES := atmel,sama5d2-xplained
63 KERNEL_SIZE := 6144k
64 $(Device/evaluation-sdimage)
65 endef
66 TARGET_DEVICES += microchip_sama5d2-xplained
67
68 define Device/microchip_sama5d27-som1-ek
69 $(Device/evaluation-dtb)
70 DEVICE_VENDOR := Microchip
71 DEVICE_MODEL := SAMA5D27 SOM1 Ek
72 DEVICE_DTS := at91-sama5d27_som1_ek
73 SUPPORTED_DEVICES := atmel,sama5d27-som1-ek
74 KERNEL_SIZE := 6144k
75 $(Device/evaluation-sdimage)
76 endef
77 TARGET_DEVICES += microchip_sama5d27-som1-ek
78
79 define Device/microchip_sama5d2-ptc-ek
80 $(Device/evaluation-dtb)
81 DEVICE_VENDOR := Microchip
82 DEVICE_MODEL := SAMA5D2 PTC Ek
83 DEVICE_DTS := at91-sama5d2_ptc_ek
84 SUPPORTED_DEVICES := atmel,sama5d2-ptc_ek
85 KERNEL_SIZE := 6144k
86 $(Device/evaluation-sdimage)
87 endef
88 TARGET_DEVICES += microchip_sama5d2-ptc-ek
89
90 define Device/microchip_sama5d3-xplained
91 $(Device/evaluation-dtb)
92 DEVICE_VENDOR := Microchip
93 DEVICE_MODEL := SAMA5D3 Xplained
94 DEVICE_DTS := at91-sama5d3_xplained
95 SUPPORTED_DEVICES := atmel,sama5d3-xplained
96 KERNEL_SIZE := 6144k
97 $(Device/evaluation-sdimage)
98 endef
99 TARGET_DEVICES += microchip_sama5d3-xplained
100
101 ifeq ($(strip $(CONFIG_EXTERNAL_KERNEL_TREE)),"")
102 ifeq ($(strip $(CONFIG_KERNEL_GIT_CLONE_URI)),"")
103 define Device/laird_wb50n
104 $(Device/evaluation-fit)
105 DEVICE_VENDOR := Laird
106 DEVICE_MODEL := WB50N
107 DEVICE_PACKAGES := \
108 kmod-mmc-at91 kmod-ath6kl-sdio ath6k-firmware \
109 kmod-usb-storage kmod-fs-vfat kmod-fs-msdos \
110 kmod-leds-gpio
111 BLOCKSIZE := 128k
112 PAGESIZE := 2048
113 SUBPAGESIZE := 2048
114 MKUBIFS_OPTS := -m $$(PAGESIZE) -e 124KiB -c 955
115 endef
116 TARGET_DEVICES += laird_wb50n
117 endif
118 endif
119
120 define Device/microchip_sama5d4-xplained
121 $(Device/evaluation-dtb)
122 DEVICE_VENDOR := Microchip
123 DEVICE_MODEL := SAMA5D4 Xplained
124 DEVICE_DTS := at91-sama5d4_xplained
125 SUPPORTED_DEVICES := atmel,sama5d4-xplained
126 KERNEL_SIZE := 6144k
127 BLOCKSIZE := 256k
128 PAGESIZE := 4096
129 SUBPAGESIZE := 2048
130 MKUBIFS_OPTS := -m $$(PAGESIZE) -e 248KiB -c 2082
131 $(Device/evaluation-sdimage)
132 endef
133 TARGET_DEVICES += microchip_sama5d4-xplained