sw_apps:zynqmp_fsbl: Changed alignment of MMU tables for A53
This enables saving of some OCM space for FSBL. Signed-off-by: Sarat Chand Savitala <saratcha@xilinx.com>
This commit is contained in:
parent
9083a0a512
commit
0133313ae5
1 changed files with 3 additions and 3 deletions
|
@ -198,19 +198,19 @@ SECTIONS
|
|||
*(.gcc_except_table)
|
||||
} > psu_ocm_ram_0_S_AXI_BASEADDR
|
||||
|
||||
.mmu_tbl0 (ALIGN(4096)) : {
|
||||
.mmu_tbl0 (ALIGN(16)) : {
|
||||
__mmu_tbl0_start = .;
|
||||
*(.mmu_tbl0)
|
||||
__mmu_tbl0_end = .;
|
||||
} > psu_ocm_ram_0_S_AXI_BASEADDR
|
||||
|
||||
.mmu_tbl1 (ALIGN(4096)) : {
|
||||
.mmu_tbl1 (ALIGN(2048)) : {
|
||||
__mmu_tbl1_start = .;
|
||||
*(.mmu_tbl1)
|
||||
__mmu_tbl1_end = .;
|
||||
} > psu_ocm_ram_0_S_AXI_BASEADDR
|
||||
|
||||
.mmu_tbl2 (ALIGN(4096)) : {
|
||||
.mmu_tbl2 (ALIGN(2048)) : {
|
||||
__mmu_tbl2_start = .;
|
||||
*(.mmu_tbl2)
|
||||
__mmu_tbl2_end = .;
|
||||
|
|
Loading…
Add table
Reference in a new issue