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
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>
14 * Marc Gauthier<marc@tensilica.com> <marc@alumni.uwaterloo.ca>
17 #include <linux/errno.h>
18 #include <linux/init.h>
19 #include <linux/proc_fs.h>
20 #include <linux/screen_info.h>
21 #include <linux/bootmem.h>
22 #include <linux/kernel.h>
24 #if defined(CONFIG_VGA_CONSOLE) || defined(CONFIG_DUMMY_CONSOLE)
25 # include <linux/console.h>
29 # include <linux/timex.h>
33 # include <linux/seq_file.h>
36 #include <asm/system.h>
37 #include <asm/bootparam.h>
38 #include <asm/pgtable.h>
39 #include <asm/processor.h>
40 #include <asm/timex.h>
41 #include <asm/platform.h>
43 #include <asm/setup.h>
44 #include <asm/param.h>
46 #if defined(CONFIG_VGA_CONSOLE) || defined(CONFIG_DUMMY_CONSOLE)
47 struct screen_info screen_info
= { 0, 24, 0, 0, 0, 80, 0, 0, 0, 24, 1, 16};
50 #ifdef CONFIG_BLK_DEV_FD
51 extern struct fd_ops no_fd_ops
;
52 struct fd_ops
*fd_ops
;
55 #if defined(CONFIG_BLK_DEV_IDE) || defined(CONFIG_BLK_DEV_IDE_MODULE)
56 extern struct ide_ops no_ide_ops
;
57 struct ide_ops
*ide_ops
;
60 extern struct rtc_ops no_rtc_ops
;
61 struct rtc_ops
*rtc_ops
;
63 #ifdef CONFIG_BLK_DEV_INITRD
64 extern void *initrd_start
;
65 extern void *initrd_end
;
66 extern void *__initrd_start
;
67 extern void *__initrd_end
;
68 int initrd_is_mapped
= 0;
69 extern int initrd_below_start_ok
;
72 unsigned char aux_device_present
;
73 extern unsigned long loops_per_jiffy
;
75 /* Command line specified as configuration option. */
77 static char __initdata command_line
[COMMAND_LINE_SIZE
];
79 #ifdef CONFIG_CMDLINE_BOOL
80 static char default_command_line
[COMMAND_LINE_SIZE
] __initdata
= CONFIG_CMDLINE
;
83 sysmem_info_t __initdata sysmem
;
85 #ifdef CONFIG_BLK_DEV_INITRD
89 extern void init_mmu(void);
92 * Boot parameter parsing.
94 * The Xtensa port uses a list of variable-sized tags to pass data to
95 * the kernel. The first tag must be a BP_TAG_FIRST tag for the list
96 * to be recognised. The list is terminated with a zero-sized
100 typedef struct tagtable
{
102 int (*parse
)(const bp_tag_t
*);
105 #define __tagtable(tag, fn) static tagtable_t __tagtable_##fn \
106 __attribute__((unused, __section__(".taglist"))) = { tag, fn }
108 /* parse current tag */
110 static int __init
parse_tag_mem(const bp_tag_t
*tag
)
112 meminfo_t
*mi
= (meminfo_t
*)(tag
->data
);
114 if (mi
->type
!= MEMORY_TYPE_CONVENTIONAL
)
117 if (sysmem
.nr_banks
>= SYSMEM_BANKS_MAX
) {
119 "Ignoring memory bank 0x%08lx size %ldKB\n",
120 (unsigned long)mi
->start
,
121 (unsigned long)mi
->end
- (unsigned long)mi
->start
);
124 sysmem
.bank
[sysmem
.nr_banks
].type
= mi
->type
;
125 sysmem
.bank
[sysmem
.nr_banks
].start
= PAGE_ALIGN(mi
->start
);
126 sysmem
.bank
[sysmem
.nr_banks
].end
= mi
->end
& PAGE_SIZE
;
132 __tagtable(BP_TAG_MEMORY
, parse_tag_mem
);
134 #ifdef CONFIG_BLK_DEV_INITRD
136 static int __init
parse_tag_initrd(const bp_tag_t
* tag
)
139 mi
= (meminfo_t
*)(tag
->data
);
140 initrd_start
= (void*)(mi
->start
);
141 initrd_end
= (void*)(mi
->end
);
146 __tagtable(BP_TAG_INITRD
, parse_tag_initrd
);
148 #endif /* CONFIG_BLK_DEV_INITRD */
150 static int __init
parse_tag_cmdline(const bp_tag_t
* tag
)
152 strncpy(command_line
, (char*)(tag
->data
), COMMAND_LINE_SIZE
);
153 command_line
[COMMAND_LINE_SIZE
- 1] = '\0';
157 __tagtable(BP_TAG_COMMAND_LINE
, parse_tag_cmdline
);
159 static int __init
parse_bootparam(const bp_tag_t
* tag
)
161 extern tagtable_t __tagtable_begin
, __tagtable_end
;
164 /* Boot parameters must start with a BP_TAG_FIRST tag. */
166 if (tag
->id
!= BP_TAG_FIRST
) {
167 printk(KERN_WARNING
"Invalid boot parameters!\n");
171 tag
= (bp_tag_t
*)((unsigned long)tag
+ sizeof(bp_tag_t
) + tag
->size
);
173 /* Parse all tags. */
175 while (tag
!= NULL
&& tag
->id
!= BP_TAG_LAST
) {
176 for (t
= &__tagtable_begin
; t
< &__tagtable_end
; t
++) {
177 if (tag
->id
== t
->tag
) {
182 if (t
== &__tagtable_end
)
183 printk(KERN_WARNING
"Ignoring tag "
184 "0x%08x\n", tag
->id
);
185 tag
= (bp_tag_t
*)((unsigned long)(tag
+ 1) + tag
->size
);
192 * Initialize architecture. (Early stage)
195 void __init
init_arch(bp_tag_t
*bp_start
)
198 #ifdef CONFIG_BLK_DEV_INITRD
199 initrd_start
= &__initrd_start
;
200 initrd_end
= &__initrd_end
;
205 #ifdef CONFIG_CMDLINE_BOOL
206 strcpy(command_line
, default_command_line
);
209 /* Parse boot parameters */
212 parse_bootparam(bp_start
);
214 if (sysmem
.nr_banks
== 0) {
216 sysmem
.bank
[0].start
= PLATFORM_DEFAULT_MEM_START
;
217 sysmem
.bank
[0].end
= PLATFORM_DEFAULT_MEM_START
218 + PLATFORM_DEFAULT_MEM_SIZE
;
221 /* Early hook for platforms */
223 platform_init(bp_start
);
225 /* Initialize MMU. */
231 * Initialize system. Setup memory and reserve regions.
236 extern char _WindowVectors_text_start
;
237 extern char _WindowVectors_text_end
;
238 extern char _DebugInterruptVector_literal_start
;
239 extern char _DebugInterruptVector_text_end
;
240 extern char _KernelExceptionVector_literal_start
;
241 extern char _KernelExceptionVector_text_end
;
242 extern char _UserExceptionVector_literal_start
;
243 extern char _UserExceptionVector_text_end
;
244 extern char _DoubleExceptionVector_literal_start
;
245 extern char _DoubleExceptionVector_text_end
;
247 void __init
setup_arch(char **cmdline_p
)
249 extern int mem_reserve(unsigned long, unsigned long, int);
250 extern void bootmem_init(void);
252 memcpy(boot_command_line
, command_line
, COMMAND_LINE_SIZE
);
253 boot_command_line
[COMMAND_LINE_SIZE
-1] = '\0';
254 *cmdline_p
= command_line
;
256 /* Reserve some memory regions */
258 #ifdef CONFIG_BLK_DEV_INITRD
259 if (initrd_start
< initrd_end
) {
260 initrd_is_mapped
= mem_reserve(__pa(initrd_start
),
261 __pa(initrd_end
), 0);
262 initrd_below_start_ok
= 1;
268 mem_reserve(__pa(&_stext
),__pa(&_end
), 1);
270 mem_reserve(__pa(&_WindowVectors_text_start
),
271 __pa(&_WindowVectors_text_end
), 0);
273 mem_reserve(__pa(&_DebugInterruptVector_literal_start
),
274 __pa(&_DebugInterruptVector_text_end
), 0);
276 mem_reserve(__pa(&_KernelExceptionVector_literal_start
),
277 __pa(&_KernelExceptionVector_text_end
), 0);
279 mem_reserve(__pa(&_UserExceptionVector_literal_start
),
280 __pa(&_UserExceptionVector_text_end
), 0);
282 mem_reserve(__pa(&_DoubleExceptionVector_literal_start
),
283 __pa(&_DoubleExceptionVector_text_end
), 0);
287 platform_setup(cmdline_p
);
293 # if defined(CONFIG_VGA_CONSOLE)
294 conswitchp
= &vga_con
;
295 # elif defined(CONFIG_DUMMY_CONSOLE)
296 conswitchp
= &dummy_con
;
301 platform_pcibios_init();
305 void machine_restart(char * cmd
)
310 void machine_halt(void)
316 void machine_power_off(void)
318 platform_power_off();
321 #ifdef CONFIG_PROC_FS
324 * Display some core information through /proc/cpuinfo.
328 c_show(struct seq_file
*f
, void *slot
)
330 /* high-level stuff */
331 seq_printf(f
,"processor\t: 0\n"
332 "vendor_id\t: Tensilica\n"
333 "model\t\t: Xtensa " XCHAL_HW_VERSION_NAME
"\n"
334 "core ID\t\t: " XCHAL_CORE_ID
"\n"
337 "cpu MHz\t\t: %lu.%02lu\n"
338 "bogomips\t: %lu.%02lu\n",
339 XCHAL_BUILD_UNIQUE_ID
,
340 XCHAL_HAVE_BE
? "big" : "little",
341 CCOUNT_PER_JIFFY
/(1000000/HZ
),
342 (CCOUNT_PER_JIFFY
/(10000/HZ
)) % 100,
343 loops_per_jiffy
/(500000/HZ
),
344 (loops_per_jiffy
/(5000/HZ
)) % 100);
346 seq_printf(f
,"flags\t\t: "
356 #if XCHAL_HAVE_DENSITY
359 #if XCHAL_HAVE_BOOLEANS
368 #if XCHAL_HAVE_MINMAX
374 #if XCHAL_HAVE_CLAMPS
386 #if XCHAL_HAVE_MUL32_HIGH
395 seq_printf(f
,"physical aregs\t: %d\n"
406 seq_printf(f
,"num ints\t: %d\n"
410 "debug level\t: %d\n",
411 XCHAL_NUM_INTERRUPTS
,
412 XCHAL_NUM_EXTINTERRUPTS
,
418 seq_printf(f
,"icache line size: %d\n"
419 "icache ways\t: %d\n"
420 "icache size\t: %d\n"
422 #if XCHAL_ICACHE_LINE_LOCKABLE
426 "dcache line size: %d\n"
427 "dcache ways\t: %d\n"
428 "dcache size\t: %d\n"
430 #if XCHAL_DCACHE_IS_WRITEBACK
433 #if XCHAL_DCACHE_LINE_LOCKABLE
437 XCHAL_ICACHE_LINESIZE
,
440 XCHAL_DCACHE_LINESIZE
,
448 * We show only CPU #0 info.
451 c_start(struct seq_file
*f
, loff_t
*pos
)
453 return (void *) ((*pos
== 0) ? (void *)1 : NULL
);
457 c_next(struct seq_file
*f
, void *v
, loff_t
*pos
)
463 c_stop(struct seq_file
*f
, void *v
)
467 const struct seq_operations cpuinfo_op
=
475 #endif /* CONFIG_PROC_FS */