blob: ab79828230ab3e53fc0e2b25e6d33d81eacd9f91 [file] [log] [blame]
Andrew Bresticker6a438302015-03-16 14:43:10 -07001/*
2 * Pistachio platform setup
3 *
4 * Copyright (C) 2014 Google, Inc.
James Hartleyae07ea82016-04-19 15:46:55 +01005 * Copyright (C) 2016 Imagination Technologies
Andrew Bresticker6a438302015-03-16 14:43:10 -07006 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms and conditions of the GNU General Public License,
9 * version 2, as published by the Free Software Foundation.
10 */
11
12#include <linux/init.h>
James Hartleyae07ea82016-04-19 15:46:55 +010013#include <linux/io.h>
Andrew Bresticker6a438302015-03-16 14:43:10 -070014#include <linux/kernel.h>
15#include <linux/of_address.h>
16#include <linux/of_fdt.h>
17#include <linux/of_platform.h>
18
19#include <asm/cacheflush.h>
20#include <asm/dma-coherence.h>
21#include <asm/fw/fw.h>
22#include <asm/mips-boards/generic.h>
23#include <asm/mips-cm.h>
24#include <asm/mips-cpc.h>
25#include <asm/prom.h>
26#include <asm/smp-ops.h>
27#include <asm/traps.h>
28
James Hartleyae07ea82016-04-19 15:46:55 +010029/*
30 * Core revision register decoding
31 * Bits 23 to 20: Major rev
32 * Bits 15 to 8: Minor rev
33 * Bits 7 to 0: Maintenance rev
34 */
35#define PISTACHIO_CORE_REV_REG 0xB81483D0
36#define PISTACHIO_CORE_REV_A1 0x00100006
37#define PISTACHIO_CORE_REV_B0 0x00100106
38
Andrew Bresticker6a438302015-03-16 14:43:10 -070039const char *get_system_type(void)
40{
James Hartleyae07ea82016-04-19 15:46:55 +010041 u32 core_rev;
42 const char *sys_type;
43
44 core_rev = __raw_readl((const void *)PISTACHIO_CORE_REV_REG);
45
46 switch (core_rev) {
47 case PISTACHIO_CORE_REV_B0:
48 sys_type = "IMG Pistachio SoC (B0)";
49 break;
50
51 case PISTACHIO_CORE_REV_A1:
52 sys_type = "IMG Pistachio SoC (A1)";
53 break;
54
55 default:
56 sys_type = "IMG Pistachio SoC";
57 break;
58 }
59
60 return sys_type;
Andrew Bresticker6a438302015-03-16 14:43:10 -070061}
62
63static void __init plat_setup_iocoherency(void)
64{
65 /*
66 * Kernel has been configured with software coherency
67 * but we might choose to turn it off and use hardware
68 * coherency instead.
69 */
70 if (mips_cm_numiocu() != 0) {
71 /* Nothing special needs to be done to enable coherency */
72 pr_info("CMP IOCU detected\n");
73 hw_coherentio = 1;
74 if (coherentio == 0)
75 pr_info("Hardware DMA cache coherency disabled\n");
76 else
77 pr_info("Hardware DMA cache coherency enabled\n");
78 } else {
79 if (coherentio == 1)
80 pr_info("Hardware DMA cache coherency unsupported, but enabled from command line!\n");
81 else
82 pr_info("Software DMA cache coherency enabled\n");
83 }
84}
85
Matt Redfearn41cc07b2016-05-25 12:58:40 +010086void __init *plat_get_fdt(void)
Andrew Bresticker6a438302015-03-16 14:43:10 -070087{
88 if (fw_arg0 != -2)
89 panic("Device-tree not present");
Matt Redfearn41cc07b2016-05-25 12:58:40 +010090 return (void *)fw_arg1;
91}
Andrew Bresticker6a438302015-03-16 14:43:10 -070092
Matt Redfearn41cc07b2016-05-25 12:58:40 +010093void __init plat_mem_setup(void)
94{
95 __dt_setup_arch(plat_get_fdt());
Andrew Bresticker6a438302015-03-16 14:43:10 -070096
97 plat_setup_iocoherency();
98}
99
James Hogan6b5e7412015-04-17 10:44:16 +0100100#define DEFAULT_CPC_BASE_ADDR 0x1bde0000
101#define DEFAULT_CDMM_BASE_ADDR 0x1bdd0000
Andrew Bresticker6a438302015-03-16 14:43:10 -0700102
103phys_addr_t mips_cpc_default_phys_base(void)
104{
105 return DEFAULT_CPC_BASE_ADDR;
106}
107
James Hogan6b5e7412015-04-17 10:44:16 +0100108phys_addr_t mips_cdmm_phys_base(void)
109{
110 return DEFAULT_CDMM_BASE_ADDR;
111}
112
Andrew Bresticker6a438302015-03-16 14:43:10 -0700113static void __init mips_nmi_setup(void)
114{
115 void *base;
116 extern char except_vec_nmi;
117
118 base = cpu_has_veic ?
119 (void *)(CAC_BASE + 0xa80) :
120 (void *)(CAC_BASE + 0x380);
121 memcpy(base, &except_vec_nmi, 0x80);
122 flush_icache_range((unsigned long)base,
123 (unsigned long)base + 0x80);
124}
125
126static void __init mips_ejtag_setup(void)
127{
128 void *base;
129 extern char except_vec_ejtag_debug;
130
131 base = cpu_has_veic ?
132 (void *)(CAC_BASE + 0xa00) :
133 (void *)(CAC_BASE + 0x300);
134 memcpy(base, &except_vec_ejtag_debug, 0x80);
135 flush_icache_range((unsigned long)base,
136 (unsigned long)base + 0x80);
137}
138
139void __init prom_init(void)
140{
141 board_nmi_handler_setup = mips_nmi_setup;
142 board_ejtag_handler_setup = mips_ejtag_setup;
143
144 mips_cm_probe();
145 mips_cpc_probe();
146 register_cps_smp_ops();
James Hartleyae07ea82016-04-19 15:46:55 +0100147
148 pr_info("SoC Type: %s\n", get_system_type());
Andrew Bresticker6a438302015-03-16 14:43:10 -0700149}
150
151void __init prom_free_prom_memory(void)
152{
153}
154
155void __init device_tree_init(void)
156{
157 if (!initial_boot_params)
158 return;
159
160 unflatten_and_copy_device_tree();
161}
162
163static int __init plat_of_setup(void)
164{
165 if (!of_have_populated_dt())
166 panic("Device tree not present");
167
168 if (of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL))
169 panic("Failed to populate DT");
170
171 return 0;
172}
173arch_initcall(plat_of_setup);