diff options
author | Thara Gopinath <thara@ti.com> | 2010-05-29 12:32:25 -0400 |
---|---|---|
committer | Kevin Hilman <khilman@deeprootsystems.com> | 2010-12-22 17:31:40 -0500 |
commit | fa765823a3cbb9ce1b13ce2832109a50d899c471 (patch) | |
tree | b2c9090d00a70adc59f6ca9b3aad45ca70af6ed8 /arch/arm/mach-omap2/Makefile | |
parent | d34427267186827dfd62bd8cf726601fffb22534 (diff) |
OMAP3: PM: Adding smartreflex class3 driver
Smartreflex Class3 implementation continuously monitors
silicon performance and instructs the Voltage Processors
to increase or decrease the voltage.
This patch adds smartreflex class 3 driver. This driver hooks
up with the generic smartreflex driver smartreflex.c to abstract
out class specific implementations out of the generic driver.
Class3 driver is chosen as the default class driver for smartreflex.
If any other class driver needs to be implemented, the init of that
driver should be called from the board file. That way the new class driver
will over-ride the Class3 driver.
Signed-off-by: Thara Gopinath <thara@ti.com>
Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
Diffstat (limited to 'arch/arm/mach-omap2/Makefile')
-rw-r--r-- | arch/arm/mach-omap2/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/Makefile b/arch/arm/mach-omap2/Makefile index aedb3e779081..ec48c4cf8ae5 100644 --- a/arch/arm/mach-omap2/Makefile +++ b/arch/arm/mach-omap2/Makefile | |||
@@ -63,6 +63,7 @@ obj-$(CONFIG_ARCH_OMAP3) += pm34xx.o sleep34xx.o voltage.o \ | |||
63 | obj-$(CONFIG_ARCH_OMAP4) += pm44xx.o pm_bus.o | 63 | obj-$(CONFIG_ARCH_OMAP4) += pm44xx.o pm_bus.o |
64 | obj-$(CONFIG_PM_DEBUG) += pm-debug.o | 64 | obj-$(CONFIG_PM_DEBUG) += pm-debug.o |
65 | obj-$(CONFIG_OMAP_SMARTREFLEX) += sr_device.o smartreflex.o | 65 | obj-$(CONFIG_OMAP_SMARTREFLEX) += sr_device.o smartreflex.o |
66 | obj-$(CONFIG_OMAP_SMARTREFLEX_CLASS3) += smartreflex-class3.o | ||
66 | 67 | ||
67 | AFLAGS_sleep24xx.o :=-Wa,-march=armv6 | 68 | AFLAGS_sleep24xx.o :=-Wa,-march=armv6 |
68 | AFLAGS_sleep34xx.o :=-Wa,-march=armv7-a | 69 | AFLAGS_sleep34xx.o :=-Wa,-march=armv7-a |