1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 1995 Linus Torvalds
5 * This file contains the setup_arch() code, which handles the architecture-dependent
6 * parts of early kernel initialization.
8 #include <linux/acpi.h>
9 #include <linux/console.h>
10 #include <linux/crash_dump.h>
11 #include <linux/dma-map-ops.h>
12 #include <linux/dmi.h>
13 #include <linux/efi.h>
14 #include <linux/ima.h>
15 #include <linux/init_ohci1394_dma.h>
16 #include <linux/initrd.h>
17 #include <linux/iscsi_ibft.h>
18 #include <linux/memblock.h>
19 #include <linux/panic_notifier.h>
20 #include <linux/pci.h>
21 #include <linux/root_dev.h>
22 #include <linux/hugetlb.h>
23 #include <linux/tboot.h>
24 #include <linux/usb/xhci-dbgp.h>
25 #include <linux/static_call.h>
26 #include <linux/swiotlb.h>
27 #include <linux/random.h>
29 #include <uapi/linux/mount.h>
36 #include <asm/bios_ebda.h>
38 #include <asm/cacheinfo.h>
42 #include <asm/hypervisor.h>
43 #include <asm/io_apic.h>
44 #include <asm/kasan.h>
45 #include <asm/kaslr.h>
47 #include <asm/memtype.h>
49 #include <asm/realmode.h>
50 #include <asm/olpc_ofw.h>
51 #include <asm/pci-direct.h>
53 #include <asm/proto.h>
54 #include <asm/thermal.h>
55 #include <asm/unwind.h>
56 #include <asm/vsyscall.h>
57 #include <linux/vmalloc.h>
60 * max_low_pfn_mapped: highest directly mapped pfn < 4 GB
61 * max_pfn_mapped: highest directly mapped pfn > 4 GB
63 * The direct mapping only covers E820_TYPE_RAM regions, so the ranges and gaps are
64 * represented by pfn_mapped[].
66 unsigned long max_low_pfn_mapped;
67 unsigned long max_pfn_mapped;
70 RESERVE_BRK(dmi_alloc, 65536);
74 unsigned long _brk_start = (unsigned long)__brk_base;
75 unsigned long _brk_end = (unsigned long)__brk_base;
77 struct boot_params boot_params;
80 * These are the four main kernel memory regions, we put them into
81 * the resource tree so that kdump tools and other debugging tools
85 static struct resource rodata_resource = {
86 .name = "Kernel rodata",
89 .flags = IORESOURCE_BUSY | IORESOURCE_SYSTEM_RAM
92 static struct resource data_resource = {
93 .name = "Kernel data",
96 .flags = IORESOURCE_BUSY | IORESOURCE_SYSTEM_RAM
99 static struct resource code_resource = {
100 .name = "Kernel code",
103 .flags = IORESOURCE_BUSY | IORESOURCE_SYSTEM_RAM
106 static struct resource bss_resource = {
107 .name = "Kernel bss",
110 .flags = IORESOURCE_BUSY | IORESOURCE_SYSTEM_RAM
115 /* CPU data as detected by the assembly code in head_32.S */
116 struct cpuinfo_x86 new_cpu_data;
117 unsigned int def_to_bigsmp;
119 struct apm_info apm_info;
120 EXPORT_SYMBOL(apm_info);
122 #if defined(CONFIG_X86_SPEEDSTEP_SMI) || \
123 defined(CONFIG_X86_SPEEDSTEP_SMI_MODULE)
124 struct ist_info ist_info;
125 EXPORT_SYMBOL(ist_info);
127 struct ist_info ist_info;
132 struct cpuinfo_x86 boot_cpu_data __read_mostly;
133 EXPORT_SYMBOL(boot_cpu_data);
135 #if !defined(CONFIG_X86_PAE) || defined(CONFIG_X86_64)
136 __visible unsigned long mmu_cr4_features __ro_after_init;
138 __visible unsigned long mmu_cr4_features __ro_after_init = X86_CR4_PAE;
142 static phys_addr_t ima_kexec_buffer_phys;
143 static size_t ima_kexec_buffer_size;
146 /* Boot loader ID and version as integers, for the benefit of proc_dointvec */
147 int bootloader_type, bootloader_version;
152 struct screen_info screen_info;
153 EXPORT_SYMBOL(screen_info);
154 struct edid_info edid_info;
155 EXPORT_SYMBOL_GPL(edid_info);
157 extern int root_mountflags;
159 unsigned long saved_video_mode;
161 #define RAMDISK_IMAGE_START_MASK 0x07FF
162 #define RAMDISK_PROMPT_FLAG 0x8000
163 #define RAMDISK_LOAD_FLAG 0x4000
165 static char __initdata command_line[COMMAND_LINE_SIZE];
166 #ifdef CONFIG_CMDLINE_BOOL
167 static char __initdata builtin_cmdline[COMMAND_LINE_SIZE] = CONFIG_CMDLINE;
170 #if defined(CONFIG_EDD) || defined(CONFIG_EDD_MODULE)
172 #ifdef CONFIG_EDD_MODULE
176 * copy_edd() - Copy the BIOS EDD information
177 * from boot_params into a safe place.
180 static inline void __init copy_edd(void)
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;
189 static inline void __init copy_edd(void)
194 void * __init extend_brk(size_t size, size_t align)
196 size_t mask = align - 1;
199 BUG_ON(_brk_start == 0);
200 BUG_ON(align & mask);
202 _brk_end = (_brk_end + mask) & ~mask;
203 BUG_ON((char *)(_brk_end + size) > __brk_limit);
205 ret = (void *)_brk_end;
208 memset(ret, 0, size);
214 static void __init cleanup_highmap(void)
219 static void __init reserve_brk(void)
221 if (_brk_end > _brk_start)
222 memblock_reserve(__pa_symbol(_brk_start),
223 _brk_end - _brk_start);
225 /* Mark brk area as locked down and no longer taking any
230 u64 relocated_ramdisk;
232 #ifdef CONFIG_BLK_DEV_INITRD
234 static u64 __init get_ramdisk_image(void)
236 u64 ramdisk_image = boot_params.hdr.ramdisk_image;
238 ramdisk_image |= (u64)boot_params.ext_ramdisk_image << 32;
240 if (ramdisk_image == 0)
241 ramdisk_image = phys_initrd_start;
243 return ramdisk_image;
245 static u64 __init get_ramdisk_size(void)
247 u64 ramdisk_size = boot_params.hdr.ramdisk_size;
249 ramdisk_size |= (u64)boot_params.ext_ramdisk_size << 32;
251 if (ramdisk_size == 0)
252 ramdisk_size = phys_initrd_size;
257 static void __init relocate_initrd(void)
259 /* Assume only end is not page aligned */
260 u64 ramdisk_image = get_ramdisk_image();
261 u64 ramdisk_size = get_ramdisk_size();
262 u64 area_size = PAGE_ALIGN(ramdisk_size);
264 /* We need to move the initrd down into directly mapped mem */
265 relocated_ramdisk = memblock_phys_alloc_range(area_size, PAGE_SIZE, 0,
266 PFN_PHYS(max_pfn_mapped));
267 if (!relocated_ramdisk)
268 panic("Cannot find place for new RAMDISK of size %lld\n",
271 initrd_start = relocated_ramdisk + PAGE_OFFSET;
272 initrd_end = initrd_start + ramdisk_size;
273 printk(KERN_INFO "Allocated new RAMDISK: [mem %#010llx-%#010llx]\n",
274 relocated_ramdisk, relocated_ramdisk + ramdisk_size - 1);
276 copy_from_early_mem((void *)initrd_start, ramdisk_image, ramdisk_size);
278 printk(KERN_INFO "Move RAMDISK from [mem %#010llx-%#010llx] to"
279 " [mem %#010llx-%#010llx]\n",
280 ramdisk_image, ramdisk_image + ramdisk_size - 1,
281 relocated_ramdisk, relocated_ramdisk + ramdisk_size - 1);
284 static void __init early_reserve_initrd(void)
286 /* Assume only end is not page aligned */
287 u64 ramdisk_image = get_ramdisk_image();
288 u64 ramdisk_size = get_ramdisk_size();
289 u64 ramdisk_end = PAGE_ALIGN(ramdisk_image + ramdisk_size);
291 if (!boot_params.hdr.type_of_loader ||
292 !ramdisk_image || !ramdisk_size)
293 return; /* No initrd provided by bootloader */
295 memblock_reserve(ramdisk_image, ramdisk_end - ramdisk_image);
298 static void __init reserve_initrd(void)
300 /* Assume only end is not page aligned */
301 u64 ramdisk_image = get_ramdisk_image();
302 u64 ramdisk_size = get_ramdisk_size();
303 u64 ramdisk_end = PAGE_ALIGN(ramdisk_image + ramdisk_size);
305 if (!boot_params.hdr.type_of_loader ||
306 !ramdisk_image || !ramdisk_size)
307 return; /* No initrd provided by bootloader */
311 printk(KERN_INFO "RAMDISK: [mem %#010llx-%#010llx]\n", ramdisk_image,
314 if (pfn_range_is_mapped(PFN_DOWN(ramdisk_image),
315 PFN_DOWN(ramdisk_end))) {
316 /* All are mapped, easy case */
317 initrd_start = ramdisk_image + PAGE_OFFSET;
318 initrd_end = initrd_start + ramdisk_size;
324 memblock_phys_free(ramdisk_image, ramdisk_end - ramdisk_image);
328 static void __init early_reserve_initrd(void)
331 static void __init reserve_initrd(void)
334 #endif /* CONFIG_BLK_DEV_INITRD */
336 static void __init add_early_ima_buffer(u64 phys_addr)
339 struct ima_setup_data *data;
341 data = early_memremap(phys_addr + sizeof(struct setup_data), sizeof(*data));
343 pr_warn("setup: failed to memremap ima_setup_data entry\n");
348 memblock_reserve(data->addr, data->size);
349 ima_kexec_buffer_phys = data->addr;
350 ima_kexec_buffer_size = data->size;
353 early_memunmap(data, sizeof(*data));
355 pr_warn("Passed IMA kexec data, but CONFIG_IMA not set. Ignoring.\n");
359 #if defined(CONFIG_HAVE_IMA_KEXEC) && !defined(CONFIG_OF_FLATTREE)
360 int __init ima_free_kexec_buffer(void)
364 if (!ima_kexec_buffer_size)
367 rc = memblock_phys_free(ima_kexec_buffer_phys,
368 ima_kexec_buffer_size);
372 ima_kexec_buffer_phys = 0;
373 ima_kexec_buffer_size = 0;
378 int __init ima_get_kexec_buffer(void **addr, size_t *size)
380 if (!ima_kexec_buffer_size)
383 *addr = __va(ima_kexec_buffer_phys);
384 *size = ima_kexec_buffer_size;
390 static void __init parse_setup_data(void)
392 struct setup_data *data;
393 u64 pa_data, pa_next;
395 pa_data = boot_params.hdr.setup_data;
397 u32 data_len, data_type;
399 data = early_memremap(pa_data, sizeof(*data));
400 data_len = data->len + sizeof(struct setup_data);
401 data_type = data->type;
402 pa_next = data->next;
403 early_memunmap(data, sizeof(*data));
407 e820__memory_setup_extended(pa_data, data_len);
413 parse_efi_setup(pa_data, data_len);
416 add_early_ima_buffer(pa_data);
419 data = early_memremap(pa_data, data_len);
420 add_bootloader_randomness(data->data, data->len);
421 /* Zero seed for forward secrecy. */
422 memzero_explicit(data->data, data->len);
423 /* Zero length in case we find ourselves back here by accident. */
424 memzero_explicit(&data->len, sizeof(data->len));
425 early_memunmap(data, data_len);
434 static void __init memblock_x86_reserve_range_setup_data(void)
436 struct setup_indirect *indirect;
437 struct setup_data *data;
438 u64 pa_data, pa_next;
441 pa_data = boot_params.hdr.setup_data;
443 data = early_memremap(pa_data, sizeof(*data));
445 pr_warn("setup: failed to memremap setup_data entry\n");
450 pa_next = data->next;
452 memblock_reserve(pa_data, sizeof(*data) + data->len);
454 if (data->type == SETUP_INDIRECT) {
456 early_memunmap(data, sizeof(*data));
457 data = early_memremap(pa_data, len);
459 pr_warn("setup: failed to memremap indirect setup_data\n");
463 indirect = (struct setup_indirect *)data->data;
465 if (indirect->type != SETUP_INDIRECT)
466 memblock_reserve(indirect->addr, indirect->len);
470 early_memunmap(data, len);
475 * --------- Crashkernel reservation ------------------------------
478 /* 16M alignment for crash kernel regions */
479 #define CRASH_ALIGN SZ_16M
482 * Keep the crash kernel below this limit.
484 * Earlier 32-bits kernels would limit the kernel to the low 512 MB range
485 * due to mapping restrictions.
487 * 64-bit kdump kernels need to be restricted to be under 64 TB, which is
488 * the upper limit of system RAM in 4-level paging mode. Since the kdump
489 * jump could be from 5-level paging to 4-level paging, the jump will fail if
490 * the kernel is put above 64 TB, and during the 1st kernel bootup there's
491 * no good way to detect the paging mode of the target kernel which will be
492 * loaded for dumping.
495 # define CRASH_ADDR_LOW_MAX SZ_512M
496 # define CRASH_ADDR_HIGH_MAX SZ_512M
498 # define CRASH_ADDR_LOW_MAX SZ_4G
499 # define CRASH_ADDR_HIGH_MAX SZ_64T
502 static int __init reserve_crashkernel_low(void)
505 unsigned long long base, low_base = 0, low_size = 0;
506 unsigned long low_mem_limit;
509 low_mem_limit = min(memblock_phys_mem_size(), CRASH_ADDR_LOW_MAX);
511 /* crashkernel=Y,low */
512 ret = parse_crashkernel_low(boot_command_line, low_mem_limit, &low_size, &base);
515 * two parts from kernel/dma/swiotlb.c:
516 * -swiotlb size: user-specified with swiotlb= or default.
518 * -swiotlb overflow buffer: now hardcoded to 32k. We round it
519 * to 8M for other buffers that may need to stay low too. Also
520 * make sure we allocate enough extra low memory so that we
521 * don't run out of DMA buffers for 32-bit devices.
523 low_size = max(swiotlb_size_or_default() + (8UL << 20), 256UL << 20);
525 /* passed with crashkernel=0,low ? */
530 low_base = memblock_phys_alloc_range(low_size, CRASH_ALIGN, 0, CRASH_ADDR_LOW_MAX);
532 pr_err("Cannot reserve %ldMB crashkernel low memory, please try smaller size.\n",
533 (unsigned long)(low_size >> 20));
537 pr_info("Reserving %ldMB of low memory at %ldMB for crashkernel (low RAM limit: %ldMB)\n",
538 (unsigned long)(low_size >> 20),
539 (unsigned long)(low_base >> 20),
540 (unsigned long)(low_mem_limit >> 20));
542 crashk_low_res.start = low_base;
543 crashk_low_res.end = low_base + low_size - 1;
544 insert_resource(&iomem_resource, &crashk_low_res);
549 static void __init reserve_crashkernel(void)
551 unsigned long long crash_size, crash_base, total_mem;
555 if (!IS_ENABLED(CONFIG_KEXEC_CORE))
558 total_mem = memblock_phys_mem_size();
561 ret = parse_crashkernel(boot_command_line, total_mem, &crash_size, &crash_base);
562 if (ret != 0 || crash_size <= 0) {
563 /* crashkernel=X,high */
564 ret = parse_crashkernel_high(boot_command_line, total_mem,
565 &crash_size, &crash_base);
566 if (ret != 0 || crash_size <= 0)
571 if (xen_pv_domain()) {
572 pr_info("Ignoring crashkernel for a Xen PV domain\n");
576 /* 0 means: find the address automatically */
579 * Set CRASH_ADDR_LOW_MAX upper bound for crash memory,
580 * crashkernel=x,high reserves memory over 4G, also allocates
581 * 256M extra low memory for DMA buffers and swiotlb.
582 * But the extra memory is not required for all machines.
583 * So try low memory first and fall back to high memory
584 * unless "crashkernel=size[KMG],high" is specified.
587 crash_base = memblock_phys_alloc_range(crash_size,
588 CRASH_ALIGN, CRASH_ALIGN,
591 crash_base = memblock_phys_alloc_range(crash_size,
592 CRASH_ALIGN, CRASH_ALIGN,
593 CRASH_ADDR_HIGH_MAX);
595 pr_info("crashkernel reservation failed - No suitable area found.\n");
599 unsigned long long start;
601 start = memblock_phys_alloc_range(crash_size, SZ_1M, crash_base,
602 crash_base + crash_size);
603 if (start != crash_base) {
604 pr_info("crashkernel reservation failed - memory is in use.\n");
609 if (crash_base >= (1ULL << 32) && reserve_crashkernel_low()) {
610 memblock_phys_free(crash_base, crash_size);
614 pr_info("Reserving %ldMB of memory at %ldMB for crashkernel (System RAM: %ldMB)\n",
615 (unsigned long)(crash_size >> 20),
616 (unsigned long)(crash_base >> 20),
617 (unsigned long)(total_mem >> 20));
619 crashk_res.start = crash_base;
620 crashk_res.end = crash_base + crash_size - 1;
621 insert_resource(&iomem_resource, &crashk_res);
624 static struct resource standard_io_resources[] = {
625 { .name = "dma1", .start = 0x00, .end = 0x1f,
626 .flags = IORESOURCE_BUSY | IORESOURCE_IO },
627 { .name = "pic1", .start = 0x20, .end = 0x21,
628 .flags = IORESOURCE_BUSY | IORESOURCE_IO },
629 { .name = "timer0", .start = 0x40, .end = 0x43,
630 .flags = IORESOURCE_BUSY | IORESOURCE_IO },
631 { .name = "timer1", .start = 0x50, .end = 0x53,
632 .flags = IORESOURCE_BUSY | IORESOURCE_IO },
633 { .name = "keyboard", .start = 0x60, .end = 0x60,
634 .flags = IORESOURCE_BUSY | IORESOURCE_IO },
635 { .name = "keyboard", .start = 0x64, .end = 0x64,
636 .flags = IORESOURCE_BUSY | IORESOURCE_IO },
637 { .name = "dma page reg", .start = 0x80, .end = 0x8f,
638 .flags = IORESOURCE_BUSY | IORESOURCE_IO },
639 { .name = "pic2", .start = 0xa0, .end = 0xa1,
640 .flags = IORESOURCE_BUSY | IORESOURCE_IO },
641 { .name = "dma2", .start = 0xc0, .end = 0xdf,
642 .flags = IORESOURCE_BUSY | IORESOURCE_IO },
643 { .name = "fpu", .start = 0xf0, .end = 0xff,
644 .flags = IORESOURCE_BUSY | IORESOURCE_IO }
647 void __init reserve_standard_io_resources(void)
651 /* request I/O space for devices used on all i[345]86 PCs */
652 for (i = 0; i < ARRAY_SIZE(standard_io_resources); i++)
653 request_resource(&ioport_resource, &standard_io_resources[i]);
657 static bool __init snb_gfx_workaround_needed(void)
662 static const __initconst u16 snb_ids[] = {
672 /* Assume no if something weird is going on with PCI */
673 if (!early_pci_allowed())
676 vendor = read_pci_config_16(0, 2, 0, PCI_VENDOR_ID);
677 if (vendor != 0x8086)
680 devid = read_pci_config_16(0, 2, 0, PCI_DEVICE_ID);
681 for (i = 0; i < ARRAY_SIZE(snb_ids); i++)
682 if (devid == snb_ids[i])
690 * Sandy Bridge graphics has trouble with certain ranges, exclude
691 * them from allocation.
693 static void __init trim_snb_memory(void)
695 static const __initconst unsigned long bad_pages[] = {
704 if (!snb_gfx_workaround_needed())
707 printk(KERN_DEBUG "reserving inaccessible SNB gfx pages\n");
710 * SandyBridge integrated graphics devices have a bug that prevents
711 * them from accessing certain memory ranges, namely anything below
712 * 1M and in the pages listed in bad_pages[] above.
714 * To avoid these pages being ever accessed by SNB gfx devices reserve
715 * bad_pages that have not already been reserved at boot time.
716 * All memory below the 1 MB mark is anyway reserved later during
717 * setup_arch(), so there is no need to reserve it here.
720 for (i = 0; i < ARRAY_SIZE(bad_pages); i++) {
721 if (memblock_reserve(bad_pages[i], PAGE_SIZE))
722 printk(KERN_WARNING "failed to reserve 0x%08lx\n",
727 static void __init trim_bios_range(void)
730 * A special case is the first 4Kb of memory;
731 * This is a BIOS owned area, not kernel ram, but generally
732 * not listed as such in the E820 table.
734 * This typically reserves additional memory (64KiB by default)
735 * since some BIOSes are known to corrupt low memory. See the
736 * Kconfig help text for X86_RESERVE_LOW.
738 e820__range_update(0, PAGE_SIZE, E820_TYPE_RAM, E820_TYPE_RESERVED);
741 * special case: Some BIOSes report the PC BIOS
742 * area (640Kb -> 1Mb) as RAM even though it is not.
745 e820__range_remove(BIOS_BEGIN, BIOS_END - BIOS_BEGIN, E820_TYPE_RAM, 1);
747 e820__update_table(e820_table);
750 /* called before trim_bios_range() to spare extra sanitize */
751 static void __init e820_add_kernel_range(void)
753 u64 start = __pa_symbol(_text);
754 u64 size = __pa_symbol(_end) - start;
757 * Complain if .text .data and .bss are not marked as E820_TYPE_RAM and
758 * attempt to fix it by adding the range. We may have a confused BIOS,
759 * or the user may have used memmap=exactmap or memmap=xxM$yyM to
760 * exclude kernel range. If we really are running on top non-RAM,
761 * we will crash later anyways.
763 if (e820__mapped_all(start, start + size, E820_TYPE_RAM))
766 pr_warn(".text .data .bss are not marked as E820_TYPE_RAM!\n");
767 e820__range_remove(start, size, E820_TYPE_RAM, 0);
768 e820__range_add(start, size, E820_TYPE_RAM);
771 static void __init early_reserve_memory(void)
774 * Reserve the memory occupied by the kernel between _text and
775 * __end_of_kernel_reserve symbols. Any kernel sections after the
776 * __end_of_kernel_reserve symbol must be explicitly reserved with a
777 * separate memblock_reserve() or they will be discarded.
779 memblock_reserve(__pa_symbol(_text),
780 (unsigned long)__end_of_kernel_reserve - (unsigned long)_text);
783 * The first 4Kb of memory is a BIOS owned area, but generally it is
784 * not listed as such in the E820 table.
786 * Reserve the first 64K of memory since some BIOSes are known to
787 * corrupt low memory. After the real mode trampoline is allocated the
788 * rest of the memory below 640k is reserved.
790 * In addition, make sure page 0 is always reserved because on
791 * systems with L1TF its contents can be leaked to user processes.
793 memblock_reserve(0, SZ_64K);
795 early_reserve_initrd();
797 memblock_x86_reserve_range_setup_data();
799 reserve_bios_regions();
804 * Dump out kernel offset information on panic.
807 dump_kernel_offset(struct notifier_block *self, unsigned long v, void *p)
809 if (kaslr_enabled()) {
810 pr_emerg("Kernel Offset: 0x%lx from 0x%lx (relocation range: 0x%lx-0x%lx)\n",
816 pr_emerg("Kernel Offset: disabled\n");
822 void x86_configure_nx(void)
824 if (boot_cpu_has(X86_FEATURE_NX))
825 __supported_pte_mask |= _PAGE_NX;
827 __supported_pte_mask &= ~_PAGE_NX;
830 static void __init x86_report_nx(void)
832 if (!boot_cpu_has(X86_FEATURE_NX)) {
833 printk(KERN_NOTICE "Notice: NX (Execute Disable) protection "
834 "missing in CPU!\n");
836 #if defined(CONFIG_X86_64) || defined(CONFIG_X86_PAE)
837 printk(KERN_INFO "NX (Execute Disable) protection: active\n");
839 /* 32bit non-PAE kernel, NX cannot be used */
840 printk(KERN_NOTICE "Notice: NX (Execute Disable) protection "
841 "cannot be enabled: non-PAE kernel!\n");
847 * Determine if we were loaded by an EFI loader. If so, then we have also been
848 * passed the efi memmap, systab, etc., so we should use these data structures
849 * for initialization. Note, the efi init code path is determined by the
850 * global efi_enabled. This allows the same kernel image to be used on existing
851 * systems (with a traditional BIOS) as well as on EFI systems.
854 * setup_arch - architecture-specific boot-time initializations
856 * Note: On x86_64, fixmaps are ready for use even before this is called.
859 void __init setup_arch(char **cmdline_p)
862 memcpy(&boot_cpu_data, &new_cpu_data, sizeof(new_cpu_data));
865 * copy kernel address range established so far and switch
866 * to the proper swapper page table
868 clone_pgd_range(swapper_pg_dir + KERNEL_PGD_BOUNDARY,
869 initial_page_table + KERNEL_PGD_BOUNDARY,
872 load_cr3(swapper_pg_dir);
874 * Note: Quark X1000 CPUs advertise PGE incorrectly and require
875 * a cr3 based tlb flush, so the following __flush_tlb_all()
876 * will not flush anything because the CPU quirk which clears
877 * X86_FEATURE_PGE has not been invoked yet. Though due to the
878 * load_cr3() above the TLB has been flushed already. The
879 * quirk is invoked before subsequent calls to __flush_tlb_all()
880 * so proper operation is guaranteed.
884 printk(KERN_INFO "Command line: %s\n", boot_command_line);
885 boot_cpu_data.x86_phys_bits = MAX_PHYSMEM_BITS;
889 * If we have OLPC OFW, we might end up relocating the fixmap due to
890 * reserve_top(), so do this before touching the ioremap area.
894 idt_setup_early_traps();
898 early_ioremap_init();
900 setup_olpc_ofw_pgd();
902 ROOT_DEV = old_decode_dev(boot_params.hdr.root_dev);
903 screen_info = boot_params.screen_info;
904 edid_info = boot_params.edid_info;
906 apm_info.bios = boot_params.apm_bios_info;
907 ist_info = boot_params.ist_info;
909 saved_video_mode = boot_params.hdr.vid_mode;
910 bootloader_type = boot_params.hdr.type_of_loader;
911 if ((bootloader_type >> 4) == 0xe) {
912 bootloader_type &= 0xf;
913 bootloader_type |= (boot_params.hdr.ext_loader_type+0x10) << 4;
915 bootloader_version = bootloader_type & 0xf;
916 bootloader_version |= boot_params.hdr.ext_loader_ver << 4;
918 #ifdef CONFIG_BLK_DEV_RAM
919 rd_image_start = boot_params.hdr.ram_size & RAMDISK_IMAGE_START_MASK;
922 if (!strncmp((char *)&boot_params.efi_info.efi_loader_signature,
923 EFI32_LOADER_SIGNATURE, 4)) {
924 set_bit(EFI_BOOT, &efi.flags);
925 } else if (!strncmp((char *)&boot_params.efi_info.efi_loader_signature,
926 EFI64_LOADER_SIGNATURE, 4)) {
927 set_bit(EFI_BOOT, &efi.flags);
928 set_bit(EFI_64BIT, &efi.flags);
932 x86_init.oem.arch_setup();
935 * Do some memory reservations *before* memory is added to memblock, so
936 * memblock allocations won't overwrite it.
938 * After this point, everything still needed from the boot loader or
939 * firmware or kernel text should be early reserved or marked not RAM in
940 * e820. All other memory is free game.
942 * This call needs to happen before e820__memory_setup() which calls the
943 * xen_memory_setup() on Xen dom0 which relies on the fact that those
944 * early reservations have happened already.
946 early_reserve_memory();
948 iomem_resource.end = (1ULL << boot_cpu_data.x86_phys_bits) - 1;
949 e820__memory_setup();
954 if (!boot_params.hdr.root_flags)
955 root_mountflags &= ~MS_RDONLY;
956 setup_initial_init_mm(_text, _etext, _edata, (void *)_brk_end);
958 code_resource.start = __pa_symbol(_text);
959 code_resource.end = __pa_symbol(_etext)-1;
960 rodata_resource.start = __pa_symbol(__start_rodata);
961 rodata_resource.end = __pa_symbol(__end_rodata)-1;
962 data_resource.start = __pa_symbol(_sdata);
963 data_resource.end = __pa_symbol(_edata)-1;
964 bss_resource.start = __pa_symbol(__bss_start);
965 bss_resource.end = __pa_symbol(__bss_stop)-1;
967 #ifdef CONFIG_CMDLINE_BOOL
968 #ifdef CONFIG_CMDLINE_OVERRIDE
969 strscpy(boot_command_line, builtin_cmdline, COMMAND_LINE_SIZE);
971 if (builtin_cmdline[0]) {
972 /* append boot loader cmdline to builtin */
973 strlcat(builtin_cmdline, " ", COMMAND_LINE_SIZE);
974 strlcat(builtin_cmdline, boot_command_line, COMMAND_LINE_SIZE);
975 strscpy(boot_command_line, builtin_cmdline, COMMAND_LINE_SIZE);
980 strscpy(command_line, boot_command_line, COMMAND_LINE_SIZE);
981 *cmdline_p = command_line;
984 * x86_configure_nx() is called before parse_early_param() to detect
985 * whether hardware doesn't support NX (so that the early EHCI debug
986 * console setup can safely call set_fixmap()).
992 if (efi_enabled(EFI_BOOT))
993 efi_memblock_x86_reserve_range();
995 #ifdef CONFIG_MEMORY_HOTPLUG
997 * Memory used by the kernel cannot be hot-removed because Linux
998 * cannot migrate the kernel pages. When memory hotplug is
999 * enabled, we should prevent memblock from allocating memory
1002 * ACPI SRAT records all hotpluggable memory ranges. But before
1003 * SRAT is parsed, we don't know about it.
1005 * The kernel image is loaded into memory at very early time. We
1006 * cannot prevent this anyway. So on NUMA system, we set any
1007 * node the kernel resides in as un-hotpluggable.
1009 * Since on modern servers, one node could have double-digit
1010 * gigabytes memory, we can assume the memory around the kernel
1011 * image is also un-hotpluggable. So before SRAT is parsed, just
1012 * allocate memory near the kernel image to try the best to keep
1013 * the kernel away from hotpluggable memory.
1015 if (movable_node_is_enabled())
1016 memblock_set_bottom_up(true);
1021 if (acpi_mps_check()) {
1022 #ifdef CONFIG_X86_LOCAL_APIC
1025 setup_clear_cpu_cap(X86_FEATURE_APIC);
1028 e820__reserve_setup_data();
1029 e820__finish_early_params();
1031 if (efi_enabled(EFI_BOOT))
1034 reserve_ibft_region();
1038 * VMware detection requires dmi to be available, so this
1039 * needs to be done after dmi_setup(), for the boot CPU.
1040 * For some guest types (Xen PV, SEV-SNP, TDX) it is required to be
1041 * called before cache_bp_init() for setting up MTRR state.
1043 init_hypervisor_platform();
1046 x86_init.resources.probe_roms();
1048 /* after parse_early_param, so could debug it */
1049 insert_resource(&iomem_resource, &code_resource);
1050 insert_resource(&iomem_resource, &rodata_resource);
1051 insert_resource(&iomem_resource, &data_resource);
1052 insert_resource(&iomem_resource, &bss_resource);
1054 e820_add_kernel_range();
1056 #ifdef CONFIG_X86_32
1057 if (ppro_with_ram_bug()) {
1058 e820__range_update(0x70000000ULL, 0x40000ULL, E820_TYPE_RAM,
1059 E820_TYPE_RESERVED);
1060 e820__update_table(e820_table);
1061 printk(KERN_INFO "fixed physical RAM map:\n");
1062 e820__print_table("bad_ppro");
1065 early_gart_iommu_check();
1069 * partially used pages are not usable - thus
1070 * we are rounding upwards:
1072 max_pfn = e820__end_of_ram_pfn();
1074 /* update e820 for memory not covered by WB MTRRs */
1076 if (mtrr_trim_uncached_memory(max_pfn))
1077 max_pfn = e820__end_of_ram_pfn();
1079 max_possible_pfn = max_pfn;
1082 * Define random base addresses for memory sections after max_pfn is
1083 * defined and before each memory section base is used.
1085 kernel_randomize_memory();
1087 #ifdef CONFIG_X86_32
1088 /* max_low_pfn get updated here */
1089 find_low_pfn_range();
1093 /* How many end-of-memory variables you have, grandma! */
1094 /* need this before calling reserve_initrd */
1095 if (max_pfn > (1UL<<(32 - PAGE_SHIFT)))
1096 max_low_pfn = e820__end_of_low_ram_pfn();
1098 max_low_pfn = max_pfn;
1100 high_memory = (void *)__va(max_pfn * PAGE_SIZE - 1) + 1;
1104 * Find and reserve possible boot-time SMP configuration:
1108 early_alloc_pgt_buf();
1111 * Need to conclude brk, before e820__memblock_setup()
1112 * it could use memblock_find_in_range, could overlap with
1119 memblock_set_current_limit(ISA_END_ADDRESS);
1120 e820__memblock_setup();
1123 * Needs to run after memblock setup because it needs the physical
1131 efi_mokvar_table_init();
1134 * The EFI specification says that boot service code won't be
1135 * called after ExitBootServices(). This is, in fact, a lie.
1137 efi_reserve_boot_services();
1139 /* preallocate 4k for mptable mpc */
1140 e820__memblock_alloc_reserved_mpc_new();
1142 #ifdef CONFIG_X86_CHECK_BIOS_CORRUPTION
1143 setup_bios_corruption_check();
1146 #ifdef CONFIG_X86_32
1147 printk(KERN_DEBUG "initial memory mapped: [mem 0x00000000-%#010lx]\n",
1148 (max_pfn_mapped<<PAGE_SHIFT) - 1);
1152 * Find free memory for the real mode trampoline and place it there. If
1153 * there is not enough free memory under 1M, on EFI-enabled systems
1154 * there will be additional attempt to reclaim the memory for the real
1155 * mode trampoline at efi_free_boot_services().
1157 * Unconditionally reserve the entire first 1M of RAM because BIOSes
1158 * are known to corrupt low memory and several hundred kilobytes are not
1159 * worth complex detection what memory gets clobbered. Windows does the
1160 * same thing for very similar reasons.
1162 * Moreover, on machines with SandyBridge graphics or in setups that use
1163 * crashkernel the entire 1M is reserved anyway.
1165 x86_platform.realmode_reserve();
1169 idt_setup_early_pf();
1172 * Update mmu_cr4_features (and, indirectly, trampoline_cr4_features)
1173 * with the current CR4 value. This may not be necessary, but
1174 * auditing all the early-boot CR4 manipulation would be needed to
1177 * Mask off features that don't work outside long mode (just
1180 mmu_cr4_features = __read_cr4() & ~X86_CR4_PCIDE;
1182 memblock_set_current_limit(get_max_mapped());
1185 * NOTE: On x86-32, only from this point on, fixmaps are ready for use.
1188 #ifdef CONFIG_PROVIDE_OHCI1394_DMA_INIT
1189 if (init_ohci1394_dma_early)
1190 init_ohci1394_dma_on_all_controllers();
1192 /* Allocate bigger log buffer */
1195 if (efi_enabled(EFI_BOOT)) {
1196 switch (boot_params.secure_boot) {
1197 case efi_secureboot_mode_disabled:
1198 pr_info("Secure boot disabled\n");
1200 case efi_secureboot_mode_enabled:
1201 pr_info("Secure boot enabled\n");
1204 pr_info("Secure boot could not be determined\n");
1211 acpi_table_upgrade();
1212 /* Look for ACPI tables and reserve memory occupied by them. */
1213 acpi_boot_table_init();
1219 early_platform_quirks();
1221 early_acpi_boot_init();
1224 dma_contiguous_reserve(max_pfn_mapped << PAGE_SHIFT);
1226 if (boot_cpu_has(X86_FEATURE_GBPAGES))
1227 hugetlb_cma_reserve(PUD_SHIFT - PAGE_SHIFT);
1230 * Reserve memory for crash kernel after SRAT is parsed so that it
1231 * won't consume hotpluggable memory.
1233 reserve_crashkernel();
1235 memblock_find_dma_reserve();
1237 if (!early_xdbc_setup_hardware())
1238 early_xdbc_register_console();
1240 x86_init.paging.pagetable_init();
1245 * Sync back kernel address range.
1247 * FIXME: Can the later sync in setup_cpu_entry_areas() replace
1250 sync_initial_page_table();
1256 generic_apic_probe();
1261 * Read APIC and some other early information from ACPI tables.
1267 * get boot-time SMP configuration:
1272 * Systems w/o ACPI and mptables might not have it mapped the local
1273 * APIC yet, but prefill_possible_map() might need to access it.
1275 init_apic_mappings();
1277 prefill_possible_map();
1282 io_apic_init_mappings();
1284 x86_init.hyper.guest_late_init();
1286 e820__reserve_resources();
1287 e820__register_nosave_regions(max_pfn);
1289 x86_init.resources.reserve_resources();
1291 e820__setup_pci_gap();
1294 #if defined(CONFIG_VGA_CONSOLE)
1295 if (!efi_enabled(EFI_BOOT) || (efi_mem_type(0xa0000) != EFI_CONVENTIONAL_MEMORY))
1296 conswitchp = &vga_con;
1299 x86_init.oem.banner();
1301 x86_init.timers.wallclock_init();
1304 * This needs to run before setup_local_APIC() which soft-disables the
1305 * local APIC temporarily and that masks the thermal LVT interrupt,
1306 * leading to softlockups on machines which have configured SMI
1307 * interrupt delivery.
1313 register_refined_jiffies(CLOCK_TICK_RATE);
1316 if (efi_enabled(EFI_BOOT))
1317 efi_apply_memmap_quirks();
1323 #ifdef CONFIG_X86_32
1325 static struct resource video_ram_resource = {
1326 .name = "Video RAM area",
1329 .flags = IORESOURCE_BUSY | IORESOURCE_MEM
1332 void __init i386_reserve_resources(void)
1334 request_resource(&iomem_resource, &video_ram_resource);
1335 reserve_standard_io_resources();
1338 #endif /* CONFIG_X86_32 */
1340 static struct notifier_block kernel_offset_notifier = {
1341 .notifier_call = dump_kernel_offset
1344 static int __init register_kernel_offset_dumper(void)
1346 atomic_notifier_chain_register(&panic_notifier_list,
1347 &kernel_offset_notifier);
1350 __initcall(register_kernel_offset_dumper);