diff options
author | Jens Wiklander <jens.wiklander@linaro.org> | 2018-09-25 16:40:16 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-10-07 10:48:26 -0400 |
commit | fa830ae1e47378c734358c95918c72b5bc4c3c66 (patch) | |
tree | 7b8b3c9942fc805a4f9f04b7959d75597a068629 | |
parent | 1cc8cc4e675e32cde76487292c8bace5fa927eee (diff) | |
download | u-boot-fa830ae1e47378c734358c95918c72b5bc4c3c66.zip u-boot-fa830ae1e47378c734358c95918c72b5bc4c3c66.tar.gz u-boot-fa830ae1e47378c734358c95918c72b5bc4c3c66.tar.bz2 |
sandbox: dt: add sandbox_tee node
Adds a sandbox_tee node to enable the sandbox tee driver in all the
sandbox dts files.
Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Jens Wiklander <jens.wiklander@linaro.org>
-rw-r--r-- | arch/sandbox/dts/sandbox.dts | 4 | ||||
-rw-r--r-- | arch/sandbox/dts/sandbox64.dts | 4 | ||||
-rw-r--r-- | arch/sandbox/dts/test.dts | 4 |
3 files changed, 12 insertions, 0 deletions
diff --git a/arch/sandbox/dts/sandbox.dts b/arch/sandbox/dts/sandbox.dts index 1aa0f8e..48db781 100644 --- a/arch/sandbox/dts/sandbox.dts +++ b/arch/sandbox/dts/sandbox.dts @@ -342,6 +342,10 @@ status = "okay"; }; }; + + sandbox_tee { + compatible = "sandbox,tee"; + }; }; #include "cros-ec-keyboard.dtsi" diff --git a/arch/sandbox/dts/sandbox64.dts b/arch/sandbox/dts/sandbox64.dts index 9e65d2f..0e32fda 100644 --- a/arch/sandbox/dts/sandbox64.dts +++ b/arch/sandbox/dts/sandbox64.dts @@ -311,6 +311,10 @@ }; }; }; + + sandbox_tee { + compatible = "sandbox,tee"; + }; }; #include "cros-ec-keyboard.dtsi" diff --git a/arch/sandbox/dts/test.dts b/arch/sandbox/dts/test.dts index 491f889..ad94901 100644 --- a/arch/sandbox/dts/test.dts +++ b/arch/sandbox/dts/test.dts @@ -657,6 +657,10 @@ board { compatible = "sandbox,board_sandbox"; }; + + sandbox_tee { + compatible = "sandbox,tee"; + }; }; #include "sandbox_pmic.dtsi" |