U-Boot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Yixun Lan <dlan@gentoo.org>
To: Huan Zhou <pericycle.cc@gmail.com>
Cc: u-boot@lists.denx.de, "Ben Dooks" <ben.dooks@codethink.co.uk>,
	"Marcel Ziswiler" <marcel@ziswiler.com>,
	"Bin Meng" <bmeng@tinylab.org>,
	"Dan Carpenter" <dan.carpenter@linaro.org>,
	"Frieder Schrempf" <frieder.schrempf@kontron.de>,
	"Heinrich Schuchardt" <xypron.glpk@gmx.de>,
	"Jonas Schwöbel" <jonasschwoebel@yahoo.de>,
	"Kever Yang" <kever.yang@rock-chips.com>,
	Leo <ycliang@andestech.com>,
	"Michal Simek" <michal.simek@amd.com>,
	"Nishanth Menon" <nm@ti.com>,
	"Padmarao Begari" <padmarao.begari@microchip.com>,
	"Quentin Schulz" <quentin.schulz@cherry.de>,
	Randolph <randolph@andestech.com>,
	"Rick Chen" <rick@andestech.com>,
	"Samuel Holland" <samuel@sholland.org>,
	"Sumit Garg" <sumit.garg@linaro.org>,
	"Svyatoslav Ryhel" <clamor95@gmail.com>,
	"Tom Rini" <trini@konsulko.com>,
	"Yu Chien Peter Lin" <peterlin@andestech.com>,
	"Kongyang Liu" <seashell11234455@gmail.com>
Subject: Re: [PATCH v5 0/2] riscv: spacemit: add support for bananapi-f3
Date: Tue, 10 Dec 2024 10:04:41 +0800	[thread overview]
Message-ID: <20241210020441-GYA1904091@gentoo> (raw)
In-Reply-To: <20241209-pickup-bpif3-v5-0-92f801b7c6c1@gmail.com>

Hi Huan:

I have a few comments.. and will put some in separated patch

First, it's always your responsibility to collect the tags when
you sending out new version, as I see you missed Leo's review tag in v2
and Marcel's tested tag in v4

P.S: You can rely on maintainer to collect tags of the last version 
if no real changes but only tags added..

