linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH RESEND 0/2] Add support for ARM CCN-502 interconnect
@ 2017-06-16  6:39 Scott Branden
  2017-06-16  6:39 ` [PATCH RESEND 1/2] dt-bindings: arm-ccn: Add bindings info for CCN-502 compatible string Scott Branden
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Scott Branden @ 2017-06-16  6:39 UTC (permalink / raw)
  To: linux-arm-kernel

Add compatible string for ARM CCN-502 interconnect.
CCN-502 interconnect is already compatible with the 
existing ARM CCN driver, which supports CCN-504.

Velibor Markovski (2):
  dt-bindings: arm-ccn: Add bindings info for CCN-502 compatible string
  bus: arm-ccn: Enable stats for CCN-502 interconnect

 Documentation/devicetree/bindings/arm/ccn.txt | 1 +
 drivers/bus/arm-ccn.c                         | 1 +
 2 files changed, 2 insertions(+)

-- 
2.5.0

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH RESEND 1/2] dt-bindings: arm-ccn: Add bindings info for CCN-502 compatible string
  2017-06-16  6:39 [PATCH RESEND 0/2] Add support for ARM CCN-502 interconnect Scott Branden
@ 2017-06-16  6:39 ` Scott Branden
  2017-06-16  6:39 ` [PATCH RESEND 2/2] bus: arm-ccn: Enable stats for CCN-502 interconnect Scott Branden
  2017-06-16 20:39 ` [PATCH RESEND 0/2] Add support for ARM " Scott Branden
  2 siblings, 0 replies; 5+ messages in thread
From: Scott Branden @ 2017-06-16  6:39 UTC (permalink / raw)
  To: linux-arm-kernel

From: Velibor Markovski <velibor.markovski@broadcom.com>

Add CCN-502 to the list of supported devices by ARM CCN PMU driver.

Signed-off-by: Velibor Markovski <velibor.markovski@broadcom.com>
Acked-by: Mark Rutland <mark.rutland@arm.com>
Signed-off-by: Scott Branden <scott.branden@broadcom.com>
---
 Documentation/devicetree/bindings/arm/ccn.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/arm/ccn.txt b/Documentation/devicetree/bindings/arm/ccn.txt
index b100d38..2980145 100644
--- a/Documentation/devicetree/bindings/arm/ccn.txt
+++ b/Documentation/devicetree/bindings/arm/ccn.txt
@@ -3,6 +3,7 @@
 Required properties:
 
 - compatible: (standard compatible string) should be one of:
+	"arm,ccn-502"
 	"arm,ccn-504"
 	"arm,ccn-508"
 
-- 
2.5.0

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH RESEND 2/2] bus: arm-ccn: Enable stats for CCN-502 interconnect
  2017-06-16  6:39 [PATCH RESEND 0/2] Add support for ARM CCN-502 interconnect Scott Branden
  2017-06-16  6:39 ` [PATCH RESEND 1/2] dt-bindings: arm-ccn: Add bindings info for CCN-502 compatible string Scott Branden
@ 2017-06-16  6:39 ` Scott Branden
  2017-06-16 20:39 ` [PATCH RESEND 0/2] Add support for ARM " Scott Branden
  2 siblings, 0 replies; 5+ messages in thread
From: Scott Branden @ 2017-06-16  6:39 UTC (permalink / raw)
  To: linux-arm-kernel

From: Velibor Markovski <velibor.markovski@broadcom.com>

Add compatible string for the ARM CCN-502 interconnect

Signed-off-by: Velibor Markovski <velibor.markovski@broadcom.com>
Acked-by: Mark Rutland <mark.rutland@arm.com>
Signed-off-by: Scott Branden <scott.branden@broadcom.com>
---
 drivers/bus/arm-ccn.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/bus/arm-ccn.c b/drivers/bus/arm-ccn.c
index 4d6a2b7..98a6995 100644
--- a/drivers/bus/arm-ccn.c
+++ b/drivers/bus/arm-ccn.c
@@ -1544,6 +1544,7 @@ static int arm_ccn_remove(struct platform_device *pdev)
 }
 
 static const struct of_device_id arm_ccn_match[] = {
+	{ .compatible = "arm,ccn-502", },
 	{ .compatible = "arm,ccn-504", },
 	{},
 };
-- 
2.5.0

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH RESEND 0/2] Add support for ARM CCN-502 interconnect
  2017-06-16  6:39 [PATCH RESEND 0/2] Add support for ARM CCN-502 interconnect Scott Branden
  2017-06-16  6:39 ` [PATCH RESEND 1/2] dt-bindings: arm-ccn: Add bindings info for CCN-502 compatible string Scott Branden
  2017-06-16  6:39 ` [PATCH RESEND 2/2] bus: arm-ccn: Enable stats for CCN-502 interconnect Scott Branden
@ 2017-06-16 20:39 ` Scott Branden
  2017-06-19 16:06   ` Pawel Moll
  2 siblings, 1 reply; 5+ messages in thread
From: Scott Branden @ 2017-06-16 20:39 UTC (permalink / raw)
  To: linux-arm-kernel

Arnd,

Should this patchset go through the ARM maintainers?


On 17-06-15 11:39 PM, Scott Branden wrote:
> Add compatible string for ARM CCN-502 interconnect.
> CCN-502 interconnect is already compatible with the
> existing ARM CCN driver, which supports CCN-504.
>
> Velibor Markovski (2):
>    dt-bindings: arm-ccn: Add bindings info for CCN-502 compatible string
>    bus: arm-ccn: Enable stats for CCN-502 interconnect
>
>   Documentation/devicetree/bindings/arm/ccn.txt | 1 +
>   drivers/bus/arm-ccn.c                         | 1 +
>   2 files changed, 2 insertions(+)
>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH RESEND 0/2] Add support for ARM CCN-502 interconnect
  2017-06-16 20:39 ` [PATCH RESEND 0/2] Add support for ARM " Scott Branden
@ 2017-06-19 16:06   ` Pawel Moll
  0 siblings, 0 replies; 5+ messages in thread
From: Pawel Moll @ 2017-06-19 16:06 UTC (permalink / raw)
  To: linux-arm-kernel

On Fri, 2017-06-16 at 13:39 -0700, Scott Branden wrote:
> Arnd,
> 
> Should this patchset go through the ARM maintainers?

Unless something changed in the last months, these patches should go
through arm-soc. Arnd is probably just waiting for me to send a pull
request. And indeed shame on me that I still haven't got around doing
this. Promise to do so tomorrow.

Regards and apologies

Pawel

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2017-06-19 16:06 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-06-16  6:39 [PATCH RESEND 0/2] Add support for ARM CCN-502 interconnect Scott Branden
2017-06-16  6:39 ` [PATCH RESEND 1/2] dt-bindings: arm-ccn: Add bindings info for CCN-502 compatible string Scott Branden
2017-06-16  6:39 ` [PATCH RESEND 2/2] bus: arm-ccn: Enable stats for CCN-502 interconnect Scott Branden
2017-06-16 20:39 ` [PATCH RESEND 0/2] Add support for ARM " Scott Branden
2017-06-19 16:06   ` Pawel Moll

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).