blob: 221361691c15b9cf987b0c8ae48873fb18b27427 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Alexander Grafc3468482014-04-11 17:09:45 +02002/*
3 * Copyright 2007,2009-2014 Freescale Semiconductor, Inc.
Bin Meng2076d992021-02-25 17:22:58 +08004 * Copyright (C) 2021, Bin Meng <bmeng.cn@gmail.com>
Alexander Grafc3468482014-04-11 17:09:45 +02005 */
6
7#include <common.h>
8#include <command.h>
Simon Glass33d1e702019-11-14 12:57:32 -07009#include <cpu_func.h>
Bin Mengf9c9ffc2021-02-25 17:22:43 +080010#include <dm.h>
Simon Glass313112a2019-08-01 09:46:46 -060011#include <env.h>
Simon Glass1cedca12023-08-21 21:17:01 -060012#include <event.h>
Simon Glass18afe102019-11-14 12:57:47 -070013#include <init.h>
Simon Glass0f2af882020-05-10 11:40:05 -060014#include <log.h>
Simon Glass274e0b02020-05-10 11:39:56 -060015#include <net.h>
Alexander Grafc3468482014-04-11 17:09:45 +020016#include <pci.h>
Simon Glassa9dc0682019-12-28 10:44:59 -070017#include <time.h>
Bin Meng0f68ea42021-03-14 20:15:04 +080018#include <dm/simple_bus.h>
19#include <dm/uclass-internal.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060020#include <asm/global_data.h>
Alexander Grafc3468482014-04-11 17:09:45 +020021#include <asm/processor.h>
22#include <asm/mmu.h>
23#include <asm/fsl_pci.h>
24#include <asm/io.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090025#include <linux/libfdt.h>
Alexander Grafc3468482014-04-11 17:09:45 +020026#include <fdt_support.h>
27#include <netdev.h>
28#include <fdtdec.h>
29#include <errno.h>
30#include <malloc.h>
Bin Mengc46215c2021-02-25 17:22:46 +080031#include <virtio_types.h>
32#include <virtio.h>
Alexander Grafc3468482014-04-11 17:09:45 +020033
34DECLARE_GLOBAL_DATA_PTR;
35
Tom Rini68ad5752022-06-20 08:07:57 -040036/* Virtual address range for PCI region maps */
37#define SYS_PCI_MAP_START 0x80000000
38#define SYS_PCI_MAP_END 0xe0000000
39
Alexander Grafc3468482014-04-11 17:09:45 +020040static void *get_fdt_virt(void)
41{
Bin Meng8a804dc2021-02-25 17:22:55 +080042 if (gd->flags & GD_FLG_RELOC)
43 return (void *)gd->fdt_blob;
44 else
Tom Rini6a5dccc2022-11-16 13:10:41 -050045 return (void *)CFG_SYS_TMPVIRT;
Alexander Grafc3468482014-04-11 17:09:45 +020046}
47
48static uint64_t get_fdt_phys(void)
49{
50 return (uint64_t)(uintptr_t)gd->fdt_blob;
51}
52
53static void map_fdt_as(int esel)
54{
55 u32 mas0, mas1, mas2, mas3, mas7;
56 uint64_t fdt_phys = get_fdt_phys();
57 unsigned long fdt_phys_tlb = fdt_phys & ~0xffffful;
58 unsigned long fdt_virt_tlb = (ulong)get_fdt_virt() & ~0xffffful;
59
60 mas0 = MAS0_TLBSEL(1) | MAS0_ESEL(esel);
61 mas1 = MAS1_VALID | MAS1_TID(0) | MAS1_TS | MAS1_TSIZE(BOOKE_PAGESZ_1M);
62 mas2 = FSL_BOOKE_MAS2(fdt_virt_tlb, 0);
63 mas3 = FSL_BOOKE_MAS3(fdt_phys_tlb, 0, MAS3_SW|MAS3_SR);
64 mas7 = FSL_BOOKE_MAS7(fdt_phys_tlb);
65
66 write_tlb(mas0, mas1, mas2, mas3, mas7);
67}
68
69uint64_t get_phys_ccsrbar_addr_early(void)
70{
71 void *fdt = get_fdt_virt();
72 uint64_t r;
Tom Rini661d6d82017-08-03 08:53:36 -040073 int size, node;
74 u32 naddr;
75 const fdt32_t *prop;
Alexander Grafc3468482014-04-11 17:09:45 +020076
77 /*
78 * To be able to read the FDT we need to create a temporary TLB
79 * map for it.
80 */
81 map_fdt_as(10);
Tom Rini661d6d82017-08-03 08:53:36 -040082 node = fdt_path_offset(fdt, "/soc");
83 naddr = fdt_address_cells(fdt, node);
84 prop = fdt_getprop(fdt, node, "ranges", &size);
85 r = fdt_translate_address(fdt, node, prop + naddr);
Alexander Grafc3468482014-04-11 17:09:45 +020086 disable_tlb(10);
87
88 return r;
89}
90
Alexander Grafc3468482014-04-11 17:09:45 +020091int checkboard(void)
92{
93 return 0;
94}
95
Bin Mengf9c9ffc2021-02-25 17:22:43 +080096static int pci_map_region(phys_addr_t paddr, phys_size_t size, ulong *pmap_addr)
Alexander Grafc3468482014-04-11 17:09:45 +020097{
Alexander Grafc3468482014-04-11 17:09:45 +020098 ulong map_addr;
Alexander Grafc3468482014-04-11 17:09:45 +020099
100 if (!pmap_addr)
101 return 0;
102
103 map_addr = *pmap_addr;
104
105 /* Align map_addr */
106 map_addr += size - 1;
107 map_addr &= ~(size - 1);
108
Tom Rini68ad5752022-06-20 08:07:57 -0400109 if (map_addr + size >= SYS_PCI_MAP_END)
Alexander Grafc3468482014-04-11 17:09:45 +0200110 return -1;
111
112 /* Map virtual memory for range */
Bin Mengd8632422021-02-25 17:22:25 +0800113 assert(!tlb_map_range(map_addr, paddr, size, TLB_MAP_IO));
Alexander Grafc3468482014-04-11 17:09:45 +0200114 *pmap_addr = map_addr + size;
115
Alexander Grafc3468482014-04-11 17:09:45 +0200116 return 0;
117}
118
Bin Meng0f68ea42021-03-14 20:15:04 +0800119static void platform_bus_map_region(ulong map_addr, phys_addr_t paddr,
120 phys_size_t size)
121{
122 /* Align map_addr */
123 map_addr += size - 1;
124 map_addr &= ~(size - 1);
125
126 /* Map virtual memory for range */
127 assert(!tlb_map_range(map_addr, paddr, size, TLB_MAP_IO));
128}
129
Bin Mengf9c9ffc2021-02-25 17:22:43 +0800130int misc_init_r(void)
Alexander Grafc3468482014-04-11 17:09:45 +0200131{
Bin Mengf9c9ffc2021-02-25 17:22:43 +0800132 struct udevice *dev;
133 struct pci_region *io;
134 struct pci_region *mem;
135 struct pci_region *pre;
Alexander Grafc3468482014-04-11 17:09:45 +0200136 ulong map_addr;
Bin Mengf9c9ffc2021-02-25 17:22:43 +0800137 int ret;
Alexander Grafc3468482014-04-11 17:09:45 +0200138
Bin Mengf9c9ffc2021-02-25 17:22:43 +0800139 /* Ensure PCI is probed */
140 uclass_first_device(UCLASS_PCI, &dev);
141
142 pci_get_regions(dev, &io, &mem, &pre);
Alexander Grafc3468482014-04-11 17:09:45 +0200143
144 /* Start MMIO and PIO range maps above RAM */
Tom Rini68ad5752022-06-20 08:07:57 -0400145 map_addr = SYS_PCI_MAP_START;
Alexander Grafc3468482014-04-11 17:09:45 +0200146
Bin Mengf9c9ffc2021-02-25 17:22:43 +0800147 /* Map MMIO range */
148 ret = pci_map_region(mem->phys_start, mem->size, &map_addr);
149 if (ret)
150 return ret;
Alexander Grafc3468482014-04-11 17:09:45 +0200151
Bin Mengf9c9ffc2021-02-25 17:22:43 +0800152 /* Map PIO range */
153 ret = pci_map_region(io->phys_start, io->size, &map_addr);
154 if (ret)
155 return ret;
Alexander Grafc3468482014-04-11 17:09:45 +0200156
Bin Mengc46215c2021-02-25 17:22:46 +0800157 /*
158 * Make sure virtio bus is enumerated so that peripherals
159 * on the virtio bus can be discovered by their drivers.
160 */
161 virtio_init();
162
Bin Meng8a804dc2021-02-25 17:22:55 +0800163 /*
164 * U-Boot is relocated to RAM already, let's delete the temporary FDT
165 * virtual-physical mapping that was used in the pre-relocation phase.
166 */
Tom Rini6a5dccc2022-11-16 13:10:41 -0500167 disable_tlb(find_tlb_idx((void *)CFG_SYS_TMPVIRT, 1));
Bin Meng8a804dc2021-02-25 17:22:55 +0800168
Bin Meng0f68ea42021-03-14 20:15:04 +0800169 /*
170 * Detect the presence of the platform bus node, and
171 * create a virtual memory mapping for it.
172 */
173 for (ret = uclass_find_first_device(UCLASS_SIMPLE_BUS, &dev);
174 dev;
175 ret = uclass_find_next_device(&dev)) {
176 if (device_is_compatible(dev, "qemu,platform")) {
177 struct simple_bus_plat *plat = dev_get_uclass_plat(dev);
178
179 platform_bus_map_region(CONFIG_PLATFORM_BUS_MAP_ADDR,
180 plat->target, plat->size);
181 break;
182 }
183 }
184
Bin Mengf9c9ffc2021-02-25 17:22:43 +0800185 return 0;
Alexander Grafc3468482014-04-11 17:09:45 +0200186}
187
Simon Glass1cedca12023-08-21 21:17:01 -0600188static int last_stage_init(void)
Alexander Grafc3468482014-04-11 17:09:45 +0200189{
190 void *fdt = get_fdt_virt();
191 int len = 0;
192 const uint64_t *prop;
193 int chosen;
194
195 chosen = fdt_path_offset(fdt, "/chosen");
196 if (chosen < 0) {
197 printf("Couldn't find /chosen node in fdt\n");
198 return -EIO;
199 }
200
201 /* -kernel boot */
202 prop = fdt_getprop(fdt, chosen, "qemu,boot-kernel", &len);
203 if (prop && (len >= 8))
Simon Glass4d949a22017-08-03 12:22:10 -0600204 env_set_hex("qemu_kernel_addr", *prop);
Alexander Grafc3468482014-04-11 17:09:45 +0200205
Alexander Grafc3468482014-04-11 17:09:45 +0200206 return 0;
207}
Simon Glass1cedca12023-08-21 21:17:01 -0600208EVENT_SPY_SIMPLE(EVT_LAST_STAGE_INIT, last_stage_init);
Alexander Grafc3468482014-04-11 17:09:45 +0200209
210static uint64_t get_linear_ram_size(void)
211{
212 void *fdt = get_fdt_virt();
213 const void *prop;
214 int memory;
215 int len;
216
217 memory = fdt_path_offset(fdt, "/memory");
218 prop = fdt_getprop(fdt, memory, "reg", &len);
219
220 if (prop && len >= 16)
221 return *(uint64_t *)(prop+8);
222
223 panic("Couldn't determine RAM size");
224}
225
Alexander Grafc3468482014-04-11 17:09:45 +0200226phys_size_t fsl_ddr_sdram_size(void)
227{
228 return get_linear_ram_size();
229}
230
231void init_tlbs(void)
232{
233 phys_size_t ram_size;
234
235 /*
236 * Create a temporary AS=1 map for the fdt
237 *
238 * We use ESEL=0 here to overwrite the previous AS=0 map for ourselves
239 * which was only 4k big. This way we don't have to clear any other maps.
240 */
241 map_fdt_as(0);
242
243 /* Fetch RAM size from the fdt */
244 ram_size = get_linear_ram_size();
245
246 /* And remove our fdt map again */
247 disable_tlb(0);
248
249 /* Create an internal map of manually created TLB maps */
250 init_used_tlb_cams();
251
252 /* Create a dynamic AS=0 CCSRBAR mapping */
Tom Rini6a5dccc2022-11-16 13:10:41 -0500253 assert(!tlb_map_range(CFG_SYS_CCSRBAR, CFG_SYS_CCSRBAR_PHYS,
Alexander Grafc3468482014-04-11 17:09:45 +0200254 1024 * 1024, TLB_MAP_IO));
255
256 /* Create a RAM map that spans all accessible RAM */
257 setup_ddr_tlbs(ram_size >> 20);
258
259 /* Create a map for the TLB */
260 assert(!tlb_map_range((ulong)get_fdt_virt(), get_fdt_phys(),
261 1024 * 1024, TLB_MAP_RAM));
262}
263
Alexander Grafc3468482014-04-11 17:09:45 +0200264static uint32_t get_cpu_freq(void)
265{
266 void *fdt = get_fdt_virt();
267 int cpus_node = fdt_path_offset(fdt, "/cpus");
268 int cpu_node = fdt_first_subnode(fdt, cpus_node);
269 const char *prop = "clock-frequency";
270 return fdt_getprop_u32_default_node(fdt, cpu_node, 0, prop, 0);
271}
272
273void get_sys_info(sys_info_t *sys_info)
274{
275 int freq = get_cpu_freq();
276
277 memset(sys_info, 0, sizeof(sys_info_t));
278 sys_info->freq_systembus = freq;
279 sys_info->freq_ddrbus = freq;
280 sys_info->freq_processor[0] = freq;
281}
282
Simon Glass85d65312019-12-28 10:44:58 -0700283int get_clocks(void)
Alexander Grafc3468482014-04-11 17:09:45 +0200284{
285 sys_info_t sys_info;
286
287 get_sys_info(&sys_info);
288
289 gd->cpu_clk = sys_info.freq_processor[0];
290 gd->bus_clk = sys_info.freq_systembus;
291 gd->mem_clk = sys_info.freq_ddrbus;
292 gd->arch.lbc_clk = sys_info.freq_ddrbus;
293
294 return 0;
295}
296
Simon Glassa9dc0682019-12-28 10:44:59 -0700297unsigned long get_tbclk(void)
Alexander Grafc3468482014-04-11 17:09:45 +0200298{
299 void *fdt = get_fdt_virt();
300 int cpus_node = fdt_path_offset(fdt, "/cpus");
301 int cpu_node = fdt_first_subnode(fdt, cpus_node);
302 const char *prop = "timebase-frequency";
303 return fdt_getprop_u32_default_node(fdt, cpu_node, 0, prop, 0);
304}
305
306/********************************************
307 * get_bus_freq
308 * return system bus freq in Hz
309 *********************************************/
Simon Glass85d65312019-12-28 10:44:58 -0700310ulong get_bus_freq(ulong dummy)
Alexander Grafc3468482014-04-11 17:09:45 +0200311{
312 sys_info_t sys_info;
313 get_sys_info(&sys_info);
314 return sys_info.freq_systembus;
315}
Alexander Graf5b9e18c2014-04-30 19:21:10 +0200316
317/*
318 * Return the number of cores on this SOC.
319 */
320int cpu_numcores(void)
321{
322 /*
Michal Simek4d0837b2023-09-08 09:11:31 +0200323 * The QEMU U-Boot target only needs to drive the first core,
Alexander Graf5b9e18c2014-04-30 19:21:10 +0200324 * spinning and device tree nodes get driven by QEMU itself
325 */
326 return 1;
327}
328
329/*
330 * Return a 32-bit mask indicating which cores are present on this SOC.
331 */
332u32 cpu_mask(void)
333{
334 return (1 << cpu_numcores()) - 1;
335}
Bin Meng11f7a3f2021-02-25 17:22:30 +0800336
337/**
338 * Return the virtual address of FDT that was passed by QEMU
339 *
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100340 * Return: virtual address of FDT received from QEMU in r3 register
Bin Meng11f7a3f2021-02-25 17:22:30 +0800341 */
Ilias Apalodimasab5348a2021-10-26 09:12:33 +0300342void *board_fdt_blob_setup(int *err)
Bin Meng11f7a3f2021-02-25 17:22:30 +0800343{
Ilias Apalodimasab5348a2021-10-26 09:12:33 +0300344 *err = 0;
Bin Meng11f7a3f2021-02-25 17:22:30 +0800345 return get_fdt_virt();
346}
Bin Meng285d1e22021-02-25 17:22:39 +0800347
Tom Rinidf6a2152022-11-16 13:10:28 -0500348/* See CFG_SYS_NS16550_CLK in arch/powerpc/include/asm/config.h */
Bin Meng285d1e22021-02-25 17:22:39 +0800349int get_serial_clock(void)
350{
351 return get_bus_freq(0);
352}