From: Rob Herring <robh@kernel.org>
To: Alexander Koskovich <akoskovich@pm.me>
Cc: Bjorn Andersson <andersson@kernel.org>,
Konrad Dybcio <konradybcio@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>, Kees Cook <kees@kernel.org>,
Tony Luck <tony.luck@intel.com>,
"Guilherme G. Piccoli" <gpiccoli@igalia.com>,
Luca Weiss <luca.weiss@fairphone.com>,
Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>,
linux-arm-msm@vger.kernel.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org,
Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
Subject: Re: [PATCH v2 3/3] arm64: dts: qcom: Add the Nothing Phone (3a)
Date: Tue, 2 Jun 2026 17:44:20 -0500 [thread overview]
Message-ID: <20260602224420.GA1290244-robh@kernel.org> (raw)
In-Reply-To: <20260323-asteroids-v2-3-1a35fa9e178a@pm.me>
On Mon, Mar 23, 2026 at 01:55:05PM +0000, Alexander Koskovich wrote:
> Add a devicetree for the Nothing Phone (3a) smartphone, which is based
> on the Milos/SM7635 SoC.
>
> Supported functionality as of this initial submission:
> * Camera flash/torch LED
> * Debug UART
> * Glyph LEDs (AW20036)
> * PMIC-GLINK (Charger, Fuel gauge, USB-C mode switching)
> * Assistant Key, Power Button, Volume Keys
> * Regulators (PM7550, PM8550VS, PMR735B)
> * Remoteprocs (ADSP, CDSP, MPSS, WPSS)
> * USB (USB2 + FSA4480)
>
> Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
> Signed-off-by: Alexander Koskovich <akoskovich@pm.me>
> ---
> arch/arm64/boot/dts/qcom/Makefile | 1 +
> .../boot/dts/qcom/milos-nothing-asteroids.dts | 964 +++++++++++++++++++++
> 2 files changed, 965 insertions(+)
>
> diff --git a/arch/arm64/boot/dts/qcom/Makefile b/arch/arm64/boot/dts/qcom/Makefile
> index f80b5d9cf1e8..bb7ac369682c 100644
> --- a/arch/arm64/boot/dts/qcom/Makefile
> +++ b/arch/arm64/boot/dts/qcom/Makefile
> @@ -44,6 +44,7 @@ lemans-evk-el2-dtbs := lemans-evk.dtb lemans-el2.dtbo
>
> dtb-$(CONFIG_ARCH_QCOM) += lemans-evk-el2.dtb
> dtb-$(CONFIG_ARCH_QCOM) += milos-fairphone-fp6.dtb
> +dtb-$(CONFIG_ARCH_QCOM) += milos-nothing-asteroids.dtb
> dtb-$(CONFIG_ARCH_QCOM) += monaco-evk.dtb
> dtb-$(CONFIG_ARCH_QCOM) += msm8216-samsung-fortuna3g.dtb
> dtb-$(CONFIG_ARCH_QCOM) += msm8916-acer-a1-724.dtb
> diff --git a/arch/arm64/boot/dts/qcom/milos-nothing-asteroids.dts b/arch/arm64/boot/dts/qcom/milos-nothing-asteroids.dts
> new file mode 100644
> index 000000000000..7393978926e4
> --- /dev/null
> +++ b/arch/arm64/boot/dts/qcom/milos-nothing-asteroids.dts
> @@ -0,0 +1,964 @@
> +// SPDX-License-Identifier: BSD-3-Clause
> +
> +/dts-v1/;
> +
> +#define PMIV0104_SID 7
> +
> +#include <dt-bindings/leds/common.h>
> +#include <dt-bindings/pinctrl/qcom,pmic-gpio.h>
> +#include <dt-bindings/regulator/qcom,rpmh-regulator.h>
> +
> +#include "milos.dtsi"
> +#include "pm7550.dtsi"
> +#include "pm8550vs.dtsi"
> +#include "pmiv0104.dtsi" /* PMIV0102 */
> +#include "pmk8550.dtsi" /* PMK7635 */
> +#include "pmr735b.dtsi"
> +
> +/ {
> + model = "Nothing Phone (3a)";
> + compatible = "nothing,asteroids", "qcom,milos";
> + chassis-type = "handset";
> +
> + aliases {
> + serial0 = &uart5;
> + };
> +
> + chosen {
> + #address-cells = <2>;
> + #size-cells = <2>;
> + ranges;
> +
> + stdout-path = "serial0:115200n8";
> +
> + framebuffer0: framebuffer@e3940000 {
> + compatible = "simple-framebuffer";
> + reg = <0x0 0xe3940000 0x0 (2392 * 1080 * 4)>;
> + width = <1080>;
> + height = <2392>;
> + stride = <(1080 * 4)>;
> + format = "a8r8g8b8";
> + panel = <&panel>;
> + interconnects = <&mmss_noc MASTER_MDP QCOM_ICC_TAG_ALWAYS
> + &mc_virt SLAVE_EBI1 QCOM_ICC_TAG_ALWAYS>;
> + clocks = <&gcc GCC_DISP_HF_AXI_CLK>;
> +
> + /* Dummy panel for simple-framebuffer dimension info */
> + panel: dummy-panel {
> + compatible = "boe,bf068mwm-td0";
This is missing documentation and gives a warning. However, having a
panel node here is not valid. Either define a complete panel node or
none at all. That should throw a warning as well.
Please send fixes for this and any other warnings you didn't check or
ignored.
> + height-mm = <157>;
> + width-mm = <71>;
> + };
> + };
> + };
Rob
next prev parent reply other threads:[~2026-06-02 22:44 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-03-23 13:54 [PATCH v2 0/3] arm64: dts: qcom: Add support for the Nothing Phone (3a) Alexander Koskovich
2026-03-23 13:54 ` [PATCH v2 1/3] arm64: dts: qcom: milos: Reduce rmtfs_mem size to 2.5MiB Alexander Koskovich
2026-03-23 13:54 ` [PATCH v2 2/3] dt-bindings: arm: qcom: Add the Nothing Phone (3a) Alexander Koskovich
2026-03-23 13:55 ` [PATCH v2 3/3] arm64: dts: " Alexander Koskovich
2026-06-02 22:44 ` Rob Herring [this message]
2026-05-07 20:34 ` [PATCH v2 0/3] arm64: dts: qcom: Add support for " Bjorn Andersson
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=20260602224420.GA1290244-robh@kernel.org \
--to=robh@kernel.org \
--cc=akoskovich@pm.me \
--cc=andersson@kernel.org \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=dmitry.baryshkov@oss.qualcomm.com \
--cc=gpiccoli@igalia.com \
--cc=kees@kernel.org \
--cc=konrad.dybcio@oss.qualcomm.com \
--cc=konradybcio@kernel.org \
--cc=krzk+dt@kernel.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=luca.weiss@fairphone.com \
--cc=tony.luck@intel.com \
/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