diff mbox series

[v4,06/17] x86: apl: Use the clock driver

Message ID 20200206165505.113435-7-sjg@chromium.org
State Accepted
Commit 659252e7def2be650cc947df850184a3f8fcab3c
Headers show
Series x86: coral: Add support for Cr50 | expand

Commit Message

Simon Glass Feb. 6, 2020, 4:54 p.m. UTC
Enable the Intel clock driver and modify coral's device tree to use it.

Signed-off-by: Simon Glass <sjg at chromium.org>
Reviewed-by: Bin Meng <bmeng.cn at gmail.com>
---

Changes in v4: None
Changes in v3: None
Changes in v2:
- Move intel-clock.h inclusion to the correct patch

 arch/x86/cpu/apollolake/Kconfig   | 3 +++
 arch/x86/dts/chromebook_coral.dts | 5 +++++
 2 files changed, 8 insertions(+)
diff mbox series

Patch

diff --git a/arch/x86/cpu/apollolake/Kconfig b/arch/x86/cpu/apollolake/Kconfig
index 145b8cbdf5..8a7481555e 100644
--- a/arch/x86/cpu/apollolake/Kconfig
+++ b/arch/x86/cpu/apollolake/Kconfig
@@ -41,6 +41,9 @@  config INTEL_APOLLOLAKE
 	imply SMP
 	imply HAVE_ITSS
 	imply HAVE_P2SB
+	imply CLK
+	imply CMD_CLK
+	imply CLK_INTEL
 
 if INTEL_APOLLOLAKE
 
diff --git a/arch/x86/dts/chromebook_coral.dts b/arch/x86/dts/chromebook_coral.dts
index a1820fa187..a4a9e949e6 100644
--- a/arch/x86/dts/chromebook_coral.dts
+++ b/arch/x86/dts/chromebook_coral.dts
@@ -39,6 +39,11 @@ 
 		stdout-path = &serial;
 	};
 
+	clk: clock {
+		compatible = "intel,apl-clk";
+		#clock-cells = <1>;
+	};
+
 	cpus {
 		u-boot,dm-pre-reloc;
 		#address-cells = <1>;