mbox series

Please pull u-boot-x86

Message ID CAEUhbmU6sMzsdeWBs4yzCW-GYHEAnHGiokDuJeT5ADGNaPxPzg@mail.gmail.com
State Accepted
Delegated to: Tom Rini
Headers show
Series Please pull u-boot-x86 | expand

Pull-request

https://gitlab.denx.de/u-boot/custodians/u-boot-x86

Message

Bin Meng Feb. 4, 2020, 6:58 a.m. UTC
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

Comments

Tom Rini Feb. 5, 2020, 1:03 a.m. UTC | #1
On Tue, Feb 04, 2020 at 02:58:01PM +0800, Bin Meng wrote:

> 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.

Probably due to a lack of build resources.  We still only have a few
machines available to everyone.

> 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)
> 

Applied to u-boot/master, thanks!