blob: b8cc99961fc95720acbd5d6cd89c4be45ac09d9b [file] [log] [blame]
Joonwoo Park11133b82013-01-03 17:26:38 -08001/* Copyright (c) 2012-2013, The Linux Foundation. All rights reserved.
Joonwoo Parka8890262012-10-15 12:04:27 -07002 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License version 2 and
5 * only version 2 as published by the Free Software Foundation.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 */
12#include <linux/module.h>
13#include <linux/init.h>
14#include <linux/firmware.h>
15#include <linux/slab.h>
16#include <linux/platform_device.h>
17#include <linux/device.h>
18#include <linux/printk.h>
19#include <linux/ratelimit.h>
20#include <linux/debugfs.h>
21#include <linux/mfd/wcd9xxx/core.h>
22#include <linux/mfd/wcd9xxx/wcd9xxx_registers.h>
23#include <linux/mfd/wcd9xxx/wcd9320_registers.h>
24#include <linux/mfd/wcd9xxx/pdata.h>
25#include <sound/pcm.h>
26#include <sound/pcm_params.h>
27#include <sound/soc.h>
28#include <sound/soc-dapm.h>
29#include <sound/tlv.h>
30#include <linux/bitops.h>
31#include <linux/delay.h>
32#include <linux/pm_runtime.h>
33#include <linux/kernel.h>
34#include <linux/gpio.h>
35#include "wcd9xxx-resmgr.h"
36
37static char wcd9xxx_event_string[][64] = {
38 "WCD9XXX_EVENT_INVALID",
39
40 "WCD9XXX_EVENT_PRE_RCO_ON",
41 "WCD9XXX_EVENT_POST_RCO_ON",
42 "WCD9XXX_EVENT_PRE_RCO_OFF",
43 "WCD9XXX_EVENT_POST_RCO_OFF",
44
45 "WCD9XXX_EVENT_PRE_MCLK_ON",
46 "WCD9XXX_EVENT_POST_MCLK_ON",
47 "WCD9XXX_EVENT_PRE_MCLK_OFF",
48 "WCD9XXX_EVENT_POST_MCLK_OFF",
49
50 "WCD9XXX_EVENT_PRE_BG_OFF",
51 "WCD9XXX_EVENT_POST_BG_OFF",
52 "WCD9XXX_EVENT_PRE_BG_AUDIO_ON",
53 "WCD9XXX_EVENT_POST_BG_AUDIO_ON",
54 "WCD9XXX_EVENT_PRE_BG_MBHC_ON",
55 "WCD9XXX_EVENT_POST_BG_MBHC_ON",
56
57 "WCD9XXX_EVENT_PRE_MICBIAS_1_OFF",
58 "WCD9XXX_EVENT_POST_MICBIAS_1_OFF",
59 "WCD9XXX_EVENT_PRE_MICBIAS_2_OFF",
60 "WCD9XXX_EVENT_POST_MICBIAS_2_OFF",
61 "WCD9XXX_EVENT_PRE_MICBIAS_3_OFF",
62 "WCD9XXX_EVENT_POST_MICBIAS_3_OFF",
63 "WCD9XXX_EVENT_PRE_MICBIAS_4_OFF",
64 "WCD9XXX_EVENT_POST_MICBIAS_4_OFF",
65 "WCD9XXX_EVENT_PRE_MICBIAS_1_ON",
66 "WCD9XXX_EVENT_POST_MICBIAS_1_ON",
67 "WCD9XXX_EVENT_PRE_MICBIAS_2_ON",
68 "WCD9XXX_EVENT_POST_MICBIAS_2_ON",
69 "WCD9XXX_EVENT_PRE_MICBIAS_3_ON",
70 "WCD9XXX_EVENT_POST_MICBIAS_3_ON",
71 "WCD9XXX_EVENT_PRE_MICBIAS_4_ON",
72 "WCD9XXX_EVENT_POST_MICBIAS_4_ON",
73
74 "WCD9XXX_EVENT_PRE_CFILT_1_OFF",
75 "WCD9XXX_EVENT_POST_CFILT_1_OFF",
76 "WCD9XXX_EVENT_PRE_CFILT_2_OFF",
77 "WCD9XXX_EVENT_POST_CFILT_2_OFF",
78 "WCD9XXX_EVENT_PRE_CFILT_3_OFF",
79 "WCD9XXX_EVENT_POST_CFILT_3_OFF",
80 "WCD9XXX_EVENT_PRE_CFILT_1_ON",
81 "WCD9XXX_EVENT_POST_CFILT_1_ON",
82 "WCD9XXX_EVENT_PRE_CFILT_2_ON",
83 "WCD9XXX_EVENT_POST_CFILT_2_ON",
84 "WCD9XXX_EVENT_PRE_CFILT_3_ON",
85 "WCD9XXX_EVENT_POST_CFILT_3_ON",
86
87 "WCD9XXX_EVENT_PRE_HPHL_PA_ON",
88 "WCD9XXX_EVENT_POST_HPHL_PA_OFF",
89 "WCD9XXX_EVENT_PRE_HPHR_PA_ON",
90 "WCD9XXX_EVENT_POST_HPHR_PA_OFF",
91
92 "WCD9XXX_EVENT_POST_RESUME",
93
94 "WCD9XXX_EVENT_LAST",
95};
96
Joonwoo Parkcc52d472013-01-28 10:10:12 -080097struct wcd9xxx_resmgr_cond_entry {
98 unsigned short reg;
99 int shift;
100 bool invert;
101 enum wcd9xxx_resmgr_cond cond;
102 struct list_head list;
103};
104
Joonwoo Parka8890262012-10-15 12:04:27 -0700105static enum wcd9xxx_clock_type wcd9xxx_save_clock(struct wcd9xxx_resmgr
106 *resmgr);
107static void wcd9xxx_restore_clock(struct wcd9xxx_resmgr *resmgr,
108 enum wcd9xxx_clock_type type);
109
110const char *wcd9xxx_get_event_string(enum wcd9xxx_notify_event type)
111{
112 return wcd9xxx_event_string[type];
113}
114
115void wcd9xxx_resmgr_notifier_call(struct wcd9xxx_resmgr *resmgr,
116 const enum wcd9xxx_notify_event e)
117{
118 pr_debug("%s: notifier call event %d\n", __func__, e);
119 blocking_notifier_call_chain(&resmgr->notifier, e, resmgr);
120}
121
Joonwoo Parkd87ec4c2012-10-30 15:44:18 -0700122static void wcd9xxx_disable_bg(struct wcd9xxx_resmgr *resmgr)
Joonwoo Parka8890262012-10-15 12:04:27 -0700123{
124 /* Notify bg mode change */
125 wcd9xxx_resmgr_notifier_call(resmgr, WCD9XXX_EVENT_PRE_BG_OFF);
126 /* Disable bg */
Joonwoo Park11133b82013-01-03 17:26:38 -0800127 snd_soc_update_bits(resmgr->codec, WCD9XXX_A_BIAS_CENTRAL_BG_CTL,
128 0x03, 0x00);
Joonwoo Parka8890262012-10-15 12:04:27 -0700129 usleep_range(100, 100);
130 /* Notify bg mode change */
131 wcd9xxx_resmgr_notifier_call(resmgr, WCD9XXX_EVENT_POST_BG_OFF);
132}
133
Joonwoo Parkd87ec4c2012-10-30 15:44:18 -0700134/*
135 * BG enablement should always enable in slow mode.
136 * The fast mode doesn't need to be enabled as fast mode BG is to be driven
137 * by MBHC override.
138 */
139static void wcd9xxx_enable_bg(struct wcd9xxx_resmgr *resmgr)
Joonwoo Parka8890262012-10-15 12:04:27 -0700140{
141 struct snd_soc_codec *codec = resmgr->codec;
142
Joonwoo Parkd87ec4c2012-10-30 15:44:18 -0700143 /* Enable BG in slow mode and precharge */
Joonwoo Parka8890262012-10-15 12:04:27 -0700144 snd_soc_update_bits(codec, WCD9XXX_A_BIAS_CENTRAL_BG_CTL, 0x80, 0x80);
145 snd_soc_update_bits(codec, WCD9XXX_A_BIAS_CENTRAL_BG_CTL, 0x04, 0x04);
146 snd_soc_update_bits(codec, WCD9XXX_A_BIAS_CENTRAL_BG_CTL, 0x01, 0x01);
147 usleep_range(1000, 1000);
148 snd_soc_update_bits(codec, WCD9XXX_A_BIAS_CENTRAL_BG_CTL, 0x80, 0x00);
Joonwoo Parkd87ec4c2012-10-30 15:44:18 -0700149}
150
151static void wcd9xxx_enable_bg_audio(struct wcd9xxx_resmgr *resmgr)
152{
153 /* Notify bandgap mode change */
154 wcd9xxx_resmgr_notifier_call(resmgr, WCD9XXX_EVENT_PRE_BG_AUDIO_ON);
155 wcd9xxx_enable_bg(resmgr);
Joonwoo Parka8890262012-10-15 12:04:27 -0700156 /* Notify bandgap mode change */
157 wcd9xxx_resmgr_notifier_call(resmgr, WCD9XXX_EVENT_POST_BG_AUDIO_ON);
158}
159
160static void wcd9xxx_enable_bg_mbhc(struct wcd9xxx_resmgr *resmgr)
161{
162 struct snd_soc_codec *codec = resmgr->codec;
163
164 /* Notify bandgap mode change */
165 wcd9xxx_resmgr_notifier_call(resmgr, WCD9XXX_EVENT_PRE_BG_MBHC_ON);
166
167 /*
Joonwoo Parka8890262012-10-15 12:04:27 -0700168 * mclk should be off or clk buff source souldn't be VBG
169 * Let's turn off mclk always
170 */
171 WARN_ON(snd_soc_read(codec, WCD9XXX_A_CLK_BUFF_EN2) & (1 << 2));
Joonwoo Parkd87ec4c2012-10-30 15:44:18 -0700172 wcd9xxx_enable_bg(resmgr);
Joonwoo Parka8890262012-10-15 12:04:27 -0700173 /* Notify bandgap mode change */
174 wcd9xxx_resmgr_notifier_call(resmgr, WCD9XXX_EVENT_POST_BG_MBHC_ON);
175}
176
Joonwoo Parka8890262012-10-15 12:04:27 -0700177static void wcd9xxx_disable_clock_block(struct wcd9xxx_resmgr *resmgr)
178{
179 struct snd_soc_codec *codec = resmgr->codec;
180
181 pr_debug("%s: enter\n", __func__);
Joonwoo Park533b3682013-06-13 11:41:21 -0700182 WCD9XXX_BG_CLK_ASSERT_LOCKED(resmgr);
Joonwoo Parka8890262012-10-15 12:04:27 -0700183
184 /* Notify */
185 if (resmgr->clk_type == WCD9XXX_CLK_RCO)
186 wcd9xxx_resmgr_notifier_call(resmgr, WCD9XXX_EVENT_PRE_RCO_OFF);
187 else
188 wcd9xxx_resmgr_notifier_call(resmgr,
189 WCD9XXX_EVENT_PRE_MCLK_OFF);
190 /* Disable clock */
191 snd_soc_update_bits(codec, WCD9XXX_A_CLK_BUFF_EN2, 0x04, 0x00);
192 usleep_range(50, 50);
193 snd_soc_update_bits(codec, WCD9XXX_A_CLK_BUFF_EN2, 0x02, 0x02);
194 snd_soc_update_bits(codec, WCD9XXX_A_CLK_BUFF_EN1, 0x05, 0x00);
195 usleep_range(50, 50);
196 /* Notify */
197 if (resmgr->clk_type == WCD9XXX_CLK_RCO)
198 wcd9xxx_resmgr_notifier_call(resmgr,
199 WCD9XXX_EVENT_POST_RCO_OFF);
200 else
201 wcd9xxx_resmgr_notifier_call(resmgr,
202 WCD9XXX_EVENT_POST_MCLK_OFF);
203 pr_debug("%s: leave\n", __func__);
204}
205
Ravishankar Sarawadi839fcf32012-11-14 12:13:00 -0800206void wcd9xxx_resmgr_post_ssr(struct wcd9xxx_resmgr *resmgr)
207{
208 int old_bg_audio_users, old_bg_mbhc_users;
Ravishankar Sarawadi2293efe2013-01-11 16:37:23 -0800209 int old_clk_rco_users, old_clk_mclk_users;
Ravishankar Sarawadi839fcf32012-11-14 12:13:00 -0800210
Ravishankar Sarawadi2293efe2013-01-11 16:37:23 -0800211 pr_debug("%s: enter\n", __func__);
Ravishankar Sarawadi839fcf32012-11-14 12:13:00 -0800212
Joonwoo Park973fd352013-06-19 11:38:53 -0700213 WCD9XXX_BG_CLK_LOCK(resmgr);
Ravishankar Sarawadi839fcf32012-11-14 12:13:00 -0800214 old_bg_audio_users = resmgr->bg_audio_users;
Ravishankar Sarawadi839fcf32012-11-14 12:13:00 -0800215 old_bg_mbhc_users = resmgr->bg_mbhc_users;
Ravishankar Sarawadi2293efe2013-01-11 16:37:23 -0800216 old_clk_rco_users = resmgr->clk_rco_users;
217 old_clk_mclk_users = resmgr->clk_mclk_users;
218 resmgr->bg_audio_users = 0;
Ravishankar Sarawadi839fcf32012-11-14 12:13:00 -0800219 resmgr->bg_mbhc_users = 0;
Ravishankar Sarawadi2293efe2013-01-11 16:37:23 -0800220 resmgr->bandgap_type = WCD9XXX_BANDGAP_OFF;
221 resmgr->clk_rco_users = 0;
222 resmgr->clk_mclk_users = 0;
223 resmgr->clk_type = WCD9XXX_CLK_OFF;
Ravishankar Sarawadi839fcf32012-11-14 12:13:00 -0800224
Ravishankar Sarawadi2293efe2013-01-11 16:37:23 -0800225 if (old_bg_audio_users) {
226 while (old_bg_audio_users--)
227 wcd9xxx_resmgr_get_bandgap(resmgr,
228 WCD9XXX_BANDGAP_AUDIO_MODE);
229 }
Ravishankar Sarawadi839fcf32012-11-14 12:13:00 -0800230
Ravishankar Sarawadi2293efe2013-01-11 16:37:23 -0800231 if (old_bg_mbhc_users) {
232 while (old_bg_mbhc_users--)
233 wcd9xxx_resmgr_get_bandgap(resmgr,
234 WCD9XXX_BANDGAP_MBHC_MODE);
235 }
236
237 if (old_clk_mclk_users) {
238 while (old_clk_mclk_users--)
239 wcd9xxx_resmgr_get_clk_block(resmgr, WCD9XXX_CLK_MCLK);
240 }
241
242 if (old_clk_rco_users) {
243 while (old_clk_rco_users--)
244 wcd9xxx_resmgr_get_clk_block(resmgr, WCD9XXX_CLK_RCO);
245 }
Joonwoo Park973fd352013-06-19 11:38:53 -0700246 WCD9XXX_BG_CLK_UNLOCK(resmgr);
Ravishankar Sarawadi2293efe2013-01-11 16:37:23 -0800247 pr_debug("%s: leave\n", __func__);
Ravishankar Sarawadi839fcf32012-11-14 12:13:00 -0800248}
249
Joonwoo Parka8890262012-10-15 12:04:27 -0700250/*
251 * wcd9xxx_resmgr_get_bandgap : Vote for bandgap ref
252 * choice : WCD9XXX_BANDGAP_AUDIO_MODE, WCD9XXX_BANDGAP_MBHC_MODE
253 */
254void wcd9xxx_resmgr_get_bandgap(struct wcd9xxx_resmgr *resmgr,
255 const enum wcd9xxx_bandgap_type choice)
256{
257 enum wcd9xxx_clock_type clock_save;
258
259 pr_debug("%s: enter, wants %d\n", __func__, choice);
260
Joonwoo Park533b3682013-06-13 11:41:21 -0700261 WCD9XXX_BG_CLK_ASSERT_LOCKED(resmgr);
Joonwoo Parka8890262012-10-15 12:04:27 -0700262 switch (choice) {
263 case WCD9XXX_BANDGAP_AUDIO_MODE:
264 resmgr->bg_audio_users++;
265 if (resmgr->bg_audio_users == 1 && resmgr->bg_mbhc_users) {
266 /*
267 * Current bg is MBHC mode, about to switch to
268 * audio mode.
269 */
270 WARN_ON(resmgr->bandgap_type !=
271 WCD9XXX_BANDGAP_MBHC_MODE);
272
273 /* BG mode can be changed only with clock off */
274 clock_save = wcd9xxx_save_clock(resmgr);
275 /* Swtich BG mode */
Joonwoo Parkd87ec4c2012-10-30 15:44:18 -0700276 wcd9xxx_disable_bg(resmgr);
277 wcd9xxx_enable_bg_audio(resmgr);
Joonwoo Parka8890262012-10-15 12:04:27 -0700278 /* restore clock */
279 wcd9xxx_restore_clock(resmgr, clock_save);
280 } else if (resmgr->bg_audio_users == 1) {
281 /* currently off, just enable it */
282 WARN_ON(resmgr->bandgap_type != WCD9XXX_BANDGAP_OFF);
Joonwoo Parkd87ec4c2012-10-30 15:44:18 -0700283 wcd9xxx_enable_bg_audio(resmgr);
Joonwoo Parka8890262012-10-15 12:04:27 -0700284 }
285 resmgr->bandgap_type = WCD9XXX_BANDGAP_AUDIO_MODE;
286 break;
287 case WCD9XXX_BANDGAP_MBHC_MODE:
288 resmgr->bg_mbhc_users++;
289 if (resmgr->bandgap_type == WCD9XXX_BANDGAP_MBHC_MODE ||
290 resmgr->bandgap_type == WCD9XXX_BANDGAP_AUDIO_MODE)
291 /* do nothing */
292 break;
293
294 /* bg mode can be changed only with clock off */
295 clock_save = wcd9xxx_save_clock(resmgr);
296 /* enable bg with MBHC mode */
297 wcd9xxx_enable_bg_mbhc(resmgr);
298 /* restore clock */
299 wcd9xxx_restore_clock(resmgr, clock_save);
300 /* save current mode */
301 resmgr->bandgap_type = WCD9XXX_BANDGAP_MBHC_MODE;
302 break;
303 default:
304 pr_err("%s: Error, Invalid bandgap settings\n", __func__);
305 break;
306 }
307
308 pr_debug("%s: bg users audio %d, mbhc %d\n", __func__,
309 resmgr->bg_audio_users, resmgr->bg_mbhc_users);
310}
311
312/*
313 * wcd9xxx_resmgr_put_bandgap : Unvote bandgap ref that has been voted
314 * choice : WCD9XXX_BANDGAP_AUDIO_MODE, WCD9XXX_BANDGAP_MBHC_MODE
315 */
316void wcd9xxx_resmgr_put_bandgap(struct wcd9xxx_resmgr *resmgr,
317 enum wcd9xxx_bandgap_type choice)
318{
319 enum wcd9xxx_clock_type clock_save;
320
321 pr_debug("%s: enter choice %d\n", __func__, choice);
322
Joonwoo Park533b3682013-06-13 11:41:21 -0700323 WCD9XXX_BG_CLK_ASSERT_LOCKED(resmgr);
Joonwoo Parka8890262012-10-15 12:04:27 -0700324 switch (choice) {
325 case WCD9XXX_BANDGAP_AUDIO_MODE:
326 if (--resmgr->bg_audio_users == 0) {
327 if (resmgr->bg_mbhc_users) {
328 /* bg mode can be changed only with clock off */
329 clock_save = wcd9xxx_save_clock(resmgr);
330 /* switch to MBHC mode */
331 wcd9xxx_enable_bg_mbhc(resmgr);
332 /* restore clock */
333 wcd9xxx_restore_clock(resmgr, clock_save);
334 resmgr->bandgap_type =
335 WCD9XXX_BANDGAP_MBHC_MODE;
336 } else {
337 /* turn off */
338 wcd9xxx_disable_bg(resmgr);
339 resmgr->bandgap_type = WCD9XXX_BANDGAP_OFF;
340 }
341 }
342 break;
343 case WCD9XXX_BANDGAP_MBHC_MODE:
344 WARN(resmgr->bandgap_type == WCD9XXX_BANDGAP_OFF,
345 "Unexpected bandgap type %d\n", resmgr->bandgap_type);
346 if (--resmgr->bg_mbhc_users == 0 &&
347 resmgr->bandgap_type == WCD9XXX_BANDGAP_MBHC_MODE) {
348 wcd9xxx_disable_bg(resmgr);
349 resmgr->bandgap_type = WCD9XXX_BANDGAP_OFF;
350 }
351 break;
352 default:
353 pr_err("%s: Error, Invalid bandgap settings\n", __func__);
354 break;
355 }
356
357 pr_debug("%s: bg users audio %d, mbhc %d\n", __func__,
358 resmgr->bg_audio_users, resmgr->bg_mbhc_users);
359}
360
361void wcd9xxx_resmgr_enable_rx_bias(struct wcd9xxx_resmgr *resmgr, u32 enable)
362{
363 struct snd_soc_codec *codec = resmgr->codec;
364
365 if (enable) {
366 resmgr->rx_bias_count++;
367 if (resmgr->rx_bias_count == 1)
368 snd_soc_update_bits(codec, WCD9XXX_A_RX_COM_BIAS,
369 0x80, 0x80);
370 } else {
371 resmgr->rx_bias_count--;
372 if (!resmgr->rx_bias_count)
373 snd_soc_update_bits(codec, WCD9XXX_A_RX_COM_BIAS,
374 0x80, 0x00);
375 }
376}
377
378int wcd9xxx_resmgr_enable_config_mode(struct snd_soc_codec *codec, int enable)
379{
380 pr_debug("%s: enable = %d\n", __func__, enable);
381 if (enable) {
382 snd_soc_update_bits(codec, WCD9XXX_A_RC_OSC_FREQ, 0x10, 0);
383 /* bandgap mode to fast */
384 snd_soc_write(codec, WCD9XXX_A_BIAS_OSC_BG_CTL, 0x17);
385 usleep_range(5, 5);
386 snd_soc_update_bits(codec, WCD9XXX_A_RC_OSC_FREQ, 0x80, 0x80);
387 snd_soc_update_bits(codec, WCD9XXX_A_RC_OSC_TEST, 0x80, 0x80);
388 usleep_range(10, 10);
389 snd_soc_update_bits(codec, WCD9XXX_A_RC_OSC_TEST, 0x80, 0);
390 usleep_range(10000, 10000);
391 snd_soc_update_bits(codec, WCD9XXX_A_CLK_BUFF_EN1, 0x08, 0x08);
392 } else {
393 snd_soc_update_bits(codec, WCD9XXX_A_BIAS_OSC_BG_CTL, 0x1, 0);
394 snd_soc_update_bits(codec, WCD9XXX_A_RC_OSC_FREQ, 0x80, 0);
Joonwoo Parka8890262012-10-15 12:04:27 -0700395 }
396
397 return 0;
398}
399
400static void wcd9xxx_enable_clock_block(struct wcd9xxx_resmgr *resmgr,
401 int config_mode)
402{
403 struct snd_soc_codec *codec = resmgr->codec;
404
405 pr_debug("%s: config_mode = %d\n", __func__, config_mode);
406 /* transit to RCO requires mclk off */
407 WARN_ON(snd_soc_read(codec, WCD9XXX_A_CLK_BUFF_EN2) & (1 << 2));
408 if (config_mode) {
409 /* Notify */
410 wcd9xxx_resmgr_notifier_call(resmgr, WCD9XXX_EVENT_PRE_RCO_ON);
411 /* enable RCO and switch to it */
412 wcd9xxx_resmgr_enable_config_mode(codec, 1);
413 snd_soc_write(codec, WCD9XXX_A_CLK_BUFF_EN2, 0x02);
414 usleep_range(1000, 1000);
415 } else {
416 /* Notify */
417 wcd9xxx_resmgr_notifier_call(resmgr, WCD9XXX_EVENT_PRE_MCLK_ON);
418 /* switch to MCLK */
419 snd_soc_update_bits(codec, WCD9XXX_A_CLK_BUFF_EN1, 0x08, 0x00);
420 /* if RCO is enabled, switch from it */
421 if (snd_soc_read(codec, WCD9XXX_A_RC_OSC_FREQ) & 0x80) {
422 snd_soc_write(codec, WCD9XXX_A_CLK_BUFF_EN2, 0x02);
423 wcd9xxx_resmgr_enable_config_mode(codec, 0);
424 }
Bhalchandra Gajare27259302013-03-28 16:56:59 -0700425 /* clk source to ext clk and clk buff ref to VBG */
426 snd_soc_update_bits(codec, WCD9XXX_A_CLK_BUFF_EN1, 0x0C, 0x04);
Joonwoo Parka8890262012-10-15 12:04:27 -0700427 }
428
429 snd_soc_update_bits(codec, WCD9XXX_A_CLK_BUFF_EN1, 0x01, 0x01);
Bhalchandra Gajare27259302013-03-28 16:56:59 -0700430 /* sleep time required by codec hardware to enable clock buffer */
431 usleep_range(1000, 1200);
432
Joonwoo Parka8890262012-10-15 12:04:27 -0700433 snd_soc_update_bits(codec, WCD9XXX_A_CLK_BUFF_EN2, 0x02, 0x00);
434
435 /* on MCLK */
436 snd_soc_update_bits(codec, WCD9XXX_A_CLK_BUFF_EN2, 0x04, 0x04);
437 snd_soc_update_bits(codec, WCD9XXX_A_CDC_CLK_MCLK_CTL, 0x01, 0x01);
438 usleep_range(50, 50);
439
440 /* Notify */
441 if (config_mode)
442 wcd9xxx_resmgr_notifier_call(resmgr,
443 WCD9XXX_EVENT_POST_RCO_ON);
444 else
445 wcd9xxx_resmgr_notifier_call(resmgr,
446 WCD9XXX_EVENT_POST_MCLK_ON);
447}
448
449/*
450 * disable clock and return previous clock state
451 */
452static enum wcd9xxx_clock_type wcd9xxx_save_clock(struct wcd9xxx_resmgr *resmgr)
453{
Joonwoo Park533b3682013-06-13 11:41:21 -0700454 WCD9XXX_BG_CLK_ASSERT_LOCKED(resmgr);
Joonwoo Parka8890262012-10-15 12:04:27 -0700455 if (resmgr->clk_type != WCD9XXX_CLK_OFF)
456 wcd9xxx_disable_clock_block(resmgr);
457 return resmgr->clk_type != WCD9XXX_CLK_OFF;
458}
459
460static void wcd9xxx_restore_clock(struct wcd9xxx_resmgr *resmgr,
461 enum wcd9xxx_clock_type type)
462{
463 if (type != WCD9XXX_CLK_OFF)
464 wcd9xxx_enable_clock_block(resmgr, type == WCD9XXX_CLK_RCO);
465}
466
467void wcd9xxx_resmgr_get_clk_block(struct wcd9xxx_resmgr *resmgr,
468 enum wcd9xxx_clock_type type)
469{
470 pr_debug("%s: current %d, requested %d, rco_users %d, mclk_users %d\n",
471 __func__, resmgr->clk_type, type,
472 resmgr->clk_rco_users, resmgr->clk_mclk_users);
Joonwoo Park533b3682013-06-13 11:41:21 -0700473 WCD9XXX_BG_CLK_ASSERT_LOCKED(resmgr);
Joonwoo Parka8890262012-10-15 12:04:27 -0700474 switch (type) {
475 case WCD9XXX_CLK_RCO:
476 if (++resmgr->clk_rco_users == 1 &&
477 resmgr->clk_type == WCD9XXX_CLK_OFF) {
478 /* enable RCO and switch to it */
479 wcd9xxx_enable_clock_block(resmgr, 1);
480 resmgr->clk_type = WCD9XXX_CLK_RCO;
481 }
482 break;
483 case WCD9XXX_CLK_MCLK:
484 if (++resmgr->clk_mclk_users == 1 &&
485 resmgr->clk_type == WCD9XXX_CLK_OFF) {
486 /* switch to MCLK */
487 wcd9xxx_enable_clock_block(resmgr, 0);
488 resmgr->clk_type = WCD9XXX_CLK_MCLK;
489 } else if (resmgr->clk_mclk_users == 1 &&
490 resmgr->clk_type == WCD9XXX_CLK_RCO) {
491 /* if RCO is enabled, switch from it */
492 WARN_ON(!(snd_soc_read(resmgr->codec,
493 WCD9XXX_A_RC_OSC_FREQ) & 0x80));
494 /* disable clock block */
495 wcd9xxx_disable_clock_block(resmgr);
496 /* switch to RCO */
497 wcd9xxx_enable_clock_block(resmgr, 0);
498 resmgr->clk_type = WCD9XXX_CLK_MCLK;
499 }
500 break;
501 default:
502 pr_err("%s: Error, Invalid clock get request %d\n", __func__,
503 type);
504 break;
505 }
506 pr_debug("%s: leave\n", __func__);
507}
508
509void wcd9xxx_resmgr_put_clk_block(struct wcd9xxx_resmgr *resmgr,
510 enum wcd9xxx_clock_type type)
511{
512 pr_debug("%s: current %d, put %d\n", __func__, resmgr->clk_type, type);
513
Joonwoo Park533b3682013-06-13 11:41:21 -0700514 WCD9XXX_BG_CLK_ASSERT_LOCKED(resmgr);
Joonwoo Parka8890262012-10-15 12:04:27 -0700515 switch (type) {
516 case WCD9XXX_CLK_RCO:
517 if (--resmgr->clk_rco_users == 0 &&
518 resmgr->clk_type == WCD9XXX_CLK_RCO) {
519 wcd9xxx_disable_clock_block(resmgr);
520 resmgr->clk_type = WCD9XXX_CLK_OFF;
521 }
522 break;
523 case WCD9XXX_CLK_MCLK:
524 if (--resmgr->clk_mclk_users == 0 &&
525 resmgr->clk_rco_users == 0) {
526 wcd9xxx_disable_clock_block(resmgr);
527 resmgr->clk_type = WCD9XXX_CLK_OFF;
528 } else if (resmgr->clk_mclk_users == 0 &&
529 resmgr->clk_rco_users) {
530 /* disable clock */
531 wcd9xxx_disable_clock_block(resmgr);
532 /* switch to RCO */
533 wcd9xxx_enable_clock_block(resmgr, 1);
534 resmgr->clk_type = WCD9XXX_CLK_RCO;
535 }
536 break;
537 default:
538 pr_err("%s: Error, Invalid clock get request %d\n", __func__,
539 type);
540 break;
541 }
542 WARN_ON(resmgr->clk_rco_users < 0);
543 WARN_ON(resmgr->clk_mclk_users < 0);
544
545 pr_debug("%s: new rco_users %d, mclk_users %d\n", __func__,
546 resmgr->clk_rco_users, resmgr->clk_mclk_users);
547}
548
549static void wcd9xxx_resmgr_update_cfilt_usage(struct wcd9xxx_resmgr *resmgr,
550 enum wcd9xxx_cfilt_sel cfilt_sel,
551 bool inc)
552{
553 u16 micb_cfilt_reg;
554 enum wcd9xxx_notify_event e_pre_on, e_post_off;
555 struct snd_soc_codec *codec = resmgr->codec;
556
557 switch (cfilt_sel) {
558 case WCD9XXX_CFILT1_SEL:
559 micb_cfilt_reg = WCD9XXX_A_MICB_CFILT_1_CTL;
560 e_pre_on = WCD9XXX_EVENT_PRE_CFILT_1_ON;
561 e_post_off = WCD9XXX_EVENT_POST_CFILT_1_OFF;
562 break;
563 case WCD9XXX_CFILT2_SEL:
564 micb_cfilt_reg = WCD9XXX_A_MICB_CFILT_2_CTL;
565 e_pre_on = WCD9XXX_EVENT_PRE_CFILT_2_ON;
566 e_post_off = WCD9XXX_EVENT_POST_CFILT_2_OFF;
567 break;
568 case WCD9XXX_CFILT3_SEL:
569 micb_cfilt_reg = WCD9XXX_A_MICB_CFILT_3_CTL;
570 e_pre_on = WCD9XXX_EVENT_PRE_CFILT_3_ON;
571 e_post_off = WCD9XXX_EVENT_POST_CFILT_3_OFF;
572 break;
573 default:
574 WARN(1, "Invalid CFILT selection %d\n", cfilt_sel);
575 return; /* should not happen */
576 }
577
578 if (inc) {
579 if ((resmgr->cfilt_users[cfilt_sel]++) == 0) {
580 /* Notify */
581 wcd9xxx_resmgr_notifier_call(resmgr, e_pre_on);
582 /* Enable CFILT */
583 snd_soc_update_bits(codec, micb_cfilt_reg, 0x80, 0x80);
584 }
585 } else {
586 /*
587 * Check if count not zero, decrease
588 * then check if zero, go ahead disable cfilter
589 */
590 WARN(resmgr->cfilt_users[cfilt_sel] == 0,
591 "Invalid CFILT use count 0\n");
592 if ((--resmgr->cfilt_users[cfilt_sel]) == 0) {
593 /* Disable CFILT */
594 snd_soc_update_bits(codec, micb_cfilt_reg, 0x80, 0);
595 /* Notify MBHC so MBHC can switch CFILT to fast mode */
596 wcd9xxx_resmgr_notifier_call(resmgr, e_post_off);
597 }
598 }
599}
600
601void wcd9xxx_resmgr_cfilt_get(struct wcd9xxx_resmgr *resmgr,
602 enum wcd9xxx_cfilt_sel cfilt_sel)
603{
604 return wcd9xxx_resmgr_update_cfilt_usage(resmgr, cfilt_sel, true);
605}
606
607void wcd9xxx_resmgr_cfilt_put(struct wcd9xxx_resmgr *resmgr,
608 enum wcd9xxx_cfilt_sel cfilt_sel)
609{
610 return wcd9xxx_resmgr_update_cfilt_usage(resmgr, cfilt_sel, false);
611}
612
613int wcd9xxx_resmgr_get_k_val(struct wcd9xxx_resmgr *resmgr,
614 unsigned int cfilt_mv)
615{
616 int rc = -EINVAL;
617 unsigned int ldoh_v = resmgr->pdata->micbias.ldoh_v;
618 unsigned min_mv, max_mv;
619
620 switch (ldoh_v) {
621 case WCD9XXX_LDOH_1P95_V:
622 min_mv = 160;
623 max_mv = 1800;
624 break;
625 case WCD9XXX_LDOH_2P35_V:
626 min_mv = 200;
627 max_mv = 2200;
628 break;
629 case WCD9XXX_LDOH_2P75_V:
630 min_mv = 240;
631 max_mv = 2600;
632 break;
633 case WCD9XXX_LDOH_3P0_V:
634 min_mv = 260;
635 max_mv = 2875;
636 break;
637 default:
638 goto done;
639 }
640
641 if (cfilt_mv < min_mv || cfilt_mv > max_mv)
642 goto done;
643
644 for (rc = 4; rc <= 44; rc++) {
645 min_mv = max_mv * (rc) / 44;
646 if (min_mv >= cfilt_mv) {
647 rc -= 4;
648 break;
649 }
650 }
651done:
652 return rc;
653}
654
Joonwoo Park3b268ca2013-07-17 13:11:43 -0700655static void wcd9xxx_resmgr_cond_trigger_cond(struct wcd9xxx_resmgr *resmgr,
656 enum wcd9xxx_resmgr_cond cond)
Joonwoo Parkcc52d472013-01-28 10:10:12 -0800657{
658 struct list_head *l;
659 struct wcd9xxx_resmgr_cond_entry *e;
660 bool set;
661
662 pr_debug("%s: enter\n", __func__);
Joonwoo Park3b268ca2013-07-17 13:11:43 -0700663 /* update bit if cond isn't available or cond is set */
664 set = !test_bit(cond, &resmgr->cond_avail_flags) ||
665 !!test_bit(cond, &resmgr->cond_flags);
Joonwoo Parkcc52d472013-01-28 10:10:12 -0800666 list_for_each(l, &resmgr->update_bit_cond_h) {
667 e = list_entry(l, struct wcd9xxx_resmgr_cond_entry, list);
668 if (e->cond == cond)
669 snd_soc_update_bits(resmgr->codec, e->reg,
670 1 << e->shift,
671 (set ? !e->invert : e->invert)
672 << e->shift);
673 }
674 pr_debug("%s: leave\n", __func__);
675}
676
Joonwoo Park3b268ca2013-07-17 13:11:43 -0700677/*
678 * wcd9xxx_regmgr_cond_register : notify resmgr conditions in the condbits are
679 * avaliable and notified.
680 * condbits : contains bitmask of enum wcd9xxx_resmgr_cond
681 */
682void wcd9xxx_regmgr_cond_register(struct wcd9xxx_resmgr *resmgr,
683 unsigned long condbits)
684{
685 unsigned int cond;
686
687 for_each_set_bit(cond, &condbits, BITS_PER_BYTE * sizeof(condbits)) {
688 mutex_lock(&resmgr->update_bit_cond_lock);
689 WARN(test_bit(cond, &resmgr->cond_avail_flags),
690 "Condition 0x%0x is already registered\n", cond);
691 set_bit(cond, &resmgr->cond_avail_flags);
692 wcd9xxx_resmgr_cond_trigger_cond(resmgr, cond);
693 mutex_unlock(&resmgr->update_bit_cond_lock);
694 pr_debug("%s: Condition 0x%x is registered\n", __func__, cond);
695 }
696}
697
698void wcd9xxx_regmgr_cond_deregister(struct wcd9xxx_resmgr *resmgr,
699 unsigned long condbits)
700{
701 unsigned int cond;
702
703 for_each_set_bit(cond, &condbits, BITS_PER_BYTE * sizeof(condbits)) {
704 mutex_lock(&resmgr->update_bit_cond_lock);
705 WARN(!test_bit(cond, &resmgr->cond_avail_flags),
706 "Condition 0x%0x isn't registered\n", cond);
707 clear_bit(cond, &resmgr->cond_avail_flags);
708 wcd9xxx_resmgr_cond_trigger_cond(resmgr, cond);
709 mutex_unlock(&resmgr->update_bit_cond_lock);
710 pr_debug("%s: Condition 0x%x is deregistered\n", __func__,
711 cond);
712 }
713}
714
Joonwoo Parkcc52d472013-01-28 10:10:12 -0800715void wcd9xxx_resmgr_cond_update_cond(struct wcd9xxx_resmgr *resmgr,
716 enum wcd9xxx_resmgr_cond cond, bool set)
717{
Joonwoo Parkccccba72013-04-26 11:19:46 -0700718 mutex_lock(&resmgr->update_bit_cond_lock);
Joonwoo Parkcc52d472013-01-28 10:10:12 -0800719 if ((set && !test_and_set_bit(cond, &resmgr->cond_flags)) ||
720 (!set && test_and_clear_bit(cond, &resmgr->cond_flags))) {
721 pr_debug("%s: Resource %d condition changed to %s\n", __func__,
722 cond, set ? "set" : "clear");
723 wcd9xxx_resmgr_cond_trigger_cond(resmgr, cond);
724 }
Joonwoo Parkccccba72013-04-26 11:19:46 -0700725 mutex_unlock(&resmgr->update_bit_cond_lock);
Joonwoo Parkcc52d472013-01-28 10:10:12 -0800726}
727
728int wcd9xxx_resmgr_add_cond_update_bits(struct wcd9xxx_resmgr *resmgr,
729 enum wcd9xxx_resmgr_cond cond,
730 unsigned short reg, int shift,
731 bool invert)
732{
733 struct wcd9xxx_resmgr_cond_entry *entry;
734
Joonwoo Parkcc52d472013-01-28 10:10:12 -0800735 entry = kmalloc(sizeof(*entry), GFP_KERNEL);
736 if (!entry)
737 return -ENOMEM;
738
739 entry->cond = cond;
740 entry->reg = reg;
741 entry->shift = shift;
742 entry->invert = invert;
Joonwoo Park3edb9892013-03-05 17:44:54 -0800743
Joonwoo Parkccccba72013-04-26 11:19:46 -0700744 mutex_lock(&resmgr->update_bit_cond_lock);
Joonwoo Parkcc52d472013-01-28 10:10:12 -0800745 list_add_tail(&entry->list, &resmgr->update_bit_cond_h);
746
747 wcd9xxx_resmgr_cond_trigger_cond(resmgr, cond);
Joonwoo Parkccccba72013-04-26 11:19:46 -0700748 mutex_unlock(&resmgr->update_bit_cond_lock);
Joonwoo Parkcc52d472013-01-28 10:10:12 -0800749
750 return 0;
751}
752
753/*
754 * wcd9xxx_resmgr_rm_cond_update_bits :
755 * Clear bit and remove from the conditional bit update list
756 */
757int wcd9xxx_resmgr_rm_cond_update_bits(struct wcd9xxx_resmgr *resmgr,
758 enum wcd9xxx_resmgr_cond cond,
759 unsigned short reg, int shift,
760 bool invert)
761{
762 struct list_head *l, *next;
763 struct wcd9xxx_resmgr_cond_entry *e = NULL;
764
765 pr_debug("%s: enter\n", __func__);
Joonwoo Parkccccba72013-04-26 11:19:46 -0700766 mutex_lock(&resmgr->update_bit_cond_lock);
Joonwoo Parkcc52d472013-01-28 10:10:12 -0800767 list_for_each_safe(l, next, &resmgr->update_bit_cond_h) {
768 e = list_entry(l, struct wcd9xxx_resmgr_cond_entry, list);
769 if (e->reg == reg && e->shift == shift && e->invert == invert) {
770 snd_soc_update_bits(resmgr->codec, e->reg,
771 1 << e->shift,
772 e->invert << e->shift);
773 list_del(&e->list);
Joonwoo Parkccccba72013-04-26 11:19:46 -0700774 mutex_unlock(&resmgr->update_bit_cond_lock);
Joonwoo Parkcc52d472013-01-28 10:10:12 -0800775 kfree(e);
776 return 0;
777 }
778 }
Joonwoo Parkccccba72013-04-26 11:19:46 -0700779 mutex_unlock(&resmgr->update_bit_cond_lock);
Joonwoo Parkcc52d472013-01-28 10:10:12 -0800780 pr_err("%s: Cannot find update bit entry reg 0x%x, shift %d\n",
781 __func__, e ? e->reg : 0, e ? e->shift : 0);
782
783 return -EINVAL;
784}
785
Joonwoo Parka8890262012-10-15 12:04:27 -0700786int wcd9xxx_resmgr_register_notifier(struct wcd9xxx_resmgr *resmgr,
787 struct notifier_block *nblock)
788{
789 return blocking_notifier_chain_register(&resmgr->notifier, nblock);
790}
791
792int wcd9xxx_resmgr_unregister_notifier(struct wcd9xxx_resmgr *resmgr,
793 struct notifier_block *nblock)
794{
795 return blocking_notifier_chain_unregister(&resmgr->notifier, nblock);
796}
797
798int wcd9xxx_resmgr_init(struct wcd9xxx_resmgr *resmgr,
799 struct snd_soc_codec *codec,
Bhalchandra Gajare9b4eb3b2013-04-30 12:00:41 -0700800 struct wcd9xxx_core_resource *core_res,
Joonwoo Parka8890262012-10-15 12:04:27 -0700801 struct wcd9xxx_pdata *pdata,
802 struct wcd9xxx_reg_address *reg_addr)
803{
804 WARN(ARRAY_SIZE(wcd9xxx_event_string) != WCD9XXX_EVENT_LAST + 1,
805 "Event string table isn't up to date!, %d != %d\n",
806 ARRAY_SIZE(wcd9xxx_event_string), WCD9XXX_EVENT_LAST + 1);
807
808 resmgr->bandgap_type = WCD9XXX_BANDGAP_OFF;
809 resmgr->codec = codec;
810 /* This gives access of core handle to lock/unlock suspend */
Bhalchandra Gajare9b4eb3b2013-04-30 12:00:41 -0700811 resmgr->core_res = core_res;
Joonwoo Parka8890262012-10-15 12:04:27 -0700812 resmgr->pdata = pdata;
813 resmgr->reg_addr = reg_addr;
814
Joonwoo Parkcc52d472013-01-28 10:10:12 -0800815 INIT_LIST_HEAD(&resmgr->update_bit_cond_h);
816
Joonwoo Parka8890262012-10-15 12:04:27 -0700817 BLOCKING_INIT_NOTIFIER_HEAD(&resmgr->notifier);
818
819 mutex_init(&resmgr->codec_resource_lock);
Joonwoo Park533b3682013-06-13 11:41:21 -0700820 mutex_init(&resmgr->codec_bg_clk_lock);
Joonwoo Parkccccba72013-04-26 11:19:46 -0700821 mutex_init(&resmgr->update_bit_cond_lock);
Joonwoo Parka8890262012-10-15 12:04:27 -0700822
823 return 0;
824}
825
826void wcd9xxx_resmgr_deinit(struct wcd9xxx_resmgr *resmgr)
827{
Joonwoo Parkccccba72013-04-26 11:19:46 -0700828 mutex_destroy(&resmgr->update_bit_cond_lock);
Joonwoo Park533b3682013-06-13 11:41:21 -0700829 mutex_destroy(&resmgr->codec_bg_clk_lock);
Joonwoo Parka8890262012-10-15 12:04:27 -0700830 mutex_destroy(&resmgr->codec_resource_lock);
831}
832
833void wcd9xxx_resmgr_bcl_lock(struct wcd9xxx_resmgr *resmgr)
834{
835 mutex_lock(&resmgr->codec_resource_lock);
836}
837
838void wcd9xxx_resmgr_bcl_unlock(struct wcd9xxx_resmgr *resmgr)
839{
840 mutex_unlock(&resmgr->codec_resource_lock);
841}
842
843MODULE_DESCRIPTION("wcd9xxx resmgr module");
844MODULE_LICENSE("GPL v2");