blob: d4957b4edb62850d8414c449eed8c31a62969355 [file] [log] [blame]
Thara Gopinath984aa6d2010-05-29 22:02:22 +05301/*
2 * OMAP SmartReflex Voltage Control
3 *
4 * Author: Thara Gopinath <thara@ti.com>
5 *
Jean Pihet21ff63a2012-04-25 16:43:17 +05306 * Copyright (C) 2012 Texas Instruments, Inc.
Thara Gopinath984aa6d2010-05-29 22:02:22 +05307 * Thara Gopinath <thara@ti.com>
8 *
9 * Copyright (C) 2008 Nokia Corporation
10 * Kalle Jokiniemi
11 *
12 * Copyright (C) 2007 Texas Instruments, Inc.
13 * Lesly A M <x0080970@ti.com>
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
Tony Lindgrena1bcc1d2011-11-07 12:27:10 -080020#include <linux/module.h>
Thara Gopinath984aa6d2010-05-29 22:02:22 +053021#include <linux/interrupt.h>
22#include <linux/clk.h>
23#include <linux/io.h>
24#include <linux/debugfs.h>
25#include <linux/delay.h>
26#include <linux/slab.h>
27#include <linux/pm_runtime.h>
Jean Pihetb86aeaf2012-04-25 16:06:20 +053028#include <linux/power/smartreflex.h>
Thara Gopinath984aa6d2010-05-29 22:02:22 +053029
Tony Lindgrenec2c0822012-08-27 17:43:01 -070030#include <plat/cpu.h>
31
Thara Gopinath984aa6d2010-05-29 22:02:22 +053032#define SMARTREFLEX_NAME_LEN 16
Thara Gopinath077fcec2010-10-27 20:29:37 +053033#define NVALUE_NAME_LEN 40
Thara Gopinath984aa6d2010-05-29 22:02:22 +053034#define SR_DISABLE_TIMEOUT 200
35
Thara Gopinath984aa6d2010-05-29 22:02:22 +053036/* sr_list contains all the instances of smartreflex module */
37static LIST_HEAD(sr_list);
38
39static struct omap_sr_class_data *sr_class;
40static struct omap_sr_pmic_data *sr_pmic_data;
Kevin Hilman633ef8b2011-04-05 14:39:11 -070041static struct dentry *sr_dbg_dir;
Thara Gopinath984aa6d2010-05-29 22:02:22 +053042
43static inline void sr_write_reg(struct omap_sr *sr, unsigned offset, u32 value)
44{
45 __raw_writel(value, (sr->base + offset));
46}
47
48static inline void sr_modify_reg(struct omap_sr *sr, unsigned offset, u32 mask,
49 u32 value)
50{
51 u32 reg_val;
Thara Gopinath984aa6d2010-05-29 22:02:22 +053052
53 /*
54 * Smartreflex error config register is special as it contains
55 * certain status bits which if written a 1 into means a clear
56 * of those bits. So in order to make sure no accidental write of
57 * 1 happens to those status bits, do a clear of them in the read
58 * value. This mean this API doesn't rewrite values in these bits
59 * if they are currently set, but does allow the caller to write
60 * those bits.
61 */
Nishanth Menonade6ec02012-02-29 23:33:41 +010062 if (sr->ip_type == SR_TYPE_V1 && offset == ERRCONFIG_V1)
63 mask |= ERRCONFIG_STATUS_V1_MASK;
64 else if (sr->ip_type == SR_TYPE_V2 && offset == ERRCONFIG_V2)
65 mask |= ERRCONFIG_VPBOUNDINTST_V2;
Thara Gopinath984aa6d2010-05-29 22:02:22 +053066
Nishanth Menonade6ec02012-02-29 23:33:41 +010067 reg_val = __raw_readl(sr->base + offset);
68 reg_val &= ~mask;
69
70 value &= mask;
Thara Gopinath984aa6d2010-05-29 22:02:22 +053071
72 reg_val |= value;
73
74 __raw_writel(reg_val, (sr->base + offset));
75}
76
77static inline u32 sr_read_reg(struct omap_sr *sr, unsigned offset)
78{
79 return __raw_readl(sr->base + offset);
80}
81
82static struct omap_sr *_sr_lookup(struct voltagedomain *voltdm)
83{
84 struct omap_sr *sr_info;
85
86 if (!voltdm) {
87 pr_err("%s: Null voltage domain passed!\n", __func__);
88 return ERR_PTR(-EINVAL);
89 }
90
91 list_for_each_entry(sr_info, &sr_list, node) {
92 if (voltdm == sr_info->voltdm)
93 return sr_info;
94 }
95
96 return ERR_PTR(-ENODATA);
97}
98
99static irqreturn_t sr_interrupt(int irq, void *data)
100{
Felipe Balbi4018bfe2012-02-29 23:33:46 +0100101 struct omap_sr *sr_info = data;
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530102 u32 status = 0;
103
Felipe Balbi4018bfe2012-02-29 23:33:46 +0100104 switch (sr_info->ip_type) {
105 case SR_TYPE_V1:
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530106 /* Read the status bits */
107 status = sr_read_reg(sr_info, ERRCONFIG_V1);
108
109 /* Clear them by writing back */
110 sr_write_reg(sr_info, ERRCONFIG_V1, status);
Felipe Balbi4018bfe2012-02-29 23:33:46 +0100111 break;
112 case SR_TYPE_V2:
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530113 /* Read the status bits */
Felipe Balbi5a4f1842011-11-23 14:43:37 -0800114 status = sr_read_reg(sr_info, IRQSTATUS);
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530115
116 /* Clear them by writing back */
117 sr_write_reg(sr_info, IRQSTATUS, status);
Felipe Balbi4018bfe2012-02-29 23:33:46 +0100118 break;
119 default:
120 dev_err(&sr_info->pdev->dev, "UNKNOWN IP type %d\n",
121 sr_info->ip_type);
122 return IRQ_NONE;
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530123 }
124
Nishanth Menon7a89afa2011-02-14 12:16:36 +0530125 if (sr_class->notify)
Jean Pihet80821c92012-04-24 10:22:12 +0530126 sr_class->notify(sr_info, status);
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530127
128 return IRQ_HANDLED;
129}
130
131static void sr_set_clk_length(struct omap_sr *sr)
132{
133 struct clk *sys_ck;
134 u32 sys_clk_speed;
135
Thara Gopinathb35cecf2010-08-18 12:23:12 +0530136 if (cpu_is_omap34xx())
137 sys_ck = clk_get(NULL, "sys_ck");
138 else
139 sys_ck = clk_get(NULL, "sys_clkin_ck");
140
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530141 if (IS_ERR(sys_ck)) {
142 dev_err(&sr->pdev->dev, "%s: unable to get sys clk\n",
143 __func__);
144 return;
145 }
Felipe Balbi4018bfe2012-02-29 23:33:46 +0100146
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530147 sys_clk_speed = clk_get_rate(sys_ck);
148 clk_put(sys_ck);
149
150 switch (sys_clk_speed) {
151 case 12000000:
152 sr->clk_length = SRCLKLENGTH_12MHZ_SYSCLK;
153 break;
154 case 13000000:
155 sr->clk_length = SRCLKLENGTH_13MHZ_SYSCLK;
156 break;
157 case 19200000:
158 sr->clk_length = SRCLKLENGTH_19MHZ_SYSCLK;
159 break;
160 case 26000000:
161 sr->clk_length = SRCLKLENGTH_26MHZ_SYSCLK;
162 break;
163 case 38400000:
164 sr->clk_length = SRCLKLENGTH_38MHZ_SYSCLK;
165 break;
166 default:
167 dev_err(&sr->pdev->dev, "%s: Invalid sysclk value: %d\n",
168 __func__, sys_clk_speed);
169 break;
170 }
171}
172
173static void sr_set_regfields(struct omap_sr *sr)
174{
175 /*
176 * For time being these values are defined in smartreflex.h
177 * and populated during init. May be they can be moved to board
178 * file or pmic specific data structure. In that case these structure
179 * fields will have to be populated using the pdata or pmic structure.
180 */
Thara Gopinathb35cecf2010-08-18 12:23:12 +0530181 if (cpu_is_omap34xx() || cpu_is_omap44xx()) {
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530182 sr->err_weight = OMAP3430_SR_ERRWEIGHT;
183 sr->err_maxlimit = OMAP3430_SR_ERRMAXLIMIT;
184 sr->accum_data = OMAP3430_SR_ACCUMDATA;
Jean Pihet1fcd3062012-04-24 10:47:14 +0530185 if (!(strcmp(sr->name, "smartreflex_mpu_iva"))) {
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530186 sr->senn_avgweight = OMAP3430_SR1_SENNAVGWEIGHT;
187 sr->senp_avgweight = OMAP3430_SR1_SENPAVGWEIGHT;
188 } else {
189 sr->senn_avgweight = OMAP3430_SR2_SENNAVGWEIGHT;
190 sr->senp_avgweight = OMAP3430_SR2_SENPAVGWEIGHT;
191 }
192 }
193}
194
195static void sr_start_vddautocomp(struct omap_sr *sr)
196{
197 if (!sr_class || !(sr_class->enable) || !(sr_class->configure)) {
198 dev_warn(&sr->pdev->dev,
199 "%s: smartreflex class driver not registered\n",
200 __func__);
201 return;
202 }
203
Jean Pihet80821c92012-04-24 10:22:12 +0530204 if (!sr_class->enable(sr))
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530205 sr->autocomp_active = true;
206}
207
208static void sr_stop_vddautocomp(struct omap_sr *sr)
209{
210 if (!sr_class || !(sr_class->disable)) {
211 dev_warn(&sr->pdev->dev,
212 "%s: smartreflex class driver not registered\n",
213 __func__);
214 return;
215 }
216
217 if (sr->autocomp_active) {
Jean Pihet80821c92012-04-24 10:22:12 +0530218 sr_class->disable(sr, 1);
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530219 sr->autocomp_active = false;
220 }
221}
222
223/*
224 * This function handles the intializations which have to be done
225 * only when both sr device and class driver regiter has
226 * completed. This will be attempted to be called from both sr class
227 * driver register and sr device intializtion API's. Only one call
228 * will ultimately succeed.
229 *
Vitaliy Ivanovfb914eb2011-06-23 20:01:55 +0300230 * Currently this function registers interrupt handler for a particular SR
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530231 * if smartreflex class driver is already registered and has
232 * requested for interrupts and the SR interrupt line in present.
233 */
234static int sr_late_init(struct omap_sr *sr_info)
235{
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530236 struct omap_sr_data *pdata = sr_info->pdev->dev.platform_data;
237 struct resource *mem;
238 int ret = 0;
239
Nishanth Menon7a89afa2011-02-14 12:16:36 +0530240 if (sr_class->notify && sr_class->notify_flags && sr_info->irq) {
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530241 ret = request_irq(sr_info->irq, sr_interrupt,
Jean Pihet8b765d72012-04-24 10:41:27 +0530242 0, sr_info->name, sr_info);
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530243 if (ret)
244 goto error;
Nishanth Menon1279ba52011-02-14 12:41:10 +0530245 disable_irq(sr_info->irq);
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530246 }
247
248 if (pdata && pdata->enable_on_init)
249 sr_start_vddautocomp(sr_info);
250
251 return ret;
252
253error:
Nishanth Menon442155a2011-02-14 12:33:13 +0530254 iounmap(sr_info->base);
255 mem = platform_get_resource(sr_info->pdev, IORESOURCE_MEM, 0);
256 release_mem_region(mem->start, resource_size(mem));
257 list_del(&sr_info->node);
258 dev_err(&sr_info->pdev->dev, "%s: ERROR in registering"
259 "interrupt handler. Smartreflex will"
260 "not function as desired\n", __func__);
Nishanth Menon442155a2011-02-14 12:33:13 +0530261 kfree(sr_info);
Felipe Balbi4018bfe2012-02-29 23:33:46 +0100262
Nishanth Menon442155a2011-02-14 12:33:13 +0530263 return ret;
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530264}
265
266static void sr_v1_disable(struct omap_sr *sr)
267{
268 int timeout = 0;
Nishanth Menoncfec9c52012-02-29 23:33:42 +0100269 int errconf_val = ERRCONFIG_MCUACCUMINTST | ERRCONFIG_MCUVALIDINTST |
270 ERRCONFIG_MCUBOUNDINTST;
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530271
272 /* Enable MCUDisableAcknowledge interrupt */
273 sr_modify_reg(sr, ERRCONFIG_V1,
274 ERRCONFIG_MCUDISACKINTEN, ERRCONFIG_MCUDISACKINTEN);
275
276 /* SRCONFIG - disable SR */
277 sr_modify_reg(sr, SRCONFIG, SRCONFIG_SRENABLE, 0x0);
278
Nishanth Menoncfec9c52012-02-29 23:33:42 +0100279 /* Disable all other SR interrupts and clear the status as needed */
280 if (sr_read_reg(sr, ERRCONFIG_V1) & ERRCONFIG_VPBOUNDINTST_V1)
281 errconf_val |= ERRCONFIG_VPBOUNDINTST_V1;
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530282 sr_modify_reg(sr, ERRCONFIG_V1,
283 (ERRCONFIG_MCUACCUMINTEN | ERRCONFIG_MCUVALIDINTEN |
284 ERRCONFIG_MCUBOUNDINTEN | ERRCONFIG_VPBOUNDINTEN_V1),
Nishanth Menoncfec9c52012-02-29 23:33:42 +0100285 errconf_val);
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530286
287 /*
288 * Wait for SR to be disabled.
289 * wait until ERRCONFIG.MCUDISACKINTST = 1. Typical latency is 1us.
290 */
Jean Pihet50e4a7d2012-04-24 10:56:40 +0530291 sr_test_cond_timeout((sr_read_reg(sr, ERRCONFIG_V1) &
292 ERRCONFIG_MCUDISACKINTST), SR_DISABLE_TIMEOUT,
293 timeout);
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530294
295 if (timeout >= SR_DISABLE_TIMEOUT)
296 dev_warn(&sr->pdev->dev, "%s: Smartreflex disable timedout\n",
297 __func__);
298
299 /* Disable MCUDisableAcknowledge interrupt & clear pending interrupt */
300 sr_modify_reg(sr, ERRCONFIG_V1, ERRCONFIG_MCUDISACKINTEN,
301 ERRCONFIG_MCUDISACKINTST);
302}
303
304static void sr_v2_disable(struct omap_sr *sr)
305{
306 int timeout = 0;
307
308 /* Enable MCUDisableAcknowledge interrupt */
309 sr_write_reg(sr, IRQENABLE_SET, IRQENABLE_MCUDISABLEACKINT);
310
311 /* SRCONFIG - disable SR */
312 sr_modify_reg(sr, SRCONFIG, SRCONFIG_SRENABLE, 0x0);
313
Nishanth Menoncfec9c52012-02-29 23:33:42 +0100314 /*
315 * Disable all other SR interrupts and clear the status
316 * write to status register ONLY on need basis - only if status
317 * is set.
318 */
319 if (sr_read_reg(sr, ERRCONFIG_V2) & ERRCONFIG_VPBOUNDINTST_V2)
320 sr_modify_reg(sr, ERRCONFIG_V2, ERRCONFIG_VPBOUNDINTEN_V2,
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530321 ERRCONFIG_VPBOUNDINTST_V2);
Nishanth Menoncfec9c52012-02-29 23:33:42 +0100322 else
323 sr_modify_reg(sr, ERRCONFIG_V2, ERRCONFIG_VPBOUNDINTEN_V2,
324 0x0);
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530325 sr_write_reg(sr, IRQENABLE_CLR, (IRQENABLE_MCUACCUMINT |
326 IRQENABLE_MCUVALIDINT |
327 IRQENABLE_MCUBOUNDSINT));
328 sr_write_reg(sr, IRQSTATUS, (IRQSTATUS_MCUACCUMINT |
329 IRQSTATUS_MCVALIDINT |
330 IRQSTATUS_MCBOUNDSINT));
331
332 /*
333 * Wait for SR to be disabled.
334 * wait until IRQSTATUS.MCUDISACKINTST = 1. Typical latency is 1us.
335 */
Jean Pihet50e4a7d2012-04-24 10:56:40 +0530336 sr_test_cond_timeout((sr_read_reg(sr, IRQSTATUS) &
337 IRQSTATUS_MCUDISABLEACKINT), SR_DISABLE_TIMEOUT,
338 timeout);
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530339
340 if (timeout >= SR_DISABLE_TIMEOUT)
341 dev_warn(&sr->pdev->dev, "%s: Smartreflex disable timedout\n",
342 __func__);
343
344 /* Disable MCUDisableAcknowledge interrupt & clear pending interrupt */
345 sr_write_reg(sr, IRQENABLE_CLR, IRQENABLE_MCUDISABLEACKINT);
346 sr_write_reg(sr, IRQSTATUS, IRQSTATUS_MCUDISABLEACKINT);
347}
348
Jean Pihet5e7f2e12012-04-25 11:19:44 +0530349static struct omap_sr_nvalue_table *sr_retrieve_nvalue_row(
350 struct omap_sr *sr, u32 efuse_offs)
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530351{
352 int i;
353
354 if (!sr->nvalue_table) {
355 dev_warn(&sr->pdev->dev, "%s: Missing ntarget value table\n",
356 __func__);
Jean Pihet5e7f2e12012-04-25 11:19:44 +0530357 return NULL;
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530358 }
359
360 for (i = 0; i < sr->nvalue_count; i++) {
361 if (sr->nvalue_table[i].efuse_offs == efuse_offs)
Jean Pihet5e7f2e12012-04-25 11:19:44 +0530362 return &sr->nvalue_table[i];
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530363 }
364
Jean Pihet5e7f2e12012-04-25 11:19:44 +0530365 return NULL;
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530366}
367
368/* Public Functions */
369
370/**
371 * sr_configure_errgen() - Configures the smrtreflex to perform AVS using the
372 * error generator module.
373 * @voltdm: VDD pointer to which the SR module to be configured belongs to.
374 *
375 * This API is to be called from the smartreflex class driver to
376 * configure the error generator module inside the smartreflex module.
377 * SR settings if using the ERROR module inside Smartreflex.
378 * SR CLASS 3 by default uses only the ERROR module where as
379 * SR CLASS 2 can choose between ERROR module and MINMAXAVG
380 * module. Returns 0 on success and error value in case of failure.
381 */
382int sr_configure_errgen(struct voltagedomain *voltdm)
383{
Felipe Balbi4018bfe2012-02-29 23:33:46 +0100384 u32 sr_config, sr_errconfig, errconfig_offs;
385 u32 vpboundint_en, vpboundint_st;
386 u32 senp_en = 0, senn_en = 0;
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530387 u8 senp_shift, senn_shift;
388 struct omap_sr *sr = _sr_lookup(voltdm);
389
390 if (IS_ERR(sr)) {
Jean Pihet8b765d72012-04-24 10:41:27 +0530391 pr_warning("%s: omap_sr struct for voltdm not found\n", __func__);
Jean Pihet63371fa2012-02-29 23:33:49 +0100392 return PTR_ERR(sr);
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530393 }
394
395 if (!sr->clk_length)
396 sr_set_clk_length(sr);
397
398 senp_en = sr->senp_mod;
399 senn_en = sr->senn_mod;
400
401 sr_config = (sr->clk_length << SRCONFIG_SRCLKLENGTH_SHIFT) |
402 SRCONFIG_SENENABLE | SRCONFIG_ERRGEN_EN;
403
Felipe Balbi4018bfe2012-02-29 23:33:46 +0100404 switch (sr->ip_type) {
405 case SR_TYPE_V1:
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530406 sr_config |= SRCONFIG_DELAYCTRL;
407 senn_shift = SRCONFIG_SENNENABLE_V1_SHIFT;
408 senp_shift = SRCONFIG_SENPENABLE_V1_SHIFT;
409 errconfig_offs = ERRCONFIG_V1;
410 vpboundint_en = ERRCONFIG_VPBOUNDINTEN_V1;
411 vpboundint_st = ERRCONFIG_VPBOUNDINTST_V1;
Felipe Balbi4018bfe2012-02-29 23:33:46 +0100412 break;
413 case SR_TYPE_V2:
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530414 senn_shift = SRCONFIG_SENNENABLE_V2_SHIFT;
415 senp_shift = SRCONFIG_SENPENABLE_V2_SHIFT;
416 errconfig_offs = ERRCONFIG_V2;
417 vpboundint_en = ERRCONFIG_VPBOUNDINTEN_V2;
418 vpboundint_st = ERRCONFIG_VPBOUNDINTST_V2;
Felipe Balbi4018bfe2012-02-29 23:33:46 +0100419 break;
420 default:
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530421 dev_err(&sr->pdev->dev, "%s: Trying to Configure smartreflex"
422 "module without specifying the ip\n", __func__);
423 return -EINVAL;
424 }
425
426 sr_config |= ((senn_en << senn_shift) | (senp_en << senp_shift));
427 sr_write_reg(sr, SRCONFIG, sr_config);
428 sr_errconfig = (sr->err_weight << ERRCONFIG_ERRWEIGHT_SHIFT) |
429 (sr->err_maxlimit << ERRCONFIG_ERRMAXLIMIT_SHIFT) |
430 (sr->err_minlimit << ERRCONFIG_ERRMINLIMIT_SHIFT);
431 sr_modify_reg(sr, errconfig_offs, (SR_ERRWEIGHT_MASK |
432 SR_ERRMAXLIMIT_MASK | SR_ERRMINLIMIT_MASK),
433 sr_errconfig);
434
435 /* Enabling the interrupts if the ERROR module is used */
Nishanth Menon74754cc2012-02-29 23:33:38 +0100436 sr_modify_reg(sr, errconfig_offs, (vpboundint_en | vpboundint_st),
437 vpboundint_en);
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530438
439 return 0;
440}
441
442/**
Nishanth Menonad54c3d2012-02-29 23:33:39 +0100443 * sr_disable_errgen() - Disables SmartReflex AVS module's errgen component
444 * @voltdm: VDD pointer to which the SR module to be configured belongs to.
445 *
446 * This API is to be called from the smartreflex class driver to
447 * disable the error generator module inside the smartreflex module.
448 *
449 * Returns 0 on success and error value in case of failure.
450 */
451int sr_disable_errgen(struct voltagedomain *voltdm)
452{
Felipe Balbi4018bfe2012-02-29 23:33:46 +0100453 u32 errconfig_offs;
454 u32 vpboundint_en, vpboundint_st;
Nishanth Menonad54c3d2012-02-29 23:33:39 +0100455 struct omap_sr *sr = _sr_lookup(voltdm);
456
457 if (IS_ERR(sr)) {
Jean Pihet8b765d72012-04-24 10:41:27 +0530458 pr_warning("%s: omap_sr struct for voltdm not found\n", __func__);
Jean Pihet63371fa2012-02-29 23:33:49 +0100459 return PTR_ERR(sr);
Nishanth Menonad54c3d2012-02-29 23:33:39 +0100460 }
461
Felipe Balbi4018bfe2012-02-29 23:33:46 +0100462 switch (sr->ip_type) {
463 case SR_TYPE_V1:
Nishanth Menonad54c3d2012-02-29 23:33:39 +0100464 errconfig_offs = ERRCONFIG_V1;
465 vpboundint_en = ERRCONFIG_VPBOUNDINTEN_V1;
466 vpboundint_st = ERRCONFIG_VPBOUNDINTST_V1;
Felipe Balbi4018bfe2012-02-29 23:33:46 +0100467 break;
468 case SR_TYPE_V2:
Nishanth Menonad54c3d2012-02-29 23:33:39 +0100469 errconfig_offs = ERRCONFIG_V2;
470 vpboundint_en = ERRCONFIG_VPBOUNDINTEN_V2;
471 vpboundint_st = ERRCONFIG_VPBOUNDINTST_V2;
Felipe Balbi4018bfe2012-02-29 23:33:46 +0100472 break;
473 default:
Nishanth Menonad54c3d2012-02-29 23:33:39 +0100474 dev_err(&sr->pdev->dev, "%s: Trying to Configure smartreflex"
475 "module without specifying the ip\n", __func__);
476 return -EINVAL;
477 }
478
479 /* Disable the interrupts of ERROR module */
480 sr_modify_reg(sr, errconfig_offs, vpboundint_en | vpboundint_st, 0);
481
482 /* Disable the Sensor and errorgen */
483 sr_modify_reg(sr, SRCONFIG, SRCONFIG_SENENABLE | SRCONFIG_ERRGEN_EN, 0);
484
485 return 0;
486}
487
488/**
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530489 * sr_configure_minmax() - Configures the smrtreflex to perform AVS using the
490 * minmaxavg module.
491 * @voltdm: VDD pointer to which the SR module to be configured belongs to.
492 *
493 * This API is to be called from the smartreflex class driver to
494 * configure the minmaxavg module inside the smartreflex module.
495 * SR settings if using the ERROR module inside Smartreflex.
496 * SR CLASS 3 by default uses only the ERROR module where as
497 * SR CLASS 2 can choose between ERROR module and MINMAXAVG
498 * module. Returns 0 on success and error value in case of failure.
499 */
500int sr_configure_minmax(struct voltagedomain *voltdm)
501{
502 u32 sr_config, sr_avgwt;
503 u32 senp_en = 0, senn_en = 0;
504 u8 senp_shift, senn_shift;
505 struct omap_sr *sr = _sr_lookup(voltdm);
506
507 if (IS_ERR(sr)) {
Jean Pihet8b765d72012-04-24 10:41:27 +0530508 pr_warning("%s: omap_sr struct for voltdm not found\n", __func__);
Jean Pihet63371fa2012-02-29 23:33:49 +0100509 return PTR_ERR(sr);
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530510 }
511
512 if (!sr->clk_length)
513 sr_set_clk_length(sr);
514
515 senp_en = sr->senp_mod;
516 senn_en = sr->senn_mod;
517
518 sr_config = (sr->clk_length << SRCONFIG_SRCLKLENGTH_SHIFT) |
519 SRCONFIG_SENENABLE |
520 (sr->accum_data << SRCONFIG_ACCUMDATA_SHIFT);
521
Felipe Balbi4018bfe2012-02-29 23:33:46 +0100522 switch (sr->ip_type) {
523 case SR_TYPE_V1:
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530524 sr_config |= SRCONFIG_DELAYCTRL;
525 senn_shift = SRCONFIG_SENNENABLE_V1_SHIFT;
526 senp_shift = SRCONFIG_SENPENABLE_V1_SHIFT;
Felipe Balbi4018bfe2012-02-29 23:33:46 +0100527 break;
528 case SR_TYPE_V2:
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530529 senn_shift = SRCONFIG_SENNENABLE_V2_SHIFT;
530 senp_shift = SRCONFIG_SENPENABLE_V2_SHIFT;
Felipe Balbi4018bfe2012-02-29 23:33:46 +0100531 break;
532 default:
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530533 dev_err(&sr->pdev->dev, "%s: Trying to Configure smartreflex"
534 "module without specifying the ip\n", __func__);
535 return -EINVAL;
536 }
537
538 sr_config |= ((senn_en << senn_shift) | (senp_en << senp_shift));
539 sr_write_reg(sr, SRCONFIG, sr_config);
540 sr_avgwt = (sr->senp_avgweight << AVGWEIGHT_SENPAVGWEIGHT_SHIFT) |
541 (sr->senn_avgweight << AVGWEIGHT_SENNAVGWEIGHT_SHIFT);
542 sr_write_reg(sr, AVGWEIGHT, sr_avgwt);
543
544 /*
545 * Enabling the interrupts if MINMAXAVG module is used.
546 * TODO: check if all the interrupts are mandatory
547 */
Felipe Balbi4018bfe2012-02-29 23:33:46 +0100548 switch (sr->ip_type) {
549 case SR_TYPE_V1:
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530550 sr_modify_reg(sr, ERRCONFIG_V1,
551 (ERRCONFIG_MCUACCUMINTEN | ERRCONFIG_MCUVALIDINTEN |
552 ERRCONFIG_MCUBOUNDINTEN),
553 (ERRCONFIG_MCUACCUMINTEN | ERRCONFIG_MCUACCUMINTST |
554 ERRCONFIG_MCUVALIDINTEN | ERRCONFIG_MCUVALIDINTST |
555 ERRCONFIG_MCUBOUNDINTEN | ERRCONFIG_MCUBOUNDINTST));
Felipe Balbi4018bfe2012-02-29 23:33:46 +0100556 break;
557 case SR_TYPE_V2:
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530558 sr_write_reg(sr, IRQSTATUS,
559 IRQSTATUS_MCUACCUMINT | IRQSTATUS_MCVALIDINT |
560 IRQSTATUS_MCBOUNDSINT | IRQSTATUS_MCUDISABLEACKINT);
561 sr_write_reg(sr, IRQENABLE_SET,
562 IRQENABLE_MCUACCUMINT | IRQENABLE_MCUVALIDINT |
563 IRQENABLE_MCUBOUNDSINT | IRQENABLE_MCUDISABLEACKINT);
Felipe Balbi4018bfe2012-02-29 23:33:46 +0100564 break;
565 default:
566 dev_err(&sr->pdev->dev, "%s: Trying to Configure smartreflex"
567 "module without specifying the ip\n", __func__);
568 return -EINVAL;
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530569 }
570
571 return 0;
572}
573
574/**
575 * sr_enable() - Enables the smartreflex module.
576 * @voltdm: VDD pointer to which the SR module to be configured belongs to.
577 * @volt: The voltage at which the Voltage domain associated with
578 * the smartreflex module is operating at.
579 * This is required only to program the correct Ntarget value.
580 *
581 * This API is to be called from the smartreflex class driver to
582 * enable a smartreflex module. Returns 0 on success. Returns error
583 * value if the voltage passed is wrong or if ntarget value is wrong.
584 */
585int sr_enable(struct voltagedomain *voltdm, unsigned long volt)
586{
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530587 struct omap_volt_data *volt_data;
588 struct omap_sr *sr = _sr_lookup(voltdm);
Jean Pihet5e7f2e12012-04-25 11:19:44 +0530589 struct omap_sr_nvalue_table *nvalue_row;
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530590 int ret;
591
592 if (IS_ERR(sr)) {
Jean Pihet8b765d72012-04-24 10:41:27 +0530593 pr_warning("%s: omap_sr struct for voltdm not found\n", __func__);
Jean Pihet63371fa2012-02-29 23:33:49 +0100594 return PTR_ERR(sr);
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530595 }
596
597 volt_data = omap_voltage_get_voltdata(sr->voltdm, volt);
598
599 if (IS_ERR(volt_data)) {
600 dev_warn(&sr->pdev->dev, "%s: Unable to get voltage table"
601 "for nominal voltage %ld\n", __func__, volt);
Jean Pihet63371fa2012-02-29 23:33:49 +0100602 return PTR_ERR(volt_data);
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530603 }
604
Jean Pihet5e7f2e12012-04-25 11:19:44 +0530605 nvalue_row = sr_retrieve_nvalue_row(sr, volt_data->sr_efuse_offs);
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530606
Jean Pihet5e7f2e12012-04-25 11:19:44 +0530607 if (!nvalue_row) {
608 dev_warn(&sr->pdev->dev, "%s: failure getting SR data for this voltage %ld\n",
609 __func__, volt);
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530610 return -ENODATA;
611 }
612
613 /* errminlimit is opp dependent and hence linked to voltage */
Jean Pihet5e7f2e12012-04-25 11:19:44 +0530614 sr->err_minlimit = nvalue_row->errminlimit;
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530615
616 pm_runtime_get_sync(&sr->pdev->dev);
617
618 /* Check if SR is already enabled. If yes do nothing */
619 if (sr_read_reg(sr, SRCONFIG) & SRCONFIG_SRENABLE)
620 return 0;
621
622 /* Configure SR */
Jean Pihet80821c92012-04-24 10:22:12 +0530623 ret = sr_class->configure(sr);
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530624 if (ret)
625 return ret;
626
Jean Pihet5e7f2e12012-04-25 11:19:44 +0530627 sr_write_reg(sr, NVALUERECIPROCAL, nvalue_row->nvalue);
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530628
629 /* SRCONFIG - enable SR */
630 sr_modify_reg(sr, SRCONFIG, SRCONFIG_SRENABLE, SRCONFIG_SRENABLE);
631 return 0;
632}
633
634/**
635 * sr_disable() - Disables the smartreflex module.
636 * @voltdm: VDD pointer to which the SR module to be configured belongs to.
637 *
638 * This API is to be called from the smartreflex class driver to
639 * disable a smartreflex module.
640 */
641void sr_disable(struct voltagedomain *voltdm)
642{
643 struct omap_sr *sr = _sr_lookup(voltdm);
644
645 if (IS_ERR(sr)) {
Jean Pihet8b765d72012-04-24 10:41:27 +0530646 pr_warning("%s: omap_sr struct for voltdm not found\n", __func__);
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530647 return;
648 }
649
650 /* Check if SR clocks are already disabled. If yes do nothing */
651 if (pm_runtime_suspended(&sr->pdev->dev))
652 return;
653
654 /*
655 * Disable SR if only it is indeed enabled. Else just
656 * disable the clocks.
657 */
658 if (sr_read_reg(sr, SRCONFIG) & SRCONFIG_SRENABLE) {
Felipe Balbi4018bfe2012-02-29 23:33:46 +0100659 switch (sr->ip_type) {
660 case SR_TYPE_V1:
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530661 sr_v1_disable(sr);
Felipe Balbi4018bfe2012-02-29 23:33:46 +0100662 break;
663 case SR_TYPE_V2:
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530664 sr_v2_disable(sr);
Felipe Balbi4018bfe2012-02-29 23:33:46 +0100665 break;
666 default:
667 dev_err(&sr->pdev->dev, "UNKNOWN IP type %d\n",
668 sr->ip_type);
669 }
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530670 }
671
Colin Cross98333b32011-07-22 00:55:52 -0500672 pm_runtime_put_sync_suspend(&sr->pdev->dev);
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530673}
674
675/**
676 * sr_register_class() - API to register a smartreflex class parameters.
677 * @class_data: The structure containing various sr class specific data.
678 *
679 * This API is to be called by the smartreflex class driver to register itself
680 * with the smartreflex driver during init. Returns 0 on success else the
681 * error value.
682 */
683int sr_register_class(struct omap_sr_class_data *class_data)
684{
685 struct omap_sr *sr_info;
686
687 if (!class_data) {
688 pr_warning("%s:, Smartreflex class data passed is NULL\n",
689 __func__);
690 return -EINVAL;
691 }
692
693 if (sr_class) {
694 pr_warning("%s: Smartreflex class driver already registered\n",
695 __func__);
696 return -EBUSY;
697 }
698
699 sr_class = class_data;
700
701 /*
702 * Call into late init to do intializations that require
703 * both sr driver and sr class driver to be initiallized.
704 */
705 list_for_each_entry(sr_info, &sr_list, node)
706 sr_late_init(sr_info);
707
708 return 0;
709}
710
711/**
712 * omap_sr_enable() - API to enable SR clocks and to call into the
713 * registered smartreflex class enable API.
714 * @voltdm: VDD pointer to which the SR module to be configured belongs to.
715 *
716 * This API is to be called from the kernel in order to enable
717 * a particular smartreflex module. This API will do the initial
718 * configurations to turn on the smartreflex module and in turn call
719 * into the registered smartreflex class enable API.
720 */
721void omap_sr_enable(struct voltagedomain *voltdm)
722{
723 struct omap_sr *sr = _sr_lookup(voltdm);
724
725 if (IS_ERR(sr)) {
Jean Pihet8b765d72012-04-24 10:41:27 +0530726 pr_warning("%s: omap_sr struct for voltdm not found\n", __func__);
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530727 return;
728 }
729
730 if (!sr->autocomp_active)
731 return;
732
733 if (!sr_class || !(sr_class->enable) || !(sr_class->configure)) {
734 dev_warn(&sr->pdev->dev, "%s: smartreflex class driver not"
735 "registered\n", __func__);
736 return;
737 }
738
Jean Pihet80821c92012-04-24 10:22:12 +0530739 sr_class->enable(sr);
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530740}
741
742/**
743 * omap_sr_disable() - API to disable SR without resetting the voltage
744 * processor voltage
745 * @voltdm: VDD pointer to which the SR module to be configured belongs to.
746 *
747 * This API is to be called from the kernel in order to disable
748 * a particular smartreflex module. This API will in turn call
749 * into the registered smartreflex class disable API. This API will tell
750 * the smartreflex class disable not to reset the VP voltage after
751 * disabling smartreflex.
752 */
753void omap_sr_disable(struct voltagedomain *voltdm)
754{
755 struct omap_sr *sr = _sr_lookup(voltdm);
756
757 if (IS_ERR(sr)) {
Jean Pihet8b765d72012-04-24 10:41:27 +0530758 pr_warning("%s: omap_sr struct for voltdm not found\n", __func__);
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530759 return;
760 }
761
762 if (!sr->autocomp_active)
763 return;
764
765 if (!sr_class || !(sr_class->disable)) {
766 dev_warn(&sr->pdev->dev, "%s: smartreflex class driver not"
767 "registered\n", __func__);
768 return;
769 }
770
Jean Pihet80821c92012-04-24 10:22:12 +0530771 sr_class->disable(sr, 0);
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530772}
773
774/**
775 * omap_sr_disable_reset_volt() - API to disable SR and reset the
776 * voltage processor voltage
777 * @voltdm: VDD pointer to which the SR module to be configured belongs to.
778 *
779 * This API is to be called from the kernel in order to disable
780 * a particular smartreflex module. This API will in turn call
781 * into the registered smartreflex class disable API. This API will tell
782 * the smartreflex class disable to reset the VP voltage after
783 * disabling smartreflex.
784 */
785void omap_sr_disable_reset_volt(struct voltagedomain *voltdm)
786{
787 struct omap_sr *sr = _sr_lookup(voltdm);
788
789 if (IS_ERR(sr)) {
Jean Pihet8b765d72012-04-24 10:41:27 +0530790 pr_warning("%s: omap_sr struct for voltdm not found\n", __func__);
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530791 return;
792 }
793
794 if (!sr->autocomp_active)
795 return;
796
797 if (!sr_class || !(sr_class->disable)) {
798 dev_warn(&sr->pdev->dev, "%s: smartreflex class driver not"
799 "registered\n", __func__);
800 return;
801 }
802
Jean Pihet80821c92012-04-24 10:22:12 +0530803 sr_class->disable(sr, 1);
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530804}
805
806/**
807 * omap_sr_register_pmic() - API to register pmic specific info.
808 * @pmic_data: The structure containing pmic specific data.
809 *
810 * This API is to be called from the PMIC specific code to register with
811 * smartreflex driver pmic specific info. Currently the only info required
812 * is the smartreflex init on the PMIC side.
813 */
814void omap_sr_register_pmic(struct omap_sr_pmic_data *pmic_data)
815{
816 if (!pmic_data) {
817 pr_warning("%s: Trying to register NULL PMIC data structure"
818 "with smartreflex\n", __func__);
819 return;
820 }
821
822 sr_pmic_data = pmic_data;
823}
824
Felipe Balbi4018bfe2012-02-29 23:33:46 +0100825/* PM Debug FS entries to enable and disable smartreflex. */
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530826static int omap_sr_autocomp_show(void *data, u64 *val)
827{
Felipe Balbi4018bfe2012-02-29 23:33:46 +0100828 struct omap_sr *sr_info = data;
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530829
830 if (!sr_info) {
Stefan Weil83535842011-01-30 20:29:38 +0100831 pr_warning("%s: omap_sr struct not found\n", __func__);
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530832 return -EINVAL;
833 }
834
835 *val = sr_info->autocomp_active;
836
837 return 0;
838}
839
840static int omap_sr_autocomp_store(void *data, u64 val)
841{
Felipe Balbi4018bfe2012-02-29 23:33:46 +0100842 struct omap_sr *sr_info = data;
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530843
844 if (!sr_info) {
Stefan Weil83535842011-01-30 20:29:38 +0100845 pr_warning("%s: omap_sr struct not found\n", __func__);
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530846 return -EINVAL;
847 }
848
849 /* Sanity check */
Felipe Balbid6173692012-02-29 23:33:47 +0100850 if (val > 1) {
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530851 pr_warning("%s: Invalid argument %lld\n", __func__, val);
852 return -EINVAL;
853 }
854
Nishanth Menonac77a6f2011-02-14 21:14:17 +0530855 /* control enable/disable only if there is a delta in value */
856 if (sr_info->autocomp_active != val) {
857 if (!val)
858 sr_stop_vddautocomp(sr_info);
859 else
860 sr_start_vddautocomp(sr_info);
861 }
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530862
863 return 0;
864}
865
866DEFINE_SIMPLE_ATTRIBUTE(pm_sr_fops, omap_sr_autocomp_show,
Felipe Balbi4018bfe2012-02-29 23:33:46 +0100867 omap_sr_autocomp_store, "%llu\n");
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530868
869static int __init omap_sr_probe(struct platform_device *pdev)
870{
Felipe Balbi4018bfe2012-02-29 23:33:46 +0100871 struct omap_sr *sr_info;
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530872 struct omap_sr_data *pdata = pdev->dev.platform_data;
873 struct resource *mem, *irq;
Kevin Hilman633ef8b2011-04-05 14:39:11 -0700874 struct dentry *nvalue_dir;
Thara Gopinath077fcec2010-10-27 20:29:37 +0530875 int i, ret = 0;
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530876
Felipe Balbi4018bfe2012-02-29 23:33:46 +0100877 sr_info = kzalloc(sizeof(struct omap_sr), GFP_KERNEL);
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530878 if (!sr_info) {
879 dev_err(&pdev->dev, "%s: unable to allocate sr_info\n",
880 __func__);
881 return -ENOMEM;
882 }
883
Felipe Balbi1079a8b2012-02-29 23:33:44 +0100884 platform_set_drvdata(pdev, sr_info);
885
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530886 if (!pdata) {
887 dev_err(&pdev->dev, "%s: platform data missing\n", __func__);
Stefan Weil720bc7822011-01-30 20:26:27 +0100888 ret = -EINVAL;
889 goto err_free_devinfo;
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530890 }
891
892 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
893 if (!mem) {
894 dev_err(&pdev->dev, "%s: no mem resource\n", __func__);
895 ret = -ENODEV;
896 goto err_free_devinfo;
897 }
898
Aaro Koskinenda9e73922011-04-26 02:25:16 -0700899 mem = request_mem_region(mem->start, resource_size(mem),
900 dev_name(&pdev->dev));
901 if (!mem) {
902 dev_err(&pdev->dev, "%s: no mem region\n", __func__);
903 ret = -EBUSY;
904 goto err_free_devinfo;
905 }
906
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530907 irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
908
909 pm_runtime_enable(&pdev->dev);
Nishanth Menone13d8f32011-07-09 14:37:21 -0700910 pm_runtime_irq_safe(&pdev->dev);
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530911
Jean Pihet8b765d72012-04-24 10:41:27 +0530912 sr_info->name = kasprintf(GFP_KERNEL, "%s", pdata->name);
913 if (!sr_info->name) {
914 dev_err(&pdev->dev, "%s: Unable to alloc SR instance name\n",
915 __func__);
916 ret = -ENOMEM;
917 goto err_release_region;
918 }
919
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530920 sr_info->pdev = pdev;
921 sr_info->srid = pdev->id;
922 sr_info->voltdm = pdata->voltdm;
923 sr_info->nvalue_table = pdata->nvalue_table;
924 sr_info->nvalue_count = pdata->nvalue_count;
925 sr_info->senn_mod = pdata->senn_mod;
926 sr_info->senp_mod = pdata->senp_mod;
927 sr_info->autocomp_active = false;
928 sr_info->ip_type = pdata->ip_type;
929 sr_info->base = ioremap(mem->start, resource_size(mem));
930 if (!sr_info->base) {
931 dev_err(&pdev->dev, "%s: ioremap fail\n", __func__);
932 ret = -ENOMEM;
933 goto err_release_region;
934 }
935
936 if (irq)
937 sr_info->irq = irq->start;
938
939 sr_set_clk_length(sr_info);
940 sr_set_regfields(sr_info);
941
942 list_add(&sr_info->node, &sr_list);
943
944 /*
945 * Call into late init to do intializations that require
946 * both sr driver and sr class driver to be initiallized.
947 */
948 if (sr_class) {
949 ret = sr_late_init(sr_info);
950 if (ret) {
951 pr_warning("%s: Error in SR late init\n", __func__);
Julia Lawall14ea9602012-01-12 10:55:17 +0100952 goto err_iounmap;
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530953 }
954 }
955
956 dev_info(&pdev->dev, "%s: SmartReflex driver initialized\n", __func__);
Kevin Hilman633ef8b2011-04-05 14:39:11 -0700957 if (!sr_dbg_dir) {
958 sr_dbg_dir = debugfs_create_dir("smartreflex", NULL);
Jean Pihet54b28cd2012-02-29 23:33:48 +0100959 if (IS_ERR_OR_NULL(sr_dbg_dir)) {
Kevin Hilman633ef8b2011-04-05 14:39:11 -0700960 ret = PTR_ERR(sr_dbg_dir);
961 pr_err("%s:sr debugfs dir creation failed(%d)\n",
962 __func__, ret);
963 goto err_iounmap;
964 }
Shweta Gulatib3329a32011-02-15 13:40:30 +0530965 }
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530966
Jean Pihet8b765d72012-04-24 10:41:27 +0530967 sr_info->dbg_dir = debugfs_create_dir(sr_info->name, sr_dbg_dir);
Jean Pihet54b28cd2012-02-29 23:33:48 +0100968 if (IS_ERR_OR_NULL(sr_info->dbg_dir)) {
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530969 dev_err(&pdev->dev, "%s: Unable to create debugfs directory\n",
970 __func__);
Anand S Sawantb1ace382011-02-17 21:27:30 +0530971 ret = PTR_ERR(sr_info->dbg_dir);
Jean Pihet8b765d72012-04-24 10:41:27 +0530972 goto err_free_name;
Thara Gopinath984aa6d2010-05-29 22:02:22 +0530973 }
974
Anand S Sawantb1ace382011-02-17 21:27:30 +0530975 (void) debugfs_create_file("autocomp", S_IRUGO | S_IWUSR,
976 sr_info->dbg_dir, (void *)sr_info, &pm_sr_fops);
977 (void) debugfs_create_x32("errweight", S_IRUGO, sr_info->dbg_dir,
Thara Gopinath077fcec2010-10-27 20:29:37 +0530978 &sr_info->err_weight);
Anand S Sawantb1ace382011-02-17 21:27:30 +0530979 (void) debugfs_create_x32("errmaxlimit", S_IRUGO, sr_info->dbg_dir,
Thara Gopinath077fcec2010-10-27 20:29:37 +0530980 &sr_info->err_maxlimit);
Thara Gopinath077fcec2010-10-27 20:29:37 +0530981
Anand S Sawantb1ace382011-02-17 21:27:30 +0530982 nvalue_dir = debugfs_create_dir("nvalue", sr_info->dbg_dir);
Jean Pihet54b28cd2012-02-29 23:33:48 +0100983 if (IS_ERR_OR_NULL(nvalue_dir)) {
Thara Gopinath077fcec2010-10-27 20:29:37 +0530984 dev_err(&pdev->dev, "%s: Unable to create debugfs directory"
985 "for n-values\n", __func__);
Shweta Gulatib3329a32011-02-15 13:40:30 +0530986 ret = PTR_ERR(nvalue_dir);
Aaro Koskinen283a1c12011-04-26 02:25:32 -0700987 goto err_debugfs;
Thara Gopinath077fcec2010-10-27 20:29:37 +0530988 }
989
Jean Pihet5e7f2e12012-04-25 11:19:44 +0530990 if (sr_info->nvalue_count == 0 || !sr_info->nvalue_table) {
991 dev_warn(&pdev->dev, "%s: %s: No Voltage table for the corresponding vdd. Cannot create debugfs entries for n-values\n",
992 __func__, sr_info->name);
993
Shweta Gulatib3329a32011-02-15 13:40:30 +0530994 ret = -ENODATA;
Aaro Koskinen283a1c12011-04-26 02:25:32 -0700995 goto err_debugfs;
Thara Gopinath077fcec2010-10-27 20:29:37 +0530996 }
997
998 for (i = 0; i < sr_info->nvalue_count; i++) {
Aaro Koskinen865212ab2011-02-07 16:08:04 +0200999 char name[NVALUE_NAME_LEN + 1];
Thara Gopinath077fcec2010-10-27 20:29:37 +05301000
Jean Pihet5e7f2e12012-04-25 11:19:44 +05301001 snprintf(name, sizeof(name), "volt_%lu",
1002 sr_info->nvalue_table[i].volt_nominal);
Vasiliy Kulikov1232a182011-02-04 12:23:20 +00001003 (void) debugfs_create_x32(name, S_IRUGO | S_IWUSR, nvalue_dir,
Thara Gopinath077fcec2010-10-27 20:29:37 +05301004 &(sr_info->nvalue_table[i].nvalue));
Jean Pihet308d1bd2012-04-24 23:41:54 +05301005 snprintf(name, sizeof(name), "errminlimit_%lu",
1006 sr_info->nvalue_table[i].volt_nominal);
1007 (void) debugfs_create_x32(name, S_IRUGO | S_IWUSR, nvalue_dir,
1008 &(sr_info->nvalue_table[i].errminlimit));
1009
Thara Gopinath077fcec2010-10-27 20:29:37 +05301010 }
Thara Gopinath984aa6d2010-05-29 22:02:22 +05301011
1012 return ret;
1013
Aaro Koskinen283a1c12011-04-26 02:25:32 -07001014err_debugfs:
1015 debugfs_remove_recursive(sr_info->dbg_dir);
Jean Pihet8b765d72012-04-24 10:41:27 +05301016err_free_name:
1017 kfree(sr_info->name);
Aaro Koskinen0c49cc12011-04-26 02:25:21 -07001018err_iounmap:
Aaro Koskinen833d78f2011-04-26 02:25:27 -07001019 list_del(&sr_info->node);
Aaro Koskinen0c49cc12011-04-26 02:25:21 -07001020 iounmap(sr_info->base);
Thara Gopinath984aa6d2010-05-29 22:02:22 +05301021err_release_region:
1022 release_mem_region(mem->start, resource_size(mem));
1023err_free_devinfo:
1024 kfree(sr_info);
1025
1026 return ret;
1027}
1028
1029static int __devexit omap_sr_remove(struct platform_device *pdev)
1030{
1031 struct omap_sr_data *pdata = pdev->dev.platform_data;
1032 struct omap_sr *sr_info;
1033 struct resource *mem;
1034
1035 if (!pdata) {
1036 dev_err(&pdev->dev, "%s: platform data missing\n", __func__);
1037 return -EINVAL;
1038 }
1039
1040 sr_info = _sr_lookup(pdata->voltdm);
Julia Lawall28693ec2011-01-24 20:55:22 +01001041 if (IS_ERR(sr_info)) {
Thara Gopinath984aa6d2010-05-29 22:02:22 +05301042 dev_warn(&pdev->dev, "%s: omap_sr struct not found\n",
1043 __func__);
Jean Pihet63371fa2012-02-29 23:33:49 +01001044 return PTR_ERR(sr_info);
Thara Gopinath984aa6d2010-05-29 22:02:22 +05301045 }
1046
1047 if (sr_info->autocomp_active)
1048 sr_stop_vddautocomp(sr_info);
Anand S Sawantb1ace382011-02-17 21:27:30 +05301049 if (sr_info->dbg_dir)
1050 debugfs_remove_recursive(sr_info->dbg_dir);
Thara Gopinath984aa6d2010-05-29 22:02:22 +05301051
1052 list_del(&sr_info->node);
1053 iounmap(sr_info->base);
Jean Pihet8b765d72012-04-24 10:41:27 +05301054 kfree(sr_info->name);
Thara Gopinath984aa6d2010-05-29 22:02:22 +05301055 kfree(sr_info);
1056 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1057 release_mem_region(mem->start, resource_size(mem));
1058
1059 return 0;
1060}
1061
Nishanth Menon1f55bc1852012-03-01 00:29:44 +01001062static void __devexit omap_sr_shutdown(struct platform_device *pdev)
1063{
1064 struct omap_sr_data *pdata = pdev->dev.platform_data;
1065 struct omap_sr *sr_info;
1066
1067 if (!pdata) {
1068 dev_err(&pdev->dev, "%s: platform data missing\n", __func__);
1069 return;
1070 }
1071
1072 sr_info = _sr_lookup(pdata->voltdm);
1073 if (IS_ERR(sr_info)) {
1074 dev_warn(&pdev->dev, "%s: omap_sr struct not found\n",
1075 __func__);
1076 return;
1077 }
1078
1079 if (sr_info->autocomp_active)
1080 sr_stop_vddautocomp(sr_info);
1081
1082 return;
1083}
1084
Thara Gopinath984aa6d2010-05-29 22:02:22 +05301085static struct platform_driver smartreflex_driver = {
Tony Lindgren149f1d52012-02-23 14:55:40 -08001086 .remove = __devexit_p(omap_sr_remove),
Nishanth Menon1f55bc1852012-03-01 00:29:44 +01001087 .shutdown = __devexit_p(omap_sr_shutdown),
Thara Gopinath984aa6d2010-05-29 22:02:22 +05301088 .driver = {
1089 .name = "smartreflex",
1090 },
1091};
1092
1093static int __init sr_init(void)
1094{
1095 int ret = 0;
1096
1097 /*
1098 * sr_init is a late init. If by then a pmic specific API is not
1099 * registered either there is no need for anything to be done on
1100 * the PMIC side or somebody has forgotten to register a PMIC
1101 * handler. Warn for the second condition.
1102 */
1103 if (sr_pmic_data && sr_pmic_data->sr_pmic_init)
1104 sr_pmic_data->sr_pmic_init();
1105 else
1106 pr_warning("%s: No PMIC hook to init smartreflex\n", __func__);
1107
1108 ret = platform_driver_probe(&smartreflex_driver, omap_sr_probe);
1109 if (ret) {
1110 pr_err("%s: platform driver register failed for SR\n",
1111 __func__);
1112 return ret;
1113 }
1114
1115 return 0;
1116}
Felipe Balbi1a21a682012-02-29 23:33:45 +01001117late_initcall(sr_init);
Thara Gopinath984aa6d2010-05-29 22:02:22 +05301118
1119static void __exit sr_exit(void)
1120{
1121 platform_driver_unregister(&smartreflex_driver);
1122}
Thara Gopinath984aa6d2010-05-29 22:02:22 +05301123module_exit(sr_exit);
1124
1125MODULE_DESCRIPTION("OMAP Smartreflex Driver");
1126MODULE_LICENSE("GPL");
1127MODULE_ALIAS("platform:" DRIVER_NAME);
1128MODULE_AUTHOR("Texas Instruments Inc");