All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCHv2 0/2] Intel Stratix10/Agilex Additions
@ 2019-12-06 19:47 thor.thayer at linux.intel.com
  2019-12-06 19:47 ` [PATCHv2 1/2] arm: socfpga: stratix10: Enable SMMU access thor.thayer at linux.intel.com
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: thor.thayer at linux.intel.com @ 2019-12-06 19:47 UTC (permalink / raw)
  To: u-boot

From: Thor Thayer <thor.thayer@linux.intel.com>

This patchset is rebased on top of [1] and adds SMMU
support for Stratix10 and fixes an ECC access issue
with Stratix10 and Agilex.

[1] [U-Boot,v8,00/19] Add Intel Agilex SoC support
https://patchwork.ozlabs.org/cover/1201373/

Thor Thayer (2):
  arm: socfpga: stratix10: Enable SMMU access
  ddr: socfpga: Enable ARM64 Non-Secure SDRAM ECC Access

 arch/arm/mach-socfpga/include/mach/firewall.h |  7 +++++++
 drivers/ddr/altera/sdram_agilex.c             |  6 +++---
 drivers/ddr/altera/sdram_s10.c                | 20 +++++++++++++++++---
 3 files changed, 27 insertions(+), 6 deletions(-)

-- 
2.7.4

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

* [PATCHv2 1/2] arm: socfpga: stratix10: Enable SMMU access
  2019-12-06 19:47 [PATCHv2 0/2] Intel Stratix10/Agilex Additions thor.thayer at linux.intel.com
@ 2019-12-06 19:47 ` thor.thayer at linux.intel.com
  2019-12-12  6:30   ` Tan, Ley Foon
  2019-12-06 19:47 ` [PATCHv2 2/2] ddr: socfpga: Enable ARM64 Non-Secure SDRAM ECC Access thor.thayer at linux.intel.com
  2019-12-07  0:24 ` [PATCHv2 0/2] Intel Stratix10/Agilex Additions Marek Vasut
  2 siblings, 1 reply; 8+ messages in thread
From: thor.thayer at linux.intel.com @ 2019-12-06 19:47 UTC (permalink / raw)
  To: u-boot

From: Thor Thayer <thor.thayer@linux.intel.com>

Enable TCU access through the Stratix10 CCU so that the
SMMU can access the SDRAM.

Signed-off-by: Thor Thayer <thor.thayer@linux.intel.com>
---
v2 Rebase patch on top of pending patchset
   [PATCH v8 00/19] Add Intel Agilex SoC support
   https://patchwork.ozlabs.org/cover/1201373/
---
 arch/arm/mach-socfpga/include/mach/firewall.h |  7 +++++++
 drivers/ddr/altera/sdram_s10.c                | 14 ++++++++++++++
 2 files changed, 21 insertions(+)

diff --git a/arch/arm/mach-socfpga/include/mach/firewall.h b/arch/arm/mach-socfpga/include/mach/firewall.h
index 516bd1c0e1ec..430341bea14c 100644
--- a/arch/arm/mach-socfpga/include/mach/firewall.h
+++ b/arch/arm/mach-socfpga/include/mach/firewall.h
@@ -95,6 +95,13 @@ struct socfpga_firwall_l4_sys {
 
 #define CCU_IOM_MPRT_ADMASK_MEM_RAM0		0x18628
 
+#define CCU_TCU_MPRT_ADBASE_MEMSPACE0		0x2c520
+#define CCU_TCU_MPRT_ADBASE_MEMSPACE1A		0x2c540
+#define CCU_TCU_MPRT_ADBASE_MEMSPACE1B		0x2c560
+#define CCU_TCU_MPRT_ADBASE_MEMSPACE1C		0x2c580
+#define CCU_TCU_MPRT_ADBASE_MEMSPACE1D		0x2c5a0
+#define CCU_TCU_MPRT_ADBASE_MEMSPACE1E		0x2c5c0
+
 #define CCU_ADMASK_P_MASK			BIT(0)
 #define CCU_ADMASK_NS_MASK			BIT(1)
 
diff --git a/drivers/ddr/altera/sdram_s10.c b/drivers/ddr/altera/sdram_s10.c
index fcab3ae3e4ba..a7bf82e4e5ce 100644
--- a/drivers/ddr/altera/sdram_s10.c
+++ b/drivers/ddr/altera/sdram_s10.c
@@ -104,6 +104,20 @@ int sdram_mmr_init_full(struct udevice *dev)
 	clrbits_le32(CCU_REG_ADDR(CCU_IOM_MPRT_ADBASE_MEMSPACE1E),
 		     CCU_ADBASE_DI_MASK);
 
+	/* Enable access to DDR from TCU */
+	clrbits_le32(CCU_REG_ADDR(CCU_TCU_MPRT_ADBASE_MEMSPACE0),
+		     CCU_ADBASE_DI_MASK);
+	clrbits_le32(CCU_REG_ADDR(CCU_TCU_MPRT_ADBASE_MEMSPACE1A),
+		     CCU_ADBASE_DI_MASK);
+	clrbits_le32(CCU_REG_ADDR(CCU_TCU_MPRT_ADBASE_MEMSPACE1B),
+		     CCU_ADBASE_DI_MASK);
+	clrbits_le32(CCU_REG_ADDR(CCU_TCU_MPRT_ADBASE_MEMSPACE1C),
+		     CCU_ADBASE_DI_MASK);
+	clrbits_le32(CCU_REG_ADDR(CCU_TCU_MPRT_ADBASE_MEMSPACE1D),
+		     CCU_ADBASE_DI_MASK);
+	clrbits_le32(CCU_REG_ADDR(CCU_TCU_MPRT_ADBASE_MEMSPACE1E),
+		     CCU_ADBASE_DI_MASK);
+
 	/* this enables nonsecure access to DDR */
 	/* mpuregion0addr_limit */
 	FW_MPU_DDR_SCR_WRITEL(0xFFFF0000, FW_MPU_DDR_SCR_MPUREGION0ADDR_LIMIT);
-- 
2.7.4

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

* [PATCHv2 2/2] ddr: socfpga: Enable ARM64 Non-Secure SDRAM ECC Access
  2019-12-06 19:47 [PATCHv2 0/2] Intel Stratix10/Agilex Additions thor.thayer at linux.intel.com
  2019-12-06 19:47 ` [PATCHv2 1/2] arm: socfpga: stratix10: Enable SMMU access thor.thayer at linux.intel.com
@ 2019-12-06 19:47 ` thor.thayer at linux.intel.com
  2019-12-12  6:33   ` Tan, Ley Foon
  2019-12-07  0:24 ` [PATCHv2 0/2] Intel Stratix10/Agilex Additions Marek Vasut
  2 siblings, 1 reply; 8+ messages in thread
From: thor.thayer at linux.intel.com @ 2019-12-06 19:47 UTC (permalink / raw)
  To: u-boot

From: Thor Thayer <thor.thayer@linux.intel.com>

The ECC registers in the SDRAM HMC Adapter should always
be accessible (both when ECC is enabled and disabled).
Currently, the registers are accessible only when ECC is enabled.

The ECC Enabled bit is used to determine the status of
ECC by later OSes so always allow access.

Signed-off-by: Thor Thayer <thor.thayer@linux.intel.com>
---
v2 New Patch. Rebase patch on top of pending patchset
   [PATCH v8 00/19] Add Intel Agilex SoC support
   https://patchwork.ozlabs.org/cover/1201373/
---
 drivers/ddr/altera/sdram_agilex.c | 6 +++---
 drivers/ddr/altera/sdram_s10.c    | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/drivers/ddr/altera/sdram_agilex.c b/drivers/ddr/altera/sdram_agilex.c
index cc7679a6e4c1..0cbcd1405607 100644
--- a/drivers/ddr/altera/sdram_agilex.c
+++ b/drivers/ddr/altera/sdram_agilex.c
@@ -143,9 +143,6 @@ int sdram_mmr_init_full(struct udevice *dev)
 		setbits_le32(plat->hmc + ERRINTEN,
 			     DDR_HMC_ERRINTEN_DERRINTEN_EN_SET_MSK);
 
-		/* Enable non-secure writes to HMC Adapter for SDRAM ECC */
-		writel(FW_HMC_ADAPTOR_MPU_MASK, FW_HMC_ADAPTOR_REG_ADDR);
-
 		if (!cpu_has_been_warmreset())
 			sdram_init_ecc_bits(&bd);
 	} else {
@@ -158,6 +155,9 @@ int sdram_mmr_init_full(struct udevice *dev)
 			      DDR_HMC_ECCCTL2_AWB_EN_SET_MSK));
 	}
 
+	/* Enable non-secure reads/writes to HMC Adapter for SDRAM ECC */
+	writel(FW_HMC_ADAPTOR_MPU_MASK, FW_HMC_ADAPTOR_REG_ADDR);
+
 	sdram_size_check(&bd);
 
 	priv->info.base = bd.bi_dram[0].start;
diff --git a/drivers/ddr/altera/sdram_s10.c b/drivers/ddr/altera/sdram_s10.c
index a7bf82e4e5ce..2b8889260f9f 100644
--- a/drivers/ddr/altera/sdram_s10.c
+++ b/drivers/ddr/altera/sdram_s10.c
@@ -306,9 +306,6 @@ int sdram_mmr_init_full(struct udevice *dev)
 			      DDR_HMC_ECCCTL2_AWB_EN_SET_MSK));
 		hmc_ecc_writel(plat, DDR_HMC_ERRINTEN_INTMASK, ERRINTENS);
 
-		/* Enable non-secure writes to HMC Adapter for SDRAM ECC */
-		writel(FW_HMC_ADAPTOR_MPU_MASK, FW_HMC_ADAPTOR_REG_ADDR);
-
 		/* Initialize memory content if not from warm reset */
 		if (!cpu_has_been_warmreset())
 			sdram_init_ecc_bits(&bd);
@@ -322,6 +319,9 @@ int sdram_mmr_init_full(struct udevice *dev)
 			      DDR_HMC_ECCCTL2_AWB_EN_SET_MSK));
 	}
 
+	/* Enable non-secure reads/writes to HMC Adapter for SDRAM ECC */
+	writel(FW_HMC_ADAPTOR_MPU_MASK, FW_HMC_ADAPTOR_REG_ADDR);
+
 	sdram_size_check(&bd);
 
 	priv->info.base = bd.bi_dram[0].start;
-- 
2.7.4

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

* [PATCHv2 0/2] Intel Stratix10/Agilex Additions
  2019-12-06 19:47 [PATCHv2 0/2] Intel Stratix10/Agilex Additions thor.thayer at linux.intel.com
  2019-12-06 19:47 ` [PATCHv2 1/2] arm: socfpga: stratix10: Enable SMMU access thor.thayer at linux.intel.com
  2019-12-06 19:47 ` [PATCHv2 2/2] ddr: socfpga: Enable ARM64 Non-Secure SDRAM ECC Access thor.thayer at linux.intel.com
@ 2019-12-07  0:24 ` Marek Vasut
  2019-12-11  3:18   ` Tan, Ley Foon
  2019-12-12  6:38   ` Tan, Ley Foon
  2 siblings, 2 replies; 8+ messages in thread
From: Marek Vasut @ 2019-12-07  0:24 UTC (permalink / raw)
  To: u-boot

On 12/6/19 8:47 PM, thor.thayer at linux.intel.com wrote:
> From: Thor Thayer <thor.thayer@linux.intel.com>
> 
> This patchset is rebased on top of [1] and adds SMMU
> support for Stratix10 and fixes an ECC access issue
> with Stratix10 and Agilex.
> 
> [1] [U-Boot,v8,00/19] Add Intel Agilex SoC support
> https://patchwork.ozlabs.org/cover/1201373/

OK, I will let Ley handle this and prepare a PR for -next.

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

* [PATCHv2 0/2] Intel Stratix10/Agilex Additions
  2019-12-07  0:24 ` [PATCHv2 0/2] Intel Stratix10/Agilex Additions Marek Vasut
@ 2019-12-11  3:18   ` Tan, Ley Foon
  2019-12-12  6:38   ` Tan, Ley Foon
  1 sibling, 0 replies; 8+ messages in thread
From: Tan, Ley Foon @ 2019-12-11  3:18 UTC (permalink / raw)
  To: u-boot



> -----Original Message-----
> From: Marek Vasut <marex@denx.de>
> Sent: Saturday, December 7, 2019 8:24 AM
> To: thor.thayer at linux.intel.com; simon.k.r.goldschmidt at gmail.com; Tan,
> Ley Foon <ley.foon.tan@intel.com>
> Cc: albert.u.boot at aribaud.net; Ang, Chee Hong
> <chee.hong.ang@intel.com>; Chee, Tien Fong <tien.fong.chee@intel.com>;
> u-boot at lists.denx.de
> Subject: Re: [PATCHv2 0/2] Intel Stratix10/Agilex Additions
> 
> On 12/6/19 8:47 PM, thor.thayer at linux.intel.com wrote:
> > From: Thor Thayer <thor.thayer@linux.intel.com>
> >
> > This patchset is rebased on top of [1] and adds SMMU support for
> > Stratix10 and fixes an ECC access issue with Stratix10 and Agilex.
> >
> > [1] [U-Boot,v8,00/19] Add Intel Agilex SoC support
> > https://patchwork.ozlabs.org/cover/1201373/
> 
> OK, I will let Ley handle this and prepare a PR for -next.
Simon already sent PR for Agilex series.
https://lists.denx.de/pipermail/u-boot/2019-December/393430.html

Regards
Ley Foon

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

* [PATCHv2 1/2] arm: socfpga: stratix10: Enable SMMU access
  2019-12-06 19:47 ` [PATCHv2 1/2] arm: socfpga: stratix10: Enable SMMU access thor.thayer at linux.intel.com
@ 2019-12-12  6:30   ` Tan, Ley Foon
  0 siblings, 0 replies; 8+ messages in thread
From: Tan, Ley Foon @ 2019-12-12  6:30 UTC (permalink / raw)
  To: u-boot



> -----Original Message-----
> From: thor.thayer at linux.intel.com <thor.thayer@linux.intel.com>
> Sent: Saturday, December 7, 2019 3:48 AM
> To: marex at denx.de; simon.k.r.goldschmidt at gmail.com; Tan, Ley Foon
> <ley.foon.tan@intel.com>
> Cc: albert.u.boot at aribaud.net; Ang, Chee Hong
> <chee.hong.ang@intel.com>; Chee, Tien Fong <tien.fong.chee@intel.com>;
> u-boot at lists.denx.de; Thor Thayer <thor.thayer@linux.intel.com>
> Subject: [PATCHv2 1/2] arm: socfpga: stratix10: Enable SMMU access
> 
> From: Thor Thayer <thor.thayer@linux.intel.com>
> 
> Enable TCU access through the Stratix10 CCU so that the SMMU can access
> the SDRAM.
> 
> Signed-off-by: Thor Thayer <thor.thayer@linux.intel.com>

Reviewed-by: Ley Foon Tan <ley.foon.tan@intel.com>

> ---
> v2 Rebase patch on top of pending patchset
>    [PATCH v8 00/19] Add Intel Agilex SoC support
>    https://patchwork.ozlabs.org/cover/1201373/
> ---
>  arch/arm/mach-socfpga/include/mach/firewall.h |  7 +++++++
>  drivers/ddr/altera/sdram_s10.c                | 14 ++++++++++++++
>  2 files changed, 21 insertions(+)
> 
> diff --git a/arch/arm/mach-socfpga/include/mach/firewall.h
> b/arch/arm/mach-socfpga/include/mach/firewall.h
> index 516bd1c0e1ec..430341bea14c 100644
> --- a/arch/arm/mach-socfpga/include/mach/firewall.h
> +++ b/arch/arm/mach-socfpga/include/mach/firewall.h
> @@ -95,6 +95,13 @@ struct socfpga_firwall_l4_sys {
> 
>  #define CCU_IOM_MPRT_ADMASK_MEM_RAM0		0x18628
> 
> +#define CCU_TCU_MPRT_ADBASE_MEMSPACE0		0x2c520
> +#define CCU_TCU_MPRT_ADBASE_MEMSPACE1A		0x2c540
> +#define CCU_TCU_MPRT_ADBASE_MEMSPACE1B		0x2c560
> +#define CCU_TCU_MPRT_ADBASE_MEMSPACE1C		0x2c580
> +#define CCU_TCU_MPRT_ADBASE_MEMSPACE1D		0x2c5a0
> +#define CCU_TCU_MPRT_ADBASE_MEMSPACE1E		0x2c5c0
> +
>  #define CCU_ADMASK_P_MASK			BIT(0)
>  #define CCU_ADMASK_NS_MASK			BIT(1)
> 
> diff --git a/drivers/ddr/altera/sdram_s10.c b/drivers/ddr/altera/sdram_s10.c
> index fcab3ae3e4ba..a7bf82e4e5ce 100644
> --- a/drivers/ddr/altera/sdram_s10.c
> +++ b/drivers/ddr/altera/sdram_s10.c
> @@ -104,6 +104,20 @@ int sdram_mmr_init_full(struct udevice *dev)
> 
> 	clrbits_le32(CCU_REG_ADDR(CCU_IOM_MPRT_ADBASE_MEMSPACE
> 1E),
>  		     CCU_ADBASE_DI_MASK);
> 
> +	/* Enable access to DDR from TCU */
> +
> 	clrbits_le32(CCU_REG_ADDR(CCU_TCU_MPRT_ADBASE_MEMSPACE
> 0),
> +		     CCU_ADBASE_DI_MASK);
> +
> 	clrbits_le32(CCU_REG_ADDR(CCU_TCU_MPRT_ADBASE_MEMSPACE
> 1A),
> +		     CCU_ADBASE_DI_MASK);
> +
> 	clrbits_le32(CCU_REG_ADDR(CCU_TCU_MPRT_ADBASE_MEMSPACE
> 1B),
> +		     CCU_ADBASE_DI_MASK);
> +
> 	clrbits_le32(CCU_REG_ADDR(CCU_TCU_MPRT_ADBASE_MEMSPACE
> 1C),
> +		     CCU_ADBASE_DI_MASK);
> +
> 	clrbits_le32(CCU_REG_ADDR(CCU_TCU_MPRT_ADBASE_MEMSPACE
> 1D),
> +		     CCU_ADBASE_DI_MASK);
> +
> 	clrbits_le32(CCU_REG_ADDR(CCU_TCU_MPRT_ADBASE_MEMSPACE
> 1E),
> +		     CCU_ADBASE_DI_MASK);
> +
>  	/* this enables nonsecure access to DDR */
>  	/* mpuregion0addr_limit */
>  	FW_MPU_DDR_SCR_WRITEL(0xFFFF0000,
> FW_MPU_DDR_SCR_MPUREGION0ADDR_LIMIT);
> --
> 2.7.4

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

* [PATCHv2 2/2] ddr: socfpga: Enable ARM64 Non-Secure SDRAM ECC Access
  2019-12-06 19:47 ` [PATCHv2 2/2] ddr: socfpga: Enable ARM64 Non-Secure SDRAM ECC Access thor.thayer at linux.intel.com
