mbox

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

Message ID CAPnjgZ1FGJbEK-9LjT+x39z2N8HVqZXt3=UMRRephrEEfLyRMg@mail.gmail.com
State Accepted
Delegated to: Tom Rini
Headers show

Pull-request

git://git.denx.de/u-boot-dm.git

Message

Simon Glass April 15, 2017, 4:45 p.m. UTC
Hi Tom,

This includes the DM LED support, some more Atmel patches and as much
of the SCSI changes as I can apply so far. I have not applied the
generic phy changes yet as I still have some nits.


The following changes since commit fbeb33752999e7317113199ef89873d6b6916814:

  buildman: Translate more strings to latin-1 (2017-04-14 12:21:48 -0400)

are available in the git repository at:

  git://git.denx.de/u-boot-dm.git

for you to fetch changes up to ad46af0e76384b22058d9ac979f34fad2483aff3:

  board: sama5d3_xplained: Enable early debug UART (2017-04-14 20:10:35 -0600)

----------------------------------------------------------------
Jean-Jacques Hiblot (4):
      arm: omap: sata: compile out board-level sata code when
CONFIG_DM_SCSI is defined
      scsi: make the LUN a parameter of scsi_detect_dev()
      scsi: move the partition initialization out of the scsi detection
      dm: scsi: fix divide-by-0 error in scsi_scan()

Mugunthan V N (1):
      arm: omap: sata: move enable sata clocks to enable_basic_clocks()

Simon Glass (9):
      sandbox: Add some test LEDs
      dm: led: Add a missing blank line in the Kconfig file
      dm: led: Rename struct led_uclass_plat
      dm: led: Adjust the LED uclass
      dm: led: Add support for getting the state of an LED
      dm: led: Support toggling LEDs
      dm: led: Add support for blinking LEDs
      led: Mark existing driver as legacy
      dm: led: Add a new 'led' command

Wenyou Yang (6):
      board: sama5d3xek: Update to support DM/DT
      board: sama5d3xek: Clean up code
      board: sama5d3xek: Enable early debug UART
      board: sama5d3_xplained: Update to support DM/DT
      board: sama5d3_xplained: Clean up code
      board: sama5d3_xplained: Enable early debug UART

 arch/arm/mach-omap2/Makefile                    |   2 +
 arch/arm/mach-omap2/omap5/hw_data.c             |  12 ++
 arch/arm/mach-omap2/sata.c                      |  23 ---
 arch/sandbox/dts/sandbox.dts                    |  14 ++
 board/atmel/sama5d3_xplained/sama5d3_xplained.c |  49 ++---
 board/atmel/sama5d3xek/sama5d3xek.c             | 145 ++-----------
 cmd/Kconfig                                     |   9 +
 cmd/Makefile                                    |   3 +-
 cmd/led.c                                       | 262 ++++++++++--------------
 cmd/legacy_led.c                                | 187 +++++++++++++++++
 common/scsi.c                                   |  48 +++--
 configs/sama5d3_xplained_mmc_defconfig          |  35 +++-
 configs/sama5d3_xplained_nandflash_defconfig    |  34 ++-
 configs/sama5d3xek_mmc_defconfig                |  40 +++-
 configs/sama5d3xek_nandflash_defconfig          |  37 +++-
 configs/sama5d3xek_spiflash_defconfig           |  41 +++-
 configs/sandbox_defconfig                       |   1 +
 configs/sandbox_noblk_defconfig                 |   1 +
 configs/sandbox_spl_defconfig                   |   1 +
 drivers/led/Kconfig                             |  10 +
 drivers/led/led-uclass.c                        |  32 ++-
 drivers/led/led_gpio.c                          |  39 +++-
 include/configs/sama5d3_xplained.h              |  26 +--
 include/configs/sama5d3xek.h                    |  35 +---
 include/led.h                                   |  75 ++++++-
 test/dm/led.c                                   |  56 ++++-
 26 files changed, 778 insertions(+), 439 deletions(-)
 create mode 100644 cmd/legacy_led.c

Regards,
Simon

Comments

Tom Rini April 17, 2017, 10:16 p.m. UTC | #1
On Sat, Apr 15, 2017 at 10:45:35AM -0600, Simon Glass wrote:

> Hi Tom,
> 
> This includes the DM LED support, some more Atmel patches and as much
> of the SCSI changes as I can apply so far. I have not applied the
> generic phy changes yet as I still have some nits.
> 
> 
> The following changes since commit fbeb33752999e7317113199ef89873d6b6916814:
> 
>   buildman: Translate more strings to latin-1 (2017-04-14 12:21:48 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-dm.git
> 
> for you to fetch changes up to ad46af0e76384b22058d9ac979f34fad2483aff3:
> 
>   board: sama5d3_xplained: Enable early debug UART (2017-04-14 20:10:35 -0600)
> 

Applied to u-boot/master, thanks!