[U-Boot] Please pull u-boot-rockchip

Hi Tom,
A summary of improvements and fixes is below.
Thanks, Philipp.
The following changes since commit 6d4a3ff2649faa2cf2739e332557f256cc34831e:
Merge branch 'master' of git://git.denx.de/u-boot-socfpga (2018-11-29 16:36:53 -0500)
are available in the git repository at:
git://git.denx.de/u-boot-rockchip.git tags/for-master-20181130
for you to fetch changes up to 17e5f3a4265cf372c4e09d7d3fd09fa54ef413cb:
rockchip: rk3188: use board_debug_uart_init() for UART io init (2018-11-30 22:00:11 +0100)
---------------------------------------------------------------- Improvements: - RK3188 USB-UART functionality - errors triggering a hard-stop in SPL on the RK3399 are reported - Rockchip RV1108 (SoC) support - MicroCrystal RV3029 (RTC) DM driver
Fixes: - RK3188 early UART setup - limit SD-card frequency to 40MHz on the RK3399-Q7 - MIPI fixes - RK3399 CPUB clock initialisation
---------------------------------------------------------------- Christoph Muellner (1): rockchip: rk3399: Initialize CPU B clock.
Heiko Stuebner (2): rockchip: rk3188: add support for usb-uart functionality rockchip: rk3188: fix early uart setup
Kever Yang (2): rockchip: rock: remove TPL_TINY_MEMSET rockchip: rk3188: use board_debug_uart_init() for UART io init
Otavio Salvador (6): ARM: rockchip: rv1108: Sync clock with vendor tree ARM: rockchip: rv1108: Enable BOUNCE_BUFFER ARM: dts: rockchip: Add rv1108 eMMC pinctrl ARM: rockchip: rv1108: Add a board_usb_init for USB OTG ARM: dts: rockchip: Add rv1108 USB OTG pinctrl ARM: rockchip: rv1108: Add support for default distro_bootcmd
Philipp Tomsich (4): rockchip: rk3399: spl: always report errors triggering a hard stop rockchip: rk3399-puma: reduce sd card max-frequency to 40MHz rtc: rv3029: add to Kconfig rtc: rv3029: update to support DM and sync with Linux 4.17
Richard Röjfors (2): rockchip: video: mipi: Do not write to the version register rockchip: video: mipi: Fix phy frequency setting
arch/arm/dts/rk3399-puma.dtsi | 2 +- arch/arm/dts/rv1108.dtsi | 74 +++++++++++++- arch/arm/include/asm/arch-rockchip/clock.h | 6 ++ arch/arm/include/asm/arch-rockchip/cru_rk3399.h | 22 +++- arch/arm/include/asm/arch-rockchip/cru_rv1108.h | 144 +++++++++++++++++++++++++- arch/arm/include/asm/arch-rockchip/grf_rk3188.h | 42 ++++++++ arch/arm/mach-rockchip/Kconfig | 9 ++ arch/arm/mach-rockchip/Makefile | 1 + arch/arm/mach-rockchip/rk3188-board-spl.c | 49 +++++++-- arch/arm/mach-rockchip/rk3399-board-spl.c | 4 +- arch/arm/mach-rockchip/rv1108-board.c | 81 +++++++++++++++ configs/rock_defconfig | 1 - drivers/clk/rockchip/clk_rk3399.c | 79 +++++++++++++-- drivers/clk/rockchip/clk_rv1108.c | 475 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-- drivers/rtc/Kconfig | 10 ++ drivers/rtc/rv3029.c | 580 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------- drivers/video/rockchip/rk_mipi.c | 4 +- include/configs/evb_rv1108.h | 3 + include/configs/rv1108_common.h | 18 ++++ include/dt-bindings/clock/rv1108-cru.h | 137 ++++++++++++++++++++----- scripts/config_whitelist.txt | 1 - 21 files changed, 1542 insertions(+), 200 deletions(-) create mode 100644 arch/arm/mach-rockchip/rv1108-board.c

On Sat, Dec 01, 2018 at 01:48:18AM +0100, Philipp Tomsich wrote:
Hi Tom,
A summary of improvements and fixes is below.
Thanks, Philipp.
The following changes since commit 6d4a3ff2649faa2cf2739e332557f256cc34831e:
Merge branch 'master' of git://git.denx.de/u-boot-socfpga (2018-11-29 16:36:53 -0500)
are available in the git repository at:
git://git.denx.de/u-boot-rockchip.git tags/for-master-20181130
for you to fetch changes up to 17e5f3a4265cf372c4e09d7d3fd09fa54ef413cb:
rockchip: rk3188: use board_debug_uart_init() for UART io init (2018-11-30 22:00:11 +0100)
Applied to u-boot/master, thanks!

Hi Philipp,
A summary of improvements and fixes is below.
Thanks, Philipp.
The following changes since commit 6d4a3ff2649faa2cf2739e332557f256cc34831e:
Merge branch 'master' of git://git.denx.de/u-boot-socfpga (2018-11-29 16:36:53 -0500)
are available in the git repository at:
git://git.denx.de/u-boot-rockchip.git tags/for-master-20181130
for you to fetch changes up to 17e5f3a4265cf372c4e09d7d3fd09fa54ef413cb:
rockchip: rk3188: use board_debug_uart_init() for UART io init (2018-11-30 22:00:11 +0100)
Improvements:
- RK3188 USB-UART functionality
- errors triggering a hard-stop in SPL on the RK3399 are reported
- Rockchip RV1108 (SoC) support
- MicroCrystal RV3029 (RTC) DM driver
Is there a reason why the Rock960/Ficus series [1] wasn't pulled in? You had said it was high up on your list [2] for this merge window.
Peter
[1] https://lists.denx.de/pipermail/u-boot/2018-September/342174.html [2] https://lists.denx.de/pipermail/u-boot/2018-October/345806.html
Fixes:
- RK3188 early UART setup
- limit SD-card frequency to 40MHz on the RK3399-Q7
- MIPI fixes
- RK3399 CPUB clock initialisation
Christoph Muellner (1): rockchip: rk3399: Initialize CPU B clock.
Heiko Stuebner (2): rockchip: rk3188: add support for usb-uart functionality rockchip: rk3188: fix early uart setup
Kever Yang (2): rockchip: rock: remove TPL_TINY_MEMSET rockchip: rk3188: use board_debug_uart_init() for UART io init
Otavio Salvador (6): ARM: rockchip: rv1108: Sync clock with vendor tree ARM: rockchip: rv1108: Enable BOUNCE_BUFFER ARM: dts: rockchip: Add rv1108 eMMC pinctrl ARM: rockchip: rv1108: Add a board_usb_init for USB OTG ARM: dts: rockchip: Add rv1108 USB OTG pinctrl ARM: rockchip: rv1108: Add support for default distro_bootcmd
Philipp Tomsich (4): rockchip: rk3399: spl: always report errors triggering a hard stop rockchip: rk3399-puma: reduce sd card max-frequency to 40MHz rtc: rv3029: add to Kconfig rtc: rv3029: update to support DM and sync with Linux 4.17
Richard Röjfors (2): rockchip: video: mipi: Do not write to the version register rockchip: video: mipi: Fix phy frequency setting
arch/arm/dts/rk3399-puma.dtsi | 2 +- arch/arm/dts/rv1108.dtsi | 74 +++++++++++++- arch/arm/include/asm/arch-rockchip/clock.h | 6 ++ arch/arm/include/asm/arch-rockchip/cru_rk3399.h | 22 +++- arch/arm/include/asm/arch-rockchip/cru_rv1108.h | 144 +++++++++++++++++++++++++- arch/arm/include/asm/arch-rockchip/grf_rk3188.h | 42 ++++++++ arch/arm/mach-rockchip/Kconfig | 9 ++ arch/arm/mach-rockchip/Makefile | 1 + arch/arm/mach-rockchip/rk3188-board-spl.c | 49 +++++++-- arch/arm/mach-rockchip/rk3399-board-spl.c | 4 +- arch/arm/mach-rockchip/rv1108-board.c | 81 +++++++++++++++ configs/rock_defconfig | 1 - drivers/clk/rockchip/clk_rk3399.c | 79 +++++++++++++-- drivers/clk/rockchip/clk_rv1108.c | 475 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-- drivers/rtc/Kconfig | 10 ++ drivers/rtc/rv3029.c | 580 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------- drivers/video/rockchip/rk_mipi.c | 4 +- include/configs/evb_rv1108.h | 3 + include/configs/rv1108_common.h | 18 ++++ include/dt-bindings/clock/rv1108-cru.h | 137 ++++++++++++++++++++----- scripts/config_whitelist.txt | 1 - 21 files changed, 1542 insertions(+), 200 deletions(-) create mode 100644 arch/arm/mach-rockchip/rv1108-board.c
U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

Peter,
Thanks for pointing this out. I screwed up in a rebase apparently. Will send an additional PR.
Philipp.
On 04.12.2018, at 16:17, Peter Robinson pbrobinson@gmail.com wrote:
Hi Philipp,
A summary of improvements and fixes is below.
Thanks, Philipp.
The following changes since commit 6d4a3ff2649faa2cf2739e332557f256cc34831e:
Merge branch 'master' of git://git.denx.de/u-boot-socfpga (2018-11-29 16:36:53 -0500)
are available in the git repository at:
git://git.denx.de/u-boot-rockchip.git tags/for-master-20181130
for you to fetch changes up to 17e5f3a4265cf372c4e09d7d3fd09fa54ef413cb:
rockchip: rk3188: use board_debug_uart_init() for UART io init (2018-11-30 22:00:11 +0100)
Improvements:
- RK3188 USB-UART functionality
- errors triggering a hard-stop in SPL on the RK3399 are reported
- Rockchip RV1108 (SoC) support
- MicroCrystal RV3029 (RTC) DM driver
Is there a reason why the Rock960/Ficus series [1] wasn't pulled in? You had said it was high up on your list [2] for this merge window.
Peter
[1] https://lists.denx.de/pipermail/u-boot/2018-September/342174.html https://lists.denx.de/pipermail/u-boot/2018-September/342174.html [2] https://lists.denx.de/pipermail/u-boot/2018-October/345806.html https://lists.denx.de/pipermail/u-boot/2018-October/345806.html
Fixes:
- RK3188 early UART setup
- limit SD-card frequency to 40MHz on the RK3399-Q7
- MIPI fixes
- RK3399 CPUB clock initialisation
Christoph Muellner (1): rockchip: rk3399: Initialize CPU B clock.
Heiko Stuebner (2): rockchip: rk3188: add support for usb-uart functionality rockchip: rk3188: fix early uart setup
Kever Yang (2): rockchip: rock: remove TPL_TINY_MEMSET rockchip: rk3188: use board_debug_uart_init() for UART io init
Otavio Salvador (6): ARM: rockchip: rv1108: Sync clock with vendor tree ARM: rockchip: rv1108: Enable BOUNCE_BUFFER ARM: dts: rockchip: Add rv1108 eMMC pinctrl ARM: rockchip: rv1108: Add a board_usb_init for USB OTG ARM: dts: rockchip: Add rv1108 USB OTG pinctrl ARM: rockchip: rv1108: Add support for default distro_bootcmd
Philipp Tomsich (4): rockchip: rk3399: spl: always report errors triggering a hard stop rockchip: rk3399-puma: reduce sd card max-frequency to 40MHz rtc: rv3029: add to Kconfig rtc: rv3029: update to support DM and sync with Linux 4.17
Richard Röjfors (2): rockchip: video: mipi: Do not write to the version register rockchip: video: mipi: Fix phy frequency setting
arch/arm/dts/rk3399-puma.dtsi | 2 +- arch/arm/dts/rv1108.dtsi | 74 +++++++++++++- arch/arm/include/asm/arch-rockchip/clock.h | 6 ++ arch/arm/include/asm/arch-rockchip/cru_rk3399.h | 22 +++- arch/arm/include/asm/arch-rockchip/cru_rv1108.h | 144 +++++++++++++++++++++++++- arch/arm/include/asm/arch-rockchip/grf_rk3188.h | 42 ++++++++ arch/arm/mach-rockchip/Kconfig | 9 ++ arch/arm/mach-rockchip/Makefile | 1 + arch/arm/mach-rockchip/rk3188-board-spl.c | 49 +++++++-- arch/arm/mach-rockchip/rk3399-board-spl.c | 4 +- arch/arm/mach-rockchip/rv1108-board.c | 81 +++++++++++++++ configs/rock_defconfig | 1 - drivers/clk/rockchip/clk_rk3399.c | 79 +++++++++++++-- drivers/clk/rockchip/clk_rv1108.c | 475 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-- drivers/rtc/Kconfig | 10 ++ drivers/rtc/rv3029.c | 580 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------- drivers/video/rockchip/rk_mipi.c | 4 +- include/configs/evb_rv1108.h | 3 + include/configs/rv1108_common.h | 18 ++++ include/dt-bindings/clock/rv1108-cru.h | 137 ++++++++++++++++++++----- scripts/config_whitelist.txt | 1 - 21 files changed, 1542 insertions(+), 200 deletions(-) create mode 100644 arch/arm/mach-rockchip/rv1108-board.c
U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot
participants (3)
-
Peter Robinson
-
Philipp Tomsich
-
Tom Rini