arm64: add HWCAP_EVTSTRM and associated hwcap refactoring
[firefly-linux-kernel-4.4.55.git] / arch / arm64 / kernel / setup.c
1 /*
2  * Based on arch/arm/kernel/setup.c
3  *
4  * Copyright (C) 1995-2001 Russell King
5  * Copyright (C) 2012 ARM Ltd.
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License version 2 as
9  * published by the Free Software Foundation.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 #include <linux/export.h>
21 #include <linux/kernel.h>
22 #include <linux/stddef.h>
23 #include <linux/ioport.h>
24 #include <linux/delay.h>
25 #include <linux/utsname.h>
26 #include <linux/initrd.h>
27 #include <linux/console.h>
28 #include <linux/bootmem.h>
29 #include <linux/seq_file.h>
30 #include <linux/screen_info.h>
31 #include <linux/init.h>
32 #include <linux/kexec.h>
33 #include <linux/crash_dump.h>
34 #include <linux/root_dev.h>
35 #include <linux/clk-provider.h>
36 #include <linux/cpu.h>
37 #include <linux/interrupt.h>
38 #include <linux/smp.h>
39 #include <linux/fs.h>
40 #include <linux/proc_fs.h>
41 #include <linux/memblock.h>
42 #include <linux/of_fdt.h>
43 #include <linux/of_platform.h>
44
45 #include <asm/cputype.h>
46 #include <asm/elf.h>
47 #include <asm/cputable.h>
48 #include <asm/sections.h>
49 #include <asm/setup.h>
50 #include <asm/smp_plat.h>
51 #include <asm/cacheflush.h>
52 #include <asm/tlbflush.h>
53 #include <asm/traps.h>
54 #include <asm/memblock.h>
55 #include <asm/psci.h>
56
57 unsigned int processor_id;
58 EXPORT_SYMBOL(processor_id);
59
60 unsigned int elf_hwcap __read_mostly;
61 EXPORT_SYMBOL_GPL(elf_hwcap);
62
63 #ifdef CONFIG_COMPAT
64 #define COMPAT_ELF_HWCAP_DEFAULT        \
65                                 (COMPAT_HWCAP_HALF|COMPAT_HWCAP_THUMB|\
66                                  COMPAT_HWCAP_FAST_MULT|COMPAT_HWCAP_EDSP|\
67                                  COMPAT_HWCAP_TLS|COMPAT_HWCAP_VFP|\
68                                  COMPAT_HWCAP_VFPv3|COMPAT_HWCAP_VFPv4|\
69                                  COMPAT_HWCAP_NEON|COMPAT_HWCAP_IDIV)
70 unsigned int compat_elf_hwcap __read_mostly = COMPAT_ELF_HWCAP_DEFAULT;
71 #endif
72
73 static const char *cpu_name;
74 static const char *machine_name;
75 phys_addr_t __fdt_pointer __initdata;
76
77 /*
78  * Standard memory resources
79  */
80 static struct resource mem_res[] = {
81         {
82                 .name = "Kernel code",
83                 .start = 0,
84                 .end = 0,
85                 .flags = IORESOURCE_MEM
86         },
87         {
88                 .name = "Kernel data",
89                 .start = 0,
90                 .end = 0,
91                 .flags = IORESOURCE_MEM
92         }
93 };
94
95 #define kernel_code mem_res[0]
96 #define kernel_data mem_res[1]
97
98 void __init early_print(const char *str, ...)
99 {
100         char buf[256];
101         va_list ap;
102
103         va_start(ap, str);
104         vsnprintf(buf, sizeof(buf), str, ap);
105         va_end(ap);
106
107         printk("%s", buf);
108 }
109
110 static void __init setup_processor(void)
111 {
112         struct cpu_info *cpu_info;
113
114         /*
115          * locate processor in the list of supported processor
116          * types.  The linker builds this table for us from the
117          * entries in arch/arm/mm/proc.S
118          */
119         cpu_info = lookup_processor_type(read_cpuid_id());
120         if (!cpu_info) {
121                 printk("CPU configuration botched (ID %08x), unable to continue.\n",
122                        read_cpuid_id());
123                 while (1);
124         }
125
126         cpu_name = cpu_info->cpu_name;
127
128         printk("CPU: %s [%08x] revision %d\n",
129                cpu_name, read_cpuid_id(), read_cpuid_id() & 15);
130
131         sprintf(init_utsname()->machine, "aarch64");
132         elf_hwcap = 0;
133 }
134
135 static void __init setup_machine_fdt(phys_addr_t dt_phys)
136 {
137         struct boot_param_header *devtree;
138         unsigned long dt_root;
139
140         /* Check we have a non-NULL DT pointer */
141         if (!dt_phys) {
142                 early_print("\n"
143                         "Error: NULL or invalid device tree blob\n"
144                         "The dtb must be 8-byte aligned and passed in the first 512MB of memory\n"
145                         "\nPlease check your bootloader.\n");
146
147                 while (true)
148                         cpu_relax();
149
150         }
151
152         devtree = phys_to_virt(dt_phys);
153
154         /* Check device tree validity */
155         if (be32_to_cpu(devtree->magic) != OF_DT_HEADER) {
156                 early_print("\n"
157                         "Error: invalid device tree blob at physical address 0x%p (virtual address 0x%p)\n"
158                         "Expected 0x%x, found 0x%x\n"
159                         "\nPlease check your bootloader.\n",
160                         dt_phys, devtree, OF_DT_HEADER,
161                         be32_to_cpu(devtree->magic));
162
163                 while (true)
164                         cpu_relax();
165         }
166
167         initial_boot_params = devtree;
168         dt_root = of_get_flat_dt_root();
169
170         machine_name = of_get_flat_dt_prop(dt_root, "model", NULL);
171         if (!machine_name)
172                 machine_name = of_get_flat_dt_prop(dt_root, "compatible", NULL);
173         if (!machine_name)
174                 machine_name = "<unknown>";
175         pr_info("Machine: %s\n", machine_name);
176
177         /* Retrieve various information from the /chosen node */
178         of_scan_flat_dt(early_init_dt_scan_chosen, boot_command_line);
179         /* Initialize {size,address}-cells info */
180         of_scan_flat_dt(early_init_dt_scan_root, NULL);
181         /* Setup memory, calling early_init_dt_add_memory_arch */
182         of_scan_flat_dt(early_init_dt_scan_memory, NULL);
183 }
184
185 void __init early_init_dt_add_memory_arch(u64 base, u64 size)
186 {
187         base &= PAGE_MASK;
188         size &= PAGE_MASK;
189         if (base + size < PHYS_OFFSET) {
190                 pr_warning("Ignoring memory block 0x%llx - 0x%llx\n",
191                            base, base + size);
192                 return;
193         }
194         if (base < PHYS_OFFSET) {
195                 pr_warning("Ignoring memory range 0x%llx - 0x%llx\n",
196                            base, PHYS_OFFSET);
197                 size -= PHYS_OFFSET - base;
198                 base = PHYS_OFFSET;
199         }
200         memblock_add(base, size);
201 }
202
203 void * __init early_init_dt_alloc_memory_arch(u64 size, u64 align)
204 {
205         return __va(memblock_alloc(size, align));
206 }
207
208 /*
209  * Limit the memory size that was specified via FDT.
210  */
211 static int __init early_mem(char *p)
212 {
213         phys_addr_t limit;
214
215         if (!p)
216                 return 1;
217
218         limit = memparse(p, &p) & PAGE_MASK;
219         pr_notice("Memory limited to %lldMB\n", limit >> 20);
220
221         memblock_enforce_memory_limit(limit);
222
223         return 0;
224 }
225 early_param("mem", early_mem);
226
227 static void __init request_standard_resources(void)
228 {
229         struct memblock_region *region;
230         struct resource *res;
231
232         kernel_code.start   = virt_to_phys(_text);
233         kernel_code.end     = virt_to_phys(_etext - 1);
234         kernel_data.start   = virt_to_phys(_sdata);
235         kernel_data.end     = virt_to_phys(_end - 1);
236
237         for_each_memblock(memory, region) {
238                 res = alloc_bootmem_low(sizeof(*res));
239                 res->name  = "System RAM";
240                 res->start = __pfn_to_phys(memblock_region_memory_base_pfn(region));
241                 res->end = __pfn_to_phys(memblock_region_memory_end_pfn(region)) - 1;
242                 res->flags = IORESOURCE_MEM | IORESOURCE_BUSY;
243
244                 request_resource(&iomem_resource, res);
245
246                 if (kernel_code.start >= res->start &&
247                     kernel_code.end <= res->end)
248                         request_resource(res, &kernel_code);
249                 if (kernel_data.start >= res->start &&
250                     kernel_data.end <= res->end)
251                         request_resource(res, &kernel_data);
252         }
253 }
254
255 u64 __cpu_logical_map[NR_CPUS] = { [0 ... NR_CPUS-1] = INVALID_HWID };
256
257 void __init setup_arch(char **cmdline_p)
258 {
259         setup_processor();
260
261         setup_machine_fdt(__fdt_pointer);
262
263         init_mm.start_code = (unsigned long) _text;
264         init_mm.end_code   = (unsigned long) _etext;
265         init_mm.end_data   = (unsigned long) _edata;
266         init_mm.brk        = (unsigned long) _end;
267
268         *cmdline_p = boot_command_line;
269
270         parse_early_param();
271
272         arm64_memblock_init();
273
274         paging_init();
275         request_standard_resources();
276
277         unflatten_device_tree();
278
279         psci_init();
280
281         cpu_logical_map(0) = read_cpuid_mpidr() & MPIDR_HWID_BITMASK;
282 #ifdef CONFIG_SMP
283         smp_init_cpus();
284 #endif
285
286 #ifdef CONFIG_VT
287 #if defined(CONFIG_VGA_CONSOLE)
288         conswitchp = &vga_con;
289 #elif defined(CONFIG_DUMMY_CONSOLE)
290         conswitchp = &dummy_con;
291 #endif
292 #endif
293 }
294
295 static int __init arm64_device_init(void)
296 {
297         of_clk_init(NULL);
298         of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
299         return 0;
300 }
301 arch_initcall(arm64_device_init);
302
303 static DEFINE_PER_CPU(struct cpu, cpu_data);
304
305 static int __init topology_init(void)
306 {
307         int i;
308
309         for_each_possible_cpu(i) {
310                 struct cpu *cpu = &per_cpu(cpu_data, i);
311                 cpu->hotpluggable = 1;
312                 register_cpu(cpu, i);
313         }
314
315         return 0;
316 }
317 subsys_initcall(topology_init);
318
319 static const char *hwcap_str[] = {
320         "fp",
321         "asimd",
322         "evtstrm",
323         NULL
324 };
325
326 static int c_show(struct seq_file *m, void *v)
327 {
328         int i;
329
330         seq_printf(m, "Processor\t: %s rev %d (%s)\n",
331                    cpu_name, read_cpuid_id() & 15, ELF_PLATFORM);
332
333         for_each_online_cpu(i) {
334                 /*
335                  * glibc reads /proc/cpuinfo to determine the number of
336                  * online processors, looking for lines beginning with
337                  * "processor".  Give glibc what it expects.
338                  */
339 #ifdef CONFIG_SMP
340                 seq_printf(m, "processor\t: %d\n", i);
341 #endif
342                 seq_printf(m, "BogoMIPS\t: %lu.%02lu\n\n",
343                            loops_per_jiffy / (500000UL/HZ),
344                            loops_per_jiffy / (5000UL/HZ) % 100);
345         }
346
347         /* dump out the processor features */
348         seq_puts(m, "Features\t: ");
349
350         for (i = 0; hwcap_str[i]; i++)
351                 if (elf_hwcap & (1 << i))
352                         seq_printf(m, "%s ", hwcap_str[i]);
353
354         seq_printf(m, "\nCPU implementer\t: 0x%02x\n", read_cpuid_id() >> 24);
355         seq_printf(m, "CPU architecture: AArch64\n");
356         seq_printf(m, "CPU variant\t: 0x%x\n", (read_cpuid_id() >> 20) & 15);
357         seq_printf(m, "CPU part\t: 0x%03x\n", (read_cpuid_id() >> 4) & 0xfff);
358         seq_printf(m, "CPU revision\t: %d\n", read_cpuid_id() & 15);
359
360         seq_puts(m, "\n");
361
362         seq_printf(m, "Hardware\t: %s\n", machine_name);
363
364         return 0;
365 }
366
367 static void *c_start(struct seq_file *m, loff_t *pos)
368 {
369         return *pos < 1 ? (void *)1 : NULL;
370 }
371
372 static void *c_next(struct seq_file *m, void *v, loff_t *pos)
373 {
374         ++*pos;
375         return NULL;
376 }
377
378 static void c_stop(struct seq_file *m, void *v)
379 {
380 }
381
382 const struct seq_operations cpuinfo_op = {
383         .start  = c_start,
384         .next   = c_next,
385         .stop   = c_stop,
386         .show   = c_show
387 };