mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-29 23:53:32 +00:00
5b82d03b74
The abx500 sysctrl clocks are using the ab8500 sysctrl driver to modify the clock hardware. Sysctrl clocks are represented by a ab8500 sysctrl register and with a corresponding bitmask. The sysctrl clocks are slow path clocks, which means clk_prepare and clk_unprepare will be used to gate|ungate these clocks. Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org> Signed-off-by: Mike Turquette <mturquette@linaro.org>
16 lines
240 B
Makefile
16 lines
240 B
Makefile
#
|
|
# Makefile for ux500 clocks
|
|
#
|
|
|
|
# Clock types
|
|
obj-y += clk-prcc.o
|
|
obj-y += clk-prcmu.o
|
|
obj-y += clk-sysctrl.o
|
|
|
|
# Clock definitions
|
|
obj-y += u8500_clk.o
|
|
obj-y += u9540_clk.o
|
|
obj-y += u8540_clk.o
|
|
|
|
# ABX500 clock driver
|
|
obj-y += abx500-clk.o
|