mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-18 10:54:37 +00:00

Sync the devicetree files from the official Linux kernel tree, v6.10. This is covering Allwinner SoCs with 32-bit and 64-bit ARM cores. Besides mostly cosmectic changes, this adds cpufreq support to H616 boards, Nothing that U-Boot needs for itself, but helpful to pass on to kernels. We also get the .dts files for the Tanix TX1 TV box and three Anbernic handheld gaming devices. As before, this omits the non-backwards compatible changes to the R_INTC controller, to remain compatible with older kernels. Signed-off-by: Andre Przywara <andre.przywara@arm.com>
36 lines
736 B
Text
36 lines
736 B
Text
// SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
|
|
/*
|
|
* Copyright (C) 2024 Ryan Walklin <ryan@testtoast.com>.
|
|
* Copyright (C) 2024 Chris Morgan <macroalpha82@gmail.com>.
|
|
*/
|
|
|
|
#include "sun50i-h700-anbernic-rg35xx-plus.dts"
|
|
|
|
/ {
|
|
model = "Anbernic RG35XX H";
|
|
compatible = "anbernic,rg35xx-h", "allwinner,sun50i-h700";
|
|
};
|
|
|
|
&gpio_keys_gamepad {
|
|
button-thumbl {
|
|
label = "GPIO Thumb Left";
|
|
gpios = <&pio 4 8 GPIO_ACTIVE_LOW>; /* PE8 */
|
|
linux,input-type = <EV_KEY>;
|
|
linux,code = <BTN_THUMBL>;
|
|
};
|
|
|
|
button-thumbr {
|
|
label = "GPIO Thumb Right";
|
|
gpios = <&pio 4 9 GPIO_ACTIVE_LOW>; /* PE9 */
|
|
linux,input-type = <EV_KEY>;
|
|
linux,code = <BTN_THUMBR>;
|
|
};
|
|
};
|
|
|
|
&ehci1 {
|
|
status = "okay";
|
|
};
|
|
|
|
&ohci1 {
|
|
status = "okay";
|
|
};
|