blob: f976c99028a019ba02830d4f0534134b6f4d84a6 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0
Nobuhiro Iwamatsua5413442014-12-02 16:52:20 +09002/*
Nobuhiro Iwamatsu80403952016-04-01 03:51:33 +09003 * board/renesas/rcar-common/common.c
Nobuhiro Iwamatsua5413442014-12-02 16:52:20 +09004 *
5 * Copyright (C) 2013 Renesas Electronics Corporation
6 * Copyright (C) 2013 Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
Nobuhiro Iwamatsu4dc515a2016-04-01 03:51:34 +09007 * Copyright (C) 2015 Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Nobuhiro Iwamatsua5413442014-12-02 16:52:20 +09008 */
9
10#include <common.h>
Marek Vasut45eaf052019-07-09 01:46:35 +020011#include <dm.h>
Geert Uytterhoevenaf90acf2022-03-29 14:19:08 +020012#include <fdt_support.h>
Simon Glass97589732020-05-10 11:40:02 -060013#include <init.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060014#include <asm/global_data.h>
Marek Vasut45eaf052019-07-09 01:46:35 +020015#include <dm/uclass-internal.h>
Nobuhiro Iwamatsua5413442014-12-02 16:52:20 +090016#include <asm/arch/rmobile.h>
Simon Glass2dc9c342020-05-10 11:40:01 -060017#include <linux/libfdt.h>
Marek Vasut276a1d82019-05-19 23:25:16 +020018
Hai Pham9046b5f2023-02-28 22:22:03 +010019#ifdef CONFIG_RCAR_64
Marek Vasut276a1d82019-05-19 23:25:16 +020020
21DECLARE_GLOBAL_DATA_PTR;
22
Geert Uytterhoevenaf90acf2022-03-29 14:19:08 +020023/* If the firmware passed a device tree use it for e.g. U-Boot DRAM setup. */
Marek Vasut276a1d82019-05-19 23:25:16 +020024extern u64 rcar_atf_boot_args[];
25
Geert Uytterhoevenaf90acf2022-03-29 14:19:08 +020026#define FDT_RPC_PATH "/soc/spi@ee200000"
27
Detlev Casanovad296c072023-06-09 11:19:08 -040028static void apply_atf_overlay(void *fdt_blob)
Marek Vasut276a1d82019-05-19 23:25:16 +020029{
Marek Vasutda8646a2020-04-11 20:50:24 +020030 void *atf_fdt_blob = (void *)(rcar_atf_boot_args[1]);
Marek Vasut276a1d82019-05-19 23:25:16 +020031
Marek Vasut276a1d82019-05-19 23:25:16 +020032 if (fdt_magic(atf_fdt_blob) == FDT_MAGIC)
Detlev Casanovad296c072023-06-09 11:19:08 -040033 fdt_overlay_apply_node(fdt_blob, 0, atf_fdt_blob, 0);
34}
35
36int fdtdec_board_setup(const void *fdt_blob)
37{
38 apply_atf_overlay((void *)fdt_blob);
Marek Vasut276a1d82019-05-19 23:25:16 +020039
Marek Vasutda8646a2020-04-11 20:50:24 +020040 return 0;
Marek Vasut276a1d82019-05-19 23:25:16 +020041}
42
Marek Vasutda8646a2020-04-11 20:50:24 +020043int dram_init(void)
Marek Vasut276a1d82019-05-19 23:25:16 +020044{
Michal Simekc7ac6ac2020-07-10 13:16:48 +020045 return fdtdec_setup_mem_size_base();
Marek Vasutda8646a2020-04-11 20:50:24 +020046}
Marek Vasut276a1d82019-05-19 23:25:16 +020047
Marek Vasutda8646a2020-04-11 20:50:24 +020048int dram_init_banksize(void)
49{
Michal Simekc7ac6ac2020-07-10 13:16:48 +020050 fdtdec_setup_memory_banksize();
Marek Vasut276a1d82019-05-19 23:25:16 +020051
52 return 0;
53}
Marek Vasutce528522021-04-03 16:58:49 +020054
55#if defined(CONFIG_OF_BOARD_SETUP)
56static int is_mem_overlap(void *blob, int first_mem_node, int curr_mem_node)
57{
58 struct fdt_resource first_mem_res, curr_mem_res;
59 int curr_mem_reg, first_mem_reg = 0;
60 int ret;
61
62 for (;;) {
63 ret = fdt_get_resource(blob, first_mem_node, "reg",
64 first_mem_reg++, &first_mem_res);
65 if (ret) /* No more entries, no overlap found */
66 return 0;
67
68 curr_mem_reg = 0;
69 for (;;) {
70 ret = fdt_get_resource(blob, curr_mem_node, "reg",
71 curr_mem_reg++, &curr_mem_res);
72 if (ret) /* No more entries, check next tuple */
73 break;
74
75 if (curr_mem_res.end < first_mem_res.start)
76 continue;
77
78 if (curr_mem_res.start >= first_mem_res.end)
79 continue;
80
Hai Pham2f688c22023-02-28 00:00:01 +010081 log_debug("Overlap found: 0x%llx..0x%llx / 0x%llx..0x%llx\n",
82 first_mem_res.start, first_mem_res.end,
83 curr_mem_res.start, curr_mem_res.end);
Marek Vasutce528522021-04-03 16:58:49 +020084
85 return 1;
86 }
87 }
88
89 return 0;
90}
91
Geert Uytterhoevenaf90acf2022-03-29 14:19:08 +020092static void scrub_duplicate_memory(void *blob)
Marek Vasutce528522021-04-03 16:58:49 +020093{
94 /*
95 * Scrub duplicate /memory@* node entries here. Some R-Car DTs might
96 * contain multiple /memory@* nodes, however fdt_fixup_memory_banks()
97 * either generates single /memory node or updates the first /memory
98 * node. Any remaining memory nodes are thus potential duplicates.
99 *
100 * However, it is not possible to delete all the memory nodes right
101 * away, since some of those might not be DRAM memory nodes, but some
102 * sort of other memory. Thus, delete only the memory nodes which are
103 * in the R-Car3 DBSC ranges.
104 */
105 int mem = 0, first_mem_node = 0;
106
107 for (;;) {
108 mem = fdt_node_offset_by_prop_value(blob, mem,
109 "device_type", "memory", 7);
110 if (mem < 0)
111 break;
112 if (!fdtdec_get_is_enabled(blob, mem))
113 continue;
114
115 /* First memory node, patched by U-Boot */
116 if (!first_mem_node) {
117 first_mem_node = mem;
118 continue;
119 }
120
121 /* Check the remaining nodes and delete duplicates */
122 if (!is_mem_overlap(blob, first_mem_node, mem))
123 continue;
124
125 /* Delete duplicate node, start again */
126 fdt_del_node(blob, mem);
127 first_mem_node = 0;
128 mem = 0;
129 }
Geert Uytterhoevenaf90acf2022-03-29 14:19:08 +0200130}
131
132static void update_rpc_status(void *blob)
133{
134 void *atf_fdt_blob = (void *)(rcar_atf_boot_args[1]);
135 int offset, enabled;
136
137 /*
138 * Check if the DT fragment received from TF-A had its RPC-IF device node
139 * enabled.
140 */
141 if (fdt_magic(atf_fdt_blob) != FDT_MAGIC)
142 return;
143
144 offset = fdt_path_offset(atf_fdt_blob, FDT_RPC_PATH);
145 if (offset < 0)
146 return;
147
148 enabled = fdtdec_get_is_enabled(atf_fdt_blob, offset);
149 if (!enabled)
150 return;
151
152 /*
153 * Find the RPC-IF device node, and enable it if it has a flash subnode.
154 */
155 offset = fdt_path_offset(blob, FDT_RPC_PATH);
156 if (offset < 0)
157 return;
158
159 if (fdt_subnode_offset(blob, offset, "flash") < 0)
160 return;
161
162 fdt_status_okay(blob, offset);
163}
164
165int ft_board_setup(void *blob, struct bd_info *bd)
166{
Detlev Casanovad296c072023-06-09 11:19:08 -0400167 apply_atf_overlay(blob);
Geert Uytterhoevenaf90acf2022-03-29 14:19:08 +0200168 scrub_duplicate_memory(blob);
169 update_rpc_status(blob);
Marek Vasutce528522021-04-03 16:58:49 +0200170
171 return 0;
172}
173#endif
Marek Vasut276a1d82019-05-19 23:25:16 +0200174#endif