From: Bjorn Helgaas <helgaas@kernel.org>
To: Krishna Chaitanya Chundru <krishna.chundru@oss.qualcomm.com>
Cc: "Bjorn Helgaas" <bhelgaas@google.com>,
"Lorenzo Pieralisi" <lpieralisi@kernel.org>,
"Krzysztof Wilczyński" <kwilczynski@kernel.org>,
"Manivannan Sadhasivam" <mani@kernel.org>,
"Rob Herring" <robh@kernel.org>,
"Krzysztof Kozlowski" <krzk+dt@kernel.org>,
"Conor Dooley" <conor+dt@kernel.org>,
"Jingoo Han" <jingoohan1@gmail.com>,
"Bartosz Golaszewski" <brgl@bgdev.pl>,
"Bjorn Andersson" <andersson@kernel.org>,
"Konrad Dybcio" <konradybcio@kernel.org>,
cros-qcom-dts-watchers@chromium.org, linux-pci@vger.kernel.org,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-arm-msm@vger.kernel.org
Subject: Re: [PATCH v8 1/7] dt-bindings: PCI: Add binding for Toshiba TC9563 PCIe switch
Date: Fri, 31 Oct 2025 17:00:12 -0500 [thread overview]
Message-ID: <20251031220012.GA1711108@bhelgaas> (raw)
In-Reply-To: <20251031-tc9563-v8-1-3eba55300061@oss.qualcomm.com>
On Fri, Oct 31, 2025 at 04:41:58PM +0530, Krishna Chaitanya Chundru wrote:
> Add a device tree binding for the Toshiba TC9563 PCIe switch, which
> provides an Ethernet MAC integrated to the 3rd downstream port and
> two downstream PCIe ports.
> +++ b/Documentation/devicetree/bindings/pci/toshiba,tc9563.yaml
> @@ -0,0 +1,178 @@
> +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/pci/toshiba,tc9563.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: Toshiba TC9563 PCIe switch
> +
> +maintainers:
> + - rishna Chaitanya Chundru <krishna.chundru@oss.qualcomm.com>
s/rishna/Krishna/ ?
> + i2c-parent:
> + $ref: /schemas/types.yaml#/definitions/phandle-array
> + description:
> + A phandle to the parent I2C node and the slave address of the device
> + used to do configure tc9563 to change FTS, tx amplitude etc.
s/used to do/used to/
> +patternProperties:
> + "^pcie@[1-3],0$":
> + description:
> + child nodes describing the internal downstream ports
> + the tc9563 switch.
s/ports/ports of/ ?
> + toshiba,no-dfe-support:
> + type: boolean
> + description:
> + Disable DFE (Decision Feedback Equalizer), which mitigates
> + intersymbol interference and some reflections caused by impedance mismatches.
Wrap to fit in 78 columns
> + pcie {
> + #address-cells = <3>;
> + #size-cells = <2>;
> +
> + pcie@0 {
> + device_type = "pci";
> + reg = <0x0 0x0 0x0 0x0 0x0>;
> +
> + #address-cells = <3>;
> + #size-cells = <2>;
> + ranges;
> + bus-range = <0x01 0xff>;
> +
> + pcie@0,0 {
> + compatible = "pci1179,0623";
> +
> + reg = <0x10000 0x0 0x0 0x0 0x0>;
> + device_type = "pci";
> + #address-cells = <3>;
> + #size-cells = <2>;
> + ranges;
> + bus-range = <0x02 0xff>;
> ...
> + pcie@1,0 {
> + compatible = "pciclass,0604";
> + reg = <0x20800 0x0 0x0 0x0 0x0>;
> + #address-cells = <3>;
> + #size-cells = <2>;
> + device_type = "pci";
> + ranges;
> + bus-range = <0x03 0xff>;
> +
> + toshiba,no-dfe-support;
IIUC, there are two downstream ports available for external devices,
and pcie@1,0 is one of them.
1) Putting "toshiba,no-dfe-support" in the pcie@1,0 stanza suggests
that it only applies to that port.
But from tc9563_pwrctrl_disable_dfe() in "[PATCH v8 6/7] PCI:
pwrctrl: Add power control driver for tc9563", it looks like it's
applied to the upstream port and both downstream ports. So I guess
my question is putting "toshiba,no-dfe-support" in just one
downstream port is the right place for it.
2) I see a lookup of "qcom,no-dfe-support" in [PATCH v8 6/7] PCI:
pwrctrl: Add power control driver for tc9563; is that supposed to
match this "toshiba,no-dfe-support"?
> + };
> +
> + pcie@2,0 {
> + compatible = "pciclass,0604";
> + reg = <0x21000 0x0 0x0 0x0 0x0>;
> + #address-cells = <3>;
> + #size-cells = <2>;
> + device_type = "pci";
> + ranges;
> + bus-range = <0x04 0xff>;
> + };
> +
> + pcie@3,0 {
> + compatible = "pciclass,0604";
> + reg = <0x21800 0x0 0x0 0x0 0x0>;
> + #address-cells = <3>;
> + #size-cells = <2>;
> + device_type = "pci";
> + ranges;
> + bus-range = <0x05 0xff>;
> +
> + toshiba,tx-amplitude-microvolt = <10>;
> +
> + ethernet@0,0 {
> + reg = <0x50000 0x0 0x0 0x0 0x0>;
> + };
> +
> + ethernet@0,1 {
> + reg = <0x50100 0x0 0x0 0x0 0x0>;
> + };
> + };
> + };
> + };
> + };
>
> --
> 2.34.1
>
next prev parent reply other threads:[~2025-10-31 22:00 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-31 11:11 [PATCH v8 0/7] PCI: Enable Power and configure the TC9563 PCIe switch Krishna Chaitanya Chundru
2025-10-31 11:11 ` [PATCH v8 1/7] dt-bindings: PCI: Add binding for Toshiba " Krishna Chaitanya Chundru
2025-10-31 22:00 ` Bjorn Helgaas [this message]
2025-10-31 22:12 ` Bjorn Helgaas
2025-11-01 3:38 ` Krishna Chaitanya Chundru
2025-10-31 11:11 ` [PATCH v8 2/7] PCI: Add assert_perst() operation to control PCIe PERST# Krishna Chaitanya Chundru
2025-10-31 11:12 ` [PATCH v8 3/7] PCI: dwc: Add assert_perst() hook for dwc glue drivers Krishna Chaitanya Chundru
2025-10-31 11:12 ` [PATCH v8 4/7] PCI: dwc: Implement .assert_perst() hook Krishna Chaitanya Chundru
2025-10-31 11:12 ` [PATCH v8 5/7] PCI: qcom: Add support for assert_perst() Krishna Chaitanya Chundru
2025-10-31 11:12 ` [PATCH v8 6/7] PCI: pwrctrl: Add power control driver for tc9563 Krishna Chaitanya Chundru
2025-10-31 11:12 ` [PATCH v8 7/7] arm64: dts: qcom: qcs6490-rb3gen2: Add TC9563 PCIe switch node Krishna Chaitanya Chundru
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=20251031220012.GA1711108@bhelgaas \
--to=helgaas@kernel.org \
--cc=andersson@kernel.org \
--cc=bhelgaas@google.com \
--cc=brgl@bgdev.pl \
--cc=conor+dt@kernel.org \
--cc=cros-qcom-dts-watchers@chromium.org \
--cc=devicetree@vger.kernel.org \
--cc=jingoohan1@gmail.com \
--cc=konradybcio@kernel.org \
--cc=krishna.chundru@oss.qualcomm.com \
--cc=krzk+dt@kernel.org \
--cc=kwilczynski@kernel.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pci@vger.kernel.org \
--cc=lpieralisi@kernel.org \
--cc=mani@kernel.org \
--cc=robh@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;
as well as URLs for NNTP newsgroup(s).