Re: [PATCH 3/4] arm64: dts: qcom: Add Retroid Pocket 6

From: Konrad Dybcio

Date: Mon Aug 17 2026 - 12:13:30 EST


On 8/8/26 7:37 PM, Aaron Kling via B4 Relay wrote:
> From: Aaron Kling <webgeek1234@xxxxxxxxx>
>
> The Retroid Pocket 6 is a high-performance Android-based handheld gaming
> console powered by the Qualcomm Snapdragon 8 Gen 2 processor featuring a
> 5.5-inch AMOLED touchscreen.

[...]

> +&{/} {
> + model = "Retroid Pocket 6";
> + compatible = "retroidpocket,rp6", "qcom,qcs8550", "qcom,sm8550";
> +
> + backlight: backlight {
> + compatible = "pwm-backlight";
> + pwms = <&pmk8550_pwm 0 860000>;
> + brightness-levels = <1023 0>;
> + num-interpolated-steps = <1023>;
> + default-brightness-level = <600>;
> + power-supply = <&vph_pwr>;
> + enable-gpios = <&pmk8550_gpios 5 GPIO_ACTIVE_HIGH>;
> + pinctrl-names = "default";
> + pinctrl-0 = <&pwm_backlight_default>;

property-n
property-names

in this order please


> +&i2c_hub_3 {
> + clock-frequency = <100000>;
> +
> + status = "okay";
> +
> + touchscreen@38 {
> + compatible = "focaltech,ft5426";
> + reg = <0x38>;
> +
> + interrupt-parent = <&tlmm>;
> + interrupts = <15 IRQ_TYPE_EDGE_FALLING>;
> + reset-gpios = <&tlmm 14 GPIO_ACTIVE_LOW>;
> +
> + vcc-supply = <&ts_avdd_3v0>;
> + iovcc-supply = <&ts_vddio_1v8>;
> +
> + pinctrl-0 = <&ts_p_rst_default &ts_p_int_default>;

<&foo>, <&bar> preferably (dtc treats it all the same unforunately..)

otherwise largely lgtm

Konrad