Skip to content

Commit

Permalink
x86: Enable multi-core init for Minnowboard MAX
Browse files Browse the repository at this point in the history
Enable the CPU uclass and Simple Firmware interface for Minnowbaord MAX. This
enables multi-core support in Linux.

Signed-off-by: Simon Glass <[email protected]>
Reviewed-by: Bin Meng <[email protected]>
  • Loading branch information
sjg20 committed Apr 30, 2015
1 parent ede9709 commit 281239a
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
20 changes: 20 additions & 0 deletions arch/x86/dts/minnowmax.dts
Original file line number Diff line number Diff line change
Expand Up @@ -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>;
Expand Down
4 changes: 4 additions & 0 deletions configs/minnowmax_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -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 comments on commit 281239a

Please sign in to comment.