diff options
author | Mark Kettenis <kettenis@openbsd.org> | 2022-01-10 20:58:43 +0100 |
---|---|---|
committer | Jaehoon Chung <jh80.chung@samsung.com> | 2022-01-17 06:56:00 +0900 |
commit | 6034c9140f25b4913d2ccfc1ec8a6a2a5dbdaae5 (patch) | |
tree | 3a326c41ead0f6de5e1a055b7bf8ee33bf5b25e1 | |
parent | c918e2c303f98393b73e638d8553ce6d28886721 (diff) | |
download | u-boot-6034c9140f25b4913d2ccfc1ec8a6a2a5dbdaae5.tar.gz |
arm: dts: apple: Add u-boot,dm-pre-reloc properties
These are necessary to make sure the power domains needed for the
serial console are availble in the pre-relocation phase.
Signed-off-by: Mark Kettenis <kettenis@openbsd.org>
Reviewed-by: Jaehoon Chung <jh80.chung@samsung.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | arch/arm/dts/t8103-j274-u-boot.dtsi | 1 | ||||
-rw-r--r-- | arch/arm/dts/t8103-j293-u-boot.dtsi | 1 | ||||
-rw-r--r-- | arch/arm/dts/t8103-j313-u-boot.dtsi | 1 | ||||
-rw-r--r-- | arch/arm/dts/t8103-j456-u-boot.dtsi | 1 | ||||
-rw-r--r-- | arch/arm/dts/t8103-j457-u-boot.dtsi | 1 | ||||
-rw-r--r-- | arch/arm/dts/t8103-u-boot.dtsi | 25 |
6 files changed, 30 insertions, 0 deletions
diff --git a/arch/arm/dts/t8103-j274-u-boot.dtsi b/arch/arm/dts/t8103-j274-u-boot.dtsi new file mode 100644 index 00000000000..6c8dd5a56f8 --- /dev/null +++ b/arch/arm/dts/t8103-j274-u-boot.dtsi @@ -0,0 +1 @@ +#include "t8103-u-boot.dtsi" diff --git a/arch/arm/dts/t8103-j293-u-boot.dtsi b/arch/arm/dts/t8103-j293-u-boot.dtsi new file mode 100644 index 00000000000..6c8dd5a56f8 --- /dev/null +++ b/arch/arm/dts/t8103-j293-u-boot.dtsi @@ -0,0 +1 @@ +#include "t8103-u-boot.dtsi" diff --git a/arch/arm/dts/t8103-j313-u-boot.dtsi b/arch/arm/dts/t8103-j313-u-boot.dtsi new file mode 100644 index 00000000000..6c8dd5a56f8 --- /dev/null +++ b/arch/arm/dts/t8103-j313-u-boot.dtsi @@ -0,0 +1 @@ +#include "t8103-u-boot.dtsi" diff --git a/arch/arm/dts/t8103-j456-u-boot.dtsi b/arch/arm/dts/t8103-j456-u-boot.dtsi new file mode 100644 index 00000000000..6c8dd5a56f8 --- /dev/null +++ b/arch/arm/dts/t8103-j456-u-boot.dtsi @@ -0,0 +1 @@ +#include "t8103-u-boot.dtsi" diff --git a/arch/arm/dts/t8103-j457-u-boot.dtsi b/arch/arm/dts/t8103-j457-u-boot.dtsi new file mode 100644 index 00000000000..6c8dd5a56f8 --- /dev/null +++ b/arch/arm/dts/t8103-j457-u-boot.dtsi @@ -0,0 +1 @@ +#include "t8103-u-boot.dtsi" diff --git a/arch/arm/dts/t8103-u-boot.dtsi b/arch/arm/dts/t8103-u-boot.dtsi new file mode 100644 index 00000000000..43f552979de --- /dev/null +++ b/arch/arm/dts/t8103-u-boot.dtsi @@ -0,0 +1,25 @@ +// SPDX-License-Identifier: GPL-2.0+ OR MIT + +&serial0 { + u-boot,dm-pre-reloc; +}; + +&pmgr { + u-boot,dm-pre-reloc; +}; + +&ps_sio_busif { + u-boot,dm-pre-reloc; +}; + +&ps_sio { + u-boot,dm-pre-reloc; +}; + +&ps_uart_p { + u-boot,dm-pre-reloc; +}; + +&ps_uart0 { + u-boot,dm-pre-reloc; +}; |