diff options
author | Simon Glass <sjg@chromium.org> | 2015-04-29 22:26:03 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-04-30 16:13:52 -0600 |
commit | 281239ad9dc2a695a53ab34dda44cdbe31c69122 (patch) | |
tree | b5560a2189ec9a431c2f99601536c4efc0640fea /arch/x86 | |
parent | ede9709316f6c4d18d2a3e126879af2816c0b329 (diff) | |
download | u-boot-281239ad9dc2a695a53ab34dda44cdbe31c69122.tar.gz |
x86: Enable multi-core init for Minnowboard MAX
Enable the CPU uclass and Simple Firmware interface for Minnowbaord MAX. This
enables multi-core support in Linux.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/dts/minnowmax.dts | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/arch/x86/dts/minnowmax.dts b/arch/x86/dts/minnowmax.dts index 0233f61417..7103bc5077 100644 --- a/arch/x86/dts/minnowmax.dts +++ b/arch/x86/dts/minnowmax.dts @@ -68,6 +68,26 @@ stdout-path = "/serial"; }; + cpus { + #address-cells = <1>; + #size-cells = <0>; + + cpu@0 { + device_type = "cpu"; + compatible = "intel,baytrail-cpu"; + reg = <0>; + intel,apic-id = <0>; + }; + + cpu@1 { + device_type = "cpu"; + compatible = "intel,baytrail-cpu"; + reg = <1>; + intel,apic-id = <4>; + }; + + }; + spi { #address-cells = <1>; #size-cells = <0>; |