xref: /openbmc/linux/arch/mips/generic/init.c (revision a14bf1dc)
12874c5fdSThomas Gleixner // SPDX-License-Identifier: GPL-2.0-or-later
2eed0eabdSPaul Burton /*
3eed0eabdSPaul Burton  * Copyright (C) 2016 Imagination Technologies
448c834beSPaul Burton  * Author: Paul Burton <paul.burton@mips.com>
5eed0eabdSPaul Burton  */
6eed0eabdSPaul Burton 
7eed0eabdSPaul Burton #include <linux/clk.h>
8eed0eabdSPaul Burton #include <linux/clk-provider.h>
9eed0eabdSPaul Burton #include <linux/clocksource.h>
10eed0eabdSPaul Burton #include <linux/init.h>
11eed0eabdSPaul Burton #include <linux/irqchip.h>
12eed0eabdSPaul Burton #include <linux/of_fdt.h>
13eed0eabdSPaul Burton 
14b47e9c62SPaul Burton #include <asm/bootinfo.h>
15eed0eabdSPaul Burton #include <asm/fw/fw.h>
16eed0eabdSPaul Burton #include <asm/irq_cpu.h>
17eed0eabdSPaul Burton #include <asm/machine.h>
187f005f11SMatt Redfearn #include <asm/mips-cps.h>
19eed0eabdSPaul Burton #include <asm/prom.h>
20eed0eabdSPaul Burton #include <asm/smp-ops.h>
21eed0eabdSPaul Burton #include <asm/time.h>
22eed0eabdSPaul Burton 
23a14bf1dcSTiezhu Yang static __initconst const void *fdt;
24a14bf1dcSTiezhu Yang static __initconst const struct mips_machine *mach;
25a14bf1dcSTiezhu Yang static __initconst const void *mach_match_data;
26eed0eabdSPaul Burton 
27eed0eabdSPaul Burton void __init prom_init(void)
28eed0eabdSPaul Burton {
299a59061cSMatt Redfearn 	plat_get_fdt();
309a59061cSMatt Redfearn 	BUG_ON(!fdt);
319a59061cSMatt Redfearn }
329a59061cSMatt Redfearn 
339a59061cSMatt Redfearn void __init *plat_get_fdt(void)
349a59061cSMatt Redfearn {
35eed0eabdSPaul Burton 	const struct mips_machine *check_mach;
36eed0eabdSPaul Burton 	const struct of_device_id *match;
37eed0eabdSPaul Burton 
389a59061cSMatt Redfearn 	if (fdt)
399a59061cSMatt Redfearn 		/* Already set up */
409a59061cSMatt Redfearn 		return (void *)fdt;
419a59061cSMatt Redfearn 
4267eebf72SMarcin Nowakowski 	if ((fw_arg0 == -2) && !fdt_check_header((void *)fw_passed_dtb)) {
43eed0eabdSPaul Burton 		/*
44eed0eabdSPaul Burton 		 * We booted using the UHI boot protocol, so we have been
45eed0eabdSPaul Burton 		 * provided with the appropriate device tree for the board.
46eed0eabdSPaul Burton 		 * Make use of it & search for any machine struct based upon
47eed0eabdSPaul Burton 		 * the root compatible string.
48eed0eabdSPaul Burton 		 */
4967eebf72SMarcin Nowakowski 		fdt = (void *)fw_passed_dtb;
50eed0eabdSPaul Burton 
51eed0eabdSPaul Burton 		for_each_mips_machine(check_mach) {
52eed0eabdSPaul Burton 			match = mips_machine_is_compatible(check_mach, fdt);
53eed0eabdSPaul Burton 			if (match) {
54eed0eabdSPaul Burton 				mach = check_mach;
55eed0eabdSPaul Burton 				mach_match_data = match->data;
56eed0eabdSPaul Burton 				break;
57eed0eabdSPaul Burton 			}
58eed0eabdSPaul Burton 		}
59eed0eabdSPaul Burton 	} else if (IS_ENABLED(CONFIG_LEGACY_BOARDS)) {
60eed0eabdSPaul Burton 		/*
61eed0eabdSPaul Burton 		 * We weren't booted using the UHI boot protocol, but do
62eed0eabdSPaul Burton 		 * support some number of boards with legacy boot protocols.
63eed0eabdSPaul Burton 		 * Attempt to find the right one.
64eed0eabdSPaul Burton 		 */
65eed0eabdSPaul Burton 		for_each_mips_machine(check_mach) {
66eed0eabdSPaul Burton 			if (!check_mach->detect)
67eed0eabdSPaul Burton 				continue;
68eed0eabdSPaul Burton 
69eed0eabdSPaul Burton 			if (!check_mach->detect())
70eed0eabdSPaul Burton 				continue;
71eed0eabdSPaul Burton 
72eed0eabdSPaul Burton 			mach = check_mach;
73eed0eabdSPaul Burton 		}
74eed0eabdSPaul Burton 
75eed0eabdSPaul Burton 		/*
76eed0eabdSPaul Burton 		 * If we don't recognise the machine then we can't continue, so
77eed0eabdSPaul Burton 		 * die here.
78eed0eabdSPaul Burton 		 */
79eed0eabdSPaul Burton 		BUG_ON(!mach);
80eed0eabdSPaul Burton 
81eed0eabdSPaul Burton 		/* Retrieve the machine's FDT */
82eed0eabdSPaul Burton 		fdt = mach->fdt;
83eed0eabdSPaul Burton 	}
84eed0eabdSPaul Burton 	return (void *)fdt;
85eed0eabdSPaul Burton }
86eed0eabdSPaul Burton 
87b47e9c62SPaul Burton #ifdef CONFIG_RELOCATABLE
88b47e9c62SPaul Burton 
890063fdedSMarcin Nowakowski void __init plat_fdt_relocated(void *new_location)
900063fdedSMarcin Nowakowski {
910063fdedSMarcin Nowakowski 	/*
920063fdedSMarcin Nowakowski 	 * reset fdt as the cached value would point to the location
930063fdedSMarcin Nowakowski 	 * before relocations happened and update the location argument
940063fdedSMarcin Nowakowski 	 * if it was passed using UHI
950063fdedSMarcin Nowakowski 	 */
960063fdedSMarcin Nowakowski 	fdt = NULL;
970063fdedSMarcin Nowakowski 
980063fdedSMarcin Nowakowski 	if (fw_arg0 == -2)
990063fdedSMarcin Nowakowski 		fw_arg1 = (unsigned long)new_location;
1000063fdedSMarcin Nowakowski }
1010063fdedSMarcin Nowakowski 
102b47e9c62SPaul Burton #endif /* CONFIG_RELOCATABLE */
103b47e9c62SPaul Burton 
104eed0eabdSPaul Burton void __init plat_mem_setup(void)
105eed0eabdSPaul Burton {
106eed0eabdSPaul Burton 	if (mach && mach->fixup_fdt)
107eed0eabdSPaul Burton 		fdt = mach->fixup_fdt(fdt, mach_match_data);
108eed0eabdSPaul Burton 
109eed0eabdSPaul Burton 	strlcpy(arcs_cmdline, boot_command_line, COMMAND_LINE_SIZE);
110eed0eabdSPaul Burton 	__dt_setup_arch((void *)fdt);
111eed0eabdSPaul Burton }
112eed0eabdSPaul Burton 
113eed0eabdSPaul Burton void __init device_tree_init(void)
114eed0eabdSPaul Burton {
115eed0eabdSPaul Burton 	int err;
116eed0eabdSPaul Burton 
117eed0eabdSPaul Burton 	unflatten_and_copy_device_tree();
118eed0eabdSPaul Burton 	mips_cpc_probe();
119eed0eabdSPaul Burton 
120eed0eabdSPaul Burton 	err = register_cps_smp_ops();
121eed0eabdSPaul Burton 	if (err)
122eed0eabdSPaul Burton 		err = register_up_smp_ops();
123eed0eabdSPaul Burton }
124eed0eabdSPaul Burton 
125e889dfcaSPaul Burton int __init apply_mips_fdt_fixups(void *fdt_out, size_t fdt_out_size,
126e889dfcaSPaul Burton 				 const void *fdt_in,
127e889dfcaSPaul Burton 				 const struct mips_fdt_fixup *fixups)
128e889dfcaSPaul Burton {
129e889dfcaSPaul Burton 	int err;
130e889dfcaSPaul Burton 
131e889dfcaSPaul Burton 	err = fdt_open_into(fdt_in, fdt_out, fdt_out_size);
132e889dfcaSPaul Burton 	if (err) {
133e889dfcaSPaul Burton 		pr_err("Failed to open FDT\n");
134e889dfcaSPaul Burton 		return err;
135e889dfcaSPaul Burton 	}
136e889dfcaSPaul Burton 
137e889dfcaSPaul Burton 	for (; fixups->apply; fixups++) {
138e889dfcaSPaul Burton 		err = fixups->apply(fdt_out);
139e889dfcaSPaul Burton 		if (err) {
140e889dfcaSPaul Burton 			pr_err("Failed to apply FDT fixup \"%s\"\n",
141e889dfcaSPaul Burton 			       fixups->description);
142e889dfcaSPaul Burton 			return err;
143e889dfcaSPaul Burton 		}
144e889dfcaSPaul Burton 	}
145e889dfcaSPaul Burton 
146e889dfcaSPaul Burton 	err = fdt_pack(fdt_out);
147e889dfcaSPaul Burton 	if (err)
148e889dfcaSPaul Burton 		pr_err("Failed to pack FDT\n");
149e889dfcaSPaul Burton 	return err;
150e889dfcaSPaul Burton }
151e889dfcaSPaul Burton 
152eed0eabdSPaul Burton void __init plat_time_init(void)
153eed0eabdSPaul Burton {
154eed0eabdSPaul Burton 	struct device_node *np;
155eed0eabdSPaul Burton 	struct clk *clk;
156eed0eabdSPaul Burton 
157eed0eabdSPaul Burton 	of_clk_init(NULL);
158eed0eabdSPaul Burton 
159eed0eabdSPaul Burton 	if (!cpu_has_counter) {
160eed0eabdSPaul Burton 		mips_hpt_frequency = 0;
161eed0eabdSPaul Burton 	} else if (mach && mach->measure_hpt_freq) {
162eed0eabdSPaul Burton 		mips_hpt_frequency = mach->measure_hpt_freq();
163eed0eabdSPaul Burton 	} else {
164eed0eabdSPaul Burton 		np = of_get_cpu_node(0, NULL);
165eed0eabdSPaul Burton 		if (!np) {
166eed0eabdSPaul Burton 			pr_err("Failed to get CPU node\n");
167eed0eabdSPaul Burton 			return;
168eed0eabdSPaul Burton 		}
169eed0eabdSPaul Burton 
170eed0eabdSPaul Burton 		clk = of_clk_get(np, 0);
171eed0eabdSPaul Burton 		if (IS_ERR(clk)) {
172eed0eabdSPaul Burton 			pr_err("Failed to get CPU clock: %ld\n", PTR_ERR(clk));
173eed0eabdSPaul Burton 			return;
174eed0eabdSPaul Burton 		}
175eed0eabdSPaul Burton 
176eed0eabdSPaul Burton 		mips_hpt_frequency = clk_get_rate(clk);
177eed0eabdSPaul Burton 		clk_put(clk);
178eed0eabdSPaul Burton 
179eed0eabdSPaul Burton 		switch (boot_cpu_type()) {
180eed0eabdSPaul Burton 		case CPU_20KC:
181eed0eabdSPaul Burton 		case CPU_25KF:
182eed0eabdSPaul Burton 			/* The counter runs at the CPU clock rate */
183eed0eabdSPaul Burton 			break;
184eed0eabdSPaul Burton 		default:
185eed0eabdSPaul Burton 			/* The counter runs at half the CPU clock rate */
186eed0eabdSPaul Burton 			mips_hpt_frequency /= 2;
187eed0eabdSPaul Burton 			break;
188eed0eabdSPaul Burton 		}
189eed0eabdSPaul Burton 	}
190eed0eabdSPaul Burton 
191ba5d08c0SDaniel Lezcano 	timer_probe();
192eed0eabdSPaul Burton }
193eed0eabdSPaul Burton 
194eed0eabdSPaul Burton void __init arch_init_irq(void)
195eed0eabdSPaul Burton {
196eed0eabdSPaul Burton 	struct device_node *intc_node;
197eed0eabdSPaul Burton 
198eed0eabdSPaul Burton 	intc_node = of_find_compatible_node(NULL, NULL,
199eed0eabdSPaul Burton 					    "mti,cpu-interrupt-controller");
200eed0eabdSPaul Burton 	if (!cpu_has_veic && !intc_node)
201eed0eabdSPaul Burton 		mips_cpu_irq_init();
20228ec2238SNicholas Mc Guire 	of_node_put(intc_node);
203eed0eabdSPaul Burton 
204eed0eabdSPaul Burton 	irqchip_init();
205eed0eabdSPaul Burton }
206eed0eabdSPaul Burton 
207eed0eabdSPaul Burton void __init prom_free_prom_memory(void)
208eed0eabdSPaul Burton {
209eed0eabdSPaul Burton }
210