aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSandrine Bailleux <sandrine.bailleux@arm.com>2014-06-03 11:53:17 +0100
committerAchin Gupta <achin.gupta@arm.com>2014-06-08 21:13:14 +0100
commite9e0b053ce756fa60afaedfa9eeb963a8aa87af3 (patch)
tree4ac42670e1b853d7af17da227457f137687dbeae
parent1ba3c3cd58709761341ca9c929a4d100b1746add (diff)
downloadtrusted-firmware-a-0.4-Juno-0.5-rc0.tar.gz
Juno: Enable non-secure accesses to the system timerv0.4-Juno-0.5-rc0v0.4-Juno-0.4-rc0
This patch programs the CNTCTLBase.CNTNSAR to give non-secure access to timer frame 1. It also programs the CNTCTLBase.CNTACR1 to give access to all the timer registers in this frame. Change-Id: Ia10c9572a70bd5910031de1994116bb9314efd80 Conflicts: plat/juno/bl31_plat_setup.c plat/juno/platform.h
-rw-r--r--plat/juno/bl31_plat_setup.c14
-rw-r--r--plat/juno/juno_def.h2
2 files changed, 16 insertions, 0 deletions
diff --git a/plat/juno/bl31_plat_setup.c b/plat/juno/bl31_plat_setup.c
index 2eac0fb54d..9489804dde 100644
--- a/plat/juno/bl31_plat_setup.c
+++ b/plat/juno/bl31_plat_setup.c
@@ -136,11 +136,25 @@ void bl31_early_platform_setup(bl31_params_t *from_bl2,
******************************************************************************/
void bl31_platform_setup(void)
{
+ unsigned int reg_val;
+
mhu_secure_init();
/* Initialize the gic cpu and distributor interfaces */
gic_setup();
+ /* Enable and initialize the System level generic timer */
+ mmio_write_32(SYS_CNTCTL_BASE + CNTCR_OFF, CNTCR_FCREQ(0) | CNTCR_EN);
+
+ /* Allow access to the System counter timer module */
+ reg_val = (1 << CNTACR_RPCT_SHIFT) | (1 << CNTACR_RVCT_SHIFT);
+ reg_val |= (1 << CNTACR_RFRQ_SHIFT) | (1 << CNTACR_RVOFF_SHIFT);
+ reg_val |= (1 << CNTACR_RWVT_SHIFT) | (1 << CNTACR_RWPT_SHIFT);
+ mmio_write_32(SYS_TIMCTL_BASE + CNTACR_BASE(1), reg_val);
+
+ reg_val = (1 << CNTNSAR_NS_SHIFT(1));
+ mmio_write_32(SYS_TIMCTL_BASE + CNTNSAR, reg_val);
+
/* Topologies are best known to the platform. */
plat_setup_topology();
}
diff --git a/plat/juno/juno_def.h b/plat/juno/juno_def.h
index 6b3ba577b4..96e16f0c98 100644
--- a/plat/juno/juno_def.h
+++ b/plat/juno/juno_def.h
@@ -75,6 +75,8 @@
/* Memory mapped Generic timer interfaces */
#define SYS_CNTCTL_BASE 0x2a430000
+#define SYS_CNTREAD_BASE 0x2a800000
+#define SYS_TIMCTL_BASE 0x2a810000
/* V2M motherboard system registers & offsets */
#define VE_SYSREGS_BASE 0x1c010000