Hi Tom, This PR includes the following x86 changes for v2020.10:
- Fix parsing of "mtrr list" command - Introduce USE_EARLY_BOARD_INIT option and remove dead codes for most x86 boards Azure results : PASS https://dev.azure.com/bmeng/GitHub/_build/results?buildId=290&view=results The following changes since commit 23e333a5c083a000d0cabc53f7c0d261bae9e5ca: MAINTAINERS: step down as maintainer of UniPhier SoCs (2020-08-31 17:11:24 -0400) are available in the git repository at: https://gitlab.denx.de/u-boot/custodians/u-boot-x86 for you to fetch changes up to 1150a0b6bd70084eb5c8b9ecfc60100cb7a768e2: x86: Drop nhlt_serialise() (2020-09-01 17:00:28 +0800) ---------------------------------------------------------------- Andy Shevchenko (15): x86: Introduce USE_EARLY_BOARD_INIT option x86: advantech: som-db5800-som-6867: Remove dead code x86: congatec: conga-qeval20-qa3-e3845: Remove dead code x86: coreboot: Remove dead code x86: dfi: dfi-bt700: Remove dead code x86: efi: efi-x86_payload: Remove dead code x86: intel: bayleybay: Remove dead code x86: intel: cherryhill: Remove dead code x86: intel: cougarcanyon2: Remove dead code x86: intel: crownbay: Remove dead code x86: intel: edison: Remove dead code x86: intel: galileo: Remove dead code x86: intel: minnowmax: Remove dead code x86: intel: slimbootloader: Remove dead code x86: qemu: Remove dead code Simon Glass (2): x86: pinctrl: Fix 'relatove' typo x86: Drop nhlt_serialise() Wolfgang Wallner (1): x86: mtrr: Fix parsing of "mtrr list" command arch/x86/Kconfig | 3 +++ arch/x86/cpu/start.S | 3 +++ arch/x86/include/asm/acpi_nhlt.h | 8 -------- board/advantech/som-db5800-som-6867/Makefile | 2 +- board/advantech/som-db5800-som-6867/start.S | 8 -------- board/congatec/conga-qeval20-qa3-e3845/Makefile | 2 +- board/congatec/conga-qeval20-qa3-e3845/start.S | 8 -------- board/coreboot/coreboot/Makefile | 2 +- board/coreboot/coreboot/start.S | 12 ------------ board/dfi/dfi-bt700/Makefile | 2 +- board/dfi/dfi-bt700/start.S | 8 -------- board/efi/efi-x86_payload/Makefile | 2 +- board/efi/efi-x86_payload/start.S | 8 -------- board/emulation/qemu-x86/Makefile | 2 +- board/emulation/qemu-x86/qemu-x86.c | 0 board/emulation/qemu-x86/start.S | 8 -------- board/google/chromebook_coral/Kconfig | 1 + board/google/chromebook_link/Kconfig | 1 + board/google/chromebook_samus/Kconfig | 1 + board/intel/bayleybay/Makefile | 2 +- board/intel/bayleybay/start.S | 8 -------- board/intel/cherryhill/Makefile | 2 +- board/intel/cherryhill/start.S | 8 -------- board/intel/cougarcanyon2/Makefile | 2 +- board/intel/cougarcanyon2/start.S | 8 -------- board/intel/crownbay/Makefile | 2 +- board/intel/crownbay/start.S | 8 -------- board/intel/edison/Makefile | 2 +- board/intel/edison/start.S | 12 ------------ board/intel/galileo/Makefile | 2 +- board/intel/galileo/start.S | 8 -------- board/intel/minnowmax/Makefile | 2 +- board/intel/minnowmax/start.S | 8 -------- board/intel/slimbootloader/Makefile | 2 +- board/intel/slimbootloader/start.S | 9 --------- cmd/x86/mtrr.c | 3 ++- drivers/pinctrl/intel/Kconfig | 2 +- 37 files changed, 26 insertions(+), 145 deletions(-) delete mode 100644 board/advantech/som-db5800-som-6867/start.S delete mode 100644 board/congatec/conga-qeval20-qa3-e3845/start.S delete mode 100644 board/coreboot/coreboot/start.S delete mode 100644 board/dfi/dfi-bt700/start.S delete mode 100644 board/efi/efi-x86_payload/start.S create mode 100644 board/emulation/qemu-x86/qemu-x86.c delete mode 100644 board/emulation/qemu-x86/start.S delete mode 100644 board/intel/bayleybay/start.S delete mode 100644 board/intel/cherryhill/start.S delete mode 100644 board/intel/cougarcanyon2/start.S delete mode 100644 board/intel/crownbay/start.S delete mode 100644 board/intel/edison/start.S delete mode 100644 board/intel/galileo/start.S delete mode 100644 board/intel/minnowmax/start.S delete mode 100644 board/intel/slimbootloader/start.S Regards, Bin