All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH V2] EDAC/synopsys: Add edac driver support for i.MX platforms
@ 2022-04-28  2:32 Sherry Sun
  2022-04-28  6:41 ` Michal Simek
  2022-04-28 13:46 ` Borislav Petkov
  0 siblings, 2 replies; 3+ messages in thread
From: Sherry Sun @ 2022-04-28  2:32 UTC (permalink / raw)
  To: bp, michal.simek, Shubhrajyoti.datta, mchehab, tony.luck,
	james.morse, rric
  Cc: linux-edac, linux-kernel, linux-imx

i.MX8MP use synopsys v3.70a ddr controller IP, so add edac support
for i.MX8MP based on the EDAC_SYNOPSYS driver.

Signed-off-by: Sherry Sun <sherry.sun@nxp.com>
---
Changes in V2:
1. Improve the patch title and the commit message.
---
 drivers/edac/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/edac/Kconfig b/drivers/edac/Kconfig
index 23f11554f400..d3e2477948c8 100644
--- a/drivers/edac/Kconfig
+++ b/drivers/edac/Kconfig
@@ -485,7 +485,7 @@ config EDAC_ARMADA_XP
 
 config EDAC_SYNOPSYS
 	tristate "Synopsys DDR Memory Controller"
-	depends on ARCH_ZYNQ || ARCH_ZYNQMP || ARCH_INTEL_SOCFPGA
+	depends on ARCH_ZYNQ || ARCH_ZYNQMP || ARCH_INTEL_SOCFPGA || ARCH_MXC
 	help
 	  Support for error detection and correction on the Synopsys DDR
 	  memory controller.
-- 
2.17.1


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

* Re: [PATCH V2] EDAC/synopsys: Add edac driver support for i.MX platforms
  2022-04-28  2:32 [PATCH V2] EDAC/synopsys: Add edac driver support for i.MX platforms Sherry Sun
@ 2022-04-28  6:41 ` Michal Simek
  2022-04-28 13:46 ` Borislav Petkov
  1 sibling, 0 replies; 3+ messages in thread
From: Michal Simek @ 2022-04-28  6:41 UTC (permalink / raw)
  To: Sherry Sun, bp, michal.simek, Shubhrajyoti.datta, mchehab,
	tony.luck, james.morse, rric
  Cc: linux-edac, linux-kernel, linux-imx



On 4/28/22 04:32, Sherry Sun wrote:
> i.MX8MP use synopsys v3.70a ddr controller IP, so add edac support
> for i.MX8MP based on the EDAC_SYNOPSYS driver.
> 
> Signed-off-by: Sherry Sun <sherry.sun@nxp.com>
> ---
> Changes in V2:
> 1. Improve the patch title and the commit message.
> ---
>   drivers/edac/Kconfig | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/edac/Kconfig b/drivers/edac/Kconfig
> index 23f11554f400..d3e2477948c8 100644
> --- a/drivers/edac/Kconfig
> +++ b/drivers/edac/Kconfig
> @@ -485,7 +485,7 @@ config EDAC_ARMADA_XP
>   
>   config EDAC_SYNOPSYS
>   	tristate "Synopsys DDR Memory Controller"
> -	depends on ARCH_ZYNQ || ARCH_ZYNQMP || ARCH_INTEL_SOCFPGA
> +	depends on ARCH_ZYNQ || ARCH_ZYNQMP || ARCH_INTEL_SOCFPGA || ARCH_MXC
>   	help
>   	  Support for error detection and correction on the Synopsys DDR
>   	  memory controller.


Acked-by: Michal Simek <michal.simek@amd.com>

M

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

* Re: [PATCH V2] EDAC/synopsys: Add edac driver support for i.MX platforms
  2022-04-28  2:32 [PATCH V2] EDAC/synopsys: Add edac driver support for i.MX platforms Sherry Sun
  2022-04-28  6:41 ` Michal Simek
@ 2022-04-28 13:46 ` Borislav Petkov
  1 sibling, 0 replies; 3+ messages in thread
From: Borislav Petkov @ 2022-04-28 13:46 UTC (permalink / raw)
  To: Sherry Sun
  Cc: michal.simek, Shubhrajyoti.datta, mchehab, tony.luck,
	james.morse, rric, linux-edac, linux-kernel, linux-imx

On Thu, Apr 28, 2022 at 10:32:09AM +0800, Sherry Sun wrote:
> i.MX8MP use synopsys v3.70a ddr controller IP, so add edac support
> for i.MX8MP based on the EDAC_SYNOPSYS driver.
> 
> Signed-off-by: Sherry Sun <sherry.sun@nxp.com>
> ---
> Changes in V2:
> 1. Improve the patch title and the commit message.
> ---
>  drivers/edac/Kconfig | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/edac/Kconfig b/drivers/edac/Kconfig
> index 23f11554f400..d3e2477948c8 100644
> --- a/drivers/edac/Kconfig
> +++ b/drivers/edac/Kconfig
> @@ -485,7 +485,7 @@ config EDAC_ARMADA_XP
>  
>  config EDAC_SYNOPSYS
>  	tristate "Synopsys DDR Memory Controller"
> -	depends on ARCH_ZYNQ || ARCH_ZYNQMP || ARCH_INTEL_SOCFPGA
> +	depends on ARCH_ZYNQ || ARCH_ZYNQMP || ARCH_INTEL_SOCFPGA || ARCH_MXC
>  	help
>  	  Support for error detection and correction on the Synopsys DDR
>  	  memory controller.
> -- 

Applied, thanks.

-- 
Regards/Gruss,
    Boris.

https://people.kernel.org/tglx/notes-about-netiquette

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

end of thread, other threads:[~2022-04-28 13:46 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-28  2:32 [PATCH V2] EDAC/synopsys: Add edac driver support for i.MX platforms Sherry Sun
2022-04-28  6:41 ` Michal Simek
2022-04-28 13:46 ` Borislav Petkov

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.