mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Sohaib Mohamed <sohaib.amhmd@gmail.com>
To: Sascha Hauer <s.hauer@pengutronix.de>,
	 BAREBOX <barebox@lists.infradead.org>
Subject: Re: [PATCH v2 00/14] ARM: rockchip: Add initial RK3562 SoC support
Date: Tue, 24 Feb 2026 21:17:52 +0100	[thread overview]
Message-ID: <b3gffgocrcdd7azuk2yddrqgqgbyfdxobhf324jdd5hopsb4rr@ycvlbpccpmxe> (raw)
In-Reply-To: <20260130-barebox-kickpi-v2-0-d27cf94a39b6@gmail.com>

On Fri, Jan 30, 2026 at 06:16:52AM +0100, Sohaib Mohamed wrote:
> All essential changes and additions required to boot the RK3562.
> Includes board support for the RK3562-EVB2 and KickPi K3.
>
> The GMAC driver is still missing from the upstream Linux device tree
> and can be added in a future update. The rest is straightforward port from
> the mainline Linux kernel.
>
> ---
> Changes in v2:
> - Remove unused header includes (globalvar.h and deep-probe.h) from board.c
> - Fix "serial0:1500000n8" (squashed into the original commit)
> - Link to v1: https://lore.barebox.org/r/20260116-barebox-kickpi-v1-0-eb253c439421@gmail.com/
> ---
>
> To: Sascha Hauer <s.hauer@pengutronix.de>
> To: open list:BAREBOX <barebox@lists.infradead.org>
> Signed-off-by: Sohaib Mohamed <sohaib.amhmd@gmail.com>
>
> ---
> Ahmad Fatoum (3):
>       clk: rockchip: add RK3562 clock and reset driver support
>       pinctrl: rockchip: sync driver with Linux
>       ARM: boards: Rockchip: add RK3562-EVB2 support
>
> Sohaib Mohamed (11):
>       ARM: rockchip: Add initial RK3562 SoC support
>       ARM: boards: Rockchip: Add device tree for kickpi k3 board
>       ARM: rockchip: Add RK3562 KickPi K3 board support
>       pmdomain: rockchip: Add RK3562 power domain support
>       aiodev: rockchip_saradc: Add RK3562 support
>       phy: rockchip-inno-usb2: Add support for RK3562 PHY
>       rockchip-rng: Add RK3562 support
>       mci: sdhci: rockchip-dwcmshc: Add RK3562 support
>       nvmem: rockchip-otp: Add RK3562 support
>       phy: rockchip: inno-dsidphy: Add RK3562 support
>       phy: rockchip: naneng-combphy: Add RK3562 support
>
>  arch/arm/boards/Makefile                           |    2 +
>  arch/arm/boards/rockchip-rk3562-evb2/.gitignore    |    1 +
>  arch/arm/boards/rockchip-rk3562-evb2/Makefile      |    4 +
>  arch/arm/boards/rockchip-rk3562-evb2/board.c       |   47 +
>  arch/arm/boards/rockchip-rk3562-evb2/lowlevel.c    |   23 +
>  .../boards/rockchip-rk3562-kickpi-k3/.gitignore    |    1 +
>  arch/arm/boards/rockchip-rk3562-kickpi-k3/Makefile |    4 +
>  arch/arm/boards/rockchip-rk3562-kickpi-k3/board.c  |   44 +
>  .../boards/rockchip-rk3562-kickpi-k3/lowlevel.c    |   23 +
>  arch/arm/configs/multi_v8_defconfig                |    2 +
>  arch/arm/configs/rockchip_v8_defconfig             |    2 +
>  arch/arm/dts/Makefile                              |    2 +
>  arch/arm/dts/rk3562-evb2-v10.dts                   |    9 +
>  arch/arm/dts/rk3562-kickpi-k3.dts                  |   10 +
>  arch/arm/dts/rk3562-kickpi-k3.dtsi                 |  452 ++++++++
>  arch/arm/dts/rk3562.dtsi                           |   40 +
>  arch/arm/mach-rockchip/Kconfig                     |   16 +
>  arch/arm/mach-rockchip/Makefile                    |    1 +
>  arch/arm/mach-rockchip/atf.c                       |   38 +
>  arch/arm/mach-rockchip/dmc.c                       |   33 +
>  arch/arm/mach-rockchip/rk3562.c                    |   20 +
>  arch/arm/mach-rockchip/rockchip.c                  |    4 +
>  common/Kconfig.debug_ll                            |    9 +
>  drivers/aiodev/rockchip_saradc.c                   |    7 +
>  drivers/clk/rockchip/Makefile                      |    1 +
>  drivers/clk/rockchip/clk-rk3562.c                  | 1098 ++++++++++++++++++++
>  drivers/clk/rockchip/clk.c                         |    2 +-
>  drivers/clk/rockchip/clk.h                         |  268 ++++-
>  drivers/clk/rockchip/rst-rk3562.c                  |  430 ++++++++
>  drivers/hw_random/rockchip-rng.c                   |    4 +
>  drivers/mci/rockchip-dwcmshc-sdhci.c               |    3 +
>  drivers/mfd/syscon.c                               |   18 +
>  drivers/nvmem/rockchip-otp.c                       |   89 ++
>  drivers/phy/rockchip/phy-rockchip-inno-dsidphy.c   |    3 +
>  drivers/phy/rockchip/phy-rockchip-inno-usb2.c      |   52 +-
>  drivers/phy/rockchip/phy-rockchip-naneng-combphy.c |  161 +++
>  drivers/pinctrl/pinctrl-rockchip.c                 |  768 +++++++++++++-
>  drivers/pinctrl/pinctrl-rockchip.h                 |   52 +-
>  drivers/pmdomain/rockchip/pm-domains.c             |   47 +
>  firmware/Makefile                                  |    2 +
>  images/Makefile.rockchip                           |    2 +
>  include/mach/rockchip/atf.h                        |    6 +
>  include/mach/rockchip/debug_ll.h                   |    6 +
>  include/mach/rockchip/dmc.h                        |    1 +
>  include/mach/rockchip/rk3562-regs.h                |   21 +
>  include/mach/rockchip/rockchip.h                   |   10 +
>  include/mfd/syscon.h                               |    8 +
>  47 files changed, 3797 insertions(+), 49 deletions(-)
> ---
> base-commit: 15ea9c02849d8e53c69078c88fa6df57dcce864e
> change-id: 20260130-barebox-kickpi-28d6466b6466
>
> Best regards,
> --
> Sohaib Mohamed <sohaib.amhmd@gmail.com>
>

