diff options
author | Simon Glass | 2019-08-24 07:23:07 -0600 |
---|---|---|
committer | Simon Glass | 2019-10-15 08:40:02 -0600 |
commit | ea0fff929b3e5337c5fcc61c8123659de81eff4f (patch) | |
tree | a8251335dae3f875d8a1fbf13293268bd56544df /tools/binman/test/152_intel_fsp_m.dts | |
parent | b87064c2496785dde9e33fcdf84175d64163db57 (diff) |
binman: Add support for Intel FSP meminit
The Intel FSP supports initialising memory early during boot using a binary
blob called 'fspm'. Add support for this.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/binman/test/152_intel_fsp_m.dts')
-rw-r--r-- | tools/binman/test/152_intel_fsp_m.dts | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tools/binman/test/152_intel_fsp_m.dts b/tools/binman/test/152_intel_fsp_m.dts new file mode 100644 index 00000000000..b6010f31c2b --- /dev/null +++ b/tools/binman/test/152_intel_fsp_m.dts @@ -0,0 +1,14 @@ +/dts-v1/; + +/ { + #address-cells = <1>; + #size-cells = <1>; + + binman { + size = <16>; + + intel-fsp-m { + filename = "fsp_m.bin"; + }; + }; +}; |