From: Krzysztof Kozlowski <krzk@kernel.org>
To: Horatiu Vultur <horatiu.vultur@microchip.com>,
robh@kernel.org, krzk+dt@kernel.org, conor+dt@kernel.org,
nicolas.ferre@microchip.com, alexandre.belloni@bootlin.com,
claudiu.beznea@tuxon.dev, wsa+renesas@sang-engineering.com,
Ryan.Wanner@microchip.com, romain.sioen@microchip.com
Cc: devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH v3 2/2] ARM: dts: Add support for pcb8385
Date: Wed, 26 Nov 2025 11:24:50 +0100 [thread overview]
Message-ID: <4702976d-1b08-4565-88a5-d9a1b36582f9@kernel.org> (raw)
In-Reply-To: <20251126100151.1559590-3-horatiu.vultur@microchip.com>
On 26/11/2025 11:01, Horatiu Vultur wrote:
> Add basic support for pcb8385 [1]. It is a modular board which allows
> to add different daughter cards on which there are different PHYs.
> This adds support for UART, LEDs and I2C.
>
> [1] https://www.microchip.com/en-us/development-tool/ev83e85a
>
> Signed-off-by: Horatiu Vultur <horatiu.vultur@microchip.com>
> ---
> arch/arm/boot/dts/microchip/Makefile | 3 +-
> .../boot/dts/microchip/lan966x-pcb8385.dts | 133 ++++++++++++++++++
> 2 files changed, 135 insertions(+), 1 deletion(-)
> create mode 100644 arch/arm/boot/dts/microchip/lan966x-pcb8385.dts
>
> diff --git a/arch/arm/boot/dts/microchip/Makefile b/arch/arm/boot/dts/microchip/Makefile
> index 79cd38fdc7dab..08986c24a4700 100644
> --- a/arch/arm/boot/dts/microchip/Makefile
> +++ b/arch/arm/boot/dts/microchip/Makefile
> @@ -102,4 +102,5 @@ dtb-$(CONFIG_SOC_LAN966) += \
> lan966x-kontron-kswitch-d10-mmt-8g.dtb \
> lan966x-pcb8290.dtb \
> lan966x-pcb8291.dtb \
> - lan966x-pcb8309.dtb
> + lan966x-pcb8309.dtb \
> + lan966x-pcb8385.dtb
> diff --git a/arch/arm/boot/dts/microchip/lan966x-pcb8385.dts b/arch/arm/boot/dts/microchip/lan966x-pcb8385.dts
> new file mode 100644
> index 0000000000000..a7ac7854cdaf0
> --- /dev/null
> +++ b/arch/arm/boot/dts/microchip/lan966x-pcb8385.dts
> @@ -0,0 +1,133 @@
> +// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
> +/*
> + * lan966x-pcb8385.dts - Device Tree file for PCB8385
> + */
> +/dts-v1/;
> +
> +#include "lan966x.dtsi"
> +#include "dt-bindings/phy/phy-lan966x-serdes.h"
> +
> +/ {
> + model = "Microchip EVB - LAN9668";
> + compatible = "microchip,lan9668-pcb8385", "microchip,lan9668", "microchip,lan966";
> +
> + aliases {
> + serial0 = &usart3;
> + };
> +
> + chosen {
> + stdout-path = "serial0:115200n8";
> + };
> +
> + gpio-restart {
> + compatible = "gpio-restart";
> + gpios = <&gpio 59 GPIO_ACTIVE_LOW>;
> + open-source;
> + priority = <200>;
> + };
> +
> + leds {
> + compatible = "gpio-leds";
> +
> + led-p1-green {
> + label = "cu0:green";
> + gpios = <&sgpio_out 2 0 GPIO_ACTIVE_LOW>;
> + default-state = "off";
> + };
> +
> + led-p1-yellow {
> + label = "cu0:yellow";
> + gpios = <&sgpio_out 2 1 GPIO_ACTIVE_LOW>;
> + default-state = "off";
> + };
> +
> + led-p2-green {
> + label = "cu1:green";
> + gpios = <&sgpio_out 3 0 GPIO_ACTIVE_LOW>;
> + default-state = "off";
> + };
> +
> + led-p2-yellow {
> + label = "cu1:yellow";
> + gpios = <&sgpio_out 3 1 GPIO_ACTIVE_LOW>;
> + default-state = "off";
> + };
> + };
> +};
> +
> +&aes {
> + status = "disabled"; /* Reserved by secure OS */
> +};
> +
> +&flx0 {
> + atmel,flexcom-mode = <ATMEL_FLEXCOM_MODE_TWI>;
> + status = "okay";
> +
> + i2c0: i2c@600 {
You added a label, so this feels like a new node, but then you miss
compatible and status feels redundant.
If this is override, you should rather override by labels/phandles in
the first place. Even when overriding by full node path, you should not
add custom labels - they belong to the base SoC.
> + pinctrl-0 = <&fc0_b_pins>;
> + pinctrl-names = "default";
> + dmas = <0>, <0>;
> + i2c-analog-filter;
> + i2c-digital-filter;
> + i2c-digital-filter-width-ns = <35>;
> + i2c-sda-hold-time-ns = <1500>;
> + status = "okay";
> +
> + eeprom@54 {
> + compatible = "atmel,24c01";
> + reg = <0x54>;
> + status = "okay";
Why? Was it disabled anywhere?
> + };
> +
> + eeprom@55 {
> + compatible = "atmel,24c01";
> + reg = <0x55>;
> + status = "okay";
> + };
> + };
> +};
> +
Best regards,
Krzysztof
next prev parent reply other threads:[~2025-11-26 10:24 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-11-26 10:01 [PATCH v3 0/2] ARM: add " Horatiu Vultur
2025-11-26 10:01 ` [PATCH v3 1/2] dt-bindings: arm: at91: add lan966 pcb8385 board Horatiu Vultur
2025-11-26 10:01 ` [PATCH v3 2/2] ARM: dts: Add support for pcb8385 Horatiu Vultur
2025-11-26 10:24 ` Krzysztof Kozlowski [this message]
2025-11-27 9:24 ` Horatiu Vultur
2025-11-28 9:08 ` Krzysztof Kozlowski
2025-11-28 13:04 ` Horatiu Vultur
2025-11-29 9:15 ` Krzysztof Kozlowski
2025-11-26 22:46 ` [PATCH v3 0/2] ARM: add " 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=4702976d-1b08-4565-88a5-d9a1b36582f9@kernel.org \
--to=krzk@kernel.org \
--cc=Ryan.Wanner@microchip.com \
--cc=alexandre.belloni@bootlin.com \
--cc=claudiu.beznea@tuxon.dev \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=horatiu.vultur@microchip.com \
--cc=krzk+dt@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=nicolas.ferre@microchip.com \
--cc=robh@kernel.org \
--cc=romain.sioen@microchip.com \
--cc=wsa+renesas@sang-engineering.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
all inboxes | Powered by JetHome®