* [PATCH 0/3] dspbridge-pm patches
@ 2010-01-16 2:01 Omar Ramirez Luna
2010-01-16 2:01 ` [PATCH 1/3] DSPBRIDGE: Fix header locations mach to plat Omar Ramirez Luna
0 siblings, 1 reply; 10+ messages in thread
From: Omar Ramirez Luna @ 2010-01-16 2:01 UTC (permalink / raw)
To: linux-omap
Cc: Ameya Palande, Hiroshi Doyu, Felipe Contreras, Nishanth Menon,
Omar Ramirez Luna
This set of patches is required to compile dspbridge branch against
pm branch.
Current set fixes:
- compilation issues due to header migration from mach to plat.
- Bridge DVFS migration to cpufreq_register_notifier.
- Fix initializaton of platform data DVFS functions because of EXPORT_SYMBOL
removal.
dspbridge-pm is currently based on pm-2.6.32.
Fernando Guzman Lugo (1):
DSPBRIDGE: change to cpufreq_register_notifier for OPP changes
Omar Ramirez Luna (2):
DSPBRIDGE: Fix header locations mach to plat
DSPBRIDGE: Use dspbridge to initialize platform data
arch/arm/mach-omap2/Makefile | 4 ++-
arch/arm/mach-omap2/dspbridge.c | 2 +-
arch/arm/plat-omap/include/dspbridge/host_os.h | 2 +-
drivers/dsp/bridge/Kconfig | 2 +-
drivers/dsp/bridge/rmgr/drv_interface.c | 25 ++++++++++++++---------
drivers/dsp/bridge/wmd/tiomap3430.c | 2 +-
6 files changed, 22 insertions(+), 15 deletions(-)
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH 1/3] DSPBRIDGE: Fix header locations mach to plat
2010-01-16 2:01 [PATCH 0/3] dspbridge-pm patches Omar Ramirez Luna
@ 2010-01-16 2:01 ` Omar Ramirez Luna
2010-01-16 2:01 ` [PATCH 2/3] DSPBRIDGE: change to cpufreq_register_notifier for OPP changes Omar Ramirez Luna
2010-01-18 9:55 ` [PATCH 1/3] DSPBRIDGE: Fix header locations mach to plat Ameya Palande
0 siblings, 2 replies; 10+ messages in thread
From: Omar Ramirez Luna @ 2010-01-16 2:01 UTC (permalink / raw)
To: linux-omap
Cc: Ameya Palande, Hiroshi Doyu, Felipe Contreras, Nishanth Menon,
Omar Ramirez Luna
Fix header locations, replaced mach to plat
Signed-off-by: Omar Ramirez Luna <omar.ramirez@ti.com>
---
arch/arm/mach-omap2/dspbridge.c | 2 +-
arch/arm/plat-omap/include/dspbridge/host_os.h | 2 +-
drivers/dsp/bridge/wmd/tiomap3430.c | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/arch/arm/mach-omap2/dspbridge.c b/arch/arm/mach-omap2/dspbridge.c
index ea109a3..4150896 100644
--- a/arch/arm/mach-omap2/dspbridge.c
+++ b/arch/arm/mach-omap2/dspbridge.c
@@ -14,7 +14,7 @@
#include <linux/platform_device.h>
#ifdef CONFIG_BRIDGE_DVFS
-#include <mach/omap-pm.h>
+#include <plat/omap-pm.h>
#endif
#include <dspbridge/host_os.h>
diff --git a/arch/arm/plat-omap/include/dspbridge/host_os.h b/arch/arm/plat-omap/include/dspbridge/host_os.h
index 6fe1462..74cf6d4 100644
--- a/arch/arm/plat-omap/include/dspbridge/host_os.h
+++ b/arch/arm/plat-omap/include/dspbridge/host_os.h
@@ -54,7 +54,7 @@
#include <linux/ioport.h>
#include <linux/platform_device.h>
#include <dspbridge/dbtype.h>
-#include <mach/clock.h>
+#include <plat/clock.h>
#include <linux/clk.h>
#include <linux/pagemap.h>
#include <asm/cacheflush.h>
diff --git a/drivers/dsp/bridge/wmd/tiomap3430.c b/drivers/dsp/bridge/wmd/tiomap3430.c
index 7138396..b123707 100644
--- a/drivers/dsp/bridge/wmd/tiomap3430.c
+++ b/drivers/dsp/bridge/wmd/tiomap3430.c
@@ -34,7 +34,7 @@
#include <mach-omap2/cm.h>
#include <mach-omap2/prm-regbits-34xx.h>
#include <mach-omap2/cm-regbits-34xx.h>
-#include <mach/control.h>
+#include <plat/control.h>
/* ----------------------------------- DSP/BIOS Bridge */
#include <dspbridge/std.h>
--
1.6.2.4
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 2/3] DSPBRIDGE: change to cpufreq_register_notifier for OPP changes
2010-01-16 2:01 ` [PATCH 1/3] DSPBRIDGE: Fix header locations mach to plat Omar Ramirez Luna
@ 2010-01-16 2:01 ` Omar Ramirez Luna
2010-01-16 2:01 ` [PATCH 3/3] DSPBRIDGE: Use dspbridge to initialize platform data Omar Ramirez Luna
2010-01-18 10:20 ` [PATCH 2/3] DSPBRIDGE: change to cpufreq_register_notifier for OPP changes Ameya Palande
2010-01-18 9:55 ` [PATCH 1/3] DSPBRIDGE: Fix header locations mach to plat Ameya Palande
1 sibling, 2 replies; 10+ messages in thread
From: Omar Ramirez Luna @ 2010-01-16 2:01 UTC (permalink / raw)
To: linux-omap
Cc: Ameya Palande, Hiroshi Doyu, Felipe Contreras, Nishanth Menon,
Fernando Guzman Lugo
From: Fernando Guzman Lugo <x0095840@ti.com>
This patch changes clk_notifier_unregister with
cpufreq_unregister_notifier, which is used for OPP change
notifications
Signed-off-by: Fernando Guzman Lugo <x0095840@ti.com>
---
drivers/dsp/bridge/Kconfig | 2 +-
drivers/dsp/bridge/rmgr/drv_interface.c | 25 +++++++++++++++----------
2 files changed, 16 insertions(+), 11 deletions(-)
diff --git a/drivers/dsp/bridge/Kconfig b/drivers/dsp/bridge/Kconfig
index e494f02..ea639e3 100644
--- a/drivers/dsp/bridge/Kconfig
+++ b/drivers/dsp/bridge/Kconfig
@@ -13,7 +13,7 @@ menuconfig MPU_BRIDGE
config BRIDGE_DVFS
bool "Enable Bridge Dynamic Voltage and Frequency Scaling (DVFS)"
- depends on MPU_BRIDGE && OMAP_PM_SRF
+ depends on MPU_BRIDGE && OMAP_PM_SRF && CPU_FREQ
default n
help
DVFS allows DSP Bridge to initiate the operating point change to
diff --git a/drivers/dsp/bridge/rmgr/drv_interface.c b/drivers/dsp/bridge/rmgr/drv_interface.c
index 8fce70c..19682b5 100644
--- a/drivers/dsp/bridge/rmgr/drv_interface.c
+++ b/drivers/dsp/bridge/rmgr/drv_interface.c
@@ -236,15 +236,18 @@ u32 vdd1_dsp_freq[6][4] = {
};
#ifdef CONFIG_BRIDGE_DVFS
-static int dspbridge_post_scale(struct notifier_block *op, unsigned long level,
- void *ptr)
+static int dspbridge_scale_notification(struct notifier_block *op,
+ unsigned long val, void *ptr)
{
- PWR_PM_PostScale(PRCM_VDD1, level);
+ struct dspbridge_platform_data *pdata =
+ omap_dspbridge_dev->dev.platform_data;
+ if (CPUFREQ_POSTCHANGE == val && pdata->dsp_get_opp)
+ PWR_PM_PostScale(PRCM_VDD1, pdata->dsp_get_opp());
return 0;
}
static struct notifier_block iva_clk_notifier = {
- .notifier_call = dspbridge_post_scale,
+ .notifier_call = dspbridge_scale_notification,
NULL,
};
#endif
@@ -380,12 +383,13 @@ static int __devinit omap34xx_bridge_probe(struct platform_device *pdev)
GT_0trace(driverTrace, GT_7CLASS,
"clk_get PASS to get iva2_ck \n");
}
- if (!clk_notifier_register(clk_handle, &iva_clk_notifier)) {
+ if (!cpufreq_register_notifier(&iva_clk_notifier,
+ CPUFREQ_TRANSITION_NOTIFIER)) {
GT_0trace(driverTrace, GT_7CLASS,
- "clk_notifier_register PASS for iva2_ck \n");
+ "cpufreq_register_notifier PASS for iva2_ck\n");
} else {
GT_0trace(driverTrace, GT_7CLASS,
- "clk_notifier_register FAIL for iva2_ck \n");
+ "cpufreq_register_notifier FAIL for iva2_ck\n");
}
#endif
driverContext = DSP_Init(&initStatus);
@@ -429,12 +433,13 @@ static int __devexit omap34xx_bridge_remove(struct platform_device *pdev)
goto func_cont;
#ifdef CONFIG_BRIDGE_DVFS
- if (!clk_notifier_unregister(clk_handle, &iva_clk_notifier)) {
+ if (!cpufreq_unregister_notifier(&iva_clk_notifier,
+ CPUFREQ_TRANSITION_NOTIFIER)) {
GT_0trace(driverTrace, GT_7CLASS,
- "clk_notifier_unregister PASS for iva2_ck \n");
+ "cpufreq_unregister_notifier PASS for iva2_ck\n");
} else {
GT_0trace(driverTrace, GT_7CLASS,
- "clk_notifier_unregister FAILED for iva2_ck \n");
+ "cpufreq_unregister_notifier FAILED for iva2_ck\n");
}
#endif /* #ifdef CONFIG_BRIDGE_DVFS */
--
1.6.2.4
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 3/3] DSPBRIDGE: Use dspbridge to initialize platform data
2010-01-16 2:01 ` [PATCH 2/3] DSPBRIDGE: change to cpufreq_register_notifier for OPP changes Omar Ramirez Luna
@ 2010-01-16 2:01 ` Omar Ramirez Luna
2010-01-18 10:32 ` Ameya Palande
2010-01-18 10:20 ` [PATCH 2/3] DSPBRIDGE: change to cpufreq_register_notifier for OPP changes Ameya Palande
1 sibling, 1 reply; 10+ messages in thread
From: Omar Ramirez Luna @ 2010-01-16 2:01 UTC (permalink / raw)
To: linux-omap
Cc: Ameya Palande, Hiroshi Doyu, Felipe Contreras, Nishanth Menon,
Omar Ramirez Luna
Include dspbridge compilation whenever bridge driver is selected to
be compiled, either as a module or part of the kernel. This will
initialize platform data specific PM functions.
Signed-off-by: Omar Ramirez Luna <omar.ramirez@ti.com>
---
arch/arm/mach-omap2/Makefile | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/arch/arm/mach-omap2/Makefile b/arch/arm/mach-omap2/Makefile
index a37c713..1693c03 100644
--- a/arch/arm/mach-omap2/Makefile
+++ b/arch/arm/mach-omap2/Makefile
@@ -57,7 +57,9 @@ obj-$(CONFIG_OMAP_IOMMU) += $(iommu-y)
# Debobs
obj-$(CONFIG_OMAP3_DEBOBS) += debobs.o
-obj-$(CONFIG_MPU_BRIDGE) += dspbridge.o
+ifneq ($(CONFIG_MPU_BRIDGE),)
+obj-y += dspbridge.o
+endif
# Specific board support
obj-$(CONFIG_MACH_OMAP_GENERIC) += board-generic.o
--
1.6.2.4
^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH 1/3] DSPBRIDGE: Fix header locations mach to plat
2010-01-16 2:01 ` [PATCH 1/3] DSPBRIDGE: Fix header locations mach to plat Omar Ramirez Luna
2010-01-16 2:01 ` [PATCH 2/3] DSPBRIDGE: change to cpufreq_register_notifier for OPP changes Omar Ramirez Luna
@ 2010-01-18 9:55 ` Ameya Palande
2010-01-18 18:08 ` Ramirez Luna, Omar
1 sibling, 1 reply; 10+ messages in thread
From: Ameya Palande @ 2010-01-18 9:55 UTC (permalink / raw)
To: ext Omar Ramirez Luna
Cc: linux-omap, Doyu Hiroshi (Nokia-D/Helsinki),
Contreras Felipe (Nokia-D/Helsinki), Nishanth Menon
On Sat, 2010-01-16 at 03:01 +0100, ext Omar Ramirez Luna wrote:
> Fix header locations, replaced mach to plat
>
> Signed-off-by: Omar Ramirez Luna <omar.ramirez@ti.com>
> ---
> arch/arm/mach-omap2/dspbridge.c | 2 +-
> arch/arm/plat-omap/include/dspbridge/host_os.h | 2 +-
> drivers/dsp/bridge/wmd/tiomap3430.c | 2 +-
> 3 files changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/arch/arm/mach-omap2/dspbridge.c b/arch/arm/mach-omap2/dspbridge.c
> index ea109a3..4150896 100644
> --- a/arch/arm/mach-omap2/dspbridge.c
> +++ b/arch/arm/mach-omap2/dspbridge.c
> @@ -14,7 +14,7 @@
> #include <linux/platform_device.h>
>
> #ifdef CONFIG_BRIDGE_DVFS
> -#include <mach/omap-pm.h>
> +#include <plat/omap-pm.h>
> #endif
>
> #include <dspbridge/host_os.h>
> diff --git a/arch/arm/plat-omap/include/dspbridge/host_os.h b/arch/arm/plat-omap/include/dspbridge/host_os.h
> index 6fe1462..74cf6d4 100644
> --- a/arch/arm/plat-omap/include/dspbridge/host_os.h
> +++ b/arch/arm/plat-omap/include/dspbridge/host_os.h
> @@ -54,7 +54,7 @@
> #include <linux/ioport.h>
> #include <linux/platform_device.h>
> #include <dspbridge/dbtype.h>
> -#include <mach/clock.h>
> +#include <plat/clock.h>
> #include <linux/clk.h>
> #include <linux/pagemap.h>
> #include <asm/cacheflush.h>
> diff --git a/drivers/dsp/bridge/wmd/tiomap3430.c b/drivers/dsp/bridge/wmd/tiomap3430.c
> index 7138396..b123707 100644
> --- a/drivers/dsp/bridge/wmd/tiomap3430.c
> +++ b/drivers/dsp/bridge/wmd/tiomap3430.c
> @@ -34,7 +34,7 @@
> #include <mach-omap2/cm.h>
> #include <mach-omap2/prm-regbits-34xx.h>
> #include <mach-omap2/cm-regbits-34xx.h>
> -#include <mach/control.h>
> +#include <plat/control.h>
>
> /* ----------------------------------- DSP/BIOS Bridge */
> #include <dspbridge/std.h>
Acked-by: Ameya Palande <ameya.palande@nokia.com>
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 2/3] DSPBRIDGE: change to cpufreq_register_notifier for OPP changes
2010-01-16 2:01 ` [PATCH 2/3] DSPBRIDGE: change to cpufreq_register_notifier for OPP changes Omar Ramirez Luna
2010-01-16 2:01 ` [PATCH 3/3] DSPBRIDGE: Use dspbridge to initialize platform data Omar Ramirez Luna
@ 2010-01-18 10:20 ` Ameya Palande
2010-01-18 18:09 ` Ramirez Luna, Omar
1 sibling, 1 reply; 10+ messages in thread
From: Ameya Palande @ 2010-01-18 10:20 UTC (permalink / raw)
To: ext Omar Ramirez Luna
Cc: linux-omap, Doyu Hiroshi (Nokia-D/Helsinki),
Contreras Felipe (Nokia-D/Helsinki), Nishanth Menon,
Fernando Guzman Lugo
On Sat, 2010-01-16 at 03:01 +0100, ext Omar Ramirez Luna wrote:
> From: Fernando Guzman Lugo <x0095840@ti.com>
>
> This patch changes clk_notifier_unregister with
> cpufreq_unregister_notifier, which is used for OPP change
> notifications
>
> Signed-off-by: Fernando Guzman Lugo <x0095840@ti.com>
> ---
> drivers/dsp/bridge/Kconfig | 2 +-
> drivers/dsp/bridge/rmgr/drv_interface.c | 25 +++++++++++++++----------
> 2 files changed, 16 insertions(+), 11 deletions(-)
>
> diff --git a/drivers/dsp/bridge/Kconfig b/drivers/dsp/bridge/Kconfig
> index e494f02..ea639e3 100644
> --- a/drivers/dsp/bridge/Kconfig
> +++ b/drivers/dsp/bridge/Kconfig
> @@ -13,7 +13,7 @@ menuconfig MPU_BRIDGE
>
> config BRIDGE_DVFS
> bool "Enable Bridge Dynamic Voltage and Frequency Scaling (DVFS)"
> - depends on MPU_BRIDGE && OMAP_PM_SRF
> + depends on MPU_BRIDGE && OMAP_PM_SRF && CPU_FREQ
> default n
> help
> DVFS allows DSP Bridge to initiate the operating point change to
> diff --git a/drivers/dsp/bridge/rmgr/drv_interface.c b/drivers/dsp/bridge/rmgr/drv_interface.c
> index 8fce70c..19682b5 100644
> --- a/drivers/dsp/bridge/rmgr/drv_interface.c
> +++ b/drivers/dsp/bridge/rmgr/drv_interface.c
> @@ -236,15 +236,18 @@ u32 vdd1_dsp_freq[6][4] = {
> };
>
> #ifdef CONFIG_BRIDGE_DVFS
> -static int dspbridge_post_scale(struct notifier_block *op, unsigned long level,
> - void *ptr)
> +static int dspbridge_scale_notification(struct notifier_block *op,
> + unsigned long val, void *ptr)
> {
> - PWR_PM_PostScale(PRCM_VDD1, level);
> + struct dspbridge_platform_data *pdata =
> + omap_dspbridge_dev->dev.platform_data;
> + if (CPUFREQ_POSTCHANGE == val && pdata->dsp_get_opp)
> + PWR_PM_PostScale(PRCM_VDD1, pdata->dsp_get_opp());
> return 0;
> }
>
> static struct notifier_block iva_clk_notifier = {
> - .notifier_call = dspbridge_post_scale,
> + .notifier_call = dspbridge_scale_notification,
> NULL,
> };
> #endif
> @@ -380,12 +383,13 @@ static int __devinit omap34xx_bridge_probe(struct platform_device *pdev)
> GT_0trace(driverTrace, GT_7CLASS,
> "clk_get PASS to get iva2_ck \n");
> }
> - if (!clk_notifier_register(clk_handle, &iva_clk_notifier)) {
> + if (!cpufreq_register_notifier(&iva_clk_notifier,
> + CPUFREQ_TRANSITION_NOTIFIER)) {
> GT_0trace(driverTrace, GT_7CLASS,
> - "clk_notifier_register PASS for iva2_ck \n");
> + "cpufreq_register_notifier PASS for iva2_ck\n");
> } else {
> GT_0trace(driverTrace, GT_7CLASS,
> - "clk_notifier_register FAIL for iva2_ck \n");
> + "cpufreq_register_notifier FAIL for iva2_ck\n");
> }
> #endif
> driverContext = DSP_Init(&initStatus);
> @@ -429,12 +433,13 @@ static int __devexit omap34xx_bridge_remove(struct platform_device *pdev)
> goto func_cont;
>
> #ifdef CONFIG_BRIDGE_DVFS
> - if (!clk_notifier_unregister(clk_handle, &iva_clk_notifier)) {
> + if (!cpufreq_unregister_notifier(&iva_clk_notifier,
> + CPUFREQ_TRANSITION_NOTIFIER)) {
> GT_0trace(driverTrace, GT_7CLASS,
> - "clk_notifier_unregister PASS for iva2_ck \n");
> + "cpufreq_unregister_notifier PASS for iva2_ck\n");
> } else {
> GT_0trace(driverTrace, GT_7CLASS,
> - "clk_notifier_unregister FAILED for iva2_ck \n");
> + "cpufreq_unregister_notifier FAILED for iva2_ck\n");
> }
> #endif /* #ifdef CONFIG_BRIDGE_DVFS */
>
Acked-by: Ameya Palande <ameya.palande@nokia.com>
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 3/3] DSPBRIDGE: Use dspbridge to initialize platform data
2010-01-16 2:01 ` [PATCH 3/3] DSPBRIDGE: Use dspbridge to initialize platform data Omar Ramirez Luna
@ 2010-01-18 10:32 ` Ameya Palande
2010-01-18 18:09 ` Ramirez Luna, Omar
0 siblings, 1 reply; 10+ messages in thread
From: Ameya Palande @ 2010-01-18 10:32 UTC (permalink / raw)
To: ext Omar Ramirez Luna
Cc: linux-omap, Doyu Hiroshi (Nokia-D/Helsinki),
Contreras Felipe (Nokia-D/Helsinki), Nishanth Menon
On Sat, 2010-01-16 at 03:01 +0100, ext Omar Ramirez Luna wrote:
> Include dspbridge compilation whenever bridge driver is selected to
> be compiled, either as a module or part of the kernel. This will
> initialize platform data specific PM functions.
>
> Signed-off-by: Omar Ramirez Luna <omar.ramirez@ti.com>
> ---
> arch/arm/mach-omap2/Makefile | 4 +++-
> 1 files changed, 3 insertions(+), 1 deletions(-)
>
> diff --git a/arch/arm/mach-omap2/Makefile b/arch/arm/mach-omap2/Makefile
> index a37c713..1693c03 100644
> --- a/arch/arm/mach-omap2/Makefile
> +++ b/arch/arm/mach-omap2/Makefile
> @@ -57,7 +57,9 @@ obj-$(CONFIG_OMAP_IOMMU) += $(iommu-y)
> # Debobs
> obj-$(CONFIG_OMAP3_DEBOBS) += debobs.o
>
> -obj-$(CONFIG_MPU_BRIDGE) += dspbridge.o
> +ifneq ($(CONFIG_MPU_BRIDGE),)
> +obj-y += dspbridge.o
> +endif
>
> # Specific board support
> obj-$(CONFIG_MACH_OMAP_GENERIC) += board-generic.o
Acked-by: Ameya Palande <ameya.palande@nokia.com>
^ permalink raw reply [flat|nested] 10+ messages in thread
* RE: [PATCH 1/3] DSPBRIDGE: Fix header locations mach to plat
2010-01-18 9:55 ` [PATCH 1/3] DSPBRIDGE: Fix header locations mach to plat Ameya Palande
@ 2010-01-18 18:08 ` Ramirez Luna, Omar
0 siblings, 0 replies; 10+ messages in thread
From: Ramirez Luna, Omar @ 2010-01-18 18:08 UTC (permalink / raw)
To: Ameya Palande
Cc: linux-omap, Doyu Hiroshi (Nokia-D/Helsinki),
Contreras Felipe (Nokia-D/Helsinki), Menon, Nishanth
>From: Ameya Palande on Monday, January 18, 2010 3:55 AM
>
>On Sat, 2010-01-16 at 03:01 +0100, ext Omar Ramirez Luna wrote:
>> Fix header locations, replaced mach to plat
>>
>> Signed-off-by: Omar Ramirez Luna <omar.ramirez@ti.com>
>> ---
>> arch/arm/mach-omap2/dspbridge.c | 2 +-
>> arch/arm/plat-omap/include/dspbridge/host_os.h | 2 +-
>> drivers/dsp/bridge/wmd/tiomap3430.c | 2 +-
>> 3 files changed, 3 insertions(+), 3 deletions(-)
>>
[snip]
>Acked-by: Ameya Palande <ameya.palande@nokia.com>
Pushed to dspbridge-pm
- omar
^ permalink raw reply [flat|nested] 10+ messages in thread
* RE: [PATCH 2/3] DSPBRIDGE: change to cpufreq_register_notifier for OPP changes
2010-01-18 10:20 ` [PATCH 2/3] DSPBRIDGE: change to cpufreq_register_notifier for OPP changes Ameya Palande
@ 2010-01-18 18:09 ` Ramirez Luna, Omar
0 siblings, 0 replies; 10+ messages in thread
From: Ramirez Luna, Omar @ 2010-01-18 18:09 UTC (permalink / raw)
To: Ameya Palande
Cc: linux-omap, Doyu Hiroshi (Nokia-D/Helsinki),
Contreras Felipe (Nokia-D/Helsinki), Menon, Nishanth,
Guzman Lugo, Fernando
>From: Ameya Palande on Monday, January 18, 2010 4:20 AM
>
>On Sat, 2010-01-16 at 03:01 +0100, ext Omar Ramirez Luna wrote:
>> From: Fernando Guzman Lugo <x0095840@ti.com>
>>
>> This patch changes clk_notifier_unregister with
>> cpufreq_unregister_notifier, which is used for OPP change
>> notifications
>>
>> Signed-off-by: Fernando Guzman Lugo <x0095840@ti.com>
>> ---
>> drivers/dsp/bridge/Kconfig | 2 +-
>> drivers/dsp/bridge/rmgr/drv_interface.c | 25 +++++++++++++++----------
>> 2 files changed, 16 insertions(+), 11 deletions(-)
>>
[snip]
>Acked-by: Ameya Palande <ameya.palande@nokia.com>
Pushed to dspbridge-pm
- omar
^ permalink raw reply [flat|nested] 10+ messages in thread
* RE: [PATCH 3/3] DSPBRIDGE: Use dspbridge to initialize platform data
2010-01-18 10:32 ` Ameya Palande
@ 2010-01-18 18:09 ` Ramirez Luna, Omar
0 siblings, 0 replies; 10+ messages in thread
From: Ramirez Luna, Omar @ 2010-01-18 18:09 UTC (permalink / raw)
To: Ameya Palande
Cc: linux-omap, Doyu Hiroshi (Nokia-D/Helsinki),
Contreras Felipe (Nokia-D/Helsinki), Menon, Nishanth
>From: Ameya Palande on Monday, January 18, 2010 4:32 AM
>
>On Sat, 2010-01-16 at 03:01 +0100, ext Omar Ramirez Luna wrote:
>> Include dspbridge compilation whenever bridge driver is selected to
>> be compiled, either as a module or part of the kernel. This will
>> initialize platform data specific PM functions.
>>
>> Signed-off-by: Omar Ramirez Luna <omar.ramirez@ti.com>
>> ---
>> arch/arm/mach-omap2/Makefile | 4 +++-
>> 1 files changed, 3 insertions(+), 1 deletions(-)
>>
[snip]
>
>Acked-by: Ameya Palande <ameya.palande@nokia.com>
Pushed to dspbridge-pm
- omar
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2010-01-18 18:09 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-16 2:01 [PATCH 0/3] dspbridge-pm patches Omar Ramirez Luna
2010-01-16 2:01 ` [PATCH 1/3] DSPBRIDGE: Fix header locations mach to plat Omar Ramirez Luna
2010-01-16 2:01 ` [PATCH 2/3] DSPBRIDGE: change to cpufreq_register_notifier for OPP changes Omar Ramirez Luna
2010-01-16 2:01 ` [PATCH 3/3] DSPBRIDGE: Use dspbridge to initialize platform data Omar Ramirez Luna
2010-01-18 10:32 ` Ameya Palande
2010-01-18 18:09 ` Ramirez Luna, Omar
2010-01-18 10:20 ` [PATCH 2/3] DSPBRIDGE: change to cpufreq_register_notifier for OPP changes Ameya Palande
2010-01-18 18:09 ` Ramirez Luna, Omar
2010-01-18 9:55 ` [PATCH 1/3] DSPBRIDGE: Fix header locations mach to plat Ameya Palande
2010-01-18 18:08 ` Ramirez Luna, Omar
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox