drivers: power: report battery voltage in AOSP compatible format
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / lib / percpu_counter.c
CommitLineData
3cbc5640
RT
1/*
2 * Fast batching percpu counters.
3 */
4
5#include <linux/percpu_counter.h>
c67ad917
AM
6#include <linux/notifier.h>
7#include <linux/mutex.h>
8#include <linux/init.h>
9#include <linux/cpu.h>
3cbc5640 10#include <linux/module.h>
e2852ae8 11#include <linux/debugobjects.h>
3cbc5640 12
3a8495c7 13#ifdef CONFIG_HOTPLUG_CPU
c67ad917 14static LIST_HEAD(percpu_counters);
d87aae2f 15static DEFINE_SPINLOCK(percpu_counters_lock);
3a8495c7 16#endif
c67ad917 17
e2852ae8
TH
18#ifdef CONFIG_DEBUG_OBJECTS_PERCPU_COUNTER
19
20static struct debug_obj_descr percpu_counter_debug_descr;
21
22static int percpu_counter_fixup_free(void *addr, enum debug_obj_state state)
23{
24 struct percpu_counter *fbc = addr;
25
26 switch (state) {
27 case ODEBUG_STATE_ACTIVE:
28 percpu_counter_destroy(fbc);
29 debug_object_free(fbc, &percpu_counter_debug_descr);
30 return 1;
31 default:
32 return 0;
33 }
34}
35
36static struct debug_obj_descr percpu_counter_debug_descr = {
37 .name = "percpu_counter",
38 .fixup_free = percpu_counter_fixup_free,
39};
40
41static inline void debug_percpu_counter_activate(struct percpu_counter *fbc)
42{
43 debug_object_init(fbc, &percpu_counter_debug_descr);
44 debug_object_activate(fbc, &percpu_counter_debug_descr);
45}
46
47static inline void debug_percpu_counter_deactivate(struct percpu_counter *fbc)
48{
49 debug_object_deactivate(fbc, &percpu_counter_debug_descr);
50 debug_object_free(fbc, &percpu_counter_debug_descr);
51}
52
53#else /* CONFIG_DEBUG_OBJECTS_PERCPU_COUNTER */
54static inline void debug_percpu_counter_activate(struct percpu_counter *fbc)
55{ }
56static inline void debug_percpu_counter_deactivate(struct percpu_counter *fbc)
57{ }
58#endif /* CONFIG_DEBUG_OBJECTS_PERCPU_COUNTER */
59
3a587f47
PZ
60void percpu_counter_set(struct percpu_counter *fbc, s64 amount)
61{
62 int cpu;
63
f032a450 64 raw_spin_lock(&fbc->lock);
3a587f47
PZ
65 for_each_possible_cpu(cpu) {
66 s32 *pcount = per_cpu_ptr(fbc->counters, cpu);
67 *pcount = 0;
68 }
69 fbc->count = amount;
f032a450 70 raw_spin_unlock(&fbc->lock);
3a587f47
PZ
71}
72EXPORT_SYMBOL(percpu_counter_set);
73
20e89767 74void __percpu_counter_add(struct percpu_counter *fbc, s64 amount, s32 batch)
3cbc5640 75{
20e89767 76 s64 count;
3cbc5640 77
ea00c30b 78 preempt_disable();
819a72af 79 count = __this_cpu_read(*fbc->counters) + amount;
252e0ba6 80 if (count >= batch || count <= -batch) {
f032a450 81 raw_spin_lock(&fbc->lock);
3cbc5640 82 fbc->count += count;
819a72af 83 __this_cpu_write(*fbc->counters, 0);
f032a450 84 raw_spin_unlock(&fbc->lock);
3cbc5640 85 } else {
819a72af 86 __this_cpu_write(*fbc->counters, count);
3cbc5640 87 }
ea00c30b 88 preempt_enable();
3cbc5640 89}
252e0ba6 90EXPORT_SYMBOL(__percpu_counter_add);
3cbc5640
RT
91
92/*
93 * Add up all the per-cpu counts, return the result. This is a more accurate
94 * but much slower version of percpu_counter_read_positive()
95 */
02d21168 96s64 __percpu_counter_sum(struct percpu_counter *fbc)
3cbc5640 97{
0216bfcf 98 s64 ret;
3cbc5640
RT
99 int cpu;
100
f032a450 101 raw_spin_lock(&fbc->lock);
3cbc5640 102 ret = fbc->count;
b4ef0296 103 for_each_online_cpu(cpu) {
0216bfcf 104 s32 *pcount = per_cpu_ptr(fbc->counters, cpu);
3cbc5640
RT
105 ret += *pcount;
106 }
f032a450 107 raw_spin_unlock(&fbc->lock);
bf1d89c8 108 return ret;
3cbc5640 109}
bf1d89c8 110EXPORT_SYMBOL(__percpu_counter_sum);
c67ad917 111
ea319518
PZ
112int __percpu_counter_init(struct percpu_counter *fbc, s64 amount,
113 struct lock_class_key *key)
c67ad917 114{
f032a450 115 raw_spin_lock_init(&fbc->lock);
ea319518 116 lockdep_set_class(&fbc->lock, key);
c67ad917
AM
117 fbc->count = amount;
118 fbc->counters = alloc_percpu(s32);
833f4077
PZ
119 if (!fbc->counters)
120 return -ENOMEM;
e2852ae8
TH
121
122 debug_percpu_counter_activate(fbc);
123
c67ad917 124#ifdef CONFIG_HOTPLUG_CPU
8474b591 125 INIT_LIST_HEAD(&fbc->list);
d87aae2f 126 spin_lock(&percpu_counters_lock);
c67ad917 127 list_add(&fbc->list, &percpu_counters);
d87aae2f 128 spin_unlock(&percpu_counters_lock);
c67ad917 129#endif
833f4077 130 return 0;
c67ad917 131}
ea319518 132EXPORT_SYMBOL(__percpu_counter_init);
c67ad917
AM
133
134void percpu_counter_destroy(struct percpu_counter *fbc)
135{
833f4077
PZ
136 if (!fbc->counters)
137 return;
138
e2852ae8
TH
139 debug_percpu_counter_deactivate(fbc);
140
c67ad917 141#ifdef CONFIG_HOTPLUG_CPU
d87aae2f 142 spin_lock(&percpu_counters_lock);
c67ad917 143 list_del(&fbc->list);
d87aae2f 144 spin_unlock(&percpu_counters_lock);
c67ad917 145#endif
fd3d664f
ED
146 free_percpu(fbc->counters);
147 fbc->counters = NULL;
c67ad917
AM
148}
149EXPORT_SYMBOL(percpu_counter_destroy);
150
179f7ebf
ED
151int percpu_counter_batch __read_mostly = 32;
152EXPORT_SYMBOL(percpu_counter_batch);
153
154static void compute_batch_value(void)
155{
156 int nr = num_online_cpus();
157
158 percpu_counter_batch = max(32, nr*2);
159}
160
c67ad917
AM
161static int __cpuinit percpu_counter_hotcpu_callback(struct notifier_block *nb,
162 unsigned long action, void *hcpu)
163{
179f7ebf 164#ifdef CONFIG_HOTPLUG_CPU
c67ad917
AM
165 unsigned int cpu;
166 struct percpu_counter *fbc;
167
179f7ebf 168 compute_batch_value();
c67ad917
AM
169 if (action != CPU_DEAD)
170 return NOTIFY_OK;
171
172 cpu = (unsigned long)hcpu;
d87aae2f 173 spin_lock(&percpu_counters_lock);
c67ad917
AM
174 list_for_each_entry(fbc, &percpu_counters, list) {
175 s32 *pcount;
d2b20b11 176 unsigned long flags;
c67ad917 177
f032a450 178 raw_spin_lock_irqsave(&fbc->lock, flags);
c67ad917
AM
179 pcount = per_cpu_ptr(fbc->counters, cpu);
180 fbc->count += *pcount;
181 *pcount = 0;
f032a450 182 raw_spin_unlock_irqrestore(&fbc->lock, flags);
c67ad917 183 }
d87aae2f 184 spin_unlock(&percpu_counters_lock);
179f7ebf 185#endif
c67ad917
AM
186 return NOTIFY_OK;
187}
188
27f5e0f6
TC
189/*
190 * Compare counter against given value.
191 * Return 1 if greater, 0 if equal and -1 if less
192 */
193int percpu_counter_compare(struct percpu_counter *fbc, s64 rhs)
194{
195 s64 count;
196
197 count = percpu_counter_read(fbc);
198 /* Check to see if rough count will be sufficient for comparison */
199 if (abs(count - rhs) > (percpu_counter_batch*num_online_cpus())) {
200 if (count > rhs)
201 return 1;
202 else
203 return -1;
204 }
205 /* Need to use precise count */
206 count = percpu_counter_sum(fbc);
207 if (count > rhs)
208 return 1;
209 else if (count < rhs)
210 return -1;
211 else
212 return 0;
213}
214EXPORT_SYMBOL(percpu_counter_compare);
215
c67ad917
AM
216static int __init percpu_counter_startup(void)
217{
179f7ebf 218 compute_batch_value();
c67ad917
AM
219 hotcpu_notifier(percpu_counter_hotcpu_callback, 0);
220 return 0;
221}
222module_init(percpu_counter_startup);