All of lore.kernel.org
 help / color / mirror / Atom feed
From: Joseph Chen <chenjh@rock-chips.com>
To: u-boot@lists.denx.de
Cc: Jason Zhu <jason.zhu@rock-chips.com>,
	Elaine Zhang <zhangqing@rock-chips.com>,
	Yifeng Zhao <zyf@rock-chips.com>,
	Jianqun Xu <jay.xu@rock-chips.com>,
	Joseph Chen <chenjh@rock-chips.com>,
	Andre Przywara <andre.przywara@arm.com>,
	Fabio Estevam <festevam@gmail.com>, Heiko Schocher <hs@denx.de>,
	Heiko Stuebner <heiko.stuebner@theobroma-systems.com>,
	Jagan Teki <jagan@amarulasolutions.com>,
	Kever Yang <kever.yang@rock-chips.com>,
	Kever Yang <kever.yang@rock-cihps.com>,
	Lokesh Vutla <lokeshvutla@ti.com>,
	Patrick Delaunay <patrick.delaunay@foss.st.com>,
	Peter Robinson <pbrobinson@gmail.com>,
	Philipp Tomsich <philipp.tomsich@theobroma-systems.com>,
	Simon Glass <sjg@chromium.org>,
	Tim Harvey <tharvey@gateworks.com>, Tom Rini <trini@konsulko.com>
Subject: [PATCH v1 0/5] Add RK3568 SoC support
Date: Wed,  2 Jun 2021 15:58:21 +0800	[thread overview]
Message-ID: <20210602075826.28502-1-chenjh@rock-chips.com> (raw)

This series adds support for the rk3588 soc and its evaluation board.
SPL will be supported after this series of patches.

Joseph Chen (5):
  arm: dts: Sync rockchip-pinconf.dtsi from kernel
  arm: dts: rockchip: Add dts for rk3568 evb
  rockchip: rk3568: Add sdram driver
  rockchip: Add rk3568 architecture core
  board: rockchip: Add rk3568 evb support

 arch/arm/dts/Makefile                         |    3 +
 arch/arm/dts/rk3568-evb-u-boot.dtsi           |   23 +
 arch/arm/dts/rk3568-evb.dts                   |   79 +
 arch/arm/dts/rk3568-pinctrl.dtsi              | 3111 +++++++++++++++++
 arch/arm/dts/rk3568-u-boot.dtsi               |   37 +
 arch/arm/dts/rk3568.dtsi                      |  779 +++++
 arch/arm/dts/rockchip-pinconf.dtsi            |  344 ++
 arch/arm/include/asm/arch-rk3568/boot0.h      |   11 +
 arch/arm/include/asm/arch-rk3568/gpio.h       |   11 +
 .../include/asm/arch-rockchip/grf_rk3568.h    |  369 ++
 arch/arm/mach-rockchip/Kconfig                |   18 +
 arch/arm/mach-rockchip/Makefile               |    1 +
 arch/arm/mach-rockchip/rk3568/Kconfig         |   20 +
 arch/arm/mach-rockchip/rk3568/Makefile        |    9 +
 arch/arm/mach-rockchip/rk3568/clk_rk3568.c    |   53 +
 arch/arm/mach-rockchip/rk3568/rk3568.c        |   85 +
 arch/arm/mach-rockchip/rk3568/syscon_rk3568.c |   24 +
 board/rockchip/evb_rk3568/Kconfig             |   15 +
 board/rockchip/evb_rk3568/MAINTAINERS         |    6 +
 board/rockchip/evb_rk3568/Makefile            |    7 +
 board/rockchip/evb_rk3568/evb_rk3568.c        |    4 +
 configs/evb-rk3568_defconfig                  |   35 +
 drivers/ram/rockchip/Makefile                 |    1 +
 drivers/ram/rockchip/sdram_rk3568.c           |   56 +
 include/configs/evb_rk3568.h                  |   17 +
 include/configs/rk3568_common.h               |   43 +
 26 files changed, 5161 insertions(+)
 create mode 100644 arch/arm/dts/rk3568-evb-u-boot.dtsi
 create mode 100644 arch/arm/dts/rk3568-evb.dts
 create mode 100644 arch/arm/dts/rk3568-pinctrl.dtsi
 create mode 100644 arch/arm/dts/rk3568-u-boot.dtsi
 create mode 100644 arch/arm/dts/rk3568.dtsi
 create mode 100644 arch/arm/dts/rockchip-pinconf.dtsi
 create mode 100644 arch/arm/include/asm/arch-rk3568/boot0.h
 create mode 100644 arch/arm/include/asm/arch-rk3568/gpio.h
 create mode 100644 arch/arm/include/asm/arch-rockchip/grf_rk3568.h
 create mode 100644 arch/arm/mach-rockchip/rk3568/Kconfig
 create mode 100644 arch/arm/mach-rockchip/rk3568/Makefile
 create mode 100644 arch/arm/mach-rockchip/rk3568/clk_rk3568.c
 create mode 100644 arch/arm/mach-rockchip/rk3568/rk3568.c
 create mode 100644 arch/arm/mach-rockchip/rk3568/syscon_rk3568.c
 create mode 100644 board/rockchip/evb_rk3568/Kconfig
 create mode 100644 board/rockchip/evb_rk3568/MAINTAINERS
 create mode 100644 board/rockchip/evb_rk3568/Makefile
 create mode 100644 board/rockchip/evb_rk3568/evb_rk3568.c
 create mode 100644 configs/evb-rk3568_defconfig
 create mode 100644 drivers/ram/rockchip/sdram_rk3568.c
 create mode 100644 include/configs/evb_rk3568.h
 create mode 100644 include/configs/rk3568_common.h

