public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PULL] u-boot-atmel-2019.07-a
@ 2019-04-09 12:14 Eugen.Hristev at microchip.com
  2019-04-10 12:19 ` Tom Rini
  0 siblings, 1 reply; 2+ messages in thread
From: Eugen.Hristev at microchip.com @ 2019-04-09 12:14 UTC (permalink / raw)
  To: u-boot

Hello Tom,

Please pull tag u-boot-atmel-2019.07-a , the first set of new features 
and fixes for u-boot-atmel for 2019.07 release.

The features include the pincontrol drive strength/slew rate for 
Microchip at91 9x60 SoC, new Gardena board, pm9g45 migration to DM, SPL 
and watchdog fixes for at91 9x5 boards.

Travis CI: https://travis-ci.org/ehristev/u-boot/builds/517655546

Thanks,
Eugen

The following changes since commit 3c99166441bf3ea325af2da83cfe65430b49c066:

   Prepare v2019.04 (2019-04-08 21:40:40 -0400)

are available in the git repository at:

   git://git.denx.de/u-boot-atmel.git tags/u-boot-atmel-2019.07-a

for you to fetch changes up to 7bf9bca7c0a9fe5c63e8fd5c2aa63884d76dace0:

   net: macb: Add small delay after link establishment (2019-04-09 
09:28:50 +0300)

----------------------------------------------------------------
First set of u-boot-atmel features and fixes for 2019.07 cycle

----------------------------------------------------------------
Alexander Dahl (1):
       ARM: at91: sama5d2: Wrap cpu detection to fix macb driver

Claudiu Beznea (4):
       pinctrl: at91: add option to use drive strength bits
       pinctrl: at91: add drive strength support for SAM9X60
       pinctrl: at91: add compatibles for SAM9X60 pin controller
       pinctrl: at91: add slewrate support for SAM9X60

Ilko Iliev (1):
       board: pm9g45: Migrate to CONFIG_DM

Stefan Roese (14):
       arm: at91: Makefile: Compile lowlevel_init only when really necessary
       arm: at91: spl_at91.c: Call spl_early_init() if OF_CONTROL is enabled
       serial: atmel_usart: Use fixed clock value in SPL version with 
DM_SERIAL
       watchdog: Handle SPL build with watchdog disabled
       watchdog: at91sam9_wdt: Fix WDT setup in at91_wdt_start()
       arm: at91: Remove CONFIG_AT91_HW_WDT_TIMEOUT
       arm: at91: Enable watchdog support
       arm: at91: arm926ejs/u-boot-spl.lds: Add _image_binary_end to SPL lds
       Makefile.spl: Move generated AT91SAM NAND image boot.bin to spl 
directory
       Makefile: Add Kconfig option CONFIG_SPL_IMAGE to select the SPL 
binary
       arm: at91: siemens: Add support to generate combined SPL+U-Boot image
       arm: at91: at91sam9x5.dtsi: Add watchdog handle
       arm: at91: Add gardena-gateway-at91sam support
       net: macb: Add small delay after link establishment

  Kconfig                                            |  11 ++
  Makefile                                           |   4 +-
  README                                             |   3 -
  arch/arm/dts/Makefile                              |   5 +
  .../at91sam9g25-gardena-smart-gateway-u-boot.dtsi  |   5 +
  arch/arm/dts/at91sam9g25-gardena-smart-gateway.dts | 120 ++++++++++++++
  arch/arm/dts/at91sam9x5.dtsi                       |   2 +-
  arch/arm/mach-at91/Kconfig                         |   8 +
  arch/arm/mach-at91/arm926ejs/Makefile              |   2 +
  arch/arm/mach-at91/arm926ejs/u-boot-spl.lds        |   2 +
  arch/arm/mach-at91/armv7/sama5d2_devices.c         |   2 +-
  arch/arm/mach-at91/clock.c                         |  48 ++++++
  arch/arm/mach-at91/include/mach/at91_wdt.h         |  10 ++
  arch/arm/mach-at91/include/mach/sama5d2.h          |   5 +-
  arch/arm/mach-at91/spl_at91.c                      |  10 ++
  board/gardena/smart-gateway-at91sam/Kconfig        |  12 ++
  board/gardena/smart-gateway-at91sam/MAINTAINERS    |   7 +
  board/gardena/smart-gateway-at91sam/Makefile       |   7 +
  board/gardena/smart-gateway-at91sam/board.c        |  59 +++++++
  board/gardena/smart-gateway-at91sam/spl.c          | 135 ++++++++++++++++
  board/ronetix/pm9g45/pm9g45.c                      |  10 +-
  configs/gardena-smart-gateway-at91sam_defconfig    |  83 ++++++++++
  configs/pm9g45_defconfig                           |  44 +++++-
  configs/smartweb_defconfig                         |   1 -
  configs/taurus_defconfig                           |   1 -
  drivers/net/macb.c                                 |   8 +-
  drivers/pinctrl/pinctrl-at91.c                     |  84 +++++++++-
  drivers/serial/Kconfig                             |   9 ++
  drivers/serial/atmel_usart.c                       |  12 ++
  drivers/watchdog/Kconfig                           |   4 -
  drivers/watchdog/at91sam9_wdt.c                    |  32 ++--
  include/configs/corvus.h                           |   3 +
  include/configs/gardena-smart-gateway-at91sam.h    |  88 +++++++++++
  include/configs/pm9g45.h                           | 173 
+++++++++++----------
  include/configs/smartweb.h                         |   4 +
  include/configs/taurus.h                           |   3 +
  include/dt-bindings/pinctrl/at91.h                 |   4 +
  include/watchdog.h                                 |  10 +-
  scripts/Makefile.spl                               |   6 +-
  39 files changed, 899 insertions(+), 137 deletions(-)
  create mode 100644 
arch/arm/dts/at91sam9g25-gardena-smart-gateway-u-boot.dtsi
  create mode 100644 arch/arm/dts/at91sam9g25-gardena-smart-gateway.dts
  create mode 100644 board/gardena/smart-gateway-at91sam/Kconfig
  create mode 100644 board/gardena/smart-gateway-at91sam/MAINTAINERS
  create mode 100644 board/gardena/smart-gateway-at91sam/Makefile
  create mode 100644 board/gardena/smart-gateway-at91sam/board.c
  create mode 100644 board/gardena/smart-gateway-at91sam/spl.c
  create mode 100644 configs/gardena-smart-gateway-at91sam_defconfig
  create mode 100644 include/configs/gardena-smart-gateway-at91sam.h

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

* [U-Boot] [PULL] u-boot-atmel-2019.07-a
  2019-04-09 12:14 [U-Boot] [PULL] u-boot-atmel-2019.07-a Eugen.Hristev at microchip.com
@ 2019-04-10 12:19 ` Tom Rini
  0 siblings, 0 replies; 2+ messages in thread
From: Tom Rini @ 2019-04-10 12:19 UTC (permalink / raw)
  To: u-boot

On Tue, Apr 09, 2019 at 12:14:58PM +0000, Eugen.Hristev at microchip.com wrote:

> Hello Tom,
> 
> Please pull tag u-boot-atmel-2019.07-a , the first set of new features 
> and fixes for u-boot-atmel for 2019.07 release.
> 
> The features include the pincontrol drive strength/slew rate for 
> Microchip at91 9x60 SoC, new Gardena board, pm9g45 migration to DM, SPL 
> and watchdog fixes for at91 9x5 boards.
> 
> Travis CI: https://travis-ci.org/ehristev/u-boot/builds/517655546
> 
> Thanks,
> Eugen
> 
> The following changes since commit 3c99166441bf3ea325af2da83cfe65430b49c066:
> 
>    Prepare v2019.04 (2019-04-08 21:40:40 -0400)
> 
> are available in the git repository at:
> 
>    git://git.denx.de/u-boot-atmel.git tags/u-boot-atmel-2019.07-a
> 
> for you to fetch changes up to 7bf9bca7c0a9fe5c63e8fd5c2aa63884d76dace0:
> 
>    net: macb: Add small delay after link establishment (2019-04-09 
> 09:28:50 +0300)
> 

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/20190410/266f1e6b/attachment.sig>

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

end of thread, other threads:[~2019-04-10 12:19 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-04-09 12:14 [U-Boot] [PULL] u-boot-atmel-2019.07-a Eugen.Hristev at microchip.com
2019-04-10 12:19 ` Tom Rini

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox