From: Kever Yang <kever.yang@rock-chips.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] Pull request: u-boot-rockchip-20190809
Date: Fri, 9 Aug 2019 15:10:31 +0800 [thread overview]
Message-ID: <20190809071031.29562-1-kever.yang@rock-chips.com> (raw)
Hi Tom,
Please pull the rockchip update:
- Add rk3399 boards Khadas Edge/-V/-Captain
- Add fully souce code support for rk3328 including TPL/DRAM init
- Enable boot from eMMC for rk3399 rock960/ficus boards
- turn on the IO supply for dw_mmc
Travis:
https://travis-ci.org/keveryang/u-boot/builds/567879982
Thanks,
- Kever
The following changes since commit d0d07ba86afc8074d79e436b1ba4478fa0f0c1b5:
Prepare v2019.10-rc1 (2019-07-29 21:16:16 -0400)
are available in the Git repository at:
https://gitlab.denx.de/u-boot/custodians/u-boot-rockchip.git tags/u-boot-rockchip-20190809
for you to fetch changes up to 6a452e5bd33cf8f4e851445f29ab94b66485700a:
doc: rockchip: Adapt Pine64 Rock64 board instructions (2019-08-05 21:18:35 +0800)
----------------------------------------------------------------
Kever Yang (5):
rockchip: rk3328: set DDR as non-secure in SPL
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
Manivannan Sadhasivam (2):
arm: dts: rock960: Enable booting from eMMC when using SPL
arm: dts: ficus: Enable booting from eMMC when using SPL
Matwey V. Kornilov (4):
rockchip: rk3328: enable DMA for MMCs at Rock64
rockchip: dts: rk3328: Add rk3328-evb-u-boot.dtsi
configs: rk3328: enable TPL for rock64-rk3328_defconfig
doc: rockchip: Adapt Pine64 Rock64 board instructions
Nick Xie (3):
arm64: dts: rockchip: Add support for Khadas Edge
arm64: dts: rockchip: Add support for Khadas Edge-V
arm64: dts: rockchip: Add support for Khadas Edge-Captain
Urja Rannikko (1):
dw_mmc: turn on the IO supply
arch/arm/dts/Makefile | 3 +
arch/arm/dts/rk3328-evb-u-boot.dtsi | 33 +
arch/arm/dts/rk3328-rock64-u-boot.dtsi | 4 +-
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/dts/rk3399-ficus-u-boot.dtsi | 7 +
.../arm/dts/rk3399-khadas-edge-captain-u-boot.dtsi | 6 +
arch/arm/dts/rk3399-khadas-edge-captain.dts | 27 +
arch/arm/dts/rk3399-khadas-edge-u-boot.dtsi | 13 +
arch/arm/dts/rk3399-khadas-edge-v-u-boot.dtsi | 6 +
arch/arm/dts/rk3399-khadas-edge-v.dts | 27 +
arch/arm/dts/rk3399-khadas-edge.dts | 13 +
arch/arm/dts/rk3399-khadas-edge.dtsi | 804 ++++++++++++++++
arch/arm/dts/rk3399-rock960-u-boot.dtsi | 7 +
arch/arm/include/asm/arch-rockchip/sdram_rk3328.h | 441 +++++++++
arch/arm/mach-rockchip/Kconfig | 5 +
arch/arm/mach-rockchip/rk3328/Kconfig | 12 +
arch/arm/mach-rockchip/rk3328/rk3328.c | 5 +
board/rockchip/evb_rk3399/MAINTAINERS | 18 +
configs/evb-rk3328_defconfig | 37 +-
configs/khadas-edge-captain-rk3399_defconfig | 60 ++
configs/khadas-edge-rk3399_defconfig | 59 ++
configs/khadas-edge-v-rk3399_defconfig | 60 ++
configs/rock64-rk3328_defconfig | 14 +
doc/README.rockchip | 10 +-
drivers/mmc/dw_mmc.c | 16 +
drivers/ram/rockchip/sdram_rk3328.c | 1018 +++++++++++++++++++-
29 files changed, 3343 insertions(+), 18 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/dts/rk3399-khadas-edge-captain-u-boot.dtsi
create mode 100644 arch/arm/dts/rk3399-khadas-edge-captain.dts
create mode 100644 arch/arm/dts/rk3399-khadas-edge-u-boot.dtsi
create mode 100644 arch/arm/dts/rk3399-khadas-edge-v-u-boot.dtsi
create mode 100644 arch/arm/dts/rk3399-khadas-edge-v.dts
create mode 100644 arch/arm/dts/rk3399-khadas-edge.dts
create mode 100644 arch/arm/dts/rk3399-khadas-edge.dtsi
create mode 100644 arch/arm/include/asm/arch-rockchip/sdram_rk3328.h
create mode 100644 configs/khadas-edge-captain-rk3399_defconfig
create mode 100644 configs/khadas-edge-rk3399_defconfig
create mode 100644 configs/khadas-edge-v-rk3399_defconfig
next reply other threads:[~2019-08-09 7:10 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-08-09 7:10 Kever Yang [this message]
2019-08-09 16:08 ` [U-Boot] Pull request: u-boot-rockchip-20190809 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=20190809071031.29562-1-kever.yang@rock-chips.com \
--to=kever.yang@rock-chips.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox