blob: 3206bce7220e86876d3356feb3021b4c20dd687d [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0+
Nobuhiro Iwamatsu4fb44e22012-06-13 16:29:47 +09002#
3# (C) Copyright 2000-2006
4# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
Nobuhiro Iwamatsu4fb44e22012-06-13 16:29:47 +09005
Nobuhiro Iwamatsu941b5a42013-11-21 17:06:44 +09006obj-y = cpu_info.o
Masahiro Yamada4e1aa842013-10-17 17:34:48 +09007obj-y += emac.o
Nobuhiro Iwamatsu4fb44e22012-06-13 16:29:47 +09008
Masahiro Yamada4e1aa842013-10-17 17:34:48 +09009obj-$(CONFIG_DISPLAY_BOARDINFO) += board.o
10obj-$(CONFIG_GLOBAL_TIMER) += timer.o
Nobuhiro Iwamatsubadbb632015-10-09 16:40:09 +090011obj-$(CONFIG_TMU_TIMER) += ../../sh/lib/time.o
Marek Vasut232a1a52018-05-02 12:09:23 +020012obj-$(CONFIG_SH73A0) += lowlevel_init.o cpu_info-sh73a0.o pfc-sh73a0.o
13obj-$(CONFIG_R8A7740) += lowlevel_init.o cpu_info-r8a7740.o pfc-r8a7740.o
14obj-$(CONFIG_RCAR_GEN2) += lowlevel_init_ca15.o cpu_info-rcar.o
15obj-$(CONFIG_RCAR_GEN3) += lowlevel_init_gen3.o cpu_info-rcar.o memmap-gen3.o
Marek Vasut56023302018-10-03 12:44:13 +020016
17OBJCOPYFLAGS_u-boot-spl.srec := -O srec
18quiet_cmd_objcopy = OBJCOPY $@
19cmd_objcopy = $(OBJCOPY) --gap-fill=0x00 $(OBJCOPYFLAGS) \
20 $(OBJCOPYFLAGS_$(@F)) $< $@
21
22spl/u-boot-spl.srec: spl/u-boot-spl FORCE
23 $(call if_changed,objcopy)
24
25ifneq ($(CONFIG_R8A77990)$(CONFIG_R8A77995),)
26#
27# The first 6 generate statements generate the R-Car Gen3 SCIF loader header.
28# The subsequent generate statements represent the following chunk of assembler
29# code, which copies the loaded data from 0xe6304030 to 0xe6318000. This is to
30# work around a limitation of the D3/E3 BootROM, which does not permit loading
31# to 0xe6318000 directly.
32#
33# mov x0, #0xe6000000
34# orr x0, x0, #0x00300000
35# orr x1, x0, #0x00004000
36# orr x1, x1, #0x00000030
37#
38# orr x2, x0, #0x00018000
39# mov x0, x2
40# mov x3, #0x7000
41#1: ldp x4, x5, [x1], #16
42#
43# stp x4, x5, [x2], #16
44# subs x3, x3, #16
45# b.ge 1b
46# br x0
47#
48quiet_cmd_srec_cat = SRECCAT $@
49 cmd_srec_cat = srec_cat -output $@ -M 8 $< -M 8 \
50 -offset -0x13fd0 \
51 -Output_Block_Size 16 \
52 -generate 0xe6300400 0xe6300404 -l-e-constant 0x0 4 \
53 -generate 0xe630048c 0xe6300490 -l-e-constant 0x0 4 \
54 -generate 0xe63005d4 0xe63005d8 -l-e-constant 0xe6304000 4 \
55 -generate 0xe63006e4 0xe63006e8 -l-e-constant $2 4 \
56 -generate 0xe6301154 0xe6301158 -l-e-constant 0xe6304000 4 \
57 -generate 0xe6301264 0xe6301268 -l-e-constant $2 4 \
58 -generate 0xe6304000 0xe6304004 -l-e-constant 0xd2bcc000 4 \
59 -generate 0xe6304004 0xe6304008 -l-e-constant 0xb26c0400 4 \
60 -generate 0xe6304008 0xe630400c -l-e-constant 0xb2720001 4 \
61 -generate 0xe630400c 0xe6304010 -l-e-constant 0xb27c0421 4 \
62 -generate 0xe6304010 0xe6304014 -l-e-constant 0xb2710402 4 \
63 -generate 0xe6304014 0xe6304018 -l-e-constant 0xaa0203e0 4 \
64 -generate 0xe6304018 0xe630401c -l-e-constant 0xd28e0003 4 \
65 -generate 0xe630401c 0xe6304020 -l-e-constant 0xa8c11424 4 \
66 -generate 0xe6304020 0xe6304024 -l-e-constant 0xa8811444 4 \
67 -generate 0xe6304024 0xe6304028 -l-e-constant 0xf1004063 4 \
68 -generate 0xe6304028 0xe630402c -l-e-constant 0x54ffffaa 4 \
69 -generate 0xe630402c 0xe6304030 -l-e-constant 0xd61f0000 4
70else
71quiet_cmd_srec_cat = SRECCAT $@
72 cmd_srec_cat = srec_cat -output $@ -M 8 $< -M 8 \
73 -Output_Block_Size 16 \
74 -generate 0xe6300400 0xe6300404 -l-e-constant 0x0 4 \
75 -generate 0xe630048c 0xe6300490 -l-e-constant 0x0 4 \
76 -generate 0xe63005d4 0xe63005d8 -l-e-constant $(CONFIG_SPL_TEXT_BASE) 4 \
77 -generate 0xe63006e4 0xe63006e8 -l-e-constant $2 4 \
78 -generate 0xe6301154 0xe6301158 -l-e-constant $(CONFIG_SPL_TEXT_BASE) 4 \
79 -generate 0xe6301264 0xe6301268 -l-e-constant $2 4
80endif
81
82spl/u-boot-spl.scif: spl/u-boot-spl.srec spl/u-boot-spl.bin
83 $(call cmd,srec_cat,$(shell wc -c spl/u-boot-spl.bin | awk '{printf("0x%08x\n",$$1)}'))
84
85# if srec_cat is present build u-boot-spl.scif by default
86has_srec_cat = $(call try-run,srec_cat -VERSion,y,n)
Simon Glasse6385c72020-07-19 13:56:01 -060087INPUTS-$(has_srec_cat) += u-boot-spl.scif
Marek Vasut56023302018-10-03 12:44:13 +020088CLEAN_FILES += u-boot-spl.scif