mbox series

[GIT,PULL,1/3] Allwinner Fixes for v5.0

Message ID 20190128022558.GA4564@wens.csie.org (mailing list archive)
State Mainlined, archived
Commit b1360dcfdaa1d55952e5ec8dd9d99f88965d7ac9
Headers show
Series Allwinner Changes - Round 1 | expand

Pull-request

https://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git tags/sunxi-fixes-for-5.0

Message

Chen-Yu Tsai Jan. 28, 2019, 2:25 a.m. UTC
The following changes since commit bfeffd155283772bbe78c6a05dec7c0128ee500c:

  Linux 5.0-rc1 (2019-01-06 17:08:20 -0800)

are available in the Git repository at:

  https://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git tags/sunxi-fixes-for-5.0

for you to fetch changes up to b1360dcfdaa1d55952e5ec8dd9d99f88965d7ac9:

  arm64: dts: allwinner: a64: Fix USB OTG regulator (2019-01-10 08:03:48 +0100)

----------------------------------------------------------------
Allwinner Fixes for 5.0

A couple of device tree fixes for the 5.0 cycle:

  - Add missing clock-output-names for the osc24M clock on sun6i/A31

    The Linux clock driver uses the device node as the clock name if
    the property is missing. The node name was changed in 5.0-rc1,
    breaking a subtle dependency in the sunxi-ng clock driver, and
    renders Linux unable to completely boot up.

  - Add alias for Ethernet controller on Beelink X2

    This allows the bootloader to assign a deterministically generated
    MAC address to it.

  - Add property to enable USB VBUS regulator on OrangePi Win

    The board had defined the constraints for the regulator, but was
    missing the property to actually enable it.

----------------------------------------------------------------
Chen-Yu Tsai (1):
      ARM: dts: sun6i: Add clock-output-names to osc24M clock

Jernej Skrabec (2):
      ARM: dts: sun8i: h3: Add ethernet0 alias to Beelink X2
      arm64: dts: allwinner: a64: Fix USB OTG regulator

Paul Kocialkowski (1):
      arm64: dts: allwinner: a64: Fix the video engine compatible

 arch/arm/boot/dts/sun6i-a31.dtsi                          | 1 +
 arch/arm/boot/dts/sun8i-h3-beelink-x2.dts                 | 2 +-
 arch/arm64/boot/dts/allwinner/sun50i-a64-orangepi-win.dts | 1 +
 arch/arm64/boot/dts/allwinner/sun50i-a64.dtsi             | 2 +-
 4 files changed, 4 insertions(+), 2 deletions(-)

Comments

Arnd Bergmann Jan. 30, 2019, 10:31 a.m. UTC | #1
On Mon, Jan 28, 2019 at 3:26 AM Chen-Yu Tsai <wens@csie.org> wrote:
> Allwinner Fixes for 5.0
>
> A couple of device tree fixes for the 5.0 cycle:
>
>   - Add missing clock-output-names for the osc24M clock on sun6i/A31
>
>     The Linux clock driver uses the device node as the clock name if
>     the property is missing. The node name was changed in 5.0-rc1,
>     breaking a subtle dependency in the sunxi-ng clock driver, and
>     renders Linux unable to completely boot up.
>
>   - Add alias for Ethernet controller on Beelink X2
>
>     This allows the bootloader to assign a deterministically generated
>     MAC address to it.
>
>   - Add property to enable USB VBUS regulator on OrangePi Win
>
>     The board had defined the constraints for the regulator, but was
>     missing the property to actually enable it.

Pulled into arm/fixes, thanks!

      Arnd