blob: 4bfa219ef37d4095684d6c57dab9f0641cea4f3c [file] [log] [blame]
Dimitris Papastamos9fabe242011-09-19 14:34:00 +01001/*
2 * Register cache access API
3 *
4 * Copyright 2011 Wolfson Microelectronics plc
5 *
6 * Author: Dimitris Papastamos <dp@opensource.wolfsonmicro.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12
13#include <linux/slab.h>
Paul Gortmaker1b6bc322011-05-27 07:12:15 -040014#include <linux/export.h>
Paul Gortmaker51990e82012-01-22 11:23:42 -050015#include <linux/device.h>
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010016#include <trace/events/regmap.h>
Mark Brownf094fea2011-10-04 22:05:47 +010017#include <linux/bsearch.h>
Dimitris Papastamosc08604b2011-10-03 10:50:14 +010018#include <linux/sort.h>
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010019
20#include "internal.h"
21
22static const struct regcache_ops *cache_types[] = {
Dimitris Papastamos28644c802011-09-19 14:34:02 +010023 &regcache_rbtree_ops,
Dimitris Papastamos2cbbb572011-09-19 14:34:03 +010024 &regcache_lzo_ops,
Mark Brown2ac902c2012-12-19 14:51:55 +000025 &regcache_flat_ops,
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010026};
27
28static int regcache_hw_init(struct regmap *map)
29{
30 int i, j;
31 int ret;
32 int count;
33 unsigned int val;
34 void *tmp_buf;
35
36 if (!map->num_reg_defaults_raw)
37 return -EINVAL;
38
39 if (!map->reg_defaults_raw) {
Laxman Dewangandf00c792012-02-17 18:57:26 +053040 u32 cache_bypass = map->cache_bypass;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010041 dev_warn(map->dev, "No cache defaults, reading back from HW\n");
Laxman Dewangandf00c792012-02-17 18:57:26 +053042
43 /* Bypass the cache access till data read from HW*/
44 map->cache_bypass = 1;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010045 tmp_buf = kmalloc(map->cache_size_raw, GFP_KERNEL);
46 if (!tmp_buf)
47 return -EINVAL;
Mark Browneb4cb762013-02-21 18:39:47 +000048 ret = regmap_raw_read(map, 0, tmp_buf,
49 map->num_reg_defaults_raw);
Laxman Dewangandf00c792012-02-17 18:57:26 +053050 map->cache_bypass = cache_bypass;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010051 if (ret < 0) {
52 kfree(tmp_buf);
53 return ret;
54 }
55 map->reg_defaults_raw = tmp_buf;
56 map->cache_free = 1;
57 }
58
59 /* calculate the size of reg_defaults */
60 for (count = 0, i = 0; i < map->num_reg_defaults_raw; i++) {
Mark Brown879082c2013-02-21 18:03:13 +000061 val = regcache_get_val(map, map->reg_defaults_raw, i);
Stephen Warrenf01ee602012-04-09 13:40:24 -060062 if (regmap_volatile(map, i * map->reg_stride))
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010063 continue;
64 count++;
65 }
66
67 map->reg_defaults = kmalloc(count * sizeof(struct reg_default),
68 GFP_KERNEL);
Lars-Peter Clausen021cd612011-11-14 10:40:16 +010069 if (!map->reg_defaults) {
70 ret = -ENOMEM;
71 goto err_free;
72 }
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010073
74 /* fill the reg_defaults */
75 map->num_reg_defaults = count;
76 for (i = 0, j = 0; i < map->num_reg_defaults_raw; i++) {
Mark Brown879082c2013-02-21 18:03:13 +000077 val = regcache_get_val(map, map->reg_defaults_raw, i);
Stephen Warrenf01ee602012-04-09 13:40:24 -060078 if (regmap_volatile(map, i * map->reg_stride))
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010079 continue;
Stephen Warrenf01ee602012-04-09 13:40:24 -060080 map->reg_defaults[j].reg = i * map->reg_stride;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010081 map->reg_defaults[j].def = val;
82 j++;
83 }
84
85 return 0;
Lars-Peter Clausen021cd612011-11-14 10:40:16 +010086
87err_free:
88 if (map->cache_free)
89 kfree(map->reg_defaults_raw);
90
91 return ret;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010092}
93
Lars-Peter Clausene5e3b8a2011-11-16 16:28:16 +010094int regcache_init(struct regmap *map, const struct regmap_config *config)
Dimitris Papastamos9fabe242011-09-19 14:34:00 +010095{
96 int ret;
97 int i;
98 void *tmp_buf;
99
Stephen Warrenf01ee602012-04-09 13:40:24 -0600100 for (i = 0; i < config->num_reg_defaults; i++)
101 if (config->reg_defaults[i].reg % map->reg_stride)
102 return -EINVAL;
103
Mark Browne7a6db32011-09-19 16:08:03 +0100104 if (map->cache_type == REGCACHE_NONE) {
105 map->cache_bypass = true;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100106 return 0;
Mark Browne7a6db32011-09-19 16:08:03 +0100107 }
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100108
109 for (i = 0; i < ARRAY_SIZE(cache_types); i++)
110 if (cache_types[i]->type == map->cache_type)
111 break;
112
113 if (i == ARRAY_SIZE(cache_types)) {
114 dev_err(map->dev, "Could not match compress type: %d\n",
115 map->cache_type);
116 return -EINVAL;
117 }
118
Lars-Peter Clausene5e3b8a2011-11-16 16:28:16 +0100119 map->num_reg_defaults = config->num_reg_defaults;
120 map->num_reg_defaults_raw = config->num_reg_defaults_raw;
121 map->reg_defaults_raw = config->reg_defaults_raw;
Lars-Peter Clausen064d4db2011-11-16 20:34:03 +0100122 map->cache_word_size = DIV_ROUND_UP(config->val_bits, 8);
123 map->cache_size_raw = map->cache_word_size * config->num_reg_defaults_raw;
Mark Brown78493f22013-03-29 19:18:59 +0000124 map->cache_present = NULL;
125 map->cache_present_nbits = 0;
Lars-Peter Clausene5e3b8a2011-11-16 16:28:16 +0100126
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100127 map->cache = NULL;
128 map->cache_ops = cache_types[i];
129
130 if (!map->cache_ops->read ||
131 !map->cache_ops->write ||
132 !map->cache_ops->name)
133 return -EINVAL;
134
135 /* We still need to ensure that the reg_defaults
136 * won't vanish from under us. We'll need to make
137 * a copy of it.
138 */
Lars-Peter Clausen720e4612011-11-16 16:28:17 +0100139 if (config->reg_defaults) {
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100140 if (!map->num_reg_defaults)
141 return -EINVAL;
Lars-Peter Clausen720e4612011-11-16 16:28:17 +0100142 tmp_buf = kmemdup(config->reg_defaults, map->num_reg_defaults *
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100143 sizeof(struct reg_default), GFP_KERNEL);
144 if (!tmp_buf)
145 return -ENOMEM;
146 map->reg_defaults = tmp_buf;
Mark Brown8528bdd2011-10-09 13:13:58 +0100147 } else if (map->num_reg_defaults_raw) {
Mark Brown5fcd2562011-09-29 15:24:54 +0100148 /* Some devices such as PMICs don't have cache defaults,
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100149 * we cope with this by reading back the HW registers and
150 * crafting the cache defaults by hand.
151 */
152 ret = regcache_hw_init(map);
153 if (ret < 0)
154 return ret;
155 }
156
157 if (!map->max_register)
158 map->max_register = map->num_reg_defaults_raw;
159
160 if (map->cache_ops->init) {
161 dev_dbg(map->dev, "Initializing %s cache\n",
162 map->cache_ops->name);
Lars-Peter Clausenbd061c72011-11-14 10:40:17 +0100163 ret = map->cache_ops->init(map);
164 if (ret)
165 goto err_free;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100166 }
167 return 0;
Lars-Peter Clausenbd061c72011-11-14 10:40:17 +0100168
169err_free:
170 kfree(map->reg_defaults);
171 if (map->cache_free)
172 kfree(map->reg_defaults_raw);
173
174 return ret;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100175}
176
177void regcache_exit(struct regmap *map)
178{
179 if (map->cache_type == REGCACHE_NONE)
180 return;
181
182 BUG_ON(!map->cache_ops);
183
Mark Brown78493f22013-03-29 19:18:59 +0000184 kfree(map->cache_present);
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100185 kfree(map->reg_defaults);
186 if (map->cache_free)
187 kfree(map->reg_defaults_raw);
188
189 if (map->cache_ops->exit) {
190 dev_dbg(map->dev, "Destroying %s cache\n",
191 map->cache_ops->name);
192 map->cache_ops->exit(map);
193 }
194}
195
196/**
197 * regcache_read: Fetch the value of a given register from the cache.
198 *
199 * @map: map to configure.
200 * @reg: The register index.
201 * @value: The value to be returned.
202 *
203 * Return a negative value on failure, 0 on success.
204 */
205int regcache_read(struct regmap *map,
206 unsigned int reg, unsigned int *value)
207{
Mark Brownbc7ee552011-11-30 14:27:08 +0000208 int ret;
209
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100210 if (map->cache_type == REGCACHE_NONE)
211 return -ENOSYS;
212
213 BUG_ON(!map->cache_ops);
214
Mark Brownbc7ee552011-11-30 14:27:08 +0000215 if (!regmap_volatile(map, reg)) {
216 ret = map->cache_ops->read(map, reg, value);
217
218 if (ret == 0)
219 trace_regmap_reg_read_cache(map->dev, reg, *value);
220
221 return ret;
222 }
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100223
224 return -EINVAL;
225}
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100226
227/**
228 * regcache_write: Set the value of a given register in the cache.
229 *
230 * @map: map to configure.
231 * @reg: The register index.
232 * @value: The new register value.
233 *
234 * Return a negative value on failure, 0 on success.
235 */
236int regcache_write(struct regmap *map,
237 unsigned int reg, unsigned int value)
238{
239 if (map->cache_type == REGCACHE_NONE)
240 return 0;
241
242 BUG_ON(!map->cache_ops);
243
244 if (!regmap_writeable(map, reg))
245 return -EIO;
246
247 if (!regmap_volatile(map, reg))
248 return map->cache_ops->write(map, reg, value);
249
250 return 0;
251}
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100252
253/**
254 * regcache_sync: Sync the register cache with the hardware.
255 *
256 * @map: map to configure.
257 *
258 * Any registers that should not be synced should be marked as
259 * volatile. In general drivers can choose not to use the provided
260 * syncing functionality if they so require.
261 *
262 * Return a negative value on failure, 0 on success.
263 */
264int regcache_sync(struct regmap *map)
265{
Dimitris Papastamos954757d2011-09-27 11:25:06 +0100266 int ret = 0;
Dimitris Papastamos954757d2011-09-27 11:25:06 +0100267 unsigned int i;
Dimitris Papastamos59360082011-09-19 14:34:04 +0100268 const char *name;
Dimitris Papastamosbeb1a102011-09-29 14:36:26 +0100269 unsigned int bypass;
Dimitris Papastamos59360082011-09-19 14:34:04 +0100270
Mark Brownc3ec2322012-02-23 20:48:40 +0000271 BUG_ON(!map->cache_ops || !map->cache_ops->sync);
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100272
Lars-Peter Clausen81485f52013-05-23 15:06:15 +0200273 map->lock(map->lock_arg);
Dimitris Papastamosbeb1a102011-09-29 14:36:26 +0100274 /* Remember the initial bypass state */
275 bypass = map->cache_bypass;
Dimitris Papastamos954757d2011-09-27 11:25:06 +0100276 dev_dbg(map->dev, "Syncing %s cache\n",
277 map->cache_ops->name);
278 name = map->cache_ops->name;
279 trace_regcache_sync(map->dev, name, "start");
Mark Brown22f0d902012-01-21 12:01:14 +0000280
Mark Brown8ae0d7e2011-10-26 10:34:22 +0200281 if (!map->cache_dirty)
282 goto out;
Mark Brownd9db7622012-01-25 21:06:33 +0000283
Mark Brown22f0d902012-01-21 12:01:14 +0000284 /* Apply any patch first */
Mark Brown8a892d62012-01-25 21:05:48 +0000285 map->cache_bypass = 1;
Mark Brown22f0d902012-01-21 12:01:14 +0000286 for (i = 0; i < map->patch_regs; i++) {
Stephen Warrenf01ee602012-04-09 13:40:24 -0600287 if (map->patch[i].reg % map->reg_stride) {
288 ret = -EINVAL;
289 goto out;
290 }
Mark Brown22f0d902012-01-21 12:01:14 +0000291 ret = _regmap_write(map, map->patch[i].reg, map->patch[i].def);
292 if (ret != 0) {
293 dev_err(map->dev, "Failed to write %x = %x: %d\n",
294 map->patch[i].reg, map->patch[i].def, ret);
295 goto out;
296 }
297 }
Mark Brown8a892d62012-01-25 21:05:48 +0000298 map->cache_bypass = 0;
Mark Brown22f0d902012-01-21 12:01:14 +0000299
Mark Brownac8d91c2012-02-23 19:31:04 +0000300 ret = map->cache_ops->sync(map, 0, map->max_register);
Dimitris Papastamos954757d2011-09-27 11:25:06 +0100301
Mark Brown6ff73732012-02-23 22:05:59 +0000302 if (ret == 0)
303 map->cache_dirty = false;
304
Dimitris Papastamos954757d2011-09-27 11:25:06 +0100305out:
306 trace_regcache_sync(map->dev, name, "stop");
Dimitris Papastamosbeb1a102011-09-29 14:36:26 +0100307 /* Restore the bypass state */
308 map->cache_bypass = bypass;
Lars-Peter Clausen81485f52013-05-23 15:06:15 +0200309 map->unlock(map->lock_arg);
Dimitris Papastamos954757d2011-09-27 11:25:06 +0100310
311 return ret;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100312}
313EXPORT_SYMBOL_GPL(regcache_sync);
314
Mark Brown92afb282011-09-19 18:22:14 +0100315/**
Mark Brown4d4cfd12012-02-23 20:53:37 +0000316 * regcache_sync_region: Sync part of the register cache with the hardware.
317 *
318 * @map: map to sync.
319 * @min: first register to sync
320 * @max: last register to sync
321 *
322 * Write all non-default register values in the specified region to
323 * the hardware.
324 *
325 * Return a negative value on failure, 0 on success.
326 */
327int regcache_sync_region(struct regmap *map, unsigned int min,
328 unsigned int max)
329{
330 int ret = 0;
331 const char *name;
332 unsigned int bypass;
333
334 BUG_ON(!map->cache_ops || !map->cache_ops->sync);
335
Lars-Peter Clausen81485f52013-05-23 15:06:15 +0200336 map->lock(map->lock_arg);
Mark Brown4d4cfd12012-02-23 20:53:37 +0000337
338 /* Remember the initial bypass state */
339 bypass = map->cache_bypass;
340
341 name = map->cache_ops->name;
342 dev_dbg(map->dev, "Syncing %s cache from %d-%d\n", name, min, max);
343
344 trace_regcache_sync(map->dev, name, "start region");
345
346 if (!map->cache_dirty)
347 goto out;
348
349 ret = map->cache_ops->sync(map, min, max);
350
351out:
352 trace_regcache_sync(map->dev, name, "stop region");
353 /* Restore the bypass state */
354 map->cache_bypass = bypass;
Lars-Peter Clausen81485f52013-05-23 15:06:15 +0200355 map->unlock(map->lock_arg);
Mark Brown4d4cfd12012-02-23 20:53:37 +0000356
357 return ret;
358}
Mark Browne466de02012-04-03 13:08:53 +0100359EXPORT_SYMBOL_GPL(regcache_sync_region);
Mark Brown4d4cfd12012-02-23 20:53:37 +0000360
361/**
Mark Brown697e85b2013-05-08 13:55:22 +0100362 * regcache_drop_region: Discard part of the register cache
363 *
364 * @map: map to operate on
365 * @min: first register to discard
366 * @max: last register to discard
367 *
368 * Discard part of the register cache.
369 *
370 * Return a negative value on failure, 0 on success.
371 */
372int regcache_drop_region(struct regmap *map, unsigned int min,
373 unsigned int max)
374{
375 unsigned int reg;
376 int ret = 0;
377
378 if (!map->cache_present && !(map->cache_ops && map->cache_ops->drop))
379 return -EINVAL;
380
Lars-Peter Clausen81485f52013-05-23 15:06:15 +0200381 map->lock(map->lock_arg);
Mark Brown697e85b2013-05-08 13:55:22 +0100382
383 trace_regcache_drop_region(map->dev, min, max);
384
385 if (map->cache_present)
386 for (reg = min; reg < max + 1; reg++)
387 clear_bit(reg, map->cache_present);
388
389 if (map->cache_ops && map->cache_ops->drop)
390 ret = map->cache_ops->drop(map, min, max);
391
Lars-Peter Clausen81485f52013-05-23 15:06:15 +0200392 map->unlock(map->lock_arg);
Mark Brown697e85b2013-05-08 13:55:22 +0100393
394 return ret;
395}
396EXPORT_SYMBOL_GPL(regcache_drop_region);
397
398/**
Mark Brown92afb282011-09-19 18:22:14 +0100399 * regcache_cache_only: Put a register map into cache only mode
400 *
401 * @map: map to configure
402 * @cache_only: flag if changes should be written to the hardware
403 *
404 * When a register map is marked as cache only writes to the register
405 * map API will only update the register cache, they will not cause
406 * any hardware changes. This is useful for allowing portions of
407 * drivers to act as though the device were functioning as normal when
408 * it is disabled for power saving reasons.
409 */
410void regcache_cache_only(struct regmap *map, bool enable)
411{
Lars-Peter Clausen81485f52013-05-23 15:06:15 +0200412 map->lock(map->lock_arg);
Dimitris Papastamosac77a762011-09-29 14:36:28 +0100413 WARN_ON(map->cache_bypass && enable);
Mark Brown92afb282011-09-19 18:22:14 +0100414 map->cache_only = enable;
Mark Brown5d5b7d42012-02-23 22:02:57 +0000415 trace_regmap_cache_only(map->dev, enable);
Lars-Peter Clausen81485f52013-05-23 15:06:15 +0200416 map->unlock(map->lock_arg);
Mark Brown92afb282011-09-19 18:22:14 +0100417}
418EXPORT_SYMBOL_GPL(regcache_cache_only);
419
Dimitris Papastamos6eb0f5e2011-09-29 14:36:27 +0100420/**
Mark Brown8ae0d7e2011-10-26 10:34:22 +0200421 * regcache_mark_dirty: Mark the register cache as dirty
422 *
423 * @map: map to mark
424 *
425 * Mark the register cache as dirty, for example due to the device
426 * having been powered down for suspend. If the cache is not marked
427 * as dirty then the cache sync will be suppressed.
428 */
429void regcache_mark_dirty(struct regmap *map)
430{
Lars-Peter Clausen81485f52013-05-23 15:06:15 +0200431 map->lock(map->lock_arg);
Mark Brown8ae0d7e2011-10-26 10:34:22 +0200432 map->cache_dirty = true;
Lars-Peter Clausen81485f52013-05-23 15:06:15 +0200433 map->unlock(map->lock_arg);
Mark Brown8ae0d7e2011-10-26 10:34:22 +0200434}
435EXPORT_SYMBOL_GPL(regcache_mark_dirty);
436
437/**
Dimitris Papastamos6eb0f5e2011-09-29 14:36:27 +0100438 * regcache_cache_bypass: Put a register map into cache bypass mode
439 *
440 * @map: map to configure
Dimitris Papastamos0eef6b02011-10-03 06:54:16 +0100441 * @cache_bypass: flag if changes should not be written to the hardware
Dimitris Papastamos6eb0f5e2011-09-29 14:36:27 +0100442 *
443 * When a register map is marked with the cache bypass option, writes
444 * to the register map API will only update the hardware and not the
445 * the cache directly. This is useful when syncing the cache back to
446 * the hardware.
447 */
448void regcache_cache_bypass(struct regmap *map, bool enable)
449{
Lars-Peter Clausen81485f52013-05-23 15:06:15 +0200450 map->lock(map->lock_arg);
Dimitris Papastamosac77a762011-09-29 14:36:28 +0100451 WARN_ON(map->cache_only && enable);
Dimitris Papastamos6eb0f5e2011-09-29 14:36:27 +0100452 map->cache_bypass = enable;
Mark Brown5d5b7d42012-02-23 22:02:57 +0000453 trace_regmap_cache_bypass(map->dev, enable);
Lars-Peter Clausen81485f52013-05-23 15:06:15 +0200454 map->unlock(map->lock_arg);
Dimitris Papastamos6eb0f5e2011-09-29 14:36:27 +0100455}
456EXPORT_SYMBOL_GPL(regcache_cache_bypass);
457
Mark Brown78493f22013-03-29 19:18:59 +0000458int regcache_set_reg_present(struct regmap *map, unsigned int reg)
459{
460 unsigned long *cache_present;
461 unsigned int cache_present_size;
462 unsigned int nregs;
463 int i;
464
465 nregs = reg + 1;
466 cache_present_size = BITS_TO_LONGS(nregs);
467 cache_present_size *= sizeof(long);
468
469 if (!map->cache_present) {
470 cache_present = kmalloc(cache_present_size, GFP_KERNEL);
471 if (!cache_present)
472 return -ENOMEM;
473 bitmap_zero(cache_present, nregs);
474 map->cache_present = cache_present;
475 map->cache_present_nbits = nregs;
476 }
477
478 if (nregs > map->cache_present_nbits) {
479 cache_present = krealloc(map->cache_present,
480 cache_present_size, GFP_KERNEL);
481 if (!cache_present)
482 return -ENOMEM;
483 for (i = 0; i < nregs; i++)
484 if (i >= map->cache_present_nbits)
485 clear_bit(i, cache_present);
486 map->cache_present = cache_present;
487 map->cache_present_nbits = nregs;
488 }
489
490 set_bit(reg, map->cache_present);
491 return 0;
492}
493
Mark Brown879082c2013-02-21 18:03:13 +0000494bool regcache_set_val(struct regmap *map, void *base, unsigned int idx,
495 unsigned int val)
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100496{
Mark Brown325acab2013-02-21 18:07:01 +0000497 if (regcache_get_val(map, base, idx) == val)
498 return true;
499
Mark Browneb4cb762013-02-21 18:39:47 +0000500 /* Use device native format if possible */
501 if (map->format.format_val) {
502 map->format.format_val(base + (map->cache_word_size * idx),
503 val, 0);
504 return false;
505 }
506
Mark Brown879082c2013-02-21 18:03:13 +0000507 switch (map->cache_word_size) {
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100508 case 1: {
509 u8 *cache = base;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100510 cache[idx] = val;
511 break;
512 }
513 case 2: {
514 u16 *cache = base;
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100515 cache[idx] = val;
516 break;
517 }
Mark Brown7d5e5252012-02-17 15:58:25 -0800518 case 4: {
519 u32 *cache = base;
Mark Brown7d5e5252012-02-17 15:58:25 -0800520 cache[idx] = val;
521 break;
522 }
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100523 default:
524 BUG();
525 }
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100526 return false;
527}
528
Mark Brown879082c2013-02-21 18:03:13 +0000529unsigned int regcache_get_val(struct regmap *map, const void *base,
530 unsigned int idx)
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100531{
532 if (!base)
533 return -EINVAL;
534
Mark Browneb4cb762013-02-21 18:39:47 +0000535 /* Use device native format if possible */
536 if (map->format.parse_val)
Mark Brown88177962013-03-13 19:29:36 +0000537 return map->format.parse_val(regcache_get_val_addr(map, base,
538 idx));
Mark Browneb4cb762013-02-21 18:39:47 +0000539
Mark Brown879082c2013-02-21 18:03:13 +0000540 switch (map->cache_word_size) {
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100541 case 1: {
542 const u8 *cache = base;
543 return cache[idx];
544 }
545 case 2: {
546 const u16 *cache = base;
547 return cache[idx];
548 }
Mark Brown7d5e5252012-02-17 15:58:25 -0800549 case 4: {
550 const u32 *cache = base;
551 return cache[idx];
552 }
Dimitris Papastamos9fabe242011-09-19 14:34:00 +0100553 default:
554 BUG();
555 }
556 /* unreachable */
557 return -1;
558}
559
Mark Brownf094fea2011-10-04 22:05:47 +0100560static int regcache_default_cmp(const void *a, const void *b)
Dimitris Papastamosc08604b2011-10-03 10:50:14 +0100561{
562 const struct reg_default *_a = a;
563 const struct reg_default *_b = b;
564
565 return _a->reg - _b->reg;
566}
567
Mark Brownf094fea2011-10-04 22:05:47 +0100568int regcache_lookup_reg(struct regmap *map, unsigned int reg)
569{
570 struct reg_default key;
571 struct reg_default *r;
572
573 key.reg = reg;
574 key.def = 0;
575
576 r = bsearch(&key, map->reg_defaults, map->num_reg_defaults,
577 sizeof(struct reg_default), regcache_default_cmp);
578
579 if (r)
580 return r - map->reg_defaults;
581 else
Mark Brown6e6ace02011-10-09 13:23:31 +0100582 return -ENOENT;
Mark Brownf094fea2011-10-04 22:05:47 +0100583}
Mark Brownf8bd8222013-03-29 19:32:28 +0000584
Mark Browncfdeb8c2013-03-29 20:12:21 +0000585static int regcache_sync_block_single(struct regmap *map, void *block,
586 unsigned int block_base,
587 unsigned int start, unsigned int end)
588{
589 unsigned int i, regtmp, val;
590 int ret;
591
592 for (i = start; i < end; i++) {
593 regtmp = block_base + (i * map->reg_stride);
594
595 if (!regcache_reg_present(map, regtmp))
596 continue;
597
598 val = regcache_get_val(map, block, i);
599
600 /* Is this the hardware default? If so skip. */
601 ret = regcache_lookup_reg(map, regtmp);
602 if (ret >= 0 && val == map->reg_defaults[ret].def)
603 continue;
604
605 map->cache_bypass = 1;
606
607 ret = _regmap_write(map, regtmp, val);
608
609 map->cache_bypass = 0;
610 if (ret != 0)
611 return ret;
612 dev_dbg(map->dev, "Synced register %#x, value %#x\n",
613 regtmp, val);
614 }
615
616 return 0;
617}
618
Mark Brown75a5f892013-03-29 20:50:07 +0000619static int regcache_sync_block_raw_flush(struct regmap *map, const void **data,
620 unsigned int base, unsigned int cur)
621{
622 size_t val_bytes = map->format.val_bytes;
623 int ret, count;
624
625 if (*data == NULL)
626 return 0;
627
628 count = cur - base;
629
Stratos Karafotis96592932013-04-04 19:40:45 +0300630 dev_dbg(map->dev, "Writing %zu bytes for %d registers from 0x%x-0x%x\n",
Mark Brown75a5f892013-03-29 20:50:07 +0000631 count * val_bytes, count, base, cur - 1);
632
633 map->cache_bypass = 1;
634
635 ret = _regmap_raw_write(map, base, *data, count * val_bytes,
636 false);
637
638 map->cache_bypass = 0;
639
640 *data = NULL;
641
642 return ret;
643}
644
Sachin Kamatf52687a2013-04-04 14:36:18 +0530645static int regcache_sync_block_raw(struct regmap *map, void *block,
Mark Browncfdeb8c2013-03-29 20:12:21 +0000646 unsigned int block_base, unsigned int start,
647 unsigned int end)
Mark Brownf8bd8222013-03-29 19:32:28 +0000648{
Mark Brown75a5f892013-03-29 20:50:07 +0000649 unsigned int i, val;
650 unsigned int regtmp = 0;
651 unsigned int base = 0;
652 const void *data = NULL;
Mark Brownf8bd8222013-03-29 19:32:28 +0000653 int ret;
654
655 for (i = start; i < end; i++) {
656 regtmp = block_base + (i * map->reg_stride);
657
Mark Brown75a5f892013-03-29 20:50:07 +0000658 if (!regcache_reg_present(map, regtmp)) {
659 ret = regcache_sync_block_raw_flush(map, &data,
660 base, regtmp);
661 if (ret != 0)
662 return ret;
Mark Brownf8bd8222013-03-29 19:32:28 +0000663 continue;
Mark Brown75a5f892013-03-29 20:50:07 +0000664 }
Mark Brownf8bd8222013-03-29 19:32:28 +0000665
666 val = regcache_get_val(map, block, i);
667
668 /* Is this the hardware default? If so skip. */
669 ret = regcache_lookup_reg(map, regtmp);
Mark Brown75a5f892013-03-29 20:50:07 +0000670 if (ret >= 0 && val == map->reg_defaults[ret].def) {
671 ret = regcache_sync_block_raw_flush(map, &data,
672 base, regtmp);
673 if (ret != 0)
674 return ret;
Mark Brownf8bd8222013-03-29 19:32:28 +0000675 continue;
Mark Brown75a5f892013-03-29 20:50:07 +0000676 }
Mark Brownf8bd8222013-03-29 19:32:28 +0000677
Mark Brown75a5f892013-03-29 20:50:07 +0000678 if (!data) {
679 data = regcache_get_val_addr(map, block, i);
680 base = regtmp;
681 }
Mark Brownf8bd8222013-03-29 19:32:28 +0000682 }
683
Mark Brown75a5f892013-03-29 20:50:07 +0000684 return regcache_sync_block_raw_flush(map, &data, base, regtmp);
Mark Brownf8bd8222013-03-29 19:32:28 +0000685}
Mark Browncfdeb8c2013-03-29 20:12:21 +0000686
687int regcache_sync_block(struct regmap *map, void *block,
688 unsigned int block_base, unsigned int start,
689 unsigned int end)
690{
691 if (regmap_can_raw_write(map))
692 return regcache_sync_block_raw(map, block, block_base,
693 start, end);
694 else
695 return regcache_sync_block_single(map, block, block_base,
696 start, end);
697}