1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright (C) 2016 Imagination Technologies
4 * Author: Paul Burton <paul.burton@mips.com>
8 #include <linux/clocksource.h>
9 #include <linux/init.h>
10 #include <linux/irqchip.h>
11 #include <linux/of_clk.h>
12 #include <linux/of_fdt.h>
14 #include <asm/bootinfo.h>
15 #include <asm/fw/fw.h>
16 #include <asm/irq_cpu.h>
17 #include <asm/machine.h>
18 #include <asm/mips-cps.h>
20 #include <asm/smp-ops.h>
23 static __initconst
const void *fdt
;
24 static __initconst
const struct mips_machine
*mach
;
25 static __initconst
const void *mach_match_data
;
27 void __init
prom_init(void)
33 void __init
*plat_get_fdt(void)
35 const struct mips_machine
*check_mach
;
36 const struct of_device_id
*match
;
42 if ((fw_arg0
== -2) && !fdt_check_header((void *)fw_passed_dtb
)) {
44 * We booted using the UHI boot protocol, so we have been
45 * provided with the appropriate device tree for the board.
46 * Make use of it & search for any machine struct based upon
47 * the root compatible string.
49 fdt
= (void *)fw_passed_dtb
;
51 for_each_mips_machine(check_mach
) {
52 match
= mips_machine_is_compatible(check_mach
, fdt
);
55 mach_match_data
= match
->data
;
59 } else if (IS_ENABLED(CONFIG_LEGACY_BOARDS
)) {
61 * We weren't booted using the UHI boot protocol, but do
62 * support some number of boards with legacy boot protocols.
63 * Attempt to find the right one.
65 for_each_mips_machine(check_mach
) {
66 if (!check_mach
->detect
)
69 if (!check_mach
->detect())
76 * If we don't recognise the machine then we can't continue, so
81 /* Retrieve the machine's FDT */
87 #ifdef CONFIG_RELOCATABLE
89 void __init
plat_fdt_relocated(void *new_location
)
92 * reset fdt as the cached value would point to the location
93 * before relocations happened and update the location argument
94 * if it was passed using UHI
99 fw_arg1
= (unsigned long)new_location
;
102 #endif /* CONFIG_RELOCATABLE */
104 void __init
plat_mem_setup(void)
106 if (mach
&& mach
->fixup_fdt
)
107 fdt
= mach
->fixup_fdt(fdt
, mach_match_data
);
109 strlcpy(arcs_cmdline
, boot_command_line
, COMMAND_LINE_SIZE
);
110 __dt_setup_arch((void *)fdt
);
113 void __init
device_tree_init(void)
117 unflatten_and_copy_device_tree();
120 err
= register_cps_smp_ops();
122 err
= register_up_smp_ops();
125 int __init
apply_mips_fdt_fixups(void *fdt_out
, size_t fdt_out_size
,
127 const struct mips_fdt_fixup
*fixups
)
131 err
= fdt_open_into(fdt_in
, fdt_out
, fdt_out_size
);
133 pr_err("Failed to open FDT\n");
137 for (; fixups
->apply
; fixups
++) {
138 err
= fixups
->apply(fdt_out
);
140 pr_err("Failed to apply FDT fixup \"%s\"\n",
141 fixups
->description
);
146 err
= fdt_pack(fdt_out
);
148 pr_err("Failed to pack FDT\n");
152 void __init
plat_time_init(void)
154 struct device_node
*np
;
159 if (!cpu_has_counter
) {
160 mips_hpt_frequency
= 0;
161 } else if (mach
&& mach
->measure_hpt_freq
) {
162 mips_hpt_frequency
= mach
->measure_hpt_freq();
164 np
= of_get_cpu_node(0, NULL
);
166 pr_err("Failed to get CPU node\n");
170 clk
= of_clk_get(np
, 0);
172 pr_err("Failed to get CPU clock: %ld\n", PTR_ERR(clk
));
176 mips_hpt_frequency
= clk_get_rate(clk
);
179 switch (boot_cpu_type()) {
182 /* The counter runs at the CPU clock rate */
185 /* The counter runs at half the CPU clock rate */
186 mips_hpt_frequency
/= 2;
194 void __init
arch_init_irq(void)
196 struct device_node
*intc_node
;
198 intc_node
= of_find_compatible_node(NULL
, NULL
,
199 "mti,cpu-interrupt-controller");
200 if (!cpu_has_veic
&& !intc_node
)
202 of_node_put(intc_node
);
207 void __init
prom_free_prom_memory(void)