public inbox for linux-sunxi@lists.linux.dev
 help / color / mirror / Atom feed
From: Ryan Walklin <ryan@testtoast.com>
To: Andre Przywara <andre.przywara@arm.com>,
	Chen-Yu Tsai <wens@csie.org>, Rob Herring <robh@kernel.org>,
	Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
	Conor Dooley <conor+dt@kernel.org>,
	Jernej Skrabec <jernej.skrabec@gmail.com>,
	Samuel Holland <samuel@sholland.org>,
	Chris Morgan <macromorgan@hotmail.com>
Cc: devicetree@vger.kernel.org, linux-sunxi@lists.linux.dev,
	Ryan Walklin <ryan@testtoast.com>
Subject: [PATCH 2/4] arm64: dts: allwinner: h700: Add RG35XX 2024 DTS
Date: Sun, 14 Apr 2024 20:33:46 +1200	[thread overview]
Message-ID: <20240414083347.131724-5-ryan@testtoast.com> (raw)
In-Reply-To: <20240414083347.131724-2-ryan@testtoast.com>

From: Ryan Walklin <ryan@testtoast.com>

The base model RG35XX (2024) is a handheld gaming device based on an Allwinner 
H700 chip.

The H700 is a H616 variant (4x ARM Cortex-A53 cores @ 1.5Ghz with Mali G31 GPU) 
which exposes RGB LCD and NMI pins.

Device features:
- Allwinner H700 @ 1.5GHz
- 1GB LPDDR4 DRAM
- X-Powers AXP717 PMIC
- 3.5" 640x480 RGB LCD
- Two microSD slots
- Mini-HDMI out
- GPIO keypad
- 3.5mm headphone jack

Enabled in this DTS:
- AXP717 PMIC with regulators (interrupt controller TBC/TBD)
- Power LED (charge LED on device controlled directly by PMIC)
- Serial UART (accessible from PIN headers on the board)
- MMC slots

Signed-off-by: Ryan Walklin <ryan@testtoast.com>
---
 .../sun50i-h700-anbernic-rg35xx-2024.dts      | 405 ++++++++++++++++++
 1 file changed, 405 insertions(+)
 create mode 100644 arch/arm64/boot/dts/allwinner/sun50i-h700-anbernic-rg35xx-2024.dts