On 10:00 Mon 09 Dec     , Huan Zhou wrote:
> Banana Pi F3 board is a industrial grade RISC-V development board, it
> design with SpacemiT K1 8 core RISC-V chip, CPU integrates 2.0 TOPs AI
> computing power. 4G DDR and 16G eMMC onboard. 2x GbE Ethernet port, 4x USB
> 3.0 and PCIe for M.2 interface, support HDMI and Dual MIPI-CSI Camera.
> 
> This patch introduces fundamental support for the Banana Pi F3 board,
> encompassing UART, CPU, and PLIC support. This ensures that U-Boot can
> operate in serial console mode.
> 
> Changes in v5:
> - Formal the name from Bananapif3 -> Banana Pi BPI-F3
> - Trailing whitespace
> - New blank line at EOF in spacemit/index.rst
> - Link to v4: https://lore.kernel.org/r/20241129-pickup-bpif3-v4-0-e99fabf66e33@gmail.com
> 
> Changes in v4:
> - Change uart compatible in k1.dtsi in v3, cause related driver in not implemented in u-boot.
> - Update doc, show how to validate the patch.
> - Update maintainer, remove kongyang cause he lefted.
> - Link to v3: https://lore.kernel.org/r/20241114-pickup-bpif3-v3-0-98a45802ab79@gmail.com
> 
> Changes in v3:
> - Add base commit
> - Clear redifinition warning while building in UART_IIR_ID
> - Change underscore to dash in bananapi*f3
> - Update maintainer
> - link to v2 https://lore.kernel.org/u-boot/20240718043329.1500-1-seashell11234455@gmail.com/
> 
> Changes in v2:
> - Change license to GPL-2.0-or-later
> - Add memory node for dts
> - Add ft_board_setup function for kernel memory init
> - Use default prompt
> - links to v1 https://lore.kernel.org/u-boot/20240714150828.736-1-seashell11234455@gmail.com/
> 
> Signed-off-by: Huan Zhou <pericycle.cc@gmail.com>
> Signed-off-by: Kongyang Liu <seashell11234455@gmail.com>
> ---
> Kongyang Liu (2):
>       riscv: spacemit: bananapi_f3: initial support added
>       doc: spacemit: bananapi_f3: document Banana Pi F3 board
> 
>  arch/riscv/Kconfig                     |   5 +
>  arch/riscv/cpu/k1/Kconfig              |  18 ++
>  arch/riscv/cpu/k1/Makefile             |   6 +
>  arch/riscv/cpu/k1/cpu.c                |   9 +
>  arch/riscv/cpu/k1/dram.c               |  54 ++++
>  arch/riscv/dts/Makefile                |   1 +
>  arch/riscv/dts/k1-bananapi-f3.dts      |  25 ++
>  arch/riscv/dts/k1.dtsi                 | 459 +++++++++++++++++++++++++++++++++
>  board/spacemit/bananapi-f3/Kconfig     |  25 ++
>  board/spacemit/bananapi-f3/MAINTAINERS |   6 +
>  board/spacemit/bananapi-f3/Makefile    |   5 +
>  board/spacemit/bananapi-f3/board.c     |   9 +
>  configs/bananapi-f3_defconfig          |  20 ++
>  doc/board/index.rst                    |   1 +
>  doc/board/spacemit/bananapi-f3.rst     |  86 ++++++
>  doc/board/spacemit/index.rst           |   9 +
>  include/configs/bananapi-f3.h          |  13 +
>  17 files changed, 751 insertions(+)
> ---
> base-commit: 40c45a57974bdb09fffa31dde65ddf69e5de53eb
> change-id: 20241112-pickup-bpif3-245ab208b9a4
> 
> Best regards,
> -- 
> Huan Zhou <pericycle.cc@gmail.com>
> 

-- 
Yixun Lan (dlan)
Gentoo Linux Developer
GPG Key ID AABEFD55

  parent reply	other threads:[~2024-12-10  2:05 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-12-09  2:00 [PATCH v5 0/2] riscv: spacemit: add support for bananapi-f3 Huan Zhou
2024-12-09  2:00 ` [PATCH v5 1/2] riscv: spacemit: bananapi_f3: initial support added Huan Zhou
2024-12-10  2:15   ` Yixun Lan
2024-12-10  5:38     ` Huan Zhou
2024-12-09  2:00 ` [PATCH v5 2/2] doc: spacemit: bananapi_f3: document Banana Pi F3 board Huan Zhou
2024-12-10  2:30   ` Yixun Lan
2024-12-10  5:45     ` Huan Zhou
2024-12-10  2:04 ` Yixun Lan [this message]
2024-12-10  5:46   ` [PATCH v5 0/2] riscv: spacemit: add support for bananapi-f3 Huan Zhou

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=20241210020441-GYA1904091@gentoo \
    --to=dlan@gentoo.org \
    --cc=ben.dooks@codethink.co.uk \
    --cc=bmeng@tinylab.org \
    --cc=clamor95@gmail.com \
    --cc=dan.carpenter@linaro.org \
    --cc=frieder.schrempf@kontron.de \
    --cc=jonasschwoebel@yahoo.de \
    --cc=kever.yang@rock-chips.com \
    --cc=marcel@ziswiler.com \
    --cc=michal.simek@amd.com \
    --cc=nm@ti.com \
    --cc=padmarao.begari@microchip.com \
    --cc=pericycle.cc@gmail.com \
    --cc=peterlin@andestech.com \
    --cc=quentin.schulz@cherry.de \
    --cc=randolph@andestech.com \
    --cc=rick@andestech.com \
    --cc=samuel@sholland.org \
    --cc=seashell11234455@gmail.com \
    --cc=sumit.garg@linaro.org \
    --cc=trini@konsulko.com \
    --cc=u-boot@lists.denx.de \
    --cc=xypron.glpk@gmx.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