From patchwork Tue Feb 4 06:58:01 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bin Meng X-Patchwork-Id: 235941 List-Id: U-Boot discussion From: bmeng.cn at gmail.com (Bin Meng) Date: Tue, 4 Feb 2020 14:58:01 +0800 Subject: Please pull u-boot-x86 Message-ID: Hi Tom, This PR includes the following changes for v2020.04: - Various minor fixes for x86 - Switch to ACPI mode on Intel edison - Support run-time configuration for NS16550 driver - Update coreboot and slimbootloader serial drivers to use NS16550 run-time configuration - ICH SPI driver fixes to hardware sequencing erase case - Move ITSS from Apollo Lake to a more generic location - Intel GPIO driver bug fixes - Move to vs2017-win2016 platform build host for Azure pipelines Azure pipelines result: https://dev.azure.com/bmeng/GitHub/_build/results?buildId=154&view=results It just took 1h 57m 0s for Azure to complete the build, but GitLab's pipelines is still pending. I don't know why. The following changes since commit 31a790bee939e227dfc7e6a6a323b2b13180707f: Merge branch 'master' of git://git.denx.de/u-boot-usb (2020-02-02 15:26:53 -0500) are available in the git repository at: https://gitlab.denx.de/u-boot/custodians/u-boot-x86 for you to fetch changes up to 9e0c131a32028547cc4834f238c614af2675c66d: azure: Move to vs2017-win2016 platform build host (2020-02-04 12:54:55 +0800) ---------------------------------------------------------------- Andy Shevchenko (1): x86: edison: Switch to ACPI mode Heinrich Schuchardt (1): doc: Chromebook Coral: fix build warnings Marek Vasut (1): x86: edison: Enable command line editing Masahiro Yamada (2): x86: use invd instead of wbinvd in real mode start code x86: limit the fs segment to the pointer size Park, Aiden (2): x86: serial: Use NS16550_DYNAMIC in Slim Bootloader doc: intel: Update serial driver changes in slimbootloader.rst Simon Glass (4): serial: ns16550: Support run-time configuration x86: Update coreboot serial table struct x86: serial: Add a coreboot serial driver x86: Move coreboot over to use the coreboot UART Tom Rini (1): azure: Move to vs2017-win2016 platform build host Wolfgang Wallner (9): spi: ich: Drop while loop in hardware sequencing erase case x86: apl: Add the term "Interrupt Timer Subsystem" to ITSS files x86: Move itss.h from Apollo Lake to the generic x86 include directory x86: Move itss.c from Apollo Lake to a more generic location x86: itss: Add a Kconfig option to enable/disable ITSS driver x86: itss: Remove apl-prefix gpio: intel_gpio: Pass pinctrl device to pcr_clrsetbits32() gpio: intel_gpio: Clear tx state bit when setting output gpio: intel_gpio: Fix register/bit offsets intel_gpio_get_value() .azure-pipelines.yml | 2 +- arch/x86/Kconfig | 6 ++++++ arch/x86/cpu/apollolake/Kconfig | 1 + arch/x86/cpu/apollolake/Makefile | 1 - arch/x86/cpu/i386/cpu.c | 10 +++++++--- arch/x86/cpu/intel_common/Makefile | 1 + arch/x86/cpu/{apollolake => intel_common}/itss.c | 60 ++++++++++++++++++++++++++++++------------------------------ arch/x86/cpu/slimbootloader/serial.c | 13 +++++-------- arch/x86/cpu/start.S | 2 +- arch/x86/cpu/start16.S | 2 +- arch/x86/dts/chromebook_coral.dts | 2 +- arch/x86/dts/coreboot.dts | 6 +++++- arch/x86/include/asm/coreboot_tables.h | 19 +++++++++++++++++++ arch/x86/include/asm/{arch-apollolake => }/itss.h | 2 ++ configs/edison_defconfig | 2 +- doc/board/google/chromebook_coral.rst | 90 ++++++++++++++++++++++++++++++++++++++++++++++-------------------------------------------- doc/board/intel/slimbootloader.rst | 35 ++++++++--------------------------- drivers/gpio/intel_gpio.c | 10 +++++----- drivers/pinctrl/intel/pinctrl.c | 2 +- drivers/serial/Kconfig | 32 ++++++++++++++++++++++++++++++++ drivers/serial/Makefile | 1 + drivers/serial/ns16550.c | 79 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-------- drivers/serial/serial_coreboot.c | 46 ++++++++++++++++++++++++++++++++++++++++++++++ drivers/spi/ich.c | 12 ++---------- include/configs/slimbootloader.h | 13 ------------- include/ns16550.h | 16 +++++++++++++++- 26 files changed, 308 insertions(+), 157 deletions(-) rename arch/x86/cpu/{apollolake => intel_common}/itss.c (73%) rename arch/x86/include/asm/{arch-apollolake => }/itss.h (97%) create mode 100644 drivers/serial/serial_coreboot.c Regards, Bin