diff options
author | Gabriel FERNANDEZ <gabriel.fernandez@st.com> | 2014-02-27 19:24:14 +0400 |
---|---|---|
committer | Mike Turquette <mturquette@linaro.org> | 2014-03-26 02:58:47 +0400 |
commit | 94885faf9dbcc2ca704d60e7db2f2b87e0b0fe6e (patch) | |
tree | 4036ede6776d2102505e207b68e42f008ef3f955 /drivers/clk/st/Makefile | |
parent | c646cbf10fb3347ecda290dfce96b813a423ca07 (diff) | |
download | linux-94885faf9dbcc2ca704d60e7db2f2b87e0b0fe6e.tar.xz |
clk: st: Support for DIVMUX and PreDiv Clocks
The patch supports the DIVMUX and PreDiv clocks used by ClockGenA(s)
DIVMUX clock : Divider-Multiplexer-Gate inside ClockGenA(s)
It includes support for each channel : 3-parent Multiplexer,
Divider for each Parent, Gate to switch OFF the output channel. The
clock is implemented using generic clocks implemented in the kernel
clk_divider and clk_mux.
PreDiv clock : Fixed Divider Clock used inside ClockGenA(s) to divide
the oscillator clock by factor-of-16. The clock is implemented using
generic clocks implemented in the kernel clk_divider.
Signed-off-by: Pankaj Dev <pankaj.dev@st.com>
Signed-off-by: Gabriel Fernandez <gabriel.fernandez@st.com>
Signed-off-by: Mike Turquette <mturquette@linaro.org>
Diffstat (limited to 'drivers/clk/st/Makefile')
-rw-r--r-- | drivers/clk/st/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/clk/st/Makefile b/drivers/clk/st/Makefile new file mode 100644 index 000000000000..e42b370edef9 --- /dev/null +++ b/drivers/clk/st/Makefile @@ -0,0 +1 @@ +obj-y += clkgen-mux.o |