* [PATCH v1 1/1] dt-binding: ptp: Add SoC compatibility strings for dte ptp clock
@ 2017-07-06 17:37 Arun Parameswaran
2017-07-10 13:44 ` Rob Herring
0 siblings, 1 reply; 4+ messages in thread
From: Arun Parameswaran @ 2017-07-06 17:37 UTC (permalink / raw)
To: David Miller, Rob Herring
Cc: Richard Cochran, Mark Rutland, devicetree-u79uwXL29TY76Z2rM5mHXA,
linux-kernel-u79uwXL29TY76Z2rM5mHXA,
netdev-u79uwXL29TY76Z2rM5mHXA,
bcm-kernel-feedback-list-dY08KVG/lbpWk0Htik3J/w,
Arun Parameswaran
Add SoC specific compatibility strings to the Broadcom DTE
based PTP clock binding document.
Fixed the document heading and node name.
Fixes: 80d6076140b2 ("dt-binding: ptp: add bindings document for dte based ptp clock")
Signed-off-by: Arun Parameswaran <arun.parameswaran-dY08KVG/lbpWk0Htik3J/w@public.gmane.org>
---
Documentation/devicetree/bindings/ptp/brcm,ptp-dte.txt | 15 +++++++++++----
1 file changed, 11 insertions(+), 4 deletions(-)
diff --git a/Documentation/devicetree/bindings/ptp/brcm,ptp-dte.txt b/Documentation/devicetree/bindings/ptp/brcm,ptp-dte.txt
index 07590bc..7c04e22 100644
--- a/Documentation/devicetree/bindings/ptp/brcm,ptp-dte.txt
+++ b/Documentation/devicetree/bindings/ptp/brcm,ptp-dte.txt
@@ -1,13 +1,20 @@
-* Broadcom Digital Timing Engine(DTE) based PTP clock driver
+* Broadcom Digital Timing Engine(DTE) based PTP clock
Required properties:
-- compatible: should be "brcm,ptp-dte"
+- compatible: should contain the core compatibility string
+ and the SoC compatibility string. The SoC
+ compatibility string is to handle SoC specific
+ hardware differences.
+ Core compatibility string:
+ "brcm,ptp-dte"
+ SoC compatibility strings:
+ "brcm,iproc-ptp-dte" - for iproc based SoC's
- reg: address and length of the DTE block's NCO registers
Example:
-ptp_dte: ptp_dte@180af650 {
- compatible = "brcm,ptp-dte";
+ptp: ptp-dte@180af650 {
+ compatible = "brcm,iproc-ptp-dte", "brcm,ptp-dte";
reg = <0x180af650 0x10>;
status = "okay";
};
--
1.9.1
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH v1 1/1] dt-binding: ptp: Add SoC compatibility strings for dte ptp clock
2017-07-06 17:37 [PATCH v1 1/1] dt-binding: ptp: Add SoC compatibility strings for dte ptp clock Arun Parameswaran
@ 2017-07-10 13:44 ` Rob Herring
2017-07-18 17:14 ` Arun Parameswaran
0 siblings, 1 reply; 4+ messages in thread
From: Rob Herring @ 2017-07-10 13:44 UTC (permalink / raw)
To: Arun Parameswaran
Cc: David Miller, Richard Cochran, Mark Rutland, devicetree,
linux-kernel, netdev, bcm-kernel-feedback-list
On Thu, Jul 06, 2017 at 10:37:57AM -0700, Arun Parameswaran wrote:
> Add SoC specific compatibility strings to the Broadcom DTE
> based PTP clock binding document.
>
> Fixed the document heading and node name.
>
> Fixes: 80d6076140b2 ("dt-binding: ptp: add bindings document for dte based ptp clock")
> Signed-off-by: Arun Parameswaran <arun.parameswaran@broadcom.com>
> ---
> Documentation/devicetree/bindings/ptp/brcm,ptp-dte.txt | 15 +++++++++++----
> 1 file changed, 11 insertions(+), 4 deletions(-)
Acked-by: Rob Herring <robh@kernel.org>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v1 1/1] dt-binding: ptp: Add SoC compatibility strings for dte ptp clock
2017-07-10 13:44 ` Rob Herring
@ 2017-07-18 17:14 ` Arun Parameswaran
2017-07-19 23:26 ` David Miller
0 siblings, 1 reply; 4+ messages in thread
From: Arun Parameswaran @ 2017-07-18 17:14 UTC (permalink / raw)
To: David Miller
Cc: Rob Herring, Richard Cochran, Mark Rutland, devicetree,
linux-kernel, netdev, bcm-kernel-feedback-list
Hi David,
On 17-07-10 06:44 AM, Rob Herring wrote:
> On Thu, Jul 06, 2017 at 10:37:57AM -0700, Arun Parameswaran wrote:
>> Add SoC specific compatibility strings to the Broadcom DTE
>> based PTP clock binding document.
>>
>> Fixed the document heading and node name.
>>
>> Fixes: 80d6076140b2 ("dt-binding: ptp: add bindings document for dte based ptp clock")
>> Signed-off-by: Arun Parameswaran <arun.parameswaran@broadcom.com>
>> ---
>> Documentation/devicetree/bindings/ptp/brcm,ptp-dte.txt | 15 +++++++++++----
>> 1 file changed, 11 insertions(+), 4 deletions(-)
>
> Acked-by: Rob Herring <robh@kernel.org>
>
Will you be picking up this change ?
Thanks
Arun
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v1 1/1] dt-binding: ptp: Add SoC compatibility strings for dte ptp clock
2017-07-18 17:14 ` Arun Parameswaran
@ 2017-07-19 23:26 ` David Miller
0 siblings, 0 replies; 4+ messages in thread
From: David Miller @ 2017-07-19 23:26 UTC (permalink / raw)
To: arun.parameswaran
Cc: robh, richardcochran, mark.rutland, devicetree, linux-kernel,
netdev, bcm-kernel-feedback-list
From: Arun Parameswaran <arun.parameswaran@broadcom.com>
Date: Tue, 18 Jul 2017 10:14:16 -0700
> Hi David,
>
> On 17-07-10 06:44 AM, Rob Herring wrote:
>> On Thu, Jul 06, 2017 at 10:37:57AM -0700, Arun Parameswaran wrote:
>>> Add SoC specific compatibility strings to the Broadcom DTE
>>> based PTP clock binding document.
>>>
>>> Fixed the document heading and node name.
>>>
>>> Fixes: 80d6076140b2 ("dt-binding: ptp: add bindings document for dte based ptp clock")
>>> Signed-off-by: Arun Parameswaran <arun.parameswaran@broadcom.com>
>>> ---
>>> Documentation/devicetree/bindings/ptp/brcm,ptp-dte.txt | 15 +++++++++++----
>>> 1 file changed, 11 insertions(+), 4 deletions(-)
>>
>> Acked-by: Rob Herring <robh@kernel.org>
>>
> Will you be picking up this change ?
Sure, done.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2017-07-19 23:26 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-07-06 17:37 [PATCH v1 1/1] dt-binding: ptp: Add SoC compatibility strings for dte ptp clock Arun Parameswaran
2017-07-10 13:44 ` Rob Herring
2017-07-18 17:14 ` Arun Parameswaran
2017-07-19 23:26 ` David Miller
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).