xref: /openbmc/linux/arch/loongarch/include/asm/setup.h (revision 5626af8f)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * Copyright (C) 2020-2022 Loongson Technology Corporation Limited
4  */
5 
6 #ifndef _LOONGARCH_SETUP_H
7 #define _LOONGARCH_SETUP_H
8 
9 #include <linux/types.h>
10 #include <uapi/asm/setup.h>
11 
12 #define VECSIZE 0x200
13 
14 extern unsigned long eentry;
15 extern unsigned long tlbrentry;
16 extern char init_command_line[COMMAND_LINE_SIZE];
17 extern void tlb_init(int cpu);
18 extern void cpu_cache_init(void);
19 extern void cache_error_setup(void);
20 extern void per_cpu_trap_init(int cpu);
21 extern void set_handler(unsigned long offset, void *addr, unsigned long len);
22 extern void set_merr_handler(unsigned long offset, void *addr, unsigned long len);
23 
24 #endif /* __SETUP_H */
25