From 88867c1d96684925027a0ecc9e25c6ea70040cc6 Mon Sep 17 00:00:00 2001 From: Denys Dmytriyenko Date: Mon, 11 Jun 2012 20:44:56 -0400 Subject: extras: move things to extras Move non-essential, outdated, best-effort pieces, as well, as those requiring extra non-standard dependencies besides oe-core. Signed-off-by: Denys Dmytriyenko --- ...e-cpufreq-driver-to-use-the-new-set_rate-.patch | 54 ++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 extras/recipes-kernel/linux/linux-omap/dvfs/0015-OMAP3-Update-cpufreq-driver-to-use-the-new-set_rate-.patch (limited to 'extras/recipes-kernel/linux/linux-omap/dvfs/0015-OMAP3-Update-cpufreq-driver-to-use-the-new-set_rate-.patch') diff --git a/extras/recipes-kernel/linux/linux-omap/dvfs/0015-OMAP3-Update-cpufreq-driver-to-use-the-new-set_rate-.patch b/extras/recipes-kernel/linux/linux-omap/dvfs/0015-OMAP3-Update-cpufreq-driver-to-use-the-new-set_rate-.patch new file mode 100644 index 00000000..4b9ff5d8 --- /dev/null +++ b/extras/recipes-kernel/linux/linux-omap/dvfs/0015-OMAP3-Update-cpufreq-driver-to-use-the-new-set_rate-.patch @@ -0,0 +1,54 @@ +From d8fae1dcedb636a37096ee92e6b81b112d5f32a5 Mon Sep 17 00:00:00 2001 +From: Thara Gopinath +Date: Fri, 2 Jul 2010 13:07:49 +0530 +Subject: [PATCH 15/20] OMAP3: Update cpufreq driver to use the new set_rate API + +This patch updates the cpufreq driver to use the device +set rate API to scale the mpu frequency for OMAP3. + +Signed-off-by: Thara Gopinath +--- + arch/arm/plat-omap/cpu-omap.c | 11 ++++------- + 1 files changed, 4 insertions(+), 7 deletions(-) + +diff --git a/arch/arm/plat-omap/cpu-omap.c b/arch/arm/plat-omap/cpu-omap.c +index 671e4b9..71777db 100644 +--- a/arch/arm/plat-omap/cpu-omap.c ++++ b/arch/arm/plat-omap/cpu-omap.c +@@ -31,10 +31,7 @@ + #include + #include + #include +- +-#if defined(CONFIG_ARCH_OMAP3) && !defined(CONFIG_OMAP_PM_NONE) +-#include +-#endif ++#include + + #define VERY_HI_RATE 900000000 + +@@ -88,7 +85,7 @@ static int omap_target(struct cpufreq_policy *policy, + #ifdef CONFIG_ARCH_OMAP1 + struct cpufreq_freqs freqs; + #endif +-#if defined(CONFIG_ARCH_OMAP3) && !defined(CONFIG_OMAP_PM_NONE) ++#if defined(CONFIG_ARCH_OMAP3) + unsigned long freq; + struct device *mpu_dev = omap2_get_mpuss_device(); + #endif +@@ -115,10 +112,10 @@ static int omap_target(struct cpufreq_policy *policy, + #endif + ret = clk_set_rate(mpu_clk, freqs.new * 1000); + cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE); +-#elif defined(CONFIG_ARCH_OMAP3) && !defined(CONFIG_OMAP_PM_NONE) ++#elif defined(CONFIG_ARCH_OMAP3) + freq = target_freq * 1000; + if (opp_find_freq_ceil(mpu_dev, &freq)) +- omap_pm_cpu_set_freq(freq); ++ omap_device_scale(mpu_dev, mpu_dev, freq); + #endif + return ret; + } +-- +1.6.6.1 + -- cgit v1.2.3-54-g00ecf