linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] ARM64: meson-gxbb: SCPI Fixup
@ 2016-11-03  9:11 Neil Armstrong
  2016-11-03  9:11 ` [PATCH 1/2] ARM64: dts: meson-gxbb: Add generic legacy scpi compatible Neil Armstrong
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Neil Armstrong @ 2016-11-03  9:11 UTC (permalink / raw)
  To: khilman, carlo
  Cc: Neil Armstrong, linux-amlogic, linux-arm-kernel, linux-kernel

This patchset updates the GXBB dtsi and the ARM64 defconfig in order
to make SCPI work following the Legacy SCPI rework from Sudeep Hola at [1].

The rework introduced a generic "arm,legacy-scpi" compatible string.
The second patch enables the necessary Platform MHU in defconfig.

[1] http://lkml.kernel.org/r/1478148731-11712-1-git-send-email-sudeep.holla@arm.com

Neil Armstrong (2):
  ARM64: dts: meson-gxbb: Add generic legacy scpi compatible
  ARM64: configs: Add Platform MHU in defconfig

 arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi | 2 +-
 arch/arm64/configs/defconfig                | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

-- 
1.9.1

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

* [PATCH 1/2] ARM64: dts: meson-gxbb: Add generic legacy scpi compatible
  2016-11-03  9:11 [PATCH 0/2] ARM64: meson-gxbb: SCPI Fixup Neil Armstrong
@ 2016-11-03  9:11 ` Neil Armstrong
  2016-11-03  9:11 ` [PATCH 2/2] ARM64: configs: Add Platform MHU in defconfig Neil Armstrong
  2016-11-03 22:35 ` [PATCH 0/2] ARM64: meson-gxbb: SCPI Fixup Kevin Hilman
  2 siblings, 0 replies; 5+ messages in thread
From: Neil Armstrong @ 2016-11-03  9:11 UTC (permalink / raw)
  To: khilman, carlo
  Cc: Neil Armstrong, linux-amlogic, linux-arm-kernel, linux-kernel,
	devicetree

Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
---
 arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi b/arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi
index 2d69a3b..5394657 100644
--- a/arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi
+++ b/arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi
@@ -75,7 +75,7 @@
 	};
 
 	scpi {
-		compatible = "amlogic,meson-gxbb-scpi";
+		compatible = "amlogic,meson-gxbb-scpi", "arm,legacy-scpi";
 		mboxes = <&mailbox 1 &mailbox 2>;
 		shmem = <&cpu_scp_lpri &cpu_scp_hpri>;
 
-- 
1.9.1

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

* [PATCH 2/2] ARM64: configs: Add Platform MHU in defconfig
  2016-11-03  9:11 [PATCH 0/2] ARM64: meson-gxbb: SCPI Fixup Neil Armstrong
  2016-11-03  9:11 ` [PATCH 1/2] ARM64: dts: meson-gxbb: Add generic legacy scpi compatible Neil Armstrong
@ 2016-11-03  9:11 ` Neil Armstrong
  2016-11-07 22:06   ` Kevin Hilman
  2016-11-03 22:35 ` [PATCH 0/2] ARM64: meson-gxbb: SCPI Fixup Kevin Hilman
  2 siblings, 1 reply; 5+ messages in thread
From: Neil Armstrong @ 2016-11-03  9:11 UTC (permalink / raw)
  To: khilman, carlo
  Cc: Neil Armstrong, linux-amlogic, linux-arm-kernel, linux-kernel

Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
---
 arch/arm64/configs/defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index dab2cb0..6631bda 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -394,6 +394,7 @@ CONFIG_MSM_MMCC_8996=y
 CONFIG_HWSPINLOCK_QCOM=y
 CONFIG_MAILBOX=y
 CONFIG_ARM_MHU=y
+CONFIG_PLATFORM_MHU=y
 CONFIG_HI6220_MBOX=y
 CONFIG_ARM_SMMU=y
 CONFIG_QCOM_SMEM=y
-- 
1.9.1

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

* Re: [PATCH 0/2] ARM64: meson-gxbb: SCPI Fixup
  2016-11-03  9:11 [PATCH 0/2] ARM64: meson-gxbb: SCPI Fixup Neil Armstrong
  2016-11-03  9:11 ` [PATCH 1/2] ARM64: dts: meson-gxbb: Add generic legacy scpi compatible Neil Armstrong
  2016-11-03  9:11 ` [PATCH 2/2] ARM64: configs: Add Platform MHU in defconfig Neil Armstrong
@ 2016-11-03 22:35 ` Kevin Hilman
  2 siblings, 0 replies; 5+ messages in thread
From: Kevin Hilman @ 2016-11-03 22:35 UTC (permalink / raw)
  To: Neil Armstrong; +Cc: carlo, linux-amlogic, linux-arm-kernel, linux-kernel

Neil Armstrong <narmstrong@baylibre.com> writes:

> This patchset updates the GXBB dtsi and the ARM64 defconfig in order
> to make SCPI work following the Legacy SCPI rework from Sudeep Hola at [1].
>
> The rework introduced a generic "arm,legacy-scpi" compatible string.
> The second patch enables the necessary Platform MHU in defconfig.

I folded PATCH 1/2 into the original, and (re)pushed both the amlogic
v4.10/dt64 branch.

Kevin

> [1] http://lkml.kernel.org/r/1478148731-11712-1-git-send-email-sudeep.holla@arm.com
>
> Neil Armstrong (2):
>   ARM64: dts: meson-gxbb: Add generic legacy scpi compatible
>   ARM64: configs: Add Platform MHU in defconfig
>
>  arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi | 2 +-
>  arch/arm64/configs/defconfig                | 1 +
>  2 files changed, 2 insertions(+), 1 deletion(-)

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

* Re: [PATCH 2/2] ARM64: configs: Add Platform MHU in defconfig
  2016-11-03  9:11 ` [PATCH 2/2] ARM64: configs: Add Platform MHU in defconfig Neil Armstrong
@ 2016-11-07 22:06   ` Kevin Hilman
  0 siblings, 0 replies; 5+ messages in thread
From: Kevin Hilman @ 2016-11-07 22:06 UTC (permalink / raw)
  To: Neil Armstrong; +Cc: carlo, linux-amlogic, linux-arm-kernel, linux-kernel

Neil Armstrong <narmstrong@baylibre.com> writes:

> Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
> ---
>  arch/arm64/configs/defconfig | 1 +
>  1 file changed, 1 insertion(+)

Applied.

Kevin

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

end of thread, other threads:[~2016-11-07 22:06 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-11-03  9:11 [PATCH 0/2] ARM64: meson-gxbb: SCPI Fixup Neil Armstrong
2016-11-03  9:11 ` [PATCH 1/2] ARM64: dts: meson-gxbb: Add generic legacy scpi compatible Neil Armstrong
2016-11-03  9:11 ` [PATCH 2/2] ARM64: configs: Add Platform MHU in defconfig Neil Armstrong
2016-11-07 22:06   ` Kevin Hilman
2016-11-03 22:35 ` [PATCH 0/2] ARM64: meson-gxbb: SCPI Fixup Kevin Hilman

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