From: Marc Zyngier <marc.zyngier@arm.com>
To: linux-arm-kernel@lists.infradead.org
Cc: Mark Rutland <mark.rutland@arm.com>
Subject: [BOOTWRAPPER][PATCH] Make GICv3.1 extended ranges available to non-secure
Date: Tue, 23 Jul 2019 12:55:45 +0100 [thread overview]
Message-ID: <20190723115545.1506-1-marc.zyngier@arm.com> (raw)
If we have a GICv3.1-capable system, configure the EPPI/ESPI ranges
to be accessible from the non-secure world.
Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
---
gic-v3.c | 14 ++++++++++++--
1 file changed, 12 insertions(+), 2 deletions(-)
diff --git a/gic-v3.c b/gic-v3.c
index 476f703..4b733ba 100644
--- a/gic-v3.c
+++ b/gic-v3.c
@@ -17,6 +17,8 @@
#define GICD_TYPER 0x4
#define GICD_IGROUP0 0x80
#define GICD_IGRPMOD0 0xd00
+#define GICD_IGROUPR0E 0x1000
+#define GICD_IGRPMODR0E 0x3400
#define GICD_CTLR_EnableGrp0 (1 << 0)
#define GICD_CTLR_EnableGrp1ns (1 << 1)
@@ -57,6 +59,7 @@ void gic_secure_init_primary(void)
* ChildrenAsleep to be 0.
*/
uint32_t waker = raw_readl(gicr_ptr + GICR_WAKER);
+ uint32_t regs;
waker &= ~GICR_WAKER_ProcessorSleep;
raw_writel(waker, gicr_ptr + GICR_WAKER);
dsb(st);
@@ -72,8 +75,11 @@ void gic_secure_init_primary(void)
typer = raw_readl(gicr_ptr + GICR_TYPER);
gicr_ptr += 0x10000; /* Go to SGI_Base */
- raw_writel(~0x0, gicr_ptr + GICR_IGROUP0);
- raw_writel(0x0, gicr_ptr + GICR_IGRPMOD0);
+ regs = 1 + ((typer >> 27) & 0x1f);
+ for (i = 0; i < regs; i++) {
+ raw_writel(~0x0, gicr_ptr + GICR_IGROUP0 + i * 4);
+ raw_writel(0x0, gicr_ptr + GICR_IGRPMOD0 + i * 4);
+ }
/* Next redist */
gicr_ptr += 0x10000;
@@ -87,6 +93,10 @@ void gic_secure_init_primary(void)
raw_writel(~0x0, gicd_base + GICD_IGROUP0 + i * 4);
raw_writel(0x0, gicd_base + GICD_IGRPMOD0 + i * 4);
}
+ for (i = 0; i < ((typer >> 27) & GICD_TYPER_ITLineNumber); i++) {
+ raw_writel(~0x0, gicd_base + GICD_IGROUPR0E + i * 4);
+ raw_writel(0x0, gicd_base + GICD_IGRPMODR0E + i * 4);
+ }
}
void gic_secure_init(void)
--
2.18.0
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
next reply other threads:[~2019-07-23 11:56 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-07-23 11:55 Marc Zyngier [this message]
2019-07-23 14:10 ` [BOOTWRAPPER][PATCH] Make GICv3.1 extended ranges available to non-secure Mark Rutland
2019-07-23 14:28 ` Marc Zyngier
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190723115545.1506-1-marc.zyngier@arm.com \
--to=marc.zyngier@arm.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=mark.rutland@arm.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox