All of lore.kernel.org
 help / color / mirror / Atom feed
From: Matwey V. Kornilov <matwey.kornilov@gmail.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v2 0/7] Add TPL support for Pine64 Rock64 board.
Date: Fri,  2 Aug 2019 10:39:57 +0300	[thread overview]
Message-ID: <20190802074004.4301-1-matwey.kornilov@gmail.com> (raw)
In-Reply-To: <b8101f88-b197-29f1-86e0-ed9bbd739842@rock-chips.com>

This series adds initial TPL support for Pine64 Rock64 board.

The ROCK64 is a credit card size SBC based on Rockchip RK3328 Quad-Core ARM Cortex A53.

The series has been tested with ATF v2.1.

Some patches in the series are taken from https://github.com/rockchip-linux/u-boot
Credits are given in each patch separately. 

Changes since v1:
 - Added commit message in patch 6
 - Split config to rk3328/Kconfig in patch 4
 - Introduced rk3328-evb-u-boot.dtsi to collect u-boot specific dts configs

Kever Yang (4):
  rockchip: ram: add full feature rk3328 DRAM driver
  rockchip: dts: rk3328: update dmc node for driver
  rockchip: Kconfig: enable TPL support for rk3328
  rockchip: evb-rk3328: enable defconfig options for TPL/SPL

Matwey V. Kornilov (3):
  rockchip: dts: rk3328: Add rk3328-evb-u-boot.dtsi
  configs: rk3328: enable TPL for rock64-rk3328_defconfig
  doc: rockchip: Adapt Pine64 Rock64 board instructions

 arch/arm/dts/rk3328-evb-u-boot.dtsi               |   33 +
 arch/arm/dts/rk3328-rock64-u-boot.dtsi            |    2 +
 arch/arm/dts/rk3328-sdram-ddr3-666.dtsi           |  215 +++++
 arch/arm/dts/rk3328-sdram-lpddr3-1600.dtsi        |  215 +++++
 arch/arm/dts/rk3328-sdram-lpddr3-666.dtsi         |  215 +++++
 arch/arm/dts/rk3328.dtsi                          |   11 +-
 arch/arm/include/asm/arch-rockchip/sdram_rk3328.h |  441 +++++++++
 arch/arm/mach-rockchip/Kconfig                    |    5 +
 arch/arm/mach-rockchip/rk3328/Kconfig             |   12 +
 configs/evb-rk3328_defconfig                      |   37 +-
 configs/rock64-rk3328_defconfig                   |   14 +
 doc/README.rockchip                               |   10 +-
 drivers/ram/rockchip/sdram_rk3328.c               | 1018 ++++++++++++++++++++-
 13 files changed, 2212 insertions(+), 16 deletions(-)
 create mode 100644 arch/arm/dts/rk3328-evb-u-boot.dtsi
 create mode 100644 arch/arm/dts/rk3328-sdram-ddr3-666.dtsi
 create mode 100644 arch/arm/dts/rk3328-sdram-lpddr3-1600.dtsi
 create mode 100644 arch/arm/dts/rk3328-sdram-lpddr3-666.dtsi
 create mode 100644 arch/arm/include/asm/arch-rockchip/sdram_rk3328.h

-- 
2.16.4

  parent reply	other threads:[~2019-08-02  7:39 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-07-31 16:01 [U-Boot] [PATCH 0/7] Add TPL support for Pine64 Rock64 board Matwey V. Kornilov
2019-07-31 16:01 ` [U-Boot] [PATCH 1/7] rockchip: ram: add full feature rk3328 DRAM driver Matwey V. Kornilov
2019-07-31 16:01 ` [U-Boot] [PATCH 2/7] rockchip: dts: rk3328: update dmc node for driver Matwey V. Kornilov
2019-08-01  2:38   ` Kever Yang
2019-07-31 16:01 ` [U-Boot] [PATCH 3/7] rockchip: dts: rk3328: enable the drivers need by TPL/SPL Matwey V. Kornilov
2019-08-01  2:39   ` Kever Yang
2019-07-31 16:01 ` [U-Boot] [PATCH 4/7] rockchip: Kconfig: enable TPL support for rk3328 Matwey V. Kornilov
2019-08-01  2:40   ` Kever Yang
2019-07-31 16:01 ` [U-Boot] [PATCH 5/7] rockchip: evb-rk3328: enable defconfig options for TPL/SPL Matwey V. Kornilov
2019-07-31 16:01 ` [U-Boot] [PATCH 6/7] configs: rk3328: enable TPL for rock64-rk3328_defconfig Matwey V. Kornilov
2019-08-01  2:42   ` Kever Yang
2019-07-31 16:01 ` [U-Boot] [PATCH 7/7] doc: rockchip: Adapt Pine64 Rock64 board instructions Matwey V. Kornilov
2019-08-01  2:42   ` Kever Yang
2019-08-01  2:36 ` [U-Boot] [PATCH 0/7] Add TPL support for Pine64 Rock64 board Kever Yang
2019-08-02  7:09   ` Matwey V. Kornilov
2019-08-02  7:39   ` Matwey V. Kornilov [this message]
2019-08-02  7:39     ` [U-Boot] [PATCH v2 1/7] rockchip: dts: rk3328: Add rk3328-evb-u-boot.dtsi Matwey V. Kornilov
2019-08-05 13:01       ` Kever Yang
2019-08-02  7:39     ` [U-Boot] [PATCH v2 2/7] rockchip: ram: add full feature rk3328 DRAM driver Matwey V. Kornilov
2019-08-05 13:02       ` Kever Yang
2019-08-05 13:04       ` Philipp Tomsich
2019-08-06  1:46         ` Kever Yang
2019-08-02  7:40     ` [U-Boot] [PATCH v2 3/7] rockchip: dts: rk3328: update dmc node for driver Matwey V. Kornilov
2019-08-05 13:02       ` Kever Yang
2019-08-02  7:40     ` [U-Boot] [PATCH v2 4/7] rockchip: Kconfig: enable TPL support for rk3328 Matwey V. Kornilov
2019-08-05 13:03       ` Kever Yang
2019-08-02  7:40     ` [U-Boot] [PATCH v2 5/7] rockchip: evb-rk3328: enable defconfig options for TPL/SPL Matwey V. Kornilov
2019-08-05 13:03       ` Kever Yang
2019-08-02  7:40     ` [U-Boot] [PATCH v2 6/7] configs: rk3328: enable TPL for rock64-rk3328_defconfig Matwey V. Kornilov
2019-08-05 13:03       ` Kever Yang
2019-08-02  7:40     ` [U-Boot] [PATCH v2 7/7] doc: rockchip: Adapt Pine64 Rock64 board instructions Matwey V. Kornilov
2019-08-02 10:41     ` [U-Boot] [PATCH v2 0/7] Add TPL support for Pine64 Rock64 board Chen-Yu Tsai
2019-08-02 10:55       ` Matwey V. Kornilov
2019-08-02 11:21         ` Chen-Yu Tsai

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=20190802074004.4301-1-matwey.kornilov@gmail.com \
    --to=matwey.kornilov@gmail.com \
    --cc=u-boot@lists.denx.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 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.