2 * Copyright (C) 2009 Sunplus Core Technology Co., Ltd.
5 * Copyright (C) 2012 Regents of the University of California
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, see the file COPYING, or write
19 * to the Free Software Foundation, Inc.,
22 #include <linux/init.h>
24 #include <linux/memblock.h>
25 #include <linux/sched.h>
26 #include <linux/initrd.h>
27 #include <linux/console.h>
28 #include <linux/screen_info.h>
29 #include <linux/of_fdt.h>
30 #include <linux/of_platform.h>
31 #include <linux/sched/task.h>
33 #include <asm/setup.h>
34 #include <asm/sections.h>
35 #include <asm/pgtable.h>
38 #include <asm/tlbflush.h>
39 #include <asm/thread_info.h>
41 #ifdef CONFIG_HVC_RISCV_SBI
42 #include <asm/hvc_riscv_sbi.h>
45 #ifdef CONFIG_DUMMY_CONSOLE
46 struct screen_info screen_info = {
47 .orig_video_lines = 30,
48 .orig_video_cols = 80,
50 .orig_video_ega_bx = 0,
51 .orig_video_isVGA = 1,
52 .orig_video_points = 8
56 #ifdef CONFIG_CMDLINE_BOOL
57 static char __initdata builtin_cmdline[COMMAND_LINE_SIZE] = CONFIG_CMDLINE;
58 #endif /* CONFIG_CMDLINE_BOOL */
60 unsigned long va_pa_offset;
61 unsigned long pfn_base;
63 /* The lucky hart to first increment this variable will boot the other cores */
64 atomic_t hart_lottery;
66 #ifdef CONFIG_BLK_DEV_INITRD
67 static void __init setup_initrd(void)
69 extern char __initramfs_start[];
70 extern unsigned long __initramfs_size;
73 if (__initramfs_size > 0) {
74 initrd_start = (unsigned long)(&__initramfs_start);
75 initrd_end = initrd_start + __initramfs_size;
78 if (initrd_start >= initrd_end) {
79 printk(KERN_INFO "initrd not found or empty");
82 if (__pa(initrd_end) > PFN_PHYS(max_low_pfn)) {
83 printk(KERN_ERR "initrd extends beyond end of memory");
87 size = initrd_end - initrd_start;
88 memblock_reserve(__pa(initrd_start), size);
89 initrd_below_start_ok = 1;
91 printk(KERN_INFO "Initial ramdisk at: 0x%p (%lu bytes)\n",
92 (void *)(initrd_start), size);
95 pr_cont(" - disabling initrd\n");
99 #endif /* CONFIG_BLK_DEV_INITRD */
101 pgd_t swapper_pg_dir[PTRS_PER_PGD] __page_aligned_bss;
102 pgd_t trampoline_pg_dir[PTRS_PER_PGD] __initdata __aligned(PAGE_SIZE);
104 #ifndef __PAGETABLE_PMD_FOLDED
105 #define NUM_SWAPPER_PMDS ((uintptr_t)-PAGE_OFFSET >> PGDIR_SHIFT)
106 pmd_t swapper_pmd[PTRS_PER_PMD*((-PAGE_OFFSET)/PGDIR_SIZE)] __page_aligned_bss;
107 pmd_t trampoline_pmd[PTRS_PER_PGD] __initdata __aligned(PAGE_SIZE);
110 asmlinkage void __init setup_vm(void)
114 uintptr_t pa = (uintptr_t) &_start;
115 pgprot_t prot = __pgprot(pgprot_val(PAGE_KERNEL) | _PAGE_EXEC);
117 va_pa_offset = PAGE_OFFSET - pa;
118 pfn_base = PFN_DOWN(pa);
120 /* Sanity check alignment and size */
121 BUG_ON((PAGE_OFFSET % PGDIR_SIZE) != 0);
122 BUG_ON((pa % (PAGE_SIZE * PTRS_PER_PTE)) != 0);
124 #ifndef __PAGETABLE_PMD_FOLDED
125 trampoline_pg_dir[(PAGE_OFFSET >> PGDIR_SHIFT) % PTRS_PER_PGD] =
126 pfn_pgd(PFN_DOWN((uintptr_t)trampoline_pmd),
127 __pgprot(_PAGE_TABLE));
128 trampoline_pmd[0] = pfn_pmd(PFN_DOWN(pa), prot);
130 for (i = 0; i < (-PAGE_OFFSET)/PGDIR_SIZE; ++i) {
131 size_t o = (PAGE_OFFSET >> PGDIR_SHIFT) % PTRS_PER_PGD + i;
133 pfn_pgd(PFN_DOWN((uintptr_t)swapper_pmd) + i,
134 __pgprot(_PAGE_TABLE));
136 for (i = 0; i < ARRAY_SIZE(swapper_pmd); i++)
137 swapper_pmd[i] = pfn_pmd(PFN_DOWN(pa + i * PMD_SIZE), prot);
139 trampoline_pg_dir[(PAGE_OFFSET >> PGDIR_SHIFT) % PTRS_PER_PGD] =
140 pfn_pgd(PFN_DOWN(pa), prot);
142 for (i = 0; i < (-PAGE_OFFSET)/PGDIR_SIZE; ++i) {
143 size_t o = (PAGE_OFFSET >> PGDIR_SHIFT) % PTRS_PER_PGD + i;
145 pfn_pgd(PFN_DOWN(pa + i * PGDIR_SIZE), prot);
150 void __init sbi_save(unsigned int hartid, void *dtb)
152 early_init_dt_scan(__va(dtb));
156 * Allow the user to manually add a memory region (in case DTS is broken);
157 * "mem_end=nn[KkMmGg]"
159 static int __init mem_end_override(char *p)
161 resource_size_t base, end;
165 base = (uintptr_t) __pa(PAGE_OFFSET);
166 end = memparse(p, &p) & PMD_MASK;
169 memblock_add(base, end - base);
172 early_param("mem_end", mem_end_override);
174 static void __init setup_bootmem(void)
176 struct memblock_region *reg;
177 phys_addr_t mem_size = 0;
179 /* Find the memory region containing the kernel */
180 for_each_memblock(memory, reg) {
181 phys_addr_t vmlinux_end = __pa(_end);
182 phys_addr_t end = reg->base + reg->size;
184 if (reg->base <= vmlinux_end && vmlinux_end <= end) {
186 * Reserve from the start of the region to the end of
189 memblock_reserve(reg->base, vmlinux_end - reg->base);
190 mem_size = min(reg->size, (phys_addr_t)-PAGE_OFFSET);
193 BUG_ON(mem_size == 0);
195 set_max_mapnr(PFN_DOWN(mem_size));
196 max_low_pfn = pfn_base + PFN_DOWN(mem_size);
198 #ifdef CONFIG_BLK_DEV_INITRD
200 #endif /* CONFIG_BLK_DEV_INITRD */
202 early_init_fdt_reserve_self();
203 early_init_fdt_scan_reserved_mem();
204 memblock_allow_resize();
208 void __init setup_arch(char **cmdline_p)
210 #if defined(CONFIG_HVC_RISCV_SBI)
211 if (likely(early_console == NULL)) {
212 early_console = &riscv_sbi_early_console_dev;
213 register_console(early_console);
217 #ifdef CONFIG_CMDLINE_BOOL
218 #ifdef CONFIG_CMDLINE_OVERRIDE
219 strlcpy(boot_command_line, builtin_cmdline, COMMAND_LINE_SIZE);
221 if (builtin_cmdline[0] != '\0') {
222 /* Append bootloader command line to built-in */
223 strlcat(builtin_cmdline, " ", COMMAND_LINE_SIZE);
224 strlcat(builtin_cmdline, boot_command_line, COMMAND_LINE_SIZE);
225 strlcpy(boot_command_line, builtin_cmdline, COMMAND_LINE_SIZE);
227 #endif /* CONFIG_CMDLINE_OVERRIDE */
228 #endif /* CONFIG_CMDLINE_BOOL */
229 *cmdline_p = boot_command_line;
233 init_mm.start_code = (unsigned long) _stext;
234 init_mm.end_code = (unsigned long) _etext;
235 init_mm.end_data = (unsigned long) _edata;
236 init_mm.brk = (unsigned long) _end;
240 unflatten_device_tree();
246 #ifdef CONFIG_DUMMY_CONSOLE
247 conswitchp = &dummy_con;
253 static int __init riscv_device_init(void)
255 return of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
257 subsys_initcall_sync(riscv_device_init);