public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [PULL, v2] u-boot-riscv/master
@ 2023-08-02 10:40 Leo Liang
  2023-08-02 19:21 ` Tom Rini
  0 siblings, 1 reply; 2+ messages in thread
From: Leo Liang @ 2023-08-02 10:40 UTC (permalink / raw)
  To: trini; +Cc: u-boot, rick, ycliang

Hi Tom, 

The following changes since commit 7755b2200777f72dca87dd169138e95f011bbcb9:

  Merge tag 'x86-pull-20230801' of https://source.denx.de/u-boot/custodians/u-boot-x86 (2023-08-01 11:57:55 -0400)

are available in the Git repository at:

  https://source.denx.de/u-boot/custodians/u-boot-riscv.git

for you to fetch changes up to 02be57caf730e2213bc844bf1dbe58bedd2c3734:

  riscv: qemu: Enable usb keyboard as an input device (2023-08-02 16:32:44 +0800)

CI result shows no issue: https://source.denx.de/u-boot/custodians/u-boot-riscv/-/pipelines/17179

----------------------------------------------------------------

+ Fix compilation error for CI when enabling RTL8169 driver
+ Fix compilation error for pci_mmc.c by adding acpi_table header file
+ Support video console and usb keyboard on RISC-V QEMU virt machine
+ Support StarFive JH7110 PCIe driver
+ Enable PCI on Unmatched board

----------------------------------------------------------------
Bin Meng (8):
      riscv: qemu: Enable Bochs video support
      console: kconfig: Drop the redundant VIDEO dependency
      console: Make stdio_print_current_devices() static
      console: Refactor stdio_print_current_devices() a little bit
      console: Print out complete stdio device list
      riscv: qemu: Enable PRE_CONSOLE_BUFFER
      riscv: qemu: Remove out-of-date "riscv, kernel-start" handling
      riscv: qemu: Enable usb keyboard as an input device

Heinrich Schuchardt (2):
      riscv: sifive: initialize PCI on Unmatched
      acpi: Add missing RISC-V acpi_table header

Mason Huo (3):
      starfive: pci: Add StarFive JH7110 pcie driver
      configs: starfive-jh7110: Add support for PCIe host driver
      riscv: dts: starfive: Enable PCIe host controller

Minda Chen (5):
      i2c: designware: Add Kconfig for designware_i2c_pci.c
      net: rtl8169: Fix compile warning in rtl8169
      net: rtl8169: Fix DMA minimal aligned compile warning in RISC-V
      net: rtl8169: Add one device ID 0x8161
      configs: starfive-jh7110: Add CONFIG_RTL8169

 arch/riscv/dts/jh7110-starfive-visionfive-2.dtsi |  11 +
 arch/riscv/dts/jh7110.dtsi                       |  74 ++++++
 arch/riscv/include/asm/acpi_table.h              |  11 +
 board/emulation/qemu-riscv/Kconfig               |  13 +
 board/emulation/qemu-riscv/qemu-riscv.c          |  27 +-
 common/Kconfig                                   |   2 +-
 common/console.c                                 |  44 ++--
 configs/sifive_unmatched_defconfig               |   1 +
 configs/starfive_visionfive2_defconfig           |   8 +
 doc/board/emulation/qemu-riscv.rst               |  10 +
 drivers/i2c/Kconfig                              |   9 +
 drivers/i2c/Makefile                             |   4 +-
 drivers/net/rtl8169.c                            |  22 +-
 drivers/pci/Kconfig                              |  13 +
 drivers/pci/Makefile                             |   2 +
 drivers/pci/pcie_plda_common.c                   | 116 +++++++++
 drivers/pci/pcie_plda_common.h                   | 118 +++++++++
 drivers/pci/pcie_starfive_jh7110.c               | 317 +++++++++++++++++++++++
 include/configs/qemu-riscv.h                     |  15 +-
 include/stdio_dev.h                              |   2 -
 20 files changed, 755 insertions(+), 64 deletions(-)
 create mode 100644 arch/riscv/include/asm/acpi_table.h
 create mode 100644 drivers/pci/pcie_plda_common.c
 create mode 100644 drivers/pci/pcie_plda_common.h
 create mode 100644 drivers/pci/pcie_starfive_jh7110.c

Best regards,
Leo

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PULL, v2] u-boot-riscv/master
  2023-08-02 10:40 [PULL, v2] u-boot-riscv/master Leo Liang
@ 2023-08-02 19:21 ` Tom Rini
  0 siblings, 0 replies; 2+ messages in thread
From: Tom Rini @ 2023-08-02 19:21 UTC (permalink / raw)
  To: Leo Liang; +Cc: u-boot, rick

[-- Attachment #1: Type: text/plain, Size: 721 bytes --]

On Wed, Aug 02, 2023 at 10:40:05AM +0000, Leo Liang wrote:

> Hi Tom, 
> 
> The following changes since commit 7755b2200777f72dca87dd169138e95f011bbcb9:
> 
>   Merge tag 'x86-pull-20230801' of https://source.denx.de/u-boot/custodians/u-boot-x86 (2023-08-01 11:57:55 -0400)
> 
> are available in the Git repository at:
> 
>   https://source.denx.de/u-boot/custodians/u-boot-riscv.git
> 
> for you to fetch changes up to 02be57caf730e2213bc844bf1dbe58bedd2c3734:
> 
>   riscv: qemu: Enable usb keyboard as an input device (2023-08-02 16:32:44 +0800)
> 
> CI result shows no issue: https://source.denx.de/u-boot/custodians/u-boot-riscv/-/pipelines/17179
> 

Applied to u-boot/master, thanks!

-- 
Tom

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-08-02 19:21 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-02 10:40 [PULL, v2] u-boot-riscv/master Leo Liang
2023-08-02 19:21 ` Tom Rini

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox