Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Arm Trusted Firmware
Commits
7ec0b590
Commit
7ec0b590
authored
Mar 10, 2014
by
Jon Medhurst
Committed by
Sandrine Bailleux
Jun 04, 2014
Browse files
juno: Initialise architected timer in BL3-1
parent
068d9170
Changes
1
Hide whitespace changes
Inline
Side-by-side
plat/juno/bl31_plat_setup.c
View file @
7ec0b590
...
...
@@ -29,6 +29,8 @@
*/
#include <platform.h>
#include <assert.h>
#include <arch_helpers.h>
/*******************************************************************************
* Declarations of linker defined symbols which will help us find the layout
...
...
@@ -120,9 +122,19 @@ void bl31_early_platform_setup(bl31_args *from_bl2,
******************************************************************************/
void
bl31_platform_setup
()
{
unsigned
int
counter_base_frequency
;
/* Initialize the gic cpu and distributor interfaces */
gic_setup
();
/* Read the frequency from Frequency modes table */
counter_base_frequency
=
mmio_read_32
(
SYS_CNTCTL_BASE
+
CNTFID_OFF
);
/* The first entry of the frequency modes table must not be 0 */
assert
(
counter_base_frequency
!=
0
);
/* Program the counter frequency */
write_cntfrq_el0
(
counter_base_frequency
);
/* Topologies are best known to the platform. */
plat_setup_topology
();
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment