blob: 8613f5ea2128d8a649c3603892fd5b8db242342b [file] [log] [blame]
Jorge Ramirez-Ortizbf084dc2018-09-23 09:36:13 +02001#
Biju Das4ec2d8f2020-12-16 08:57:59 +00002# Copyright (c) 2018-2020, Renesas Electronics Corporation. All rights reserved.
Jorge Ramirez-Ortizbf084dc2018-09-23 09:36:13 +02003#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6
Biju Das4ec2d8f2020-12-16 08:57:59 +00007include plat/renesas/common/common.mk
Jorge Ramirez-Ortizbf084dc2018-09-23 09:36:13 +02008
9ifndef LSI
10 $(error "Error: Unknown LSI. Please use LSI=<LSI name> to specify the LSI")
11else
12 ifeq (${LSI},AUTO)
13 RCAR_LSI:=${RCAR_AUTO}
14 else ifeq (${LSI},H3)
15 RCAR_LSI:=${RCAR_H3}
16 ifndef LSI_CUT
17 # enable compatible function.
18 RCAR_LSI_CUT_COMPAT := 1
19 $(eval $(call add_define,RCAR_LSI_CUT_COMPAT))
20 else
21 # disable compatible function.
22 ifeq (${LSI_CUT},10)
23 RCAR_LSI_CUT:=0
24 else ifeq (${LSI_CUT},11)
25 RCAR_LSI_CUT:=1
26 else ifeq (${LSI_CUT},20)
27 RCAR_LSI_CUT:=10
28 else ifeq (${LSI_CUT},30)
29 RCAR_LSI_CUT:=20
30 else
31 $(error "Error: ${LSI_CUT} is not supported.")
32 endif
33 $(eval $(call add_define,RCAR_LSI_CUT))
34 endif
35 else ifeq (${LSI},H3N)
36 RCAR_LSI:=${RCAR_H3N}
37 ifndef LSI_CUT
38 # enable compatible function.
39 RCAR_LSI_CUT_COMPAT := 1
40 $(eval $(call add_define,RCAR_LSI_CUT_COMPAT))
41 else
42 # disable compatible function.
43 ifeq (${LSI_CUT},30)
44 RCAR_LSI_CUT:=20
45 else
46 $(error "Error: ${LSI_CUT} is not supported.")
47 endif
48 $(eval $(call add_define,RCAR_LSI_CUT))
49 endif
50 else ifeq (${LSI},M3)
51 RCAR_LSI:=${RCAR_M3}
52 ifndef LSI_CUT
53 # enable compatible function.
54 RCAR_LSI_CUT_COMPAT := 1
55 $(eval $(call add_define,RCAR_LSI_CUT_COMPAT))
56 else
57 # disable compatible function.
58 ifeq (${LSI_CUT},10)
59 RCAR_LSI_CUT:=0
60 else ifeq (${LSI_CUT},11)
61 RCAR_LSI_CUT:=1
Marek Vasut3af20052019-02-25 14:57:08 +010062 else ifeq (${LSI_CUT},13)
63 RCAR_LSI_CUT:=3
64 else ifeq (${LSI_CUT},30)
65 RCAR_LSI_CUT:=20
Jorge Ramirez-Ortizbf084dc2018-09-23 09:36:13 +020066 else
67 $(error "Error: ${LSI_CUT} is not supported.")
68 endif
69 $(eval $(call add_define,RCAR_LSI_CUT))
70 endif
71 else ifeq (${LSI},M3N)
72 RCAR_LSI:=${RCAR_M3N}
73 ifndef LSI_CUT
74 # enable compatible function.
75 RCAR_LSI_CUT_COMPAT := 1
76 $(eval $(call add_define,RCAR_LSI_CUT_COMPAT))
77 else
78 # disable compatible function.
79 ifeq (${LSI_CUT},10)
80 RCAR_LSI_CUT:=0
81 else ifeq (${LSI_CUT},11)
82 RCAR_LSI_CUT:=1
83 else
84 $(error "Error: ${LSI_CUT} is not supported.")
85 endif
86 $(eval $(call add_define,RCAR_LSI_CUT))
87 endif
88 else ifeq (${LSI},E3)
89 RCAR_LSI:=${RCAR_E3}
90 ifndef LSI_CUT
91 # enable compatible function.
92 RCAR_LSI_CUT_COMPAT := 1
93 $(eval $(call add_define,RCAR_LSI_CUT_COMPAT))
94 else
95 # disable compatible function.
96 ifeq (${LSI_CUT},10)
97 RCAR_LSI_CUT:=0
Marek Vasut3af20052019-02-25 14:57:08 +010098 else ifeq (${LSI_CUT},11)
99 RCAR_LSI_CUT:=1
Jorge Ramirez-Ortizbf084dc2018-09-23 09:36:13 +0200100 else
101 $(error "Error: ${LSI_CUT} is not supported.")
102 endif
103 $(eval $(call add_define,RCAR_LSI_CUT))
104 endif
Marek Vasut4ae342c2019-01-05 13:56:03 +0100105 else ifeq (${LSI},D3)
106 RCAR_LSI:=${RCAR_D3}
107 ifndef LSI_CUT
108 # enable compatible function.
109 RCAR_LSI_CUT_COMPAT := 1
110 $(eval $(call add_define,RCAR_LSI_CUT_COMPAT))
111 else
112 # disable compatible function.
113 ifeq (${LSI_CUT},10)
114 RCAR_LSI_CUT:=0
115 else
116 $(error "Error: ${LSI_CUT} is not supported.")
117 endif
118 $(eval $(call add_define,RCAR_LSI_CUT))
119 endif
Valentine Barshakf2184142018-10-30 02:06:17 +0300120 else ifeq (${LSI},V3M)
121 RCAR_LSI:=${RCAR_V3M}
122 ifndef LSI_CUT
123 # enable compatible function.
124 RCAR_LSI_CUT_COMPAT := 1
125 $(eval $(call add_define,RCAR_LSI_CUT_COMPAT))
126 else
127 # disable compatible function.
128 ifeq (${LSI_CUT},10)
129 RCAR_LSI_CUT:=0
130 endif
131 ifeq (${LSI_CUT},20)
132 RCAR_LSI_CUT:=10
133 endif
134 $(eval $(call add_define,RCAR_LSI_CUT))
135 endif
Jorge Ramirez-Ortizbf084dc2018-09-23 09:36:13 +0200136 else
137 $(error "Error: ${LSI} is not supported.")
138 endif
139 $(eval $(call add_define,RCAR_LSI))
140endif
141
Jorge Ramirez-Ortiz87c04052018-11-19 19:26:56 +0100142# lock RPC HYPERFLASH access by default
143# unlock to repogram the ATF firmware from u-boot
144ifndef RCAR_RPC_HYPERFLASH_LOCKED
145RCAR_RPC_HYPERFLASH_LOCKED := 1
146endif
147$(eval $(call add_define,RCAR_RPC_HYPERFLASH_LOCKED))
148
Jorge Ramirez-Ortizbf084dc2018-09-23 09:36:13 +0200149# Process RCAR_SECURE_BOOT flag
150ifndef RCAR_SECURE_BOOT
151RCAR_SECURE_BOOT := 1
152endif
153$(eval $(call add_define,RCAR_SECURE_BOOT))
154
155# Process RCAR_QOS_TYPE flag
156ifndef RCAR_QOS_TYPE
157RCAR_QOS_TYPE := 0
158endif
159$(eval $(call add_define,RCAR_QOS_TYPE))
160
161# Process RCAR_DRAM_SPLIT flag
162ifndef RCAR_DRAM_SPLIT
163RCAR_DRAM_SPLIT := 0
164endif
165$(eval $(call add_define,RCAR_DRAM_SPLIT))
166
167# Process RCAR_BL33_EXECUTION_EL flag
168ifndef RCAR_BL33_EXECUTION_EL
169RCAR_BL33_EXECUTION_EL := 0
170endif
171$(eval $(call add_define,RCAR_BL33_EXECUTION_EL))
172
173# Process RCAR_AVS_SETTING_ENABLE flag
174ifeq (${RCAR_AVS_SETTING_ENABLE},0)
175AVS_SETTING_ENABLE := 0
176else
177AVS_SETTING_ENABLE := 1
178endif
179$(eval $(call add_define,AVS_SETTING_ENABLE))
180
181# Process RCAR_LOSSY_ENABLE flag
182ifndef RCAR_LOSSY_ENABLE
183RCAR_LOSSY_ENABLE := 0
184endif
185$(eval $(call add_define,RCAR_LOSSY_ENABLE))
186
187# Process LIFEC_DBSC_PROTECT_ENABLE flag
188ifndef LIFEC_DBSC_PROTECT_ENABLE
189LIFEC_DBSC_PROTECT_ENABLE := 1
190endif
191$(eval $(call add_define,LIFEC_DBSC_PROTECT_ENABLE))
192
193# Process PMIC_ROHM_BD9571 flag
194ifndef PMIC_ROHM_BD9571
195PMIC_ROHM_BD9571 := 1
196endif
197$(eval $(call add_define,PMIC_ROHM_BD9571))
198
199# Process PMIC_LEVEL_MODE flag
200ifndef PMIC_LEVEL_MODE
201PMIC_LEVEL_MODE := 1
202endif
203$(eval $(call add_define,PMIC_LEVEL_MODE))
204
205# Process RCAR_GEN3_ULCB flag
206ifndef RCAR_GEN3_ULCB
207RCAR_GEN3_ULCB := 0
208endif
209ifeq (${RCAR_GEN3_ULCB},1)
210 BOARD_DEFAULT := 0x10
211 $(eval $(call add_define,BOARD_DEFAULT))
212endif
213$(eval $(call add_define,RCAR_GEN3_ULCB))
214
215# Process RCAR_REF_INT flag
216ifndef RCAR_REF_INT
217RCAR_REF_INT :=0
218endif
219$(eval $(call add_define,RCAR_REF_INT))
220
221# Process RCAR_REWT_TRAINING flag
222ifndef RCAR_REWT_TRAINING
Toshiyuki Ogasahara040966b2019-03-11 15:03:00 +0900223RCAR_REWT_TRAINING := 1
Jorge Ramirez-Ortizbf084dc2018-09-23 09:36:13 +0200224endif
225$(eval $(call add_define,RCAR_REWT_TRAINING))
226
227# Process RCAR_SYSTEM_SUSPEND flag
228ifndef RCAR_SYSTEM_SUSPEND
229RCAR_SYSTEM_SUSPEND := 1
230endif
231$(eval $(call add_define,RCAR_SYSTEM_SUSPEND))
232
233# SYSTEM_SUSPEND requires power control of PMIC etc.
234# When executing SYSTEM_SUSPEND other than Salvator-X, Salvator-XS and Ebisu,
235# processing equivalent to that implemented in PMIC_ROHM_BD9571 is necessary.
236ifeq (${RCAR_SYSTEM_SUSPEND},1)
237 ifeq (${PMIC_ROHM_BD9571},0)
238 $(error "Error: When you want RCAR_SYSTEM_SUSPEND to be enable, please also set PMIC_ROHM_BD9571 to enable.")
239 endif
240endif
241
242# Process RCAR_DRAM_LPDDR4_MEMCONF flag
243ifndef RCAR_DRAM_LPDDR4_MEMCONF
244RCAR_DRAM_LPDDR4_MEMCONF :=1
245endif
246$(eval $(call add_define,RCAR_DRAM_LPDDR4_MEMCONF))
247
248# Process RCAR_DRAM_DDR3L_MEMCONF flag
249ifndef RCAR_DRAM_DDR3L_MEMCONF
250RCAR_DRAM_DDR3L_MEMCONF :=1
251endif
252$(eval $(call add_define,RCAR_DRAM_DDR3L_MEMCONF))
253
254# Process RCAR_DRAM_DDR3L_MEMDUAL flag
255ifndef RCAR_DRAM_DDR3L_MEMDUAL
256RCAR_DRAM_DDR3L_MEMDUAL :=1
257endif
258$(eval $(call add_define,RCAR_DRAM_DDR3L_MEMDUAL))
259
260# Process RCAR_BL33_ARG0 flag
261ifdef RCAR_BL33_ARG0
262$(eval $(call add_define,RCAR_BL33_ARG0))
263endif
264
265#Process RCAR_BL2_DCACHE flag
266ifndef RCAR_BL2_DCACHE
267RCAR_BL2_DCACHE := 0
268endif
269$(eval $(call add_define,RCAR_BL2_DCACHE))
270
271# Process RCAR_DRAM_CHANNEL flag
272ifndef RCAR_DRAM_CHANNEL
273RCAR_DRAM_CHANNEL :=15
274endif
275$(eval $(call add_define,RCAR_DRAM_CHANNEL))
276
277#Process RCAR_SYSTEM_RESET_KEEPON_DDR flag
278ifndef RCAR_SYSTEM_RESET_KEEPON_DDR
279RCAR_SYSTEM_RESET_KEEPON_DDR := 0
280endif
281$(eval $(call add_define,RCAR_SYSTEM_RESET_KEEPON_DDR))
282
283# RCAR_SYSTEM_RESET_KEEPON_DDR requires power control of PMIC etc.
284# When executing SYSTEM_SUSPEND other than Salvator-X, Salvator-XS and Ebisu,
285# processing equivalent to that implemented in PMIC_ROHM_BD9571 is necessary.
286# Also, it is necessary to enable RCAR_SYSTEM_SUSPEND.
287ifeq (${RCAR_SYSTEM_RESET_KEEPON_DDR},1)
288 ifeq (${PMIC_ROHM_BD9571},0)
289 $(error "Error: When you want RCAR_SYSTEM_RESET_KEEPON_DDR to be enable, please also set PMIC_ROHM_BD9571 to enable.")
290 endif
291 ifeq (${RCAR_SYSTEM_SUSPEND},0)
292 $(error "Error: When you want RCAR_SYSTEM_RESET_KEEPON_DDR to be enable, please also set RCAR_SYSTEM_SUSPEND to enable.")
293 endif
294endif
295
Marek Vasut73f24ef2019-10-15 22:47:57 +0200296include drivers/renesas/rcar/ddr/ddr.mk
Marek Vasutd7af4952019-06-15 15:01:04 +0200297include drivers/renesas/rcar/qos/qos.mk
Marek Vasutb4bd2422019-06-17 19:29:03 +0200298include drivers/renesas/rcar/pfc/pfc.mk
Marek Vasut93c85fc2018-10-02 20:45:18 +0200299include lib/libfdt/libfdt.mk
Jorge Ramirez-Ortizbf084dc2018-09-23 09:36:13 +0200300
Biju Das4ec2d8f2020-12-16 08:57:59 +0000301PLAT_INCLUDES += -Idrivers/renesas/rcar/ddr \
Marek Vasutd7af4952019-06-15 15:01:04 +0200302 -Idrivers/renesas/rcar/qos \
Jorge Ramirez-Ortizbf084dc2018-09-23 09:36:13 +0200303 -Idrivers/renesas/rcar/board \
Marek Vasut38ec9e52018-12-28 11:26:03 +0100304 -Idrivers/renesas/rcar/cpld/ \
Biju Das5cd4e332020-12-16 09:43:41 +0000305 -Idrivers/renesas/common/iic_dvfs \
Jorge Ramirez-Ortizbf084dc2018-09-23 09:36:13 +0200306 -Idrivers/renesas/rcar/avs \
307 -Idrivers/renesas/rcar/delay \
308 -Idrivers/renesas/rcar/rom \
309 -Idrivers/renesas/rcar/scif \
310 -Idrivers/renesas/rcar/emmc \
311 -Idrivers/renesas/rcar/pwrc \
Biju Das4ec2d8f2020-12-16 08:57:59 +0000312 -Idrivers/renesas/rcar/io
Jorge Ramirez-Ortizbf084dc2018-09-23 09:36:13 +0200313
Biju Das4ec2d8f2020-12-16 08:57:59 +0000314BL2_SOURCES += plat/renesas/rcar/aarch64/platform_common.c \
Jorge Ramirez-Ortizbf084dc2018-09-23 09:36:13 +0200315 plat/renesas/rcar/aarch64/plat_helpers.S \
316 plat/renesas/rcar/bl2_interrupt_error.c \
317 plat/renesas/rcar/bl2_secure_setting.c \
318 plat/renesas/rcar/bl2_plat_setup.c \
319 plat/renesas/rcar/plat_storage.c \
320 plat/renesas/rcar/bl2_plat_mem_params_desc.c \
321 plat/renesas/rcar/plat_image_load.c \
322 plat/renesas/rcar/bl2_cpg_init.c \
323 drivers/renesas/rcar/console/rcar_printf.c \
324 drivers/renesas/rcar/scif/scif.S \
Jorge Ramirez-Ortizbf084dc2018-09-23 09:36:13 +0200325 drivers/renesas/rcar/io/io_emmcdrv.c \
326 drivers/renesas/rcar/io/io_memdrv.c \
327 drivers/renesas/rcar/io/io_rcar.c \
328 drivers/renesas/rcar/auth/auth_mod.c \
329 drivers/renesas/rcar/rpc/rpc_driver.c \
330 drivers/renesas/rcar/dma/dma_driver.c \
331 drivers/renesas/rcar/avs/avs_driver.c \
Marek Vasut1778b412018-12-26 15:57:08 +0100332 drivers/renesas/rcar/delay/micro_delay.c \
Jorge Ramirez-Ortizbf084dc2018-09-23 09:36:13 +0200333 drivers/renesas/rcar/emmc/emmc_interrupt.c \
334 drivers/renesas/rcar/emmc/emmc_utility.c \
335 drivers/renesas/rcar/emmc/emmc_mount.c \
336 drivers/renesas/rcar/emmc/emmc_init.c \
337 drivers/renesas/rcar/emmc/emmc_read.c \
338 drivers/renesas/rcar/emmc/emmc_cmd.c \
339 drivers/renesas/rcar/watchdog/swdt.c \
340 drivers/renesas/rcar/rom/rom_api.c \
Biju Das4ec2d8f2020-12-16 08:57:59 +0000341 drivers/renesas/rcar/board/board.c
Jorge Ramirez-Ortizbf084dc2018-09-23 09:36:13 +0200342
Biju Das4ec2d8f2020-12-16 08:57:59 +0000343BL31_SOURCES += plat/renesas/rcar/plat_topology.c \
Jorge Ramirez-Ortizbf084dc2018-09-23 09:36:13 +0200344 plat/renesas/rcar/aarch64/plat_helpers.S \
345 plat/renesas/rcar/aarch64/platform_common.c \
346 plat/renesas/rcar/bl31_plat_setup.c \
347 plat/renesas/rcar/plat_pm.c \
348 drivers/renesas/rcar/console/rcar_console.S \
349 drivers/renesas/rcar/console/rcar_printf.c \
Marek Vasut4bc543c2018-12-28 20:15:33 +0100350 drivers/renesas/rcar/delay/micro_delay.c \
Jorge Ramirez-Ortizbf084dc2018-09-23 09:36:13 +0200351 drivers/renesas/rcar/pwrc/call_sram.S \
Biju Das4ec2d8f2020-12-16 08:57:59 +0000352 drivers/renesas/rcar/pwrc/pwrc.c
Jorge Ramirez-Ortizbf084dc2018-09-23 09:36:13 +0200353
354ifeq (${RCAR_GEN3_ULCB},1)
355BL31_SOURCES += drivers/renesas/rcar/cpld/ulcb_cpld.c
356endif
357
Jorge Ramirez-Ortizbf084dc2018-09-23 09:36:13 +0200358# build the layout images for the bootrom and the necessary srecords
359rcar: rcar_layout_tool rcar_srecord
360distclean realclean clean: clean_layout_tool clean_srecord
361
362# layout images
363LAYOUT_TOOLPATH ?= tools/renesas/rcar_layout_create
364
365clean_layout_tool:
366 @echo "clean layout tool"
367 ${Q}${MAKE} -C ${LAYOUT_TOOLPATH} clean
368
369.PHONY: rcar_layout_tool
370rcar_layout_tool:
371 @echo "generating layout srecs"
372 ${Q}${MAKE} CPPFLAGS="-D=AARCH64" --no-print-directory -C ${LAYOUT_TOOLPATH}
373
374# srecords
375SREC_PATH = ${BUILD_PLAT}
376BL2_ELF_SRC = ${SREC_PATH}/bl2/bl2.elf
377BL31_ELF_SRC = ${SREC_PATH}/bl31/bl31.elf
378
379clean_srecord:
380 @echo "clean bl2 and bl31 srecs"
381 rm -f ${SREC_PATH}/bl2.srec ${SREC_PATH}/bl31.srec
382
383.PHONY: rcar_srecord
Marek Vasut7043fce2018-12-31 19:47:37 +0100384rcar_srecord: $(BL2_ELF_SRC) $(BL31_ELF_SRC)
Jorge Ramirez-Ortizbf084dc2018-09-23 09:36:13 +0200385 @echo "generating srec: ${SREC_PATH}/bl2.srec"
386 $(Q)$(OC) -O srec --srec-forceS3 ${BL2_ELF_SRC} ${SREC_PATH}/bl2.srec
387 @echo "generating srec: ${SREC_PATH}/bl31.srec"
388 $(Q)$(OC) -O srec --srec-forceS3 ${BL31_ELF_SRC} ${SREC_PATH}/bl31.srec
389