mbox series

Pull request: u-boot-rockchip-20201031

Message ID 20201031020815.3324-1-kever.yang@rock-chips.com
State Accepted
Delegated to: Tom Rini
Headers show
Series Pull request: u-boot-rockchip-20201031 | expand

Pull-request

https://gitlab.denx.de/u-boot/custodians/u-boot-rockchip.git tags/u-boot-rockchip-20201031

Message

Kever Yang Oct. 31, 2020, 2:08 a.m. UTC
Hi Tom,

Please pull the rockchip updates/fixes:
- New PX30 board: Engicam PX30.Core;
- Fix USB HID support for rock960;
- Remove host endianness dependency for rockchip mkimage;
- dts update for rk3288-tinker;
- Enable console MUX for some ROCKPi boards;
- Add config-based ddr selection for px30;

Gitlab ci:
https://gitlab.denx.de/u-boot/custodians/u-boot-rockchip/pipelines/5202

Thanks,
- Kever

The following changes since commit a58d86db46456c4e14d4d140e419c4c5999fb2f8:

  Merge https://gitlab.denx.de/u-boot/custodians/u-boot-cfi-flash (2020-10-08 10:20:53 -0400)

are available in the Git repository at:

  https://gitlab.denx.de/u-boot/custodians/u-boot-rockchip.git tags/u-boot-rockchip-20201031

for you to fetch changes up to 43ed7a098d62e700ac024ab913f3be17a6974bb2:

  doc: rockchip: Document Rockchip miniloader flashing (2020-10-30 23:31:26 +0800)

----------------------------------------------------------------
Alper Nebi Yasak (1):
      video: rockchip: Add missing dpcd_write() call to link_train_ce()

Heiko Stuebner (1):
      ram: rockchip: px30: add a config-based ddr selection

Jack Mitchell (1):
      clk: rockchip: rk3399: implement getting wdt/alive clocks

Jagan Teki (11):
      rockchip: Enable Console MUX in ROCKPi N10
      arm64: dts: rockchip: Add chosen node for ROCK-Pi N8
      video: rockchip: Support 4K resolution for rk3288, HDMI
      rockchip: Enable Console MUX in ROCKPi N8
      arm64: dts: rockchip: px30: Add Engicam EDIMM2.2 Starter Kit
      rockchip: px30: Add EVB_PX30 Kconfig help
      board: engicam: Attach i.MX6 common code
      rockchip: Add Engicam PX30.Core EDIMM2.2 Starter Kit
      arm64: dts: rockchip: px30: Add Engicam C.TOUCH 2.0
      rockchip: Add Engicam PX30.Core C.TOUCH 2.0
      doc: rockchip: Document Rockchip miniloader flashing

Michael Trimarchi (1):
      arm64: dts: rockchip: Add Engicam PX30.Core SOM

Peter Robinson (1):
      rockchip: Rock960: fix up USB support

Samuel Holland (1):
      rockchip: mkimage: Remove host endianness dependency

