Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 | // SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2016 Imagination Technologies * Author: Paul Burton <paul.burton@mips.com> */ #define pr_fmt(fmt) "sead3: " fmt #include <linux/errno.h> #include <linux/libfdt.h> #include <linux/printk.h> #include <linux/sizes.h> #include <asm/fw/fw.h> #include <asm/io.h> #include <asm/machine.h> #include <asm/yamon-dt.h> #define SEAD_CONFIG CKSEG1ADDR(0x1b100110) #define SEAD_CONFIG_GIC_PRESENT BIT(1) #define MIPS_REVISION CKSEG1ADDR(0x1fc00010) #define MIPS_REVISION_MACHINE (0xf << 4) #define MIPS_REVISION_MACHINE_SEAD3 (0x4 << 4) /* * Maximum 384MB RAM at physical address 0, preceding any I/O. */ static struct yamon_mem_region mem_regions[] __initdata = { /* start size */ { 0, SZ_256M + SZ_128M }, {} }; static __init bool sead3_detect(void) { uint32_t rev; rev = __raw_readl((void *)MIPS_REVISION); return (rev & MIPS_REVISION_MACHINE) == MIPS_REVISION_MACHINE_SEAD3; } static __init int append_memory(void *fdt) { return yamon_dt_append_memory(fdt, mem_regions); } static __init int remove_gic(void *fdt) { const unsigned int cpu_ehci_int = 2; const unsigned int cpu_uart_int = 4; const unsigned int cpu_eth_int = 6; int gic_off, cpu_off, uart_off, eth_off, ehci_off, err; uint32_t cfg, cpu_phandle; /* leave the GIC node intact if a GIC is present */ cfg = __raw_readl((uint32_t *)SEAD_CONFIG); if (cfg & SEAD_CONFIG_GIC_PRESENT) return 0; gic_off = fdt_node_offset_by_compatible(fdt, -1, "mti,gic"); if (gic_off < 0) { pr_err("unable to find DT GIC node: %d\n", gic_off); return gic_off; } err = fdt_nop_node(fdt, gic_off); if (err) { pr_err("unable to nop GIC node\n"); return err; } cpu_off = fdt_node_offset_by_compatible(fdt, -1, "mti,cpu-interrupt-controller"); if (cpu_off < 0) { pr_err("unable to find CPU intc node: %d\n", cpu_off); return cpu_off; } cpu_phandle = fdt_get_phandle(fdt, cpu_off); if (!cpu_phandle) { pr_err("unable to get CPU intc phandle\n"); return -EINVAL; } uart_off = fdt_node_offset_by_compatible(fdt, -1, "ns16550a"); while (uart_off >= 0) { err = fdt_setprop_u32(fdt, uart_off, "interrupt-parent", cpu_phandle); if (err) { pr_warn("unable to set UART interrupt-parent: %d\n", err); return err; } err = fdt_setprop_u32(fdt, uart_off, "interrupts", cpu_uart_int); if (err) { pr_err("unable to set UART interrupts property: %d\n", err); return err; } uart_off = fdt_node_offset_by_compatible(fdt, uart_off, "ns16550a"); } if (uart_off != -FDT_ERR_NOTFOUND) { pr_err("error searching for UART DT node: %d\n", uart_off); return uart_off; } eth_off = fdt_node_offset_by_compatible(fdt, -1, "smsc,lan9115"); if (eth_off < 0) { pr_err("unable to find ethernet DT node: %d\n", eth_off); return eth_off; } err = fdt_setprop_u32(fdt, eth_off, "interrupt-parent", cpu_phandle); if (err) { pr_err("unable to set ethernet interrupt-parent: %d\n", err); return err; } err = fdt_setprop_u32(fdt, eth_off, "interrupts", cpu_eth_int); if (err) { pr_err("unable to set ethernet interrupts property: %d\n", err); return err; } ehci_off = fdt_node_offset_by_compatible(fdt, -1, "generic-ehci"); if (ehci_off < 0) { pr_err("unable to find EHCI DT node: %d\n", ehci_off); return ehci_off; } err = fdt_setprop_u32(fdt, ehci_off, "interrupt-parent", cpu_phandle); if (err) { pr_err("unable to set EHCI interrupt-parent: %d\n", err); return err; } err = fdt_setprop_u32(fdt, ehci_off, "interrupts", cpu_ehci_int); if (err) { pr_err("unable to set EHCI interrupts property: %d\n", err); return err; } return 0; } static const struct mips_fdt_fixup sead3_fdt_fixups[] __initconst = { { yamon_dt_append_cmdline, "append command line" }, { append_memory, "append memory" }, { remove_gic, "remove GIC when not present" }, { yamon_dt_serial_config, "append serial configuration" }, { }, }; static __init const void *sead3_fixup_fdt(const void *fdt, const void *match_data) { static unsigned char fdt_buf[16 << 10] __initdata; int err; if (fdt_check_header(fdt)) panic("Corrupt DT"); /* if this isn't SEAD3, something went wrong */ BUG_ON(fdt_node_check_compatible(fdt, 0, "mti,sead-3")); fw_init_cmdline(); err = apply_mips_fdt_fixups(fdt_buf, sizeof(fdt_buf), fdt, sead3_fdt_fixups); if (err) panic("Unable to fixup FDT: %d", err); return fdt_buf; } static __init unsigned int sead3_measure_hpt_freq(void) { void __iomem *status_reg = (void __iomem *)0xbf000410; unsigned int freq, orig, tick = 0; unsigned long flags; local_irq_save(flags); orig = readl(status_reg) & 0x2; /* get original sample */ /* wait for transition */ while ((readl(status_reg) & 0x2) == orig) ; orig = orig ^ 0x2; /* flip the bit */ write_c0_count(0); /* wait 1 second (the sampling clock transitions every 10ms) */ while (tick < 100) { /* wait for transition */ while ((readl(status_reg) & 0x2) == orig) ; orig = orig ^ 0x2; /* flip the bit */ tick++; } freq = read_c0_count(); local_irq_restore(flags); return freq; } extern char __dtb_sead3_begin[]; MIPS_MACHINE(sead3) = { .fdt = __dtb_sead3_begin, .detect = sead3_detect, .fixup_fdt = sead3_fixup_fdt, .measure_hpt_freq = sead3_measure_hpt_freq, }; |