Skip to content

Commit a7403eb

Browse files
committed
Merge tag 'sunxi-fixes-for-5.0' of git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux into arm/fixes
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. * tag 'sunxi-fixes-for-5.0' of git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux: arm64: dts: allwinner: a64: Fix USB OTG regulator ARM: dts: sun8i: h3: Add ethernet0 alias to Beelink X2 ARM: dts: sun6i: Add clock-output-names to osc24M clock arm64: dts: allwinner: a64: Fix the video engine compatible Signed-off-by: Arnd Bergmann <arnd@arndb.de>
2 parents 83d3651 + b1360dc commit a7403eb

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

arch/arm/boot/dts/sun6i-a31.dtsi

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,7 @@
216216
#clock-cells = <0>;
217217
compatible = "fixed-clock";
218218
clock-frequency = <24000000>;
219+
clock-output-names = "osc24M";
219220
};
220221

221222
osc32k: clk-32k {

arch/arm/boot/dts/sun8i-h3-beelink-x2.dts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353

5454
aliases {
5555
serial0 = &uart0;
56-
/* ethernet0 is the H3 emac, defined in sun8i-h3.dtsi */
56+
ethernet0 = &emac;
5757
ethernet1 = &sdiowifi;
5858
};
5959

arch/arm64/boot/dts/allwinner/sun50i-a64-orangepi-win.dts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,7 @@
188188
reg = <0x3a3>;
189189
interrupt-parent = <&r_intc>;
190190
interrupts = <0 IRQ_TYPE_LEVEL_LOW>;
191+
x-powers,drive-vbus-en; /* set N_VBUSEN as output pin */
191192
};
192193
};
193194

arch/arm64/boot/dts/allwinner/sun50i-a64.dtsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@
390390
};
391391

392392
video-codec@1c0e000 {
393-
compatible = "allwinner,sun50i-h5-video-engine";
393+
compatible = "allwinner,sun50i-a64-video-engine";
394394
reg = <0x01c0e000 0x1000>;
395395
clocks = <&ccu CLK_BUS_VE>, <&ccu CLK_VE>,
396396
<&ccu CLK_DRAM_VE>;

0 commit comments

Comments
 (0)