2 * OMAP SmartReflex Voltage Control
4 * Author: Thara Gopinath <thara@ti.com>
6 * Copyright (C) 2012 Texas Instruments, Inc.
7 * Thara Gopinath <thara@ti.com>
9 * Copyright (C) 2008 Nokia Corporation
12 * Copyright (C) 2007 Texas Instruments, Inc.
13 * Lesly A M <x0080970@ti.com>
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.
20 #include <linux/module.h>
21 #include <linux/interrupt.h>
22 #include <linux/clk.h>
24 #include <linux/debugfs.h>
25 #include <linux/delay.h>
26 #include <linux/slab.h>
27 #include <linux/pm_runtime.h>
28 #include <linux/power/smartreflex.h>
30 #define SMARTREFLEX_NAME_LEN 16
31 #define NVALUE_NAME_LEN 40
32 #define SR_DISABLE_TIMEOUT 200
34 /* sr_list contains all the instances of smartreflex module */
35 static LIST_HEAD(sr_list
);
37 static struct omap_sr_class_data
*sr_class
;
38 static struct omap_sr_pmic_data
*sr_pmic_data
;
39 static struct dentry
*sr_dbg_dir
;
41 static inline void sr_write_reg(struct omap_sr
*sr
, unsigned offset
, u32 value
)
43 __raw_writel(value
, (sr
->base
+ offset
));
46 static inline void sr_modify_reg(struct omap_sr
*sr
, unsigned offset
, u32 mask
,
52 * Smartreflex error config register is special as it contains
53 * certain status bits which if written a 1 into means a clear
54 * of those bits. So in order to make sure no accidental write of
55 * 1 happens to those status bits, do a clear of them in the read
56 * value. This mean this API doesn't rewrite values in these bits
57 * if they are currently set, but does allow the caller to write
60 if (sr
->ip_type
== SR_TYPE_V1
&& offset
== ERRCONFIG_V1
)
61 mask
|= ERRCONFIG_STATUS_V1_MASK
;
62 else if (sr
->ip_type
== SR_TYPE_V2
&& offset
== ERRCONFIG_V2
)
63 mask
|= ERRCONFIG_VPBOUNDINTST_V2
;
65 reg_val
= __raw_readl(sr
->base
+ offset
);
72 __raw_writel(reg_val
, (sr
->base
+ offset
));
75 static inline u32
sr_read_reg(struct omap_sr
*sr
, unsigned offset
)
77 return __raw_readl(sr
->base
+ offset
);
80 static struct omap_sr
*_sr_lookup(struct voltagedomain
*voltdm
)
82 struct omap_sr
*sr_info
;
85 pr_err("%s: Null voltage domain passed!\n", __func__
);
86 return ERR_PTR(-EINVAL
);
89 list_for_each_entry(sr_info
, &sr_list
, node
) {
90 if (voltdm
== sr_info
->voltdm
)
94 return ERR_PTR(-ENODATA
);
97 static irqreturn_t
sr_interrupt(int irq
, void *data
)
99 struct omap_sr
*sr_info
= data
;
102 switch (sr_info
->ip_type
) {
104 /* Read the status bits */
105 status
= sr_read_reg(sr_info
, ERRCONFIG_V1
);
107 /* Clear them by writing back */
108 sr_write_reg(sr_info
, ERRCONFIG_V1
, status
);
111 /* Read the status bits */
112 status
= sr_read_reg(sr_info
, IRQSTATUS
);
114 /* Clear them by writing back */
115 sr_write_reg(sr_info
, IRQSTATUS
, status
);
118 dev_err(&sr_info
->pdev
->dev
, "UNKNOWN IP type %d\n",
123 if (sr_class
->notify
)
124 sr_class
->notify(sr_info
, status
);
129 static void sr_set_clk_length(struct omap_sr
*sr
)
134 if (cpu_is_omap34xx())
135 sys_ck
= clk_get(NULL
, "sys_ck");
137 sys_ck
= clk_get(NULL
, "sys_clkin_ck");
139 if (IS_ERR(sys_ck
)) {
140 dev_err(&sr
->pdev
->dev
, "%s: unable to get sys clk\n",
145 sys_clk_speed
= clk_get_rate(sys_ck
);
148 switch (sys_clk_speed
) {
150 sr
->clk_length
= SRCLKLENGTH_12MHZ_SYSCLK
;
153 sr
->clk_length
= SRCLKLENGTH_13MHZ_SYSCLK
;
156 sr
->clk_length
= SRCLKLENGTH_19MHZ_SYSCLK
;
159 sr
->clk_length
= SRCLKLENGTH_26MHZ_SYSCLK
;
162 sr
->clk_length
= SRCLKLENGTH_38MHZ_SYSCLK
;
165 dev_err(&sr
->pdev
->dev
, "%s: Invalid sysclk value: %d\n",
166 __func__
, sys_clk_speed
);
171 static void sr_set_regfields(struct omap_sr
*sr
)
174 * For time being these values are defined in smartreflex.h
175 * and populated during init. May be they can be moved to board
176 * file or pmic specific data structure. In that case these structure
177 * fields will have to be populated using the pdata or pmic structure.
179 if (cpu_is_omap34xx() || cpu_is_omap44xx()) {
180 sr
->err_weight
= OMAP3430_SR_ERRWEIGHT
;
181 sr
->err_maxlimit
= OMAP3430_SR_ERRMAXLIMIT
;
182 sr
->accum_data
= OMAP3430_SR_ACCUMDATA
;
183 if (!(strcmp(sr
->name
, "smartreflex_mpu_iva"))) {
184 sr
->senn_avgweight
= OMAP3430_SR1_SENNAVGWEIGHT
;
185 sr
->senp_avgweight
= OMAP3430_SR1_SENPAVGWEIGHT
;
187 sr
->senn_avgweight
= OMAP3430_SR2_SENNAVGWEIGHT
;
188 sr
->senp_avgweight
= OMAP3430_SR2_SENPAVGWEIGHT
;
193 static void sr_start_vddautocomp(struct omap_sr
*sr
)
195 if (!sr_class
|| !(sr_class
->enable
) || !(sr_class
->configure
)) {
196 dev_warn(&sr
->pdev
->dev
,
197 "%s: smartreflex class driver not registered\n",
202 if (!sr_class
->enable(sr
))
203 sr
->autocomp_active
= true;
206 static void sr_stop_vddautocomp(struct omap_sr
*sr
)
208 if (!sr_class
|| !(sr_class
->disable
)) {
209 dev_warn(&sr
->pdev
->dev
,
210 "%s: smartreflex class driver not registered\n",
215 if (sr
->autocomp_active
) {
216 sr_class
->disable(sr
, 1);
217 sr
->autocomp_active
= false;
222 * This function handles the intializations which have to be done
223 * only when both sr device and class driver regiter has
224 * completed. This will be attempted to be called from both sr class
225 * driver register and sr device intializtion API's. Only one call
226 * will ultimately succeed.
228 * Currently this function registers interrupt handler for a particular SR
229 * if smartreflex class driver is already registered and has
230 * requested for interrupts and the SR interrupt line in present.
232 static int sr_late_init(struct omap_sr
*sr_info
)
234 struct omap_sr_data
*pdata
= sr_info
->pdev
->dev
.platform_data
;
235 struct resource
*mem
;
238 if (sr_class
->notify
&& sr_class
->notify_flags
&& sr_info
->irq
) {
239 ret
= request_irq(sr_info
->irq
, sr_interrupt
,
240 0, sr_info
->name
, sr_info
);
243 disable_irq(sr_info
->irq
);
246 if (pdata
&& pdata
->enable_on_init
)
247 sr_start_vddautocomp(sr_info
);
252 iounmap(sr_info
->base
);
253 mem
= platform_get_resource(sr_info
->pdev
, IORESOURCE_MEM
, 0);
254 release_mem_region(mem
->start
, resource_size(mem
));
255 list_del(&sr_info
->node
);
256 dev_err(&sr_info
->pdev
->dev
, "%s: ERROR in registering"
257 "interrupt handler. Smartreflex will"
258 "not function as desired\n", __func__
);
264 static void sr_v1_disable(struct omap_sr
*sr
)
267 int errconf_val
= ERRCONFIG_MCUACCUMINTST
| ERRCONFIG_MCUVALIDINTST
|
268 ERRCONFIG_MCUBOUNDINTST
;
270 /* Enable MCUDisableAcknowledge interrupt */
271 sr_modify_reg(sr
, ERRCONFIG_V1
,
272 ERRCONFIG_MCUDISACKINTEN
, ERRCONFIG_MCUDISACKINTEN
);
274 /* SRCONFIG - disable SR */
275 sr_modify_reg(sr
, SRCONFIG
, SRCONFIG_SRENABLE
, 0x0);
277 /* Disable all other SR interrupts and clear the status as needed */
278 if (sr_read_reg(sr
, ERRCONFIG_V1
) & ERRCONFIG_VPBOUNDINTST_V1
)
279 errconf_val
|= ERRCONFIG_VPBOUNDINTST_V1
;
280 sr_modify_reg(sr
, ERRCONFIG_V1
,
281 (ERRCONFIG_MCUACCUMINTEN
| ERRCONFIG_MCUVALIDINTEN
|
282 ERRCONFIG_MCUBOUNDINTEN
| ERRCONFIG_VPBOUNDINTEN_V1
),
286 * Wait for SR to be disabled.
287 * wait until ERRCONFIG.MCUDISACKINTST = 1. Typical latency is 1us.
289 sr_test_cond_timeout((sr_read_reg(sr
, ERRCONFIG_V1
) &
290 ERRCONFIG_MCUDISACKINTST
), SR_DISABLE_TIMEOUT
,
293 if (timeout
>= SR_DISABLE_TIMEOUT
)
294 dev_warn(&sr
->pdev
->dev
, "%s: Smartreflex disable timedout\n",
297 /* Disable MCUDisableAcknowledge interrupt & clear pending interrupt */
298 sr_modify_reg(sr
, ERRCONFIG_V1
, ERRCONFIG_MCUDISACKINTEN
,
299 ERRCONFIG_MCUDISACKINTST
);
302 static void sr_v2_disable(struct omap_sr
*sr
)
306 /* Enable MCUDisableAcknowledge interrupt */
307 sr_write_reg(sr
, IRQENABLE_SET
, IRQENABLE_MCUDISABLEACKINT
);
309 /* SRCONFIG - disable SR */
310 sr_modify_reg(sr
, SRCONFIG
, SRCONFIG_SRENABLE
, 0x0);
313 * Disable all other SR interrupts and clear the status
314 * write to status register ONLY on need basis - only if status
317 if (sr_read_reg(sr
, ERRCONFIG_V2
) & ERRCONFIG_VPBOUNDINTST_V2
)
318 sr_modify_reg(sr
, ERRCONFIG_V2
, ERRCONFIG_VPBOUNDINTEN_V2
,
319 ERRCONFIG_VPBOUNDINTST_V2
);
321 sr_modify_reg(sr
, ERRCONFIG_V2
, ERRCONFIG_VPBOUNDINTEN_V2
,
323 sr_write_reg(sr
, IRQENABLE_CLR
, (IRQENABLE_MCUACCUMINT
|
324 IRQENABLE_MCUVALIDINT
|
325 IRQENABLE_MCUBOUNDSINT
));
326 sr_write_reg(sr
, IRQSTATUS
, (IRQSTATUS_MCUACCUMINT
|
327 IRQSTATUS_MCVALIDINT
|
328 IRQSTATUS_MCBOUNDSINT
));
331 * Wait for SR to be disabled.
332 * wait until IRQSTATUS.MCUDISACKINTST = 1. Typical latency is 1us.
334 sr_test_cond_timeout((sr_read_reg(sr
, IRQSTATUS
) &
335 IRQSTATUS_MCUDISABLEACKINT
), SR_DISABLE_TIMEOUT
,
338 if (timeout
>= SR_DISABLE_TIMEOUT
)
339 dev_warn(&sr
->pdev
->dev
, "%s: Smartreflex disable timedout\n",
342 /* Disable MCUDisableAcknowledge interrupt & clear pending interrupt */
343 sr_write_reg(sr
, IRQENABLE_CLR
, IRQENABLE_MCUDISABLEACKINT
);
344 sr_write_reg(sr
, IRQSTATUS
, IRQSTATUS_MCUDISABLEACKINT
);
347 static struct omap_sr_nvalue_table
*sr_retrieve_nvalue_row(
348 struct omap_sr
*sr
, u32 efuse_offs
)
352 if (!sr
->nvalue_table
) {
353 dev_warn(&sr
->pdev
->dev
, "%s: Missing ntarget value table\n",
358 for (i
= 0; i
< sr
->nvalue_count
; i
++) {
359 if (sr
->nvalue_table
[i
].efuse_offs
== efuse_offs
)
360 return &sr
->nvalue_table
[i
];
366 /* Public Functions */
369 * sr_configure_errgen() - Configures the smrtreflex to perform AVS using the
370 * error generator module.
371 * @voltdm: VDD pointer to which the SR module to be configured belongs to.
373 * This API is to be called from the smartreflex class driver to
374 * configure the error generator module inside the smartreflex module.
375 * SR settings if using the ERROR module inside Smartreflex.
376 * SR CLASS 3 by default uses only the ERROR module where as
377 * SR CLASS 2 can choose between ERROR module and MINMAXAVG
378 * module. Returns 0 on success and error value in case of failure.
380 int sr_configure_errgen(struct voltagedomain
*voltdm
)
382 u32 sr_config
, sr_errconfig
, errconfig_offs
;
383 u32 vpboundint_en
, vpboundint_st
;
384 u32 senp_en
= 0, senn_en
= 0;
385 u8 senp_shift
, senn_shift
;
386 struct omap_sr
*sr
= _sr_lookup(voltdm
);
389 pr_warning("%s: omap_sr struct for voltdm not found\n", __func__
);
394 sr_set_clk_length(sr
);
396 senp_en
= sr
->senp_mod
;
397 senn_en
= sr
->senn_mod
;
399 sr_config
= (sr
->clk_length
<< SRCONFIG_SRCLKLENGTH_SHIFT
) |
400 SRCONFIG_SENENABLE
| SRCONFIG_ERRGEN_EN
;
402 switch (sr
->ip_type
) {
404 sr_config
|= SRCONFIG_DELAYCTRL
;
405 senn_shift
= SRCONFIG_SENNENABLE_V1_SHIFT
;
406 senp_shift
= SRCONFIG_SENPENABLE_V1_SHIFT
;
407 errconfig_offs
= ERRCONFIG_V1
;
408 vpboundint_en
= ERRCONFIG_VPBOUNDINTEN_V1
;
409 vpboundint_st
= ERRCONFIG_VPBOUNDINTST_V1
;
412 senn_shift
= SRCONFIG_SENNENABLE_V2_SHIFT
;
413 senp_shift
= SRCONFIG_SENPENABLE_V2_SHIFT
;
414 errconfig_offs
= ERRCONFIG_V2
;
415 vpboundint_en
= ERRCONFIG_VPBOUNDINTEN_V2
;
416 vpboundint_st
= ERRCONFIG_VPBOUNDINTST_V2
;
419 dev_err(&sr
->pdev
->dev
, "%s: Trying to Configure smartreflex"
420 "module without specifying the ip\n", __func__
);
424 sr_config
|= ((senn_en
<< senn_shift
) | (senp_en
<< senp_shift
));
425 sr_write_reg(sr
, SRCONFIG
, sr_config
);
426 sr_errconfig
= (sr
->err_weight
<< ERRCONFIG_ERRWEIGHT_SHIFT
) |
427 (sr
->err_maxlimit
<< ERRCONFIG_ERRMAXLIMIT_SHIFT
) |
428 (sr
->err_minlimit
<< ERRCONFIG_ERRMINLIMIT_SHIFT
);
429 sr_modify_reg(sr
, errconfig_offs
, (SR_ERRWEIGHT_MASK
|
430 SR_ERRMAXLIMIT_MASK
| SR_ERRMINLIMIT_MASK
),
433 /* Enabling the interrupts if the ERROR module is used */
434 sr_modify_reg(sr
, errconfig_offs
, (vpboundint_en
| vpboundint_st
),
441 * sr_disable_errgen() - Disables SmartReflex AVS module's errgen component
442 * @voltdm: VDD pointer to which the SR module to be configured belongs to.
444 * This API is to be called from the smartreflex class driver to
445 * disable the error generator module inside the smartreflex module.
447 * Returns 0 on success and error value in case of failure.
449 int sr_disable_errgen(struct voltagedomain
*voltdm
)
452 u32 vpboundint_en
, vpboundint_st
;
453 struct omap_sr
*sr
= _sr_lookup(voltdm
);
456 pr_warning("%s: omap_sr struct for voltdm not found\n", __func__
);
460 switch (sr
->ip_type
) {
462 errconfig_offs
= ERRCONFIG_V1
;
463 vpboundint_en
= ERRCONFIG_VPBOUNDINTEN_V1
;
464 vpboundint_st
= ERRCONFIG_VPBOUNDINTST_V1
;
467 errconfig_offs
= ERRCONFIG_V2
;
468 vpboundint_en
= ERRCONFIG_VPBOUNDINTEN_V2
;
469 vpboundint_st
= ERRCONFIG_VPBOUNDINTST_V2
;
472 dev_err(&sr
->pdev
->dev
, "%s: Trying to Configure smartreflex"
473 "module without specifying the ip\n", __func__
);
477 /* Disable the interrupts of ERROR module */
478 sr_modify_reg(sr
, errconfig_offs
, vpboundint_en
| vpboundint_st
, 0);
480 /* Disable the Sensor and errorgen */
481 sr_modify_reg(sr
, SRCONFIG
, SRCONFIG_SENENABLE
| SRCONFIG_ERRGEN_EN
, 0);
487 * sr_configure_minmax() - Configures the smrtreflex to perform AVS using the
489 * @voltdm: VDD pointer to which the SR module to be configured belongs to.
491 * This API is to be called from the smartreflex class driver to
492 * configure the minmaxavg module inside the smartreflex module.
493 * SR settings if using the ERROR module inside Smartreflex.
494 * SR CLASS 3 by default uses only the ERROR module where as
495 * SR CLASS 2 can choose between ERROR module and MINMAXAVG
496 * module. Returns 0 on success and error value in case of failure.
498 int sr_configure_minmax(struct voltagedomain
*voltdm
)
500 u32 sr_config
, sr_avgwt
;
501 u32 senp_en
= 0, senn_en
= 0;
502 u8 senp_shift
, senn_shift
;
503 struct omap_sr
*sr
= _sr_lookup(voltdm
);
506 pr_warning("%s: omap_sr struct for voltdm not found\n", __func__
);
511 sr_set_clk_length(sr
);
513 senp_en
= sr
->senp_mod
;
514 senn_en
= sr
->senn_mod
;
516 sr_config
= (sr
->clk_length
<< SRCONFIG_SRCLKLENGTH_SHIFT
) |
518 (sr
->accum_data
<< SRCONFIG_ACCUMDATA_SHIFT
);
520 switch (sr
->ip_type
) {
522 sr_config
|= SRCONFIG_DELAYCTRL
;
523 senn_shift
= SRCONFIG_SENNENABLE_V1_SHIFT
;
524 senp_shift
= SRCONFIG_SENPENABLE_V1_SHIFT
;
527 senn_shift
= SRCONFIG_SENNENABLE_V2_SHIFT
;
528 senp_shift
= SRCONFIG_SENPENABLE_V2_SHIFT
;
531 dev_err(&sr
->pdev
->dev
, "%s: Trying to Configure smartreflex"
532 "module without specifying the ip\n", __func__
);
536 sr_config
|= ((senn_en
<< senn_shift
) | (senp_en
<< senp_shift
));
537 sr_write_reg(sr
, SRCONFIG
, sr_config
);
538 sr_avgwt
= (sr
->senp_avgweight
<< AVGWEIGHT_SENPAVGWEIGHT_SHIFT
) |
539 (sr
->senn_avgweight
<< AVGWEIGHT_SENNAVGWEIGHT_SHIFT
);
540 sr_write_reg(sr
, AVGWEIGHT
, sr_avgwt
);
543 * Enabling the interrupts if MINMAXAVG module is used.
544 * TODO: check if all the interrupts are mandatory
546 switch (sr
->ip_type
) {
548 sr_modify_reg(sr
, ERRCONFIG_V1
,
549 (ERRCONFIG_MCUACCUMINTEN
| ERRCONFIG_MCUVALIDINTEN
|
550 ERRCONFIG_MCUBOUNDINTEN
),
551 (ERRCONFIG_MCUACCUMINTEN
| ERRCONFIG_MCUACCUMINTST
|
552 ERRCONFIG_MCUVALIDINTEN
| ERRCONFIG_MCUVALIDINTST
|
553 ERRCONFIG_MCUBOUNDINTEN
| ERRCONFIG_MCUBOUNDINTST
));
556 sr_write_reg(sr
, IRQSTATUS
,
557 IRQSTATUS_MCUACCUMINT
| IRQSTATUS_MCVALIDINT
|
558 IRQSTATUS_MCBOUNDSINT
| IRQSTATUS_MCUDISABLEACKINT
);
559 sr_write_reg(sr
, IRQENABLE_SET
,
560 IRQENABLE_MCUACCUMINT
| IRQENABLE_MCUVALIDINT
|
561 IRQENABLE_MCUBOUNDSINT
| IRQENABLE_MCUDISABLEACKINT
);
564 dev_err(&sr
->pdev
->dev
, "%s: Trying to Configure smartreflex"
565 "module without specifying the ip\n", __func__
);
573 * sr_enable() - Enables the smartreflex module.
574 * @voltdm: VDD pointer to which the SR module to be configured belongs to.
575 * @volt: The voltage at which the Voltage domain associated with
576 * the smartreflex module is operating at.
577 * This is required only to program the correct Ntarget value.
579 * This API is to be called from the smartreflex class driver to
580 * enable a smartreflex module. Returns 0 on success. Returns error
581 * value if the voltage passed is wrong or if ntarget value is wrong.
583 int sr_enable(struct voltagedomain
*voltdm
, unsigned long volt
)
585 struct omap_volt_data
*volt_data
;
586 struct omap_sr
*sr
= _sr_lookup(voltdm
);
587 struct omap_sr_nvalue_table
*nvalue_row
;
591 pr_warning("%s: omap_sr struct for voltdm not found\n", __func__
);
595 volt_data
= omap_voltage_get_voltdata(sr
->voltdm
, volt
);
597 if (IS_ERR(volt_data
)) {
598 dev_warn(&sr
->pdev
->dev
, "%s: Unable to get voltage table"
599 "for nominal voltage %ld\n", __func__
, volt
);
600 return PTR_ERR(volt_data
);
603 nvalue_row
= sr_retrieve_nvalue_row(sr
, volt_data
->sr_efuse_offs
);
606 dev_warn(&sr
->pdev
->dev
, "%s: failure getting SR data for this voltage %ld\n",
611 /* errminlimit is opp dependent and hence linked to voltage */
612 sr
->err_minlimit
= nvalue_row
->errminlimit
;
614 pm_runtime_get_sync(&sr
->pdev
->dev
);
616 /* Check if SR is already enabled. If yes do nothing */
617 if (sr_read_reg(sr
, SRCONFIG
) & SRCONFIG_SRENABLE
)
621 ret
= sr_class
->configure(sr
);
625 sr_write_reg(sr
, NVALUERECIPROCAL
, nvalue_row
->nvalue
);
627 /* SRCONFIG - enable SR */
628 sr_modify_reg(sr
, SRCONFIG
, SRCONFIG_SRENABLE
, SRCONFIG_SRENABLE
);
633 * sr_disable() - Disables the smartreflex module.
634 * @voltdm: VDD pointer to which the SR module to be configured belongs to.
636 * This API is to be called from the smartreflex class driver to
637 * disable a smartreflex module.
639 void sr_disable(struct voltagedomain
*voltdm
)
641 struct omap_sr
*sr
= _sr_lookup(voltdm
);
644 pr_warning("%s: omap_sr struct for voltdm not found\n", __func__
);
648 /* Check if SR clocks are already disabled. If yes do nothing */
649 if (pm_runtime_suspended(&sr
->pdev
->dev
))
653 * Disable SR if only it is indeed enabled. Else just
654 * disable the clocks.
656 if (sr_read_reg(sr
, SRCONFIG
) & SRCONFIG_SRENABLE
) {
657 switch (sr
->ip_type
) {
665 dev_err(&sr
->pdev
->dev
, "UNKNOWN IP type %d\n",
670 pm_runtime_put_sync_suspend(&sr
->pdev
->dev
);
674 * sr_register_class() - API to register a smartreflex class parameters.
675 * @class_data: The structure containing various sr class specific data.
677 * This API is to be called by the smartreflex class driver to register itself
678 * with the smartreflex driver during init. Returns 0 on success else the
681 int sr_register_class(struct omap_sr_class_data
*class_data
)
683 struct omap_sr
*sr_info
;
686 pr_warning("%s:, Smartreflex class data passed is NULL\n",
692 pr_warning("%s: Smartreflex class driver already registered\n",
697 sr_class
= class_data
;
700 * Call into late init to do intializations that require
701 * both sr driver and sr class driver to be initiallized.
703 list_for_each_entry(sr_info
, &sr_list
, node
)
704 sr_late_init(sr_info
);
710 * omap_sr_enable() - API to enable SR clocks and to call into the
711 * registered smartreflex class enable API.
712 * @voltdm: VDD pointer to which the SR module to be configured belongs to.
714 * This API is to be called from the kernel in order to enable
715 * a particular smartreflex module. This API will do the initial
716 * configurations to turn on the smartreflex module and in turn call
717 * into the registered smartreflex class enable API.
719 void omap_sr_enable(struct voltagedomain
*voltdm
)
721 struct omap_sr
*sr
= _sr_lookup(voltdm
);
724 pr_warning("%s: omap_sr struct for voltdm not found\n", __func__
);
728 if (!sr
->autocomp_active
)
731 if (!sr_class
|| !(sr_class
->enable
) || !(sr_class
->configure
)) {
732 dev_warn(&sr
->pdev
->dev
, "%s: smartreflex class driver not"
733 "registered\n", __func__
);
737 sr_class
->enable(sr
);
741 * omap_sr_disable() - API to disable SR without resetting the voltage
743 * @voltdm: VDD pointer to which the SR module to be configured belongs to.
745 * This API is to be called from the kernel in order to disable
746 * a particular smartreflex module. This API will in turn call
747 * into the registered smartreflex class disable API. This API will tell
748 * the smartreflex class disable not to reset the VP voltage after
749 * disabling smartreflex.
751 void omap_sr_disable(struct voltagedomain
*voltdm
)
753 struct omap_sr
*sr
= _sr_lookup(voltdm
);
756 pr_warning("%s: omap_sr struct for voltdm not found\n", __func__
);
760 if (!sr
->autocomp_active
)
763 if (!sr_class
|| !(sr_class
->disable
)) {
764 dev_warn(&sr
->pdev
->dev
, "%s: smartreflex class driver not"
765 "registered\n", __func__
);
769 sr_class
->disable(sr
, 0);
773 * omap_sr_disable_reset_volt() - API to disable SR and reset the
774 * voltage processor voltage
775 * @voltdm: VDD pointer to which the SR module to be configured belongs to.
777 * This API is to be called from the kernel in order to disable
778 * a particular smartreflex module. This API will in turn call
779 * into the registered smartreflex class disable API. This API will tell
780 * the smartreflex class disable to reset the VP voltage after
781 * disabling smartreflex.
783 void omap_sr_disable_reset_volt(struct voltagedomain
*voltdm
)
785 struct omap_sr
*sr
= _sr_lookup(voltdm
);
788 pr_warning("%s: omap_sr struct for voltdm not found\n", __func__
);
792 if (!sr
->autocomp_active
)
795 if (!sr_class
|| !(sr_class
->disable
)) {
796 dev_warn(&sr
->pdev
->dev
, "%s: smartreflex class driver not"
797 "registered\n", __func__
);
801 sr_class
->disable(sr
, 1);
805 * omap_sr_register_pmic() - API to register pmic specific info.
806 * @pmic_data: The structure containing pmic specific data.
808 * This API is to be called from the PMIC specific code to register with
809 * smartreflex driver pmic specific info. Currently the only info required
810 * is the smartreflex init on the PMIC side.
812 void omap_sr_register_pmic(struct omap_sr_pmic_data
*pmic_data
)
815 pr_warning("%s: Trying to register NULL PMIC data structure"
816 "with smartreflex\n", __func__
);
820 sr_pmic_data
= pmic_data
;
823 /* PM Debug FS entries to enable and disable smartreflex. */
824 static int omap_sr_autocomp_show(void *data
, u64
*val
)
826 struct omap_sr
*sr_info
= data
;
829 pr_warning("%s: omap_sr struct not found\n", __func__
);
833 *val
= sr_info
->autocomp_active
;
838 static int omap_sr_autocomp_store(void *data
, u64 val
)
840 struct omap_sr
*sr_info
= data
;
843 pr_warning("%s: omap_sr struct not found\n", __func__
);
849 pr_warning("%s: Invalid argument %lld\n", __func__
, val
);
853 /* control enable/disable only if there is a delta in value */
854 if (sr_info
->autocomp_active
!= val
) {
856 sr_stop_vddautocomp(sr_info
);
858 sr_start_vddautocomp(sr_info
);
864 DEFINE_SIMPLE_ATTRIBUTE(pm_sr_fops
, omap_sr_autocomp_show
,
865 omap_sr_autocomp_store
, "%llu\n");
867 static int __init
omap_sr_probe(struct platform_device
*pdev
)
869 struct omap_sr
*sr_info
;
870 struct omap_sr_data
*pdata
= pdev
->dev
.platform_data
;
871 struct resource
*mem
, *irq
;
872 struct dentry
*nvalue_dir
;
875 sr_info
= kzalloc(sizeof(struct omap_sr
), GFP_KERNEL
);
877 dev_err(&pdev
->dev
, "%s: unable to allocate sr_info\n",
882 platform_set_drvdata(pdev
, sr_info
);
885 dev_err(&pdev
->dev
, "%s: platform data missing\n", __func__
);
887 goto err_free_devinfo
;
890 mem
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
892 dev_err(&pdev
->dev
, "%s: no mem resource\n", __func__
);
894 goto err_free_devinfo
;
897 mem
= request_mem_region(mem
->start
, resource_size(mem
),
898 dev_name(&pdev
->dev
));
900 dev_err(&pdev
->dev
, "%s: no mem region\n", __func__
);
902 goto err_free_devinfo
;
905 irq
= platform_get_resource(pdev
, IORESOURCE_IRQ
, 0);
907 pm_runtime_enable(&pdev
->dev
);
908 pm_runtime_irq_safe(&pdev
->dev
);
910 sr_info
->name
= kasprintf(GFP_KERNEL
, "%s", pdata
->name
);
911 if (!sr_info
->name
) {
912 dev_err(&pdev
->dev
, "%s: Unable to alloc SR instance name\n",
915 goto err_release_region
;
918 sr_info
->pdev
= pdev
;
919 sr_info
->srid
= pdev
->id
;
920 sr_info
->voltdm
= pdata
->voltdm
;
921 sr_info
->nvalue_table
= pdata
->nvalue_table
;
922 sr_info
->nvalue_count
= pdata
->nvalue_count
;
923 sr_info
->senn_mod
= pdata
->senn_mod
;
924 sr_info
->senp_mod
= pdata
->senp_mod
;
925 sr_info
->autocomp_active
= false;
926 sr_info
->ip_type
= pdata
->ip_type
;
927 sr_info
->base
= ioremap(mem
->start
, resource_size(mem
));
928 if (!sr_info
->base
) {
929 dev_err(&pdev
->dev
, "%s: ioremap fail\n", __func__
);
931 goto err_release_region
;
935 sr_info
->irq
= irq
->start
;
937 sr_set_clk_length(sr_info
);
938 sr_set_regfields(sr_info
);
940 list_add(&sr_info
->node
, &sr_list
);
943 * Call into late init to do intializations that require
944 * both sr driver and sr class driver to be initiallized.
947 ret
= sr_late_init(sr_info
);
949 pr_warning("%s: Error in SR late init\n", __func__
);
954 dev_info(&pdev
->dev
, "%s: SmartReflex driver initialized\n", __func__
);
956 sr_dbg_dir
= debugfs_create_dir("smartreflex", NULL
);
957 if (IS_ERR_OR_NULL(sr_dbg_dir
)) {
958 ret
= PTR_ERR(sr_dbg_dir
);
959 pr_err("%s:sr debugfs dir creation failed(%d)\n",
965 sr_info
->dbg_dir
= debugfs_create_dir(sr_info
->name
, sr_dbg_dir
);
966 if (IS_ERR_OR_NULL(sr_info
->dbg_dir
)) {
967 dev_err(&pdev
->dev
, "%s: Unable to create debugfs directory\n",
969 ret
= PTR_ERR(sr_info
->dbg_dir
);
973 (void) debugfs_create_file("autocomp", S_IRUGO
| S_IWUSR
,
974 sr_info
->dbg_dir
, (void *)sr_info
, &pm_sr_fops
);
975 (void) debugfs_create_x32("errweight", S_IRUGO
, sr_info
->dbg_dir
,
976 &sr_info
->err_weight
);
977 (void) debugfs_create_x32("errmaxlimit", S_IRUGO
, sr_info
->dbg_dir
,
978 &sr_info
->err_maxlimit
);
980 nvalue_dir
= debugfs_create_dir("nvalue", sr_info
->dbg_dir
);
981 if (IS_ERR_OR_NULL(nvalue_dir
)) {
982 dev_err(&pdev
->dev
, "%s: Unable to create debugfs directory"
983 "for n-values\n", __func__
);
984 ret
= PTR_ERR(nvalue_dir
);
988 if (sr_info
->nvalue_count
== 0 || !sr_info
->nvalue_table
) {
989 dev_warn(&pdev
->dev
, "%s: %s: No Voltage table for the corresponding vdd. Cannot create debugfs entries for n-values\n",
990 __func__
, sr_info
->name
);
996 for (i
= 0; i
< sr_info
->nvalue_count
; i
++) {
997 char name
[NVALUE_NAME_LEN
+ 1];
999 snprintf(name
, sizeof(name
), "volt_%lu",
1000 sr_info
->nvalue_table
[i
].volt_nominal
);
1001 (void) debugfs_create_x32(name
, S_IRUGO
| S_IWUSR
, nvalue_dir
,
1002 &(sr_info
->nvalue_table
[i
].nvalue
));
1003 snprintf(name
, sizeof(name
), "errminlimit_%lu",
1004 sr_info
->nvalue_table
[i
].volt_nominal
);
1005 (void) debugfs_create_x32(name
, S_IRUGO
| S_IWUSR
, nvalue_dir
,
1006 &(sr_info
->nvalue_table
[i
].errminlimit
));
1013 debugfs_remove_recursive(sr_info
->dbg_dir
);
1015 kfree(sr_info
->name
);
1017 list_del(&sr_info
->node
);
1018 iounmap(sr_info
->base
);
1020 release_mem_region(mem
->start
, resource_size(mem
));
1027 static int __devexit
omap_sr_remove(struct platform_device
*pdev
)
1029 struct omap_sr_data
*pdata
= pdev
->dev
.platform_data
;
1030 struct omap_sr
*sr_info
;
1031 struct resource
*mem
;
1034 dev_err(&pdev
->dev
, "%s: platform data missing\n", __func__
);
1038 sr_info
= _sr_lookup(pdata
->voltdm
);
1039 if (IS_ERR(sr_info
)) {
1040 dev_warn(&pdev
->dev
, "%s: omap_sr struct not found\n",
1042 return PTR_ERR(sr_info
);
1045 if (sr_info
->autocomp_active
)
1046 sr_stop_vddautocomp(sr_info
);
1047 if (sr_info
->dbg_dir
)
1048 debugfs_remove_recursive(sr_info
->dbg_dir
);
1050 list_del(&sr_info
->node
);
1051 iounmap(sr_info
->base
);
1052 kfree(sr_info
->name
);
1054 mem
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1055 release_mem_region(mem
->start
, resource_size(mem
));
1060 static void __devexit
omap_sr_shutdown(struct platform_device
*pdev
)
1062 struct omap_sr_data
*pdata
= pdev
->dev
.platform_data
;
1063 struct omap_sr
*sr_info
;
1066 dev_err(&pdev
->dev
, "%s: platform data missing\n", __func__
);
1070 sr_info
= _sr_lookup(pdata
->voltdm
);
1071 if (IS_ERR(sr_info
)) {
1072 dev_warn(&pdev
->dev
, "%s: omap_sr struct not found\n",
1077 if (sr_info
->autocomp_active
)
1078 sr_stop_vddautocomp(sr_info
);
1083 static struct platform_driver smartreflex_driver
= {
1084 .remove
= __devexit_p(omap_sr_remove
),
1085 .shutdown
= __devexit_p(omap_sr_shutdown
),
1087 .name
= "smartreflex",
1091 static int __init
sr_init(void)
1096 * sr_init is a late init. If by then a pmic specific API is not
1097 * registered either there is no need for anything to be done on
1098 * the PMIC side or somebody has forgotten to register a PMIC
1099 * handler. Warn for the second condition.
1101 if (sr_pmic_data
&& sr_pmic_data
->sr_pmic_init
)
1102 sr_pmic_data
->sr_pmic_init();
1104 pr_warning("%s: No PMIC hook to init smartreflex\n", __func__
);
1106 ret
= platform_driver_probe(&smartreflex_driver
, omap_sr_probe
);
1108 pr_err("%s: platform driver register failed for SR\n",
1115 late_initcall(sr_init
);
1117 static void __exit
sr_exit(void)
1119 platform_driver_unregister(&smartreflex_driver
);
1121 module_exit(sr_exit
);
1123 MODULE_DESCRIPTION("OMAP Smartreflex Driver");
1124 MODULE_LICENSE("GPL");
1125 MODULE_ALIAS("platform:" DRIVER_NAME
);
1126 MODULE_AUTHOR("Texas Instruments Inc");