blob: 1c3f18ba8af12e3a21d7f23a99e77c8f2c529c66 [file] [log] [blame]
Michal Simekec9f9102009-03-27 14:25:24 +01001/*
2 * Copyright (C) 2007-2009 Michal Simek <monstr@monstr.eu>
3 * Copyright (C) 2007-2009 PetaLogix
4 * Copyright (C) 2006 Atmark Techno, Inc.
5 *
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file "COPYING" in the main directory of this archive
8 * for more details.
9 */
10
11#include <linux/init.h>
12#include <linux/string.h>
13#include <linux/seq_file.h>
14#include <linux/cpu.h>
15#include <linux/initrd.h>
16#include <linux/console.h>
17#include <linux/debugfs.h>
18
19#include <asm/setup.h>
20#include <asm/sections.h>
21#include <asm/page.h>
22#include <linux/io.h>
23#include <linux/bug.h>
24#include <linux/param.h>
25#include <linux/cache.h>
26#include <asm/cacheflush.h>
27#include <asm/entry.h>
28#include <asm/cpuinfo.h>
29
30#include <asm/system.h>
31#include <asm/prom.h>
32#include <asm/pgtable.h>
33
34DEFINE_PER_CPU(unsigned int, KSP); /* Saved kernel stack pointer */
35DEFINE_PER_CPU(unsigned int, KM); /* Kernel/user mode */
36DEFINE_PER_CPU(unsigned int, ENTRY_SP); /* Saved SP on kernel entry */
37DEFINE_PER_CPU(unsigned int, R11_SAVE); /* Temp variable for entry */
38DEFINE_PER_CPU(unsigned int, CURRENT_SAVE); /* Saved current pointer */
39
40unsigned int boot_cpuid;
41char cmd_line[COMMAND_LINE_SIZE];
42
43void __init setup_arch(char **cmdline_p)
44{
Michal Simekec9f9102009-03-27 14:25:24 +010045 *cmdline_p = cmd_line;
46
47 console_verbose();
48
49 unflatten_device_tree();
50
51 /* NOTE I think that this function is not necessary to call */
52 /* irq_early_init(); */
53 setup_cpuinfo();
54
55 __invalidate_icache_all();
56 __enable_icache();
57
58 __invalidate_dcache_all();
59 __enable_dcache();
60
Michal Simekec9f9102009-03-27 14:25:24 +010061 setup_memory();
62
63#if defined(CONFIG_SELFMOD_INTC) || defined(CONFIG_SELFMOD_TIMER)
64 printk(KERN_NOTICE "Self modified code enable\n");
65#endif
66
67#ifdef CONFIG_VT
68#if defined(CONFIG_XILINX_CONSOLE)
69 conswitchp = &xil_con;
70#elif defined(CONFIG_DUMMY_CONSOLE)
71 conswitchp = &dummy_con;
72#endif
73#endif
74}
75
76#ifdef CONFIG_MTD_UCLINUX
77/* Handle both romfs and cramfs types, without generating unnecessary
78 code (ie no point checking for CRAMFS if it's not even enabled) */
79inline unsigned get_romfs_len(unsigned *addr)
80{
81#ifdef CONFIG_ROMFS_FS
82 if (memcmp(&addr[0], "-rom1fs-", 8) == 0) /* romfs */
83 return be32_to_cpu(addr[2]);
84#endif
85
86#ifdef CONFIG_CRAMFS
87 if (addr[0] == le32_to_cpu(0x28cd3d45)) /* cramfs */
88 return le32_to_cpu(addr[1]);
89#endif
90 return 0;
91}
92#endif /* CONFIG_MTD_UCLINUX_EBSS */
93
94void __init machine_early_init(const char *cmdline, unsigned int ram,
Michal Simek26224342009-07-30 14:31:23 +020095 unsigned int fdt, unsigned int msr)
Michal Simekec9f9102009-03-27 14:25:24 +010096{
97 unsigned long *src, *dst = (unsigned long *)0x0;
98
Michal Simekcda1fd52009-05-19 14:33:47 +020099 /* If CONFIG_MTD_UCLINUX is defined, assume ROMFS is at the
100 * end of kernel. There are two position which we want to check.
101 * The first is __init_end and the second __bss_start.
102 */
103#ifdef CONFIG_MTD_UCLINUX
104 int romfs_size;
105 unsigned int romfs_base;
106 char *old_klimit = klimit;
107
108 romfs_base = (ram ? ram : (unsigned int)&__init_end);
109 romfs_size = PAGE_ALIGN(get_romfs_len((unsigned *)romfs_base));
110 if (!romfs_size) {
111 romfs_base = (unsigned int)&__bss_start;
112 romfs_size = PAGE_ALIGN(get_romfs_len((unsigned *)romfs_base));
113 }
114
115 /* Move ROMFS out of BSS before clearing it */
116 if (romfs_size > 0) {
117 memmove(&_ebss, (int *)romfs_base, romfs_size);
118 klimit += romfs_size;
119 }
120#endif
121
Michal Simekec9f9102009-03-27 14:25:24 +0100122/* clearing bss section */
123 memset(__bss_start, 0, __bss_stop-__bss_start);
124 memset(_ssbss, 0, _esbss-_ssbss);
125
Michal Simek1dff89a2009-05-21 08:20:30 +0200126 /* Copy command line passed from bootloader */
Michal Simekec9f9102009-03-27 14:25:24 +0100127#ifndef CONFIG_CMDLINE_BOOL
128 if (cmdline && cmdline[0] != '\0')
129 strlcpy(cmd_line, cmdline, COMMAND_LINE_SIZE);
130#endif
131
Michal Simekbf2d8092009-12-10 12:07:02 +0100132 lockdep_init();
133
Michal Simekec9f9102009-03-27 14:25:24 +0100134/* initialize device tree for usage in early_printk */
135 early_init_devtree((void *)_fdt_start);
136
137#ifdef CONFIG_EARLY_PRINTK
138 setup_early_printk(NULL);
139#endif
140
Michal Simek74510f22009-06-22 10:28:40 +0200141 early_printk("Ramdisk addr 0x%08x, ", ram);
142 if (fdt)
143 early_printk("FDT at 0x%08x\n", fdt);
144 else
145 early_printk("Compiled-in FDT at 0x%08x\n",
146 (unsigned int)_fdt_start);
Michal Simekec9f9102009-03-27 14:25:24 +0100147
148#ifdef CONFIG_MTD_UCLINUX
Michal Simekcda1fd52009-05-19 14:33:47 +0200149 early_printk("Found romfs @ 0x%08x (0x%08x)\n",
150 romfs_base, romfs_size);
151 early_printk("#### klimit %p ####\n", old_klimit);
152 BUG_ON(romfs_size < 0); /* What else can we do? */
Michal Simekec9f9102009-03-27 14:25:24 +0100153
Michal Simekcda1fd52009-05-19 14:33:47 +0200154 early_printk("Moved 0x%08x bytes from 0x%08x to 0x%08x\n",
155 romfs_size, romfs_base, (unsigned)&_ebss);
Michal Simekec9f9102009-03-27 14:25:24 +0100156
Michal Simekcda1fd52009-05-19 14:33:47 +0200157 early_printk("New klimit: 0x%08x\n", (unsigned)klimit);
Michal Simekec9f9102009-03-27 14:25:24 +0100158#endif
159
Michal Simek26224342009-07-30 14:31:23 +0200160#if CONFIG_XILINX_MICROBLAZE0_USE_MSR_INSTR
161 if (msr)
162 early_printk("!!!Your kernel has setup MSR instruction but "
163 "CPU don't have it %d\n", msr);
164#else
165 if (!msr)
166 early_printk("!!!Your kernel not setup MSR instruction but "
167 "CPU have it %d\n", msr);
168#endif
169
Michal Simekec9f9102009-03-27 14:25:24 +0100170 for (src = __ivt_start; src < __ivt_end; src++, dst++)
171 *dst = *src;
172
173 /* Initialize global data */
174 per_cpu(KM, 0) = 0x1; /* We start in kernel mode */
175 per_cpu(CURRENT_SAVE, 0) = (unsigned long)current;
176}
177
178#ifdef CONFIG_DEBUG_FS
179struct dentry *of_debugfs_root;
180
181static int microblaze_debugfs_init(void)
182{
183 of_debugfs_root = debugfs_create_dir("microblaze", NULL);
184
185 return of_debugfs_root == NULL;
186}
187arch_initcall(microblaze_debugfs_init);
188#endif