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