Commit ac73e08e authored by Linus Torvalds's avatar Linus Torvalds
Browse files

Merge branch 'x86-grub2-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull x86 grub2 updates from Ingo Molnar:
 "This extends the x86 boot protocol to include an address for the RSDP
  table - utilized by Xen currently.

  Matching Grub2 patches are pending as well. (Juergen Gross)"

* 'x86-grub2-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
  x86/acpi, x86/boot: Take RSDP address for boot params if available
  x86/boot: Add ACPI RSDP address to setup_header
  x86/xen: Fix boot loader version reported for PVH guests
parents fec98069 e7b66d16
Loading
Loading
Loading
Loading
+31 −1
Original line number Diff line number Diff line
@@ -61,6 +61,18 @@ Protocol 2.12: (Kernel 3.8) Added the xloadflags field and extension fields
	 	to struct boot_params for loading bzImage and ramdisk
		above 4G in 64bit.

Protocol 2.13:	(Kernel 3.14) Support 32- and 64-bit flags being set in
		xloadflags to support booting a 64-bit kernel from 32-bit
		EFI

Protocol 2.14:	(Kernel 4.20) Added acpi_rsdp_addr holding the physical
		address of the ACPI RSDP table.
		The bootloader updates version with:
		0x8000 | min(kernel-version, bootloader-version)
		kernel-version being the protocol version supported by
		the kernel and bootloader-version the protocol version
		supported by the bootloader.

**** MEMORY LAYOUT

The traditional memory map for the kernel loader, used for Image or
@@ -197,6 +209,7 @@ Offset Proto Name Meaning
0258/8	2.10+	pref_address	Preferred loading address
0260/4	2.10+	init_size	Linear memory required during initialization
0264/4	2.11+	handover_offset	Offset of handover entry point
0268/8	2.14+	acpi_rsdp_addr	Physical address of RSDP table

(1) For backwards compatibility, if the setup_sects field contains 0, the
    real value is 4.
@@ -309,7 +322,7 @@ Protocol: 2.00+
  Contains the magic number "HdrS" (0x53726448).

Field name:	version
Type:		read
Type:		modify
Offset/size:	0x206/2
Protocol:	2.00+

@@ -317,6 +330,12 @@ Protocol: 2.00+
  e.g. 0x0204 for version 2.04, and 0x0a11 for a hypothetical version
  10.17.

  Up to protocol version 2.13 this information is only read by the
  bootloader. From protocol version 2.14 onwards the bootloader will
  write the used protocol version or-ed with 0x8000 to the field. The
  used protocol version will be the minimum of the supported protocol
  versions of the bootloader and the kernel.

Field name:	realmode_swtch
Type:		modify (optional)
Offset/size:	0x208/4
@@ -744,6 +763,17 @@ Offset/size: 0x264/4

  See EFI HANDOVER PROTOCOL below for more details.

Field name:	acpi_rsdp_addr
Type:		write
Offset/size:	0x268/8
Protocol:	2.14+

  This field can be set by the boot loader to tell the kernel the
  physical address of the ACPI RSDP table.

  A value of 0 indicates the kernel should fall back to the standard
  methods to locate the RSDP.


**** THE IMAGE CHECKSUM

+5 −1
Original line number Diff line number Diff line
@@ -300,7 +300,7 @@ _start:
	# Part 2 of the header, from the old setup.S

		.ascii	"HdrS"		# header signature
		.word	0x020d		# header version number (>= 0x0105)
		.word	0x020e		# header version number (>= 0x0105)
					# or else old loadlin-1.5 will fail)
		.globl realmode_swtch
realmode_swtch:	.word	0, 0		# default_switch, SETUPSEG
@@ -558,6 +558,10 @@ pref_address: .quad LOAD_PHYSICAL_ADDR # preferred load addr
init_size:		.long INIT_SIZE		# kernel initialization size
handover_offset:	.long 0			# Filled in by build.c

acpi_rsdp_addr:		.quad 0			# 64-bit physical pointer to the
						# ACPI RSDP table, added with
						# version 2.14

# End of setup header #####################################################

	.section ".entrytext", "ax"
+7 −0
Original line number Diff line number Diff line
@@ -142,6 +142,8 @@ static inline u64 acpi_arch_get_root_pointer(void)

void acpi_generic_reduced_hw_init(void);

u64 x86_default_get_root_pointer(void);

#else /* !CONFIG_ACPI */

#define acpi_lapic 0
@@ -153,6 +155,11 @@ static inline void disable_acpi(void) { }

static inline void acpi_generic_reduced_hw_init(void) { }

static inline u64 x86_default_get_root_pointer(void)
{
	return 0;
}

#endif /* !CONFIG_ACPI */

#define ARCH_HAS_POWER_INIT	1
+2 −0
Original line number Diff line number Diff line
@@ -303,4 +303,6 @@ extern void x86_init_noop(void);
extern void x86_init_uint_noop(unsigned int unused);
extern bool x86_pnpbios_disabled(void);

void x86_verify_bootdata_version(void);

#endif
+4 −0
Original line number Diff line number Diff line
@@ -16,6 +16,9 @@
#define RAMDISK_PROMPT_FLAG		0x8000
#define RAMDISK_LOAD_FLAG		0x4000

/* version flags */
#define VERSION_WRITTEN	0x8000

/* loadflags */
#define LOADED_HIGH	(1<<0)
#define KASLR_FLAG	(1<<1)
@@ -86,6 +89,7 @@ struct setup_header {
	__u64	pref_address;
	__u32	init_size;
	__u32	handover_offset;
	__u64	acpi_rsdp_addr;
} __attribute__((packed));

struct sys_desc_table {
Loading