All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] Pull request v2: u-boot-sunxi/master
@ 2019-05-04 19:04 Jagan Teki
  2019-05-05 11:49 ` Tom Rini
  0 siblings, 1 reply; 2+ messages in thread
From: Jagan Teki @ 2019-05-04 19:04 UTC (permalink / raw)
  To: u-boot

Hi Tom,

Please pull this PR.

Summary:
- H6 Beelink GS1 board (Clément)
- Olimex A64-Teres-I board (Jonas)
- sunxi build fix for CONFIG_CMD_PXE|DHCP (Ondrej)
- EPHY clock changes (Jagan)
- EMAC enablement on Cubietruck Plus, BPI-M3 (Chen-Yu Tsai)

Changes for v2:
- Skip _relaxed MMIO changes

The following changes since commit 1f4ae66eaab29bfb5d1eb44996f7826c9cd01ed1:

  Merge tag 'arc-for-2019.07' of git://git.denx.de/u-boot-arc (2019-04-18 12:12:16 -0400)

are available in the Git repository at:

  git://git.denx.de/u-boot-sunxi.git master

for you to fetch changes up to 4488e3031bb96fe362f04fec4a75cd621cb8b4d3:

  sunxi: Enable EMAC on the Bananapi M3 (2019-05-03 15:06:12 +0530)

----------------------------------------------------------------
Chen-Yu Tsai (2):
      sunxi: Enable EMAC on the Cubietruck Plus
      sunxi: Enable EMAC on the Bananapi M3

Clément Péron (1):
      arm: dts: h6: Add Beelink GS1 initial support

Jagan Teki (6):
      clk: Get the CLK by index without device
      clk: Use clk_get_by_index_tail()
      test/dm: clk: Add clk_get_by_index[_nodev] test
      reset: Get the RESET by index without device
      test/dm: reset: Add reset_get_by_index[_nodev] test
      net: sun8i_emac: Add EPHY CLK and RESET support

Jonas Smedegaard (1):
      sun50i: a64: Add Olimex A64-Teres-I board initial support

Ondrej Jirman (1):
      sunxi: Fix build when CONFIG_CMD_PXE or CONFIG_CMD_DHCP are disabled

 arch/arm/dts/Makefile                       |   4 +-
 arch/arm/dts/sun50i-a64-teres-i-u-boot.dtsi |  41 +++++
 arch/arm/dts/sun50i-a64-teres-i.dts         | 270 ++++++++++++++++++++++++++++
 arch/arm/dts/sun50i-h6-beelink-gs1.dts      | 184 +++++++++++++++++++
 board/sunxi/MAINTAINERS                     |  12 ++
 configs/Cubietruck_plus_defconfig           |   2 +
 configs/Sinovoip_BPI_M3_defconfig           |   4 +-
 configs/beelink_gs1_defconfig               |  15 ++
 configs/teres_i_defconfig                   |  22 +++
 drivers/clk/clk-uclass.c                    |  75 ++++++--
 drivers/net/sun8i_emac.c                    |  74 ++++++--
 drivers/reset/reset-uclass.c                |  53 ++++--
 include/clk.h                               |  15 ++
 include/configs/sunxi-common.h              |  16 +-
 include/reset.h                             |  16 ++
 test/dm/clk.c                               |  21 +++
 test/dm/reset.c                             |  23 +++
 17 files changed, 791 insertions(+), 56 deletions(-)
 create mode 100644 arch/arm/dts/sun50i-a64-teres-i-u-boot.dtsi
 create mode 100644 arch/arm/dts/sun50i-a64-teres-i.dts
 create mode 100644 arch/arm/dts/sun50i-h6-beelink-gs1.dts
 create mode 100644 configs/beelink_gs1_defconfig
 create mode 100644 configs/teres_i_defconfig

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

* [U-Boot] Pull request v2: u-boot-sunxi/master
  2019-05-04 19:04 [U-Boot] Pull request v2: u-boot-sunxi/master Jagan Teki
@ 2019-05-05 11:49 ` Tom Rini
  0 siblings, 0 replies; 2+ messages in thread
From: Tom Rini @ 2019-05-05 11:49 UTC (permalink / raw)
  To: u-boot

On Sun, May 05, 2019 at 12:34:56AM +0530, Jagan Teki wrote:

> Hi Tom,
> 
> Please pull this PR.
> 
> Summary:
> - H6 Beelink GS1 board (Clément)
> - Olimex A64-Teres-I board (Jonas)
> - sunxi build fix for CONFIG_CMD_PXE|DHCP (Ondrej)
> - EPHY clock changes (Jagan)
> - EMAC enablement on Cubietruck Plus, BPI-M3 (Chen-Yu Tsai)
> 
> Changes for v2:
> - Skip _relaxed MMIO changes
> 
> The following changes since commit 1f4ae66eaab29bfb5d1eb44996f7826c9cd01ed1:
> 
>   Merge tag 'arc-for-2019.07' of git://git.denx.de/u-boot-arc (2019-04-18 12:12:16 -0400)
> 
> are available in the Git repository at:
> 
>   git://git.denx.de/u-boot-sunxi.git master
> 
> for you to fetch changes up to 4488e3031bb96fe362f04fec4a75cd621cb8b4d3:
> 
>   sunxi: Enable EMAC on the Bananapi M3 (2019-05-03 15:06:12 +0530)
> 

commit 36f5f6ae957dfd382d82e384b54958d150bd2834
Author: Jagan Teki <jagan@amarulasolutions.com>
Date:   Thu Feb 28 00:26:52 2019 +0530

    clk: Get the CLK by index without device

Breaks riscv and nds32.

-- 
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/20190505/dee063ed/attachment.sig>

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

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

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-04 19:04 [U-Boot] Pull request v2: u-boot-sunxi/master Jagan Teki
2019-05-05 11:49 ` 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.