]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - arch/x86/kernel/setup.c
Merge branch 'WIP.locking/seqlocks' into locking/urgent
[mirror_ubuntu-jammy-kernel.git] / arch / x86 / kernel / setup.c
CommitLineData
457c8996 1// SPDX-License-Identifier: GPL-2.0-only
1da177e4 2/*
1da177e4
LT
3 * Copyright (C) 1995 Linus Torvalds
4 *
12609013
IM
5 * This file contains the setup_arch() code, which handles the architecture-dependent
6 * parts of early kernel initialization.
1da177e4 7 */
1da177e4 8#include <linux/console.h>
12609013
IM
9#include <linux/crash_dump.h>
10#include <linux/dmi.h>
1da177e4 11#include <linux/efi.h>
12609013
IM
12#include <linux/init_ohci1394_dma.h>
13#include <linux/initrd.h>
138fe4e0 14#include <linux/iscsi_ibft.h>
12609013 15#include <linux/memblock.h>
376ff035 16#include <linux/pci.h>
12609013
IM
17#include <linux/root_dev.h>
18#include <linux/sfi.h>
cf11e85f 19#include <linux/hugetlb.h>
69575d38 20#include <linux/tboot.h>
1b5aeebf 21#include <linux/usb/xhci-dbgp.h>
1bc3b91a 22
12609013
IM
23#include <uapi/linux/mount.h>
24
25#include <xen/xen.h>
26
9635b47d 27#include <asm/apic.h>
ce3fe6b2 28#include <asm/bios_ebda.h>
cc9f7a0c 29#include <asm/bugs.h>
6e5385d4 30#include <asm/cpu.h>
12609013 31#include <asm/efi.h>
1d9b16d1 32#include <asm/gart.h>
88b094fb 33#include <asm/hypervisor.h>
12609013
IM
34#include <asm/io_apic.h>
35#include <asm/kasan.h>
36#include <asm/kaslr.h>
a2202aa2 37#include <asm/mce.h>
12609013 38#include <asm/mtrr.h>
ca947b72 39#include <asm/realmode.h>
12609013
IM
40#include <asm/olpc_ofw.h>
41#include <asm/pci-direct.h>
da6b737b 42#include <asm/prom.h>
12609013 43#include <asm/proto.h>
ee9f8fce 44#include <asm/unwind.h>
12609013 45#include <asm/vsyscall.h>
186525bd 46#include <linux/vmalloc.h>
46d671b5 47
2b72394e 48/*
360db4ac
IM
49 * max_low_pfn_mapped: highest directly mapped pfn < 4 GB
50 * max_pfn_mapped: highest directly mapped pfn > 4 GB
66520ebc 51 *
09821ff1 52 * The direct mapping only covers E820_TYPE_RAM regions, so the ranges and gaps are
360db4ac 53 * represented by pfn_mapped[].
2b72394e
PE
54 */
55unsigned long max_low_pfn_mapped;
56unsigned long max_pfn_mapped;
57
e808bae2 58#ifdef CONFIG_DMI
796216a5 59RESERVE_BRK(dmi_alloc, 65536);
e808bae2 60#endif
796216a5 61
c0b5842a 62
360db4ac
IM
63/*
64 * Range of the BSS area. The size of the BSS area is determined
65 * at link time, with RESERVE_BRK*() facility reserving additional
66 * chunks.
67 */
360db4ac
IM
68unsigned long _brk_start = (unsigned long)__brk_base;
69unsigned long _brk_end = (unsigned long)__brk_base;
93dbda7c 70
217b8ce8 71struct boot_params boot_params;
217b8ce8 72
4046d6e8 73/*
360db4ac
IM
74 * These are the four main kernel memory regions, we put them into
75 * the resource tree so that kdump tools and other debugging tools
76 * recover it:
4046d6e8 77 */
360db4ac 78
a3299754
KC
79static struct resource rodata_resource = {
80 .name = "Kernel rodata",
81 .start = 0,
82 .end = 0,
83 .flags = IORESOURCE_BUSY | IORESOURCE_SYSTEM_RAM
84};
85
4046d6e8
LT
86static struct resource data_resource = {
87 .name = "Kernel data",
88 .start = 0,
89 .end = 0,
90 .flags = IORESOURCE_BUSY | IORESOURCE_SYSTEM_RAM
91};
92
93static struct resource code_resource = {
94 .name = "Kernel code",
95 .start = 0,
96 .end = 0,
97 .flags = IORESOURCE_BUSY | IORESOURCE_SYSTEM_RAM
98};
99
100static struct resource bss_resource = {
101 .name = "Kernel bss",
102 .start = 0,
103 .end = 0,
104 .flags = IORESOURCE_BUSY | IORESOURCE_SYSTEM_RAM
105};
106
107
7dea23ec 108#ifdef CONFIG_X86_32
360db4ac 109/* CPU data as detected by the assembly code in head_32.S */
6415813b
MK
110struct cpuinfo_x86 new_cpu_data;
111
360db4ac 112/* Common CPU data for all CPUs */
6415813b 113struct cpuinfo_x86 boot_cpu_data __read_mostly;
129f6946 114EXPORT_SYMBOL(boot_cpu_data);
1da177e4 115
0c254e38
AS
116unsigned int def_to_bigsmp;
117
360db4ac 118/* For MCA, but anyone else can use it if they want */
1da177e4
LT
119unsigned int machine_id;
120unsigned int machine_submodel_id;
121unsigned int BIOS_revision;
1da177e4 122
7dea23ec
YL
123struct apm_info apm_info;
124EXPORT_SYMBOL(apm_info);
125
126#if defined(CONFIG_X86_SPEEDSTEP_SMI) || \
127 defined(CONFIG_X86_SPEEDSTEP_SMI_MODULE)
128struct ist_info ist_info;
129EXPORT_SYMBOL(ist_info);
130#else
131struct ist_info ist_info;
132#endif
133
134#else
162434e7 135struct cpuinfo_x86 boot_cpu_data __read_mostly;
7dea23ec
YL
136EXPORT_SYMBOL(boot_cpu_data);
137#endif
138
139
140#if !defined(CONFIG_X86_PAE) || defined(CONFIG_X86_64)
404f6aac 141__visible unsigned long mmu_cr4_features __ro_after_init;
7dea23ec 142#else
404f6aac 143__visible unsigned long mmu_cr4_features __ro_after_init = X86_CR4_PAE;
7dea23ec
YL
144#endif
145
5031296c
PA
146/* Boot loader ID and version as integers, for the benefit of proc_dointvec */
147int bootloader_type, bootloader_version;
1da177e4 148
1da177e4
LT
149/*
150 * Setup options
151 */
1da177e4 152struct screen_info screen_info;
129f6946 153EXPORT_SYMBOL(screen_info);
1da177e4 154struct edid_info edid_info;
5e518d76 155EXPORT_SYMBOL_GPL(edid_info);
1da177e4 156
1da177e4
LT
157extern int root_mountflags;
158
e44b7b75 159unsigned long saved_video_mode;
1da177e4 160
cf8fa920 161#define RAMDISK_IMAGE_START_MASK 0x07FF
1da177e4 162#define RAMDISK_PROMPT_FLAG 0x8000
cf8fa920 163#define RAMDISK_LOAD_FLAG 0x4000
1da177e4 164
4e498b66 165static char __initdata command_line[COMMAND_LINE_SIZE];
516cbf37
TB
166#ifdef CONFIG_CMDLINE_BOOL
167static char __initdata builtin_cmdline[COMMAND_LINE_SIZE] = CONFIG_CMDLINE;
168#endif
1da177e4 169
1da177e4
LT
170#if defined(CONFIG_EDD) || defined(CONFIG_EDD_MODULE)
171struct edd edd;
172#ifdef CONFIG_EDD_MODULE
173EXPORT_SYMBOL(edd);
174#endif
175/**
176 * copy_edd() - Copy the BIOS EDD information
177 * from boot_params into a safe place.
178 *
179 */
9eaa192d 180static inline void __init copy_edd(void)
1da177e4 181{
30c82645
PA
182 memcpy(edd.mbr_signature, boot_params.edd_mbr_sig_buffer,
183 sizeof(edd.mbr_signature));
184 memcpy(edd.edd_info, boot_params.eddbuf, sizeof(edd.edd_info));
185 edd.mbr_signature_nr = boot_params.edd_mbr_sig_buf_entries;
186 edd.edd_info_nr = boot_params.eddbuf_entries;
1da177e4
LT
187}
188#else
9eaa192d 189static inline void __init copy_edd(void)
1da177e4
LT
190{
191}
192#endif
193
5368a2be
PA
194void * __init extend_brk(size_t size, size_t align)
195{
196 size_t mask = align - 1;
197 void *ret;
198
199 BUG_ON(_brk_start == 0);
200 BUG_ON(align & mask);
201
202 _brk_end = (_brk_end + mask) & ~mask;
203 BUG_ON((char *)(_brk_end + size) > __brk_limit);
204
205 ret = (void *)_brk_end;
206 _brk_end += size;
207
208 memset(ret, 0, size);
209
210 return ret;
211}
212
148b2098 213#ifdef CONFIG_X86_32
e5f15b45 214static void __init cleanup_highmap(void)
f005fe12
YL
215{
216}
854c879f
PE
217#endif
218
5368a2be
PA
219static void __init reserve_brk(void)
220{
221 if (_brk_end > _brk_start)
fc8d7826
AD
222 memblock_reserve(__pa_symbol(_brk_start),
223 _brk_end - _brk_start);
5368a2be
PA
224
225 /* Mark brk area as locked down and no longer taking any
226 new allocations */
227 _brk_start = 0;
228}
229
5aa3d718
BP
230u64 relocated_ramdisk;
231
cf8fa920
PA
232#ifdef CONFIG_BLK_DEV_INITRD
233
a8a51a88
YL
234static u64 __init get_ramdisk_image(void)
235{
236 u64 ramdisk_image = boot_params.hdr.ramdisk_image;
237
ee92d815
YL
238 ramdisk_image |= (u64)boot_params.ext_ramdisk_image << 32;
239
694cfd87
RM
240 if (ramdisk_image == 0)
241 ramdisk_image = phys_initrd_start;
242
a8a51a88
YL
243 return ramdisk_image;
244}
245static u64 __init get_ramdisk_size(void)
246{
247 u64 ramdisk_size = boot_params.hdr.ramdisk_size;
248
ee92d815
YL
249 ramdisk_size |= (u64)boot_params.ext_ramdisk_size << 32;
250
694cfd87
RM
251 if (ramdisk_size == 0)
252 ramdisk_size = phys_initrd_size;
253
a8a51a88
YL
254 return ramdisk_size;
255}
256
eb1379cb 257static void __init relocate_initrd(void)
cf8fa920 258{
c967da6a 259 /* Assume only end is not page aligned */
a8a51a88
YL
260 u64 ramdisk_image = get_ramdisk_image();
261 u64 ramdisk_size = get_ramdisk_size();
c967da6a 262 u64 area_size = PAGE_ALIGN(ramdisk_size);
cf8fa920 263
e8c57d40 264 /* We need to move the initrd down into directly mapped mem */
5aa3d718
BP
265 relocated_ramdisk = memblock_find_in_range(0, PFN_PHYS(max_pfn_mapped),
266 area_size, PAGE_SIZE);
cf8fa920 267
5aa3d718 268 if (!relocated_ramdisk)
3945e2c9 269 panic("Cannot find place for new RAMDISK of size %lld\n",
5aa3d718 270 ramdisk_size);
3945e2c9 271
e8c57d40 272 /* Note: this includes all the mem currently occupied by
cf8fa920 273 the initrd, we rely on that fact to keep the data intact. */
5aa3d718
BP
274 memblock_reserve(relocated_ramdisk, area_size);
275 initrd_start = relocated_ramdisk + PAGE_OFFSET;
cf8fa920 276 initrd_end = initrd_start + ramdisk_size;
365811d6 277 printk(KERN_INFO "Allocated new RAMDISK: [mem %#010llx-%#010llx]\n",
5aa3d718 278 relocated_ramdisk, relocated_ramdisk + ramdisk_size - 1);
cf8fa920 279
5dd2c4bd
MS
280 copy_from_early_mem((void *)initrd_start, ramdisk_image, ramdisk_size);
281
365811d6
BH
282 printk(KERN_INFO "Move RAMDISK from [mem %#010llx-%#010llx] to"
283 " [mem %#010llx-%#010llx]\n",
ba5b14cc 284 ramdisk_image, ramdisk_image + ramdisk_size - 1,
5aa3d718 285 relocated_ramdisk, relocated_ramdisk + ramdisk_size - 1);
eb1379cb 286}
9a27f5c5 287
1b8c78be
YL
288static void __init early_reserve_initrd(void)
289{
290 /* Assume only end is not page aligned */
a8a51a88
YL
291 u64 ramdisk_image = get_ramdisk_image();
292 u64 ramdisk_size = get_ramdisk_size();
1b8c78be
YL
293 u64 ramdisk_end = PAGE_ALIGN(ramdisk_image + ramdisk_size);
294
295 if (!boot_params.hdr.type_of_loader ||
296 !ramdisk_image || !ramdisk_size)
297 return; /* No initrd provided by bootloader */
298
299 memblock_reserve(ramdisk_image, ramdisk_end - ramdisk_image);
300}
eb1379cb
YL
301static void __init reserve_initrd(void)
302{
c967da6a 303 /* Assume only end is not page aligned */
a8a51a88
YL
304 u64 ramdisk_image = get_ramdisk_image();
305 u64 ramdisk_size = get_ramdisk_size();
c967da6a 306 u64 ramdisk_end = PAGE_ALIGN(ramdisk_image + ramdisk_size);
e8c57d40 307 u64 mapped_size;
eb1379cb
YL
308
309 if (!boot_params.hdr.type_of_loader ||
310 !ramdisk_image || !ramdisk_size)
311 return; /* No initrd provided by bootloader */
312
313 initrd_start = 0;
314
595ad9af 315 mapped_size = memblock_mem_size(max_pfn_mapped);
e8c57d40 316 if (ramdisk_size >= (mapped_size>>1))
ab7b64e9
PJ
317 panic("initrd too large to handle, "
318 "disabling initrd (%lld needed, %lld available)\n",
e8c57d40 319 ramdisk_size, mapped_size>>1);
eb1379cb 320
365811d6
BH
321 printk(KERN_INFO "RAMDISK: [mem %#010llx-%#010llx]\n", ramdisk_image,
322 ramdisk_end - 1);
eb1379cb 323
74f27655 324 if (pfn_range_is_mapped(PFN_DOWN(ramdisk_image),
e8c57d40
YL
325 PFN_DOWN(ramdisk_end))) {
326 /* All are mapped, easy case */
eb1379cb
YL
327 initrd_start = ramdisk_image + PAGE_OFFSET;
328 initrd_end = initrd_start + ramdisk_size;
329 return;
330 }
331
eb1379cb 332 relocate_initrd();
8c5dd8f4 333
24aa0788 334 memblock_free(ramdisk_image, ramdisk_end - ramdisk_image);
cf8fa920 335}
af06f8b7 336
225c37d7 337#else
1b8c78be
YL
338static void __init early_reserve_initrd(void)
339{
340}
eb1379cb 341static void __init reserve_initrd(void)
225c37d7
YL
342{
343}
cf8fa920
PA
344#endif /* CONFIG_BLK_DEV_INITRD */
345
29f784e3 346static void __init parse_setup_data(void)
257b0fde
YL
347{
348 struct setup_data *data;
30e46b57 349 u64 pa_data, pa_next;
257b0fde 350
257b0fde
YL
351 pa_data = boot_params.hdr.setup_data;
352 while (pa_data) {
7389882c 353 u32 data_len, data_type;
f1c2b357 354
7389882c 355 data = early_memremap(pa_data, sizeof(*data));
f1c2b357 356 data_len = data->len + sizeof(struct setup_data);
30e46b57
LC
357 data_type = data->type;
358 pa_next = data->next;
8d4a40bc 359 early_memunmap(data, sizeof(*data));
f1c2b357 360
30e46b57 361 switch (data_type) {
257b0fde 362 case SETUP_E820_EXT:
914053c0 363 e820__memory_setup_extended(pa_data, data_len);
257b0fde 364 break;
da6b737b
SAS
365 case SETUP_DTB:
366 add_dtb(pa_data);
257b0fde 367 break;
1fec0533
DY
368 case SETUP_EFI:
369 parse_efi_setup(pa_data, data_len);
370 break;
257b0fde
YL
371 default:
372 break;
373 }
30e46b57 374 pa_data = pa_next;
257b0fde
YL
375 }
376}
377
a9ce6bc1 378static void __init memblock_x86_reserve_range_setup_data(void)
a0a0becd
YL
379{
380 struct setup_data *data;
381 u64 pa_data;
a0a0becd 382
a0a0becd
YL
383 pa_data = boot_params.hdr.setup_data;
384 while (pa_data) {
88b4c146 385 data = early_memremap(pa_data, sizeof(*data));
24aa0788 386 memblock_reserve(pa_data, sizeof(*data) + data->len);
b3c72fc9
DK
387
388 if (data->type == SETUP_INDIRECT &&
389 ((struct setup_indirect *)data->data)->type != SETUP_INDIRECT)
390 memblock_reserve(((struct setup_indirect *)data->data)->addr,
391 ((struct setup_indirect *)data->data)->len);
392
a0a0becd 393 pa_data = data->next;
8d4a40bc 394 early_memunmap(data, sizeof(*data));
a0a0becd
YL
395 }
396}
397
ccb4defa
YL
398/*
399 * --------- Crashkernel reservation ------------------------------
400 */
401
2965faa5 402#ifdef CONFIG_KEXEC_CORE
32105f7f 403
606134f7 404/* 16M alignment for crash kernel regions */
9ca5c8e6 405#define CRASH_ALIGN SZ_16M
606134f7 406
7f8595bf 407/*
8ff80fbe
BH
408 * Keep the crash kernel below this limit.
409 *
360db4ac 410 * Earlier 32-bits kernels would limit the kernel to the low 512 MB range
8ff80fbe
BH
411 * due to mapping restrictions.
412 *
360db4ac 413 * 64-bit kdump kernels need to be restricted to be under 64 TB, which is
11a98f37 414 * the upper limit of system RAM in 4-level paging mode. Since the kdump
360db4ac
IM
415 * jump could be from 5-level paging to 4-level paging, the jump will fail if
416 * the kernel is put above 64 TB, and during the 1st kernel bootup there's
417 * no good way to detect the paging mode of the target kernel which will be
418 * loaded for dumping.
7f8595bf
PA
419 */
420#ifdef CONFIG_X86_32
9ca5c8e6
DY
421# define CRASH_ADDR_LOW_MAX SZ_512M
422# define CRASH_ADDR_HIGH_MAX SZ_512M
7f8595bf 423#else
9ca5c8e6 424# define CRASH_ADDR_LOW_MAX SZ_4G
8ff80fbe 425# define CRASH_ADDR_HIGH_MAX SZ_64T
7f8595bf
PA
426#endif
427
eb6db83d 428static int __init reserve_crashkernel_low(void)
0212f915
YL
429{
430#ifdef CONFIG_X86_64
f56d5578 431 unsigned long long base, low_base = 0, low_size = 0;
0212f915 432 unsigned long total_low_mem;
0212f915
YL
433 int ret;
434
97eac21b
BP
435 total_low_mem = memblock_mem_size(1UL << (32 - PAGE_SHIFT));
436
adbc742b 437 /* crashkernel=Y,low */
97eac21b 438 ret = parse_crashkernel_low(boot_command_line, total_low_mem, &low_size, &base);
f56d5578 439 if (ret) {
c729de8f 440 /*
392e879a 441 * two parts from kernel/dma/swiotlb.c:
94fb9334
JR
442 * -swiotlb size: user-specified with swiotlb= or default.
443 *
444 * -swiotlb overflow buffer: now hardcoded to 32k. We round it
445 * to 8M for other buffers that may need to stay low too. Also
446 * make sure we allocate enough extra low memory so that we
447 * don't run out of DMA buffers for 32-bit devices.
c729de8f 448 */
97eac21b 449 low_size = max(swiotlb_size_or_default() + (8UL << 20), 256UL << 20);
c729de8f 450 } else {
adbc742b 451 /* passed with crashkernel=0,low ? */
c729de8f 452 if (!low_size)
eb6db83d 453 return 0;
c729de8f 454 }
0212f915 455
fe2d48b8 456 low_base = memblock_find_in_range(0, 1ULL << 32, low_size, CRASH_ALIGN);
0212f915 457 if (!low_base) {
eb6db83d
BH
458 pr_err("Cannot reserve %ldMB crashkernel low memory, please try smaller size.\n",
459 (unsigned long)(low_size >> 20));
460 return -ENOMEM;
0212f915 461 }
0212f915 462
6f376057
BP
463 ret = memblock_reserve(low_base, low_size);
464 if (ret) {
465 pr_err("%s: Error reserving crashkernel low memblock.\n", __func__);
466 return ret;
0212f915
YL
467 }
468
0212f915 469 pr_info("Reserving %ldMB of low memory at %ldMB for crashkernel (System low RAM: %ldMB)\n",
97eac21b
BP
470 (unsigned long)(low_size >> 20),
471 (unsigned long)(low_base >> 20),
472 (unsigned long)(total_low_mem >> 20));
473
0212f915
YL
474 crashk_low_res.start = low_base;
475 crashk_low_res.end = low_base + low_size - 1;
476 insert_resource(&iomem_resource, &crashk_low_res);
7f8595bf 477#endif
eb6db83d 478 return 0;
0212f915 479}
7f8595bf 480
29f784e3 481static void __init reserve_crashkernel(void)
ccb4defa 482{
f56d5578 483 unsigned long long crash_size, crash_base, total_mem;
55a20ee7 484 bool high = false;
ccb4defa
YL
485 int ret;
486
09c71bfd 487 total_mem = memblock_phys_mem_size();
ccb4defa 488
55a20ee7 489 /* crashkernel=XM */
97eac21b 490 ret = parse_crashkernel(boot_command_line, total_mem, &crash_size, &crash_base);
55a20ee7 491 if (ret != 0 || crash_size <= 0) {
adbc742b 492 /* crashkernel=X,high */
55a20ee7 493 ret = parse_crashkernel_high(boot_command_line, total_mem,
97eac21b 494 &crash_size, &crash_base);
55a20ee7
YL
495 if (ret != 0 || crash_size <= 0)
496 return;
497 high = true;
498 }
32105f7f 499
3db3eb28
PT
500 if (xen_pv_domain()) {
501 pr_info("Ignoring crashkernel for a Xen PV domain\n");
502 return;
503 }
504
32105f7f 505 /* 0 means: find the address automatically */
b9ac3849 506 if (!crash_base) {
9f4c1396 507 /*
a8d4c824 508 * Set CRASH_ADDR_LOW_MAX upper bound for crash memory,
b9ac3849
DY
509 * crashkernel=x,high reserves memory over 4G, also allocates
510 * 256M extra low memory for DMA buffers and swiotlb.
511 * But the extra memory is not required for all machines.
512 * So try low memory first and fall back to high memory
513 * unless "crashkernel=size[KMG],high" is specified.
9f4c1396 514 */
b9ac3849
DY
515 if (!high)
516 crash_base = memblock_find_in_range(CRASH_ALIGN,
517 CRASH_ADDR_LOW_MAX,
518 crash_size, CRASH_ALIGN);
519 if (!crash_base)
520 crash_base = memblock_find_in_range(CRASH_ALIGN,
521 CRASH_ADDR_HIGH_MAX,
522 crash_size, CRASH_ALIGN);
1f5026a7 523 if (!crash_base) {
44280733 524 pr_info("crashkernel reservation failed - No suitable area found.\n");
ccb4defa
YL
525 return;
526 }
32105f7f 527 } else {
44280733
YL
528 unsigned long long start;
529
9f4c1396 530 start = memblock_find_in_range(crash_base,
97eac21b
BP
531 crash_base + crash_size,
532 crash_size, 1 << 20);
44280733
YL
533 if (start != crash_base) {
534 pr_info("crashkernel reservation failed - memory is in use.\n");
ccb4defa
YL
535 return;
536 }
32105f7f 537 }
6f376057
BP
538 ret = memblock_reserve(crash_base, crash_size);
539 if (ret) {
540 pr_err("%s: Error reserving crashkernel memblock.\n", __func__);
541 return;
542 }
ccb4defa 543
eb6db83d
BH
544 if (crash_base >= (1ULL << 32) && reserve_crashkernel_low()) {
545 memblock_free(crash_base, crash_size);
546 return;
547 }
ccb4defa 548
f56d5578
BP
549 pr_info("Reserving %ldMB of memory at %ldMB for crashkernel (System RAM: %ldMB)\n",
550 (unsigned long)(crash_size >> 20),
551 (unsigned long)(crash_base >> 20),
552 (unsigned long)(total_mem >> 20));
ccb4defa 553
32105f7f
BW
554 crashk_res.start = crash_base;
555 crashk_res.end = crash_base + crash_size - 1;
556 insert_resource(&iomem_resource, &crashk_res);
ccb4defa
YL
557}
558#else
29f784e3 559static void __init reserve_crashkernel(void)
ccb4defa
YL
560{
561}
562#endif
563
bdba0e70
YL
564static struct resource standard_io_resources[] = {
565 { .name = "dma1", .start = 0x00, .end = 0x1f,
566 .flags = IORESOURCE_BUSY | IORESOURCE_IO },
567 { .name = "pic1", .start = 0x20, .end = 0x21,
568 .flags = IORESOURCE_BUSY | IORESOURCE_IO },
569 { .name = "timer0", .start = 0x40, .end = 0x43,
570 .flags = IORESOURCE_BUSY | IORESOURCE_IO },
571 { .name = "timer1", .start = 0x50, .end = 0x53,
572 .flags = IORESOURCE_BUSY | IORESOURCE_IO },
573 { .name = "keyboard", .start = 0x60, .end = 0x60,
574 .flags = IORESOURCE_BUSY | IORESOURCE_IO },
575 { .name = "keyboard", .start = 0x64, .end = 0x64,
576 .flags = IORESOURCE_BUSY | IORESOURCE_IO },
577 { .name = "dma page reg", .start = 0x80, .end = 0x8f,
578 .flags = IORESOURCE_BUSY | IORESOURCE_IO },
579 { .name = "pic2", .start = 0xa0, .end = 0xa1,
580 .flags = IORESOURCE_BUSY | IORESOURCE_IO },
581 { .name = "dma2", .start = 0xc0, .end = 0xdf,
582 .flags = IORESOURCE_BUSY | IORESOURCE_IO },
583 { .name = "fpu", .start = 0xf0, .end = 0xff,
584 .flags = IORESOURCE_BUSY | IORESOURCE_IO }
585};
586
8fee697d 587void __init reserve_standard_io_resources(void)
bdba0e70
YL
588{
589 int i;
590
591 /* request I/O space for devices used on all i[345]86 PCs */
592 for (i = 0; i < ARRAY_SIZE(standard_io_resources); i++)
593 request_resource(&ioport_resource, &standard_io_resources[i]);
594
595}
596
042be38e
YL
597static __init void reserve_ibft_region(void)
598{
599 unsigned long addr, size = 0;
600
601 addr = find_ibft_region(&size);
602
603 if (size)
24aa0788 604 memblock_reserve(addr, size);
042be38e
YL
605}
606
a9acc536
JB
607static bool __init snb_gfx_workaround_needed(void)
608{
e43b3cec 609#ifdef CONFIG_PCI
a9acc536
JB
610 int i;
611 u16 vendor, devid;
ab3cd867 612 static const __initconst u16 snb_ids[] = {
a9acc536
JB
613 0x0102,
614 0x0112,
615 0x0122,
616 0x0106,
617 0x0116,
618 0x0126,
619 0x010a,
620 };
621
622 /* Assume no if something weird is going on with PCI */
623 if (!early_pci_allowed())
624 return false;
625
626 vendor = read_pci_config_16(0, 2, 0, PCI_VENDOR_ID);
627 if (vendor != 0x8086)
628 return false;
629
630 devid = read_pci_config_16(0, 2, 0, PCI_DEVICE_ID);
631 for (i = 0; i < ARRAY_SIZE(snb_ids); i++)
632 if (devid == snb_ids[i])
633 return true;
e43b3cec 634#endif
a9acc536
JB
635
636 return false;
637}
638
639/*
640 * Sandy Bridge graphics has trouble with certain ranges, exclude
641 * them from allocation.
642 */
643static void __init trim_snb_memory(void)
644{
ab3cd867 645 static const __initconst unsigned long bad_pages[] = {
a9acc536
JB
646 0x20050000,
647 0x20110000,
648 0x20130000,
649 0x20138000,
650 0x40004000,
651 };
652 int i;
653
654 if (!snb_gfx_workaround_needed())
655 return;
656
657 printk(KERN_DEBUG "reserving inaccessible SNB gfx pages\n");
658
659 /*
660 * Reserve all memory below the 1 MB mark that has not
661 * already been reserved.
662 */
663 memblock_reserve(0, 1<<20);
664
665 for (i = 0; i < ARRAY_SIZE(bad_pages); i++) {
666 if (memblock_reserve(bad_pages[i], PAGE_SIZE))
667 printk(KERN_WARNING "failed to reserve 0x%08lx\n",
668 bad_pages[i]);
669 }
670}
671
672/*
673 * Here we put platform-specific memory range workarounds, i.e.
674 * memory known to be corrupt or otherwise in need to be reserved on
675 * specific platforms.
676 *
677 * If this gets used more widely it could use a real dispatch mechanism.
678 */
679static void __init trim_platform_memory_ranges(void)
680{
681 trim_snb_memory();
682}
683
1b5576e6
YL
684static void __init trim_bios_range(void)
685{
686 /*
687 * A special case is the first 4Kb of memory;
688 * This is a BIOS owned area, not kernel ram, but generally
689 * not listed as such in the E820 table.
d0cd7425
PA
690 *
691 * This typically reserves additional memory (64KiB by default)
692 * since some BIOSes are known to corrupt low memory. See the
9ea77bdb 693 * Kconfig help text for X86_RESERVE_LOW.
1b5576e6 694 */
09821ff1 695 e820__range_update(0, PAGE_SIZE, E820_TYPE_RAM, E820_TYPE_RESERVED);
d0cd7425 696
1b5576e6 697 /*
11a98f37
C
698 * special case: Some BIOSes report the PC BIOS
699 * area (640Kb -> 1Mb) as RAM even though it is not.
1b5576e6
YL
700 * take them out.
701 */
09821ff1 702 e820__range_remove(BIOS_BEGIN, BIOS_END - BIOS_BEGIN, E820_TYPE_RAM, 1);
a9acc536 703
f9748fa0 704 e820__update_table(e820_table);
1b5576e6
YL
705}
706
b422a309
YL
707/* called before trim_bios_range() to spare extra sanitize */
708static void __init e820_add_kernel_range(void)
709{
710 u64 start = __pa_symbol(_text);
711 u64 size = __pa_symbol(_end) - start;
712
713 /*
09821ff1 714 * Complain if .text .data and .bss are not marked as E820_TYPE_RAM and
b422a309
YL
715 * attempt to fix it by adding the range. We may have a confused BIOS,
716 * or the user may have used memmap=exactmap or memmap=xxM$yyM to
717 * exclude kernel range. If we really are running on top non-RAM,
718 * we will crash later anyways.
719 */
09821ff1 720 if (e820__mapped_all(start, start + size, E820_TYPE_RAM))
b422a309
YL
721 return;
722
09821ff1
IM
723 pr_warn(".text .data .bss are not marked as E820_TYPE_RAM!\n");
724 e820__range_remove(start, size, E820_TYPE_RAM, 0);
725 e820__range_add(start, size, E820_TYPE_RAM);
b422a309
YL
726}
727
95c96084
PA
728static unsigned reserve_low = CONFIG_X86_RESERVE_LOW << 10;
729
9ea77bdb
PA
730static int __init parse_reservelow(char *p)
731{
732 unsigned long long size;
733
734 if (!p)
735 return -EINVAL;
736
737 size = memparse(p, &p);
738
739 if (size < 4096)
740 size = 4096;
741
742 if (size > 640*1024)
743 size = 640*1024;
744
745 reserve_low = size;
746
747 return 0;
748}
749
750early_param("reservelow", parse_reservelow);
751
95c96084
PA
752static void __init trim_low_memory_range(void)
753{
754 memblock_reserve(0, ALIGN(reserve_low, PAGE_SIZE));
755}
756
f32360ef
KC
757/*
758 * Dump out kernel offset information on panic.
759 */
760static int
761dump_kernel_offset(struct notifier_block *self, unsigned long v, void *p)
762{
78cac48c
BP
763 if (kaslr_enabled()) {
764 pr_emerg("Kernel Offset: 0x%lx from 0x%lx (relocation range: 0x%lx-0x%lx)\n",
4545c898 765 kaslr_offset(),
78cac48c
BP
766 __START_KERNEL,
767 __START_KERNEL_map,
768 MODULES_VADDR-1);
769 } else {
770 pr_emerg("Kernel Offset: disabled\n");
771 }
f32360ef
KC
772
773 return 0;
774}
775
1da177e4
LT
776/*
777 * Determine if we were loaded by an EFI loader. If so, then we have also been
778 * passed the efi memmap, systab, etc., so we should use these data structures
779 * for initialization. Note, the efi init code path is determined by the
780 * global efi_enabled. This allows the same kernel image to be used on existing
781 * systems (with a traditional BIOS) as well as on EFI systems.
782 */
76934ed4
YL
783/*
784 * setup_arch - architecture-specific boot-time initializations
785 *
786 * Note: On x86_64, fixmaps are ready for use even before this is called.
787 */
788
1da177e4
LT
789void __init setup_arch(char **cmdline_p)
790{
c603a309
TL
791 /*
792 * Reserve the memory occupied by the kernel between _text and
793 * __end_of_kernel_reserve symbols. Any kernel sections after the
794 * __end_of_kernel_reserve symbol must be explicitly reserved with a
795 * separate memblock_reserve() or they will be discarded.
796 */
6c902b65 797 memblock_reserve(__pa_symbol(_text),
c603a309 798 (unsigned long)__end_of_kernel_reserve - (unsigned long)_text);
6c902b65 799
10a70416
AK
800 /*
801 * Make sure page 0 is always reserved because on systems with
802 * L1TF its contents can be leaked to user processes.
803 */
804 memblock_reserve(0, PAGE_SIZE);
805
1b8c78be
YL
806 early_reserve_initrd();
807
6c902b65
YL
808 /*
809 * At this point everything still needed from the boot loader
810 * or BIOS or kernel text should be early reserved or marked not
811 * RAM in e820. All other memory is free game.
812 */
813
76934ed4 814#ifdef CONFIG_X86_32
1da177e4 815 memcpy(&boot_cpu_data, &new_cpu_data, sizeof(new_cpu_data));
b40827fa
BP
816
817 /*
818 * copy kernel address range established so far and switch
819 * to the proper swapper page table
820 */
821 clone_pgd_range(swapper_pg_dir + KERNEL_PGD_BOUNDARY,
822 initial_page_table + KERNEL_PGD_BOUNDARY,
823 KERNEL_PGD_PTRS);
824
825 load_cr3(swapper_pg_dir);
2075244f
BD
826 /*
827 * Note: Quark X1000 CPUs advertise PGE incorrectly and require
828 * a cr3 based tlb flush, so the following __flush_tlb_all()
360db4ac 829 * will not flush anything because the CPU quirk which clears
2075244f
BD
830 * X86_FEATURE_PGE has not been invoked yet. Though due to the
831 * load_cr3() above the TLB has been flushed already. The
832 * quirk is invoked before subsequent calls to __flush_tlb_all()
833 * so proper operation is guaranteed.
834 */
b40827fa 835 __flush_tlb_all();
76934ed4
YL
836#else
837 printk(KERN_INFO "Command line: %s\n", boot_command_line);
162434e7 838 boot_cpu_data.x86_phys_bits = MAX_PHYSMEM_BITS;
76934ed4 839#endif
1da177e4 840
9863c90f
AK
841 /*
842 * If we have OLPC OFW, we might end up relocating the fixmap due to
843 * reserve_top(), so do this before touching the ioremap area.
844 */
fd699c76
AS
845 olpc_ofw_detect();
846
433f8924 847 idt_setup_early_traps();
9e882c92 848 early_cpu_init();
8990cac6
PT
849 arch_init_ideal_nops();
850 jump_label_init();
1a98fd14
JF
851 early_ioremap_init();
852
fd699c76
AS
853 setup_olpc_ofw_pgd();
854
30c82645
PA
855 ROOT_DEV = old_decode_dev(boot_params.hdr.root_dev);
856 screen_info = boot_params.screen_info;
857 edid_info = boot_params.edid_info;
76934ed4 858#ifdef CONFIG_X86_32
30c82645
PA
859 apm_info.bios = boot_params.apm_bios_info;
860 ist_info = boot_params.ist_info;
76934ed4
YL
861#endif
862 saved_video_mode = boot_params.hdr.vid_mode;
30c82645 863 bootloader_type = boot_params.hdr.type_of_loader;
5031296c
PA
864 if ((bootloader_type >> 4) == 0xe) {
865 bootloader_type &= 0xf;
866 bootloader_type |= (boot_params.hdr.ext_loader_type+0x10) << 4;
867 }
868 bootloader_version = bootloader_type & 0xf;
869 bootloader_version |= boot_params.hdr.ext_loader_ver << 4;
1da177e4
LT
870
871#ifdef CONFIG_BLK_DEV_RAM
30c82645
PA
872 rd_image_start = boot_params.hdr.ram_size & RAMDISK_IMAGE_START_MASK;
873 rd_prompt = ((boot_params.hdr.ram_size & RAMDISK_PROMPT_FLAG) != 0);
874 rd_doload = ((boot_params.hdr.ram_size & RAMDISK_LOAD_FLAG) != 0);
1da177e4 875#endif
7465252e
YL
876#ifdef CONFIG_EFI
877 if (!strncmp((char *)&boot_params.efi_info.efi_loader_signature,
9402973d 878 EFI32_LOADER_SIGNATURE, 4)) {
3e909599 879 set_bit(EFI_BOOT, &efi.flags);
1adbfa35 880 } else if (!strncmp((char *)&boot_params.efi_info.efi_loader_signature,
9402973d 881 EFI64_LOADER_SIGNATURE, 4)) {
3e909599
MF
882 set_bit(EFI_BOOT, &efi.flags);
883 set_bit(EFI_64BIT, &efi.flags);
7465252e
YL
884 }
885#endif
886
42bbdb43 887 x86_init.oem.arch_setup();
2215e69d 888
419afdf5 889 iomem_resource.end = (1ULL << boot_cpu_data.x86_phys_bits) - 1;
103e2063 890 e820__memory_setup();
28bb2237
YL
891 parse_setup_data();
892
1da177e4
LT
893 copy_edd();
894
30c82645 895 if (!boot_params.hdr.root_flags)
1da177e4
LT
896 root_mountflags &= ~MS_RDONLY;
897 init_mm.start_code = (unsigned long) _text;
898 init_mm.end_code = (unsigned long) _etext;
899 init_mm.end_data = (unsigned long) _edata;
93dbda7c 900 init_mm.brk = _brk_end;
fe3d197f 901
4046d6e8
LT
902 code_resource.start = __pa_symbol(_text);
903 code_resource.end = __pa_symbol(_etext)-1;
a3299754
KC
904 rodata_resource.start = __pa_symbol(__start_rodata);
905 rodata_resource.end = __pa_symbol(__end_rodata)-1;
906 data_resource.start = __pa_symbol(_sdata);
4046d6e8
LT
907 data_resource.end = __pa_symbol(_edata)-1;
908 bss_resource.start = __pa_symbol(__bss_start);
909 bss_resource.end = __pa_symbol(__bss_stop)-1;
910
516cbf37
TB
911#ifdef CONFIG_CMDLINE_BOOL
912#ifdef CONFIG_CMDLINE_OVERRIDE
913 strlcpy(boot_command_line, builtin_cmdline, COMMAND_LINE_SIZE);
914#else
915 if (builtin_cmdline[0]) {
916 /* append boot loader cmdline to builtin */
917 strlcat(builtin_cmdline, " ", COMMAND_LINE_SIZE);
918 strlcat(builtin_cmdline, boot_command_line, COMMAND_LINE_SIZE);
919 strlcpy(boot_command_line, builtin_cmdline, COMMAND_LINE_SIZE);
920 }
921#endif
922#endif
923
eda6da92
YL
924 strlcpy(command_line, boot_command_line, COMMAND_LINE_SIZE);
925 *cmdline_p = command_line;
926
eda6da92 927 /*
4b0f3b81
KC
928 * x86_configure_nx() is called before parse_early_param() to detect
929 * whether hardware doesn't support NX (so that the early EHCI debug
930 * console setup can safely call set_fixmap()). It may then be called
931 * again from within noexec_setup() during parsing early parameters
932 * to honor the respective command line option.
eda6da92 933 */
4763ed4d 934 x86_configure_nx();
eda6da92
YL
935
936 parse_early_param();
937
835bcec5
DY
938 if (efi_enabled(EFI_BOOT))
939 efi_memblock_x86_reserve_range();
39fa104d
RA
940#ifdef CONFIG_MEMORY_HOTPLUG
941 /*
942 * Memory used by the kernel cannot be hot-removed because Linux
943 * cannot migrate the kernel pages. When memory hotplug is
944 * enabled, we should prevent memblock from allocating memory
945 * for the kernel.
946 *
947 * ACPI SRAT records all hotpluggable memory ranges. But before
948 * SRAT is parsed, we don't know about it.
949 *
950 * The kernel image is loaded into memory at very early time. We
951 * cannot prevent this anyway. So on NUMA system, we set any
952 * node the kernel resides in as un-hotpluggable.
953 *
954 * Since on modern servers, one node could have double-digit
955 * gigabytes memory, we can assume the memory around the kernel
956 * image is also un-hotpluggable. So before SRAT is parsed, just
957 * allocate memory near the kernel image to try the best to keep
958 * the kernel away from hotpluggable memory.
959 */
960 if (movable_node_is_enabled())
961 memblock_set_bottom_up(true);
962#endif
963
4b0f3b81 964 x86_report_nx();
0ad5bce7 965
28bb2237 966 /* after early param, so could get panic from serial */
a9ce6bc1 967 memblock_x86_reserve_range_setup_data();
28bb2237 968
76934ed4 969 if (acpi_mps_check()) {
3eb11edc 970#ifdef CONFIG_X86_LOCAL_APIC
76934ed4 971 disable_apic = 1;
3eb11edc 972#endif
988781dc 973 setup_clear_cpu_cap(X86_FEATURE_APIC);
3c999f14
YL
974 }
975
1a127034 976 e820__reserve_setup_data();
9641bdaf 977 e820__finish_early_params();
1a3f239d 978
83e68189 979 if (efi_enabled(EFI_BOOT))
ff0c0874
BM
980 efi_init();
981
0fca0812 982 dmi_setup();
2216d199 983
88b094fb
AK
984 /*
985 * VMware detection requires dmi to be available, so this
0fca0812 986 * needs to be done after dmi_setup(), for the boot CPU.
88b094fb 987 */
2d826404 988 init_hypervisor_platform();
88b094fb 989
cf7a63ef 990 tsc_early_init();
f7cf5a5b 991 x86_init.resources.probe_roms();
41c094fd 992
4046d6e8
LT
993 /* after parse_early_param, so could debug it */
994 insert_resource(&iomem_resource, &code_resource);
a3299754 995 insert_resource(&iomem_resource, &rodata_resource);
4046d6e8
LT
996 insert_resource(&iomem_resource, &data_resource);
997 insert_resource(&iomem_resource, &bss_resource);
998
b422a309 999 e820_add_kernel_range();
1b5576e6 1000 trim_bios_range();
76934ed4 1001#ifdef CONFIG_X86_32
cc9f7a0c 1002 if (ppro_with_ram_bug()) {
09821ff1
IM
1003 e820__range_update(0x70000000ULL, 0x40000ULL, E820_TYPE_RAM,
1004 E820_TYPE_RESERVED);
f9748fa0 1005 e820__update_table(e820_table);
cc9f7a0c 1006 printk(KERN_INFO "fixed physical RAM map:\n");
be0c3f0f 1007 e820__print_table("bad_ppro");
cc9f7a0c 1008 }
76934ed4
YL
1009#else
1010 early_gart_iommu_check();
1011#endif
cc9f7a0c 1012
7b2a0a6c
YL
1013 /*
1014 * partially used pages are not usable - thus
1015 * we are rounding upwards:
1016 */
0c6fc11a 1017 max_pfn = e820__end_of_ram_pfn();
7b2a0a6c 1018
093af8d7
YL
1019 /* update e820 for memory not covered by WB MTRRs */
1020 mtrr_bp_init();
2dc807b3 1021 if (mtrr_trim_uncached_memory(max_pfn))
0c6fc11a 1022 max_pfn = e820__end_of_ram_pfn();
76c32418 1023
8dd33030
IM
1024 max_possible_pfn = max_pfn;
1025
99c13b8c
MP
1026 /*
1027 * This call is required when the CPU does not support PAT. If
1028 * mtrr_bp_init() invoked it already via pat_init() the call has no
1029 * effect.
1030 */
1031 init_cache_modes();
1032
c7d2361f
TG
1033 /*
1034 * Define random base addresses for memory sections after max_pfn is
1035 * defined and before each memory section base is used.
1036 */
1037 kernel_randomize_memory();
1038
76934ed4 1039#ifdef CONFIG_X86_32
4e29684c 1040 /* max_low_pfn get updated here */
2ec65f8b 1041 find_low_pfn_range();
76934ed4 1042#else
06cd9a7d 1043 check_x2apic();
76934ed4
YL
1044
1045 /* How many end-of-memory variables you have, grandma! */
1046 /* need this before calling reserve_initrd */
f361a450 1047 if (max_pfn > (1UL<<(32 - PAGE_SHIFT)))
0c6fc11a 1048 max_low_pfn = e820__end_of_low_ram_pfn();
f361a450
YL
1049 else
1050 max_low_pfn = max_pfn;
1051
76934ed4 1052 high_memory = (void *)__va(max_pfn * PAGE_SIZE - 1) + 1;
5394f80f
JF
1053#endif
1054
893f38d1
YL
1055 /*
1056 * Find and reserve possible boot-time SMP configuration:
1057 */
1058 find_smp_config();
1059
042be38e
YL
1060 reserve_ibft_region();
1061
8d57470d
YL
1062 early_alloc_pgt_buf();
1063
72d7c3b3 1064 /*
4918e228 1065 * Need to conclude brk, before e820__memblock_setup()
72d7c3b3
YL
1066 * it could use memblock_find_in_range, could overlap with
1067 * brk area.
1068 */
1069 reserve_brk();
1070
e5f15b45
YL
1071 cleanup_highmap();
1072
2449f343 1073 memblock_set_current_limit(ISA_END_ADDRESS);
4918e228 1074 e820__memblock_setup();
72d7c3b3 1075
4971531a
MF
1076 reserve_bios_regions();
1077
6950e31b
DW
1078 efi_fake_memmap();
1079 efi_find_mirror();
1080 efi_esrt_init();
007b7560 1081
6950e31b
DW
1082 /*
1083 * The EFI specification says that boot service code won't be
1084 * called after ExitBootServices(). This is, in fact, a lie.
1085 */
1086 efi_reserve_boot_services();
916f676f 1087
72d7c3b3 1088 /* preallocate 4k for mptable mpc */
5da217ca 1089 e820__memblock_alloc_reserved_mpc_new();
72d7c3b3
YL
1090
1091#ifdef CONFIG_X86_CHECK_BIOS_CORRUPTION
1092 setup_bios_corruption_check();
1093#endif
1094
10054230 1095#ifdef CONFIG_X86_32
365811d6
BH
1096 printk(KERN_DEBUG "initial memory mapped: [mem 0x00000000-%#010lx]\n",
1097 (max_pfn_mapped<<PAGE_SHIFT) - 1);
10054230 1098#endif
72d7c3b3 1099
4f7b9226 1100 reserve_real_mode();
893f38d1 1101
a9acc536 1102 trim_platform_memory_ranges();
95c96084 1103 trim_low_memory_range();
a9acc536 1104
22ddfcaa 1105 init_mem_mapping();
1bbbbe77 1106
433f8924 1107 idt_setup_early_pf();
1bbbbe77 1108
18bc7bd5
AL
1109 /*
1110 * Update mmu_cr4_features (and, indirectly, trampoline_cr4_features)
1111 * with the current CR4 value. This may not be necessary, but
1112 * auditing all the early-boot CR4 manipulation would be needed to
1113 * rule it out.
c7ad5ad2
AL
1114 *
1115 * Mask off features that don't work outside long mode (just
1116 * PCIDE for now).
18bc7bd5 1117 */
c7ad5ad2 1118 mmu_cr4_features = __read_cr4() & ~X86_CR4_PCIDE;
18bc7bd5 1119
4ce7a869 1120 memblock_set_current_limit(get_max_mapped());
4e29684c 1121
e7b37895
YL
1122 /*
1123 * NOTE: On x86-32, only from this point on, fixmaps are ready for use.
1124 */
1125
1126#ifdef CONFIG_PROVIDE_OHCI1394_DMA_INIT
1127 if (init_ohci1394_dma_early)
1128 init_ohci1394_dma_on_all_controllers();
1129#endif
162a7e75
MT
1130 /* Allocate bigger log buffer */
1131 setup_log_buf(1);
e7b37895 1132
9661b332
DH
1133 if (efi_enabled(EFI_BOOT)) {
1134 switch (boot_params.secure_boot) {
1135 case efi_secureboot_mode_disabled:
1136 pr_info("Secure boot disabled\n");
1137 break;
1138 case efi_secureboot_mode_enabled:
1139 pr_info("Secure boot enabled\n");
1140 break;
1141 default:
1142 pr_info("Secure boot could not be determined\n");
1143 break;
1144 }
1145 }
1146
2ec65f8b
YL
1147 reserve_initrd();
1148
da3d3f98 1149 acpi_table_upgrade();
53aac44c 1150
76934ed4 1151 vsmp_init();
76934ed4 1152
1c6e5503
YL
1153 io_delay_init();
1154
630b3aff
LW
1155 early_platform_quirks();
1156
1c6e5503
YL
1157 /*
1158 * Parse the ACPI tables for possible boot-time SMP configuration.
1159 */
20e6926d
YL
1160 acpi_boot_table_init();
1161
1162 early_acpi_boot_init();
1163
d8fc3afc 1164 initmem_init();
3c325f82 1165 dma_contiguous_reserve(max_pfn_mapped << PAGE_SHIFT);
fa591c4a 1166
cf11e85f
RG
1167 if (boot_cpu_has(X86_FEATURE_GBPAGES))
1168 hugetlb_cma_reserve(PUD_SHIFT - PAGE_SHIFT);
1169
fa591c4a
TC
1170 /*
1171 * Reserve memory for crash kernel after SRAT is parsed so that it
1172 * won't consume hotpluggable memory.
1173 */
1174 reserve_crashkernel();
1175
6f2a7536 1176 memblock_find_dma_reserve();
91467bdf 1177
ccb64941
BO
1178 if (!early_xdbc_setup_hardware())
1179 early_xdbc_register_console();
1180
7737b215 1181 x86_init.paging.pagetable_init();
f212ec4b 1182
ef7f0d6a
AR
1183 kasan_init();
1184
d2b6dc61 1185 /*
945fd17a
TG
1186 * Sync back kernel address range.
1187 *
1188 * FIXME: Can the later sync in setup_cpu_entry_areas() replace
1189 * this call?
d2b6dc61 1190 */
945fd17a 1191 sync_initial_page_table();
d2b6dc61 1192
31625340
JC
1193 tboot_probe();
1194
76934ed4 1195 map_vsyscall();
76934ed4 1196
1a3f239d 1197 generic_apic_probe();
1da177e4 1198
54ef3400 1199 early_quirks();
d44647b0 1200
295deae4
YL
1201 /*
1202 * Read APIC and some other early information from ACPI tables.
1203 */
1da177e4 1204 acpi_boot_init();
efafc8b2 1205 sfi_init();
a906fdaa 1206 x86_dtb_init();
04606618 1207
295deae4
YL
1208 /*
1209 * get boot-time SMP configuration:
1210 */
a91bf718 1211 get_smp_config();
76934ed4 1212
1e90a13d
TG
1213 /*
1214 * Systems w/o ACPI and mptables might not have it mapped the local
1215 * APIC yet, but prefill_possible_map() might need to access it.
1216 */
1217 init_apic_mappings();
1218
329513a3 1219 prefill_possible_map();
301e6190 1220
5f4765f9 1221 init_cpu_to_node();
5f4765f9 1222
ca1b8862 1223 io_apic_init_mappings();
9d6a4d08 1224
f3614646 1225 x86_init.hyper.guest_late_init();
1da177e4 1226
1506c8dc 1227 e820__reserve_resources();
cc55f753 1228 e820__register_nosave_regions(max_pfn);
1da177e4 1229
8fee697d 1230 x86_init.resources.reserve_resources();
41c094fd 1231
2df908ba 1232 e820__setup_pci_gap();
41c094fd 1233
1da177e4
LT
1234#ifdef CONFIG_VT
1235#if defined(CONFIG_VGA_CONSOLE)
83e68189 1236 if (!efi_enabled(EFI_BOOT) || (efi_mem_type(0xa0000) != EFI_CONVENTIONAL_MEMORY))
1da177e4 1237 conswitchp = &vga_con;
1da177e4
LT
1238#endif
1239#endif
6f30c1ac 1240 x86_init.oem.banner();
a2202aa2 1241
6b617e22
FT
1242 x86_init.timers.wallclock_init();
1243
a2202aa2 1244 mcheck_init();
f49aa448 1245
b3c869d3 1246 register_refined_jiffies(CLOCK_TICK_RATE);
5189c2a7
OJ
1247
1248#ifdef CONFIG_EFI
a5d90c92
BP
1249 if (efi_enabled(EFI_BOOT))
1250 efi_apply_memmap_quirks();
5189c2a7 1251#endif
ee9f8fce
JP
1252
1253 unwind_init();
1da177e4 1254}
5649b7c3 1255
9be1b56a
IM
1256#ifdef CONFIG_X86_32
1257
8fee697d
TG
1258static struct resource video_ram_resource = {
1259 .name = "Video RAM area",
1260 .start = 0xa0000,
1261 .end = 0xbffff,
1262 .flags = IORESOURCE_BUSY | IORESOURCE_MEM
9be1b56a
IM
1263};
1264
8fee697d 1265void __init i386_reserve_resources(void)
9be1b56a 1266{
8fee697d
TG
1267 request_resource(&iomem_resource, &video_ram_resource);
1268 reserve_standard_io_resources();
9be1b56a
IM
1269}
1270
9be1b56a 1271#endif /* CONFIG_X86_32 */
f32360ef
KC
1272
1273static struct notifier_block kernel_offset_notifier = {
1274 .notifier_call = dump_kernel_offset
1275};
1276
1277static int __init register_kernel_offset_dumper(void)
1278{
1279 atomic_notifier_chain_register(&panic_notifier_list,
1280 &kernel_offset_notifier);
1281 return 0;
1282}
1283__initcall(register_kernel_offset_dumper);