Paul Walmsley | 0fd0c21 | 2011-02-25 15:49:53 -0700 | [diff] [blame] | 1 | /* |
| 2 | * OMAP2-specific DPLL control functions |
| 3 | * |
| 4 | * Copyright (C) 2011 Nokia Corporation |
| 5 | * Paul Walmsley |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License version 2 as |
| 9 | * published by the Free Software Foundation. |
| 10 | */ |
| 11 | |
| 12 | #include <linux/kernel.h> |
| 13 | #include <linux/errno.h> |
| 14 | #include <linux/clk.h> |
| 15 | #include <linux/io.h> |
| 16 | |
Paul Walmsley | 0fd0c21 | 2011-02-25 15:49:53 -0700 | [diff] [blame] | 17 | #include "clock.h" |
Paul Walmsley | ff4ae5d | 2012-10-21 01:01:11 -0600 | [diff] [blame] | 18 | #include "cm2xxx.h" |
Paul Walmsley | 0fd0c21 | 2011-02-25 15:49:53 -0700 | [diff] [blame] | 19 | #include "cm-regbits-24xx.h" |
| 20 | |
| 21 | /* Private functions */ |
| 22 | |
| 23 | /** |
| 24 | * _allow_idle - enable DPLL autoidle bits |
| 25 | * @clk: struct clk * of the DPLL to operate on |
| 26 | * |
| 27 | * Enable DPLL automatic idle control. The DPLL will enter low-power |
| 28 | * stop when its downstream clocks are gated. No return value. |
| 29 | * REVISIT: DPLL can optionally enter low-power bypass by writing 0x1 |
| 30 | * instead. Add some mechanism to optionally enter this mode. |
| 31 | */ |
Rajendra Nayak | ed1ebc4 | 2012-04-27 15:59:32 +0530 | [diff] [blame^] | 32 | #ifdef CONFIG_COMMON_CLK |
| 33 | static void _allow_idle(struct clk_hw_omap *clk) |
| 34 | #else |
Paul Walmsley | 0fd0c21 | 2011-02-25 15:49:53 -0700 | [diff] [blame] | 35 | static void _allow_idle(struct clk *clk) |
Rajendra Nayak | ed1ebc4 | 2012-04-27 15:59:32 +0530 | [diff] [blame^] | 36 | #endif |
Paul Walmsley | 0fd0c21 | 2011-02-25 15:49:53 -0700 | [diff] [blame] | 37 | { |
| 38 | if (!clk || !clk->dpll_data) |
| 39 | return; |
| 40 | |
| 41 | omap2xxx_cm_set_dpll_auto_low_power_stop(); |
| 42 | } |
| 43 | |
| 44 | /** |
| 45 | * _deny_idle - prevent DPLL from automatically idling |
| 46 | * @clk: struct clk * of the DPLL to operate on |
| 47 | * |
| 48 | * Disable DPLL automatic idle control. No return value. |
| 49 | */ |
Rajendra Nayak | ed1ebc4 | 2012-04-27 15:59:32 +0530 | [diff] [blame^] | 50 | #ifdef CONFIG_COMMON_CLK |
| 51 | static void _deny_idle(struct clk_hw_omap *clk) |
| 52 | #else |
Paul Walmsley | 0fd0c21 | 2011-02-25 15:49:53 -0700 | [diff] [blame] | 53 | static void _deny_idle(struct clk *clk) |
Rajendra Nayak | ed1ebc4 | 2012-04-27 15:59:32 +0530 | [diff] [blame^] | 54 | #endif |
Paul Walmsley | 0fd0c21 | 2011-02-25 15:49:53 -0700 | [diff] [blame] | 55 | { |
| 56 | if (!clk || !clk->dpll_data) |
| 57 | return; |
| 58 | |
| 59 | omap2xxx_cm_set_dpll_disable_autoidle(); |
| 60 | } |
| 61 | |
| 62 | |
| 63 | /* Public data */ |
Rajendra Nayak | ed1ebc4 | 2012-04-27 15:59:32 +0530 | [diff] [blame^] | 64 | #ifdef CONFIG_COMMON_CLK |
| 65 | const struct clk_hw_omap_ops clkhwops_omap2xxx_dpll = { |
| 66 | .allow_idle = _allow_idle, |
| 67 | .deny_idle = _deny_idle, |
| 68 | }; |
| 69 | #else |
Paul Walmsley | 0fd0c21 | 2011-02-25 15:49:53 -0700 | [diff] [blame] | 70 | const struct clkops clkops_omap2xxx_dpll_ops = { |
| 71 | .allow_idle = _allow_idle, |
| 72 | .deny_idle = _deny_idle, |
| 73 | }; |
Rajendra Nayak | ed1ebc4 | 2012-04-27 15:59:32 +0530 | [diff] [blame^] | 74 | #endif |
Paul Walmsley | 0fd0c21 | 2011-02-25 15:49:53 -0700 | [diff] [blame] | 75 | |