From: MD Danish Anwar <danishanwar@ti.com>
To: Krzysztof Kozlowski <krzk@kernel.org>
Cc: Nishanth Menon <nm@ti.com>, Vignesh Raghavendra <vigneshr@ti.com>,
Geert Uytterhoeven <geert+renesas@glider.be>,
linux-doc@vger.kernel.org, linux-remoteproc@vger.kernel.org,
Eric Dumazet <edumazet@google.com>,
Fan Gong <gongfan1@huawei.com>, Xin Guo <guoxin09@huawei.com>,
Lei Wei <quic_leiwei@quicinc.com>, Rob Herring <robh@kernel.org>,
Jonathan Corbet <corbet@lwn.net>,
Michael Ellerman <mpe@ellerman.id.au>, Lee Trager <lee@trager.us>,
Jakub Kicinski <kuba@kernel.org>,
Mengyuan Lou <mengyuanlou@net-swift.com>,
Lorenzo Bianconi <lorenzo@kernel.org>,
devicetree@vger.kernel.org, Conor Dooley <conor+dt@kernel.org>,
Roger Quadros <rogerq@kernel.org>,
Lukas Bulwahn <lukas.bulwahn@redhat.com>,
linux-arm-kernel@lists.infradead.org, srk@ti.com,
Paolo Abeni <pabeni@redhat.com>, Tero Kristo <kristo@kernel.org>,
Mathieu Poirier <mathieu.poirier@linaro.org>,
netdev@vger.kernel.org, Bjorn Andersson <andersson@kernel.org>,
linux-kernel@vger.kernel.org, Andrew Lunn <andrew+netdev@lunn.ch>,
Simon Horman <horms@kernel.org>,
Parthiban Veerasooran <Parthiban.Veerasooran@microchip.com>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
"David S. Miller" <davem@davemloft.net>
Subject: Re: [PATCH net-next v2 1/8] dt-bindings: net: ti,rpmsg-eth: Add DT binding for RPMSG ETH
Date: Wed, 3 Sep 2025 13:13:36 +0530 [thread overview]
Message-ID: <ce3b3241-b944-4d2b-95e9-259c71b26026@ti.com> (raw)
In-Reply-To: <20250903-dark-horse-of-storm-cf68ea@kuoka>
Hi Krzysztof,
On 03/09/25 12:48 pm, Krzysztof Kozlowski wrote:
> On Tue, Sep 02, 2025 at 02:37:39PM +0530, MD Danish Anwar wrote:
>> Add device tree binding documentation for Texas Instruments RPMsg Ethernet
>> channels. This binding describes the shared memory communication interface
>> between host processor and a remote processor for Ethernet packet exchange.
>>
>> The binding defines the required 'memory-region' property that references
>> the dedicated shared memory area used for exchanging Ethernet packets
>> between processors.
>>
>> Signed-off-by: MD Danish Anwar <danishanwar@ti.com>
>> ---
>> .../devicetree/bindings/net/ti,rpmsg-eth.yaml | 38 +++++++++++++++++++
>> 1 file changed, 38 insertions(+)
>> create mode 100644 Documentation/devicetree/bindings/net/ti,rpmsg-eth.yaml
>>
>> diff --git a/Documentation/devicetree/bindings/net/ti,rpmsg-eth.yaml b/Documentation/devicetree/bindings/net/ti,rpmsg-eth.yaml
>> new file mode 100644
>> index 000000000000..1c86d5c020b0
>> --- /dev/null
>> +++ b/Documentation/devicetree/bindings/net/ti,rpmsg-eth.yaml
>> @@ -0,0 +1,38 @@
>> +# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
>> +%YAML 1.2
>> +---
>> +$id: http://devicetree.org/schemas/net/ti,rpmsg-eth.yaml#
>> +$schema: http://devicetree.org/meta-schemas/core.yaml#
>> +
>> +title: Texas Instruments RPMsg channel nodes for Ethernet communication
>> +
>> +description: |
>> + RPMsg Ethernet subnode represents the communication interface between host
>> + processor and a remote processor.
>> +
>> +maintainers:
>> + - MD Danish Anwar <danishanwar@ti.com>
>> +
>> +properties:
>> + memory-region:
>> + $ref: /schemas/types.yaml#/definitions/phandle
>> + description: |
>> + Phandle to the shared memory region used for communication between the
>> + host processor and the remote processor.
>> + This shared memory region is used to exchange Ethernet packets.
>> +
>> +required:
>> + - memory-region
>> +
>> +additionalProperties: false
>
> This cannot be really tested and is pointless binding... Really, one
> property does not make it a device node.
>
>
I tried to do something similar to google,cros-ec.yaml and
qcom,glink-edge.yaml
They are also rpmsg related and used by other vendors. I created similar
to that as my use case seems similar to them.
The only difference being I only need one property.
--
Thanks and Regards,
Danish
next prev parent reply other threads:[~2025-09-03 8:36 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-09-02 9:07 [PATCH net-next v2 0/8] Add RPMSG Ethernet Driver MD Danish Anwar
2025-09-02 9:07 ` [PATCH net-next v2 1/8] dt-bindings: net: ti,rpmsg-eth: Add DT binding for RPMSG ETH MD Danish Anwar
2025-09-03 7:18 ` Krzysztof Kozlowski
2025-09-03 7:43 ` MD Danish Anwar [this message]
2025-09-03 7:18 ` Krzysztof Kozlowski
2025-09-02 9:07 ` [PATCH net-next v2 2/8] dt-bindings: remoteproc: k3-r5f: Add rpmsg-eth subnode MD Danish Anwar
2025-09-03 7:19 ` Krzysztof Kozlowski
2025-09-03 7:57 ` MD Danish Anwar
2025-09-03 12:54 ` Krzysztof Kozlowski
2025-09-03 13:32 ` Anwar, Md Danish
2025-09-03 14:06 ` Andrew Lunn
2025-09-03 14:23 ` Krzysztof Kozlowski
2025-09-05 8:56 ` MD Danish Anwar
2025-09-03 14:19 ` Krzysztof Kozlowski
2025-09-02 9:07 ` [PATCH net-next v2 3/8] net: rpmsg-eth: Add Documentation for RPMSG-ETH Driver MD Danish Anwar
2025-09-02 9:07 ` [PATCH net-next v2 4/8] net: rpmsg-eth: Add basic rpmsg skeleton MD Danish Anwar
2025-09-02 9:07 ` [PATCH net-next v2 5/8] net: rpmsg-eth: Register device as netdev MD Danish Anwar
2025-09-02 9:07 ` [PATCH net-next v2 6/8] net: rpmsg-eth: Add netdev ops MD Danish Anwar
2025-09-02 9:07 ` [PATCH net-next v2 7/8] net: rpmsg-eth: Add support for multicast filtering MD Danish Anwar
2025-09-02 9:07 ` [PATCH net-next v2 8/8] arch: arm64: dts: k3-am64*: Add rpmsg-eth node MD Danish Anwar
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=ce3b3241-b944-4d2b-95e9-259c71b26026@ti.com \
--to=danishanwar@ti.com \
--cc=Parthiban.Veerasooran@microchip.com \
--cc=andersson@kernel.org \
--cc=andrew+netdev@lunn.ch \
--cc=conor+dt@kernel.org \
--cc=corbet@lwn.net \
--cc=davem@davemloft.net \
--cc=devicetree@vger.kernel.org \
--cc=edumazet@google.com \
--cc=geert+renesas@glider.be \
--cc=gongfan1@huawei.com \
--cc=guoxin09@huawei.com \
--cc=horms@kernel.org \
--cc=kristo@kernel.org \
--cc=krzk+dt@kernel.org \
--cc=krzk@kernel.org \
--cc=kuba@kernel.org \
--cc=lee@trager.us \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-remoteproc@vger.kernel.org \
--cc=lorenzo@kernel.org \
--cc=lukas.bulwahn@redhat.com \
--cc=mathieu.poirier@linaro.org \
--cc=mengyuanlou@net-swift.com \
--cc=mpe@ellerman.id.au \
--cc=netdev@vger.kernel.org \
--cc=nm@ti.com \
--cc=pabeni@redhat.com \
--cc=quic_leiwei@quicinc.com \
--cc=robh@kernel.org \
--cc=rogerq@kernel.org \
--cc=srk@ti.com \
--cc=vigneshr@ti.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