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>
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>
30 # include <linux/timex.h>
34 # include <linux/seq_file.h>
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>
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};
51 #ifdef CONFIG_BLK_DEV_FD
52 extern struct fd_ops no_fd_ops
;
53 struct fd_ops
*fd_ops
;
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
;
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
;
79 sysmem_info_t __initdata sysmem
;
81 #ifdef CONFIG_BLK_DEV_INITRD
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
96 typedef struct tagtable
{
98 int (*parse
)(const bp_tag_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
)
113 if (sysmem
.nr_banks
>= SYSMEM_BANKS_MAX
) {
115 "Ignoring memory bank 0x%08lx size %ldKB\n",
116 (unsigned long)mi
->start
,
117 (unsigned long)mi
->end
- (unsigned long)mi
->start
);
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
;
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
)
135 mi
= (meminfo_t
*)(tag
->data
);
136 initrd_start
= (void*)(mi
->start
);
137 initrd_end
= (void*)(mi
->end
);
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';
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
;
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");
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
) {
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
);
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
;
201 #ifdef CONFIG_CMDLINE_BOOL
202 strcpy(command_line
, default_command_line
);
205 /* Parse boot parameters */
208 parse_bootparam(bp_start
);
210 if (sysmem
.nr_banks
== 0) {
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. */
227 * Initialize system. Setup memory and reserve regions.
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;
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);
283 platform_setup(cmdline_p
);
289 # if defined(CONFIG_VGA_CONSOLE)
290 conswitchp
= &vga_con
;
291 # elif defined(CONFIG_DUMMY_CONSOLE)
292 conswitchp
= &dummy_con
;
297 platform_pcibios_init();
301 void machine_restart(char * cmd
)
306 void machine_halt(void)
312 void machine_power_off(void)
314 platform_power_off();
317 #ifdef CONFIG_PROC_FS
320 * Display some core information through /proc/cpuinfo.
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"
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: "
352 #if XCHAL_HAVE_DENSITY
355 #if XCHAL_HAVE_BOOLEANS
364 #if XCHAL_HAVE_MINMAX
370 #if XCHAL_HAVE_CLAMPS
382 #if XCHAL_HAVE_MUL32_HIGH
391 seq_printf(f
,"physical aregs\t: %d\n"
402 seq_printf(f
,"num ints\t: %d\n"
406 "debug level\t: %d\n",
407 XCHAL_NUM_INTERRUPTS
,
408 XCHAL_NUM_EXTINTERRUPTS
,
414 seq_printf(f
,"icache line size: %d\n"
415 "icache ways\t: %d\n"
416 "icache size\t: %d\n"
418 #if XCHAL_ICACHE_LINE_LOCKABLE
422 "dcache line size: %d\n"
423 "dcache ways\t: %d\n"
424 "dcache size\t: %d\n"
426 #if XCHAL_DCACHE_IS_WRITEBACK
429 #if XCHAL_DCACHE_LINE_LOCKABLE
433 XCHAL_ICACHE_LINESIZE
,
436 XCHAL_DCACHE_LINESIZE
,
444 * We show only CPU #0 info.
447 c_start(struct seq_file
*f
, loff_t
*pos
)
449 return (void *) ((*pos
== 0) ? (void *)1 : NULL
);
453 c_next(struct seq_file
*f
, void *v
, loff_t
*pos
)
459 c_stop(struct seq_file
*f
, void *v
)
463 const struct seq_operations cpuinfo_op
=
471 #endif /* CONFIG_PROC_FS */