Hi, just a gentle ping — are there any updates or additional changes I
should make at this point? Thanks.



  parent reply	other threads:[~2026-02-24 20:18 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-01-30  5:16 Sohaib Mohamed
2026-01-30  5:16 ` [PATCH v2 01/14] " Sohaib Mohamed
2026-01-30  5:16 ` [PATCH v2 02/14] clk: rockchip: add RK3562 clock and reset driver support Sohaib Mohamed
2026-01-30  5:16 ` [PATCH v2 03/14] pinctrl: rockchip: sync driver with Linux Sohaib Mohamed
2026-01-30  5:16 ` [PATCH v2 04/14] ARM: boards: Rockchip: add RK3562-EVB2 support Sohaib Mohamed
2026-01-30  5:16 ` [PATCH v2 05/14] ARM: boards: Rockchip: Add device tree for kickpi k3 board Sohaib Mohamed
2026-01-30  5:16 ` [PATCH v2 06/14] ARM: rockchip: Add RK3562 KickPi K3 board support Sohaib Mohamed
2026-01-30  5:16 ` [PATCH v2 07/14] pmdomain: rockchip: Add RK3562 power domain support Sohaib Mohamed
2026-01-30  8:00   ` Ahmad Fatoum
2026-01-30  5:17 ` [PATCH v2 08/14] aiodev: rockchip_saradc: Add RK3562 support Sohaib Mohamed
2026-01-30  8:01   ` Ahmad Fatoum
2026-01-30  5:17 ` [PATCH v2 09/14] phy: rockchip-inno-usb2: Add support for RK3562 PHY Sohaib Mohamed
2026-01-30  8:01   ` Ahmad Fatoum
2026-01-30  5:17 ` [PATCH v2 10/14] rockchip-rng: Add RK3562 support Sohaib Mohamed
2026-01-30  8:02   ` Ahmad Fatoum
2026-01-30  5:17 ` [PATCH v2 11/14] mci: sdhci: rockchip-dwcmshc: " Sohaib Mohamed
2026-01-30  8:03   ` Ahmad Fatoum
2026-01-30  5:17 ` [PATCH v2 12/14] nvmem: rockchip-otp: " Sohaib Mohamed
2026-01-30  8:03   ` Ahmad Fatoum
2026-01-30  5:17 ` [PATCH v2 13/14] phy: rockchip: inno-dsidphy: " Sohaib Mohamed
2026-01-30  8:04   ` Ahmad Fatoum
2026-01-30  5:17 ` [PATCH v2 14/14] phy: rockchip: naneng-combphy: " Sohaib Mohamed
2026-01-30  8:05   ` Ahmad Fatoum
2026-02-24 20:17 ` Sohaib Mohamed [this message]
2026-02-25  7:51   ` [PATCH v2 00/14] ARM: rockchip: Add initial RK3562 SoC support Sascha Hauer
2026-02-25  7:49 ` Sascha Hauer

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=b3gffgocrcdd7azuk2yddrqgqgbyfdxobhf324jdd5hopsb4rr@ycvlbpccpmxe \
    --to=sohaib.amhmd@gmail.com \
    --cc=barebox@lists.infradead.org \
    --cc=s.hauer@pengutronix.de \
    /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