Stefan Agner (2):
      rockchip: dts: tinker: move i2c node to shared device tree
      rockchip: dts: tinker: remove unnecessary node

 arch/arm/dts/Makefile                      |   2 +
 arch/arm/dts/px30-engicam-common.dtsi      |  39 +++++
 arch/arm/dts/px30-engicam-ctouch2.dtsi     |   8 +
 arch/arm/dts/px30-engicam-edimm2.2.dtsi    |   7 +
 arch/arm/dts/px30-px30-core-ctouch2.dts    |  22 +++
 arch/arm/dts/px30-px30-core-edimm2.2.dts   |  21 +++
 arch/arm/dts/px30-px30-core.dtsi           | 232 +++++++++++++++++++++++++++++
 arch/arm/dts/rk3288-rock-pi-n8-u-boot.dtsi |   6 +
 arch/arm/dts/rk3288-tinker-u-boot.dtsi     |   7 +
 arch/arm/dts/rk3288-tinker.dts             |  11 --
 arch/arm/mach-rockchip/px30/Kconfig        |  22 +++
 board/engicam/common/Kconfig               |   8 +
 board/engicam/common/Makefile              |   7 +-
 board/engicam/imx6q/Kconfig                |   2 +
 board/engicam/imx6ul/Kconfig               |   2 +
 board/engicam/px30_core/Kconfig            |  16 ++
 board/engicam/px30_core/MAINTAINERS        |  13 ++
 board/engicam/px30_core/Makefile           |   7 +
 board/engicam/px30_core/px30_core.c        |   4 +
 configs/px30-core-ctouch2-px30_defconfig   | 108 ++++++++++++++
 configs/px30-core-edimm2.2-px30_defconfig  | 108 ++++++++++++++
 configs/rock-pi-n10-rk3399pro_defconfig    |   1 -
 configs/rock-pi-n8-rk3288_defconfig        |   1 -
 configs/rock960-rk3399_defconfig           |   9 +-
 doc/board/rockchip/rockchip.rst            |  40 ++++-
 drivers/clk/rockchip/clk_rk3399.c          |  20 +++
 drivers/ram/rockchip/Kconfig               |  21 +++
 drivers/ram/rockchip/sdram_px30.c          |   8 +
 drivers/video/rockchip/Kconfig             |   4 +-
 drivers/video/rockchip/rk_edp.c            |   6 +
 include/configs/px30_core.h                |  15 ++
 include/configs/rock960_rk3399.h           |   2 +
 tools/rkcommon.c                           |  29 ++--
 33 files changed, 773 insertions(+), 35 deletions(-)
 create mode 100644 arch/arm/dts/px30-engicam-common.dtsi
 create mode 100644 arch/arm/dts/px30-engicam-ctouch2.dtsi
 create mode 100644 arch/arm/dts/px30-engicam-edimm2.2.dtsi
 create mode 100644 arch/arm/dts/px30-px30-core-ctouch2.dts
 create mode 100644 arch/arm/dts/px30-px30-core-edimm2.2.dts
 create mode 100644 arch/arm/dts/px30-px30-core.dtsi
 create mode 100644 board/engicam/common/Kconfig
 create mode 100644 board/engicam/px30_core/Kconfig
 create mode 100644 board/engicam/px30_core/MAINTAINERS
 create mode 100644 board/engicam/px30_core/Makefile
 create mode 100644 board/engicam/px30_core/px30_core.c
 create mode 100644 configs/px30-core-ctouch2-px30_defconfig
 create mode 100644 configs/px30-core-edimm2.2-px30_defconfig
 create mode 100644 include/configs/px30_core.h

Comments

Tom Rini Oct. 31, 2020, 1:33 p.m. UTC | #1
On Sat, Oct 31, 2020 at 10:08:15AM +0800, Kever Yang wrote:

> Hi Tom,
> 
> Please pull the rockchip updates/fixes:
> - New PX30 board: Engicam PX30.Core;
> - Fix USB HID support for rock960;
> - Remove host endianness dependency for rockchip mkimage;
> - dts update for rk3288-tinker;
> - Enable console MUX for some ROCKPi boards;
> - Add config-based ddr selection for px30;
> 
> Gitlab ci:
> https://gitlab.denx.de/u-boot/custodians/u-boot-rockchip/pipelines/5202
> 
> Thanks,
> - Kever
> 
> The following changes since commit a58d86db46456c4e14d4d140e419c4c5999fb2f8:
> 
>   Merge https://gitlab.denx.de/u-boot/custodians/u-boot-cfi-flash (2020-10-08 10:20:53 -0400)
> 
> are available in the Git repository at:
> 
>   https://gitlab.denx.de/u-boot/custodians/u-boot-rockchip.git tags/u-boot-rockchip-20201031
> 
> for you to fetch changes up to 43ed7a098d62e700ac024ab913f3be17a6974bb2:
> 
>   doc: rockchip: Document Rockchip miniloader flashing (2020-10-30 23:31:26 +0800)
> 

Applied to u-boot/master, thanks!