diff options
author | Magnus Damm <damm@igel.co.jp> | 2009-07-03 10:08:05 +0000 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2009-07-05 00:28:39 +0900 |
commit | 79714acbab080ad351acf4bba9a2bbc21d65c93c (patch) | |
tree | 4cf6385ccefa0e47e753f78bc4bce1d1fd8b0861 /arch/sh/kernel/cpu/Makefile | |
parent | 746a99a5af60ee676afa2ba469ccd1373493c7e7 (diff) | |
download | kernel_samsung_crespo-79714acbab080ad351acf4bba9a2bbc21d65c93c.zip kernel_samsung_crespo-79714acbab080ad351acf4bba9a2bbc21d65c93c.tar.gz kernel_samsung_crespo-79714acbab080ad351acf4bba9a2bbc21d65c93c.tar.bz2 |
sh: hwblk base implementation
This patch is the hwblk base implementation, containing
structures and shared functions dealing with hardware blocks.
A each processor model should provide a list of hwblks and
describe which module stop bit that is associated with each
hwblck and how the hwblks are grouped together into areas.
The shared code keeps track of the usage count for each
hwblk and the areas. Fallback implementations for processor
specific code are also kept as weak symbols.
The clock framework, the runtime pm code and cpuidle will
all tie into this hwblk implementation.
Signed-off-by: Magnus Damm <damm@igel.co.jp>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/kernel/cpu/Makefile')
-rw-r--r-- | arch/sh/kernel/cpu/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/kernel/cpu/Makefile b/arch/sh/kernel/cpu/Makefile index eecad7c..3d6b931 100644 --- a/arch/sh/kernel/cpu/Makefile +++ b/arch/sh/kernel/cpu/Makefile @@ -19,4 +19,4 @@ obj-$(CONFIG_UBC_WAKEUP) += ubc.o obj-$(CONFIG_SH_ADC) += adc.o obj-$(CONFIG_SH_CLK_CPG) += clock-cpg.o -obj-y += irq/ init.o clock.o +obj-y += irq/ init.o clock.o hwblk.o |