diff --git a/arch/arm64/boot/dts/allwinner/sun50i-h700-anbernic-rg35xx-2024.dts b/arch/arm64/boot/dts/allwinner/sun50i-h700-anbernic-rg35xx-2024.dts
new file mode 100644
index 000000000000..b4140d450687
--- /dev/null
+++ b/arch/arm64/boot/dts/allwinner/sun50i-h700-anbernic-rg35xx-2024.dts
@@ -0,0 +1,405 @@
+// SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+/*
+ * Copyright (C) 2024 Andre Przywara <andre.przywara@arm.com>.
+ * Copyright (C) 2024 Ryan Walklin <ryan@testtoast.com>.
+ * Copyright (C) 2024 Chris Morgan <macroalpha82@gmail.com>.
+ */
+
+/dts-v1/;
+
+#include "sun50i-h616.dtsi"
+
+#include <dt-bindings/gpio/gpio.h>
+#include <dt-bindings/input/linux-event-codes.h>
+#include <dt-bindings/interrupt-controller/arm-gic.h>
+#include <dt-bindings/leds/common.h>
+
+/ {
+    model = "Anbernic RG35XX 2024";
+    compatible = "anbernic,rg35xx-2024", "allwinner,sun50i-h700";
+
+    aliases {
+        mmc0 = &mmc0;
+        mmc1 = &mmc2;
+        mmc2 = &mmc1;
+        serial0 = &uart0;
+    };
+
+    chosen {
+        stdout-path = "serial0:115200n8";
+    };
+
+    leds {
+        compatible = "gpio-leds";
+
+        led-0 {
+            function = LED_FUNCTION_POWER;
+            color = <LED_COLOR_ID_GREEN>;
+            gpios = <&pio 8 12 GPIO_ACTIVE_HIGH>; /* PI12 */
+            default-state = "on";
+        };
+    };
+
+    gpio-keys {
+       compatible = "gpio-keys";
+
+       keyUp {
+           label = "D-Pad Up";
+           gpios = <&pio 0 6 GPIO_ACTIVE_LOW>; /* PA6 */
+           linux,input-type = <EV_KEY>;
+           linux,code = <BTN_DPAD_UP>;
+        };
+
+        keyDown {
+            label = "D-Pad Down";
+            gpios = <&pio 4 0 GPIO_ACTIVE_LOW>; /* PE0 */
+            linux,input-type = <EV_KEY>;
+            linux,code = <BTN_DPAD_DOWN>;
+        };
+
+        keyLeft {
+            label = "D-Pad left";
+            gpios = <&pio 0 8 GPIO_ACTIVE_LOW>; /* PA8 */
+            linux,input-type = <EV_KEY>;
+            linux,code = <BTN_DPAD_LEFT>;
+        };
+
+        keyRight {
+            label = "D-Pad Right";
+            gpios = <&pio 0 9 GPIO_ACTIVE_LOW>; /* PA9 */
+            linux,input-type = <EV_KEY>;
+            linux,code = <BTN_DPAD_RIGHT>;
+        };
+
+        keyA {
+            label = "Action-Pad A";
+            gpios = <&pio 0 0 GPIO_ACTIVE_LOW>; /* PA0 */
+            linux,input-type = <EV_KEY>;
+            linux,code = <BTN_EAST>;
+        };
+
+        keyB {
+            label = "Action-Pad B";
+            gpios = <&pio 0 1 GPIO_ACTIVE_LOW>; /* PA1 */
+            linux,input-type = <EV_KEY>;
+            linux,code = <BTN_SOUTH>;
+        };
+
+        keyX {
+            label = "Action-Pad X";
+            gpios = <&pio 0 3 GPIO_ACTIVE_LOW>; /* PA3 */
+            linux,input-type = <EV_KEY>;
+            linux,code = <BTN_NORTH>;
+        };
+
+        keyY {
+            label = "Action Pad Y";
+            gpios = <&pio 0 2 GPIO_ACTIVE_LOW>; /* PA2 */
+            linux,input-type = <EV_KEY>;
+            linux,code = <BTN_WEST>;
+        };
+
+        keyStart {
+            label = "Key Start";
+            gpios = <&pio 0 4 GPIO_ACTIVE_LOW>; /* PA4 */
+            linux,input-type = <EV_KEY>;
+            linux,code = <BTN_START>;
+        };
+
+        keySel {
+            label = "Key Select";
+            gpios = <&pio 0 5 GPIO_ACTIVE_LOW>; /* PA5 */
+            linux,input-type = <EV_KEY>;
+            linux,code = <BTN_SELECT>;
+        };
+
+        keyL1 {
+            label = "Key L1";
+            gpios = <&pio 0 10 GPIO_ACTIVE_LOW>; /* PA10 */
+            linux,input-type = <EV_KEY>;
+            linux,code = <BTN_TL>;
+        };
+
+        keyL2 {
+            label = "Key L2";
+            gpios = <&pio 0 11 GPIO_ACTIVE_LOW>; /* PA11 */
+            linux,input-type = <EV_KEY>;
+            linux,code = <BTN_TL2>;
+        };
+
+        keyR1 {
+            label = "Key R1";
+            gpios = <&pio 0 12 GPIO_ACTIVE_LOW>; /* PA12 */
+            linux,input-type = <EV_KEY>;
+            linux,code = <BTN_TR>;
+        };
+
+        keyR2 {
+            label = "Key R2";
+            gpios = <&pio 0 7 GPIO_ACTIVE_LOW>; /* PA7 */
+            linux,input-type = <EV_KEY>;
+            linux,code = <BTN_TR2>;
+        };
+
+        keyMenu {
+            label = "Key Menu";
+            gpios = <&pio 4 3 GPIO_ACTIVE_LOW>; /* PE3 */
+            linux,input-type = <EV_KEY>;
+            linux,code = <BTN_MODE>;
+        };
+
+        keyVol+ {
+            label = "Key Volume Up";
+            gpios = <&pio 4 1 GPIO_ACTIVE_LOW>; /* PE1 */
+            linux,input-type = <EV_KEY>;
+            linux,code = <KEY_VOLUMEUP>;
+        };
+
+        keyVol- {
+            label = "Key Volume Down";
+            gpios = <&pio 4 2 GPIO_ACTIVE_LOW>; /* PE2 */
+            linux,input-type = <EV_KEY>;
+            linux,code = <KEY_VOLUMEDOWN>;
+        };
+    };
+
+    reg_vcc5v: vcc5v {
+        compatible = "regulator-fixed";
+        regulator-name = "vcc-5v";
+        regulator-always-on;
+        regulator-boot-on;
+        regulator-min-microvolt = <5000000>;
+        regulator-max-microvolt = <5000000>;
+    };
+
+    vcc_5v0_usb: vcc-5v0-usb { /* needs gpios */
+            compatible = "regulator-fixed";
+            regulator-name = "vcc_5v0_usb";
+            regulator-min-microvolt = <5000000>;
+            regulator-max-microvolt = <5000000>;
+            regulator-always-on;
+            regulator-boot-on;
+        };
+
+    reg_vcc3v3: vcc3v3 {
+        gpio = <&pio 4 4 GPIO_ACTIVE_HIGH>;
+        compatible = "regulator-fixed";
+        regulator-name = "vcc-3v3";
+        regulator-always-on;
+        regulator-boot-on;
+        regulator-min-microvolt = <3300000>;
+        regulator-max-microvolt = <3300000>;
+
+    };
+
+    reg_vcc1v8: vcc1v8 {
+        compatible = "regulator-fixed";
+        regulator-name = "vcc-1v8";
+        regulator-always-on;
+        regulator-min-microvolt = <1800000>;
+        regulator-max-microvolt = <1800000>;
+    };
+};
+
+&cpu0 {
+    cpu-supply = <&reg_dcdc1>;
+};
+
+&mmc0 {
+    vmmc-supply = <&reg_vcc3v3>;
+    disable-wp;
+    cd-gpios = <&pio 5 6 GPIO_ACTIVE_LOW>;  /* PF6 */
+    bus-width = <4>;
+    status = "okay";
+};
+
+&mmc2 {
+    vmmc-supply = <&reg_vcc3v3>;
+    vqmmc-supply = <&reg_aldo1>;
+    cd-gpios = <&pio 4 22 GPIO_ACTIVE_LOW>; /* PE 22 */
+    //cd-gpios = <&pio 4 16 GPIO_ACTIVE_LOW>;  /* PE16 */
+    bus-width = <4>;
+    status = "okay";
+};
+
+&ohci0 {
+    status = "okay";
+};
+
+&ehci1 {
+    status = "okay";
+};
+
+&i2c3 {
+    pinctrl-names = "default";
+    pinctrl-0 = <&i2c3_ph_pins>;
+    status = "okay";
+};
+
+&r_rsb {
+   status = "okay";
+
+   axp717: pmic@3a3 {
+       compatible = "x-powers,axp717";
+       //interrupt-controller;
+       //#interrupt-cells = <1>;
+       reg = <0x3a3>;
+       //interrupt-parent = <&r_intc>; /* test */
+       //interrupts = <0 IRQ_TYPE_LEVEL_LOW>; /* test */
+
+       vin1-supply = <&reg_vcc5v>;
+       vin2-supply = <&reg_vcc5v>;
+       vin3-supply = <&reg_vcc5v>;
+       vin4-supply = <&reg_vcc5v>;
+
+       regulators {
+            reg_dcdc1: dcdc1 {
+                regulator-always-on;
+                regulator-boot-on;
+                regulator-min-microvolt = <810000>;
+                regulator-max-microvolt = <1100000>;
+                regulator-name = "vdd-cpu";
+            };
+
+            reg_dcdc2: dcdc2 {
+                regulator-always-on;
+                regulator-boot-on;
+                regulator-min-microvolt = <940000>;
+                regulator-max-microvolt = <940000>;
+                regulator-name = "vdd-sys";
+            };
+
+            reg_dcdc3: dcdc3 {
+                regulator-always-on;
+                regulator-boot-on;/* test */
+                regulator-min-microvolt = <1100000>;
+                regulator-max-microvolt = <1100000>;
+                regulator-name = "vdd-dram";
+            };
+
+            reg_aldo1: aldo1 {
+                regulator-always-on;
+                regulator-boot-on;/* test */
+                regulator-min-microvolt = <1800000>;
+                regulator-max-microvolt = <3300000>;
+                regulator-name = "vcc-sd2";
+            };
+
+            reg_aldo2: aldo2 {
+                regulator-always-on;/* test */
+                regulator-boot-on;/* test */
+                regulator-min-microvolt = <500000>;
+                regulator-max-microvolt = <3500000>;
+                regulator-name = "axp717-aldo2";
+            };
+
+            reg_aldo3: aldo3 {
+                regulator-always-on;
+                regulator-boot-on;
+                regulator-min-microvolt = <500000>;
+                regulator-max-microvolt = <3500000>;
+                regulator-name = "axp717-aldo3";
+            };
+
+            reg_aldo4: aldo4 {
+                regulator-always-on;
+                regulator-boot-on;
+                regulator-min-microvolt = <500000>;
+                regulator-max-microvolt = <3500000>;
+                regulator-name = "axp717-aldo4";
+            };
+
+            reg_bldo1: bldo1 {
+                regulator-always-on;/* test */
+                regulator-boot-on;/* test */
+                regulator-min-microvolt = <500000>;
+                regulator-max-microvolt = <3500000>;
+                regulator-name = "axp717-bldo1";
+            };
+
+            reg_bldo2: bldo2 {
+                regulator-always-on;
+                regulator-boot-on;
+                regulator-min-microvolt = <1800000>;
+                regulator-max-microvolt = <1800000>;
+                regulator-name = "vcc-1v8";
+            };
+
+            reg_bldo3: bldo3 {
+                regulator-always-on;/* test */
+                regulator-boot-on;/* test */
+                regulator-min-microvolt = <500000>;
+                regulator-max-microvolt = <3500000>;
+                regulator-name = "axp717-bldo3";
+            };
+
+            reg_bldo4: bldo4 {
+                regulator-always-on;/* test */
+                regulator-boot-on;/* test */
+                regulator-min-microvolt = <500000>;
+                regulator-max-microvolt = <3500000>;
+                regulator-name = "axp717-bldo4";
+            };
+
+            reg_cldo1: cldo1 {
+                regulator-always-on;/* test */
+                regulator-boot-on;/* test */
+                regulator-min-microvolt = <500000>;
+                regulator-max-microvolt = <3500000>;
+                regulator-name = "axp717-cldo1";
+            };
+
+            reg_cldo2: cldo2 {
+                regulator-always-on;/* test */
+                regulator-min-microvolt = <500000>;
+                regulator-max-microvolt = <3500000>;
+                regulator-name = "axp717-cldo2";
+            };
+
+            reg_cldo3: cldo3 {
+                regulator-always-on;
+                regulator-min-microvolt = <500000>;
+                regulator-max-microvolt = <3500000>;
+                regulator-name = "axp717-cldo3";
+            };
+
+            reg_cldo4: cldo4 {
+                regulator-always-on;/* test */
+                regulator-min-microvolt = <3300000>;
+                regulator-max-microvolt = <3300000>;
+                regulator-name = "vcc-wifi";
+            };
+
+            reg_boost: reg-boost {
+                regulator-always-on;/* test */
+                regulator-min-microvolt = <5000000>;
+                regulator-max-microvolt = <5000000>;
+                regulator-name = "boost";
+            };
+
+            reg_cpusldo: cpusldo {
+                regulator-always-on;
+                regulator-boot-on;
+                regulator-min-microvolt = <500000>;
+                regulator-max-microvolt = <1400000>;
+                regulator-name = "cpusldo";
+            };
+       };
+   };
+};
+
+&uart0 {
+    pinctrl-names = "default";
+    pinctrl-0 = <&uart0_ph_pins>;
+    status = "okay";
+};
+
+/* the AXP717 has USB type-C role switch functionality, to be implemented */
+&usbotg {
+    dr_mode = "host";   /* USB type-C receptable */
+    status = "okay";
+};
+
+&usbphy {
+    status = "okay";
+};
-- 
2.44.0


  parent reply	other threads:[~2024-04-14  8:37 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-04-14  8:33 [PATCH 0/4] arm64: dts: allwinner: Add Anbernic RG35XX (Plus/H/2024) support Ryan Walklin
2024-04-14  8:33 ` [PATCH 1/4] dt-bindings: arm: sunxi: document Anbernic RG35XX handheld gaming device variants Ryan Walklin
2024-04-14  9:07   ` Krzysztof Kozlowski
2024-04-17  9:05     ` Ryan Walklin
2024-04-17 13:33       ` Krzysztof Kozlowski
2024-04-17 13:58         ` Andre Przywara
2024-04-17 19:22           ` Krzysztof Kozlowski
2024-04-17  9:54     ` Andre Przywara
2024-04-17 19:22   ` Krzysztof Kozlowski
2024-04-14  8:33 ` Ryan Walklin [this message]
2024-04-14  9:09   ` [PATCH 2/4] arm64: dts: allwinner: h700: Add RG35XX 2024 DTS Krzysztof Kozlowski
2024-04-17  9:08     ` Ryan Walklin
2024-04-14 17:46   ` Andre Przywara
2024-04-14  8:33 ` [PATCH 3/4] arm64: dts: allwinner: h700: Add RG35XX-Plus DTS Ryan Walklin
2024-04-14  9:10   ` Krzysztof Kozlowski
2024-04-14 18:37   ` Andre Przywara
2024-04-14  8:33 ` [PATCH 4/4] arm64: dts: allwinner: h700: Add RG35XX-H DTS Ryan Walklin
2024-04-15  0:12   ` Andre Przywara
2024-04-15 18:46 ` [PATCH 0/4] arm64: dts: allwinner: Add Anbernic RG35XX (Plus/H/2024) support Rob Herring

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20240414083347.131724-5-ryan@testtoast.com \
    --to=ryan@testtoast.com \
    --cc=andre.przywara@arm.com \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=jernej.skrabec@gmail.com \
    --cc=krzysztof.kozlowski+dt@linaro.org \
    --cc=linux-sunxi@lists.linux.dev \
    --cc=macromorgan@hotmail.com \
    --cc=robh@kernel.org \
    --cc=samuel@sholland.org \
    --cc=wens@csie.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox