* [PATCH 1/2] ARM: mmu64: setup ttb for EL2 as well @ 2023-11-20 14:44 Sascha Hauer 2023-11-20 14:44 ` [PATCH 2/2] ARM: layerscape: ppa: Fix starting PPA Sascha Hauer 0 siblings, 1 reply; 5+ messages in thread From: Sascha Hauer @ 2023-11-20 14:44 UTC (permalink / raw) To: Barebox List The TF-A is often started before the MMU is initialized. There are some exceptions though. On Layerscape the TF-A (or: PPA in that case) is started while the MMU is running. The PPA is then executed in EL3 and returns in EL2. For this case setup the TTB for EL2 as well so that we have a valid MMU setup when the PPA returns. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de> --- arch/arm/cpu/mmu_64.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/arm/cpu/mmu_64.c b/arch/arm/cpu/mmu_64.c index b718cb1efa..716e717c72 100644 --- a/arch/arm/cpu/mmu_64.c +++ b/arch/arm/cpu/mmu_64.c @@ -297,6 +297,8 @@ void mmu_early_enable(unsigned long membase, unsigned long memsize) el = current_el(); set_ttbr_tcr_mair(el, ttb, calc_tcr(el, BITS_PER_VA), MEMORY_ATTRIBUTES); + if (el == 3) + set_ttbr_tcr_mair(2, ttb, calc_tcr(2, BITS_PER_VA), MEMORY_ATTRIBUTES); memset((void *)ttb, 0, GRANULE_SIZE); -- 2.39.2 ^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 2/2] ARM: layerscape: ppa: Fix starting PPA 2023-11-20 14:44 [PATCH 1/2] ARM: mmu64: setup ttb for EL2 as well Sascha Hauer @ 2023-11-20 14:44 ` Sascha Hauer 2023-11-20 14:54 ` Ahmad Fatoum 0 siblings, 1 reply; 5+ messages in thread From: Sascha Hauer @ 2023-11-20 14:44 UTC (permalink / raw) To: Barebox List With dba1c26f70 we replaced request_sdram_region() for the PPA with reserve_sdram_region(). The effect is that the region is marked as reserved and mapped non executable. While this is desired for EL2, it also has the effect that we can't start the PPA anymore from EL3. Map the region cached/executable to start the PPA, then map it uncached/non executable once we are in EL2. Fixes: dba1c26f70 ("arm: layerscape: ppa: reserve SDRAM region for PPA") Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de> --- arch/arm/mach-layerscape/ppa.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/arch/arm/mach-layerscape/ppa.c b/arch/arm/mach-layerscape/ppa.c index 521e6b89da..43145a7ece 100644 --- a/arch/arm/mach-layerscape/ppa.c +++ b/arch/arm/mach-layerscape/ppa.c @@ -4,6 +4,7 @@ #include <common.h> #include <init.h> +#include <mmu.h> #include <firmware.h> #include <memory.h> #include <linux/sizes.h> @@ -54,17 +55,11 @@ static int ppa_init(void *ppa, size_t ppa_size, void *sec_firmware_addr) int ret; u32 *boot_loc_ptr_l, *boot_loc_ptr_h; struct ccsr_scfg __iomem *scfg = (void *)(LSCH2_SCFG_ADDR); - int el = current_el(); struct fit_handle *fit; void *conf; const void *buf; unsigned long firmware_size; - if (el < 3) { - printf("EL%d, skip ppa init\n", el); - return 0; - } - boot_loc_ptr_l = &scfg->scratchrw[1]; boot_loc_ptr_h = &scfg->scratchrw[0]; @@ -115,6 +110,7 @@ int ls1046a_ppa_init(resource_size_t ppa_start, resource_size_t ppa_size) struct resource *res; void *ppa_fw; size_t ppa_fw_size; + int el = current_el(); int ret; res = reserve_sdram_region("ppa", ppa_start, ppa_size); @@ -126,9 +122,13 @@ int ls1046a_ppa_init(resource_size_t ppa_start, resource_size_t ppa_size) get_builtin_firmware(ppa_ls1046a_bin, &ppa_fw, &ppa_fw_size); - ret = ppa_init(ppa_fw, ppa_fw_size, (void *)ppa_start); - if (ret) - return ret; + if (el == 3) { + remap_range((void *)ppa_start, ppa_size, MAP_CACHED); + ret = ppa_init(ppa_fw, ppa_fw_size, (void *)ppa_start); + remap_range((void *)ppa_start, ppa_size, MAP_UNCACHED); + if (ret) + return ret; + } of_register_fixup(of_fixup_reserved_memory, res); -- 2.39.2 ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 2/2] ARM: layerscape: ppa: Fix starting PPA 2023-11-20 14:44 ` [PATCH 2/2] ARM: layerscape: ppa: Fix starting PPA Sascha Hauer @ 2023-11-20 14:54 ` Ahmad Fatoum 2023-11-20 15:12 ` Sascha Hauer 0 siblings, 1 reply; 5+ messages in thread From: Ahmad Fatoum @ 2023-11-20 14:54 UTC (permalink / raw) To: Sascha Hauer, Barebox List Hello Sascha, On 20.11.23 15:44, Sascha Hauer wrote: > With dba1c26f70 we replaced request_sdram_region() for the PPA with > reserve_sdram_region(). The effect is that the region is marked as > reserved and mapped non executable. While this is desired for EL2, it > also has the effect that we can't start the PPA anymore from EL3. > > Map the region cached/executable to start the PPA, then map it > uncached/non executable once we are in EL2. > > Fixes: dba1c26f70 ("arm: layerscape: ppa: reserve SDRAM region for PPA") > Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de> > --- > arch/arm/mach-layerscape/ppa.c | 18 +++++++++--------- > 1 file changed, 9 insertions(+), 9 deletions(-) > > diff --git a/arch/arm/mach-layerscape/ppa.c b/arch/arm/mach-layerscape/ppa.c > index 521e6b89da..43145a7ece 100644 > --- a/arch/arm/mach-layerscape/ppa.c > +++ b/arch/arm/mach-layerscape/ppa.c > @@ -4,6 +4,7 @@ > > #include <common.h> > #include <init.h> > +#include <mmu.h> > #include <firmware.h> > #include <memory.h> > #include <linux/sizes.h> > @@ -54,17 +55,11 @@ static int ppa_init(void *ppa, size_t ppa_size, void *sec_firmware_addr) > int ret; > u32 *boot_loc_ptr_l, *boot_loc_ptr_h; > struct ccsr_scfg __iomem *scfg = (void *)(LSCH2_SCFG_ADDR); > - int el = current_el(); > struct fit_handle *fit; > void *conf; > const void *buf; > unsigned long firmware_size; > > - if (el < 3) { > - printf("EL%d, skip ppa init\n", el); > - return 0; > - } > - > boot_loc_ptr_l = &scfg->scratchrw[1]; > boot_loc_ptr_h = &scfg->scratchrw[0]; > > @@ -115,6 +110,7 @@ int ls1046a_ppa_init(resource_size_t ppa_start, resource_size_t ppa_size) > struct resource *res; > void *ppa_fw; > size_t ppa_fw_size; > + int el = current_el(); > int ret; > > res = reserve_sdram_region("ppa", ppa_start, ppa_size); > @@ -126,9 +122,13 @@ int ls1046a_ppa_init(resource_size_t ppa_start, resource_size_t ppa_size) > > get_builtin_firmware(ppa_ls1046a_bin, &ppa_fw, &ppa_fw_size); > > - ret = ppa_init(ppa_fw, ppa_fw_size, (void *)ppa_start); > - if (ret) > - return ret; > + if (el == 3) { > + remap_range((void *)ppa_start, ppa_size, MAP_CACHED); > + ret = ppa_init(ppa_fw, ppa_fw_size, (void *)ppa_start); > + remap_range((void *)ppa_start, ppa_size, MAP_UNCACHED); > + if (ret) > + return ret; Isn't this still racy? I think the EL2 mapping should already have the PPA area uncached _before_ jumping into PPA. Cheers, Ahmad > + } > > of_register_fixup(of_fixup_reserved_memory, res); > -- Pengutronix e.K. | | Steuerwalder Str. 21 | http://www.pengutronix.de/ | 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 | Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 | ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 2/2] ARM: layerscape: ppa: Fix starting PPA 2023-11-20 14:54 ` Ahmad Fatoum @ 2023-11-20 15:12 ` Sascha Hauer 2023-11-21 13:42 ` Ahmad Fatoum 0 siblings, 1 reply; 5+ messages in thread From: Sascha Hauer @ 2023-11-20 15:12 UTC (permalink / raw) To: Ahmad Fatoum; +Cc: Barebox List On Mon, Nov 20, 2023 at 03:54:40PM +0100, Ahmad Fatoum wrote: > Hello Sascha, > > On 20.11.23 15:44, Sascha Hauer wrote: > > With dba1c26f70 we replaced request_sdram_region() for the PPA with > > reserve_sdram_region(). The effect is that the region is marked as > > reserved and mapped non executable. While this is desired for EL2, it > > also has the effect that we can't start the PPA anymore from EL3. > > > > Map the region cached/executable to start the PPA, then map it > > uncached/non executable once we are in EL2. > > > > Fixes: dba1c26f70 ("arm: layerscape: ppa: reserve SDRAM region for PPA") > > Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de> > > --- > > arch/arm/mach-layerscape/ppa.c | 18 +++++++++--------- > > 1 file changed, 9 insertions(+), 9 deletions(-) > > > > diff --git a/arch/arm/mach-layerscape/ppa.c b/arch/arm/mach-layerscape/ppa.c > > index 521e6b89da..43145a7ece 100644 > > --- a/arch/arm/mach-layerscape/ppa.c > > +++ b/arch/arm/mach-layerscape/ppa.c > > @@ -4,6 +4,7 @@ > > > > #include <common.h> > > #include <init.h> > > +#include <mmu.h> > > #include <firmware.h> > > #include <memory.h> > > #include <linux/sizes.h> > > @@ -54,17 +55,11 @@ static int ppa_init(void *ppa, size_t ppa_size, void *sec_firmware_addr) > > int ret; > > u32 *boot_loc_ptr_l, *boot_loc_ptr_h; > > struct ccsr_scfg __iomem *scfg = (void *)(LSCH2_SCFG_ADDR); > > - int el = current_el(); > > struct fit_handle *fit; > > void *conf; > > const void *buf; > > unsigned long firmware_size; > > > > - if (el < 3) { > > - printf("EL%d, skip ppa init\n", el); > > - return 0; > > - } > > - > > boot_loc_ptr_l = &scfg->scratchrw[1]; > > boot_loc_ptr_h = &scfg->scratchrw[0]; > > > > @@ -115,6 +110,7 @@ int ls1046a_ppa_init(resource_size_t ppa_start, resource_size_t ppa_size) > > struct resource *res; > > void *ppa_fw; > > size_t ppa_fw_size; > > + int el = current_el(); > > int ret; > > > > res = reserve_sdram_region("ppa", ppa_start, ppa_size); > > @@ -126,9 +122,13 @@ int ls1046a_ppa_init(resource_size_t ppa_start, resource_size_t ppa_size) > > > > get_builtin_firmware(ppa_ls1046a_bin, &ppa_fw, &ppa_fw_size); > > > > - ret = ppa_init(ppa_fw, ppa_fw_size, (void *)ppa_start); > > - if (ret) > > - return ret; > > + if (el == 3) { > > + remap_range((void *)ppa_start, ppa_size, MAP_CACHED); > > + ret = ppa_init(ppa_fw, ppa_fw_size, (void *)ppa_start); > > + remap_range((void *)ppa_start, ppa_size, MAP_UNCACHED); > > + if (ret) > > + return ret; > > Isn't this still racy? I think the EL2 mapping should already have the > PPA area uncached _before_ jumping into PPA. It likely is, but to fix that we would have to create a second set of pagetables and use one for EL3 with PPA executable and another one for EL2 with PPA non executable. As of now this is purely academic anyway as the PPA doesn't protect its SDRAM range in any way, so speculating into it doesn't do any harm. Sascha -- Pengutronix e.K. | | Steuerwalder Str. 21 | http://www.pengutronix.de/ | 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 | Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 | ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 2/2] ARM: layerscape: ppa: Fix starting PPA 2023-11-20 15:12 ` Sascha Hauer @ 2023-11-21 13:42 ` Ahmad Fatoum 0 siblings, 0 replies; 5+ messages in thread From: Ahmad Fatoum @ 2023-11-21 13:42 UTC (permalink / raw) To: Sascha Hauer; +Cc: Barebox List On 20.11.23 16:12, Sascha Hauer wrote: > On Mon, Nov 20, 2023 at 03:54:40PM +0100, Ahmad Fatoum wrote: >> Hello Sascha, >> >> On 20.11.23 15:44, Sascha Hauer wrote: >>> With dba1c26f70 we replaced request_sdram_region() for the PPA with >>> reserve_sdram_region(). The effect is that the region is marked as >>> reserved and mapped non executable. While this is desired for EL2, it >>> also has the effect that we can't start the PPA anymore from EL3. >>> >>> Map the region cached/executable to start the PPA, then map it >>> uncached/non executable once we are in EL2. >>> >>> Fixes: dba1c26f70 ("arm: layerscape: ppa: reserve SDRAM region for PPA") >>> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de> >>> --- >>> arch/arm/mach-layerscape/ppa.c | 18 +++++++++--------- >>> 1 file changed, 9 insertions(+), 9 deletions(-) >>> >>> diff --git a/arch/arm/mach-layerscape/ppa.c b/arch/arm/mach-layerscape/ppa.c >>> index 521e6b89da..43145a7ece 100644 >>> --- a/arch/arm/mach-layerscape/ppa.c >>> +++ b/arch/arm/mach-layerscape/ppa.c >>> @@ -4,6 +4,7 @@ >>> >>> #include <common.h> >>> #include <init.h> >>> +#include <mmu.h> >>> #include <firmware.h> >>> #include <memory.h> >>> #include <linux/sizes.h> >>> @@ -54,17 +55,11 @@ static int ppa_init(void *ppa, size_t ppa_size, void *sec_firmware_addr) >>> int ret; >>> u32 *boot_loc_ptr_l, *boot_loc_ptr_h; >>> struct ccsr_scfg __iomem *scfg = (void *)(LSCH2_SCFG_ADDR); >>> - int el = current_el(); >>> struct fit_handle *fit; >>> void *conf; >>> const void *buf; >>> unsigned long firmware_size; >>> >>> - if (el < 3) { >>> - printf("EL%d, skip ppa init\n", el); >>> - return 0; >>> - } >>> - >>> boot_loc_ptr_l = &scfg->scratchrw[1]; >>> boot_loc_ptr_h = &scfg->scratchrw[0]; >>> >>> @@ -115,6 +110,7 @@ int ls1046a_ppa_init(resource_size_t ppa_start, resource_size_t ppa_size) >>> struct resource *res; >>> void *ppa_fw; >>> size_t ppa_fw_size; >>> + int el = current_el(); >>> int ret; >>> >>> res = reserve_sdram_region("ppa", ppa_start, ppa_size); >>> @@ -126,9 +122,13 @@ int ls1046a_ppa_init(resource_size_t ppa_start, resource_size_t ppa_size) >>> >>> get_builtin_firmware(ppa_ls1046a_bin, &ppa_fw, &ppa_fw_size); >>> >>> - ret = ppa_init(ppa_fw, ppa_fw_size, (void *)ppa_start); >>> - if (ret) >>> - return ret; >>> + if (el == 3) { >>> + remap_range((void *)ppa_start, ppa_size, MAP_CACHED); >>> + ret = ppa_init(ppa_fw, ppa_fw_size, (void *)ppa_start); >>> + remap_range((void *)ppa_start, ppa_size, MAP_UNCACHED); >>> + if (ret) >>> + return ret; >> >> Isn't this still racy? I think the EL2 mapping should already have the >> PPA area uncached _before_ jumping into PPA. > > It likely is, but to fix that we would have to create a second set of > pagetables and use one for EL3 with PPA executable and another one for EL2 > with PPA non executable. > > As of now this is purely academic anyway as the PPA doesn't protect its > SDRAM range in any way, so speculating into it doesn't do any harm. Fair enough. As long as speculation doesn't break anything, I guess we can leave it like this for now. A comment would be nice though. Cheers, Ahmad > > Sascha > -- Pengutronix e.K. | | Steuerwalder Str. 21 | http://www.pengutronix.de/ | 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 | Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 | ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2023-11-21 13:44 UTC | newest] Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed) -- links below jump to the message on this page -- 2023-11-20 14:44 [PATCH 1/2] ARM: mmu64: setup ttb for EL2 as well Sascha Hauer 2023-11-20 14:44 ` [PATCH 2/2] ARM: layerscape: ppa: Fix starting PPA Sascha Hauer 2023-11-20 14:54 ` Ahmad Fatoum 2023-11-20 15:12 ` Sascha Hauer 2023-11-21 13:42 ` Ahmad Fatoum
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox