mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH v1 1/1] x86/intel/quark: select COMMON_CLK
@ 2015-03-05 15:24 Andy Shevchenko
  2015-03-05 16:11 ` Ong, Boon Leong
  2015-03-05 16:48 ` [tip:x86/urgent] x86/intel/quark: Select COMMON_CLK tip-bot for Andy Shevchenko
  0 siblings, 2 replies; 3+ messages in thread
From: Andy Shevchenko @ 2015-03-05 15:24 UTC (permalink / raw)
  To: Ong, Boon Leong, Ingo Molnar, Darren Hart, Bryan O'Donoghue,
	x86, linux-kernel
  Cc: Andy Shevchenko

The commit 8bbc2a135b63 (x86/intel/quark: Add Intel Quark platform support)
introduced a minimal support of Intel Quark SoC. That allows to use core parts
of the SoC. However, the SPI, I2C, and GPIO drivers can't be selected by kernel
configuration because they depend on COMMON_CLK. The patch adds a COMMON_CLK
selection to the platfrom definition to allow user choose the drivers.

Fixes: 8bbc2a135b63 (x86/intel/quark: Add Intel Quark platform support)
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
 arch/x86/Kconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig
index c2fb8a8..b7d31ca 100644
--- a/arch/x86/Kconfig
+++ b/arch/x86/Kconfig
@@ -499,6 +499,7 @@ config X86_INTEL_QUARK
 	depends on X86_IO_APIC
 	select IOSF_MBI
 	select INTEL_IMR
+	select COMMON_CLK
 	---help---
 	  Select to include support for Quark X1000 SoC.
 	  Say Y here if you have a Quark based system such as the Arduino
-- 
2.1.4


^ permalink raw reply	[flat|nested] 3+ messages in thread

* RE: [PATCH v1 1/1] x86/intel/quark: select COMMON_CLK
  2015-03-05 15:24 [PATCH v1 1/1] x86/intel/quark: select COMMON_CLK Andy Shevchenko
@ 2015-03-05 16:11 ` Ong, Boon Leong
  2015-03-05 16:48 ` [tip:x86/urgent] x86/intel/quark: Select COMMON_CLK tip-bot for Andy Shevchenko
  1 sibling, 0 replies; 3+ messages in thread
From: Ong, Boon Leong @ 2015-03-05 16:11 UTC (permalink / raw)
  To: Andy Shevchenko, Ingo Molnar, Darren Hart, Bryan O'Donoghue,
	x86, linux-kernel

Yup, this is right. Thanks Andy.

>-----Original Message-----
>From: Andy Shevchenko [mailto:andriy.shevchenko@linux.intel.com]
>Sent: Thursday, March 5, 2015 11:24 PM
>To: Ong, Boon Leong; Ingo Molnar; Darren Hart; Bryan O'Donoghue;
>x86@kernel.org; linux-kernel@vger.kernel.org
>Cc: Andy Shevchenko
>Subject: [PATCH v1 1/1] x86/intel/quark: select COMMON_CLK
>
>The commit 8bbc2a135b63 (x86/intel/quark: Add Intel Quark platform support)
>introduced a minimal support of Intel Quark SoC. That allows to use core parts
>of the SoC. However, the SPI, I2C, and GPIO drivers can't be selected by kernel
>configuration because they depend on COMMON_CLK. The patch adds a
>COMMON_CLK
>selection to the platfrom definition to allow user choose the drivers.
>
>Fixes: 8bbc2a135b63 (x86/intel/quark: Add Intel Quark platform support)
>Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>

>---
> arch/x86/Kconfig | 1 +
> 1 file changed, 1 insertion(+)
>
>diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig
>index c2fb8a8..b7d31ca 100644
>--- a/arch/x86/Kconfig
>+++ b/arch/x86/Kconfig
>@@ -499,6 +499,7 @@ config X86_INTEL_QUARK
> 	depends on X86_IO_APIC
> 	select IOSF_MBI
> 	select INTEL_IMR
>+	select COMMON_CLK
> 	---help---
> 	  Select to include support for Quark X1000 SoC.
> 	  Say Y here if you have a Quark based system such as the Arduino
>--
>2.1.4


^ permalink raw reply	[flat|nested] 3+ messages in thread

* [tip:x86/urgent] x86/intel/quark: Select COMMON_CLK
  2015-03-05 15:24 [PATCH v1 1/1] x86/intel/quark: select COMMON_CLK Andy Shevchenko
  2015-03-05 16:11 ` Ong, Boon Leong
@ 2015-03-05 16:48 ` tip-bot for Andy Shevchenko
  1 sibling, 0 replies; 3+ messages in thread
From: tip-bot for Andy Shevchenko @ 2015-03-05 16:48 UTC (permalink / raw)
  To: linux-tip-commits
  Cc: mingo, andriy.shevchenko, pure.logic, dvhart, boon.leong.ong,
	tglx, linux-kernel, hpa

Commit-ID:  9ab6eb51ef4ad63cb71533d3a4dfb09ea8f69b4c
Gitweb:     http://git.kernel.org/tip/9ab6eb51ef4ad63cb71533d3a4dfb09ea8f69b4c
Author:     Andy Shevchenko <andriy.shevchenko@linux.intel.com>
AuthorDate: Thu, 5 Mar 2015 17:24:04 +0200
Committer:  Ingo Molnar <mingo@kernel.org>
CommitDate: Thu, 5 Mar 2015 17:44:53 +0100

x86/intel/quark: Select COMMON_CLK

The commit 8bbc2a135b63 ("x86/intel/quark: Add Intel Quark
platform support") introduced a minimal support of Intel Quark
SoC. That allows to use core parts of the SoC. However, the SPI,
I2C, and GPIO drivers can't be selected by kernel configuration
because they depend on COMMON_CLK. The patch adds a COMMON_CLK
selection to the platfrom definition to allow user choose the drivers.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-by: Ong, Boon Leong <boon.leong.ong@intel.com>
Cc: Bryan O'Donoghue <pure.logic@nexus-software.ie>
Cc: Darren Hart <dvhart@linux.intel.com>
Fixes: 8bbc2a135b63 ("x86/intel/quark: Add Intel Quark platform support")
Link: http://lkml.kernel.org/r/1425569044-2867-1-git-send-email-andriy.shevchenko@linux.intel.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
---
 arch/x86/Kconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig
index c2fb8a8..b7d31ca 100644
--- a/arch/x86/Kconfig
+++ b/arch/x86/Kconfig
@@ -499,6 +499,7 @@ config X86_INTEL_QUARK
 	depends on X86_IO_APIC
 	select IOSF_MBI
 	select INTEL_IMR
+	select COMMON_CLK
 	---help---
 	  Select to include support for Quark X1000 SoC.
 	  Say Y here if you have a Quark based system such as the Arduino

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-03-05 16:49 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-03-05 15:24 [PATCH v1 1/1] x86/intel/quark: select COMMON_CLK Andy Shevchenko
2015-03-05 16:11 ` Ong, Boon Leong
2015-03-05 16:48 ` [tip:x86/urgent] x86/intel/quark: Select COMMON_CLK tip-bot for Andy Shevchenko

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome