diff options
author | Philipp Zabel <p.zabel@pengutronix.de> | 2015-02-13 20:18:52 +0100 |
---|---|---|
committer | Michael Turquette <mturquette@linaro.org> | 2015-04-10 23:44:43 +0200 |
commit | 9a74ccdbbb8fa6302ae1ba606f2ef0c03d3242ab (patch) | |
tree | 702f78486fa8d940dedd10695cfb60b1cda024b7 /drivers/clk/Makefile | |
parent | clk: Add clock driver for mb86s7x (diff) | |
download | linux-9a74ccdbbb8fa6302ae1ba606f2ef0c03d3242ab.tar.xz linux-9a74ccdbbb8fa6302ae1ba606f2ef0c03d3242ab.zip |
clk: Add PWM clock driver
Some board designers, when running out of clock output pads, decide to
(mis)use PWM output pads to provide a clock to external components.
This driver supports this practice by providing an adapter between the
PWM and clock bindings in the device tree. As the PWM bindings specify
the period in the device tree, this is a fixed clock.
Tested-by: Janusz Uzycki <j.uzycki@elproma.com.pl>
Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
Signed-off-by: Michael Turquette <mturquette@linaro.org>
Diffstat (limited to 'drivers/clk/Makefile')
-rw-r--r-- | drivers/clk/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/clk/Makefile b/drivers/clk/Makefile index 1d35f3bb28e0..492bcabe7930 100644 --- a/drivers/clk/Makefile +++ b/drivers/clk/Makefile @@ -43,6 +43,7 @@ obj-$(CONFIG_ARCH_U300) += clk-u300.o obj-$(CONFIG_ARCH_VT8500) += clk-vt8500.o obj-$(CONFIG_COMMON_CLK_WM831X) += clk-wm831x.o obj-$(CONFIG_COMMON_CLK_XGENE) += clk-xgene.o +obj-$(CONFIG_COMMON_CLK_PWM) += clk-pwm.o obj-$(CONFIG_COMMON_CLK_AT91) += at91/ obj-$(CONFIG_ARCH_BCM_MOBILE) += bcm/ obj-$(CONFIG_ARCH_BERLIN) += berlin/ |