blob: 9f50e9704891de78067b1d556587d89fd9a74082 [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>
23#include <linux/io.h>
24
Paul Walmsley657ebfa2010-02-22 22:09:20 -070025#include "clock.h"
26#include "clock36xx.h"
27
28
29/**
30 * omap36xx_pwrdn_clk_enable_with_hsdiv_restore - enable clocks suffering
31 * from HSDivider PWRDN problem Implements Errata ID: i556.
32 * @clk: DPLL output struct clk
33 *
34 * 3630 only: dpll3_m3_ck, dpll4_m2_ck, dpll4_m3_ck, dpll4_m4_ck,
35 * dpll4_m5_ck & dpll4_m6_ck dividers gets loaded with reset
36 * valueafter their respective PWRDN bits are set. Any dummy write
37 * (Any other value different from the Read value) to the
38 * corresponding CM_CLKSEL register will refresh the dividers.
39 */
Rajendra Nayakb4777a22012-04-27 15:53:48 +053040#ifdef CONFIG_COMMON_CLK
41int omap36xx_pwrdn_clk_enable_with_hsdiv_restore(struct clk_hw *clk)
42{
43 struct clk_hw_omap *parent;
44 struct clk_hw *parent_hw;
45#else
Paul Walmsley657ebfa2010-02-22 22:09:20 -070046static int omap36xx_pwrdn_clk_enable_with_hsdiv_restore(struct clk *clk)
47{
Rajendra Nayakb4777a22012-04-27 15:53:48 +053048 struct clk *parent;
49#endif
Paul Walmsley657ebfa2010-02-22 22:09:20 -070050 u32 dummy_v, orig_v, clksel_shift;
51 int ret;
52
53 /* Clear PWRDN bit of HSDIVIDER */
54 ret = omap2_dflt_clk_enable(clk);
55
Rajendra Nayakb4777a22012-04-27 15:53:48 +053056#ifdef CONFIG_COMMON_CLK
57 parent_hw = __clk_get_hw(__clk_get_parent(clk->clk));
58 parent = to_clk_hw_omap(parent_hw);
59#else
60 parent = clk->parent;
61#endif
62
Paul Walmsley657ebfa2010-02-22 22:09:20 -070063 /* Restore the dividers */
64 if (!ret) {
Rajendra Nayakb4777a22012-04-27 15:53:48 +053065 clksel_shift = __ffs(parent->clksel_mask);
66 orig_v = __raw_readl(parent->clksel_reg);
Paul Walmsley657ebfa2010-02-22 22:09:20 -070067 dummy_v = orig_v;
68
69 /* Write any other value different from the Read value */
70 dummy_v ^= (1 << clksel_shift);
Rajendra Nayakb4777a22012-04-27 15:53:48 +053071 __raw_writel(dummy_v, parent->clksel_reg);
Paul Walmsley657ebfa2010-02-22 22:09:20 -070072
73 /* Write the original divider */
Rajendra Nayakb4777a22012-04-27 15:53:48 +053074 __raw_writel(orig_v, parent->clksel_reg);
Paul Walmsley657ebfa2010-02-22 22:09:20 -070075 }
76
77 return ret;
78}
79
Rajendra Nayakb4777a22012-04-27 15:53:48 +053080#ifndef CONFIG_COMMON_CLK
Paul Walmsley657ebfa2010-02-22 22:09:20 -070081const struct clkops clkops_omap36xx_pwrdn_with_hsdiv_wait_restore = {
82 .enable = omap36xx_pwrdn_clk_enable_with_hsdiv_restore,
83 .disable = omap2_dflt_clk_disable,
84 .find_companion = omap2_clk_dflt_find_companion,
85 .find_idlest = omap2_clk_dflt_find_idlest,
86};
Rajendra Nayakb4777a22012-04-27 15:53:48 +053087#endif