Linux 2.6.28-rc5
[cris-mirror.git] / arch / xtensa / kernel / setup.c
blob9606d2bd1dd974a4766fed7748836e6cab5e46b8
1 /*
2 * arch/xtensa/kernel/setup.c
4 * This file is subject to the terms and conditions of the GNU General Public
5 * License. See the file "COPYING" in the main directory of this archive
6 * for more details.
8 * Copyright (C) 1995 Linus Torvalds
9 * Copyright (C) 2001 - 2005 Tensilica Inc.
11 * Chris Zankel <chris@zankel.net>
12 * Joe Taylor <joe@tensilica.com, joetylr@yahoo.com>
13 * Kevin Chea
14 * Marc Gauthier<marc@tensilica.com> <marc@alumni.uwaterloo.ca>
17 #include <linux/errno.h>
18 #include <linux/init.h>
19 #include <linux/mm.h>
20 #include <linux/proc_fs.h>
21 #include <linux/screen_info.h>
22 #include <linux/bootmem.h>
23 #include <linux/kernel.h>
25 #if defined(CONFIG_VGA_CONSOLE) || defined(CONFIG_DUMMY_CONSOLE)
26 # include <linux/console.h>
27 #endif
29 #ifdef CONFIG_RTC
30 # include <linux/timex.h>
31 #endif
33 #ifdef CONFIG_PROC_FS
34 # include <linux/seq_file.h>
35 #endif
37 #include <asm/system.h>
38 #include <asm/bootparam.h>
39 #include <asm/pgtable.h>
40 #include <asm/processor.h>
41 #include <asm/timex.h>
42 #include <asm/platform.h>
43 #include <asm/page.h>
44 #include <asm/setup.h>
45 #include <asm/param.h>
47 #if defined(CONFIG_VGA_CONSOLE) || defined(CONFIG_DUMMY_CONSOLE)
48 struct screen_info screen_info = { 0, 24, 0, 0, 0, 80, 0, 0, 0, 24, 1, 16};
49 #endif
51 #ifdef CONFIG_BLK_DEV_FD
52 extern struct fd_ops no_fd_ops;
53 struct fd_ops *fd_ops;
54 #endif
56 extern struct rtc_ops no_rtc_ops;
57 struct rtc_ops *rtc_ops;
59 #ifdef CONFIG_BLK_DEV_INITRD
60 extern void *initrd_start;
61 extern void *initrd_end;
62 extern void *__initrd_start;
63 extern void *__initrd_end;
64 int initrd_is_mapped = 0;
65 extern int initrd_below_start_ok;
66 #endif
68 unsigned char aux_device_present;
69 extern unsigned long loops_per_jiffy;
71 /* Command line specified as configuration option. */
73 static char __initdata command_line[COMMAND_LINE_SIZE];
75 #ifdef CONFIG_CMDLINE_BOOL
76 static char default_command_line[COMMAND_LINE_SIZE] __initdata = CONFIG_CMDLINE;
77 #endif
79 sysmem_info_t __initdata sysmem;
81 #ifdef CONFIG_BLK_DEV_INITRD
82 int initrd_is_mapped;
83 #endif
85 extern void init_mmu(void);
88 * Boot parameter parsing.
90 * The Xtensa port uses a list of variable-sized tags to pass data to
91 * the kernel. The first tag must be a BP_TAG_FIRST tag for the list
92 * to be recognised. The list is terminated with a zero-sized
93 * BP_TAG_LAST tag.
96 typedef struct tagtable {
97 u32 tag;
98 int (*parse)(const bp_tag_t*);
99 } tagtable_t;
101 #define __tagtable(tag, fn) static tagtable_t __tagtable_##fn \
102 __attribute__((unused, __section__(".taglist"))) = { tag, fn }
104 /* parse current tag */
106 static int __init parse_tag_mem(const bp_tag_t *tag)
108 meminfo_t *mi = (meminfo_t*)(tag->data);
110 if (mi->type != MEMORY_TYPE_CONVENTIONAL)
111 return -1;
113 if (sysmem.nr_banks >= SYSMEM_BANKS_MAX) {
114 printk(KERN_WARNING
115 "Ignoring memory bank 0x%08lx size %ldKB\n",
116 (unsigned long)mi->start,
117 (unsigned long)mi->end - (unsigned long)mi->start);
118 return -EINVAL;
120 sysmem.bank[sysmem.nr_banks].type = mi->type;
121 sysmem.bank[sysmem.nr_banks].start = PAGE_ALIGN(mi->start);
122 sysmem.bank[sysmem.nr_banks].end = mi->end & PAGE_SIZE;
123 sysmem.nr_banks++;
125 return 0;
128 __tagtable(BP_TAG_MEMORY, parse_tag_mem);
130 #ifdef CONFIG_BLK_DEV_INITRD
132 static int __init parse_tag_initrd(const bp_tag_t* tag)
134 meminfo_t* mi;
135 mi = (meminfo_t*)(tag->data);
136 initrd_start = (void*)(mi->start);
137 initrd_end = (void*)(mi->end);
139 return 0;
142 __tagtable(BP_TAG_INITRD, parse_tag_initrd);
144 #endif /* CONFIG_BLK_DEV_INITRD */
146 static int __init parse_tag_cmdline(const bp_tag_t* tag)
148 strncpy(command_line, (char*)(tag->data), COMMAND_LINE_SIZE);
149 command_line[COMMAND_LINE_SIZE - 1] = '\0';
150 return 0;
153 __tagtable(BP_TAG_COMMAND_LINE, parse_tag_cmdline);
155 static int __init parse_bootparam(const bp_tag_t* tag)
157 extern tagtable_t __tagtable_begin, __tagtable_end;
158 tagtable_t *t;
160 /* Boot parameters must start with a BP_TAG_FIRST tag. */
162 if (tag->id != BP_TAG_FIRST) {
163 printk(KERN_WARNING "Invalid boot parameters!\n");
164 return 0;
167 tag = (bp_tag_t*)((unsigned long)tag + sizeof(bp_tag_t) + tag->size);
169 /* Parse all tags. */
171 while (tag != NULL && tag->id != BP_TAG_LAST) {
172 for (t = &__tagtable_begin; t < &__tagtable_end; t++) {
173 if (tag->id == t->tag) {
174 t->parse(tag);
175 break;
178 if (t == &__tagtable_end)
179 printk(KERN_WARNING "Ignoring tag "
180 "0x%08x\n", tag->id);
181 tag = (bp_tag_t*)((unsigned long)(tag + 1) + tag->size);
184 return 0;
188 * Initialize architecture. (Early stage)
191 void __init init_arch(bp_tag_t *bp_start)
194 #ifdef CONFIG_BLK_DEV_INITRD
195 initrd_start = &__initrd_start;
196 initrd_end = &__initrd_end;
197 #endif
199 sysmem.nr_banks = 0;
201 #ifdef CONFIG_CMDLINE_BOOL
202 strcpy(command_line, default_command_line);
203 #endif
205 /* Parse boot parameters */
207 if (bp_start)
208 parse_bootparam(bp_start);
210 if (sysmem.nr_banks == 0) {
211 sysmem.nr_banks = 1;
212 sysmem.bank[0].start = PLATFORM_DEFAULT_MEM_START;
213 sysmem.bank[0].end = PLATFORM_DEFAULT_MEM_START
214 + PLATFORM_DEFAULT_MEM_SIZE;
217 /* Early hook for platforms */
219 platform_init(bp_start);
221 /* Initialize MMU. */
223 init_mmu();
227 * Initialize system. Setup memory and reserve regions.
230 extern char _end;
231 extern char _stext;
232 extern char _WindowVectors_text_start;
233 extern char _WindowVectors_text_end;
234 extern char _DebugInterruptVector_literal_start;
235 extern char _DebugInterruptVector_text_end;
236 extern char _KernelExceptionVector_literal_start;
237 extern char _KernelExceptionVector_text_end;
238 extern char _UserExceptionVector_literal_start;
239 extern char _UserExceptionVector_text_end;
240 extern char _DoubleExceptionVector_literal_start;
241 extern char _DoubleExceptionVector_text_end;
243 void __init setup_arch(char **cmdline_p)
245 extern int mem_reserve(unsigned long, unsigned long, int);
246 extern void bootmem_init(void);
248 memcpy(boot_command_line, command_line, COMMAND_LINE_SIZE);
249 boot_command_line[COMMAND_LINE_SIZE-1] = '\0';
250 *cmdline_p = command_line;
252 /* Reserve some memory regions */
254 #ifdef CONFIG_BLK_DEV_INITRD
255 if (initrd_start < initrd_end) {
256 initrd_is_mapped = mem_reserve(__pa(initrd_start),
257 __pa(initrd_end), 0);
258 initrd_below_start_ok = 1;
259 } else {
260 initrd_start = 0;
262 #endif
264 mem_reserve(__pa(&_stext),__pa(&_end), 1);
266 mem_reserve(__pa(&_WindowVectors_text_start),
267 __pa(&_WindowVectors_text_end), 0);
269 mem_reserve(__pa(&_DebugInterruptVector_literal_start),
270 __pa(&_DebugInterruptVector_text_end), 0);
272 mem_reserve(__pa(&_KernelExceptionVector_literal_start),
273 __pa(&_KernelExceptionVector_text_end), 0);
275 mem_reserve(__pa(&_UserExceptionVector_literal_start),
276 __pa(&_UserExceptionVector_text_end), 0);
278 mem_reserve(__pa(&_DoubleExceptionVector_literal_start),
279 __pa(&_DoubleExceptionVector_text_end), 0);
281 bootmem_init();
283 platform_setup(cmdline_p);
286 paging_init();
288 #ifdef CONFIG_VT
289 # if defined(CONFIG_VGA_CONSOLE)
290 conswitchp = &vga_con;
291 # elif defined(CONFIG_DUMMY_CONSOLE)
292 conswitchp = &dummy_con;
293 # endif
294 #endif
296 #ifdef CONFIG_PCI
297 platform_pcibios_init();
298 #endif
301 void machine_restart(char * cmd)
303 platform_restart();
306 void machine_halt(void)
308 platform_halt();
309 while (1);
312 void machine_power_off(void)
314 platform_power_off();
315 while (1);
317 #ifdef CONFIG_PROC_FS
320 * Display some core information through /proc/cpuinfo.
323 static int
324 c_show(struct seq_file *f, void *slot)
326 /* high-level stuff */
327 seq_printf(f,"processor\t: 0\n"
328 "vendor_id\t: Tensilica\n"
329 "model\t\t: Xtensa " XCHAL_HW_VERSION_NAME "\n"
330 "core ID\t\t: " XCHAL_CORE_ID "\n"
331 "build ID\t: 0x%x\n"
332 "byte order\t: %s\n"
333 "cpu MHz\t\t: %lu.%02lu\n"
334 "bogomips\t: %lu.%02lu\n",
335 XCHAL_BUILD_UNIQUE_ID,
336 XCHAL_HAVE_BE ? "big" : "little",
337 CCOUNT_PER_JIFFY/(1000000/HZ),
338 (CCOUNT_PER_JIFFY/(10000/HZ)) % 100,
339 loops_per_jiffy/(500000/HZ),
340 (loops_per_jiffy/(5000/HZ)) % 100);
342 seq_printf(f,"flags\t\t: "
343 #if XCHAL_HAVE_NMI
344 "nmi "
345 #endif
346 #if XCHAL_HAVE_DEBUG
347 "debug "
348 # if XCHAL_HAVE_OCD
349 "ocd "
350 # endif
351 #endif
352 #if XCHAL_HAVE_DENSITY
353 "density "
354 #endif
355 #if XCHAL_HAVE_BOOLEANS
356 "boolean "
357 #endif
358 #if XCHAL_HAVE_LOOPS
359 "loop "
360 #endif
361 #if XCHAL_HAVE_NSA
362 "nsa "
363 #endif
364 #if XCHAL_HAVE_MINMAX
365 "minmax "
366 #endif
367 #if XCHAL_HAVE_SEXT
368 "sext "
369 #endif
370 #if XCHAL_HAVE_CLAMPS
371 "clamps "
372 #endif
373 #if XCHAL_HAVE_MAC16
374 "mac16 "
375 #endif
376 #if XCHAL_HAVE_MUL16
377 "mul16 "
378 #endif
379 #if XCHAL_HAVE_MUL32
380 "mul32 "
381 #endif
382 #if XCHAL_HAVE_MUL32_HIGH
383 "mul32h "
384 #endif
385 #if XCHAL_HAVE_FP
386 "fpu "
387 #endif
388 "\n");
390 /* Registers. */
391 seq_printf(f,"physical aregs\t: %d\n"
392 "misc regs\t: %d\n"
393 "ibreak\t\t: %d\n"
394 "dbreak\t\t: %d\n",
395 XCHAL_NUM_AREGS,
396 XCHAL_NUM_MISC_REGS,
397 XCHAL_NUM_IBREAK,
398 XCHAL_NUM_DBREAK);
401 /* Interrupt. */
402 seq_printf(f,"num ints\t: %d\n"
403 "ext ints\t: %d\n"
404 "int levels\t: %d\n"
405 "timers\t\t: %d\n"
406 "debug level\t: %d\n",
407 XCHAL_NUM_INTERRUPTS,
408 XCHAL_NUM_EXTINTERRUPTS,
409 XCHAL_NUM_INTLEVELS,
410 XCHAL_NUM_TIMERS,
411 XCHAL_DEBUGLEVEL);
413 /* Cache */
414 seq_printf(f,"icache line size: %d\n"
415 "icache ways\t: %d\n"
416 "icache size\t: %d\n"
417 "icache flags\t: "
418 #if XCHAL_ICACHE_LINE_LOCKABLE
419 "lock"
420 #endif
421 "\n"
422 "dcache line size: %d\n"
423 "dcache ways\t: %d\n"
424 "dcache size\t: %d\n"
425 "dcache flags\t: "
426 #if XCHAL_DCACHE_IS_WRITEBACK
427 "writeback"
428 #endif
429 #if XCHAL_DCACHE_LINE_LOCKABLE
430 "lock"
431 #endif
432 "\n",
433 XCHAL_ICACHE_LINESIZE,
434 XCHAL_ICACHE_WAYS,
435 XCHAL_ICACHE_SIZE,
436 XCHAL_DCACHE_LINESIZE,
437 XCHAL_DCACHE_WAYS,
438 XCHAL_DCACHE_SIZE);
440 return 0;
444 * We show only CPU #0 info.
446 static void *
447 c_start(struct seq_file *f, loff_t *pos)
449 return (void *) ((*pos == 0) ? (void *)1 : NULL);
452 static void *
453 c_next(struct seq_file *f, void *v, loff_t *pos)
455 return NULL;
458 static void
459 c_stop(struct seq_file *f, void *v)
463 const struct seq_operations cpuinfo_op =
465 start: c_start,
466 next: c_next,
467 stop: c_stop,
468 show: c_show
471 #endif /* CONFIG_PROC_FS */