xref: /openbmc/linux/arch/riscv/kernel/setup.c (revision 1804569d)
1 /*
2  * Copyright (C) 2009 Sunplus Core Technology Co., Ltd.
3  *  Chen Liqin <liqin.chen@sunplusct.com>
4  *  Lennox Wu <lennox.wu@sunplusct.com>
5  * Copyright (C) 2012 Regents of the University of California
6  *
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.
11  *
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.
16  *
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.,
20  */
21 
22 #include <linux/init.h>
23 #include <linux/mm.h>
24 #include <linux/memblock.h>
25 #include <linux/sched.h>
26 #include <linux/console.h>
27 #include <linux/screen_info.h>
28 #include <linux/of_fdt.h>
29 #include <linux/of_platform.h>
30 #include <linux/sched/task.h>
31 #include <linux/swiotlb.h>
32 
33 #include <asm/setup.h>
34 #include <asm/sections.h>
35 #include <asm/pgtable.h>
36 #include <asm/smp.h>
37 #include <asm/tlbflush.h>
38 #include <asm/thread_info.h>
39 
40 #ifdef CONFIG_DUMMY_CONSOLE
41 struct screen_info screen_info = {
42 	.orig_video_lines	= 30,
43 	.orig_video_cols	= 80,
44 	.orig_video_mode	= 0,
45 	.orig_video_ega_bx	= 0,
46 	.orig_video_isVGA	= 1,
47 	.orig_video_points	= 8
48 };
49 #endif
50 
51 /* The lucky hart to first increment this variable will boot the other cores */
52 atomic_t hart_lottery;
53 unsigned long boot_cpu_hartid;
54 
55 void __init parse_dtb(unsigned int hartid, void *dtb)
56 {
57 	if (early_init_dt_scan(__va(dtb)))
58 		return;
59 
60 	pr_err("No DTB passed to the kernel\n");
61 #ifdef CONFIG_CMDLINE_FORCE
62 	strlcpy(boot_command_line, CONFIG_CMDLINE, COMMAND_LINE_SIZE);
63 	pr_info("Forcing kernel command line to: %s\n", boot_command_line);
64 #endif
65 }
66 
67 void __init setup_arch(char **cmdline_p)
68 {
69 	init_mm.start_code = (unsigned long) _stext;
70 	init_mm.end_code   = (unsigned long) _etext;
71 	init_mm.end_data   = (unsigned long) _edata;
72 	init_mm.brk        = (unsigned long) _end;
73 
74 	*cmdline_p = boot_command_line;
75 
76 	parse_early_param();
77 
78 	setup_bootmem();
79 	paging_init();
80 	unflatten_device_tree();
81 
82 #ifdef CONFIG_SWIOTLB
83 	swiotlb_init(1);
84 #endif
85 
86 #ifdef CONFIG_SMP
87 	setup_smp();
88 #endif
89 
90 #ifdef CONFIG_DUMMY_CONSOLE
91 	conswitchp = &dummy_con;
92 #endif
93 
94 	riscv_fill_hwcap();
95 }
96