Loading...
1/*
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>
14#include <linux/export.h>
15#include <linux/device.h>
16#include <trace/events/regmap.h>
17#include <linux/bsearch.h>
18#include <linux/sort.h>
19
20#include "internal.h"
21
22static const struct regcache_ops *cache_types[] = {
23 ®cache_rbtree_ops,
24 ®cache_lzo_ops,
25 ®cache_flat_ops,
26};
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) {
40 u32 cache_bypass = map->cache_bypass;
41 dev_warn(map->dev, "No cache defaults, reading back from HW\n");
42
43 /* Bypass the cache access till data read from HW*/
44 map->cache_bypass = 1;
45 tmp_buf = kmalloc(map->cache_size_raw, GFP_KERNEL);
46 if (!tmp_buf)
47 return -EINVAL;
48 ret = regmap_raw_read(map, 0, tmp_buf,
49 map->num_reg_defaults_raw);
50 map->cache_bypass = cache_bypass;
51 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++) {
61 val = regcache_get_val(map, map->reg_defaults_raw, i);
62 if (regmap_volatile(map, i * map->reg_stride))
63 continue;
64 count++;
65 }
66
67 map->reg_defaults = kmalloc(count * sizeof(struct reg_default),
68 GFP_KERNEL);
69 if (!map->reg_defaults) {
70 ret = -ENOMEM;
71 goto err_free;
72 }
73
74 /* fill the reg_defaults */
75 map->num_reg_defaults = count;
76 for (i = 0, j = 0; i < map->num_reg_defaults_raw; i++) {
77 val = regcache_get_val(map, map->reg_defaults_raw, i);
78 if (regmap_volatile(map, i * map->reg_stride))
79 continue;
80 map->reg_defaults[j].reg = i * map->reg_stride;
81 map->reg_defaults[j].def = val;
82 j++;
83 }
84
85 return 0;
86
87err_free:
88 if (map->cache_free)
89 kfree(map->reg_defaults_raw);
90
91 return ret;
92}
93
94int regcache_init(struct regmap *map, const struct regmap_config *config)
95{
96 int ret;
97 int i;
98 void *tmp_buf;
99
100 for (i = 0; i < config->num_reg_defaults; i++)
101 if (config->reg_defaults[i].reg % map->reg_stride)
102 return -EINVAL;
103
104 if (map->cache_type == REGCACHE_NONE) {
105 map->cache_bypass = true;
106 return 0;
107 }
108
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
119 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;
122 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;
124
125 map->cache = NULL;
126 map->cache_ops = cache_types[i];
127
128 if (!map->cache_ops->read ||
129 !map->cache_ops->write ||
130 !map->cache_ops->name)
131 return -EINVAL;
132
133 /* We still need to ensure that the reg_defaults
134 * won't vanish from under us. We'll need to make
135 * a copy of it.
136 */
137 if (config->reg_defaults) {
138 if (!map->num_reg_defaults)
139 return -EINVAL;
140 tmp_buf = kmemdup(config->reg_defaults, map->num_reg_defaults *
141 sizeof(struct reg_default), GFP_KERNEL);
142 if (!tmp_buf)
143 return -ENOMEM;
144 map->reg_defaults = tmp_buf;
145 } else if (map->num_reg_defaults_raw) {
146 /* Some devices such as PMICs don't have cache defaults,
147 * we cope with this by reading back the HW registers and
148 * crafting the cache defaults by hand.
149 */
150 ret = regcache_hw_init(map);
151 if (ret < 0)
152 return ret;
153 }
154
155 if (!map->max_register)
156 map->max_register = map->num_reg_defaults_raw;
157
158 if (map->cache_ops->init) {
159 dev_dbg(map->dev, "Initializing %s cache\n",
160 map->cache_ops->name);
161 ret = map->cache_ops->init(map);
162 if (ret)
163 goto err_free;
164 }
165 return 0;
166
167err_free:
168 kfree(map->reg_defaults);
169 if (map->cache_free)
170 kfree(map->reg_defaults_raw);
171
172 return ret;
173}
174
175void regcache_exit(struct regmap *map)
176{
177 if (map->cache_type == REGCACHE_NONE)
178 return;
179
180 BUG_ON(!map->cache_ops);
181
182 kfree(map->reg_defaults);
183 if (map->cache_free)
184 kfree(map->reg_defaults_raw);
185
186 if (map->cache_ops->exit) {
187 dev_dbg(map->dev, "Destroying %s cache\n",
188 map->cache_ops->name);
189 map->cache_ops->exit(map);
190 }
191}
192
193/**
194 * regcache_read: Fetch the value of a given register from the cache.
195 *
196 * @map: map to configure.
197 * @reg: The register index.
198 * @value: The value to be returned.
199 *
200 * Return a negative value on failure, 0 on success.
201 */
202int regcache_read(struct regmap *map,
203 unsigned int reg, unsigned int *value)
204{
205 int ret;
206
207 if (map->cache_type == REGCACHE_NONE)
208 return -ENOSYS;
209
210 BUG_ON(!map->cache_ops);
211
212 if (!regmap_volatile(map, reg)) {
213 ret = map->cache_ops->read(map, reg, value);
214
215 if (ret == 0)
216 trace_regmap_reg_read_cache(map->dev, reg, *value);
217
218 return ret;
219 }
220
221 return -EINVAL;
222}
223
224/**
225 * regcache_write: Set the value of a given register in the cache.
226 *
227 * @map: map to configure.
228 * @reg: The register index.
229 * @value: The new register value.
230 *
231 * Return a negative value on failure, 0 on success.
232 */
233int regcache_write(struct regmap *map,
234 unsigned int reg, unsigned int value)
235{
236 if (map->cache_type == REGCACHE_NONE)
237 return 0;
238
239 BUG_ON(!map->cache_ops);
240
241 if (!regmap_volatile(map, reg))
242 return map->cache_ops->write(map, reg, value);
243
244 return 0;
245}
246
247static int regcache_default_sync(struct regmap *map, unsigned int min,
248 unsigned int max)
249{
250 unsigned int reg;
251
252 for (reg = min; reg <= max; reg += map->reg_stride) {
253 unsigned int val;
254 int ret;
255
256 if (regmap_volatile(map, reg) ||
257 !regmap_writeable(map, reg))
258 continue;
259
260 ret = regcache_read(map, reg, &val);
261 if (ret)
262 return ret;
263
264 /* Is this the hardware default? If so skip. */
265 ret = regcache_lookup_reg(map, reg);
266 if (ret >= 0 && val == map->reg_defaults[ret].def)
267 continue;
268
269 map->cache_bypass = 1;
270 ret = _regmap_write(map, reg, val);
271 map->cache_bypass = 0;
272 if (ret)
273 return ret;
274 dev_dbg(map->dev, "Synced register %#x, value %#x\n", reg, val);
275 }
276
277 return 0;
278}
279
280/**
281 * regcache_sync: Sync the register cache with the hardware.
282 *
283 * @map: map to configure.
284 *
285 * Any registers that should not be synced should be marked as
286 * volatile. In general drivers can choose not to use the provided
287 * syncing functionality if they so require.
288 *
289 * Return a negative value on failure, 0 on success.
290 */
291int regcache_sync(struct regmap *map)
292{
293 int ret = 0;
294 unsigned int i;
295 const char *name;
296 unsigned int bypass;
297
298 BUG_ON(!map->cache_ops);
299
300 map->lock(map->lock_arg);
301 /* Remember the initial bypass state */
302 bypass = map->cache_bypass;
303 dev_dbg(map->dev, "Syncing %s cache\n",
304 map->cache_ops->name);
305 name = map->cache_ops->name;
306 trace_regcache_sync(map->dev, name, "start");
307
308 if (!map->cache_dirty)
309 goto out;
310
311 map->async = true;
312
313 /* Apply any patch first */
314 map->cache_bypass = 1;
315 for (i = 0; i < map->patch_regs; i++) {
316 ret = _regmap_write(map, map->patch[i].reg, map->patch[i].def);
317 if (ret != 0) {
318 dev_err(map->dev, "Failed to write %x = %x: %d\n",
319 map->patch[i].reg, map->patch[i].def, ret);
320 goto out;
321 }
322 }
323 map->cache_bypass = 0;
324
325 if (map->cache_ops->sync)
326 ret = map->cache_ops->sync(map, 0, map->max_register);
327 else
328 ret = regcache_default_sync(map, 0, map->max_register);
329
330 if (ret == 0)
331 map->cache_dirty = false;
332
333out:
334 /* Restore the bypass state */
335 map->async = false;
336 map->cache_bypass = bypass;
337 map->unlock(map->lock_arg);
338
339 regmap_async_complete(map);
340
341 trace_regcache_sync(map->dev, name, "stop");
342
343 return ret;
344}
345EXPORT_SYMBOL_GPL(regcache_sync);
346
347/**
348 * regcache_sync_region: Sync part of the register cache with the hardware.
349 *
350 * @map: map to sync.
351 * @min: first register to sync
352 * @max: last register to sync
353 *
354 * Write all non-default register values in the specified region to
355 * the hardware.
356 *
357 * Return a negative value on failure, 0 on success.
358 */
359int regcache_sync_region(struct regmap *map, unsigned int min,
360 unsigned int max)
361{
362 int ret = 0;
363 const char *name;
364 unsigned int bypass;
365
366 BUG_ON(!map->cache_ops);
367
368 map->lock(map->lock_arg);
369
370 /* Remember the initial bypass state */
371 bypass = map->cache_bypass;
372
373 name = map->cache_ops->name;
374 dev_dbg(map->dev, "Syncing %s cache from %d-%d\n", name, min, max);
375
376 trace_regcache_sync(map->dev, name, "start region");
377
378 if (!map->cache_dirty)
379 goto out;
380
381 map->async = true;
382
383 if (map->cache_ops->sync)
384 ret = map->cache_ops->sync(map, min, max);
385 else
386 ret = regcache_default_sync(map, min, max);
387
388out:
389 /* Restore the bypass state */
390 map->cache_bypass = bypass;
391 map->async = false;
392 map->unlock(map->lock_arg);
393
394 regmap_async_complete(map);
395
396 trace_regcache_sync(map->dev, name, "stop region");
397
398 return ret;
399}
400EXPORT_SYMBOL_GPL(regcache_sync_region);
401
402/**
403 * regcache_drop_region: Discard part of the register cache
404 *
405 * @map: map to operate on
406 * @min: first register to discard
407 * @max: last register to discard
408 *
409 * Discard part of the register cache.
410 *
411 * Return a negative value on failure, 0 on success.
412 */
413int regcache_drop_region(struct regmap *map, unsigned int min,
414 unsigned int max)
415{
416 int ret = 0;
417
418 if (!map->cache_ops || !map->cache_ops->drop)
419 return -EINVAL;
420
421 map->lock(map->lock_arg);
422
423 trace_regcache_drop_region(map->dev, min, max);
424
425 ret = map->cache_ops->drop(map, min, max);
426
427 map->unlock(map->lock_arg);
428
429 return ret;
430}
431EXPORT_SYMBOL_GPL(regcache_drop_region);
432
433/**
434 * regcache_cache_only: Put a register map into cache only mode
435 *
436 * @map: map to configure
437 * @cache_only: flag if changes should be written to the hardware
438 *
439 * When a register map is marked as cache only writes to the register
440 * map API will only update the register cache, they will not cause
441 * any hardware changes. This is useful for allowing portions of
442 * drivers to act as though the device were functioning as normal when
443 * it is disabled for power saving reasons.
444 */
445void regcache_cache_only(struct regmap *map, bool enable)
446{
447 map->lock(map->lock_arg);
448 WARN_ON(map->cache_bypass && enable);
449 map->cache_only = enable;
450 trace_regmap_cache_only(map->dev, enable);
451 map->unlock(map->lock_arg);
452}
453EXPORT_SYMBOL_GPL(regcache_cache_only);
454
455/**
456 * regcache_mark_dirty: Mark the register cache as dirty
457 *
458 * @map: map to mark
459 *
460 * Mark the register cache as dirty, for example due to the device
461 * having been powered down for suspend. If the cache is not marked
462 * as dirty then the cache sync will be suppressed.
463 */
464void regcache_mark_dirty(struct regmap *map)
465{
466 map->lock(map->lock_arg);
467 map->cache_dirty = true;
468 map->unlock(map->lock_arg);
469}
470EXPORT_SYMBOL_GPL(regcache_mark_dirty);
471
472/**
473 * regcache_cache_bypass: Put a register map into cache bypass mode
474 *
475 * @map: map to configure
476 * @cache_bypass: flag if changes should not be written to the hardware
477 *
478 * When a register map is marked with the cache bypass option, writes
479 * to the register map API will only update the hardware and not the
480 * the cache directly. This is useful when syncing the cache back to
481 * the hardware.
482 */
483void regcache_cache_bypass(struct regmap *map, bool enable)
484{
485 map->lock(map->lock_arg);
486 WARN_ON(map->cache_only && enable);
487 map->cache_bypass = enable;
488 trace_regmap_cache_bypass(map->dev, enable);
489 map->unlock(map->lock_arg);
490}
491EXPORT_SYMBOL_GPL(regcache_cache_bypass);
492
493bool regcache_set_val(struct regmap *map, void *base, unsigned int idx,
494 unsigned int val)
495{
496 if (regcache_get_val(map, base, idx) == val)
497 return true;
498
499 /* Use device native format if possible */
500 if (map->format.format_val) {
501 map->format.format_val(base + (map->cache_word_size * idx),
502 val, 0);
503 return false;
504 }
505
506 switch (map->cache_word_size) {
507 case 1: {
508 u8 *cache = base;
509 cache[idx] = val;
510 break;
511 }
512 case 2: {
513 u16 *cache = base;
514 cache[idx] = val;
515 break;
516 }
517 case 4: {
518 u32 *cache = base;
519 cache[idx] = val;
520 break;
521 }
522 default:
523 BUG();
524 }
525 return false;
526}
527
528unsigned int regcache_get_val(struct regmap *map, const void *base,
529 unsigned int idx)
530{
531 if (!base)
532 return -EINVAL;
533
534 /* Use device native format if possible */
535 if (map->format.parse_val)
536 return map->format.parse_val(regcache_get_val_addr(map, base,
537 idx));
538
539 switch (map->cache_word_size) {
540 case 1: {
541 const u8 *cache = base;
542 return cache[idx];
543 }
544 case 2: {
545 const u16 *cache = base;
546 return cache[idx];
547 }
548 case 4: {
549 const u32 *cache = base;
550 return cache[idx];
551 }
552 default:
553 BUG();
554 }
555 /* unreachable */
556 return -1;
557}
558
559static int regcache_default_cmp(const void *a, const void *b)
560{
561 const struct reg_default *_a = a;
562 const struct reg_default *_b = b;
563
564 return _a->reg - _b->reg;
565}
566
567int regcache_lookup_reg(struct regmap *map, unsigned int reg)
568{
569 struct reg_default key;
570 struct reg_default *r;
571
572 key.reg = reg;
573 key.def = 0;
574
575 r = bsearch(&key, map->reg_defaults, map->num_reg_defaults,
576 sizeof(struct reg_default), regcache_default_cmp);
577
578 if (r)
579 return r - map->reg_defaults;
580 else
581 return -ENOENT;
582}
583
584static bool regcache_reg_present(unsigned long *cache_present, unsigned int idx)
585{
586 if (!cache_present)
587 return true;
588
589 return test_bit(idx, cache_present);
590}
591
592static int regcache_sync_block_single(struct regmap *map, void *block,
593 unsigned long *cache_present,
594 unsigned int block_base,
595 unsigned int start, unsigned int end)
596{
597 unsigned int i, regtmp, val;
598 int ret;
599
600 for (i = start; i < end; i++) {
601 regtmp = block_base + (i * map->reg_stride);
602
603 if (!regcache_reg_present(cache_present, i))
604 continue;
605
606 val = regcache_get_val(map, block, i);
607
608 /* Is this the hardware default? If so skip. */
609 ret = regcache_lookup_reg(map, regtmp);
610 if (ret >= 0 && val == map->reg_defaults[ret].def)
611 continue;
612
613 map->cache_bypass = 1;
614
615 ret = _regmap_write(map, regtmp, val);
616
617 map->cache_bypass = 0;
618 if (ret != 0)
619 return ret;
620 dev_dbg(map->dev, "Synced register %#x, value %#x\n",
621 regtmp, val);
622 }
623
624 return 0;
625}
626
627static int regcache_sync_block_raw_flush(struct regmap *map, const void **data,
628 unsigned int base, unsigned int cur)
629{
630 size_t val_bytes = map->format.val_bytes;
631 int ret, count;
632
633 if (*data == NULL)
634 return 0;
635
636 count = (cur - base) / map->reg_stride;
637
638 dev_dbg(map->dev, "Writing %zu bytes for %d registers from 0x%x-0x%x\n",
639 count * val_bytes, count, base, cur - map->reg_stride);
640
641 map->cache_bypass = 1;
642
643 ret = _regmap_raw_write(map, base, *data, count * val_bytes);
644
645 map->cache_bypass = 0;
646
647 *data = NULL;
648
649 return ret;
650}
651
652static int regcache_sync_block_raw(struct regmap *map, void *block,
653 unsigned long *cache_present,
654 unsigned int block_base, unsigned int start,
655 unsigned int end)
656{
657 unsigned int i, val;
658 unsigned int regtmp = 0;
659 unsigned int base = 0;
660 const void *data = NULL;
661 int ret;
662
663 for (i = start; i < end; i++) {
664 regtmp = block_base + (i * map->reg_stride);
665
666 if (!regcache_reg_present(cache_present, i)) {
667 ret = regcache_sync_block_raw_flush(map, &data,
668 base, regtmp);
669 if (ret != 0)
670 return ret;
671 continue;
672 }
673
674 val = regcache_get_val(map, block, i);
675
676 /* Is this the hardware default? If so skip. */
677 ret = regcache_lookup_reg(map, regtmp);
678 if (ret >= 0 && val == map->reg_defaults[ret].def) {
679 ret = regcache_sync_block_raw_flush(map, &data,
680 base, regtmp);
681 if (ret != 0)
682 return ret;
683 continue;
684 }
685
686 if (!data) {
687 data = regcache_get_val_addr(map, block, i);
688 base = regtmp;
689 }
690 }
691
692 return regcache_sync_block_raw_flush(map, &data, base, regtmp +
693 map->reg_stride);
694}
695
696int regcache_sync_block(struct regmap *map, void *block,
697 unsigned long *cache_present,
698 unsigned int block_base, unsigned int start,
699 unsigned int end)
700{
701 if (regmap_can_raw_write(map))
702 return regcache_sync_block_raw(map, block, cache_present,
703 block_base, start, end);
704 else
705 return regcache_sync_block_single(map, block, cache_present,
706 block_base, start, end);
707}
1// SPDX-License-Identifier: GPL-2.0
2//
3// Register cache access API
4//
5// Copyright 2011 Wolfson Microelectronics plc
6//
7// Author: Dimitris Papastamos <dp@opensource.wolfsonmicro.com>
8
9#include <linux/bsearch.h>
10#include <linux/device.h>
11#include <linux/export.h>
12#include <linux/slab.h>
13#include <linux/sort.h>
14
15#include "trace.h"
16#include "internal.h"
17
18static const struct regcache_ops *cache_types[] = {
19 ®cache_rbtree_ops,
20 ®cache_maple_ops,
21 ®cache_flat_ops,
22};
23
24static int regcache_hw_init(struct regmap *map)
25{
26 int i, j;
27 int ret;
28 int count;
29 unsigned int reg, val;
30 void *tmp_buf;
31
32 if (!map->num_reg_defaults_raw)
33 return -EINVAL;
34
35 /* calculate the size of reg_defaults */
36 for (count = 0, i = 0; i < map->num_reg_defaults_raw; i++)
37 if (regmap_readable(map, i * map->reg_stride) &&
38 !regmap_volatile(map, i * map->reg_stride))
39 count++;
40
41 /* all registers are unreadable or volatile, so just bypass */
42 if (!count) {
43 map->cache_bypass = true;
44 return 0;
45 }
46
47 map->num_reg_defaults = count;
48 map->reg_defaults = kmalloc_array(count, sizeof(struct reg_default),
49 GFP_KERNEL);
50 if (!map->reg_defaults)
51 return -ENOMEM;
52
53 if (!map->reg_defaults_raw) {
54 bool cache_bypass = map->cache_bypass;
55 dev_warn(map->dev, "No cache defaults, reading back from HW\n");
56
57 /* Bypass the cache access till data read from HW */
58 map->cache_bypass = true;
59 tmp_buf = kmalloc(map->cache_size_raw, GFP_KERNEL);
60 if (!tmp_buf) {
61 ret = -ENOMEM;
62 goto err_free;
63 }
64 ret = regmap_raw_read(map, 0, tmp_buf,
65 map->cache_size_raw);
66 map->cache_bypass = cache_bypass;
67 if (ret == 0) {
68 map->reg_defaults_raw = tmp_buf;
69 map->cache_free = true;
70 } else {
71 kfree(tmp_buf);
72 }
73 }
74
75 /* fill the reg_defaults */
76 for (i = 0, j = 0; i < map->num_reg_defaults_raw; i++) {
77 reg = i * map->reg_stride;
78
79 if (!regmap_readable(map, reg))
80 continue;
81
82 if (regmap_volatile(map, reg))
83 continue;
84
85 if (map->reg_defaults_raw) {
86 val = regcache_get_val(map, map->reg_defaults_raw, i);
87 } else {
88 bool cache_bypass = map->cache_bypass;
89
90 map->cache_bypass = true;
91 ret = regmap_read(map, reg, &val);
92 map->cache_bypass = cache_bypass;
93 if (ret != 0) {
94 dev_err(map->dev, "Failed to read %d: %d\n",
95 reg, ret);
96 goto err_free;
97 }
98 }
99
100 map->reg_defaults[j].reg = reg;
101 map->reg_defaults[j].def = val;
102 j++;
103 }
104
105 return 0;
106
107err_free:
108 kfree(map->reg_defaults);
109
110 return ret;
111}
112
113int regcache_init(struct regmap *map, const struct regmap_config *config)
114{
115 int ret;
116 int i;
117 void *tmp_buf;
118
119 if (map->cache_type == REGCACHE_NONE) {
120 if (config->reg_defaults || config->num_reg_defaults_raw)
121 dev_warn(map->dev,
122 "No cache used with register defaults set!\n");
123
124 map->cache_bypass = true;
125 return 0;
126 }
127
128 if (config->reg_defaults && !config->num_reg_defaults) {
129 dev_err(map->dev,
130 "Register defaults are set without the number!\n");
131 return -EINVAL;
132 }
133
134 if (config->num_reg_defaults && !config->reg_defaults) {
135 dev_err(map->dev,
136 "Register defaults number are set without the reg!\n");
137 return -EINVAL;
138 }
139
140 for (i = 0; i < config->num_reg_defaults; i++)
141 if (config->reg_defaults[i].reg % map->reg_stride)
142 return -EINVAL;
143
144 for (i = 0; i < ARRAY_SIZE(cache_types); i++)
145 if (cache_types[i]->type == map->cache_type)
146 break;
147
148 if (i == ARRAY_SIZE(cache_types)) {
149 dev_err(map->dev, "Could not match cache type: %d\n",
150 map->cache_type);
151 return -EINVAL;
152 }
153
154 map->num_reg_defaults = config->num_reg_defaults;
155 map->num_reg_defaults_raw = config->num_reg_defaults_raw;
156 map->reg_defaults_raw = config->reg_defaults_raw;
157 map->cache_word_size = DIV_ROUND_UP(config->val_bits, 8);
158 map->cache_size_raw = map->cache_word_size * config->num_reg_defaults_raw;
159
160 map->cache = NULL;
161 map->cache_ops = cache_types[i];
162
163 if (!map->cache_ops->read ||
164 !map->cache_ops->write ||
165 !map->cache_ops->name)
166 return -EINVAL;
167
168 /* We still need to ensure that the reg_defaults
169 * won't vanish from under us. We'll need to make
170 * a copy of it.
171 */
172 if (config->reg_defaults) {
173 tmp_buf = kmemdup_array(config->reg_defaults, map->num_reg_defaults,
174 sizeof(*map->reg_defaults), GFP_KERNEL);
175 if (!tmp_buf)
176 return -ENOMEM;
177 map->reg_defaults = tmp_buf;
178 } else if (map->num_reg_defaults_raw) {
179 /* Some devices such as PMICs don't have cache defaults,
180 * we cope with this by reading back the HW registers and
181 * crafting the cache defaults by hand.
182 */
183 ret = regcache_hw_init(map);
184 if (ret < 0)
185 return ret;
186 if (map->cache_bypass)
187 return 0;
188 }
189
190 if (!map->max_register_is_set && map->num_reg_defaults_raw) {
191 map->max_register = (map->num_reg_defaults_raw - 1) * map->reg_stride;
192 map->max_register_is_set = true;
193 }
194
195 if (map->cache_ops->init) {
196 dev_dbg(map->dev, "Initializing %s cache\n",
197 map->cache_ops->name);
198 map->lock(map->lock_arg);
199 ret = map->cache_ops->init(map);
200 map->unlock(map->lock_arg);
201 if (ret)
202 goto err_free;
203 }
204 return 0;
205
206err_free:
207 kfree(map->reg_defaults);
208 if (map->cache_free)
209 kfree(map->reg_defaults_raw);
210
211 return ret;
212}
213
214void regcache_exit(struct regmap *map)
215{
216 if (map->cache_type == REGCACHE_NONE)
217 return;
218
219 BUG_ON(!map->cache_ops);
220
221 kfree(map->reg_defaults);
222 if (map->cache_free)
223 kfree(map->reg_defaults_raw);
224
225 if (map->cache_ops->exit) {
226 dev_dbg(map->dev, "Destroying %s cache\n",
227 map->cache_ops->name);
228 map->lock(map->lock_arg);
229 map->cache_ops->exit(map);
230 map->unlock(map->lock_arg);
231 }
232}
233
234/**
235 * regcache_read - Fetch the value of a given register from the cache.
236 *
237 * @map: map to configure.
238 * @reg: The register index.
239 * @value: The value to be returned.
240 *
241 * Return a negative value on failure, 0 on success.
242 */
243int regcache_read(struct regmap *map,
244 unsigned int reg, unsigned int *value)
245{
246 int ret;
247
248 if (map->cache_type == REGCACHE_NONE)
249 return -EINVAL;
250
251 BUG_ON(!map->cache_ops);
252
253 if (!regmap_volatile(map, reg)) {
254 ret = map->cache_ops->read(map, reg, value);
255
256 if (ret == 0)
257 trace_regmap_reg_read_cache(map, reg, *value);
258
259 return ret;
260 }
261
262 return -EINVAL;
263}
264
265/**
266 * regcache_write - Set the value of a given register in the cache.
267 *
268 * @map: map to configure.
269 * @reg: The register index.
270 * @value: The new register value.
271 *
272 * Return a negative value on failure, 0 on success.
273 */
274int regcache_write(struct regmap *map,
275 unsigned int reg, unsigned int value)
276{
277 if (map->cache_type == REGCACHE_NONE)
278 return 0;
279
280 BUG_ON(!map->cache_ops);
281
282 if (!regmap_volatile(map, reg))
283 return map->cache_ops->write(map, reg, value);
284
285 return 0;
286}
287
288bool regcache_reg_needs_sync(struct regmap *map, unsigned int reg,
289 unsigned int val)
290{
291 int ret;
292
293 if (!regmap_writeable(map, reg))
294 return false;
295
296 /* If we don't know the chip just got reset, then sync everything. */
297 if (!map->no_sync_defaults)
298 return true;
299
300 /* Is this the hardware default? If so skip. */
301 ret = regcache_lookup_reg(map, reg);
302 if (ret >= 0 && val == map->reg_defaults[ret].def)
303 return false;
304 return true;
305}
306
307static int regcache_default_sync(struct regmap *map, unsigned int min,
308 unsigned int max)
309{
310 unsigned int reg;
311
312 for (reg = min; reg <= max; reg += map->reg_stride) {
313 unsigned int val;
314 int ret;
315
316 if (regmap_volatile(map, reg) ||
317 !regmap_writeable(map, reg))
318 continue;
319
320 ret = regcache_read(map, reg, &val);
321 if (ret == -ENOENT)
322 continue;
323 if (ret)
324 return ret;
325
326 if (!regcache_reg_needs_sync(map, reg, val))
327 continue;
328
329 map->cache_bypass = true;
330 ret = _regmap_write(map, reg, val);
331 map->cache_bypass = false;
332 if (ret) {
333 dev_err(map->dev, "Unable to sync register %#x. %d\n",
334 reg, ret);
335 return ret;
336 }
337 dev_dbg(map->dev, "Synced register %#x, value %#x\n", reg, val);
338 }
339
340 return 0;
341}
342
343static int rbtree_all(const void *key, const struct rb_node *node)
344{
345 return 0;
346}
347
348/**
349 * regcache_sync - Sync the register cache with the hardware.
350 *
351 * @map: map to configure.
352 *
353 * Any registers that should not be synced should be marked as
354 * volatile. In general drivers can choose not to use the provided
355 * syncing functionality if they so require.
356 *
357 * Return a negative value on failure, 0 on success.
358 */
359int regcache_sync(struct regmap *map)
360{
361 int ret = 0;
362 unsigned int i;
363 const char *name;
364 bool bypass;
365 struct rb_node *node;
366
367 if (WARN_ON(map->cache_type == REGCACHE_NONE))
368 return -EINVAL;
369
370 BUG_ON(!map->cache_ops);
371
372 map->lock(map->lock_arg);
373 /* Remember the initial bypass state */
374 bypass = map->cache_bypass;
375 dev_dbg(map->dev, "Syncing %s cache\n",
376 map->cache_ops->name);
377 name = map->cache_ops->name;
378 trace_regcache_sync(map, name, "start");
379
380 if (!map->cache_dirty)
381 goto out;
382
383 /* Apply any patch first */
384 map->cache_bypass = true;
385 for (i = 0; i < map->patch_regs; i++) {
386 ret = _regmap_write(map, map->patch[i].reg, map->patch[i].def);
387 if (ret != 0) {
388 dev_err(map->dev, "Failed to write %x = %x: %d\n",
389 map->patch[i].reg, map->patch[i].def, ret);
390 goto out;
391 }
392 }
393 map->cache_bypass = false;
394
395 if (map->cache_ops->sync)
396 ret = map->cache_ops->sync(map, 0, map->max_register);
397 else
398 ret = regcache_default_sync(map, 0, map->max_register);
399
400 if (ret == 0)
401 map->cache_dirty = false;
402
403out:
404 /* Restore the bypass state */
405 map->cache_bypass = bypass;
406 map->no_sync_defaults = false;
407
408 /*
409 * If we did any paging with cache bypassed and a cached
410 * paging register then the register and cache state might
411 * have gone out of sync, force writes of all the paging
412 * registers.
413 */
414 rb_for_each(node, NULL, &map->range_tree, rbtree_all) {
415 struct regmap_range_node *this =
416 rb_entry(node, struct regmap_range_node, node);
417
418 /* If there's nothing in the cache there's nothing to sync */
419 if (regcache_read(map, this->selector_reg, &i) != 0)
420 continue;
421
422 ret = _regmap_write(map, this->selector_reg, i);
423 if (ret != 0) {
424 dev_err(map->dev, "Failed to write %x = %x: %d\n",
425 this->selector_reg, i, ret);
426 break;
427 }
428 }
429
430 map->unlock(map->lock_arg);
431
432 regmap_async_complete(map);
433
434 trace_regcache_sync(map, name, "stop");
435
436 return ret;
437}
438EXPORT_SYMBOL_GPL(regcache_sync);
439
440/**
441 * regcache_sync_region - Sync part of the register cache with the hardware.
442 *
443 * @map: map to sync.
444 * @min: first register to sync
445 * @max: last register to sync
446 *
447 * Write all non-default register values in the specified region to
448 * the hardware.
449 *
450 * Return a negative value on failure, 0 on success.
451 */
452int regcache_sync_region(struct regmap *map, unsigned int min,
453 unsigned int max)
454{
455 int ret = 0;
456 const char *name;
457 bool bypass;
458
459 if (WARN_ON(map->cache_type == REGCACHE_NONE))
460 return -EINVAL;
461
462 BUG_ON(!map->cache_ops);
463
464 map->lock(map->lock_arg);
465
466 /* Remember the initial bypass state */
467 bypass = map->cache_bypass;
468
469 name = map->cache_ops->name;
470 dev_dbg(map->dev, "Syncing %s cache from %d-%d\n", name, min, max);
471
472 trace_regcache_sync(map, name, "start region");
473
474 if (!map->cache_dirty)
475 goto out;
476
477 map->async = true;
478
479 if (map->cache_ops->sync)
480 ret = map->cache_ops->sync(map, min, max);
481 else
482 ret = regcache_default_sync(map, min, max);
483
484out:
485 /* Restore the bypass state */
486 map->cache_bypass = bypass;
487 map->async = false;
488 map->no_sync_defaults = false;
489 map->unlock(map->lock_arg);
490
491 regmap_async_complete(map);
492
493 trace_regcache_sync(map, name, "stop region");
494
495 return ret;
496}
497EXPORT_SYMBOL_GPL(regcache_sync_region);
498
499/**
500 * regcache_drop_region - Discard part of the register cache
501 *
502 * @map: map to operate on
503 * @min: first register to discard
504 * @max: last register to discard
505 *
506 * Discard part of the register cache.
507 *
508 * Return a negative value on failure, 0 on success.
509 */
510int regcache_drop_region(struct regmap *map, unsigned int min,
511 unsigned int max)
512{
513 int ret = 0;
514
515 if (!map->cache_ops || !map->cache_ops->drop)
516 return -EINVAL;
517
518 map->lock(map->lock_arg);
519
520 trace_regcache_drop_region(map, min, max);
521
522 ret = map->cache_ops->drop(map, min, max);
523
524 map->unlock(map->lock_arg);
525
526 return ret;
527}
528EXPORT_SYMBOL_GPL(regcache_drop_region);
529
530/**
531 * regcache_cache_only - Put a register map into cache only mode
532 *
533 * @map: map to configure
534 * @enable: flag if changes should be written to the hardware
535 *
536 * When a register map is marked as cache only writes to the register
537 * map API will only update the register cache, they will not cause
538 * any hardware changes. This is useful for allowing portions of
539 * drivers to act as though the device were functioning as normal when
540 * it is disabled for power saving reasons.
541 */
542void regcache_cache_only(struct regmap *map, bool enable)
543{
544 map->lock(map->lock_arg);
545 WARN_ON(map->cache_type != REGCACHE_NONE &&
546 map->cache_bypass && enable);
547 map->cache_only = enable;
548 trace_regmap_cache_only(map, enable);
549 map->unlock(map->lock_arg);
550}
551EXPORT_SYMBOL_GPL(regcache_cache_only);
552
553/**
554 * regcache_mark_dirty - Indicate that HW registers were reset to default values
555 *
556 * @map: map to mark
557 *
558 * Inform regcache that the device has been powered down or reset, so that
559 * on resume, regcache_sync() knows to write out all non-default values
560 * stored in the cache.
561 *
562 * If this function is not called, regcache_sync() will assume that
563 * the hardware state still matches the cache state, modulo any writes that
564 * happened when cache_only was true.
565 */
566void regcache_mark_dirty(struct regmap *map)
567{
568 map->lock(map->lock_arg);
569 map->cache_dirty = true;
570 map->no_sync_defaults = true;
571 map->unlock(map->lock_arg);
572}
573EXPORT_SYMBOL_GPL(regcache_mark_dirty);
574
575/**
576 * regcache_cache_bypass - Put a register map into cache bypass mode
577 *
578 * @map: map to configure
579 * @enable: flag if changes should not be written to the cache
580 *
581 * When a register map is marked with the cache bypass option, writes
582 * to the register map API will only update the hardware and not
583 * the cache directly. This is useful when syncing the cache back to
584 * the hardware.
585 */
586void regcache_cache_bypass(struct regmap *map, bool enable)
587{
588 map->lock(map->lock_arg);
589 WARN_ON(map->cache_only && enable);
590 map->cache_bypass = enable;
591 trace_regmap_cache_bypass(map, enable);
592 map->unlock(map->lock_arg);
593}
594EXPORT_SYMBOL_GPL(regcache_cache_bypass);
595
596/**
597 * regcache_reg_cached - Check if a register is cached
598 *
599 * @map: map to check
600 * @reg: register to check
601 *
602 * Reports if a register is cached.
603 */
604bool regcache_reg_cached(struct regmap *map, unsigned int reg)
605{
606 unsigned int val;
607 int ret;
608
609 map->lock(map->lock_arg);
610
611 ret = regcache_read(map, reg, &val);
612
613 map->unlock(map->lock_arg);
614
615 return ret == 0;
616}
617EXPORT_SYMBOL_GPL(regcache_reg_cached);
618
619void regcache_set_val(struct regmap *map, void *base, unsigned int idx,
620 unsigned int val)
621{
622 /* Use device native format if possible */
623 if (map->format.format_val) {
624 map->format.format_val(base + (map->cache_word_size * idx),
625 val, 0);
626 return;
627 }
628
629 switch (map->cache_word_size) {
630 case 1: {
631 u8 *cache = base;
632
633 cache[idx] = val;
634 break;
635 }
636 case 2: {
637 u16 *cache = base;
638
639 cache[idx] = val;
640 break;
641 }
642 case 4: {
643 u32 *cache = base;
644
645 cache[idx] = val;
646 break;
647 }
648 default:
649 BUG();
650 }
651}
652
653unsigned int regcache_get_val(struct regmap *map, const void *base,
654 unsigned int idx)
655{
656 if (!base)
657 return -EINVAL;
658
659 /* Use device native format if possible */
660 if (map->format.parse_val)
661 return map->format.parse_val(regcache_get_val_addr(map, base,
662 idx));
663
664 switch (map->cache_word_size) {
665 case 1: {
666 const u8 *cache = base;
667
668 return cache[idx];
669 }
670 case 2: {
671 const u16 *cache = base;
672
673 return cache[idx];
674 }
675 case 4: {
676 const u32 *cache = base;
677
678 return cache[idx];
679 }
680 default:
681 BUG();
682 }
683 /* unreachable */
684 return -1;
685}
686
687static int regcache_default_cmp(const void *a, const void *b)
688{
689 const struct reg_default *_a = a;
690 const struct reg_default *_b = b;
691
692 return _a->reg - _b->reg;
693}
694
695int regcache_lookup_reg(struct regmap *map, unsigned int reg)
696{
697 struct reg_default key;
698 struct reg_default *r;
699
700 key.reg = reg;
701 key.def = 0;
702
703 r = bsearch(&key, map->reg_defaults, map->num_reg_defaults,
704 sizeof(struct reg_default), regcache_default_cmp);
705
706 if (r)
707 return r - map->reg_defaults;
708 else
709 return -ENOENT;
710}
711
712static bool regcache_reg_present(unsigned long *cache_present, unsigned int idx)
713{
714 if (!cache_present)
715 return true;
716
717 return test_bit(idx, cache_present);
718}
719
720int regcache_sync_val(struct regmap *map, unsigned int reg, unsigned int val)
721{
722 int ret;
723
724 if (!regcache_reg_needs_sync(map, reg, val))
725 return 0;
726
727 map->cache_bypass = true;
728
729 ret = _regmap_write(map, reg, val);
730
731 map->cache_bypass = false;
732
733 if (ret != 0) {
734 dev_err(map->dev, "Unable to sync register %#x. %d\n",
735 reg, ret);
736 return ret;
737 }
738 dev_dbg(map->dev, "Synced register %#x, value %#x\n",
739 reg, val);
740
741 return 0;
742}
743
744static int regcache_sync_block_single(struct regmap *map, void *block,
745 unsigned long *cache_present,
746 unsigned int block_base,
747 unsigned int start, unsigned int end)
748{
749 unsigned int i, regtmp, val;
750 int ret;
751
752 for (i = start; i < end; i++) {
753 regtmp = block_base + (i * map->reg_stride);
754
755 if (!regcache_reg_present(cache_present, i) ||
756 !regmap_writeable(map, regtmp))
757 continue;
758
759 val = regcache_get_val(map, block, i);
760 ret = regcache_sync_val(map, regtmp, val);
761 if (ret != 0)
762 return ret;
763 }
764
765 return 0;
766}
767
768static int regcache_sync_block_raw_flush(struct regmap *map, const void **data,
769 unsigned int base, unsigned int cur)
770{
771 size_t val_bytes = map->format.val_bytes;
772 int ret, count;
773
774 if (*data == NULL)
775 return 0;
776
777 count = (cur - base) / map->reg_stride;
778
779 dev_dbg(map->dev, "Writing %zu bytes for %d registers from 0x%x-0x%x\n",
780 count * val_bytes, count, base, cur - map->reg_stride);
781
782 map->cache_bypass = true;
783
784 ret = _regmap_raw_write(map, base, *data, count * val_bytes, false);
785 if (ret)
786 dev_err(map->dev, "Unable to sync registers %#x-%#x. %d\n",
787 base, cur - map->reg_stride, ret);
788
789 map->cache_bypass = false;
790
791 *data = NULL;
792
793 return ret;
794}
795
796static int regcache_sync_block_raw(struct regmap *map, void *block,
797 unsigned long *cache_present,
798 unsigned int block_base, unsigned int start,
799 unsigned int end)
800{
801 unsigned int i, val;
802 unsigned int regtmp = 0;
803 unsigned int base = 0;
804 const void *data = NULL;
805 int ret;
806
807 for (i = start; i < end; i++) {
808 regtmp = block_base + (i * map->reg_stride);
809
810 if (!regcache_reg_present(cache_present, i) ||
811 !regmap_writeable(map, regtmp)) {
812 ret = regcache_sync_block_raw_flush(map, &data,
813 base, regtmp);
814 if (ret != 0)
815 return ret;
816 continue;
817 }
818
819 val = regcache_get_val(map, block, i);
820 if (!regcache_reg_needs_sync(map, regtmp, val)) {
821 ret = regcache_sync_block_raw_flush(map, &data,
822 base, regtmp);
823 if (ret != 0)
824 return ret;
825 continue;
826 }
827
828 if (!data) {
829 data = regcache_get_val_addr(map, block, i);
830 base = regtmp;
831 }
832 }
833
834 return regcache_sync_block_raw_flush(map, &data, base, regtmp +
835 map->reg_stride);
836}
837
838int regcache_sync_block(struct regmap *map, void *block,
839 unsigned long *cache_present,
840 unsigned int block_base, unsigned int start,
841 unsigned int end)
842{
843 if (regmap_can_raw_write(map) && !map->use_single_write)
844 return regcache_sync_block_raw(map, block, cache_present,
845 block_base, start, end);
846 else
847 return regcache_sync_block_single(map, block, cache_present,
848 block_base, start, end);
849}