mbox series

[U-Boot,PULL] u-boot-stm32/master for v2019.10-rc1: u-boot-stm32-20190723

Message ID 9e663e333ec0431793ca5d2a5d20c659@SFHDAG6NODE3.st.com
State Accepted
Delegated to: Tom Rini
Headers show
Series [U-Boot,PULL] u-boot-stm32/master for v2019.10-rc1: u-boot-stm32-20190723 | expand

Pull-request

https://gitlab.denx.de/u-boot/custodians/u-boot-stm.git tags/u-boot-stm32-20190723

Message

Patrick DELAUNAY July 23, 2019, 7:20 a.m. UTC
Hi Tom

please pull the STM32 related patches for v2019.10-rc1 = u-boot-stm32-20190723

Travis CI status:
	https://travis-ci.org/patrickdelaunay/u-boot/builds/562084625
	the warnings are not related to the patchsets.

Thanks,
Patrick

The following changes since commit 0de815356474912ef5bef9a69f0327a5a93bb2c2:

  Merge branch '2019-07-17-master-imports' (2019-07-18 11:31:37 -0400)

are available in the git repository at:

  https://gitlab.denx.de/u-boot/custodians/u-boot-stm.git tags/u-boot-stm32-20190723

for you to fetch changes up to 1f99eaff08f699472860c82480344e824a737d57:

  rtc: Add rtc driver for stm32mp1 (2019-07-22 11:04:52 +0200)

----------------------------------------------------------------
- add rtc driver for stm32mp1
- add remoteproc driver for stm32mp1
- use kernel qspi compatible string for stm32

----------------------------------------------------------------
Fabien Dessenne (6):
      dm: core: Introduce xxx_translate_dma_address()
      remoteproc: fix function headers
      remoteproc: add device_to_virt ops
      remoteproc: add elf file load support
      remoteproc: Introduce STM32 Cortex-M4 remoteproc driver
      MAINTAINERS: Add stm32 remoteproc driver

Patrice Chotard (4):
      ARM: dts: stm32: Use kernel qspi compatible string for stm32f7-uboot.dtsi
      ARM: dts: stm32: Use kernel qspi compatible string for stm32f469-disco-uboot.dtsi
      spi: stm32_qspi: Remove "st, stm32-qspi" compatible string
      doc: device-tree-bindings: alignment with v5.2-rc6 for spi-stm32-qspi.txt

Patrick Delaunay (3):
      configs: stm32mp15: enable stm32 remoteproc
      clk: stm32mp1: Add RTC clock entry
      rtc: Add rtc driver for stm32mp1

 MAINTAINERS                                     |   1 +
 arch/arm/dts/stm32f469-disco-u-boot.dtsi        |   2 +-
 arch/arm/dts/stm32f7-u-boot.dtsi                |   2 +-
 arch/sandbox/dts/test.dts                       |   4 +
 common/fdt_support.c                            |   6 ++
 configs/stm32mp15_basic_defconfig               |   3 +
 configs/stm32mp15_optee_defconfig               |   3 +
 configs/stm32mp15_trusted_defconfig             |   3 +
 doc/device-tree-bindings/spi/spi-stm32-qspi.txt |  71 +++++++++---------
 drivers/clk/clk_stm32mp1.c                      |   9 +++
 drivers/core/of_addr.c                          |   4 +
 drivers/core/ofnode.c                           |   8 ++
 drivers/core/read.c                             |   5 ++
 drivers/remoteproc/Kconfig                      |  10 +++
 drivers/remoteproc/Makefile                     |   3 +-
 drivers/remoteproc/rproc-elf-loader.c           | 106 ++++++++++++++++++++++++++
 drivers/remoteproc/sandbox_testproc.c           |  19 +++++
 drivers/remoteproc/stm32_copro.c                | 257 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 drivers/rtc/Kconfig                             |   6 ++
 drivers/rtc/Makefile                            |   1 +
 drivers/rtc/stm32_rtc.c                         | 323 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 drivers/spi/stm32_qspi.c                        |   1 -
 include/dm/of_addr.h                            |  18 +++++
 include/dm/ofnode.h                             |  16 +++-
 include/dm/read.h                               |  20 ++++-
 include/fdt_support.h                           |  24 ++++++
 include/remoteproc.h                            | 146 ++++++++++++++++++++++++++----------
 test/dm/remoteproc.c                            | 122 ++++++++++++++++++++++++++++++
 test/dm/test-fdt.c                              |  12 +++
 29 files changed, 1127 insertions(+), 78 deletions(-)
 create mode 100644 drivers/remoteproc/rproc-elf-loader.c
 create mode 100644 drivers/remoteproc/stm32_copro.c
 create mode 100644 drivers/rtc/stm32_rtc.c

Comments

Tom Rini July 24, 2019, 2:29 a.m. UTC | #1
On Tue, Jul 23, 2019 at 07:20:49AM +0000, Patrick DELAUNAY wrote:

> 
> Hi Tom
> 
> please pull the STM32 related patches for v2019.10-rc1 = u-boot-stm32-20190723
> 
> Travis CI status:
> 	https://travis-ci.org/patrickdelaunay/u-boot/builds/562084625
> 	the warnings are not related to the patchsets.
> 
> Thanks,
> Patrick
> 
> The following changes since commit 0de815356474912ef5bef9a69f0327a5a93bb2c2:
> 
>   Merge branch '2019-07-17-master-imports' (2019-07-18 11:31:37 -0400)
> 
> are available in the git repository at:
> 
>   https://gitlab.denx.de/u-boot/custodians/u-boot-stm.git tags/u-boot-stm32-20190723
> 
> for you to fetch changes up to 1f99eaff08f699472860c82480344e824a737d57:
> 
>   rtc: Add rtc driver for stm32mp1 (2019-07-22 11:04:52 +0200)
> 

Applied to u-boot/master, thanks!