@ 2019-12-12  6:33   ` Tan, Ley Foon
  0 siblings, 0 replies; 8+ messages in thread
From: Tan, Ley Foon @ 2019-12-12  6:33 UTC (permalink / raw)
  To: u-boot



> -----Original Message-----
> From: thor.thayer at linux.intel.com <thor.thayer@linux.intel.com>
> Sent: Saturday, December 7, 2019 3:48 AM
> To: marex at denx.de; simon.k.r.goldschmidt at gmail.com; Tan, Ley Foon
> <ley.foon.tan@intel.com>
> Cc: albert.u.boot at aribaud.net; Ang, Chee Hong
> <chee.hong.ang@intel.com>; Chee, Tien Fong <tien.fong.chee@intel.com>;
> u-boot at lists.denx.de; Thor Thayer <thor.thayer@linux.intel.com>
> Subject: [PATCHv2 2/2] ddr: socfpga: Enable ARM64 Non-Secure SDRAM ECC
> Access
> 
> From: Thor Thayer <thor.thayer@linux.intel.com>
> 
> The ECC registers in the SDRAM HMC Adapter should always be accessible
> (both when ECC is enabled and disabled).
> Currently, the registers are accessible only when ECC is enabled.
> 
> The ECC Enabled bit is used to determine the status of ECC by later OSes so
> always allow access.
> 
> Signed-off-by: Thor Thayer <thor.thayer@linux.intel.com>


Reviewed-by: Ley Foon Tan <ley.foon.tan@intel.com>

> ---
> v2 New Patch. Rebase patch on top of pending patchset
>    [PATCH v8 00/19] Add Intel Agilex SoC support
>    https://patchwork.ozlabs.org/cover/1201373/
> ---
>  drivers/ddr/altera/sdram_agilex.c | 6 +++---
>  drivers/ddr/altera/sdram_s10.c    | 6 +++---
>  2 files changed, 6 insertions(+), 6 deletions(-)
> 
> diff --git a/drivers/ddr/altera/sdram_agilex.c
> b/drivers/ddr/altera/sdram_agilex.c
> index cc7679a6e4c1..0cbcd1405607 100644
> --- a/drivers/ddr/altera/sdram_agilex.c
> +++ b/drivers/ddr/altera/sdram_agilex.c
> @@ -143,9 +143,6 @@ int sdram_mmr_init_full(struct udevice *dev)
>  		setbits_le32(plat->hmc + ERRINTEN,
>  			     DDR_HMC_ERRINTEN_DERRINTEN_EN_SET_MSK);
> 
> -		/* Enable non-secure writes to HMC Adapter for SDRAM ECC
> */
> -		writel(FW_HMC_ADAPTOR_MPU_MASK,
> FW_HMC_ADAPTOR_REG_ADDR);
> -
>  		if (!cpu_has_been_warmreset())
>  			sdram_init_ecc_bits(&bd);
>  	} else {
> @@ -158,6 +155,9 @@ int sdram_mmr_init_full(struct udevice *dev)
>  			      DDR_HMC_ECCCTL2_AWB_EN_SET_MSK));
>  	}
> 
> +	/* Enable non-secure reads/writes to HMC Adapter for SDRAM ECC
> */
> +	writel(FW_HMC_ADAPTOR_MPU_MASK,
> FW_HMC_ADAPTOR_REG_ADDR);
> +
>  	sdram_size_check(&bd);
> 
>  	priv->info.base = bd.bi_dram[0].start; diff --git
> a/drivers/ddr/altera/sdram_s10.c b/drivers/ddr/altera/sdram_s10.c index
> a7bf82e4e5ce..2b8889260f9f 100644
> --- a/drivers/ddr/altera/sdram_s10.c
> +++ b/drivers/ddr/altera/sdram_s10.c
> @@ -306,9 +306,6 @@ int sdram_mmr_init_full(struct udevice *dev)
>  			      DDR_HMC_ECCCTL2_AWB_EN_SET_MSK));
>  		hmc_ecc_writel(plat, DDR_HMC_ERRINTEN_INTMASK,
> ERRINTENS);
> 
> -		/* Enable non-secure writes to HMC Adapter for SDRAM ECC
> */
> -		writel(FW_HMC_ADAPTOR_MPU_MASK,
> FW_HMC_ADAPTOR_REG_ADDR);
> -
>  		/* Initialize memory content if not from warm reset */
>  		if (!cpu_has_been_warmreset())
>  			sdram_init_ecc_bits(&bd);
> @@ -322,6 +319,9 @@ int sdram_mmr_init_full(struct udevice *dev)
>  			      DDR_HMC_ECCCTL2_AWB_EN_SET_MSK));
>  	}
> 
> +	/* Enable non-secure reads/writes to HMC Adapter for SDRAM ECC
> */
> +	writel(FW_HMC_ADAPTOR_MPU_MASK,
> FW_HMC_ADAPTOR_REG_ADDR);
> +
>  	sdram_size_check(&bd);
> 
>  	priv->info.base = bd.bi_dram[0].start;
> --
> 2.7.4

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

* [PATCHv2 0/2] Intel Stratix10/Agilex Additions
  2019-12-07  0:24 ` [PATCHv2 0/2] Intel Stratix10/Agilex Additions Marek Vasut
  2019-12-11  3:18   ` Tan, Ley Foon
@ 2019-12-12  6:38   ` Tan, Ley Foon
  1 sibling, 0 replies; 8+ messages in thread
