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