blob: 20273b89e5459a874b8904991df2b13fb10604c3 [file] [log] [blame]
Vineet Guptac121c502013-01-18 15:12:20 +05301/*
2 * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
8
9#include <linux/seq_file.h>
10#include <linux/fs.h>
11#include <linux/delay.h>
12#include <linux/root_dev.h>
13#include <linux/console.h>
14#include <linux/module.h>
15#include <linux/cpu.h>
Vineet Gupta999159a2013-01-22 17:00:52 +053016#include <linux/of_fdt.h>
17#include <asm/sections.h>
Vineet Guptac121c502013-01-18 15:12:20 +053018#include <asm/arcregs.h>
19#include <asm/tlb.h>
20#include <asm/cache.h>
21#include <asm/setup.h>
22#include <asm/page.h>
23#include <asm/irq.h>
24#include <asm/arcregs.h>
Vineet Gupta999159a2013-01-22 17:00:52 +053025#include <asm/prom.h>
Vineet Gupta854a0d92013-01-22 17:03:19 +053026#include <asm/unwind.h>
Vineet Guptaaf617422013-01-18 15:12:24 +053027#include <asm/clk.h>
Vineet Gupta03a6d282013-01-18 15:12:26 +053028#include <asm/mach_desc.h>
Vineet Guptac121c502013-01-18 15:12:20 +053029
30#define FIX_PTR(x) __asm__ __volatile__(";" : "+r"(x))
31
32int running_on_hw = 1; /* vs. on ISS */
33
34char __initdata command_line[COMMAND_LINE_SIZE];
Vineet Gupta03a6d282013-01-18 15:12:26 +053035struct machine_desc *machine_desc __initdata;
Vineet Guptac121c502013-01-18 15:12:20 +053036
37struct task_struct *_current_task[NR_CPUS]; /* For stack switching */
38
39struct cpuinfo_arc cpuinfo_arc700[NR_CPUS];
40
Vineet Guptaaf617422013-01-18 15:12:24 +053041
Vineet Guptac121c502013-01-18 15:12:20 +053042void __init read_arc_build_cfg_regs(void)
43{
Vineet Guptaaf617422013-01-18 15:12:24 +053044 struct bcr_perip uncached_space;
45 struct cpuinfo_arc *cpu = &cpuinfo_arc700[smp_processor_id()];
46 FIX_PTR(cpu);
47
48 READ_BCR(AUX_IDENTITY, cpu->core);
49
50 cpu->timers = read_aux_reg(ARC_REG_TIMERS_BCR);
51
52 cpu->vec_base = read_aux_reg(AUX_INTR_VEC_BASE);
53 if (cpu->vec_base == 0)
54 cpu->vec_base = (unsigned int)_int_vec_base_lds;
55
56 READ_BCR(ARC_REG_D_UNCACH_BCR, uncached_space);
57 cpu->uncached_base = uncached_space.start << 24;
58
59 cpu->extn.mul = read_aux_reg(ARC_REG_MUL_BCR);
60 cpu->extn.swap = read_aux_reg(ARC_REG_SWAP_BCR);
61 cpu->extn.norm = read_aux_reg(ARC_REG_NORM_BCR);
62 cpu->extn.minmax = read_aux_reg(ARC_REG_MIXMAX_BCR);
63 cpu->extn.barrel = read_aux_reg(ARC_REG_BARREL_BCR);
64 READ_BCR(ARC_REG_MAC_BCR, cpu->extn_mac_mul);
65
66 cpu->extn.ext_arith = read_aux_reg(ARC_REG_EXTARITH_BCR);
67 cpu->extn.crc = read_aux_reg(ARC_REG_CRC_BCR);
68
Vineet Gupta8b5850f2013-01-18 15:12:25 +053069 /* Note that we read the CCM BCRs independent of kernel config
70 * This is to catch the cases where user doesn't know that
71 * CCMs are present in hardware build
72 */
73 {
74 struct bcr_iccm iccm;
75 struct bcr_dccm dccm;
76 struct bcr_dccm_base dccm_base;
77 unsigned int bcr_32bit_val;
78
79 bcr_32bit_val = read_aux_reg(ARC_REG_ICCM_BCR);
80 if (bcr_32bit_val) {
81 iccm = *((struct bcr_iccm *)&bcr_32bit_val);
82 cpu->iccm.base_addr = iccm.base << 16;
83 cpu->iccm.sz = 0x2000 << (iccm.sz - 1);
84 }
85
86 bcr_32bit_val = read_aux_reg(ARC_REG_DCCM_BCR);
87 if (bcr_32bit_val) {
88 dccm = *((struct bcr_dccm *)&bcr_32bit_val);
89 cpu->dccm.sz = 0x800 << (dccm.sz);
90
91 READ_BCR(ARC_REG_DCCMBASE_BCR, dccm_base);
92 cpu->dccm.base_addr = dccm_base.addr << 8;
93 }
94 }
95
Vineet Guptaaf617422013-01-18 15:12:24 +053096 READ_BCR(ARC_REG_XY_MEM_BCR, cpu->extn_xymem);
97
Vineet Guptac121c502013-01-18 15:12:20 +053098 read_decode_mmu_bcr();
99 read_decode_cache_bcr();
Vineet Guptaaf617422013-01-18 15:12:24 +0530100
101 READ_BCR(ARC_REG_FP_BCR, cpu->fp);
102 READ_BCR(ARC_REG_DPFP_BCR, cpu->dpfp);
103}
104
105static const struct cpuinfo_data arc_cpu_tbl[] = {
106 { {0x10, "ARCTangent A5"}, 0x1F},
107 { {0x20, "ARC 600" }, 0x2F},
108 { {0x30, "ARC 700" }, 0x33},
109 { {0x34, "ARC 700 R4.10"}, 0x34},
110 { {0x00, NULL } }
111};
112
113char *arc_cpu_mumbojumbo(int cpu_id, char *buf, int len)
114{
115 int n = 0;
116 struct cpuinfo_arc *cpu = &cpuinfo_arc700[cpu_id];
117 struct bcr_identity *core = &cpu->core;
118 const struct cpuinfo_data *tbl;
119 int be = 0;
120#ifdef CONFIG_CPU_BIG_ENDIAN
121 be = 1;
122#endif
123 FIX_PTR(cpu);
124
125 n += scnprintf(buf + n, len - n,
126 "\nARC IDENTITY\t: Family [%#02x]"
127 " Cpu-id [%#02x] Chip-id [%#4x]\n",
128 core->family, core->cpu_id,
129 core->chip_id);
130
131 for (tbl = &arc_cpu_tbl[0]; tbl->info.id != 0; tbl++) {
132 if ((core->family >= tbl->info.id) &&
133 (core->family <= tbl->up_range)) {
134 n += scnprintf(buf + n, len - n,
135 "processor\t: %s %s\n",
136 tbl->info.str,
137 be ? "[Big Endian]" : "");
138 break;
139 }
140 }
141
142 if (tbl->info.id == 0)
143 n += scnprintf(buf + n, len - n, "UNKNOWN ARC Processor\n");
144
145 n += scnprintf(buf + n, len - n, "CPU speed\t: %u.%02u Mhz\n",
146 (unsigned int)(arc_get_core_freq() / 1000000),
147 (unsigned int)(arc_get_core_freq() / 10000) % 100);
148
149 n += scnprintf(buf + n, len - n, "Timers\t\t: %s %s\n",
150 (cpu->timers & 0x200) ? "TIMER1" : "",
151 (cpu->timers & 0x100) ? "TIMER0" : "");
152
153 n += scnprintf(buf + n, len - n, "Vect Tbl Base\t: %#x\n",
154 cpu->vec_base);
155
156 n += scnprintf(buf + n, len - n, "UNCACHED Base\t: %#x\n",
157 cpu->uncached_base);
158
159 return buf;
160}
161
162static const struct id_to_str mul_type_nm[] = {
163 { 0x0, "N/A"},
164 { 0x1, "32x32 (spl Result Reg)" },
165 { 0x2, "32x32 (ANY Result Reg)" }
166};
167
168static const struct id_to_str mac_mul_nm[] = {
169 {0x0, "N/A"},
170 {0x1, "N/A"},
171 {0x2, "Dual 16 x 16"},
172 {0x3, "N/A"},
173 {0x4, "32x16"},
174 {0x5, "N/A"},
175 {0x6, "Dual 16x16 and 32x16"}
176};
177
178char *arc_extn_mumbojumbo(int cpu_id, char *buf, int len)
179{
180 int n = 0;
181 struct cpuinfo_arc *cpu = &cpuinfo_arc700[cpu_id];
182
183 FIX_PTR(cpu);
184#define IS_AVAIL1(var, str) ((var) ? str : "")
185#define IS_AVAIL2(var, str) ((var == 0x2) ? str : "")
186#define IS_USED(var) ((var) ? "(in-use)" : "(not used)")
187
188 n += scnprintf(buf + n, len - n,
189 "Extn [700-Base]\t: %s %s %s %s %s %s\n",
190 IS_AVAIL2(cpu->extn.norm, "norm,"),
191 IS_AVAIL2(cpu->extn.barrel, "barrel-shift,"),
192 IS_AVAIL1(cpu->extn.swap, "swap,"),
193 IS_AVAIL2(cpu->extn.minmax, "minmax,"),
194 IS_AVAIL1(cpu->extn.crc, "crc,"),
195 IS_AVAIL2(cpu->extn.ext_arith, "ext-arith"));
196
197 n += scnprintf(buf + n, len - n, "Extn [700-MPY]\t: %s",
198 mul_type_nm[cpu->extn.mul].str);
199
200 n += scnprintf(buf + n, len - n, " MAC MPY: %s\n",
201 mac_mul_nm[cpu->extn_mac_mul.type].str);
202
203 if (cpu->core.family == 0x34) {
204 n += scnprintf(buf + n, len - n,
205 "Extn [700-4.10]\t: LLOCK/SCOND %s, SWAPE %s, RTSC %s\n",
206 IS_USED(__CONFIG_ARC_HAS_LLSC_VAL),
207 IS_USED(__CONFIG_ARC_HAS_SWAPE_VAL),
208 IS_USED(__CONFIG_ARC_HAS_RTSC_VAL));
209 }
210
211 n += scnprintf(buf + n, len - n, "Extn [CCM]\t: %s",
212 !(cpu->dccm.sz || cpu->iccm.sz) ? "N/A" : "");
213
214 if (cpu->dccm.sz)
215 n += scnprintf(buf + n, len - n, "DCCM: @ %x, %d KB ",
216 cpu->dccm.base_addr, TO_KB(cpu->dccm.sz));
217
218 if (cpu->iccm.sz)
219 n += scnprintf(buf + n, len - n, "ICCM: @ %x, %d KB",
220 cpu->iccm.base_addr, TO_KB(cpu->iccm.sz));
221
222 n += scnprintf(buf + n, len - n, "\nExtn [FPU]\t: %s",
223 !(cpu->fp.ver || cpu->dpfp.ver) ? "N/A" : "");
224
225 if (cpu->fp.ver)
226 n += scnprintf(buf + n, len - n, "SP [v%d] %s",
227 cpu->fp.ver, cpu->fp.fast ? "(fast)" : "");
228
229 if (cpu->dpfp.ver)
230 n += scnprintf(buf + n, len - n, "DP [v%d] %s",
231 cpu->dpfp.ver, cpu->dpfp.fast ? "(fast)" : "");
232
233 n += scnprintf(buf + n, len - n, "\n");
234
235#ifdef _ASM_GENERIC_UNISTD_H
236 n += scnprintf(buf + n, len - n,
237 "OS ABI [v2]\t: asm-generic/{unistd,stat,fcntl}\n");
238#endif
239
240 return buf;
241}
242
Vineet Gupta8b5850f2013-01-18 15:12:25 +0530243void __init arc_chk_ccms(void)
244{
245#if defined(CONFIG_ARC_HAS_DCCM) || defined(CONFIG_ARC_HAS_ICCM)
246 struct cpuinfo_arc *cpu = &cpuinfo_arc700[smp_processor_id()];
247
248#ifdef CONFIG_ARC_HAS_DCCM
249 /*
250 * DCCM can be arbit placed in hardware.
251 * Make sure it's placement/sz matches what Linux is built with
252 */
253 if ((unsigned int)__arc_dccm_base != cpu->dccm.base_addr)
254 panic("Linux built with incorrect DCCM Base address\n");
255
256 if (CONFIG_ARC_DCCM_SZ != cpu->dccm.sz)
257 panic("Linux built with incorrect DCCM Size\n");
258#endif
259
260#ifdef CONFIG_ARC_HAS_ICCM
261 if (CONFIG_ARC_ICCM_SZ != cpu->iccm.sz)
262 panic("Linux built with incorrect ICCM Size\n");
263#endif
264#endif
265}
266
Vineet Guptaaf617422013-01-18 15:12:24 +0530267/*
268 * Ensure that FP hardware and kernel config match
269 * -If hardware contains DPFP, kernel needs to save/restore FPU state
270 * across context switches
271 * -If hardware lacks DPFP, but kernel configured to save FPU state then
272 * kernel trying to access non-existant DPFP regs will crash
273 *
274 * We only check for Dbl precision Floating Point, because only DPFP
275 * hardware has dedicated regs which need to be saved/restored on ctx-sw
276 * (Single Precision uses core regs), thus kernel is kind of oblivious to it
277 */
278void __init arc_chk_fpu(void)
279{
280 struct cpuinfo_arc *cpu = &cpuinfo_arc700[smp_processor_id()];
281
282 if (cpu->dpfp.ver) {
283#ifndef CONFIG_ARC_FPU_SAVE_RESTORE
284 pr_warn("DPFP support broken in this kernel...\n");
285#endif
286 } else {
287#ifdef CONFIG_ARC_FPU_SAVE_RESTORE
288 panic("H/w lacks DPFP support, apps won't work\n");
289#endif
290 }
Vineet Guptac121c502013-01-18 15:12:20 +0530291}
292
293/*
294 * Initialize and setup the processor core
295 * This is called by all the CPUs thus should not do special case stuff
296 * such as only for boot CPU etc
297 */
298
299void __init setup_processor(void)
300{
Vineet Guptaaf617422013-01-18 15:12:24 +0530301 char str[512];
302 int cpu_id = smp_processor_id();
303
Vineet Guptac121c502013-01-18 15:12:20 +0530304 read_arc_build_cfg_regs();
305 arc_init_IRQ();
Vineet Guptaaf617422013-01-18 15:12:24 +0530306
307 printk(arc_cpu_mumbojumbo(cpu_id, str, sizeof(str)));
308
Vineet Guptac121c502013-01-18 15:12:20 +0530309 arc_mmu_init();
310 arc_cache_init();
Vineet Gupta8b5850f2013-01-18 15:12:25 +0530311 arc_chk_ccms();
Vineet Guptaaf617422013-01-18 15:12:24 +0530312
313 printk(arc_extn_mumbojumbo(cpu_id, str, sizeof(str)));
314
315#ifdef CONFIG_SMP
316 printk(arc_platform_smp_cpuinfo());
317#endif
318
319 arc_chk_fpu();
Vineet Guptac121c502013-01-18 15:12:20 +0530320}
321
322void __init __attribute__((weak)) arc_platform_early_init(void)
323{
324}
325
326void __init setup_arch(char **cmdline_p)
327{
328#ifdef CONFIG_CMDLINE_UBOOT
329 /* Make sure that a whitespace is inserted before */
330 strlcat(command_line, " ", sizeof(command_line));
331#endif
332 /*
333 * Append .config cmdline to base command line, which might already
334 * contain u-boot "bootargs" (handled by head.S, if so configured)
335 */
336 strlcat(command_line, CONFIG_CMDLINE, sizeof(command_line));
337
338 /* Save unparsed command line copy for /proc/cmdline */
339 strlcpy(boot_command_line, command_line, COMMAND_LINE_SIZE);
340 *cmdline_p = command_line;
341
Vineet Gupta03a6d282013-01-18 15:12:26 +0530342 machine_desc = setup_machine_fdt(__dtb_start);
343 if (!machine_desc)
344 panic("Embedded DT invalid\n");
Vineet Gupta999159a2013-01-22 17:00:52 +0530345
Vineet Guptac121c502013-01-18 15:12:20 +0530346 /* To force early parsing of things like mem=xxx */
347 parse_early_param();
348
349 /* Platform/board specific: e.g. early console registration */
350 arc_platform_early_init();
Vineet Gupta03a6d282013-01-18 15:12:26 +0530351 if (machine_desc->init_early)
352 machine_desc->init_early();
Vineet Guptac121c502013-01-18 15:12:20 +0530353
354 setup_processor();
355
Vineet Gupta41195d22013-01-18 15:12:23 +0530356#ifdef CONFIG_SMP
357 smp_init_cpus();
358#endif
359
Vineet Guptac121c502013-01-18 15:12:20 +0530360 setup_arch_memory();
361
Vineet Gupta999159a2013-01-22 17:00:52 +0530362 unflatten_device_tree();
363
Vineet Guptac121c502013-01-18 15:12:20 +0530364 /* Can be issue if someone passes cmd line arg "ro"
365 * But that is unlikely so keeping it as it is
366 */
367 root_mountflags &= ~MS_RDONLY;
368
369 console_verbose();
370
371#if defined(CONFIG_VT) && defined(CONFIG_DUMMY_CONSOLE)
372 conswitchp = &dummy_con;
373#endif
374
Vineet Gupta854a0d92013-01-22 17:03:19 +0530375 arc_unwind_init();
376 arc_unwind_setup();
Vineet Guptac121c502013-01-18 15:12:20 +0530377}
378
Vineet Gupta03a6d282013-01-18 15:12:26 +0530379static int __init customize_machine(void)
380{
381 /* Add platform devices */
382 if (machine_desc->init_machine)
383 machine_desc->init_machine();
384
385 return 0;
386}
387arch_initcall(customize_machine);
388
389static int __init init_late_machine(void)
390{
391 if (machine_desc->init_late)
392 machine_desc->init_late();
393
394 return 0;
395}
396late_initcall(init_late_machine);
Vineet Guptac121c502013-01-18 15:12:20 +0530397/*
398 * Get CPU information for use by the procfs.
399 */
400
401#define cpu_to_ptr(c) ((void *)(0xFFFF0000 | (unsigned int)(c)))
402#define ptr_to_cpu(p) (~0xFFFF0000UL & (unsigned int)(p))
403
404static int show_cpuinfo(struct seq_file *m, void *v)
405{
406 char *str;
407 int cpu_id = ptr_to_cpu(v);
408
409 str = (char *)__get_free_page(GFP_TEMPORARY);
410 if (!str)
411 goto done;
412
Vineet Guptaaf617422013-01-18 15:12:24 +0530413 seq_printf(m, arc_cpu_mumbojumbo(cpu_id, str, PAGE_SIZE));
Vineet Guptac121c502013-01-18 15:12:20 +0530414
415 seq_printf(m, "Bogo MIPS : \t%lu.%02lu\n",
416 loops_per_jiffy / (500000 / HZ),
417 (loops_per_jiffy / (5000 / HZ)) % 100);
418
Vineet Guptaaf617422013-01-18 15:12:24 +0530419 seq_printf(m, arc_mmu_mumbojumbo(cpu_id, str, PAGE_SIZE));
420
421 seq_printf(m, arc_cache_mumbojumbo(cpu_id, str, PAGE_SIZE));
422
423 seq_printf(m, arc_extn_mumbojumbo(cpu_id, str, PAGE_SIZE));
424
425#ifdef CONFIG_SMP
426 seq_printf(m, arc_platform_smp_cpuinfo());
427#endif
428
Vineet Guptac121c502013-01-18 15:12:20 +0530429 free_page((unsigned long)str);
430done:
431 seq_printf(m, "\n\n");
432
433 return 0;
434}
435
436static void *c_start(struct seq_file *m, loff_t *pos)
437{
438 /*
439 * Callback returns cpu-id to iterator for show routine, NULL to stop.
440 * However since NULL is also a valid cpu-id (0), we use a round-about
441 * way to pass it w/o having to kmalloc/free a 2 byte string.
442 * Encode cpu-id as 0xFFcccc, which is decoded by show routine.
443 */
444 return *pos < num_possible_cpus() ? cpu_to_ptr(*pos) : NULL;
445}
446
447static void *c_next(struct seq_file *m, void *v, loff_t *pos)
448{
449 ++*pos;
450 return c_start(m, pos);
451}
452
453static void c_stop(struct seq_file *m, void *v)
454{
455}
456
457const struct seq_operations cpuinfo_op = {
458 .start = c_start,
459 .next = c_next,
460 .stop = c_stop,
461 .show = show_cpuinfo
462};
463
464static DEFINE_PER_CPU(struct cpu, cpu_topology);
465
466static int __init topology_init(void)
467{
468 int cpu;
469
470 for_each_present_cpu(cpu)
471 register_cpu(&per_cpu(cpu_topology, cpu), cpu);
472
473 return 0;
474}
475
476subsys_initcall(topology_init);