Commit e343bf13 authored by Avinash Mehta's avatar Avinash Mehta
Browse files

A5DS: Change boot address to point to DDR address



Point boot address to DDR location for booting A5DS FPGA
FIP, Kernel and rootfs are sideloaded to DDR
Also move BL2 to higher address in DDR

Change-Id: Ia2a57a0bda776a1a0a96bcd3cfb5c6cd2cf4dc04
Signed-off-by: default avatarAvinash Mehta <avinash.mehta@arm.com>
parent 786890ca
/* /*
* Copyright (c) 2019, Arm Limited. All rights reserved. * Copyright (c) 2019-2020, Arm Limited. All rights reserved.
* *
* SPDX-License-Identifier: BSD-3-Clause * SPDX-License-Identifier: BSD-3-Clause
*/ */
...@@ -23,18 +23,18 @@ ...@@ -23,18 +23,18 @@
#ifdef IMAGE_BL1 #ifdef IMAGE_BL1
const mmap_region_t plat_arm_mmap[] = { const mmap_region_t plat_arm_mmap[] = {
ARM_MAP_SHARED_RAM, ARM_MAP_SHARED_RAM,
MAP_FLASH1_RW,
MAP_PERIPHBASE, MAP_PERIPHBASE,
MAP_A5_PERIPHERALS, MAP_A5_PERIPHERALS,
MAP_BOOT_RW,
{0} {0}
}; };
#endif #endif
#ifdef IMAGE_BL2 #ifdef IMAGE_BL2
const mmap_region_t plat_arm_mmap[] = { const mmap_region_t plat_arm_mmap[] = {
ARM_MAP_SHARED_RAM, ARM_MAP_SHARED_RAM,
MAP_FLASH1_RW,
MAP_PERIPHBASE, MAP_PERIPHBASE,
MAP_A5_PERIPHERALS, MAP_A5_PERIPHERALS,
MAP_BOOT_RW,
ARM_MAP_NS_DRAM1, ARM_MAP_NS_DRAM1,
{0} {0}
}; };
......
/* /*
* Copyright (c) 2019, Arm Limited. All rights reserved. * Copyright (c) 2019-2020, Arm Limited. All rights reserved.
* *
* SPDX-License-Identifier: BSD-3-Clause * SPDX-License-Identifier: BSD-3-Clause
*/ */
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
/* Platform Config */ /* Platform Config */
plat_arm_bl2 { plat_arm_bl2 {
compatible = "arm,tb_fw"; compatible = "arm,tb_fw";
hw_config_addr = <0x0 0x82000000>; hw_config_addr = <0x0 0x83000000>;
hw_config_max_size = <0x01000000>; hw_config_max_size = <0x01000000>;
/* Disable authentication for development */ /* Disable authentication for development */
disable_auth = <0x0>; disable_auth = <0x0>;
......
...@@ -21,14 +21,6 @@ ...@@ -21,14 +21,6 @@
#define ARM_DRAM1_END (ARM_DRAM1_BASE + \ #define ARM_DRAM1_END (ARM_DRAM1_BASE + \
ARM_DRAM1_SIZE - 1) ARM_DRAM1_SIZE - 1)
#define ARM_NS_DRAM1_BASE ARM_DRAM1_BASE
/*
* The last 2MB is meant to be NOLOAD and will not be zero
* initialized.
*/
#define ARM_NS_DRAM1_SIZE (ARM_DRAM1_SIZE - \
0x00200000)
#define SRAM_BASE 0x2000000 #define SRAM_BASE 0x2000000
#define SRAM_SIZE 0x200000 #define SRAM_SIZE 0x200000
...@@ -101,16 +93,22 @@ ...@@ -101,16 +93,22 @@
#define A5DS_PRIMARY_CPU 0x0 #define A5DS_PRIMARY_CPU 0x0
#define FLASH1_BASE UL(0x8000000) #define BOOT_BASE ARM_DRAM1_BASE
#define FLASH1_SIZE UL(0x2800000) #define BOOT_SIZE UL(0x2800000)
#define MAP_FLASH1_RW MAP_REGION_FLAT(FLASH1_BASE,\ #define ARM_NS_DRAM1_BASE (ARM_DRAM1_BASE + BOOT_SIZE)
FLASH1_SIZE, \ /*
MT_DEVICE | MT_RW | MT_SECURE) * The last 2MB is meant to be NOLOAD and will not be zero
* initialized.
*/
#define ARM_NS_DRAM1_SIZE (ARM_DRAM1_SIZE - \
BOOT_SIZE - \
0x00200000)
#define MAP_FLASH1_RO MAP_REGION_FLAT(FLASH1_BASE,\ #define MAP_BOOT_RW MAP_REGION_FLAT( \
FLASH1_SIZE, \ BOOT_BASE, \
MT_RO_DATA | MT_SECURE) BOOT_SIZE, \
MT_DEVICE | MT_RW | MT_SECURE)
#define ARM_MAP_SHARED_RAM MAP_REGION_FLAT( \ #define ARM_MAP_SHARED_RAM MAP_REGION_FLAT( \
A5DS_SHARED_RAM_BASE, \ A5DS_SHARED_RAM_BASE, \
...@@ -122,9 +120,9 @@ ...@@ -122,9 +120,9 @@
ARM_NS_DRAM1_SIZE, \ ARM_NS_DRAM1_SIZE, \
MT_MEMORY | MT_RW | MT_NS) MT_MEMORY | MT_RW | MT_NS)
#define ARM_MAP_SRAM MAP_REGION_FLAT( \ #define ARM_MAP_SRAM MAP_REGION_FLAT( \
SRAM_BASE, \ SRAM_BASE, \
SRAM_SIZE, \ SRAM_SIZE, \
MT_MEMORY | MT_RW | MT_NS) MT_MEMORY | MT_RW | MT_NS)
/* /*
...@@ -300,11 +298,11 @@ ...@@ -300,11 +298,11 @@
#define MAX_IO_HANDLES 4 #define MAX_IO_HANDLES 4
/* Reserve the last block of flash for PSCI MEM PROTECT flag */ /* Reserve the last block of flash for PSCI MEM PROTECT flag */
#define PLAT_ARM_FIP_BASE FLASH1_BASE #define PLAT_ARM_FIP_BASE BOOT_BASE
#define PLAT_ARM_FIP_MAX_SIZE (FLASH1_SIZE - V2M_FLASH_BLOCK_SIZE) #define PLAT_ARM_FIP_MAX_SIZE (BOOT_SIZE - V2M_FLASH_BLOCK_SIZE)
#define PLAT_ARM_NVM_BASE FLASH1_BASE #define PLAT_ARM_NVM_BASE BOOT_BASE
#define PLAT_ARM_NVM_SIZE (FLASH1_SIZE - V2M_FLASH_BLOCK_SIZE) #define PLAT_ARM_NVM_SIZE (BOOT_SIZE - V2M_FLASH_BLOCK_SIZE)
/* /*
* PL011 related constants * PL011 related constants
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment