* [U-Boot] Please pull u-boot-rockchip (take 2)
@ 2016-09-22 20:08 Simon Glass
2016-09-23 1:58 ` Tom Rini
0 siblings, 1 reply; 4+ messages in thread
From: Simon Glass @ 2016-09-22 20:08 UTC (permalink / raw)
To: u-boot
Hi Tom,
I've moved the offending CONFIG to Kconfig. Sorry I missed this.
The following changes since commit a2ed3f452dd1cf4982fe46d5111d200909786686:
Merge git://git.denx.de/u-boot-dm (2016-09-20 09:34:53 -0400)
are available in the git repository at:
git://git.denx.de/u-boot-rockchip.git
for you to fetch changes up to 4f0b8efa50a543efd407fb8b2e9ad0de49467a15:
clk: rk3288: add PWM clock get rate (2016-09-22 07:57:02 -0600)
----------------------------------------------------------------
Kever Yang (15):
rk3399: syscon: add support for pmugrf
pinctrl: add driver for rk3399
config: evb-rk3399: enable pinctrl driver
rk3399: enable the pwm2/3 pinctrl in board init
dts: rk3399: add pinctrl for sdmmc
rk_pwm: use clock framework API to get module clock
rk_pwm: remove grf setting code from driver
rk3288: add arch_cpu_init for rk3288
usb: host: add Kconfig for USB_XHCI_ROCKCHIP
dts: rk3399-evb: add regulator-fixed for usb host vbus
config: evb-rk3399: enable fixed regulator
board: evb-rk3399: enable usb 2.0 host vbus power on board_init
rk3399: add a empty "sys_proto.h" header file
clk: rk3399: add pmucru controller support
clk: rk3288: add PWM clock get rate
MengDongyang (4):
usb: xhci-rockchip: add rockchip dwc3 controller driver
rockchip: select DM_USB for rockchip SoC
config: rk3399: add usb related configs
dts: rk3399: add dwc3_typec node for rk3399
Xu Ziyuan (2):
rockchip: use dummy byte only enable OF_PLATDATA
rockchip: rk3288: skip lowlevel_init process
arch/arm/Kconfig | 1 +
arch/arm/dts/rk3399-evb.dts | 14 ++
arch/arm/dts/rk3399.dtsi | 82 +++++++++
arch/arm/include/asm/arch-rockchip/clock.h | 1 +
arch/arm/include/asm/arch-rockchip/grf_rk3399.h | 321
+++++++++++++++++++++++++++++++++
arch/arm/include/asm/arch-rockchip/sdram.h | 4 +
arch/arm/include/asm/arch-rockchip/sys_proto.h | 10 ++
arch/arm/mach-rockchip/board.c | 4 -
arch/arm/mach-rockchip/rk3288-board-spl.c | 4 -
arch/arm/mach-rockchip/rk3288/Makefile | 1 +
arch/arm/mach-rockchip/rk3288/rk3288.c | 19 ++
arch/arm/mach-rockchip/rk3399/syscon_rk3399.c | 1 +
board/rockchip/evb_rk3399/evb-rk3399.c | 44 ++++-
configs/evb-rk3399_defconfig | 11 ++
drivers/clk/rockchip/clk_rk3288.c | 2 +
drivers/clk/rockchip/clk_rk3399.c | 177 ++++++++++++++++++-
drivers/pinctrl/Kconfig | 9 +
drivers/pinctrl/rockchip/Makefile | 1 +
drivers/pinctrl/rockchip/pinctrl_rk3399.c | 439
++++++++++++++++++++++++++++++++++++++++++++++
drivers/pwm/rk_pwm.c | 26 +--
drivers/usb/host/Kconfig | 7 +
drivers/usb/host/Makefile | 1 +
drivers/usb/host/xhci-rockchip.c | 211 ++++++++++++++++++++++
include/configs/rk3288_common.h | 1 +
include/configs/rk3399_common.h | 12 ++
include/linux/usb/dwc3.h | 14 ++
26 files changed, 1391 insertions(+), 26 deletions(-)
create mode 100644 arch/arm/include/asm/arch-rockchip/grf_rk3399.h
create mode 100644 arch/arm/include/asm/arch-rockchip/sys_proto.h
create mode 100644 arch/arm/mach-rockchip/rk3288/rk3288.c
create mode 100644 drivers/pinctrl/rockchip/pinctrl_rk3399.c
create mode 100644 drivers/usb/host/xhci-rockchip.c
Regards,
Simon
^ permalink raw reply [flat|nested] 4+ messages in thread
* [U-Boot] Please pull u-boot-rockchip (take 2)
2016-09-22 20:08 [U-Boot] Please pull u-boot-rockchip (take 2) Simon Glass
@ 2016-09-23 1:58 ` Tom Rini
0 siblings, 0 replies; 4+ messages in thread
From: Tom Rini @ 2016-09-23 1:58 UTC (permalink / raw)
To: u-boot
On Thu, Sep 22, 2016 at 02:08:30PM -0600, Simon Glass wrote:
> Hi Tom,
>
> I've moved the offending CONFIG to Kconfig. Sorry I missed this.
>
>
> The following changes since commit a2ed3f452dd1cf4982fe46d5111d200909786686:
>
> Merge git://git.denx.de/u-boot-dm (2016-09-20 09:34:53 -0400)
>
> are available in the git repository at:
>
> git://git.denx.de/u-boot-rockchip.git
>
> for you to fetch changes up to 4f0b8efa50a543efd407fb8b2e9ad0de49467a15:
>
> clk: rk3288: add PWM clock get rate (2016-09-22 07:57:02 -0600)
>
Applied to u-boot/master, thanks!
--
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20160922/5eb6a3e9/attachment.sig>
^ permalink raw reply [flat|nested] 4+ messages in thread
* [U-Boot] Please pull u-boot-rockchip (take 2)
@ 2016-11-26 2:02 Simon Glass
2016-11-26 20:47 ` Tom Rini
0 siblings, 1 reply; 4+ messages in thread
From: Simon Glass @ 2016-11-26 2:02 UTC (permalink / raw)
To: u-boot
Hi Tom,
I fixed up the checking of voltage and current to correct the test
failure. Sorry for not spotting this correctly.
The following changes since commit 543bd27353d2c5679057fe09aa2d02259687ff32:
MAINTAINERS: SUNXI: Update maintainership (2016-11-22 09:07:26 -0500)
are available in the git repository at:
git://git.denx.de/u-boot-rockchip.git
for you to fetch changes up to 6b388f0bed0e3d021128b4fc3c41da4572984e3b:
rockchip: configs: correct partitions 'boot' size (2016-11-25 17:59:32 -0700)
----------------------------------------------------------------
Andreas F?rber (2):
arm: dts: Fix Rockchip sort order
arm: rockchip: Fix typo in ROCKCHIP_RK3288 help
Jacob Chen (1):
rockchip: configs: correct partitions 'boot' size
Keerthy (3):
power: regulator: Introduce regulator_set_value_force function
power: regulator: Add limits checking while setting voltage
power: regulator: Add limits checking while setting current
Kever Yang (5):
evb-rk3399: deduced the dram node size when space reserved
config: evb-rk3399: enable PWM_ROCKCHIP
config: rk3036: enable configs for USB HOST
config: rk3036: enable fix regulator
dts: arm: rk3036: add usb vbus node
Simon Glass (21):
rockchip: video: Correct HDMI data source selection
rockchip: video: Correct VOP clock selection
rockchip: Allow jerry to use of-platdata
stdio: Correct code style nits
stdio: Correct numbering logic in stdio_probe_device()
spi: Add of-platdata support to SPI and SPI flash
rockchip: spi: Add support for of-platdata
rockchip: spi: Honour the deactivation delay
spi: Add a debug() on bind failure
video: Use cache-alignment in video_sync()
video: Track whether a display is in use
rockchip: video: Check for device in use
rockchip: Move jerry to use of-platdata
rockchip: Rename jerry files to veyron
rockchip: veyron: Add a note about the SDRAM voltage
rockchip: Move jerry SDRAM settings into its own .dts file
rockchip: clk: Support setting ACLK
rockchip: veyron: Adjust ARM clock after relocation
rockchip: video: Avoid using u8 in the HDMI driver
rockchip: Add support for veyron-mickey (Chromebit)
rockchip: Add support for veyron-minnie (ASUS Chromebook Flip)
arch/arm/dts/Makefile | 6 +-
arch/arm/dts/rk3036-sdk.dts | 37 +++-
arch/arm/dts/rk3288-veyron-chromebook.dtsi | 2 +
arch/arm/dts/{rk3288-jerry.dts => rk3288-veyron-jerry.dts} | 16 +-
arch/arm/dts/rk3288-veyron-mickey.dts | 277
++++++++++++++++++++++++
arch/arm/dts/rk3288-veyron-minnie.dts | 301
++++++++++++++++++++++++++
arch/arm/dts/rk3288-veyron.dtsi | 8 -
arch/arm/mach-rockchip/Kconfig | 2 +-
arch/arm/mach-rockchip/rk3288-board-spl.c | 4 +
arch/arm/mach-rockchip/rk3288-board.c | 44 ++++
arch/arm/mach-rockchip/rk3288/Kconfig | 21 +-
board/google/chromebook_jerry/Kconfig | 15 --
board/google/chromebook_jerry/MAINTAINERS | 6 -
board/google/chromebook_jerry/jerry.c | 7 -
board/google/veyron/Kconfig | 47 ++++
board/google/veyron/MAINTAINERS | 20 ++
board/google/{chromebook_jerry => veyron}/Makefile | 2 +-
board/google/veyron/veyron.c | 13 ++
board/rockchip/evb_rk3399/evb-rk3399.c | 2 +-
cmd/regulator.c | 5 +-
common/stdio.c | 9 +-
configs/chromebit_mickey_defconfig | 84 +++++++
configs/chromebook_jerry_defconfig | 10 +-
configs/chromebook_minnie_defconfig | 82 +++++++
configs/evb-rk3399_defconfig | 1 +
configs/kylin-rk3036_defconfig | 4 +
drivers/clk/rockchip/clk_rk3288.c | 7 +
drivers/mtd/spi/spi_flash.c | 2 +-
drivers/power/regulator/regulator-uclass.c | 28 +++
drivers/spi/rk_spi.c | 44 +++-
drivers/spi/spi-uclass.c | 18 +-
drivers/video/display-uclass.c | 18 +-
drivers/video/rockchip/rk_hdmi.c | 33 +--
drivers/video/rockchip/rk_vop.c | 16 +-
drivers/video/video-uclass.c | 3 +-
include/configs/rk3036_common.h | 7 +
include/configs/rockchip-common.h | 2 +-
include/configs/{chromebook_jerry.h => veyron.h} | 0
include/display.h | 10 +
include/power/regulator.h | 10 +
40 files changed, 1133 insertions(+), 90 deletions(-)
rename arch/arm/dts/{rk3288-jerry.dts => rk3288-veyron-jerry.dts} (92%)
create mode 100644 arch/arm/dts/rk3288-veyron-mickey.dts
create mode 100644 arch/arm/dts/rk3288-veyron-minnie.dts
delete mode 100644 board/google/chromebook_jerry/Kconfig
delete mode 100644 board/google/chromebook_jerry/MAINTAINERS
delete mode 100644 board/google/chromebook_jerry/jerry.c
create mode 100644 board/google/veyron/Kconfig
create mode 100644 board/google/veyron/MAINTAINERS
rename board/google/{chromebook_jerry => veyron}/Makefile (81%)
create mode 100644 board/google/veyron/veyron.c
create mode 100644 configs/chromebit_mickey_defconfig
create mode 100644 configs/chromebook_minnie_defconfig
rename include/configs/{chromebook_jerry.h => veyron.h} (100%)
Regards,
Simon
^ permalink raw reply [flat|nested] 4+ messages in thread
* [U-Boot] Please pull u-boot-rockchip (take 2)
2016-11-26 2:02 Simon Glass
@ 2016-11-26 20:47 ` Tom Rini
0 siblings, 0 replies; 4+ messages in thread
From: Tom Rini @ 2016-11-26 20:47 UTC (permalink / raw)
To: u-boot
On Fri, Nov 25, 2016 at 07:02:54PM -0700, Simon Glass wrote:
> Hi Tom,
>
> I fixed up the checking of voltage and current to correct the test
> failure. Sorry for not spotting this correctly.
>
>
> The following changes since commit 543bd27353d2c5679057fe09aa2d02259687ff32:
>
> MAINTAINERS: SUNXI: Update maintainership (2016-11-22 09:07:26 -0500)
>
> are available in the git repository at:
>
> git://git.denx.de/u-boot-rockchip.git
>
> for you to fetch changes up to 6b388f0bed0e3d021128b4fc3c41da4572984e3b:
>
> rockchip: configs: correct partitions 'boot' size (2016-11-25 17:59:32 -0700)
>
Applied to u-boot/master, thanks!
--
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20161126/1fe34738/attachment.sig>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2016-11-26 20:47 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-09-22 20:08 [U-Boot] Please pull u-boot-rockchip (take 2) Simon Glass
2016-09-23 1:58 ` Tom Rini
-- strict thread matches above, loose matches on Subject: below --
2016-11-26 2:02 Simon Glass
2016-11-26 20:47 ` Tom Rini
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox