From: Yao Zi <ziyao@disroot.org>
To: Leo Liang <ycliang@andestech.com>, <trini@konsulko.com>
Cc: <u-boot@lists.denx.de>, <rick@andestech.com>
Subject: Re: [GIT PULL] u-boot-riscv/master
Date: Fri, 25 Apr 2025 10:35:30 +0000 [thread overview]
Message-ID: <aAtlctz9Gx6-Vzuv@pie.lan> (raw)
In-Reply-To: <aAte-nS8ZhO_Odw1@swlinux02>
Hi Leo,
On Fri, Apr 25, 2025 at 06:07:54PM +0800, Leo Liang wrote:
> Hi Tom,
>
> The following changes since commit 10f48365112b164bee6564033ab682747efcb483:
>
> Merge patch series "Add PCIe support for TI AM64 SoC" (2025-04-24 10:46:17 -0600)
>
> 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 5ac699efe94f24df561d33e420d3c73f5fb797e8:
>
> board: starfive: visionfive2: Order board detection logic to match config (2025-04-25 17:04:09 +0800)
>
> CI result shows no issue: https://source.denx.de/u-boot/custodians/u-boot-riscv/-/pipelines/25940
> ----------------------------------------------------------------
> - riscv: lib: Simplify FDT retrieving process
> - board: k1: pinctrl: Add pinctrl support for bananapi-f3
> - binman: riscv: Fix binman_sym functionality
> - board: starfive: visionfive2: Reorder board detection logic
> - board: starfive: Add DeepComputing FML13V01 support
> ----------------------------------------------------------------
> E Shattow (2):
> doc: board: starfive: visionfive2: add missing format command to Flashing
> board: starfive: visionfive2: Order board detection logic to match config
>
> Heinrich Schuchardt (9):
> configs: qemu-riscv raise CONFIG_NR_DRAM_BANKS
> configs: add jh7110-deepcomputing-fml13v01 to VF2 defconfig
> riscv: dts: jh7110: add DeepComputing FML13V01 device-tree
> board: starfive: DeepComputing FML13V01 fdt selection
> board: starfive: spl: support DeepComputing FML13V01
> doc: add DeepComputing FML13V01 documentation
> doc: starfive: use consistent formatting
> doc: starfive: use jh7110_common.rst
> doc: jh7110: describe debug UART
>
> Huan Zhou (2):
> riscv: dts: k1: add pinctrl property in dts.
> config: Enable pinctrl in bananapi-f3
>
> Minda Chen (1):
> MAINTAINERS: visionfive2: Add match N: starfive pattern
>
> Yao Zi (7):
> riscv: lib: Add a default implementation of board_fdt_blob_setup
> board: qemu: riscv: Remove duplicated board_fdt_blob_setup
> board: starfive: Remove duplicated board_fdt_blob_setup
> board: sifive: Remove dead board_fdt_blob_setup
> riscv: dts: binman.dtsi: Switch to u-boot-nodtb entry for proper U-Boot
There's still an unresolved comment for this patch[1], which doesn't
affect the functionality but makes the code cleaner. Should I send
v3 of the series? Or alternatvely I could clean the filename property
up with a separate patch, which may reduce your work. I'm fine with both
ways.
Best regards,
Yao Zi
[1]: https://lore.kernel.org/all/CAFLszTjiRKMLny_RcRB4sUV75c8_QLFkw4u_x6qfs3k1q=KsDg@mail.gmail.com/
> riscv: dts: starfive: Prevent binman from relocating symbols in SPL
> riscv: Provide __image_copy_{start_end} symbols in linkerscript
>
> arch/riscv/cpu/u-boot-spl.lds | 2 +
> arch/riscv/cpu/u-boot.lds | 3 +
> arch/riscv/dts/binman.dtsi | 2 +-
> .../dts/jh7110-deepcomputing-fml13v01-u-boot.dtsi | 7 ++
> arch/riscv/dts/k1-bananapi-f3.dts | 3 +
> arch/riscv/dts/k1-pinctrl.dtsi | 19 ++++
> arch/riscv/dts/k1.dtsi | 8 +-
> arch/riscv/dts/starfive-visionfive2-binman.dtsi | 1 +
> arch/riscv/lib/Makefile | 1 +
> arch/riscv/lib/board.c | 19 ++++
> board/emulation/qemu-riscv/qemu-riscv.c | 8 --
> board/sifive/unleashed/unleashed.c | 11 ---
> board/sifive/unmatched/unmatched.c | 10 --
> board/starfive/visionfive2/MAINTAINERS | 2 +-
> board/starfive/visionfive2/spl.c | 43 +++++----
> board/starfive/visionfive2/starfive_visionfive2.c | 16 +---
> configs/bananapi-f3_defconfig | 2 +
> configs/qemu-riscv32_defconfig | 1 -
> configs/qemu-riscv32_smode_defconfig | 1 -
> configs/qemu-riscv32_spl_defconfig | 1 -
> configs/qemu-riscv64_defconfig | 1 -
> configs/qemu-riscv64_smode_defconfig | 1 -
> configs/qemu-riscv64_spl_defconfig | 1 -
> configs/starfive_visionfive2_defconfig | 2 +-
> doc/board/starfive/deepcomputing_fml13v01.rst | 80 ++++++++++++++++
> doc/board/starfive/index.rst | 1 +
> doc/board/starfive/jh7110_common.rst | 103 +++++++++++++++++++++
> doc/board/starfive/milk-v_mars.rst | 18 +---
> doc/board/starfive/pine64_star64.rst | 26 +-----
> doc/board/starfive/visionfive2.rst | 48 ++--------
> 30 files changed, 292 insertions(+), 149 deletions(-)
> create mode 100644 arch/riscv/dts/jh7110-deepcomputing-fml13v01-u-boot.dtsi
> create mode 100644 arch/riscv/dts/k1-pinctrl.dtsi
> create mode 100644 arch/riscv/lib/board.c
> create mode 100644 doc/board/starfive/deepcomputing_fml13v01.rst
> create mode 100644 doc/board/starfive/jh7110_common.rst
>
>
> Best regards,
> Leo
next prev parent reply other threads:[~2025-04-25 10:35 UTC|newest]
Thread overview: 78+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-04-25 10:07 [GIT PULL] u-boot-riscv/master Leo Liang
2025-04-25 10:35 ` Yao Zi [this message]
2025-04-26 14:14 ` Tom Rini
2025-04-26 17:26 ` [PATCH] riscv: dts: binman.dtsi: Drop filename property for proper U-Boot Yao Zi
2025-05-08 6:52 ` Leo Liang
2025-04-25 12:57 ` [GIT PULL] u-boot-riscv/master E Shattow
2025-04-25 13:02 ` E Shattow
2025-04-25 23:43 ` Tom Rini
2025-04-26 1:13 ` E Shattow
2025-04-26 14:14 ` Tom Rini
2025-04-27 7:47 ` E Shattow
-- strict thread matches above, loose matches on Subject: below --
2025-10-16 12:07 [GIT,PULL] u-boot-riscv/master Leo Liang
2025-10-16 17:38 ` Tom Rini
2025-08-12 8:04 [GIT PULL] u-boot-riscv/master Leo Liang
2025-08-12 15:22 ` Tom Rini
2025-08-13 6:57 ` Leo Liang
2025-08-13 11:16 ` Martin Herren
2025-08-13 11:59 ` Leo Liang
2025-05-21 9:50 Leo Liang
2025-05-21 18:39 ` Tom Rini
2025-05-22 11:28 ` Conor Dooley
2025-05-22 14:45 ` Tom Rini
2025-05-22 15:36 ` Leo Liang
2025-05-22 15:54 ` Tom Rini
2025-05-22 16:40 ` Yao Zi
2025-05-23 9:18 ` Conor Dooley
2025-05-26 3:32 ` Mayuresh Chitale
2025-05-26 9:17 ` Conor Dooley
2025-05-26 14:56 ` Tom Rini
2025-05-26 17:34 ` Mayuresh Chitale
2025-05-26 18:16 ` Tom Rini
2025-05-27 17:10 ` Mayuresh Chitale
2025-05-27 17:34 ` Tom Rini
2025-03-25 6:19 Leo Liang
2025-03-25 20:18 ` Tom Rini
2025-03-06 12:18 Leo Liang
2025-03-07 11:20 ` Yao Zi
2025-02-20 5:13 Leo Liang
2025-02-20 17:19 ` Tom Rini
2025-02-03 8:17 Leo Liang
2025-02-03 21:26 ` Tom Rini
2025-01-17 1:53 Leo Liang
2025-01-17 17:56 ` Tom Rini
2024-11-27 13:08 Leo Liang
2024-11-27 18:54 ` Tom Rini
2024-11-06 12:12 Leo Liang
2024-11-08 16:51 ` Tom Rini
2024-11-11 13:24 ` Tom Rini
2024-10-29 12:33 Leo Liang
2024-10-29 16:37 ` Tom Rini
2024-10-28 12:24 Leo Liang
2024-10-28 19:33 ` Tom Rini
2024-07-22 8:29 Leo Liang
2024-07-22 19:31 ` Tom Rini
2024-05-30 8:56 Leo Liang
2024-06-03 17:42 ` Tom Rini
2024-05-14 13:28 Leo Liang
2024-05-14 16:14 ` Tom Rini
2024-05-01 16:38 Leo Liang
2024-05-02 14:42 ` Tom Rini
2024-04-09 8:25 Leo Liang
2024-04-10 0:43 ` Tom Rini
2024-03-26 13:22 Leo Liang
2024-03-27 12:12 ` Tom Rini
2024-03-12 8:51 Leo Liang
2024-03-12 18:52 ` Tom Rini
2024-01-31 10:21 Leo Liang
2024-01-31 14:14 ` Tom Rini
2023-12-14 2:38 Leo Yu-Chi Liang(梁育齊)
2023-12-14 12:19 ` Tom Rini
2023-12-14 12:46 ` Leo Liang
2023-12-14 14:39 ` Tom Rini
2023-12-07 13:46 Leo Liang
2023-12-09 20:59 ` Tom Rini
2023-11-02 10:49 Leo Liang
2023-11-02 14:53 ` Tom Rini
2021-02-26 1:53 Leo Liang
2021-02-26 17:40 ` Tom Rini
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=aAtlctz9Gx6-Vzuv@pie.lan \
--to=ziyao@disroot.org \
--cc=rick@andestech.com \
--cc=trini@konsulko.com \
--cc=u-boot@lists.denx.de \
--cc=ycliang@andestech.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox