1 // SPDX-License-Identifier: GPL-2.0
3 * R-Car Generation 2 support
5 * Copyright (C) 2013 Renesas Solutions Corp.
6 * Copyright (C) 2013 Magnus Damm
7 * Copyright (C) 2014 Ulrich Hecht
10 #include <linux/clocksource.h>
11 #include <linux/device.h>
12 #include <linux/dma-map-ops.h>
14 #include <linux/kernel.h>
15 #include <linux/memblock.h>
17 #include <linux/of_clk.h>
18 #include <linux/of_fdt.h>
19 #include <linux/of_platform.h>
20 #include <linux/psci.h>
21 #include <asm/mach/arch.h>
22 #include <asm/secure_cntvoff.h>
24 #include "rcar-gen2.h"
26 static const struct of_device_id cpg_matches
[] __initconst
= {
27 { .compatible
= "renesas,r8a7742-cpg-mssr", .data
= "extal" },
28 { .compatible
= "renesas,r8a7743-cpg-mssr", .data
= "extal" },
29 { .compatible
= "renesas,r8a7744-cpg-mssr", .data
= "extal" },
30 { .compatible
= "renesas,r8a7790-cpg-mssr", .data
= "extal" },
31 { .compatible
= "renesas,r8a7791-cpg-mssr", .data
= "extal" },
32 { .compatible
= "renesas,r8a7793-cpg-mssr", .data
= "extal" },
36 static unsigned int __init
get_extal_freq(void)
38 const struct of_device_id
*match
;
39 struct device_node
*cpg
, *extal
;
43 cpg
= of_find_matching_node_and_match(NULL
, cpg_matches
, &match
);
48 idx
= of_property_match_string(cpg
, "clock-names", match
->data
);
49 extal
= of_parse_phandle(cpg
, "clocks", idx
);
54 of_property_read_u32(extal
, "clock-frequency", &freq
);
62 static void __init
rcar_gen2_timer_init(void)
64 bool need_update
= true;
69 * If PSCI is available then most likely we are running on PSCI-enabled
70 * U-Boot which, we assume, has already taken care of resetting CNTVOFF
71 * and updating counter module before switching to non-secure mode
72 * and we don't need to.
74 #ifdef CONFIG_ARM_PSCI_FW
79 if (need_update
== false)
82 secure_cntvoff_init();
84 if (of_machine_is_compatible("renesas,r8a7745") ||
85 of_machine_is_compatible("renesas,r8a77470") ||
86 of_machine_is_compatible("renesas,r8a7792") ||
87 of_machine_is_compatible("renesas,r8a7794")) {
88 freq
= 260000000 / 8; /* ZS / 8 */
90 /* At Linux boot time the r8a7790 arch timer comes up
91 * with the counter disabled. Moreover, it may also report
92 * a potentially incorrect fixed 13 MHz frequency. To be
93 * correct these registers need to be updated to use the
94 * frequency EXTAL / 2.
96 freq
= get_extal_freq() / 2;
99 /* Remap "armgcnt address map" space */
100 base
= ioremap(0xe6080000, PAGE_SIZE
);
103 * Update the timer if it is either not running, or is not at the
104 * right frequency. The timer is only configurable in secure mode
105 * so this avoids an abort if the loader started the timer and
106 * entered the kernel in non-secure mode.
109 if ((ioread32(base
+ CNTCR
) & 1) == 0 ||
110 ioread32(base
+ CNTFID0
) != freq
) {
111 /* Update registers with correct frequency */
112 iowrite32(freq
, base
+ CNTFID0
);
113 asm volatile("mcr p15, 0, %0, c14, c0, 0" : : "r" (freq
));
115 /* make sure arch timer is started by setting bit 0 of CNTCR */
116 iowrite32(1, base
+ CNTCR
);
126 struct memory_reserve_config
{
131 static int __init
rcar_gen2_scan_mem(unsigned long node
, const char *uname
,
132 int depth
, void *data
)
134 const char *type
= of_get_flat_dt_prop(node
, "device_type", NULL
);
135 const __be32
*reg
, *endp
;
137 struct memory_reserve_config
*mrc
= data
;
138 u64 lpae_start
= 1ULL << 32;
140 /* We are scanning "memory" nodes only */
141 if (type
== NULL
|| strcmp(type
, "memory"))
144 reg
= of_get_flat_dt_prop(node
, "linux,usable-memory", &l
);
146 reg
= of_get_flat_dt_prop(node
, "reg", &l
);
150 endp
= reg
+ (l
/ sizeof(__be32
));
151 while ((endp
- reg
) >= (dt_root_addr_cells
+ dt_root_size_cells
)) {
154 base
= dt_mem_next_cell(dt_root_addr_cells
, ®
);
155 size
= dt_mem_next_cell(dt_root_size_cells
, ®
);
157 if (base
>= lpae_start
)
160 if ((base
+ size
) >= lpae_start
)
161 size
= lpae_start
- base
;
163 if (size
< mrc
->reserved
)
166 if (base
< mrc
->base
)
169 /* keep the area at top near the 32-bit legacy limit */
170 mrc
->base
= base
+ size
- mrc
->reserved
;
171 mrc
->size
= mrc
->reserved
;
177 static void __init
rcar_gen2_reserve(void)
179 struct memory_reserve_config mrc
;
181 /* reserve 256 MiB at the top of the physical legacy 32-bit space */
182 memset(&mrc
, 0, sizeof(mrc
));
183 mrc
.reserved
= SZ_256M
;
185 of_scan_flat_dt(rcar_gen2_scan_mem
, &mrc
);
186 #ifdef CONFIG_DMA_CMA
187 if (mrc
.size
&& memblock_is_region_memory(mrc
.base
, mrc
.size
)) {
188 static struct cma
*rcar_gen2_dma_contiguous
;
190 dma_contiguous_reserve_area(mrc
.size
, mrc
.base
, 0,
191 &rcar_gen2_dma_contiguous
, true);
196 static const char * const rcar_gen2_boards_compat_dt
[] __initconst
= {
205 DT_MACHINE_START(RCAR_GEN2_DT
, "Generic R-Car Gen2 (Flattened Device Tree)")
206 .init_late
= shmobile_init_late
,
207 .init_time
= rcar_gen2_timer_init
,
208 .reserve
= rcar_gen2_reserve
,
209 .dt_compat
= rcar_gen2_boards_compat_dt
,
212 static const char * const rz_g1_boards_compat_dt
[] __initconst
= {
221 DT_MACHINE_START(RZ_G1_DT
, "Generic RZ/G1 (Flattened Device Tree)")
222 .init_late
= shmobile_init_late
,
223 .init_time
= rcar_gen2_timer_init
,
224 .reserve
= rcar_gen2_reserve
,
225 .dt_compat
= rz_g1_boards_compat_dt
,