blob: 6cc361c6751afb09d3a598c1c9a997ef0cb9d95e [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 Guptac121c502013-01-18 15:12:20 +053028
29#define FIX_PTR(x) __asm__ __volatile__(";" : "+r"(x))
30
31int running_on_hw = 1; /* vs. on ISS */
32
33char __initdata command_line[COMMAND_LINE_SIZE];
34
35struct task_struct *_current_task[NR_CPUS]; /* For stack switching */
36
37struct cpuinfo_arc cpuinfo_arc700[NR_CPUS];
38
Vineet Guptaaf617422013-01-18 15:12:24 +053039
Vineet Guptac121c502013-01-18 15:12:20 +053040void __init read_arc_build_cfg_regs(void)
41{
Vineet Guptaaf617422013-01-18 15:12:24 +053042 struct bcr_perip uncached_space;
43 struct cpuinfo_arc *cpu = &cpuinfo_arc700[smp_processor_id()];
44 FIX_PTR(cpu);
45
46 READ_BCR(AUX_IDENTITY, cpu->core);
47
48 cpu->timers = read_aux_reg(ARC_REG_TIMERS_BCR);
49
50 cpu->vec_base = read_aux_reg(AUX_INTR_VEC_BASE);
51 if (cpu->vec_base == 0)
52 cpu->vec_base = (unsigned int)_int_vec_base_lds;
53
54 READ_BCR(ARC_REG_D_UNCACH_BCR, uncached_space);
55 cpu->uncached_base = uncached_space.start << 24;
56
57 cpu->extn.mul = read_aux_reg(ARC_REG_MUL_BCR);
58 cpu->extn.swap = read_aux_reg(ARC_REG_SWAP_BCR);
59 cpu->extn.norm = read_aux_reg(ARC_REG_NORM_BCR);
60 cpu->extn.minmax = read_aux_reg(ARC_REG_MIXMAX_BCR);
61 cpu->extn.barrel = read_aux_reg(ARC_REG_BARREL_BCR);
62 READ_BCR(ARC_REG_MAC_BCR, cpu->extn_mac_mul);
63
64 cpu->extn.ext_arith = read_aux_reg(ARC_REG_EXTARITH_BCR);
65 cpu->extn.crc = read_aux_reg(ARC_REG_CRC_BCR);
66
Vineet Gupta8b5850f2013-01-18 15:12:25 +053067 /* Note that we read the CCM BCRs independent of kernel config
68 * This is to catch the cases where user doesn't know that
69 * CCMs are present in hardware build
70 */
71 {
72 struct bcr_iccm iccm;
73 struct bcr_dccm dccm;
74 struct bcr_dccm_base dccm_base;
75 unsigned int bcr_32bit_val;
76
77 bcr_32bit_val = read_aux_reg(ARC_REG_ICCM_BCR);
78 if (bcr_32bit_val) {
79 iccm = *((struct bcr_iccm *)&bcr_32bit_val);
80 cpu->iccm.base_addr = iccm.base << 16;
81 cpu->iccm.sz = 0x2000 << (iccm.sz - 1);
82 }
83
84 bcr_32bit_val = read_aux_reg(ARC_REG_DCCM_BCR);
85 if (bcr_32bit_val) {
86 dccm = *((struct bcr_dccm *)&bcr_32bit_val);
87 cpu->dccm.sz = 0x800 << (dccm.sz);
88
89 READ_BCR(ARC_REG_DCCMBASE_BCR, dccm_base);
90 cpu->dccm.base_addr = dccm_base.addr << 8;
91 }
92 }
93
Vineet Guptaaf617422013-01-18 15:12:24 +053094 READ_BCR(ARC_REG_XY_MEM_BCR, cpu->extn_xymem);
95
Vineet Guptac121c502013-01-18 15:12:20 +053096 read_decode_mmu_bcr();
97 read_decode_cache_bcr();
Vineet Guptaaf617422013-01-18 15:12:24 +053098
99 READ_BCR(ARC_REG_FP_BCR, cpu->fp);
100 READ_BCR(ARC_REG_DPFP_BCR, cpu->dpfp);
101}
102
103static const struct cpuinfo_data arc_cpu_tbl[] = {
104 { {0x10, "ARCTangent A5"}, 0x1F},
105 { {0x20, "ARC 600" }, 0x2F},
106 { {0x30, "ARC 700" }, 0x33},
107 { {0x34, "ARC 700 R4.10"}, 0x34},
108 { {0x00, NULL } }
109};
110
111char *arc_cpu_mumbojumbo(int cpu_id, char *buf, int len)
112{
113 int n = 0;
114 struct cpuinfo_arc *cpu = &cpuinfo_arc700[cpu_id];
115 struct bcr_identity *core = &cpu->core;
116 const struct cpuinfo_data *tbl;
117 int be = 0;
118#ifdef CONFIG_CPU_BIG_ENDIAN
119 be = 1;
120#endif
121 FIX_PTR(cpu);
122
123 n += scnprintf(buf + n, len - n,
124 "\nARC IDENTITY\t: Family [%#02x]"
125 " Cpu-id [%#02x] Chip-id [%#4x]\n",
126 core->family, core->cpu_id,
127 core->chip_id);
128
129 for (tbl = &arc_cpu_tbl[0]; tbl->info.id != 0; tbl++) {
130 if ((core->family >= tbl->info.id) &&
131 (core->family <= tbl->up_range)) {
132 n += scnprintf(buf + n, len - n,
133 "processor\t: %s %s\n",
134 tbl->info.str,
135 be ? "[Big Endian]" : "");
136 break;
137 }
138 }
139
140 if (tbl->info.id == 0)
141 n += scnprintf(buf + n, len - n, "UNKNOWN ARC Processor\n");
142
143 n += scnprintf(buf + n, len - n, "CPU speed\t: %u.%02u Mhz\n",
144 (unsigned int)(arc_get_core_freq() / 1000000),
145 (unsigned int)(arc_get_core_freq() / 10000) % 100);
146
147 n += scnprintf(buf + n, len - n, "Timers\t\t: %s %s\n",
148 (cpu->timers & 0x200) ? "TIMER1" : "",
149 (cpu->timers & 0x100) ? "TIMER0" : "");
150
151 n += scnprintf(buf + n, len - n, "Vect Tbl Base\t: %#x\n",
152 cpu->vec_base);
153
154 n += scnprintf(buf + n, len - n, "UNCACHED Base\t: %#x\n",
155 cpu->uncached_base);
156
157 return buf;
158}
159
160static const struct id_to_str mul_type_nm[] = {
161 { 0x0, "N/A"},
162 { 0x1, "32x32 (spl Result Reg)" },
163 { 0x2, "32x32 (ANY Result Reg)" }
164};
165
166static const struct id_to_str mac_mul_nm[] = {
167 {0x0, "N/A"},
168 {0x1, "N/A"},
169 {0x2, "Dual 16 x 16"},
170 {0x3, "N/A"},
171 {0x4, "32x16"},
172 {0x5, "N/A"},
173 {0x6, "Dual 16x16 and 32x16"}
174};
175
176char *arc_extn_mumbojumbo(int cpu_id, char *buf, int len)
177{
178 int n = 0;
179 struct cpuinfo_arc *cpu = &cpuinfo_arc700[cpu_id];
180
181 FIX_PTR(cpu);
182#define IS_AVAIL1(var, str) ((var) ? str : "")
183#define IS_AVAIL2(var, str) ((var == 0x2) ? str : "")
184#define IS_USED(var) ((var) ? "(in-use)" : "(not used)")
185
186 n += scnprintf(buf + n, len - n,
187 "Extn [700-Base]\t: %s %s %s %s %s %s\n",
188 IS_AVAIL2(cpu->extn.norm, "norm,"),
189 IS_AVAIL2(cpu->extn.barrel, "barrel-shift,"),
190 IS_AVAIL1(cpu->extn.swap, "swap,"),
191 IS_AVAIL2(cpu->extn.minmax, "minmax,"),
192 IS_AVAIL1(cpu->extn.crc, "crc,"),
193 IS_AVAIL2(cpu->extn.ext_arith, "ext-arith"));
194
195 n += scnprintf(buf + n, len - n, "Extn [700-MPY]\t: %s",
196 mul_type_nm[cpu->extn.mul].str);
197
198 n += scnprintf(buf + n, len - n, " MAC MPY: %s\n",
199 mac_mul_nm[cpu->extn_mac_mul.type].str);
200
201 if (cpu->core.family == 0x34) {
202 n += scnprintf(buf + n, len - n,
203 "Extn [700-4.10]\t: LLOCK/SCOND %s, SWAPE %s, RTSC %s\n",
204 IS_USED(__CONFIG_ARC_HAS_LLSC_VAL),
205 IS_USED(__CONFIG_ARC_HAS_SWAPE_VAL),
206 IS_USED(__CONFIG_ARC_HAS_RTSC_VAL));
207 }
208
209 n += scnprintf(buf + n, len - n, "Extn [CCM]\t: %s",
210 !(cpu->dccm.sz || cpu->iccm.sz) ? "N/A" : "");
211
212 if (cpu->dccm.sz)
213 n += scnprintf(buf + n, len - n, "DCCM: @ %x, %d KB ",
214 cpu->dccm.base_addr, TO_KB(cpu->dccm.sz));
215
216 if (cpu->iccm.sz)
217 n += scnprintf(buf + n, len - n, "ICCM: @ %x, %d KB",
218 cpu->iccm.base_addr, TO_KB(cpu->iccm.sz));
219
220 n += scnprintf(buf + n, len - n, "\nExtn [FPU]\t: %s",
221 !(cpu->fp.ver || cpu->dpfp.ver) ? "N/A" : "");
222
223 if (cpu->fp.ver)
224 n += scnprintf(buf + n, len - n, "SP [v%d] %s",
225 cpu->fp.ver, cpu->fp.fast ? "(fast)" : "");
226
227 if (cpu->dpfp.ver)
228 n += scnprintf(buf + n, len - n, "DP [v%d] %s",
229 cpu->dpfp.ver, cpu->dpfp.fast ? "(fast)" : "");
230
231 n += scnprintf(buf + n, len - n, "\n");
232
233#ifdef _ASM_GENERIC_UNISTD_H
234 n += scnprintf(buf + n, len - n,
235 "OS ABI [v2]\t: asm-generic/{unistd,stat,fcntl}\n");
236#endif
237
238 return buf;
239}
240
Vineet Gupta8b5850f2013-01-18 15:12:25 +0530241void __init arc_chk_ccms(void)
242{
243#if defined(CONFIG_ARC_HAS_DCCM) || defined(CONFIG_ARC_HAS_ICCM)
244 struct cpuinfo_arc *cpu = &cpuinfo_arc700[smp_processor_id()];
245
246#ifdef CONFIG_ARC_HAS_DCCM
247 /*
248 * DCCM can be arbit placed in hardware.
249 * Make sure it's placement/sz matches what Linux is built with
250 */
251 if ((unsigned int)__arc_dccm_base != cpu->dccm.base_addr)
252 panic("Linux built with incorrect DCCM Base address\n");
253
254 if (CONFIG_ARC_DCCM_SZ != cpu->dccm.sz)
255 panic("Linux built with incorrect DCCM Size\n");
256#endif
257
258#ifdef CONFIG_ARC_HAS_ICCM
259 if (CONFIG_ARC_ICCM_SZ != cpu->iccm.sz)
260 panic("Linux built with incorrect ICCM Size\n");
261#endif
262#endif
263}
264
Vineet Guptaaf617422013-01-18 15:12:24 +0530265/*
266 * Ensure that FP hardware and kernel config match
267 * -If hardware contains DPFP, kernel needs to save/restore FPU state
268 * across context switches
269 * -If hardware lacks DPFP, but kernel configured to save FPU state then
270 * kernel trying to access non-existant DPFP regs will crash
271 *
272 * We only check for Dbl precision Floating Point, because only DPFP
273 * hardware has dedicated regs which need to be saved/restored on ctx-sw
274 * (Single Precision uses core regs), thus kernel is kind of oblivious to it
275 */
276void __init arc_chk_fpu(void)
277{
278 struct cpuinfo_arc *cpu = &cpuinfo_arc700[smp_processor_id()];
279
280 if (cpu->dpfp.ver) {
281#ifndef CONFIG_ARC_FPU_SAVE_RESTORE
282 pr_warn("DPFP support broken in this kernel...\n");
283#endif
284 } else {
285#ifdef CONFIG_ARC_FPU_SAVE_RESTORE
286 panic("H/w lacks DPFP support, apps won't work\n");
287#endif
288 }
Vineet Guptac121c502013-01-18 15:12:20 +0530289}
290
291/*
292 * Initialize and setup the processor core
293 * This is called by all the CPUs thus should not do special case stuff
294 * such as only for boot CPU etc
295 */
296
297void __init setup_processor(void)
298{
Vineet Guptaaf617422013-01-18 15:12:24 +0530299 char str[512];
300 int cpu_id = smp_processor_id();
301
Vineet Guptac121c502013-01-18 15:12:20 +0530302 read_arc_build_cfg_regs();
303 arc_init_IRQ();
Vineet Guptaaf617422013-01-18 15:12:24 +0530304
305 printk(arc_cpu_mumbojumbo(cpu_id, str, sizeof(str)));
306
Vineet Guptac121c502013-01-18 15:12:20 +0530307 arc_mmu_init();
308 arc_cache_init();
Vineet Gupta8b5850f2013-01-18 15:12:25 +0530309 arc_chk_ccms();
Vineet Guptaaf617422013-01-18 15:12:24 +0530310
311 printk(arc_extn_mumbojumbo(cpu_id, str, sizeof(str)));
312
313#ifdef CONFIG_SMP
314 printk(arc_platform_smp_cpuinfo());
315#endif
316
317 arc_chk_fpu();
Vineet Guptac121c502013-01-18 15:12:20 +0530318}
319
320void __init __attribute__((weak)) arc_platform_early_init(void)
321{
322}
323
324void __init setup_arch(char **cmdline_p)
325{
Vineet Gupta999159a2013-01-22 17:00:52 +0530326 int rc;
327
Vineet Guptac121c502013-01-18 15:12:20 +0530328#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 Gupta999159a2013-01-22 17:00:52 +0530342 rc = setup_machine_fdt(__dtb_start);
343
Vineet Guptac121c502013-01-18 15:12:20 +0530344 /* To force early parsing of things like mem=xxx */
345 parse_early_param();
346
347 /* Platform/board specific: e.g. early console registration */
348 arc_platform_early_init();
349
350 setup_processor();
351
Vineet Gupta41195d22013-01-18 15:12:23 +0530352#ifdef CONFIG_SMP
353 smp_init_cpus();
354#endif
355
Vineet Guptac121c502013-01-18 15:12:20 +0530356 setup_arch_memory();
357
Vineet Gupta999159a2013-01-22 17:00:52 +0530358 unflatten_device_tree();
359
Vineet Guptac121c502013-01-18 15:12:20 +0530360 /* Can be issue if someone passes cmd line arg "ro"
361 * But that is unlikely so keeping it as it is
362 */
363 root_mountflags &= ~MS_RDONLY;
364
365 console_verbose();
366
367#if defined(CONFIG_VT) && defined(CONFIG_DUMMY_CONSOLE)
368 conswitchp = &dummy_con;
369#endif
370
Vineet Gupta854a0d92013-01-22 17:03:19 +0530371 arc_unwind_init();
372 arc_unwind_setup();
Vineet Guptac121c502013-01-18 15:12:20 +0530373}
374
375/*
376 * Get CPU information for use by the procfs.
377 */
378
379#define cpu_to_ptr(c) ((void *)(0xFFFF0000 | (unsigned int)(c)))
380#define ptr_to_cpu(p) (~0xFFFF0000UL & (unsigned int)(p))
381
382static int show_cpuinfo(struct seq_file *m, void *v)
383{
384 char *str;
385 int cpu_id = ptr_to_cpu(v);
386
387 str = (char *)__get_free_page(GFP_TEMPORARY);
388 if (!str)
389 goto done;
390
Vineet Guptaaf617422013-01-18 15:12:24 +0530391 seq_printf(m, arc_cpu_mumbojumbo(cpu_id, str, PAGE_SIZE));
Vineet Guptac121c502013-01-18 15:12:20 +0530392
393 seq_printf(m, "Bogo MIPS : \t%lu.%02lu\n",
394 loops_per_jiffy / (500000 / HZ),
395 (loops_per_jiffy / (5000 / HZ)) % 100);
396
Vineet Guptaaf617422013-01-18 15:12:24 +0530397 seq_printf(m, arc_mmu_mumbojumbo(cpu_id, str, PAGE_SIZE));
398
399 seq_printf(m, arc_cache_mumbojumbo(cpu_id, str, PAGE_SIZE));
400
401 seq_printf(m, arc_extn_mumbojumbo(cpu_id, str, PAGE_SIZE));
402
403#ifdef CONFIG_SMP
404 seq_printf(m, arc_platform_smp_cpuinfo());
405#endif
406
Vineet Guptac121c502013-01-18 15:12:20 +0530407 free_page((unsigned long)str);
408done:
409 seq_printf(m, "\n\n");
410
411 return 0;
412}
413
414static void *c_start(struct seq_file *m, loff_t *pos)
415{
416 /*
417 * Callback returns cpu-id to iterator for show routine, NULL to stop.
418 * However since NULL is also a valid cpu-id (0), we use a round-about
419 * way to pass it w/o having to kmalloc/free a 2 byte string.
420 * Encode cpu-id as 0xFFcccc, which is decoded by show routine.
421 */
422 return *pos < num_possible_cpus() ? cpu_to_ptr(*pos) : NULL;
423}
424
425static void *c_next(struct seq_file *m, void *v, loff_t *pos)
426{
427 ++*pos;
428 return c_start(m, pos);
429}
430
431static void c_stop(struct seq_file *m, void *v)
432{
433}
434
435const struct seq_operations cpuinfo_op = {
436 .start = c_start,
437 .next = c_next,
438 .stop = c_stop,
439 .show = show_cpuinfo
440};
441
442static DEFINE_PER_CPU(struct cpu, cpu_topology);
443
444static int __init topology_init(void)
445{
446 int cpu;
447
448 for_each_present_cpu(cpu)
449 register_cpu(&per_cpu(cpu_topology, cpu), cpu);
450
451 return 0;
452}
453
454subsys_initcall(topology_init);