All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] Pull request: u-boot-rockchip-20190819
@ 2019-08-19 12:19 Kever Yang
  2019-08-19 19:05 ` Tom Rini
  0 siblings, 1 reply; 2+ messages in thread
From: Kever Yang @ 2019-08-19 12:19 UTC (permalink / raw)
  To: u-boot

Hi Tom,

Please pull the rockchip update:
- Add ROC-RK3399-PC board support
- Move CONFIG_SPI_FLASH_GIGADEVICE and CONFIG_CMD_USB_MASS_STORAGE to Kconfig
- using SYSRESET_POWER_OFF for poweroff
  (Note that patch for rk8xx pmic is droped for it can not pass Travis build)
- fix ofnode_get_name() assert

https://gitlab.denx.de/u-boot/custodians/u-boot-rockchip/pipelines/480

Thanks,
- Kever

The following changes since commit 81fed78c0a59af0d5698b13608eb4d26be84f397:

  Merge tag 'efi-2019-10-rc3' of https://gitlab.denx.de/u-boot/custodians/u-boot-efi (2019-08-17 10:31:25 -0400)

are available in the Git repository at:

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

for you to fetch changes up to b8050511c6ee4ab60ef4248dff42aff187696249:

  sysreset: move stm32mp sysreset poweroff implementation to sysreset uclass (2019-08-19 12:43:26 +0800)

----------------------------------------------------------------
Kever Yang (1):
      core: ofnode: do not assert if node not valid in ofnode_get_name()

Levin Du (1):
      rockchip: rk3399: Add ROC-RK3399-PC support

Urja Rannikko (5):
      configs: Move CONFIG_SPI_FLASH_GIGADEVICE properly into Kconfig
      configs: Move CONFIG_CMD_USB_MASS_STORAGE properly into Kconfig
      configs: update rk3288 veyron defconfigs
      sysreset: switch to using SYSRESET_POWER_OFF for poweroff
      sysreset: move stm32mp sysreset poweroff implementation to sysreset uclass

 arch/Kconfig                           |   1 +
 arch/arm/dts/Makefile                  |   1 +
 arch/arm/dts/rk3399-roc-pc-u-boot.dtsi |  18 +
 arch/arm/dts/rk3399-roc-pc.dts         | 680 +++++++++++++++++++++++++++++++++
 arch/arm/mach-stm32mp/Makefile         |   3 -
 arch/arm/mach-stm32mp/cmd_poweroff.c   |  24 --
 arch/sandbox/cpu/state.c               |   1 -
 board/rockchip/evb_rk3399/MAINTAINERS  |   6 +
 configs/chromebit_mickey_defconfig     |  27 +-
 configs/chromebook_jerry_defconfig     |  27 +-
 configs/chromebook_minnie_defconfig    |  27 +-
 configs/chromebook_speedy_defconfig    |  27 +-
 configs/evb-rk3036_defconfig           |   3 +-
 configs/evb-rk3229_defconfig           |   1 +
 configs/evb-rk3288_defconfig           |   2 +-
 configs/fennec-rk3288_defconfig        |   2 +-
 configs/firefly-rk3288_defconfig       |   2 +-
 configs/kylin-rk3036_defconfig         |   3 +-
 configs/miqi-rk3288_defconfig          |   2 +-
 configs/phycore-rk3288_defconfig       |   2 +-
 configs/popmetal-rk3288_defconfig      |   2 +-
 configs/roc-rk3399-pc_defconfig        |  61 +++
 configs/rock2_defconfig                |   2 +-
 configs/tinker-rk3288_defconfig        |   2 +-
 drivers/core/ofnode.c                  |   6 +-
 drivers/power/pmic/Kconfig             |   1 +
 drivers/sysreset/Kconfig               |  10 +
 drivers/sysreset/sysreset-uclass.c     |  18 +
 drivers/sysreset/sysreset_psci.c       |   2 +-
 drivers/sysreset/sysreset_sandbox.c    |   4 +-
 include/configs/rk3036_common.h        |   7 -
 include/configs/rk322x_common.h        |   5 -
 include/configs/rk3288_common.h        |   5 -
 include/configs/veyron.h               |   2 -
 include/configs/vyasa-rk3288.h         |   1 -
 35 files changed, 883 insertions(+), 104 deletions(-)
 create mode 100644 arch/arm/dts/rk3399-roc-pc-u-boot.dtsi
 create mode 100644 arch/arm/dts/rk3399-roc-pc.dts
 delete mode 100644 arch/arm/mach-stm32mp/cmd_poweroff.c
 create mode 100644 configs/roc-rk3399-pc_defconfig

^ permalink raw reply	[flat|nested] 2+ messages in thread

* [U-Boot] Pull request: u-boot-rockchip-20190819
  2019-08-19 12:19 [U-Boot] Pull request: u-boot-rockchip-20190819 Kever Yang
@ 2019-08-19 19:05 ` Tom Rini
  0 siblings, 0 replies; 2+ messages in thread
From: Tom Rini @ 2019-08-19 19:05 UTC (permalink / raw)
  To: u-boot

On Mon, Aug 19, 2019 at 08:19:22PM +0800, Kever Yang wrote:

> Hi Tom,
> 
> Please pull the rockchip update:
> - Add ROC-RK3399-PC board support
> - Move CONFIG_SPI_FLASH_GIGADEVICE and CONFIG_CMD_USB_MASS_STORAGE to Kconfig
> - using SYSRESET_POWER_OFF for poweroff
>   (Note that patch for rk8xx pmic is droped for it can not pass Travis build)
> - fix ofnode_get_name() assert
> 
> https://gitlab.denx.de/u-boot/custodians/u-boot-rockchip/pipelines/480
> 
> Thanks,
> - Kever
> 
> The following changes since commit 81fed78c0a59af0d5698b13608eb4d26be84f397:
> 
>   Merge tag 'efi-2019-10-rc3' of https://gitlab.denx.de/u-boot/custodians/u-boot-efi (2019-08-17 10:31:25 -0400)
> 
> are available in the Git repository at:
> 
>   https://gitlab.denx.de/u-boot/custodians/u-boot-rockchip.git tags/u-boot-rockchip-20190819
> 
> for you to fetch changes up to b8050511c6ee4ab60ef4248dff42aff187696249:
> 
>   sysreset: move stm32mp sysreset poweroff implementation to sysreset uclass (2019-08-19 12:43:26 +0800)
> 

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: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20190819/ed42e18a/attachment.sig>

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-08-19 19:05 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-08-19 12:19 [U-Boot] Pull request: u-boot-rockchip-20190819 Kever Yang
2019-08-19 19:05 ` Tom Rini

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.