public inbox for netdev@vger.kernel.org
 help / color / mirror / Atom feed
From: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
To: Srinivas Kandagatla <srinivas.kandagatla@oss.qualcomm.com>,
	andersson@kernel.org, konradybcio@kernel.org, robh@kernel.org,
	krzk+dt@kernel.org, conor+dt@kernel.org,
	Andrew Lunn <andrew+netdev@lunn.ch>
Cc: richardcochran@gmail.com, geert+renesas@glider.be, arnd@arndb.de,
	dmitry.baryshkov@oss.qualcomm.com, ebiggers@kernel.org,
	michal.simek@amd.com, luca.weiss@fairphone.com, sven@kernel.org,
	prabhakar.mahadev-lad.rj@bp.renesas.com,
	kuninori.morimoto.gx@renesas.com, linux-arm-msm@vger.kernel.org,
	devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
	netdev@vger.kernel.org, m.facchin@arduino.cc, r.mereu@arduino.cc,
	loic.poulain@oss.qualcomm.com
Subject: Re: [PATCH 4/7] arm64: dts: qcom: Add Arduino Monza (VENTUNOQ) board support
Date: Tue, 10 Mar 2026 11:43:56 +0100	[thread overview]
Message-ID: <288bf404-17fe-4efe-b256-2ef76b543658@oss.qualcomm.com> (raw)
In-Reply-To: <20260309152420.1404349-5-srinivas.kandagatla@oss.qualcomm.com>

On 3/9/26 4:24 PM, Srinivas Kandagatla wrote:
> From: Loic Poulain <loic.poulain@oss.qualcomm.com>
> 
> Add device tree support for the Arduino VENTUNOQ board,
> based on the Qualcomm QCS8300 (Monaco) SoC.
> 
> The board features a Qualcomm Monza SoM and integrates various
> peripherals, including:
> - USB Type‑C connector with dual‑role support
> - ADV7535 DSI‑to‑HDMI bridge
> - MAX98091 audio codec
> - 2.5G Ethernet PHY (HSGMII)
> - PCIe0 (to onboard WiFi chipset and USB bridge)
> - PCIe1 (to M2/nvme)
> - Button (via GPIO‑keys)
> 
> Signed-off-by: Loic Poulain <loic.poulain@oss.qualcomm.com>
> Co-developed-by: Srinivas Kandagatla <srinivas.kandagatla@oss.qualcomm.com>
> Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@oss.qualcomm.com>
> ---

[...]

> +&ethernet0 {

+Andrew, could you please take a look?

Konrad

> +	phy-mode = "2500base-x";
> +	phy-handle = <&hsgmii_phy0>;
> +
> +	pinctrl-0 = <&ethernet0_default>;
> +	pinctrl-names = "default";
> +
> +	snps,mtl-rx-config = <&mtl_rx_setup>;
> +	snps,mtl-tx-config = <&mtl_tx_setup>;
> +
> +	status = "okay";
> +
> +	mdio {
> +		compatible = "snps,dwmac-mdio";
> +		#address-cells = <1>;
> +		#size-cells = <0>;
> +
> +		hsgmii_phy0: ethernet-phy@1c {
> +			compatible = "ethernet-phy-id004d.d101";
> +			reg = <0x1c>;
> +			reset-gpios = <&tlmm 50 GPIO_ACTIVE_LOW>;
> +			reset-assert-us = <11000>;
> +			reset-deassert-us = <70000>;
> +		};
> +	};
> +
> +	mtl_rx_setup: rx-queues-config {
> +		snps,rx-queues-to-use = <4>;
> +		snps,rx-sched-sp;
> +
> +		queue0 {
> +			snps,dcb-algorithm;
> +			snps,map-to-dma-channel = <0x0>;
> +			snps,route-up;
> +			snps,priority = <0x1>;
> +		};
> +
> +		queue1 {
> +			snps,dcb-algorithm;
> +			snps,map-to-dma-channel = <0x1>;
> +			snps,route-ptp;
> +		};
> +
> +		queue2 {
> +			snps,avb-algorithm;
> +			snps,map-to-dma-channel = <0x2>;
> +			snps,route-avcp;
> +		};
> +
> +		queue3 {
> +			snps,avb-algorithm;
> +			snps,map-to-dma-channel = <0x3>;
> +			snps,priority = <0xc>;
> +		};
> +	};
> +
> +	mtl_tx_setup: tx-queues-config {
> +		snps,tx-queues-to-use = <4>;
> +
> +		queue0 {
> +			snps,dcb-algorithm;
> +		};
> +
> +		queue1 {
> +			snps,dcb-algorithm;
> +		};
> +
> +		queue2 {
> +			snps,avb-algorithm;
> +			snps,send_slope = <0x1000>;
> +			snps,idle_slope = <0x1000>;
> +			snps,high_credit = <0x3e800>;
> +			snps,low_credit = <0xffc18000>;
> +		};
> +
> +		queue3 {
> +			snps,avb-algorithm;
> +			snps,send_slope = <0x1000>;
> +			snps,idle_slope = <0x1000>;
> +			snps,high_credit = <0x3e800>;
> +			snps,low_credit = <0xffc18000>;
> +		};
> +	};
> +};



  parent reply	other threads:[~2026-03-10 10:44 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-03-09 15:24 [PATCH 0/7] arm64: dts: qcom: Add support for Arduino VENTUNOQ Srinivas Kandagatla
2026-03-09 15:24 ` [PATCH 1/7] arm64: dts: qcom: monaco: Add HS/SS endpoints for USB1 controller Srinivas Kandagatla
2026-03-09 19:24   ` Dmitry Baryshkov
2026-03-09 15:24 ` [PATCH 2/7] arm64: dts: qcom: Add Monaco Monza SoM Srinivas Kandagatla
2026-03-10 10:39   ` Konrad Dybcio
2026-03-11 12:49     ` Srinivas Kandagatla
2026-03-09 15:24 ` [PATCH 3/7] dt-bindings: arm: qcom: add Arduino Monza, VENTUNOQ Srinivas Kandagatla
2026-03-09 15:50   ` Krzysztof Kozlowski
2026-03-09 17:47     ` Srinivas Kandagatla
2026-03-09 15:24 ` [PATCH 4/7] arm64: dts: qcom: Add Arduino Monza (VENTUNOQ) board support Srinivas Kandagatla
2026-03-09 15:52   ` Krzysztof Kozlowski
2026-03-09 19:37   ` Dmitry Baryshkov
2026-03-13  9:46     ` Srinivas Kandagatla
2026-03-10 10:42   ` Konrad Dybcio
2026-03-10 10:43   ` Konrad Dybcio [this message]
2026-03-09 15:24 ` [PATCH 5/7] arm64: dts: qcom: monaco: add dt entry for lpass lpi pinctrl Srinivas Kandagatla
2026-03-10 10:46   ` Konrad Dybcio
2026-03-09 15:24 ` [PATCH 6/7] arm64: dts: qcom: monaco-arduino-monza: Add sound node Srinivas Kandagatla
2026-03-09 19:38   ` Dmitry Baryshkov
2026-03-10  9:25     ` Srinivas Kandagatla
2026-03-10 10:45   ` Konrad Dybcio
2026-03-09 15:24 ` [PATCH 7/7] arm64: defconfig: Enable configs for Arduino VENTUNOQ Srinivas Kandagatla
2026-03-09 19:39   ` Dmitry Baryshkov

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=288bf404-17fe-4efe-b256-2ef76b543658@oss.qualcomm.com \
    --to=konrad.dybcio@oss.qualcomm.com \
    --cc=andersson@kernel.org \
    --cc=andrew+netdev@lunn.ch \
    --cc=arnd@arndb.de \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=dmitry.baryshkov@oss.qualcomm.com \
    --cc=ebiggers@kernel.org \
    --cc=geert+renesas@glider.be \
    --cc=konradybcio@kernel.org \
    --cc=krzk+dt@kernel.org \
    --cc=kuninori.morimoto.gx@renesas.com \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=loic.poulain@oss.qualcomm.com \
    --cc=luca.weiss@fairphone.com \
    --cc=m.facchin@arduino.cc \
    --cc=michal.simek@amd.com \
    --cc=netdev@vger.kernel.org \
    --cc=prabhakar.mahadev-lad.rj@bp.renesas.com \
    --cc=r.mereu@arduino.cc \
    --cc=richardcochran@gmail.com \
    --cc=robh@kernel.org \
    --cc=srinivas.kandagatla@oss.qualcomm.com \
    --cc=sven@kernel.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