From: Tan, Ley Foon @ 2019-12-12  6:38 UTC (permalink / raw)
  To: u-boot



> -----Original Message-----
> From: Marek Vasut <marex@denx.de>
> Sent: Saturday, December 7, 2019 8:24 AM
> To: thor.thayer at linux.intel.com; simon.k.r.goldschmidt at gmail.com; Tan,
> Ley Foon <ley.foon.tan@intel.com>
> Cc: albert.u.boot at aribaud.net; Ang, Chee Hong
> <chee.hong.ang@intel.com>; Chee, Tien Fong <tien.fong.chee@intel.com>;
> u-boot at lists.denx.de
> Subject: Re: [PATCHv2 0/2] Intel Stratix10/Agilex Additions
> 
> On 12/6/19 8:47 PM, thor.thayer at linux.intel.com wrote:
> > From: Thor Thayer <thor.thayer@linux.intel.com>
> >
> > This patchset is rebased on top of [1] and adds SMMU support for
> > Stratix10 and fixes an ECC access issue with Stratix10 and Agilex.
> >
> > [1] [U-Boot,v8,00/19] Add Intel Agilex SoC support
> > https://patchwork.ozlabs.org/cover/1201373/
> 
> OK, I will let Ley handle this and prepare a PR for -next.

I will send PR for these 2 patches from Thor.

Regards
Ley Foon

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

end of thread, other threads:[~2019-12-12  6:38 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-06 19:47 [PATCHv2 0/2] Intel Stratix10/Agilex Additions thor.thayer at linux.intel.com
2019-12-06 19:47 ` [PATCHv2 1/2] arm: socfpga: stratix10: Enable SMMU access thor.thayer at linux.intel.com
2019-12-12  6:30   ` Tan, Ley Foon
2019-12-06 19:47 ` [PATCHv2 2/2] ddr: socfpga: Enable ARM64 Non-Secure SDRAM ECC Access thor.thayer at linux.intel.com
2019-12-12  6:33   ` Tan, Ley Foon
2019-12-07  0:24 ` [PATCHv2 0/2] Intel Stratix10/Agilex Additions Marek Vasut
2019-12-11  3:18   ` Tan, Ley Foon
2019-12-12  6:38   ` Tan, Ley Foon

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.