All of lore.kernel.org
 help / color / mirror / Atom feed
From: Frank Li <Frank.li@oss.nxp.com>
To: sashiko-reviews@lists.linux.dev
Cc: Stefano Radaelli <stefano.radaelli21@gmail.com>,
	robh@kernel.org, Frank.Li@kernel.org, conor+dt@kernel.org,
	devicetree@vger.kernel.org, imx@lists.linux.dev
Subject: Re: [PATCH v2 3/3] arm64: dts: imx8qm-var-som: Add support for Variscite Symphony board
Date: Tue, 14 Jul 2026 15:30:53 -0500	[thread overview]
Message-ID: <alacfVm-MfHPm-qy@SMW015318> (raw)
In-Reply-To: <20260714201804.8D8681F000E9@smtp.kernel.org>

On Tue, Jul 14, 2026 at 08:18:04PM +0000, sashiko-bot@kernel.org wrote:
> Thank you for your contribution! Sashiko AI review found 4 potential issue(s) to consider:
> - [Medium] The capacitive touch panel node `ft5x06_ts` lacks a `reset-gpios` (or `wake-gpios`) property, stranding a configured pinctrl pad and potentially causing probing failures.
> - [Medium] The pinctrl for the USB VBUS regulator GPIO is incorrectly assigned to the USB controller node instead of the regulator node.
> - [Low] The PCIe node uses the deprecated `reset-gpio` property instead of `reset-gpios`.
> - [Low] The LED node name `led-hearthbeat` contains a typo.
> --
>
> --- Patch [3]: [PATCH v2 3/3] arm64: dts: imx8qm-var-som: Add support for Variscite Symphony board ---
> commit f84a05986e6ac58f10d1a6e2091672e4f1bf919b
> Author: Stefano Radaelli <stefano.r@variscite.com>
>
> arm64: dts: imx8qm-var-som: Add support for Variscite Symphony board
>
> This commit adds device tree support for the Variscite Symphony carrier board
> with the VAR-SOM-MX8 QuadMax system on module. It configures interfaces
> including SD card, USB, Ethernet, I2C, SPI, RTC, TPM, CAN, and PCIe.
>
> Link: https://variscite.com/carrier-boards/symphony-board/
>
> > diff --git a/arch/arm64/boot/dts/freescale/imx8qm-var-som-symphony.dts b/arch/arm64/boot/dts/freescale/imx8qm-var-som-symphony.dts
> > new file mode 100644
> > index 0000000000000..bf66786378301
> > --- /dev/null
> > +++ b/arch/arm64/boot/dts/freescale/imx8qm-var-som-symphony.dts
> [ ... ]
> > +	gpio-leds {
> > +		compatible = "gpio-leds";
> > +
> > +		led-hearthbeat {
>
> [Severity: Low]
> This isn't a bug, but there is a typo in the node name (hearthbeat instead
> of heartbeat).

small nit, fix it

>
> > +			function = LED_FUNCTION_STATUS;
> > +			color = <LED_COLOR_ID_GREEN>;
> > +			gpios = <&pca9534 0 GPIO_ACTIVE_LOW>;
> > +			linux,default-trigger = "heartbeat";
> > +		};
> > +	};
> [ ... ]
> > +	/* Capacitive touch */
> > +	ft5x06_ts: touchscreen@38 {
> > +		compatible = "edt,edt-ft5406";
> > +		pinctrl-names = "default";
> > +		reg = <0x38>;
> > +		pinctrl-0 = <&pinctrl_captouch>;
> > +		interrupt-parent = <&lsio_gpio0>;
> > +		interrupts = <19 IRQ_TYPE_LEVEL_LOW>;
> > +		touchscreen-size-x = <800>;
> > +		touchscreen-size-y = <480>;
> > +		touchscreen-inverted-x;
> > +		touchscreen-inverted-y;
> > +		wakeup-source;
> > +	};
>
> [Severity: Medium]
> Is this touchscreen node missing a reset-gpios property?
>
> The pinctrl_captouch group configures LSIO_GPIO0_IO16 for the touch
> controller, but it is not assigned to reset-gpios here.

is it for reset or irq line?

>
> Will the edt-ft5406 driver be able to toggle the reset line without it, or
> could this lead to initialization failures?
>
> [ ... ]
> > +&pciea{
> > +	phys = <&hsio_phy 0 PHY_TYPE_PCIE 0>;
> > +	phy-names = "pcie-phy";
> > +	reset-gpio = <&pca6408 1 GPIO_ACTIVE_LOW>;
>
> [Severity: Low]
> Should this use reset-gpios instead of the deprecated reset-gpio property?

Now put under root port

pcie@0 {
}

Frank
>
> > +	status = "okay";
> > +};
> [ ... ]
> > +&usbotg1 {
> > +	dr_mode = "host";
> > +	pinctrl-names = "default";
> > +	pinctrl-0 = <&pinctrl_usbotg1>;
> > +	vbus-supply = <&reg_usb_otg1_vbus>;
> > +	srp-disable;
> > +	hnp-disable;
> > +	adp-disable;
> > +	disable-over-current;
> > +	status = "okay";
> > +};
>
> [Severity: Medium]
> Is pinctrl_usbotg1 assigned to the wrong node?
>
> The reg_usb_otg1_vbus regulator uses the GPIO to provide power, but the
> pinctrl to configure the pad is placed here on the usbotg1 controller.
>
> Could this cause the GPIO pad to be incorrectly muxed when the fixed
> regulator framework tries to enable power before the USB driver probes?
>
> --
> Sashiko AI review · https://sashiko.dev/#/patchset/cover.1784059139.git.stefano.r@variscite.com?part=3

      reply	other threads:[~2026-07-14 20:31 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-07-14 20:05 [PATCH v2 0/3] Add support for Variscite VAR-SOM-MX8QM and Symphony board Stefano Radaelli
2026-07-14 20:05 ` [PATCH v2 1/3] dt-bindings: arm: fsl: add Variscite VAR-SOM-MX8 QuadMax Boards Stefano Radaelli
2026-07-14 20:05 ` [PATCH v2 2/3] arm64: dts: freescale: Add support for Variscite VAR-SOM-MX8 QuadMax Stefano Radaelli
2026-07-14 20:17   ` sashiko-bot
2026-07-14 20:25     ` Frank Li
2026-07-14 20:05 ` [PATCH v2 3/3] arm64: dts: imx8qm-var-som: Add support for Variscite Symphony board Stefano Radaelli
2026-07-14 20:18   ` sashiko-bot
2026-07-14 20:30     ` Frank Li [this message]

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=alacfVm-MfHPm-qy@SMW015318 \
    --to=frank.li@oss.nxp.com \
    --cc=Frank.Li@kernel.org \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=imx@lists.linux.dev \
    --cc=robh@kernel.org \
    --cc=sashiko-reviews@lists.linux.dev \
    --cc=stefano.radaelli21@gmail.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.