Paul Walmsley | 4921464 | 2010-01-26 20:13:06 -0700 | [diff] [blame] | 1 | /* |
| 2 | * OMAP2xxx APLL clock control functions |
| 3 | * |
| 4 | * Copyright (C) 2005-2008 Texas Instruments, Inc. |
| 5 | * Copyright (C) 2004-2010 Nokia Corporation |
| 6 | * |
| 7 | * Contacts: |
| 8 | * Richard Woodruff <r-woodruff2@ti.com> |
| 9 | * Paul Walmsley |
| 10 | * |
| 11 | * Based on earlier work by Tuukka Tikkanen, Tony Lindgren, |
| 12 | * Gordon McNutt and RidgeRun, Inc. |
| 13 | * |
| 14 | * This program is free software; you can redistribute it and/or modify |
| 15 | * it under the terms of the GNU General Public License version 2 as |
| 16 | * published by the Free Software Foundation. |
| 17 | */ |
| 18 | #undef DEBUG |
| 19 | |
| 20 | #include <linux/kernel.h> |
| 21 | #include <linux/clk.h> |
| 22 | #include <linux/io.h> |
| 23 | |
Paul Walmsley | 4921464 | 2010-01-26 20:13:06 -0700 | [diff] [blame] | 24 | |
| 25 | #include "clock.h" |
| 26 | #include "clock2xxx.h" |
Paul Walmsley | ff4ae5d | 2012-10-21 01:01:11 -0600 | [diff] [blame] | 27 | #include "cm2xxx.h" |
Paul Walmsley | 4921464 | 2010-01-26 20:13:06 -0700 | [diff] [blame] | 28 | #include "cm-regbits-24xx.h" |
| 29 | |
| 30 | /* CM_CLKEN_PLL.EN_{54,96}M_PLL options (24XX) */ |
| 31 | #define EN_APLL_STOPPED 0 |
| 32 | #define EN_APLL_LOCKED 3 |
| 33 | |
| 34 | /* CM_CLKSEL1_PLL.APLLS_CLKIN options (24XX) */ |
| 35 | #define APLLS_CLKIN_19_2MHZ 0 |
| 36 | #define APLLS_CLKIN_13MHZ 2 |
| 37 | #define APLLS_CLKIN_12MHZ 3 |
| 38 | |
| 39 | /* Private functions */ |
| 40 | |
Paul Walmsley | 7a2bd1c | 2012-09-14 23:18:20 -0600 | [diff] [blame] | 41 | /** |
| 42 | * omap2xxx_clk_apll_locked - is the APLL locked? |
| 43 | * @hw: struct clk_hw * of the APLL to check |
| 44 | * |
| 45 | * If the APLL IP block referred to by @hw indicates that it's locked, |
| 46 | * return true; otherwise, return false. |
| 47 | */ |
| 48 | static bool omap2xxx_clk_apll_locked(struct clk_hw *hw) |
| 49 | { |
| 50 | struct clk_hw_omap *clk = to_clk_hw_omap(hw); |
| 51 | u32 r, apll_mask; |
| 52 | |
| 53 | apll_mask = EN_APLL_LOCKED << clk->enable_bit; |
| 54 | |
Tero Kristo | cd6e9db | 2013-10-11 19:15:31 +0300 | [diff] [blame] | 55 | r = omap2xxx_cm_get_pll_status(); |
Paul Walmsley | 7a2bd1c | 2012-09-14 23:18:20 -0600 | [diff] [blame] | 56 | |
| 57 | return ((r & apll_mask) == apll_mask) ? true : false; |
| 58 | } |
Paul Walmsley | 7a2bd1c | 2012-09-14 23:18:20 -0600 | [diff] [blame] | 59 | |
Rajendra Nayak | ed1ebc4 | 2012-04-27 15:59:32 +0530 | [diff] [blame] | 60 | int omap2_clk_apll96_enable(struct clk_hw *hw) |
Paul Walmsley | 4921464 | 2010-01-26 20:13:06 -0700 | [diff] [blame] | 61 | { |
Paul Walmsley | b6ffa05 | 2012-10-29 20:56:17 -0600 | [diff] [blame] | 62 | return omap2xxx_cm_apll96_enable(); |
Paul Walmsley | 4921464 | 2010-01-26 20:13:06 -0700 | [diff] [blame] | 63 | } |
| 64 | |
Rajendra Nayak | ed1ebc4 | 2012-04-27 15:59:32 +0530 | [diff] [blame] | 65 | int omap2_clk_apll54_enable(struct clk_hw *hw) |
Paul Walmsley | 4921464 | 2010-01-26 20:13:06 -0700 | [diff] [blame] | 66 | { |
Paul Walmsley | b6ffa05 | 2012-10-29 20:56:17 -0600 | [diff] [blame] | 67 | return omap2xxx_cm_apll54_enable(); |
Paul Walmsley | 4921464 | 2010-01-26 20:13:06 -0700 | [diff] [blame] | 68 | } |
| 69 | |
Rajendra Nayak | ed1ebc4 | 2012-04-27 15:59:32 +0530 | [diff] [blame] | 70 | static void _apll96_allow_idle(struct clk_hw_omap *clk) |
Paul Walmsley | 92618ff | 2011-02-25 15:39:27 -0700 | [diff] [blame] | 71 | { |
| 72 | omap2xxx_cm_set_apll96_auto_low_power_stop(); |
| 73 | } |
| 74 | |
Rajendra Nayak | ed1ebc4 | 2012-04-27 15:59:32 +0530 | [diff] [blame] | 75 | static void _apll96_deny_idle(struct clk_hw_omap *clk) |
Paul Walmsley | 92618ff | 2011-02-25 15:39:27 -0700 | [diff] [blame] | 76 | { |
| 77 | omap2xxx_cm_set_apll96_disable_autoidle(); |
| 78 | } |
| 79 | |
Rajendra Nayak | ed1ebc4 | 2012-04-27 15:59:32 +0530 | [diff] [blame] | 80 | static void _apll54_allow_idle(struct clk_hw_omap *clk) |
Paul Walmsley | 92618ff | 2011-02-25 15:39:27 -0700 | [diff] [blame] | 81 | { |
| 82 | omap2xxx_cm_set_apll54_auto_low_power_stop(); |
| 83 | } |
| 84 | |
Rajendra Nayak | ed1ebc4 | 2012-04-27 15:59:32 +0530 | [diff] [blame] | 85 | static void _apll54_deny_idle(struct clk_hw_omap *clk) |
Paul Walmsley | 92618ff | 2011-02-25 15:39:27 -0700 | [diff] [blame] | 86 | { |
| 87 | omap2xxx_cm_set_apll54_disable_autoidle(); |
| 88 | } |
| 89 | |
Rajendra Nayak | ed1ebc4 | 2012-04-27 15:59:32 +0530 | [diff] [blame] | 90 | void omap2_clk_apll96_disable(struct clk_hw *hw) |
Paul Walmsley | 4921464 | 2010-01-26 20:13:06 -0700 | [diff] [blame] | 91 | { |
Paul Walmsley | b6ffa05 | 2012-10-29 20:56:17 -0600 | [diff] [blame] | 92 | omap2xxx_cm_apll96_disable(); |
| 93 | } |
Paul Walmsley | 4921464 | 2010-01-26 20:13:06 -0700 | [diff] [blame] | 94 | |
Rajendra Nayak | ed1ebc4 | 2012-04-27 15:59:32 +0530 | [diff] [blame] | 95 | void omap2_clk_apll54_disable(struct clk_hw *hw) |
Paul Walmsley | b6ffa05 | 2012-10-29 20:56:17 -0600 | [diff] [blame] | 96 | { |
| 97 | omap2xxx_cm_apll54_disable(); |
Paul Walmsley | 4921464 | 2010-01-26 20:13:06 -0700 | [diff] [blame] | 98 | } |
| 99 | |
Paul Walmsley | 7a2bd1c | 2012-09-14 23:18:20 -0600 | [diff] [blame] | 100 | unsigned long omap2_clk_apll54_recalc(struct clk_hw *hw, |
| 101 | unsigned long parent_rate) |
| 102 | { |
| 103 | return (omap2xxx_clk_apll_locked(hw)) ? 54000000 : 0; |
| 104 | } |
| 105 | |
| 106 | unsigned long omap2_clk_apll96_recalc(struct clk_hw *hw, |
| 107 | unsigned long parent_rate) |
| 108 | { |
| 109 | return (omap2xxx_clk_apll_locked(hw)) ? 96000000 : 0; |
| 110 | } |
Paul Walmsley | 7a2bd1c | 2012-09-14 23:18:20 -0600 | [diff] [blame] | 111 | |
Paul Walmsley | 4921464 | 2010-01-26 20:13:06 -0700 | [diff] [blame] | 112 | /* Public data */ |
Rajendra Nayak | ed1ebc4 | 2012-04-27 15:59:32 +0530 | [diff] [blame] | 113 | const struct clk_hw_omap_ops clkhwops_apll54 = { |
| 114 | .allow_idle = _apll54_allow_idle, |
| 115 | .deny_idle = _apll54_deny_idle, |
| 116 | }; |
Paul Walmsley | 4921464 | 2010-01-26 20:13:06 -0700 | [diff] [blame] | 117 | |
Rajendra Nayak | ed1ebc4 | 2012-04-27 15:59:32 +0530 | [diff] [blame] | 118 | const struct clk_hw_omap_ops clkhwops_apll96 = { |
| 119 | .allow_idle = _apll96_allow_idle, |
| 120 | .deny_idle = _apll96_deny_idle, |
| 121 | }; |
Paul Walmsley | 4921464 | 2010-01-26 20:13:06 -0700 | [diff] [blame] | 122 | |
| 123 | /* Public functions */ |
| 124 | |
| 125 | u32 omap2xxx_get_apll_clkin(void) |
| 126 | { |
| 127 | u32 aplls, srate = 0; |
| 128 | |
Tero Kristo | cd6e9db | 2013-10-11 19:15:31 +0300 | [diff] [blame] | 129 | aplls = omap2xxx_cm_get_pll_config(); |
Paul Walmsley | 4921464 | 2010-01-26 20:13:06 -0700 | [diff] [blame] | 130 | aplls &= OMAP24XX_APLLS_CLKIN_MASK; |
| 131 | aplls >>= OMAP24XX_APLLS_CLKIN_SHIFT; |
| 132 | |
| 133 | if (aplls == APLLS_CLKIN_19_2MHZ) |
| 134 | srate = 19200000; |
| 135 | else if (aplls == APLLS_CLKIN_13MHZ) |
| 136 | srate = 13000000; |
| 137 | else if (aplls == APLLS_CLKIN_12MHZ) |
| 138 | srate = 12000000; |
| 139 | |
| 140 | return srate; |
| 141 | } |
| 142 | |