1
2
3
4
5
6
7
8
9
10 #ifndef _ASM_MICROBLAZE_SETUP_H
11 #define _ASM_MICROBLAZE_SETUP_H
12
13 #include <uapi/asm/setup.h>
14
15 # ifndef __ASSEMBLY__
16 extern unsigned int boot_cpuid;
17
18 extern char cmd_line[COMMAND_LINE_SIZE];
19
20 extern char *klimit;
21
22 # ifdef CONFIG_MMU
23 extern void mmu_reset(void);
24 # endif
25
26 void time_init(void);
27 void init_IRQ(void);
28 void machine_early_init(const char *cmdline, unsigned int ram,
29 unsigned int fdt, unsigned int msr, unsigned int tlb0,
30 unsigned int tlb1);
31
32 void machine_restart(char *cmd);
33 void machine_shutdown(void);
34 void machine_halt(void);
35 void machine_power_off(void);
36
37 extern void *zalloc_maybe_bootmem(size_t size, gfp_t mask);
38
39 # endif
40 #endif