diff options
author | Gabriel FERNANDEZ <gabriel.fernandez@st.com> | 2014-07-15 17:20:23 +0200 |
---|---|---|
committer | Mike Turquette <mturquette@linaro.org> | 2014-07-28 22:36:29 -0700 |
commit | 13e6f2da1ddf61582eb1f54f7d8e3ba9f16f12a9 (patch) | |
tree | eb790626f275fd6c038ed622ecb98a74f8243a39 | |
parent | b116517055b7ebde85fa8ee8704071e31ea25dc3 (diff) |
clk: st: STiH407: Support for A9 MUX Clocks
The patch supports the A9-mux clocks used by ClockGenA9
Signed-off-by: Gabriel Fernandez <gabriel.fernandez@linaro.org>
Signed-off-by: Olivier Bideau <olivier.bideau@st.com>
Acked-by: Peter Griffin <peter.griffin@linaro.org>
Signed-off-by: Mike Turquette <mturquette@linaro.org>
-rw-r--r-- | drivers/clk/st/clkgen-mux.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/clk/st/clkgen-mux.c b/drivers/clk/st/clkgen-mux.c index a329906d1e81..9bdedc8ed82a 100644 --- a/drivers/clk/st/clkgen-mux.c +++ b/drivers/clk/st/clkgen-mux.c @@ -580,6 +580,11 @@ static struct clkgen_mux_data stih416_a9_mux_data = { .shift = 0, .width = 2, }; +static struct clkgen_mux_data stih407_a9_mux_data = { + .offset = 0x1a4, + .shift = 1, + .width = 2, +}; static struct of_device_id mux_of_match[] = { { @@ -610,6 +615,10 @@ static struct of_device_id mux_of_match[] = { .compatible = "st,stih416-clkgen-a9-mux", .data = &stih416_a9_mux_data, }, + { + .compatible = "st,stih407-clkgen-a9-mux", + .data = &stih407_a9_mux_data, + }, {} }; |