2 * Copyright (C) ST-Ericsson SA 2010
4 * License Terms: GNU General Public License v2
5 * Authors: Sundar Iyer <sundar.iyer@stericsson.com> for ST-Ericsson
6 * Bengt Jonsson <bengt.g.jonsson@stericsson.com> for ST-Ericsson
8 * UX500 common part of Power domain regulators
11 #include <linux/kernel.h>
12 #include <linux/err.h>
13 #include <linux/regulator/driver.h>
14 #include <linux/debugfs.h>
15 #include <linux/seq_file.h>
16 #include <linux/slab.h>
17 #include <linux/module.h>
19 #include "dbx500-prcmu.h"
22 * power state reference count
24 static int power_state_active_cnt
; /* will initialize to zero */
25 static DEFINE_SPINLOCK(power_state_active_lock
);
27 void power_state_active_enable(void)
31 spin_lock_irqsave(&power_state_active_lock
, flags
);
32 power_state_active_cnt
++;
33 spin_unlock_irqrestore(&power_state_active_lock
, flags
);
36 int power_state_active_disable(void)
41 spin_lock_irqsave(&power_state_active_lock
, flags
);
42 if (power_state_active_cnt
<= 0) {
43 pr_err("power state: unbalanced enable/disable calls\n");
48 power_state_active_cnt
--;
50 spin_unlock_irqrestore(&power_state_active_lock
, flags
);
54 #ifdef CONFIG_REGULATOR_DEBUG
56 static int power_state_active_get(void)
61 spin_lock_irqsave(&power_state_active_lock
, flags
);
62 cnt
= power_state_active_cnt
;
63 spin_unlock_irqrestore(&power_state_active_lock
, flags
);
68 static struct ux500_regulator_debug
{
70 struct dentry
*status_file
;
71 struct dentry
*power_state_cnt_file
;
72 struct dbx500_regulator_info
*regulator_array
;
74 u8
*state_before_suspend
;
75 u8
*state_after_suspend
;
78 void ux500_regulator_suspend_debug(void)
82 for (i
= 0; i
< rdebug
.num_regulators
; i
++)
83 rdebug
.state_before_suspend
[i
] =
84 rdebug
.regulator_array
[i
].is_enabled
;
87 void ux500_regulator_resume_debug(void)
91 for (i
= 0; i
< rdebug
.num_regulators
; i
++)
92 rdebug
.state_after_suspend
[i
] =
93 rdebug
.regulator_array
[i
].is_enabled
;
96 static int ux500_regulator_power_state_cnt_print(struct seq_file
*s
, void *p
)
98 struct device
*dev
= s
->private;
101 /* print power state count */
102 err
= seq_printf(s
, "ux500-regulator power state count: %i\n",
103 power_state_active_get());
105 dev_err(dev
, "seq_printf overflow\n");
110 static int ux500_regulator_power_state_cnt_open(struct inode
*inode
,
113 return single_open(file
, ux500_regulator_power_state_cnt_print
,
117 static const struct file_operations ux500_regulator_power_state_cnt_fops
= {
118 .open
= ux500_regulator_power_state_cnt_open
,
121 .release
= single_release
,
122 .owner
= THIS_MODULE
,
125 static int ux500_regulator_status_print(struct seq_file
*s
, void *p
)
127 struct device
*dev
= s
->private;
131 /* print dump header */
132 err
= seq_puts(s
, "ux500-regulator status:\n");
134 dev_err(dev
, "seq_puts overflow\n");
136 err
= seq_printf(s
, "%31s : %8s : %8s\n", "current",
139 dev_err(dev
, "seq_printf overflow\n");
141 for (i
= 0; i
< rdebug
.num_regulators
; i
++) {
142 struct dbx500_regulator_info
*info
;
143 /* Access per-regulator data */
144 info
= &rdebug
.regulator_array
[i
];
147 err
= seq_printf(s
, "%20s : %8s : %8s : %8s\n", info
->desc
.name
,
148 info
->is_enabled
? "enabled" : "disabled",
149 rdebug
.state_before_suspend
[i
] ? "enabled" : "disabled",
150 rdebug
.state_after_suspend
[i
] ? "enabled" : "disabled");
152 dev_err(dev
, "seq_printf overflow\n");
158 static int ux500_regulator_status_open(struct inode
*inode
, struct file
*file
)
160 return single_open(file
, ux500_regulator_status_print
,
164 static const struct file_operations ux500_regulator_status_fops
= {
165 .open
= ux500_regulator_status_open
,
168 .release
= single_release
,
169 .owner
= THIS_MODULE
,
172 int __attribute__((weak
)) dbx500_regulator_testcase(
173 struct dbx500_regulator_info
*regulator_info
,
180 ux500_regulator_debug_init(struct platform_device
*pdev
,
181 struct dbx500_regulator_info
*regulator_info
,
184 /* create directory */
185 rdebug
.dir
= debugfs_create_dir("ux500-regulator", NULL
);
187 goto exit_no_debugfs
;
189 /* create "status" file */
190 rdebug
.status_file
= debugfs_create_file("status",
191 S_IRUGO
, rdebug
.dir
, &pdev
->dev
,
192 &ux500_regulator_status_fops
);
193 if (!rdebug
.status_file
)
194 goto exit_destroy_dir
;
196 /* create "power-state-count" file */
197 rdebug
.power_state_cnt_file
= debugfs_create_file("power-state-count",
198 S_IRUGO
, rdebug
.dir
, &pdev
->dev
,
199 &ux500_regulator_power_state_cnt_fops
);
200 if (!rdebug
.power_state_cnt_file
)
201 goto exit_destroy_status
;
203 rdebug
.regulator_array
= regulator_info
;
204 rdebug
.num_regulators
= num_regulators
;
206 rdebug
.state_before_suspend
= kzalloc(num_regulators
, GFP_KERNEL
);
207 if (!rdebug
.state_before_suspend
)
208 goto exit_destroy_power_state
;
210 rdebug
.state_after_suspend
= kzalloc(num_regulators
, GFP_KERNEL
);
211 if (!rdebug
.state_after_suspend
)
214 dbx500_regulator_testcase(regulator_info
, num_regulators
);
218 kfree(rdebug
.state_before_suspend
);
219 exit_destroy_power_state
:
220 debugfs_remove(rdebug
.power_state_cnt_file
);
222 debugfs_remove(rdebug
.status_file
);
224 debugfs_remove(rdebug
.dir
);
226 dev_err(&pdev
->dev
, "failed to create debugfs entries.\n");
230 int ux500_regulator_debug_exit(void)
232 debugfs_remove_recursive(rdebug
.dir
);
233 kfree(rdebug
.state_after_suspend
);
234 kfree(rdebug
.state_before_suspend
);