Skip to content

Commit

Permalink
ARM: i.MX5x: Add SAHARA clock for i.MX5x CPUs
Browse files Browse the repository at this point in the history
Patch adds missing Security Accelerator (SAHARA) clock for i.MX5x CPUs.

Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
  • Loading branch information
Alexander Shiyan authored and Shawn Guo committed Dec 9, 2013
1 parent 5bcaa7a commit 9b015e5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions Documentation/devicetree/bindings/clock/imx5-clock.txt
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@ clocks and IDs.
spdif1_gate 184
spdif_ipg_gate 185
ocram 186
sahara_ipg_gate 187

Examples (for mx53):

Expand Down
3 changes: 2 additions & 1 deletion arch/arm/mach-imx/clk-imx51-imx53.c
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ enum imx5_clks {
srtc_gate, pata_gate, sata_gate, spdif_xtal_sel, spdif0_sel,
spdif1_sel, spdif0_pred, spdif0_podf, spdif1_pred, spdif1_podf,
spdif0_com_s, spdif1_com_sel, spdif0_gate, spdif1_gate, spdif_ipg_gate,
ocram, clk_max
ocram, sahara_ipg_gate, clk_max
};

static struct clk *clk[clk_max];
Expand Down Expand Up @@ -285,6 +285,7 @@ static void __init mx5_clocks_common_init(unsigned long rate_ckil,
spdif0_com_sel, ARRAY_SIZE(spdif0_com_sel), CLK_SET_RATE_PARENT);
clk[spdif0_gate] = imx_clk_gate2("spdif0_gate", "spdif0_com_sel", MXC_CCM_CCGR5, 26);
clk[spdif_ipg_gate] = imx_clk_gate2("spdif_ipg_gate", "ipg", MXC_CCM_CCGR5, 30);
clk[sahara_ipg_gate] = imx_clk_gate2("sahara_ipg_gate", "ipg", MXC_CCM_CCGR4, 14);

for (i = 0; i < ARRAY_SIZE(clk); i++)
if (IS_ERR(clk[i]))
Expand Down

0 comments on commit 9b015e5

Please sign in to comment.