-- 
2.17.1




             reply	other threads:[~2021-06-02 11:46 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-06-02  7:58 Joseph Chen [this message]
2021-06-02  7:58 ` [PATCH v1 1/5] arm: dts: Sync rockchip-pinconf.dtsi from kernel Joseph Chen
2021-06-18  2:27   ` Kever Yang
2021-06-02  7:58 ` [PATCH v1 2/5] arm: dts: rockchip: Add dts for rk3568 evb Joseph Chen
2021-06-18  2:27   ` Kever Yang
2021-06-02  7:58 ` [PATCH v1 3/5] rockchip: rk3568: Add sdram driver Joseph Chen
2021-06-18  2:27   ` Kever Yang
2021-06-02  7:58 ` [PATCH v1 4/5] rockchip: Add rk3568 architecture core Joseph Chen
2021-06-02 11:51   ` Peter Robinson
2021-06-03  1:43     ` 陈健洪
2021-06-03  8:05       ` Peter Robinson
2021-06-03 10:15     ` Kever Yang
2021-06-18  2:28   ` Kever Yang
2021-06-02  8:13 ` [PATCH v1 5/5] board: rockchip: Add rk3568 evb support Joseph Chen
2021-06-18  2:28   ` Kever Yang

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=20210602075826.28502-1-chenjh@rock-chips.com \
    --to=chenjh@rock-chips.com \
    --cc=andre.przywara@arm.com \
    --cc=festevam@gmail.com \
    --cc=heiko.stuebner@theobroma-systems.com \
    --cc=hs@denx.de \
    --cc=jagan@amarulasolutions.com \
    --cc=jason.zhu@rock-chips.com \
    --cc=jay.xu@rock-chips.com \
    --cc=kever.yang@rock-chips.com \
    --cc=kever.yang@rock-cihps.com \
    --cc=lokeshvutla@ti.com \
    --cc=patrick.delaunay@foss.st.com \
    --cc=pbrobinson@gmail.com \
    --cc=philipp.tomsich@theobroma-systems.com \
    --cc=sjg@chromium.org \
    --cc=tharvey@gateworks.com \
    --cc=trini@konsulko.com \
    --cc=u-boot@lists.denx.de \
    --cc=zhangqing@rock-chips.com \
    --cc=zyf@rock-chips.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.