linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] Patches for firmware
@ 2020-03-05 17:12 richard.gong
  2020-03-05 17:12 ` [PATCH 1/2] firmware: stratix10-svc: add the compatible value for intel agilex richard.gong
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: richard.gong @ 2020-03-05 17:12 UTC (permalink / raw)
  To: gregkh; +Cc: linux-kernel, mdf, dinguyen, richard.gong, Richard Gong

From: Richard Gong <richard.gong@intel.com>

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


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

* [PATCH 1/2] firmware: stratix10-svc: add the compatible value for intel agilex
  2020-03-05 17:12 [PATCH 0/2] Patches for firmware richard.gong
@ 2020-03-05 17:12 ` richard.gong
  2020-03-05 17:12 ` [PATCH 2/2] firmware: intel_stratix10_service: add depend on agilex richard.gong
  2020-03-16 16:10 ` [PATCH 0/2] Patches for firmware Richard Gong
  2 siblings, 0 replies; 5+ messages in thread
From: richard.gong @ 2020-03-05 17:12 UTC (permalink / raw)
  To: gregkh; +Cc: linux-kernel, mdf, dinguyen, richard.gong, Richard Gong

From: Richard Gong <richard.gong@intel.com>

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

Signed-off-by: Richard Gong <richard.gong@intel.com>
Acked-by: Moritz Fischer <mdf@kernel.org>
---
 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


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

* [PATCH 2/2] firmware: intel_stratix10_service: add depend on agilex
  2020-03-05 17:12 [PATCH 0/2] Patches for firmware richard.gong
  2020-03-05 17:12 ` [PATCH 1/2] firmware: stratix10-svc: add the compatible value for intel agilex richard.gong
@ 2020-03-05 17:12 ` richard.gong
  2020-03-16 16:10 ` [PATCH 0/2] Patches for firmware Richard Gong
  2 siblings, 0 replies; 5+ messages in thread
From: richard.gong @ 2020-03-05 17:12 UTC (permalink / raw)
  To: gregkh; +Cc: linux-kernel, mdf, dinguyen, richard.gong, Richard Gong

From: Richard Gong <richard.gong@intel.com>

Add depend on Agilex for Intel Agilex SoC platform.

Signed-off-by: Richard Gong <richard.gong@intel.com>
Acked-by: Moritz Fischer <mdf@kernel.org>
---
 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


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

* Re: [PATCH 0/2] Patches for firmware
  2020-03-05 17:12 [PATCH 0/2] Patches for firmware richard.gong
  2020-03-05 17:12 ` [PATCH 1/2] firmware: stratix10-svc: add the compatible value for intel agilex richard.gong
  2020-03-05 17:12 ` [PATCH 2/2] firmware: intel_stratix10_service: add depend on agilex richard.gong
@ 2020-03-16 16:10 ` Richard Gong
  2020-03-18 11:20   ` Greg KH
  2 siblings, 1 reply; 5+ messages in thread
From: Richard Gong @ 2020-03-16 16:10 UTC (permalink / raw)
  To: gregkh; +Cc: linux-kernel, mdf, dinguyen, Richard Gong

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, richard.gong@linux.intel.com wrote:
> From: Richard Gong <richard.gong@intel.com>
> 
> 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(-)
> 

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

* Re: [PATCH 0/2] Patches for firmware
  2020-03-16 16:10 ` [PATCH 0/2] Patches for firmware Richard Gong
@ 2020-03-18 11:20   ` Greg KH
  0 siblings, 0 replies; 5+ messages in thread
From: Greg KH @ 2020-03-18 11:20 UTC (permalink / raw)
  To: Richard Gong; +Cc: linux-kernel, mdf, dinguyen, Richard Gong

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

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

end of thread, other threads:[~2020-03-18 11:20 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-05 17:12 [PATCH 0/2] Patches for firmware richard.gong
2020-03-05 17:12 ` [PATCH 1/2] firmware: stratix10-svc: add the compatible value for intel agilex richard.gong
2020-03-05 17:12 ` [PATCH 2/2] firmware: intel_stratix10_service: add depend on agilex richard.gong
2020-03-16 16:10 ` [PATCH 0/2] Patches for firmware Richard Gong
2020-03-18 11:20   ` Greg KH

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