mirror of
https://github.com/CTCaer/switch-l4t-atf.git
synced 2024-11-24 18:29:52 +00:00
2d51b55ee5
Using the /include/ syntax, the include was evaluated by dtc, only after running the preprocessor, therefore the .dtsi files were not preprocessed. This patch adds the #include syntax instead. Evaluating this and preprocessing the files now happens in a single step, done by the C preprocessor. Change-Id: I6d0104b6274316fc736e84973502a4d6c2c9d6e0 Signed-off-by: Balint Dobszay <balint.dobszay@arm.com>
42 lines
420 B
Plaintext
42 lines
420 B
Plaintext
/*
|
|
* Copyright (c) 2019-2020, Arm Limited. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
/dts-v1/;
|
|
|
|
#include "fvp-base-gicv3-psci-common.dtsi"
|
|
|
|
&CPU0 {
|
|
reg = <0x0 0x0>;
|
|
};
|
|
|
|
&CPU1 {
|
|
reg = <0x0 0x1>;
|
|
};
|
|
|
|
&CPU2 {
|
|
reg = <0x0 0x100>;
|
|
};
|
|
|
|
&CPU3 {
|
|
reg = <0x0 0x101>;
|
|
};
|
|
|
|
&CPU4 {
|
|
reg = <0x0 0x200>;
|
|
};
|
|
|
|
&CPU5 {
|
|
reg = <0x0 0x201>;
|
|
};
|
|
|
|
&CPU6 {
|
|
reg = <0x0 0x300>;
|
|
};
|
|
|
|
&CPU7 {
|
|
reg = <0x0 0x301>;
|
|
};
|