Skip to content
Snippets Groups Projects
Commit 281239ad authored by Simon Glass's avatar Simon Glass
Browse files

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: default avatarSimon Glass <sjg@chromium.org>
Reviewed-by: default avatarBin Meng <bmeng.cn@gmail.com>
parent ede97093
No related branches found
No related tags found
No related merge requests found
......@@ -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>;
......
......@@ -8,3 +8,7 @@ CONFIG_FRAMEBUFFER_SET_VESA_MODE=y
CONFIG_FRAMEBUFFER_VESA_MODE_11A=y
CONFIG_MMCONF_BASE_ADDRESS=0xe0000000
CONFIG_HAVE_INTEL_ME=y
CONFIG_GENERATE_SFI_TABLE=y
CONFIG_CPU=y
CONFIG_CMD_CPU=y
CONFIG_SMP=y
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment