diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2016-05-22 08:45:30 (GMT) |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2016-05-23 07:27:41 (GMT) |
commit | 0ac8d5e552c5642d97ce71658ecebb273d259221 (patch) | |
tree | 71b9eb9bb9aa6d3befe4fcc4aaf4f54a42a11af8 /arch/x86/dts/galileo.dts | |
parent | bab4b96166037016010238a19c8ab7175386cbc4 (diff) | |
download | u-boot-fsl-qoriq-0ac8d5e552c5642d97ce71658ecebb273d259221.tar.xz |
x86: galileo: Enable CPU driver
Add a cpu node in the device tree and enable CPU driver.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/x86/dts/galileo.dts')
-rw-r--r-- | arch/x86/dts/galileo.dts | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/arch/x86/dts/galileo.dts b/arch/x86/dts/galileo.dts index f784c50..da3cbff 100644 --- a/arch/x86/dts/galileo.dts +++ b/arch/x86/dts/galileo.dts @@ -29,6 +29,18 @@ stdout-path = &pciuart0; }; + cpus { + #address-cells = <1>; + #size-cells = <0>; + + cpu@0 { + device_type = "cpu"; + compatible = "cpu-x86"; + reg = <0>; + intel,apic-id = <0>; + }; + }; + tsc-timer { clock-frequency = <400000000>; }; |