Message ID | 4DE6977E.5080107@samsung.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Wed, Jun 01, 2011 at 12:48:14PM -0700, Kukjin Kim wrote: > Dave, could you please see below? If you're ok, will submit remained > others for Samsung cpufreq drivers. I'm ok with the principle of the patch, though it doesn't seem to include any driver movement, so just applying this will break the compile. (If it happens in another patch, they should really go together to not break bisecting) Dave
On 06/01/11 12:54, Dave Jones wrote: > On Wed, Jun 01, 2011 at 12:48:14PM -0700, Kukjin Kim wrote: > > > Dave, could you please see below? If you're ok, will submit remained > > others for Samsung cpufreq drivers. > > I'm ok with the principle of the patch, though it doesn't seem to include > any driver movement, so just applying this will break the compile. > (If it happens in another patch, they should really go together to > not break bisecting) > Hi Dave, OK, will submit others which include moving cpufreq driver soon. If you don't mind I will make some branch to merge in both, my tree and yours. Thanks. Best regards, Kgene. -- Kukjin Kim <kgene.kim@samsung.com>, Senior Engineer, SW Solution Development Team, Samsung Electronics Co., Ltd.
diff --git a/drivers/cpufreq/Kconfig b/drivers/cpufreq/Kconfig index 9fb8485..e898215 100644 --- a/drivers/cpufreq/Kconfig +++ b/drivers/cpufreq/Kconfig @@ -184,5 +184,10 @@ depends on X86 source "drivers/cpufreq/Kconfig.x86" endmenu +menu "ARM CPU frequency scaling drivers" +depends on ARM +source "drivers/cpufreq/Kconfig.arm" +endmenu + endif endmenu diff --git a/drivers/cpufreq/Kconfig.arm b/drivers/cpufreq/Kconfig.arm new file mode 100644 index 0000000..f2fc3a4 --- /dev/null +++ b/drivers/cpufreq/Kconfig.arm @@ -0,0 +1,21 @@ +# +# ARM CPU Frequency scaling drivers +# + +config ARM_S5PV210_CPUFREQ + bool "Samsung S5PV210 and S5PC110" + depends on CPU_S5PV210 + ---help--- + This adds the CPUFreq driver for Samsung S5PV210 and + S5PC110 SoCs. + + If in doubt, say N. + +config ARM_EXYNOS4210_CPUFREQ + bool "Samsung EXYNOS4210" + depends on CPU_EXYNOS4210 + ---help--- + This adds the CPUFreq driver for Samsung EXYNOS4210 + SoC (S5PV310 or S5PC210). + + If in doubt, say N. diff --git a/drivers/cpufreq/Makefile b/drivers/cpufreq/Makefile index e2fc2d2..864a27c 100644 --- a/drivers/cpufreq/Makefile +++ b/drivers/cpufreq/Makefile @@ -41,3 +41,5 @@ obj-$(CONFIG_X86_CPUFREQ_NFORCE2) += cpufreq-nforce2.o # ARM SoC drivers obj-$(CONFIG_UX500_SOC_DB8500) += db8500-cpufreq.o +obj-$(CONFIG_ARM_S5PV210_CPUFREQ) += s5pv210-cpufreq.o +obj-$(CONFIG_ARM_EXYNOS4210_CPUFREQ) += exynos4210-cpufreq.o