Daniel Walker | 5e96da5 | 2010-05-12 13:43:28 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2007 Google, Inc. |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 3 | * Copyright (c) 2007-2011, Code Aurora Forum. All rights reserved. |
Daniel Walker | 5e96da5 | 2010-05-12 13:43:28 -0700 | [diff] [blame] | 4 | * |
| 5 | * This software is licensed under the terms of the GNU General Public |
| 6 | * License version 2, as published by the Free Software Foundation, and |
| 7 | * may be copied, distributed, and modified under those terms. |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU General Public License for more details. |
| 13 | * |
| 14 | */ |
| 15 | |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 16 | #include <linux/kernel.h> |
Daniel Walker | 5e96da5 | 2010-05-12 13:43:28 -0700 | [diff] [blame] | 17 | #include <linux/err.h> |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 18 | |
Daniel Walker | 5e96da5 | 2010-05-12 13:43:28 -0700 | [diff] [blame] | 19 | #include <mach/clk.h> |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 20 | #include <mach/socinfo.h> |
Daniel Walker | 5e96da5 | 2010-05-12 13:43:28 -0700 | [diff] [blame] | 21 | |
| 22 | #include "proc_comm.h" |
| 23 | #include "clock.h" |
Stephen Boyd | ce1c80f | 2011-01-26 16:20:53 -0800 | [diff] [blame] | 24 | #include "clock-pcom.h" |
Daniel Walker | 5e96da5 | 2010-05-12 13:43:28 -0700 | [diff] [blame] | 25 | |
| 26 | /* |
| 27 | * glue for the proc_comm interface |
| 28 | */ |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 29 | static int pc_clk_enable(struct clk *clk) |
Daniel Walker | 5e96da5 | 2010-05-12 13:43:28 -0700 | [diff] [blame] | 30 | { |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 31 | int rc; |
| 32 | int id = to_pcom_clk(clk)->id; |
| 33 | |
| 34 | /* Ignore clocks that are always on */ |
| 35 | if (id == P_EBI1_CLK || id == P_EBI1_FIXED_CLK) |
| 36 | return 0; |
| 37 | |
| 38 | rc = msm_proc_comm(PCOM_CLKCTL_RPC_ENABLE, &id, NULL); |
Daniel Walker | 5e96da5 | 2010-05-12 13:43:28 -0700 | [diff] [blame] | 39 | if (rc < 0) |
| 40 | return rc; |
| 41 | else |
| 42 | return (int)id < 0 ? -EINVAL : 0; |
| 43 | } |
| 44 | |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 45 | static void pc_clk_disable(struct clk *clk) |
Daniel Walker | 5e96da5 | 2010-05-12 13:43:28 -0700 | [diff] [blame] | 46 | { |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 47 | int id = to_pcom_clk(clk)->id; |
| 48 | |
| 49 | /* Ignore clocks that are always on */ |
| 50 | if (id == P_EBI1_CLK || id == P_EBI1_FIXED_CLK) |
| 51 | return; |
| 52 | |
Daniel Walker | 5e96da5 | 2010-05-12 13:43:28 -0700 | [diff] [blame] | 53 | msm_proc_comm(PCOM_CLKCTL_RPC_DISABLE, &id, NULL); |
| 54 | } |
| 55 | |
| 56 | int pc_clk_reset(unsigned id, enum clk_reset_action action) |
| 57 | { |
| 58 | int rc; |
| 59 | |
| 60 | if (action == CLK_RESET_ASSERT) |
| 61 | rc = msm_proc_comm(PCOM_CLKCTL_RPC_RESET_ASSERT, &id, NULL); |
| 62 | else |
| 63 | rc = msm_proc_comm(PCOM_CLKCTL_RPC_RESET_DEASSERT, &id, NULL); |
| 64 | |
| 65 | if (rc < 0) |
| 66 | return rc; |
| 67 | else |
| 68 | return (int)id < 0 ? -EINVAL : 0; |
| 69 | } |
| 70 | |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 71 | static int pc_reset(struct clk *clk, enum clk_reset_action action) |
| 72 | { |
| 73 | int id = to_pcom_clk(clk)->id; |
| 74 | return pc_clk_reset(id, action); |
| 75 | } |
| 76 | |
Matt Wagantall | 77952c4 | 2011-11-08 18:45:48 -0800 | [diff] [blame] | 77 | static int _pc_clk_set_rate(struct clk *clk, unsigned long rate) |
Daniel Walker | 5e96da5 | 2010-05-12 13:43:28 -0700 | [diff] [blame] | 78 | { |
| 79 | /* The rate _might_ be rounded off to the nearest KHz value by the |
| 80 | * remote function. So a return value of 0 doesn't necessarily mean |
| 81 | * that the exact rate was set successfully. |
| 82 | */ |
Matt Wagantall | 9de3bfb | 2011-11-03 20:13:12 -0700 | [diff] [blame] | 83 | unsigned r = rate; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 84 | int id = to_pcom_clk(clk)->id; |
Matt Wagantall | 9de3bfb | 2011-11-03 20:13:12 -0700 | [diff] [blame] | 85 | int rc = msm_proc_comm(PCOM_CLKCTL_RPC_SET_RATE, &id, &r); |
Daniel Walker | 5e96da5 | 2010-05-12 13:43:28 -0700 | [diff] [blame] | 86 | if (rc < 0) |
| 87 | return rc; |
| 88 | else |
| 89 | return (int)id < 0 ? -EINVAL : 0; |
| 90 | } |
| 91 | |
Matt Wagantall | 77952c4 | 2011-11-08 18:45:48 -0800 | [diff] [blame] | 92 | static int _pc_clk_set_min_rate(struct clk *clk, unsigned long rate) |
Daniel Walker | 5e96da5 | 2010-05-12 13:43:28 -0700 | [diff] [blame] | 93 | { |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 94 | int rc; |
| 95 | int id = to_pcom_clk(clk)->id; |
| 96 | bool ignore_error = (cpu_is_msm7x27() && id == P_EBI1_CLK && |
| 97 | rate >= INT_MAX); |
Matt Wagantall | 9de3bfb | 2011-11-03 20:13:12 -0700 | [diff] [blame] | 98 | unsigned r = rate; |
| 99 | rc = msm_proc_comm(PCOM_CLKCTL_RPC_MIN_RATE, &id, &r); |
Daniel Walker | 5e96da5 | 2010-05-12 13:43:28 -0700 | [diff] [blame] | 100 | if (rc < 0) |
| 101 | return rc; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 102 | else if (ignore_error) |
| 103 | return 0; |
Daniel Walker | 5e96da5 | 2010-05-12 13:43:28 -0700 | [diff] [blame] | 104 | else |
| 105 | return (int)id < 0 ? -EINVAL : 0; |
| 106 | } |
| 107 | |
Matt Wagantall | 77952c4 | 2011-11-08 18:45:48 -0800 | [diff] [blame] | 108 | static int pc_clk_set_rate(struct clk *clk, unsigned long rate) |
| 109 | { |
| 110 | if (clk->flags & CLKFLAG_MIN) |
| 111 | return _pc_clk_set_min_rate(clk, rate); |
| 112 | else |
| 113 | return _pc_clk_set_rate(clk, rate); |
| 114 | } |
| 115 | |
Matt Wagantall | 9de3bfb | 2011-11-03 20:13:12 -0700 | [diff] [blame] | 116 | static int pc_clk_set_max_rate(struct clk *clk, unsigned long rate) |
Daniel Walker | 5e96da5 | 2010-05-12 13:43:28 -0700 | [diff] [blame] | 117 | { |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 118 | int id = to_pcom_clk(clk)->id; |
Matt Wagantall | 9de3bfb | 2011-11-03 20:13:12 -0700 | [diff] [blame] | 119 | unsigned r = rate; |
| 120 | int rc = msm_proc_comm(PCOM_CLKCTL_RPC_MAX_RATE, &id, &r); |
Daniel Walker | 5e96da5 | 2010-05-12 13:43:28 -0700 | [diff] [blame] | 121 | if (rc < 0) |
| 122 | return rc; |
| 123 | else |
| 124 | return (int)id < 0 ? -EINVAL : 0; |
| 125 | } |
| 126 | |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 127 | static int pc_clk_set_flags(struct clk *clk, unsigned flags) |
Daniel Walker | 5e96da5 | 2010-05-12 13:43:28 -0700 | [diff] [blame] | 128 | { |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 129 | int id = to_pcom_clk(clk)->id; |
Daniel Walker | 5e96da5 | 2010-05-12 13:43:28 -0700 | [diff] [blame] | 130 | int rc = msm_proc_comm(PCOM_CLKCTL_RPC_SET_FLAGS, &id, &flags); |
| 131 | if (rc < 0) |
| 132 | return rc; |
| 133 | else |
| 134 | return (int)id < 0 ? -EINVAL : 0; |
| 135 | } |
| 136 | |
Matt Wagantall | 9de3bfb | 2011-11-03 20:13:12 -0700 | [diff] [blame] | 137 | static int pc_clk_set_ext_config(struct clk *clk, unsigned long config) |
Daniel Walker | 5e96da5 | 2010-05-12 13:43:28 -0700 | [diff] [blame] | 138 | { |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 139 | int id = to_pcom_clk(clk)->id; |
Matt Wagantall | 9de3bfb | 2011-11-03 20:13:12 -0700 | [diff] [blame] | 140 | unsigned c = config; |
| 141 | int rc = msm_proc_comm(PCOM_CLKCTL_RPC_SET_EXT_CONFIG, &id, &c); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 142 | if (rc < 0) |
| 143 | return rc; |
| 144 | else |
| 145 | return (int)id < 0 ? -EINVAL : 0; |
| 146 | } |
| 147 | |
Matt Wagantall | 9de3bfb | 2011-11-03 20:13:12 -0700 | [diff] [blame] | 148 | static unsigned long pc_clk_get_rate(struct clk *clk) |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 149 | { |
| 150 | int id = to_pcom_clk(clk)->id; |
Daniel Walker | 5e96da5 | 2010-05-12 13:43:28 -0700 | [diff] [blame] | 151 | if (msm_proc_comm(PCOM_CLKCTL_RPC_RATE, &id, NULL)) |
| 152 | return 0; |
| 153 | else |
| 154 | return id; |
| 155 | } |
| 156 | |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 157 | static int pc_clk_is_enabled(struct clk *clk) |
Daniel Walker | 5e96da5 | 2010-05-12 13:43:28 -0700 | [diff] [blame] | 158 | { |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 159 | int id = to_pcom_clk(clk)->id; |
Daniel Walker | 5e96da5 | 2010-05-12 13:43:28 -0700 | [diff] [blame] | 160 | if (msm_proc_comm(PCOM_CLKCTL_RPC_ENABLED, &id, NULL)) |
| 161 | return 0; |
| 162 | else |
| 163 | return id; |
| 164 | } |
| 165 | |
Matt Wagantall | 9de3bfb | 2011-11-03 20:13:12 -0700 | [diff] [blame] | 166 | static long pc_clk_round_rate(struct clk *clk, unsigned long rate) |
Daniel Walker | 5e96da5 | 2010-05-12 13:43:28 -0700 | [diff] [blame] | 167 | { |
| 168 | |
| 169 | /* Not really supported; pc_clk_set_rate() does rounding on it's own. */ |
| 170 | return rate; |
| 171 | } |
| 172 | |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 173 | static bool pc_clk_is_local(struct clk *clk) |
Stephen Boyd | 2a52220 | 2011-02-23 09:37:41 -0800 | [diff] [blame] | 174 | { |
| 175 | return false; |
| 176 | } |
| 177 | |
Daniel Walker | 5e96da5 | 2010-05-12 13:43:28 -0700 | [diff] [blame] | 178 | struct clk_ops clk_ops_pcom = { |
| 179 | .enable = pc_clk_enable, |
| 180 | .disable = pc_clk_disable, |
| 181 | .auto_off = pc_clk_disable, |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 182 | .reset = pc_reset, |
Daniel Walker | 5e96da5 | 2010-05-12 13:43:28 -0700 | [diff] [blame] | 183 | .set_rate = pc_clk_set_rate, |
Daniel Walker | 5e96da5 | 2010-05-12 13:43:28 -0700 | [diff] [blame] | 184 | .set_max_rate = pc_clk_set_max_rate, |
| 185 | .set_flags = pc_clk_set_flags, |
| 186 | .get_rate = pc_clk_get_rate, |
| 187 | .is_enabled = pc_clk_is_enabled, |
| 188 | .round_rate = pc_clk_round_rate, |
Stephen Boyd | 2a52220 | 2011-02-23 09:37:41 -0800 | [diff] [blame] | 189 | .is_local = pc_clk_is_local, |
Daniel Walker | 5e96da5 | 2010-05-12 13:43:28 -0700 | [diff] [blame] | 190 | }; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 191 | |
| 192 | struct clk_ops clk_ops_pcom_ext_config = { |
| 193 | .enable = pc_clk_enable, |
| 194 | .disable = pc_clk_disable, |
| 195 | .auto_off = pc_clk_disable, |
| 196 | .reset = pc_reset, |
| 197 | .set_rate = pc_clk_set_ext_config, |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 198 | .set_max_rate = pc_clk_set_max_rate, |
| 199 | .set_flags = pc_clk_set_flags, |
| 200 | .get_rate = pc_clk_get_rate, |
| 201 | .is_enabled = pc_clk_is_enabled, |
| 202 | .round_rate = pc_clk_round_rate, |
| 203 | .is_local = pc_clk_is_local, |
| 204 | }; |
| 205 | |