diff options
Diffstat (limited to 'plat/fvp/bl1_plat_setup.c')
-rw-r--r-- | plat/fvp/bl1_plat_setup.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plat/fvp/bl1_plat_setup.c b/plat/fvp/bl1_plat_setup.c index 428b1b32..3daa4801 100644 --- a/plat/fvp/bl1_plat_setup.c +++ b/plat/fvp/bl1_plat_setup.c @@ -110,6 +110,9 @@ void bl1_early_platform_setup(void) ******************************************************************************/ void bl1_platform_setup(void) { + /* Initialise the IO layer and register platform IO devices */ + io_setup(); + /* Enable and initialize the System level generic timer */ mmio_write_32(SYS_CNTCTL_BASE + CNTCR_OFF, CNTCR_EN); @@ -119,6 +122,7 @@ void bl1_platform_setup(void) return; } + /******************************************************************************* * Perform the very early platform specific architecture setup here. At the * moment this only does basic initialization. Later architectural setup |