2020-03-05 16:56:17

by Richard Gong

[permalink] [raw]
Subject: [PATCH 0/2] Patches for firmware

From: Richard Gong <[email protected]>

Hi Greg,

Please take these 2 firmware patches, which are changes for Intel
Service Layer driver.

Those patches have been reviewed on the mailing list and applied cleanly
on current linux-next.

Thanks,
Richard

Richard Gong (2):
firmware: stratix10-svc: add the compatible value for intel agilex
firmware: intel_stratix10_service: add depend on agilex

drivers/firmware/Kconfig | 2 +-
drivers/firmware/stratix10-svc.c | 1 +
2 files changed, 2 insertions(+), 1 deletion(-)

--
2.7.4


2020-03-05 16:56:27

by Richard Gong

[permalink] [raw]
Subject: [PATCH 1/2] firmware: stratix10-svc: add the compatible value for intel agilex

From: Richard Gong <[email protected]>

Add the compatible property value so we can reuse Intel Stratix10
Service Layer driver on Intel Agilex SoC platform.

Signed-off-by: Richard Gong <[email protected]>
Acked-by: Moritz Fischer <[email protected]>
---
drivers/firmware/stratix10-svc.c | 1 +
1 file changed, 1 insertion(+)

diff --git a/drivers/firmware/stratix10-svc.c b/drivers/firmware/stratix10-svc.c
index 7ffb42b..d5f0769 100644
--- a/drivers/firmware/stratix10-svc.c
+++ b/drivers/firmware/stratix10-svc.c
@@ -966,6 +966,7 @@ EXPORT_SYMBOL_GPL(stratix10_svc_free_memory);

static const struct of_device_id stratix10_svc_drv_match[] = {
{.compatible = "intel,stratix10-svc"},
+ {.compatible = "intel,agilex-svc"},
{},
};

--
2.7.4

2020-03-05 16:57:40

by Richard Gong

[permalink] [raw]
Subject: [PATCH 2/2] firmware: intel_stratix10_service: add depend on agilex

From: Richard Gong <[email protected]>

Add depend on Agilex for Intel Agilex SoC platform.

Signed-off-by: Richard Gong <[email protected]>
Acked-by: Moritz Fischer <[email protected]>
---
drivers/firmware/Kconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/firmware/Kconfig b/drivers/firmware/Kconfig
index ea869ad..8007d4a 100644
--- a/drivers/firmware/Kconfig
+++ b/drivers/firmware/Kconfig
@@ -206,7 +206,7 @@ config FW_CFG_SYSFS_CMDLINE

config INTEL_STRATIX10_SERVICE
tristate "Intel Stratix10 Service Layer"
- depends on ARCH_STRATIX10 && HAVE_ARM_SMCCC
+ depends on (ARCH_STRATIX10 || ARCH_AGILEX) && HAVE_ARM_SMCCC
default n
help
Intel Stratix10 service layer runs at privileged exception level,
--
2.7.4

2020-03-16 15:53:35

by Richard Gong

[permalink] [raw]
Subject: Re: [PATCH 0/2] Patches for firmware

Hi Greg,

Sorry for asking.

When you get chance, please help to take these 2 firmware patches.

Regards,
Richard

On 3/5/20 11:12 AM, [email protected] wrote:
> From: Richard Gong <[email protected]>
>
> Hi Greg,
>
> Please take these 2 firmware patches, which are changes for Intel
> Service Layer driver.
>
> Those patches have been reviewed on the mailing list and applied cleanly
> on current linux-next.
>
> Thanks,
> Richard
>
> Richard Gong (2):
> firmware: stratix10-svc: add the compatible value for intel agilex
> firmware: intel_stratix10_service: add depend on agilex
>
> drivers/firmware/Kconfig | 2 +-
> drivers/firmware/stratix10-svc.c | 1 +
> 2 files changed, 2 insertions(+), 1 deletion(-)
>

2020-03-18 11:22:06

by Greg Kroah-Hartman

[permalink] [raw]
Subject: Re: [PATCH 0/2] Patches for firmware

On Mon, Mar 16, 2020 at 11:10:08AM -0500, Richard Gong wrote:
> Hi Greg,
>
> Sorry for asking.
>
> When you get chance, please help to take these 2 firmware patches.

Sorry for the delay, lots of patches to review, will get to this soon...

greg k-h