x86: Add x86_init infrastructure
[firefly-linux-kernel-4.4.55.git] / arch / x86 / include / asm / setup.h
1 #ifndef _ASM_X86_SETUP_H
2 #define _ASM_X86_SETUP_H
3
4 #ifdef __KERNEL__
5
6 #define COMMAND_LINE_SIZE 2048
7
8 #ifndef __ASSEMBLY__
9
10 #include <asm/x86_init.h>
11
12 /*
13  * Any setup quirks to be performed?
14  */
15 struct mpc_cpu;
16 struct mpc_bus;
17 struct mpc_oemtable;
18
19 struct x86_quirks {
20         int (*arch_pre_time_init)(void);
21         int (*arch_time_init)(void);
22         int (*arch_pre_intr_init)(void);
23         int (*arch_intr_init)(void);
24         int (*arch_trap_init)(void);
25         char * (*arch_memory_setup)(void);
26         int (*mach_get_smp_config)(unsigned int early);
27         int (*mach_find_smp_config)(unsigned int reserve);
28
29         int *mpc_record;
30         int (*mpc_apic_id)(struct mpc_cpu *m);
31         void (*mpc_oem_bus_info)(struct mpc_bus *m, char *name);
32         void (*mpc_oem_pci_bus)(struct mpc_bus *m);
33         void (*smp_read_mpc_oem)(struct mpc_oemtable *oemtable,
34                                 unsigned short oemsize);
35         int (*setup_ioapic_ids)(void);
36 };
37
38 extern void x86_quirk_intr_init(void);
39
40 extern void x86_quirk_trap_init(void);
41
42 extern void x86_quirk_pre_time_init(void);
43 extern void x86_quirk_time_init(void);
44
45 #endif /* __ASSEMBLY__ */
46
47 #ifdef __i386__
48
49 #include <linux/pfn.h>
50 /*
51  * Reserved space for vmalloc and iomap - defined in asm/page.h
52  */
53 #define MAXMEM_PFN      PFN_DOWN(MAXMEM)
54 #define MAX_NONPAE_PFN  (1 << 20)
55
56 #endif /* __i386__ */
57
58 #define PARAM_SIZE 4096         /* sizeof(struct boot_params) */
59
60 #define OLD_CL_MAGIC            0xA33F
61 #define OLD_CL_ADDRESS          0x020   /* Relative to real mode data */
62 #define NEW_CL_POINTER          0x228   /* Relative to real mode data */
63
64 #ifndef __ASSEMBLY__
65 #include <asm/bootparam.h>
66
67 /* Interrupt control for vSMPowered x86_64 systems */
68 #ifdef CONFIG_X86_64
69 void vsmp_init(void);
70 #else
71 static inline void vsmp_init(void) { }
72 #endif
73
74 void setup_bios_corruption_check(void);
75
76 #ifdef CONFIG_X86_VISWS
77 extern void visws_early_detect(void);
78 extern int is_visws_box(void);
79 #else
80 static inline void visws_early_detect(void) { }
81 static inline int is_visws_box(void) { return 0; }
82 #endif
83
84 extern struct x86_quirks *x86_quirks;
85 extern unsigned long saved_video_mode;
86
87 #ifndef CONFIG_PARAVIRT
88 #define paravirt_post_allocator_init()  do {} while (0)
89 #endif
90
91 #ifndef _SETUP
92
93 /*
94  * This is set up by the setup-routine at boot-time
95  */
96 extern struct boot_params boot_params;
97
98 /*
99  * Do NOT EVER look at the BIOS memory size location.
100  * It does not work on many machines.
101  */
102 #define LOWMEMSIZE()    (0x9f000)
103
104 /* exceedingly early brk-like allocator */
105 extern unsigned long _brk_end;
106 void *extend_brk(size_t size, size_t align);
107
108 /*
109  * Reserve space in the brk section.  The name must be unique within
110  * the file, and somewhat descriptive.  The size is in bytes.  Must be
111  * used at file scope.
112  *
113  * (This uses a temp function to wrap the asm so we can pass it the
114  * size parameter; otherwise we wouldn't be able to.  We can't use a
115  * "section" attribute on a normal variable because it always ends up
116  * being @progbits, which ends up allocating space in the vmlinux
117  * executable.)
118  */
119 #define RESERVE_BRK(name,sz)                                            \
120         static void __section(.discard) __used                          \
121         __brk_reservation_fn_##name##__(void) {                         \
122                 asm volatile (                                          \
123                         ".pushsection .brk_reservation,\"aw\",@nobits;" \
124                         ".brk." #name ":"                               \
125                         " 1:.skip %c0;"                                 \
126                         " .size .brk." #name ", . - 1b;"                \
127                         " .popsection"                                  \
128                         : : "i" (sz));                                  \
129         }
130
131 #ifdef __i386__
132
133 void __init i386_start_kernel(void);
134 extern void probe_roms(void);
135
136 #else
137 void __init x86_64_start_kernel(char *real_mode);
138 void __init x86_64_start_reservations(char *real_mode_data);
139
140 #endif /* __i386__ */
141 #endif /* _SETUP */
142 #else
143 #define RESERVE_BRK(name,sz)                            \
144         .pushsection .brk_reservation,"aw",@nobits;     \
145 .brk.name:                                              \
146 1:      .skip sz;                                       \
147         .size .brk.name,.-1b;                           \
148         .popsection
149 #endif /* __ASSEMBLY__ */
150 #endif  /*  __KERNEL__  */
151
152 #endif /* _ASM_X86_SETUP_H */