2 * Copyright (C) 2007-2009 Michal Simek <monstr@monstr.eu>
3 * Copyright (C) 2007-2009 PetaLogix
4 * Copyright (C) 2006 Atmark Techno, Inc.
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
11 #include <linux/init.h>
12 #include <linux/clocksource.h>
13 #include <linux/string.h>
14 #include <linux/seq_file.h>
15 #include <linux/cpu.h>
16 #include <linux/initrd.h>
17 #include <linux/console.h>
18 #include <linux/debugfs.h>
20 #include <asm/setup.h>
21 #include <asm/sections.h>
24 #include <linux/bug.h>
25 #include <linux/param.h>
26 #include <linux/pci.h>
27 #include <linux/cache.h>
28 #include <linux/of_platform.h>
29 #include <linux/dma-mapping.h>
30 #include <asm/cacheflush.h>
31 #include <asm/entry.h>
32 #include <asm/cpuinfo.h>
35 #include <asm/pgtable.h>
37 DEFINE_PER_CPU(unsigned int, KSP
); /* Saved kernel stack pointer */
38 DEFINE_PER_CPU(unsigned int, KM
); /* Kernel/user mode */
39 DEFINE_PER_CPU(unsigned int, ENTRY_SP
); /* Saved SP on kernel entry */
40 DEFINE_PER_CPU(unsigned int, R11_SAVE
); /* Temp variable for entry */
41 DEFINE_PER_CPU(unsigned int, CURRENT_SAVE
); /* Saved current pointer */
43 unsigned int boot_cpuid
;
45 * Placed cmd_line to .data section because can be initialized from
46 * ASM code. Default position is BSS section which is cleared
47 * in machine_early_init().
49 char cmd_line
[COMMAND_LINE_SIZE
] __attribute__ ((section(".data")));
51 void __init
setup_arch(char **cmdline_p
)
53 *cmdline_p
= cmd_line
;
57 unflatten_device_tree();
61 microblaze_cache_init();
65 #ifdef CONFIG_EARLY_PRINTK
66 /* remap early console to virtual address */
73 #if defined(CONFIG_XILINX_CONSOLE)
74 conswitchp
= &xil_con
;
75 #elif defined(CONFIG_DUMMY_CONSOLE)
76 conswitchp
= &dummy_con
;
81 #ifdef CONFIG_MTD_UCLINUX
82 /* Handle both romfs and cramfs types, without generating unnecessary
83 code (ie no point checking for CRAMFS if it's not even enabled) */
84 inline unsigned get_romfs_len(unsigned *addr
)
86 #ifdef CONFIG_ROMFS_FS
87 if (memcmp(&addr
[0], "-rom1fs-", 8) == 0) /* romfs */
88 return be32_to_cpu(addr
[2]);
92 if (addr
[0] == le32_to_cpu(0x28cd3d45)) /* cramfs */
93 return le32_to_cpu(addr
[1]);
97 #endif /* CONFIG_MTD_UCLINUX_EBSS */
99 unsigned long kernel_tlb
;
101 void __init
machine_early_init(const char *cmdline
, unsigned int ram
,
102 unsigned int fdt
, unsigned int msr
, unsigned int tlb0
,
105 unsigned long *src
, *dst
;
106 unsigned int offset
= 0;
108 /* If CONFIG_MTD_UCLINUX is defined, assume ROMFS is at the
109 * end of kernel. There are two position which we want to check.
110 * The first is __init_end and the second __bss_start.
112 #ifdef CONFIG_MTD_UCLINUX
114 unsigned int romfs_base
;
115 char *old_klimit
= klimit
;
117 romfs_base
= (ram
? ram
: (unsigned int)&__init_end
);
118 romfs_size
= PAGE_ALIGN(get_romfs_len((unsigned *)romfs_base
));
120 romfs_base
= (unsigned int)&__bss_start
;
121 romfs_size
= PAGE_ALIGN(get_romfs_len((unsigned *)romfs_base
));
124 /* Move ROMFS out of BSS before clearing it */
125 if (romfs_size
> 0) {
126 memmove(&__bss_stop
, (int *)romfs_base
, romfs_size
);
127 klimit
+= romfs_size
;
131 /* clearing bss section */
132 memset(__bss_start
, 0, __bss_stop
-__bss_start
);
133 memset(_ssbss
, 0, _esbss
-_ssbss
);
137 /* initialize device tree for usage in early_printk */
138 early_init_devtree((void *)_fdt_start
);
140 #ifdef CONFIG_EARLY_PRINTK
141 setup_early_printk(NULL
);
144 /* setup kernel_tlb after BSS cleaning
145 * Maybe worth to move to asm code */
146 kernel_tlb
= tlb0
+ tlb1
;
147 /* printk("TLB1 0x%08x, TLB0 0x%08x, tlb 0x%x\n", tlb0,
148 tlb1, kernel_tlb); */
150 pr_info("Ramdisk addr 0x%08x, ", ram
);
152 pr_info("FDT at 0x%08x\n", fdt
);
154 pr_info("Compiled-in FDT at 0x%08x\n",
155 (unsigned int)_fdt_start
);
157 #ifdef CONFIG_MTD_UCLINUX
158 pr_info("Found romfs @ 0x%08x (0x%08x)\n",
159 romfs_base
, romfs_size
);
160 pr_info("#### klimit %p ####\n", old_klimit
);
161 BUG_ON(romfs_size
< 0); /* What else can we do? */
163 pr_info("Moved 0x%08x bytes from 0x%08x to 0x%08x\n",
164 romfs_size
, romfs_base
, (unsigned)&__bss_stop
);
166 pr_info("New klimit: 0x%08x\n", (unsigned)klimit
);
169 #if CONFIG_XILINX_MICROBLAZE0_USE_MSR_INSTR
171 pr_info("!!!Your kernel has setup MSR instruction but ");
172 pr_cont("CPU don't have it %x\n", msr
);
176 pr_info("!!!Your kernel not setup MSR instruction but ");
177 pr_cont
"CPU have it %x\n", msr
);
181 /* Do not copy reset vectors. offset = 0x2 means skip the first
182 * two instructions. dst is pointer to MB vectors which are placed
183 * in block ram. If you want to copy reset vector setup offset to 0x0 */
184 #if !CONFIG_MANUAL_RESET_VECTOR
187 dst
= (unsigned long *) (offset
* sizeof(u32
));
188 for (src
= __ivt_start
+ offset
; src
< __ivt_end
; src
++, dst
++)
191 /* Initialize global data */
192 per_cpu(KM
, 0) = 0x1; /* We start in kernel mode */
193 per_cpu(CURRENT_SAVE
, 0) = (unsigned long)current
;
196 void __init
time_init(void)
198 clocksource_of_init();
201 #ifdef CONFIG_DEBUG_FS
202 struct dentry
*of_debugfs_root
;
204 static int microblaze_debugfs_init(void)
206 of_debugfs_root
= debugfs_create_dir("microblaze", NULL
);
208 return of_debugfs_root
== NULL
;
210 arch_initcall(microblaze_debugfs_init
);
213 static int __init
debugfs_tlb(void)
217 if (!of_debugfs_root
)
220 d
= debugfs_create_u32("tlb_skip", S_IRUGO
, of_debugfs_root
, &tlb_skip
);
226 device_initcall(debugfs_tlb
);
230 static int dflt_bus_notify(struct notifier_block
*nb
,
231 unsigned long action
, void *data
)
233 struct device
*dev
= data
;
235 /* We are only intereted in device addition */
236 if (action
!= BUS_NOTIFY_ADD_DEVICE
)
239 set_dma_ops(dev
, &dma_direct_ops
);
244 static struct notifier_block dflt_plat_bus_notifier
= {
245 .notifier_call
= dflt_bus_notify
,
249 static int __init
setup_bus_notifier(void)
251 bus_register_notifier(&platform_bus_type
, &dflt_plat_bus_notifier
);
256 arch_initcall(setup_bus_notifier
);