mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-24 05:54:08 +00:00
Merge "feat: define memory ranges for tc platform" into integration
This commit is contained in:
commit
a0a4bf488d
1 changed files with 10 additions and 5 deletions
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2020-2021, Arm Limited. All rights reserved.
|
* Copyright (c) 2020-2023, Arm Limited. All rights reserved.
|
||||||
*
|
*
|
||||||
* SPDX-License-Identifier: BSD-3-Clause
|
* SPDX-License-Identifier: BSD-3-Clause
|
||||||
*/
|
*/
|
||||||
|
@ -8,7 +8,7 @@
|
||||||
/ {
|
/ {
|
||||||
compatible = "arm,ffa-core-manifest-1.0";
|
compatible = "arm,ffa-core-manifest-1.0";
|
||||||
#address-cells = <2>;
|
#address-cells = <2>;
|
||||||
#size-cells = <1>;
|
#size-cells = <2>;
|
||||||
|
|
||||||
attribute {
|
attribute {
|
||||||
spmc_id = <0x8000>;
|
spmc_id = <0x8000>;
|
||||||
|
@ -116,9 +116,14 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
/* 32MB of TC_TZC_DRAM1_BASE */
|
memory@0 {
|
||||||
memory@fd000000 {
|
|
||||||
device_type = "memory";
|
device_type = "memory";
|
||||||
reg = <0x0 0xfd000000 0x2000000>;
|
reg = <0x0 0xfd000000 0x0 0x2000000>;
|
||||||
|
};
|
||||||
|
|
||||||
|
memory@1 {
|
||||||
|
device_type = "ns-memory";
|
||||||
|
reg = <0x0 0x80000000 0x0 0x79000000>,
|
||||||
|
<0x80 0x80000000 0x1 0x80000000>;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue