aboutsummaryrefslogtreecommitdiff
path: root/src/cpu/allwinner/a10/Makefile.inc
blob: 48f31106056cfd1800125d2e9c87fe487f484ca3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
bootblock-y	+= pinmux.c
bootblock-y	+= bootblock_media.c
bootblock-$(CONFIG_BOOTBLOCK_CONSOLE) += uart.c
bootblock-$(CONFIG_BOOTBLOCK_CONSOLE) += uart_console.c

romstage-y	+= uart.c
romstage-y	+= uart_console.c
romstage-y	+= bootblock_media.c

ramstage-y	+= uart.c
ramstage-y	+= uart_console.c
ramstage-y	+= timer.c
ramstage-y	+= monotonic_timer.c
ramstage-y	+= bootblock_media.c


real-target: $(obj)/BOOT0

get_bootblock_size= \
	$(eval bb_s=$(shell $(CBFSTOOL) $(1) print | grep bootblocksize | \
					sed 's/[^0-9 ]//g')) \
	$(shell echo $$(($(word 2, $(strip $(bb_s))))))

# The boot ROM in the SoC will start loading code if a special boot0 header is
# found (at an offset of 8KiB in either NAND or SD), and the checksum is
# correct. this header is normally added by the 'mxsunxiboot' tool. The file
# passed to mksunxiboot should only include the bootblock due to size
# limitations.
# FIXME: Figure out how to safely integrate in coreboot.rom. For now, only copy
# the first 15 KiB of coreboot.rom (This will not collide with stack)
$(obj)/BOOT0: $(obj)/coreboot.rom
	@printf "    BOOT0      $(subst $(obj)/,,$(^))\n"
	touch $@
	dd if=$^ of=$^.tmp bs=1024 count=15
	-mksunxiboot $^.tmp $@