blob: 91ccb962e09e9ed7a59e45c1399de556048724d7 [file] [log] [blame]
Paul Walmsley657ebfa2010-02-22 22:09:20 -07001/*
2 * OMAP36xx-specific clkops
3 *
4 * Copyright (C) 2010 Texas Instruments, Inc.
5 * Copyright (C) 2010 Nokia Corporation
6 *
7 * Mike Turquette
8 * Vijaykumar GN
9 * Paul Walmsley
10 *
11 * Parts of this code are based on code written by
12 * Richard Woodruff, Tony Lindgren, Tuukka Tikkanen, Karthik Dasu,
13 * Russell King
14 *
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License version 2 as
17 * published by the Free Software Foundation.
18 */
19#undef DEBUG
20
21#include <linux/kernel.h>
22#include <linux/clk.h>
Jean-Philippe Francoisa93d8a12013-06-06 08:48:07 -060023#include <linux/clk-provider.h>
Paul Walmsley657ebfa2010-02-22 22:09:20 -070024#include <linux/io.h>
25
Paul Walmsley657ebfa2010-02-22 22:09:20 -070026#include "clock.h"
27#include "clock36xx.h"
Jean-Philippe Francoisa93d8a12013-06-06 08:48:07 -060028#define to_clk_divider(_hw) container_of(_hw, struct clk_divider, hw)
Paul Walmsley657ebfa2010-02-22 22:09:20 -070029
30/**
31 * omap36xx_pwrdn_clk_enable_with_hsdiv_restore - enable clocks suffering
32 * from HSDivider PWRDN problem Implements Errata ID: i556.
33 * @clk: DPLL output struct clk
34 *
35 * 3630 only: dpll3_m3_ck, dpll4_m2_ck, dpll4_m3_ck, dpll4_m4_ck,
36 * dpll4_m5_ck & dpll4_m6_ck dividers gets loaded with reset
37 * valueafter their respective PWRDN bits are set. Any dummy write
38 * (Any other value different from the Read value) to the
39 * corresponding CM_CLKSEL register will refresh the dividers.
40 */
Rajendra Nayakb4777a22012-04-27 15:53:48 +053041int omap36xx_pwrdn_clk_enable_with_hsdiv_restore(struct clk_hw *clk)
42{
Jean-Philippe Francoisa93d8a12013-06-06 08:48:07 -060043 struct clk_divider *parent;
Rajendra Nayakb4777a22012-04-27 15:53:48 +053044 struct clk_hw *parent_hw;
Jean-Philippe Francoisa93d8a12013-06-06 08:48:07 -060045 u32 dummy_v, orig_v;
Tero Kristo519ab8b2013-10-22 11:49:58 +030046 struct clk_hw_omap *omap_clk = to_clk_hw_omap(clk);
Paul Walmsley657ebfa2010-02-22 22:09:20 -070047 int ret;
48
49 /* Clear PWRDN bit of HSDIVIDER */
50 ret = omap2_dflt_clk_enable(clk);
51
Rajendra Nayakb4777a22012-04-27 15:53:48 +053052 parent_hw = __clk_get_hw(__clk_get_parent(clk->clk));
Jean-Philippe Francoisa93d8a12013-06-06 08:48:07 -060053 parent = to_clk_divider(parent_hw);
Rajendra Nayakb4777a22012-04-27 15:53:48 +053054
Paul Walmsley657ebfa2010-02-22 22:09:20 -070055 /* Restore the dividers */
56 if (!ret) {
Tero Kristo519ab8b2013-10-22 11:49:58 +030057 orig_v = omap2_clk_readl(omap_clk, parent->reg);
Paul Walmsley657ebfa2010-02-22 22:09:20 -070058 dummy_v = orig_v;
59
60 /* Write any other value different from the Read value */
Jean-Philippe Francoisa93d8a12013-06-06 08:48:07 -060061 dummy_v ^= (1 << parent->shift);
Tero Kristo519ab8b2013-10-22 11:49:58 +030062 omap2_clk_writel(dummy_v, omap_clk, parent->reg);
Paul Walmsley657ebfa2010-02-22 22:09:20 -070063
64 /* Write the original divider */
Tero Kristo519ab8b2013-10-22 11:49:58 +030065 omap2_clk_writel(orig_v, omap_clk, parent->reg);
Paul Walmsley657ebfa2010-02-22 22:09:20 -070066 }
67
68 return ret;
69}