arch/arc/kernel/perf_event.c
303
unsigned int cache_type, cache_op, cache_result;
arch/arc/kernel/perf_event.c
306
cache_type = (config >> 0) & 0xff;
arch/arc/kernel/perf_event.c
309
if (cache_type >= PERF_COUNT_HW_CACHE_MAX)
arch/arc/kernel/perf_event.c
316
ret = arc_pmu_cache_map[cache_type][cache_op][cache_result];
arch/arc/kernel/perf_event.c
322
cache_type, cache_op, cache_result, ret,
arch/arm/kernel/cacheinfo.c
152
enum cache_type type;
arch/arm/kernel/cacheinfo.c
64
static inline enum cache_type get_cache_type(int level)
arch/arm/kernel/cacheinfo.c
77
enum cache_type type, unsigned int level)
arch/arm64/kernel/cacheinfo.c
102
enum cache_type type;
arch/arm64/kernel/cacheinfo.c
24
static inline enum cache_type get_cache_type(int level)
arch/arm64/kernel/cacheinfo.c
35
enum cache_type type, unsigned int level)
arch/csky/kernel/perf_event.c
952
unsigned int cache_type, cache_op, cache_result;
arch/csky/kernel/perf_event.c
954
cache_type = (config >> 0) & 0xff;
arch/csky/kernel/perf_event.c
958
if (cache_type >= PERF_COUNT_HW_CACHE_MAX)
arch/csky/kernel/perf_event.c
965
return csky_pmu_cache_map[cache_type][cache_op][cache_result];
arch/loongarch/kernel/perf_event.c
603
unsigned int cache_type, cache_op, cache_result;
arch/loongarch/kernel/perf_event.c
606
cache_type = (config >> 0) & 0xff;
arch/loongarch/kernel/perf_event.c
607
if (cache_type >= PERF_COUNT_HW_CACHE_MAX)
arch/loongarch/kernel/perf_event.c
619
[cache_type]
arch/mips/kernel/perf_event_mipsxx.c
733
unsigned int cache_type, cache_op, cache_result;
arch/mips/kernel/perf_event_mipsxx.c
736
cache_type = (config >> 0) & 0xff;
arch/mips/kernel/perf_event_mipsxx.c
737
if (cache_type >= PERF_COUNT_HW_CACHE_MAX)
arch/mips/kernel/perf_event_mipsxx.c
749
[cache_type]
arch/openrisc/include/asm/cpuinfo.h
43
extern bool cpu_cache_is_present(const unsigned int cache_type);
arch/openrisc/kernel/cacheinfo.c
17
static inline void ci_leaf_init(struct cacheinfo *this_leaf, enum cache_type type,
arch/openrisc/mm/cache.c
23
bool cpu_cache_is_present(const unsigned int cache_type)
arch/openrisc/mm/cache.c
26
unsigned long mask = SPR_UPR_UP | cache_type;
arch/openrisc/mm/cache.c
32
const unsigned short reg, const unsigned int cache_type)
arch/openrisc/mm/cache.c
34
if (!cpu_cache_is_present(cache_type))
arch/openrisc/mm/cache.c
44
const unsigned int cache_type)
arch/openrisc/mm/cache.c
51
cache_loop(paddr, end, reg, cache_type);
arch/powerpc/kernel/cacheinfo.c
746
const char *cache_type;
arch/powerpc/kernel/cacheinfo.c
756
cache_type = cache_type_string(cache);
arch/powerpc/kernel/cacheinfo.c
774
cache_type, rc);
arch/powerpc/kernel/cacheinfo.c
779
attr->attr.name, cache->ofnode, cache_type);
arch/riscv/include/asm/cacheinfo.h
17
uintptr_t get_cache_size(u32 level, enum cache_type type);
arch/riscv/include/asm/cacheinfo.h
18
uintptr_t get_cache_geometry(u32 level, enum cache_type type);
arch/riscv/kernel/cacheinfo.c
27
static struct cacheinfo *get_cacheinfo(u32 level, enum cache_type type)
arch/riscv/kernel/cacheinfo.c
51
uintptr_t get_cache_size(u32 level, enum cache_type type)
arch/riscv/kernel/cacheinfo.c
58
uintptr_t get_cache_geometry(u32 level, enum cache_type type)
arch/riscv/kernel/cacheinfo.c
68
enum cache_type type, unsigned int level)
arch/riscv/kvm/vcpu_pmu.c
101
cache_type = (sbi_event_code & SBI_PMU_EVENT_CACHE_ID_CODE_MASK) >>
arch/riscv/kvm/vcpu_pmu.c
107
if (cache_type >= PERF_COUNT_HW_CACHE_MAX ||
arch/riscv/kvm/vcpu_pmu.c
112
config = cache_type | (cache_op << 8) | (cache_result << 16);
arch/riscv/kvm/vcpu_pmu.c
98
unsigned int cache_type, cache_op, cache_result;
arch/s390/kernel/cache.c
104
enum cache_type type, unsigned int level, int cpu)
arch/s390/kernel/cache.c
130
enum cache_type ctype;
arch/s390/kernel/cache.c
153
enum cache_type ctype;
arch/s390/kernel/cache.c
60
static const enum cache_type cache_type_map[] = {
arch/s390/kernel/cache.c
88
static inline enum cache_type get_cache_type(struct cache_info *ci, int level)
arch/sh/mm/cache-debugfs.c
27
unsigned int cache_type = (unsigned int)file->private;
arch/sh/mm/cache-debugfs.c
47
if (cache_type == CACHE_TYPE_DCACHE) {
arch/sh/mm/cache-debugfs.c
61
if ((ccr & CCR_CACHE_ORA) && cache_type == CACHE_TYPE_DCACHE)
arch/sparc/kernel/perf_event.c
1198
unsigned int cache_type, cache_op, cache_result;
arch/sparc/kernel/perf_event.c
1204
cache_type = (config >> 0) & 0xff;
arch/sparc/kernel/perf_event.c
1205
if (cache_type >= PERF_COUNT_HW_CACHE_MAX)
arch/sparc/kernel/perf_event.c
1216
pmap = &((*sparc_pmu->cache_map)[cache_type][cache_op][cache_result]);
arch/x86/events/core.c
381
unsigned int cache_type, cache_op, cache_result;
arch/x86/events/core.c
386
cache_type = (config >> 0) & 0xff;
arch/x86/events/core.c
387
if (cache_type >= PERF_COUNT_HW_CACHE_MAX)
arch/x86/events/core.c
389
cache_type = array_index_nospec(cache_type, PERF_COUNT_HW_CACHE_MAX);
arch/x86/events/core.c
401
val = hybrid_var(event->pmu, hw_cache_event_ids)[cache_type][cache_op][cache_result];
arch/x86/events/core.c
409
attr->config1 = hybrid_var(event->pmu, hw_cache_extra_regs)[cache_type][cache_op][cache_result];
arch/x86/kernel/cpu/cacheinfo.c
82
static const enum cache_type cache_type_map[] = {
arch/x86/kernel/cpu/topology_common.c
67
u32 cache_type : 5,
arch/x86/kernel/cpu/topology_common.c
76
if (!eax.cache_type)
arch/xtensa/kernel/perf_event.c
115
unsigned int cache_type, cache_op, cache_result;
arch/xtensa/kernel/perf_event.c
118
cache_type = (config >> 0) & 0xff;
arch/xtensa/kernel/perf_event.c
122
if (cache_type >= ARRAY_SIZE(xtensa_cache_ctl) ||
arch/xtensa/kernel/perf_event.c
127
ret = xtensa_cache_ctl[cache_type][cache_op][cache_result];
drivers/acpi/pptt.c
1042
int cache_type[] = {CACHE_TYPE_INST, CACHE_TYPE_DATA, CACHE_TYPE_UNIFIED};
drivers/acpi/pptt.c
1045
for (int i = 0; i < ARRAY_SIZE(cache_type); i++) {
drivers/acpi/pptt.c
1048
cache = acpi_find_cache_node(table, acpi_cpu_id, cache_type[i],
drivers/acpi/pptt.c
336
static u8 acpi_cache_type(enum cache_type type)
drivers/acpi/pptt.c
360
enum cache_type type,
drivers/acpi/pptt.c
978
int cache_type[] = {CACHE_TYPE_INST, CACHE_TYPE_DATA, CACHE_TYPE_UNIFIED};
drivers/acpi/pptt.c
981
for (int i = 0; i < ARRAY_SIZE(cache_type); i++) {
drivers/acpi/pptt.c
984
cache = acpi_find_cache_node(table, acpi_cpu_id, cache_type[i],
drivers/auxdisplay/max6959.c
117
.cache_type = REGCACHE_MAPLE,
drivers/base/cacheinfo.c
115
static inline int get_cacheinfo_idx(enum cache_type type)
drivers/base/regmap/internal.h
138
enum regcache_type cache_type;
drivers/base/regmap/regcache.c
139
if (map->cache_type == REGCACHE_NONE) {
drivers/base/regmap/regcache.c
165
if (cache_types[i]->type == map->cache_type)
drivers/base/regmap/regcache.c
170
map->cache_type);
drivers/base/regmap/regcache.c
253
if (map->cache_type == REGCACHE_NONE)
drivers/base/regmap/regcache.c
285
if (map->cache_type == REGCACHE_NONE)
drivers/base/regmap/regcache.c
314
if (map->cache_type == REGCACHE_NONE)
drivers/base/regmap/regcache.c
404
if (WARN_ON(map->cache_type == REGCACHE_NONE))
drivers/base/regmap/regcache.c
496
if (WARN_ON(map->cache_type == REGCACHE_NONE))
drivers/base/regmap/regcache.c
582
WARN_ON(map->cache_type != REGCACHE_NONE &&
drivers/base/regmap/regmap-debugfs.c
619
if (map->cache_type) {
drivers/base/regmap/regmap-kunit.c
1750
config->cache_type = param->cache;
drivers/base/regmap/regmap-kunit.c
1752
config->disable_locking = config->cache_type == REGCACHE_RBTREE ||
drivers/base/regmap/regmap-kunit.c
1753
config->cache_type == REGCACHE_MAPLE;
drivers/base/regmap/regmap-kunit.c
1795
if (config->cache_type == REGCACHE_NONE)
drivers/base/regmap/regmap-kunit.c
195
config->cache_type = param->cache;
drivers/base/regmap/regmap-kunit.c
314
KUNIT_EXPECT_EQ(test, config.cache_type == REGCACHE_NONE, data->read[0]);
drivers/base/regmap/regmap-kunit.c
347
KUNIT_EXPECT_EQ(test, config.cache_type == REGCACHE_NONE, data->read[i]);
drivers/base/regmap/regmap-kunit.c
376
KUNIT_EXPECT_EQ(test, config.cache_type == REGCACHE_NONE, data->read[i]);
drivers/base/regmap/regmap-kunit.c
415
KUNIT_EXPECT_EQ(test, config.cache_type == REGCACHE_NONE, data->read[i]);
drivers/base/regmap/regmap-kunit.c
447
KUNIT_EXPECT_EQ(test, config.cache_type == REGCACHE_NONE, data->read[i]);
drivers/base/regmap/regmap-kunit.c
634
if (config.cache_type != REGCACHE_FLAT) {
drivers/base/regmap/regmap-kunit.c
669
KUNIT_EXPECT_EQ(test, config.cache_type == REGCACHE_NONE, data->read[i]);
drivers/base/regmap/regmap-kunit.c
738
KUNIT_EXPECT_EQ(test, config.cache_type != REGCACHE_NONE, data->read[i]);
drivers/base/regmap/regmap-kunit.c
749
KUNIT_EXPECT_EQ(test, config.cache_type == REGCACHE_NONE, data->read[i]);
drivers/base/regmap/regmap-kunit.c
837
KUNIT_EXPECT_EQ(test, config.cache_type == REGCACHE_NONE,
drivers/base/regmap/regmap-kunit.c
990
KUNIT_EXPECT_EQ(test, config.cache_type == REGCACHE_NONE, data->read[i]);
drivers/base/regmap/regmap.c
109
if (map->cache_type == REGCACHE_NONE)
drivers/base/regmap/regmap.c
1440
map->cache_type = config->cache_type;
drivers/base/regmap/regmap.c
2950
map->cache_type == REGCACHE_NONE) {
drivers/base/regmap/regmap.c
3215
if (map->read && map->format.parse_inplace && (vol || map->cache_type == REGCACHE_NONE)) {
drivers/base/regmap/regmap.c
817
map->cache_type = config->cache_type;
drivers/block/virtio_blk.c
1130
static DEVICE_ATTR_RW(cache_type);
drivers/clk/clk-cdce925.c
633
.cache_type = REGCACHE_MAPLE,
drivers/clk/clk-lmk04832.c
324
.cache_type = REGCACHE_NONE,
drivers/clk/clk-renesas-pcie.c
150
.cache_type = REGCACHE_FLAT,
drivers/clk/clk-si514.c
332
.cache_type = REGCACHE_MAPLE,
drivers/clk/clk-si521xx.c
149
.cache_type = REGCACHE_FLAT,
drivers/clk/clk-si5341.c
1267
.cache_type = REGCACHE_MAPLE,
drivers/clk/clk-si5351.c
209
.cache_type = REGCACHE_MAPLE,
drivers/clk/clk-si544.c
429
.cache_type = REGCACHE_MAPLE,
drivers/clk/clk-si570.c
406
.cache_type = REGCACHE_MAPLE,
drivers/clk/clk-versaclock3.c
598
.cache_type = REGCACHE_MAPLE,
drivers/clk/clk-versaclock5.c
220
.cache_type = REGCACHE_MAPLE,
drivers/clk/clk-versaclock7.c
1284
.cache_type = REGCACHE_MAPLE,
drivers/clk/xilinx/xlnx_vcu.c
80
.cache_type = REGCACHE_NONE,
drivers/dpll/zl3073x/core.c
127
.cache_type = REGCACHE_MAPLE,
drivers/firmware/cirrus/test/cs_dsp_mock_regmap.c
141
.cache_type = REGCACHE_MAPLE,
drivers/firmware/cirrus/test/cs_dsp_mock_regmap.c
206
.cache_type = REGCACHE_MAPLE,
drivers/firmware/cirrus/test/cs_dsp_mock_regmap.c
98
.cache_type = REGCACHE_MAPLE,
drivers/fpga/socfpga-a10.c
110
.cache_type = REGCACHE_NONE,
drivers/gpio/gpio-104-dio-48e.c
265
.cache_type = REGCACHE_FLAT,
drivers/gpio/gpio-104-idio-16.c
67
.cache_type = REGCACHE_FLAT,
drivers/gpio/gpio-fxl6408.c
87
.cache_type = REGCACHE_MAPLE,
drivers/gpio/gpio-gpio-mm.c
47
.cache_type = REGCACHE_FLAT,
drivers/gpio/gpio-pca953x.c
497
.cache_type = REGCACHE_MAPLE,
drivers/gpio/gpio-pca953x.c
513
.cache_type = REGCACHE_MAPLE,
drivers/gpio/gpio-pci-idio-16.c
49
.cache_type = REGCACHE_FLAT,
drivers/gpio/gpio-pcie-idio-24.c
118
.cache_type = REGCACHE_FLAT,
drivers/gpio/gpio-ws16c48.c
74
.cache_type = REGCACHE_FLAT,
drivers/gpu/drm/amd/amdkfd/kfd_crat.c
1209
props->cache_type |= HSA_CACHE_TYPE_DATA;
drivers/gpu/drm/amd/amdkfd/kfd_crat.c
1211
props->cache_type |= HSA_CACHE_TYPE_INSTRUCTION;
drivers/gpu/drm/amd/amdkfd/kfd_crat.c
1213
props->cache_type |= HSA_CACHE_TYPE_CPU;
drivers/gpu/drm/amd/amdkfd/kfd_crat.c
1215
props->cache_type |= HSA_CACHE_TYPE_HSACU;
drivers/gpu/drm/amd/amdkfd/kfd_topology.c
1618
int cache_type, unsigned int cu_processor_id,
drivers/gpu/drm/amd/amdkfd/kfd_topology.c
1627
cu_sibling_map_mask &= ((1 << pcache_info[cache_type].num_cu_shared) - 1);
drivers/gpu/drm/amd/amdkfd/kfd_topology.c
1641
pcache->cache_level = pcache_info[cache_type].cache_level;
drivers/gpu/drm/amd/amdkfd/kfd_topology.c
1642
pcache->cache_size = pcache_info[cache_type].cache_size;
drivers/gpu/drm/amd/amdkfd/kfd_topology.c
1643
pcache->cacheline_size = pcache_info[cache_type].cache_line_size;
drivers/gpu/drm/amd/amdkfd/kfd_topology.c
1645
if (pcache_info[cache_type].flags & CRAT_CACHE_FLAGS_DATA_CACHE)
drivers/gpu/drm/amd/amdkfd/kfd_topology.c
1646
pcache->cache_type |= HSA_CACHE_TYPE_DATA;
drivers/gpu/drm/amd/amdkfd/kfd_topology.c
1647
if (pcache_info[cache_type].flags & CRAT_CACHE_FLAGS_INST_CACHE)
drivers/gpu/drm/amd/amdkfd/kfd_topology.c
1648
pcache->cache_type |= HSA_CACHE_TYPE_INSTRUCTION;
drivers/gpu/drm/amd/amdkfd/kfd_topology.c
1649
if (pcache_info[cache_type].flags & CRAT_CACHE_FLAGS_CPU_CACHE)
drivers/gpu/drm/amd/amdkfd/kfd_topology.c
1650
pcache->cache_type |= HSA_CACHE_TYPE_CPU;
drivers/gpu/drm/amd/amdkfd/kfd_topology.c
1651
if (pcache_info[cache_type].flags & CRAT_CACHE_FLAGS_SIMD_CACHE)
drivers/gpu/drm/amd/amdkfd/kfd_topology.c
1652
pcache->cache_type |= HSA_CACHE_TYPE_HSACU;
drivers/gpu/drm/amd/amdkfd/kfd_topology.c
1681
int cache_type, unsigned int cu_processor_id,
drivers/gpu/drm/amd/amdkfd/kfd_topology.c
1711
((1 << pcache_info[cache_type].num_cu_shared) - 1);
drivers/gpu/drm/amd/amdkfd/kfd_topology.c
1726
pcache->cache_level = pcache_info[cache_type].cache_level;
drivers/gpu/drm/amd/amdkfd/kfd_topology.c
1727
pcache->cacheline_size = pcache_info[cache_type].cache_line_size;
drivers/gpu/drm/amd/amdkfd/kfd_topology.c
1736
pcache->cache_size = pcache_info[cache_type].cache_size;
drivers/gpu/drm/amd/amdkfd/kfd_topology.c
1741
if (pcache_info[cache_type].flags & CRAT_CACHE_FLAGS_DATA_CACHE)
drivers/gpu/drm/amd/amdkfd/kfd_topology.c
1742
pcache->cache_type |= HSA_CACHE_TYPE_DATA;
drivers/gpu/drm/amd/amdkfd/kfd_topology.c
1743
if (pcache_info[cache_type].flags & CRAT_CACHE_FLAGS_INST_CACHE)
drivers/gpu/drm/amd/amdkfd/kfd_topology.c
1744
pcache->cache_type |= HSA_CACHE_TYPE_INSTRUCTION;
drivers/gpu/drm/amd/amdkfd/kfd_topology.c
1745
if (pcache_info[cache_type].flags & CRAT_CACHE_FLAGS_CPU_CACHE)
drivers/gpu/drm/amd/amdkfd/kfd_topology.c
1746
pcache->cache_type |= HSA_CACHE_TYPE_CPU;
drivers/gpu/drm/amd/amdkfd/kfd_topology.c
1747
if (pcache_info[cache_type].flags & CRAT_CACHE_FLAGS_SIMD_CACHE)
drivers/gpu/drm/amd/amdkfd/kfd_topology.c
1748
pcache->cache_type |= HSA_CACHE_TYPE_HSACU;
drivers/gpu/drm/amd/amdkfd/kfd_topology.c
1766
cu_sibling_map_mask &= ((1 << pcache_info[cache_type].num_cu_shared) - 1);
drivers/gpu/drm/amd/amdkfd/kfd_topology.c
347
sysfs_show_32bit_prop(buffer, offs, "type", cache->cache_type);
drivers/gpu/drm/amd/amdkfd/kfd_topology.c
365
static const struct kobj_type cache_type = {
drivers/gpu/drm/amd/amdkfd/kfd_topology.c
738
ret = kobject_init_and_add(cache->kobj, &cache_type,
drivers/gpu/drm/amd/amdkfd/kfd_topology.h
109
uint32_t cache_type;
drivers/gpu/drm/bridge/adv7511/adv7511_drv.c
1111
.cache_type = REGCACHE_MAPLE,
drivers/gpu/drm/bridge/adv7511/adv7511_drv.c
128
.cache_type = REGCACHE_MAPLE,
drivers/gpu/drm/bridge/analogix/analogix-anx6345.c
624
.cache_type = REGCACHE_NONE,
drivers/gpu/drm/bridge/chipone-icn6211.c
200
.cache_type = REGCACHE_MAPLE,
drivers/gpu/drm/bridge/ite-it6263.c
305
.cache_type = REGCACHE_MAPLE,
drivers/gpu/drm/bridge/ite-it6263.c
344
.cache_type = REGCACHE_MAPLE,
drivers/gpu/drm/bridge/ite-it6505.c
544
.cache_type = REGCACHE_NONE,
drivers/gpu/drm/bridge/lontium-lt9211.c
92
.cache_type = REGCACHE_MAPLE,
drivers/gpu/drm/bridge/parade-ps8640.c
66
.cache_type = REGCACHE_NONE
drivers/gpu/drm/bridge/sii902x.c
926
.cache_type = REGCACHE_NONE,
drivers/gpu/drm/bridge/tc358767.c
2218
.cache_type = REGCACHE_MAPLE,
drivers/gpu/drm/bridge/tc358768.c
1244
.cache_type = REGCACHE_NONE,
drivers/gpu/drm/bridge/ti-dlpc3433.c
103
.cache_type = REGCACHE_MAPLE,
drivers/gpu/drm/bridge/ti-sn65dsi83.c
253
.cache_type = REGCACHE_MAPLE,
drivers/gpu/drm/bridge/ti-sn65dsi86.c
235
.cache_type = REGCACHE_NONE,
drivers/gpu/drm/panel/panel-abt-y030xx067a.c
273
.cache_type = REGCACHE_FLAT,
drivers/gpu/drm/panel/panel-ilitek-ili9322.c
340
.cache_type = REGCACHE_MAPLE,
drivers/gpu/drm/panel/panel-novatek-nt39016.c
115
.cache_type = REGCACHE_FLAT,
drivers/gpu/drm/rockchip/rockchip_drm_vop2.c
2614
.cache_type = REGCACHE_MAPLE,
drivers/gpu/drm/stm/ltdc.c
467
.cache_type = REGCACHE_NONE,
drivers/hid/intel-thc-hid/intel-thc/intel-thc-dev.c
50
.cache_type = REGCACHE_NONE,
drivers/hwmon/adt7310.c
127
.cache_type = REGCACHE_MAPLE,
drivers/hwmon/adt7410.c
73
.cache_type = REGCACHE_MAPLE,
drivers/hwmon/amc6821.c
1030
.cache_type = REGCACHE_MAPLE,
drivers/hwmon/emc1403.c
154
.cache_type = REGCACHE_MAPLE,
drivers/hwmon/ina2xx.c
133
.cache_type = REGCACHE_MAPLE,
drivers/hwmon/ina3221.c
748
.cache_type = REGCACHE_MAPLE,
drivers/hwmon/isl28022.c
306
.cache_type = REGCACHE_MAPLE,
drivers/hwmon/jc42.c
471
.cache_type = REGCACHE_MAPLE,
drivers/hwmon/lm75.c
698
.cache_type = REGCACHE_MAPLE,
drivers/hwmon/lm83.c
168
.cache_type = REGCACHE_MAPLE,
drivers/hwmon/lm92.c
364
.cache_type = REGCACHE_MAPLE,
drivers/hwmon/lm95234.c
414
.cache_type = REGCACHE_MAPLE,
drivers/hwmon/lm95245.c
491
.cache_type = REGCACHE_MAPLE,
drivers/hwmon/max1619.c
337
.cache_type = REGCACHE_MAPLE,
drivers/hwmon/max1668.c
259
.cache_type = REGCACHE_MAPLE,
drivers/hwmon/max31760.c
63
.cache_type = REGCACHE_MAPLE,
drivers/hwmon/max6621.c
444
.cache_type = REGCACHE_FLAT,
drivers/hwmon/max6639.c
698
.cache_type = REGCACHE_MAPLE,
drivers/hwmon/max6697.c
534
.cache_type = REGCACHE_MAPLE,
drivers/hwmon/nct7363.c
393
.cache_type = REGCACHE_MAPLE,
drivers/hwmon/nct7802.c
1038
.cache_type = REGCACHE_MAPLE,
drivers/hwmon/sch5627.c
119
.cache_type = REGCACHE_MAPLE,
drivers/hwmon/spd5118.c
470
.cache_type = REGCACHE_MAPLE,
drivers/hwmon/spd5118.c
482
.cache_type = REGCACHE_MAPLE,
drivers/hwmon/tmp102.c
204
.cache_type = REGCACHE_MAPLE,
drivers/hwmon/tmp108.c
437
.cache_type = REGCACHE_MAPLE,
drivers/hwmon/tmp401.c
257
.cache_type = REGCACHE_MAPLE,
drivers/hwmon/tmp464.c
632
.cache_type = REGCACHE_MAPLE,
drivers/hwmon/tsc1641.c
117
.cache_type = REGCACHE_MAPLE,
drivers/i2c/muxes/i2c-mux-ltc4306.c
72
.cache_type = REGCACHE_FLAT,
drivers/iio/accel/adxl313_i2c.c
25
.cache_type = REGCACHE_MAPLE,
drivers/iio/accel/adxl313_i2c.c
34
.cache_type = REGCACHE_MAPLE,
drivers/iio/accel/adxl313_i2c.c
43
.cache_type = REGCACHE_MAPLE,
drivers/iio/accel/adxl313_spi.c
28
.cache_type = REGCACHE_MAPLE,
drivers/iio/accel/adxl313_spi.c
39
.cache_type = REGCACHE_MAPLE,
drivers/iio/accel/adxl313_spi.c
50
.cache_type = REGCACHE_MAPLE,
drivers/iio/accel/adxl345_i2c.c
21
.cache_type = REGCACHE_MAPLE,
drivers/iio/accel/adxl345_spi.c
23
.cache_type = REGCACHE_MAPLE,
drivers/iio/accel/bma220_core.c
189
.cache_type = REGCACHE_NONE,
drivers/iio/accel/bma220_core.c
207
.cache_type = REGCACHE_NONE,
drivers/iio/accel/bma400_core.c
228
.cache_type = REGCACHE_MAPLE,
drivers/iio/accel/bmi088-accel-core.c
148
.cache_type = REGCACHE_MAPLE,
drivers/iio/accel/kionix-kx022a.c
162
.cache_type = REGCACHE_MAPLE,
drivers/iio/accel/kionix-kx022a.c
273
.cache_type = REGCACHE_MAPLE,
drivers/iio/accel/msa311.c
335
.cache_type = REGCACHE_MAPLE,
drivers/iio/adc/ad7380.c
998
.cache_type = REGCACHE_MAPLE,
drivers/iio/adc/ade9000.c
1632
.cache_type = REGCACHE_MAPLE,
drivers/iio/adc/rohm-bd79112.c
192
.cache_type = REGCACHE_MAPLE,
drivers/iio/adc/rohm-bd79124.c
167
.cache_type = REGCACHE_MAPLE,
drivers/iio/adc/ti-ads1298.c
581
.cache_type = REGCACHE_MAPLE,
drivers/iio/addac/stx104.c
134
.cache_type = REGCACHE_FLAT,
drivers/iio/addac/stx104.c
162
.cache_type = REGCACHE_FLAT,
drivers/iio/chemical/bme680_core.c
161
.cache_type = REGCACHE_MAPLE,
drivers/iio/dac/ad5380.c
427
.cache_type = REGCACHE_MAPLE,
drivers/iio/dac/mcp47feb02.c
392
.cache_type = REGCACHE_MAPLE,
drivers/iio/dac/mcp47feb02.c
434
.cache_type = REGCACHE_MAPLE,
drivers/iio/dac/rohm-bd79703.c
38
.cache_type = REGCACHE_MAPLE,
drivers/iio/health/afe4403.c
406
.cache_type = REGCACHE_MAPLE,
drivers/iio/health/afe4404.c
414
.cache_type = REGCACHE_MAPLE,
drivers/iio/health/max30100.c
106
.cache_type = REGCACHE_FLAT,
drivers/iio/imu/bno055/bno055.c
298
.cache_type = REGCACHE_MAPLE,
drivers/iio/imu/inv_icm42600/inv_icm42600_core.c
100
.cache_type = REGCACHE_MAPLE,
drivers/iio/imu/inv_icm42600/inv_icm42600_core.c
86
.cache_type = REGCACHE_MAPLE,
drivers/iio/light/apds9160.c
175
.cache_type = REGCACHE_RBTREE,
drivers/iio/light/apds9306.c
353
.cache_type = REGCACHE_MAPLE,
drivers/iio/light/apds9960.c
237
.cache_type = REGCACHE_MAPLE,
drivers/iio/light/bh1745.c
171
.cache_type = REGCACHE_RBTREE,
drivers/iio/light/gp2ap020a00f.c
295
.cache_type = REGCACHE_RBTREE,
drivers/iio/light/isl29018.c
651
.cache_type = REGCACHE_RBTREE,
drivers/iio/light/isl29018.c
660
.cache_type = REGCACHE_RBTREE,
drivers/iio/light/isl29028.c
560
.cache_type = REGCACHE_MAPLE,
drivers/iio/light/isl76682.c
279
.cache_type = REGCACHE_FLAT,
drivers/iio/light/jsa1212.c
306
.cache_type = REGCACHE_RBTREE,
drivers/iio/light/ltr501.c
1405
.cache_type = REGCACHE_MAPLE,
drivers/iio/light/ltrf216a.c
427
.cache_type = REGCACHE_RBTREE,
drivers/iio/light/max44000.c
483
.cache_type = REGCACHE_RBTREE,
drivers/iio/light/opt4001.c
368
.cache_type = REGCACHE_RBTREE,
drivers/iio/light/opt4060.c
1048
.cache_type = REGCACHE_MAPLE,
drivers/iio/light/pa12203001.c
125
.cache_type = REGCACHE_RBTREE,
drivers/iio/light/rohm-bu27034.c
250
.cache_type = REGCACHE_RBTREE,
drivers/iio/light/rpr0521.c
919
.cache_type = REGCACHE_RBTREE,
drivers/iio/light/stk3310.c
532
.cache_type = REGCACHE_RBTREE,
drivers/iio/light/vcnl4035.c
509
.cache_type = REGCACHE_RBTREE,
drivers/iio/light/veml3235.c
157
.cache_type = REGCACHE_MAPLE,
drivers/iio/light/veml6030.c
390
.cache_type = REGCACHE_RBTREE,
drivers/iio/magnetometer/bmc150_magn.c
220
.cache_type = REGCACHE_RBTREE,
drivers/iio/magnetometer/hmc5843_i2c.c
52
.cache_type = REGCACHE_RBTREE,
drivers/iio/magnetometer/hmc5843_spi.c
52
.cache_type = REGCACHE_RBTREE,
drivers/iio/magnetometer/mmc35240.c
471
.cache_type = REGCACHE_FLAT,
drivers/iio/magnetometer/mmc5633.c
445
.cache_type = REGCACHE_MAPLE,
drivers/iio/magnetometer/rm3100-i2c.c
23
.cache_type = REGCACHE_RBTREE,
drivers/iio/magnetometer/rm3100-spi.c
23
.cache_type = REGCACHE_RBTREE,
drivers/iio/pressure/bmp280-regmap.c
198
.cache_type = REGCACHE_RBTREE,
drivers/iio/pressure/bmp280-regmap.c
210
.cache_type = REGCACHE_RBTREE,
drivers/iio/pressure/bmp280-regmap.c
222
.cache_type = REGCACHE_RBTREE,
drivers/iio/pressure/bmp280-regmap.c
234
.cache_type = REGCACHE_RBTREE,
drivers/iio/pressure/bmp280-regmap.c
37
.cache_type = REGCACHE_RBTREE,
drivers/iio/pressure/dps310.c
837
.cache_type = REGCACHE_RBTREE,
drivers/iio/pressure/hp03.c
75
.cache_type = REGCACHE_RBTREE,
drivers/iio/pressure/rohm-bm1390.c
130
.cache_type = REGCACHE_RBTREE,
drivers/iio/proximity/hx9023s.c
306
.cache_type = REGCACHE_MAPLE,
drivers/iio/proximity/sx9310.c
252
.cache_type = REGCACHE_RBTREE,
drivers/iio/proximity/sx9324.c
348
.cache_type = REGCACHE_RBTREE,
drivers/iio/proximity/sx9360.c
249
.cache_type = REGCACHE_RBTREE,
drivers/iio/proximity/sx9500.c
195
.cache_type = REGCACHE_RBTREE,
drivers/iio/temperature/mlx90632.c
219
.cache_type = REGCACHE_RBTREE,
drivers/iio/temperature/mlx90635.c
186
.cache_type = REGCACHE_RBTREE,
drivers/iio/temperature/mlx90635.c
223
.cache_type = REGCACHE_RBTREE,
drivers/input/keyboard/cap11xx.c
172
.cache_type = REGCACHE_MAPLE,
drivers/input/keyboard/qt1050.c
216
.cache_type = REGCACHE_MAPLE,
drivers/input/misc/aw86927.c
189
.cache_type = REGCACHE_NONE,
drivers/input/misc/drv260x.c
419
.cache_type = REGCACHE_NONE,
drivers/input/misc/drv2665.c
156
.cache_type = REGCACHE_NONE,
drivers/input/misc/drv2667.c
333
.cache_type = REGCACHE_NONE,
drivers/leds/flash/leds-lm3601x.c
125
.cache_type = REGCACHE_MAPLE,
drivers/leds/flash/leds-sy7802.c
449
.cache_type = REGCACHE_MAPLE,
drivers/leds/flash/leds-tps6131x.c
181
.cache_type = REGCACHE_FLAT,
drivers/leds/leds-aw200xx.c
526
.cache_type = REGCACHE_MAPLE,
drivers/leds/leds-is31fl319x.c
147
.cache_type = REGCACHE_FLAT,
drivers/leds/leds-is31fl319x.c
185
.cache_type = REGCACHE_FLAT,
drivers/leds/leds-lm3532.c
207
.cache_type = REGCACHE_FLAT,
drivers/leds/leds-lm3692x.c
145
.cache_type = REGCACHE_MAPLE,
drivers/leds/leds-lm3697.c
119
.cache_type = REGCACHE_FLAT,
drivers/leds/leds-lp3952.c
207
.cache_type = REGCACHE_MAPLE,
drivers/leds/leds-lp50xx.c
144
.cache_type = REGCACHE_FLAT,
drivers/leds/leds-lp50xx.c
154
.cache_type = REGCACHE_FLAT,
drivers/leds/leds-lp50xx.c
164
.cache_type = REGCACHE_FLAT,
drivers/leds/rgb/leds-ktd202x.c
527
.cache_type = REGCACHE_FLAT,
drivers/media/dvb-frontends/cxd2820r_core.c
584
.cache_type = REGCACHE_NONE,
drivers/media/dvb-frontends/cxd2820r_core.c
592
.cache_type = REGCACHE_NONE,
drivers/media/dvb-frontends/mn88443x.c
673
.cache_type = REGCACHE_NONE,
drivers/media/dvb-frontends/rtl2832.c
1065
dev->regmap_config.cache_type = REGCACHE_NONE;
drivers/media/i2c/adv748x/adv748x-core.c
41
.cache_type = REGCACHE_NONE, \
drivers/media/i2c/adv7604.c
3318
.cache_type = REGCACHE_NONE,
drivers/media/i2c/adv7604.c
3326
.cache_type = REGCACHE_NONE,
drivers/media/i2c/adv7604.c
3334
.cache_type = REGCACHE_NONE,
drivers/media/i2c/adv7604.c
3342
.cache_type = REGCACHE_NONE,
drivers/media/i2c/adv7604.c
3350
.cache_type = REGCACHE_NONE,
drivers/media/i2c/adv7604.c
3358
.cache_type = REGCACHE_NONE,
drivers/media/i2c/adv7604.c
3366
.cache_type = REGCACHE_NONE,
drivers/media/i2c/adv7604.c
3374
.cache_type = REGCACHE_NONE,
drivers/media/i2c/adv7604.c
3382
.cache_type = REGCACHE_NONE,
drivers/media/i2c/adv7604.c
3391
.cache_type = REGCACHE_NONE,
drivers/media/i2c/adv7604.c
3399
.cache_type = REGCACHE_NONE,
drivers/media/i2c/adv7604.c
3407
.cache_type = REGCACHE_NONE,
drivers/media/i2c/adv7604.c
3415
.cache_type = REGCACHE_NONE,
drivers/media/i2c/imx274.c
154
.cache_type = REGCACHE_MAPLE,
drivers/media/i2c/isl7998x.c
1340
.cache_type = REGCACHE_MAPLE,
drivers/media/i2c/max2175.c
260
.cache_type = REGCACHE_MAPLE,
drivers/media/i2c/mt9v032.c
998
.cache_type = REGCACHE_MAPLE,
drivers/media/i2c/tvp5150.c
1820
.cache_type = REGCACHE_MAPLE,
drivers/media/platform/allegro-dvt/allegro-core.c
189
.cache_type = REGCACHE_NONE,
drivers/media/platform/allegro-dvt/allegro-core.c
198
.cache_type = REGCACHE_NONE,
drivers/mfd/ac100.c
75
.cache_type = REGCACHE_MAPLE,
drivers/mfd/adp5585.c
159
.cache_type = REGCACHE_MAPLE,
drivers/mfd/adp5585.c
168
.cache_type = REGCACHE_MAPLE,
drivers/mfd/altera-a10sr.c
99
.cache_type = REGCACHE_NONE,
drivers/mfd/as3711.c
109
.cache_type = REGCACHE_MAPLE,
drivers/mfd/as3722.c
302
.cache_type = REGCACHE_MAPLE,
drivers/mfd/atc260x-core.c
58
.cache_type = REGCACHE_NONE,
drivers/mfd/atc260x-core.c
65
.cache_type = REGCACHE_NONE,
drivers/mfd/axp20x.c
402
.cache_type = REGCACHE_MAPLE,
drivers/mfd/axp20x.c
411
.cache_type = REGCACHE_MAPLE,
drivers/mfd/axp20x.c
420
.cache_type = REGCACHE_MAPLE,
drivers/mfd/axp20x.c
429
.cache_type = REGCACHE_MAPLE,
drivers/mfd/axp20x.c
438
.cache_type = REGCACHE_MAPLE,
drivers/mfd/axp20x.c
447
.cache_type = REGCACHE_MAPLE,
drivers/mfd/axp20x.c
456
.cache_type = REGCACHE_MAPLE,
drivers/mfd/axp20x.c
465
.cache_type = REGCACHE_MAPLE,
drivers/mfd/axp20x.c
474
.cache_type = REGCACHE_MAPLE,
drivers/mfd/axp20x.c
483
.cache_type = REGCACHE_MAPLE,
drivers/mfd/bcm590xx.c
39
.cache_type = REGCACHE_MAPLE,
drivers/mfd/bcm590xx.c
46
.cache_type = REGCACHE_MAPLE,
drivers/mfd/bd9571mwv.c
155
.cache_type = REGCACHE_MAPLE,
drivers/mfd/bd9571mwv.c
70
.cache_type = REGCACHE_MAPLE,
drivers/mfd/bq257xx.c
36
.cache_type = REGCACHE_MAPLE,
drivers/mfd/cs42l43-i2c.c
33
.cache_type = REGCACHE_MAPLE,
drivers/mfd/cs42l43-sdw.c
43
.cache_type = REGCACHE_MAPLE,
drivers/mfd/cs47l15-tables.c
1252
.cache_type = REGCACHE_MAPLE,
drivers/mfd/cs47l15-tables.c
1267
.cache_type = REGCACHE_MAPLE,
drivers/mfd/cs47l15-tables.c
1284
.cache_type = REGCACHE_MAPLE,
drivers/mfd/cs47l15-tables.c
1298
.cache_type = REGCACHE_MAPLE,
drivers/mfd/cs47l24-tables.c
1619
.cache_type = REGCACHE_MAPLE,
drivers/mfd/cs47l35-tables.c
1501
.cache_type = REGCACHE_MAPLE,
drivers/mfd/cs47l35-tables.c
1518
.cache_type = REGCACHE_MAPLE,
drivers/mfd/cs47l35-tables.c
1537
.cache_type = REGCACHE_MAPLE,
drivers/mfd/cs47l35-tables.c
1553
.cache_type = REGCACHE_MAPLE,
drivers/mfd/cs47l85-tables.c
2839
.cache_type = REGCACHE_MAPLE,
drivers/mfd/cs47l85-tables.c
2856
.cache_type = REGCACHE_MAPLE,
drivers/mfd/cs47l85-tables.c
2875
.cache_type = REGCACHE_MAPLE,
drivers/mfd/cs47l85-tables.c
2891
.cache_type = REGCACHE_MAPLE,
drivers/mfd/cs47l90-tables.c
2542
.cache_type = REGCACHE_MAPLE,
drivers/mfd/cs47l90-tables.c
2559
.cache_type = REGCACHE_MAPLE,
drivers/mfd/cs47l90-tables.c
2578
.cache_type = REGCACHE_MAPLE,
drivers/mfd/cs47l90-tables.c
2594
.cache_type = REGCACHE_MAPLE,
drivers/mfd/cs47l92-tables.c
1893
.cache_type = REGCACHE_MAPLE,
drivers/mfd/cs47l92-tables.c
1910
.cache_type = REGCACHE_MAPLE,
drivers/mfd/cs47l92-tables.c
1929
.cache_type = REGCACHE_MAPLE,
drivers/mfd/cs47l92-tables.c
1945
.cache_type = REGCACHE_MAPLE,
drivers/mfd/da9052-core.c
536
.cache_type = REGCACHE_MAPLE,
drivers/mfd/da9055-core.c
248
.cache_type = REGCACHE_MAPLE,
drivers/mfd/da9062-core.c
479
.cache_type = REGCACHE_MAPLE,
drivers/mfd/da9062-core.c
585
.cache_type = REGCACHE_MAPLE,
drivers/mfd/da9063-i2c.c
360
.cache_type = REGCACHE_MAPLE,
drivers/mfd/da9150-core.c
172
.cache_type = REGCACHE_MAPLE,
drivers/mfd/gateworks-gsc.c
171
.cache_type = REGCACHE_NONE,
drivers/mfd/khadas-mcu.c
75
.cache_type = REGCACHE_MAPLE,
drivers/mfd/lochnagar-i2c.c
166
.cache_type = REGCACHE_MAPLE,
drivers/mfd/lochnagar-i2c.c
73
.cache_type = REGCACHE_MAPLE,
drivers/mfd/max7360.c
57
.cache_type = REGCACHE_MAPLE,
drivers/mfd/max77620.c
176
.cache_type = REGCACHE_MAPLE,
drivers/mfd/max77620.c
188
.cache_type = REGCACHE_MAPLE,
drivers/mfd/max77620.c
217
.cache_type = REGCACHE_MAPLE,
drivers/mfd/max77686.c
111
.cache_type = REGCACHE_MAPLE,
drivers/mfd/max77759.c
144
.cache_type = REGCACHE_FLAT,
drivers/mfd/max77759.c
186
.cache_type = REGCACHE_FLAT,
drivers/mfd/max77759.c
96
.cache_type = REGCACHE_FLAT,
drivers/mfd/max8907.c
111
.cache_type = REGCACHE_MAPLE,
drivers/mfd/max8907.c
66
.cache_type = REGCACHE_MAPLE,
drivers/mfd/mc13xxx-i2c.c
51
.cache_type = REGCACHE_NONE,
drivers/mfd/mc13xxx-spi.c
54
.cache_type = REGCACHE_NONE,
drivers/mfd/motorola-cpcap.c
219
.cache_type = REGCACHE_NONE,
drivers/mfd/ntxec.c
126
.cache_type = REGCACHE_NONE,
drivers/mfd/ntxec.c
135
.cache_type = REGCACHE_NONE,
drivers/mfd/rc5t583.c
233
.cache_type = REGCACHE_MAPLE,
drivers/mfd/rk8xx-i2c.c
140
.cache_type = REGCACHE_MAPLE,
drivers/mfd/rk8xx-i2c.c
148
.cache_type = REGCACHE_RBTREE,
drivers/mfd/rk8xx-i2c.c
156
.cache_type = REGCACHE_MAPLE,
drivers/mfd/rk8xx-i2c.c
164
.cache_type = REGCACHE_MAPLE,
drivers/mfd/rk8xx-i2c.c
172
.cache_type = REGCACHE_MAPLE,
drivers/mfd/rk8xx-i2c.c
180
.cache_type = REGCACHE_MAPLE,
drivers/mfd/rk8xx-i2c.c
188
.cache_type = REGCACHE_NONE,
drivers/mfd/rk8xx-spi.c
37
.cache_type = REGCACHE_MAPLE,
drivers/mfd/rn5t618.c
65
.cache_type = REGCACHE_MAPLE,
drivers/mfd/rohm-bd71828.c
390
.cache_type = REGCACHE_MAPLE,
drivers/mfd/rohm-bd71828.c
398
.cache_type = REGCACHE_MAPLE,
drivers/mfd/rohm-bd71828.c
447
.cache_type = REGCACHE_NONE,
drivers/mfd/rohm-bd71828.c
458
.cache_type = REGCACHE_MAPLE,
drivers/mfd/rohm-bd71828.c
466
.cache_type = REGCACHE_MAPLE,
drivers/mfd/rohm-bd718x7.c
89
.cache_type = REGCACHE_MAPLE,
drivers/mfd/rohm-bd9576.c
65
.cache_type = REGCACHE_MAPLE,
drivers/mfd/rohm-bd96801.c
573
.cache_type = REGCACHE_MAPLE,
drivers/mfd/rohm-bd96801.c
580
.cache_type = REGCACHE_MAPLE,
drivers/mfd/rsmu_i2c.c
242
.cache_type = REGCACHE_NONE,
drivers/mfd/rsmu_i2c.c
251
.cache_type = REGCACHE_NONE,
drivers/mfd/rsmu_i2c.c
261
.cache_type = REGCACHE_MAPLE,
drivers/mfd/rsmu_i2c.c
270
.cache_type = REGCACHE_NONE,
drivers/mfd/rsmu_spi.c
186
.cache_type = REGCACHE_NONE,
drivers/mfd/rsmu_spi.c
195
.cache_type = REGCACHE_NONE,
drivers/mfd/sec-acpm.c
147
.cache_type = REGCACHE_FLAT,
drivers/mfd/sec-acpm.c
177
.cache_type = REGCACHE_FLAT,
drivers/mfd/sec-acpm.c
217
.cache_type = REGCACHE_FLAT,
drivers/mfd/sec-acpm.c
273
.cache_type = REGCACHE_FLAT,
drivers/mfd/sec-acpm.c
327
.cache_type = REGCACHE_FLAT,
drivers/mfd/sec-acpm.c
366
.cache_type = REGCACHE_FLAT,
drivers/mfd/sec-acpm.c
94
.cache_type = REGCACHE_FLAT,
drivers/mfd/sec-i2c.c
107
.cache_type = REGCACHE_FLAT,
drivers/mfd/sec-i2c.c
116
.cache_type = REGCACHE_FLAT,
drivers/mfd/sec-i2c.c
125
.cache_type = REGCACHE_FLAT,
drivers/mfd/sec-i2c.c
139
.cache_type = REGCACHE_FLAT,
drivers/mfd/sec-i2c.c
80
.cache_type = REGCACHE_FLAT,
drivers/mfd/sec-i2c.c
89
.cache_type = REGCACHE_FLAT,
drivers/mfd/sec-i2c.c
98
.cache_type = REGCACHE_FLAT,
drivers/mfd/si476x-prop.c
225
.cache_type = REGCACHE_MAPLE,
drivers/mfd/stmfx.c
56
.cache_type = REGCACHE_MAPLE,
drivers/mfd/stpmic1.c
66
.cache_type = REGCACHE_MAPLE,
drivers/mfd/tps65086.c
37
.cache_type = REGCACHE_MAPLE,
drivers/mfd/tps65090.c
154
.cache_type = REGCACHE_MAPLE,
drivers/mfd/tps65218.c
130
.cache_type = REGCACHE_MAPLE,
drivers/mfd/tps6586x.c
459
.cache_type = REGCACHE_MAPLE,
drivers/mfd/tps65910.c
284
.cache_type = REGCACHE_MAPLE,
drivers/mfd/tps65912-core.c
84
.cache_type = REGCACHE_MAPLE,
drivers/mfd/twl-core.c
322
.cache_type = REGCACHE_MAPLE,
drivers/mfd/twl6040.c
609
.cache_type = REGCACHE_MAPLE,
drivers/mfd/upboard-fpga.c
135
.cache_type = REGCACHE_NONE,
drivers/mfd/upboard-fpga.c
170
.cache_type = REGCACHE_NONE,
drivers/mfd/wcd934x.c
115
.cache_type = REGCACHE_MAPLE,
drivers/mfd/wm5102-tables.c
1925
.cache_type = REGCACHE_MAPLE,
drivers/mfd/wm5102-tables.c
1941
.cache_type = REGCACHE_MAPLE,
drivers/mfd/wm5110-tables.c
3205
.cache_type = REGCACHE_MAPLE,
drivers/mfd/wm5110-tables.c
3221
.cache_type = REGCACHE_MAPLE,
drivers/mfd/wm831x-core.c
1432
.cache_type = REGCACHE_MAPLE,
drivers/mfd/wm8350-regmap.c
328
.cache_type = REGCACHE_MAPLE,
drivers/mfd/wm8400-core.c
103
.cache_type = REGCACHE_MAPLE,
drivers/mfd/wm8994-regmap.c
1241
.cache_type = REGCACHE_MAPLE,
drivers/mfd/wm8994-regmap.c
1256
.cache_type = REGCACHE_MAPLE,
drivers/mfd/wm8994-regmap.c
1271
.cache_type = REGCACHE_MAPLE,
drivers/mfd/wm8997-tables.c
1526
.cache_type = REGCACHE_MAPLE,
drivers/mfd/wm8998-tables.c
1559
.cache_type = REGCACHE_MAPLE,
drivers/mfd/wm97xx-core.c
166
.cache_type = REGCACHE_MAPLE,
drivers/mfd/wm97xx-core.c
237
.cache_type = REGCACHE_MAPLE,
drivers/mfd/wm97xx-core.c
98
.cache_type = REGCACHE_MAPLE,
drivers/misc/eeprom/m24lr.c
81
.cache_type = REGCACHE_RBTREE,/* Flat can't be used, there's huge gap */
drivers/net/can/m_can/tcan4x5x-regmap.c
143
.cache_type = REGCACHE_NONE,
drivers/net/can/spi/mcp251xfd/mcp251xfd-regmap.c
504
.cache_type = REGCACHE_NONE,
drivers/net/can/spi/mcp251xfd/mcp251xfd-regmap.c
531
.cache_type = REGCACHE_NONE,
drivers/net/dsa/lan9303_i2c.c
29
.cache_type = REGCACHE_NONE,
drivers/net/dsa/lan9303_mdio.c
96
.cache_type = REGCACHE_NONE,
drivers/net/dsa/microchip/ksz8863_smi.c
107
.cache_type = REGCACHE_NONE,
drivers/net/dsa/microchip/ksz8863_smi.c
117
.cache_type = REGCACHE_NONE,
drivers/net/dsa/microchip/ksz8863_smi.c
127
.cache_type = REGCACHE_NONE,
drivers/net/dsa/microchip/ksz_common.h
939
.cache_type = REGCACHE_NONE, \
drivers/net/dsa/microchip/ksz_common.h
969
.cache_type = REGCACHE_NONE, \
drivers/net/dsa/qca/ar9331.c
1021
.cache_type = REGCACHE_MAPLE,
drivers/net/dsa/qca/qca8k-8xxx.c
578
.cache_type = REGCACHE_NONE, /* Explicitly disable CACHE */
drivers/net/dsa/realtek/rtl83xx.c
142
.cache_type = REGCACHE_NONE,
drivers/net/dsa/xrs700x/xrs700x_i2c.c
74
.cache_type = REGCACHE_NONE,
drivers/net/dsa/xrs700x/xrs700x_mdio.c
102
.cache_type = REGCACHE_NONE,
drivers/net/ethernet/davicom/dm9051.c
477
.cache_type = REGCACHE_NONE,
drivers/net/ethernet/davicom/dm9051.c
490
.cache_type = REGCACHE_NONE,
drivers/net/ethernet/microchip/encx24j600-regmap.c
467
.cache_type = REGCACHE_MAPLE,
drivers/net/ethernet/microchip/encx24j600-regmap.c
488
.cache_type = REGCACHE_MAPLE,
drivers/net/hyperv/hyperv_net.h
767
u8 cache_type;
drivers/net/hyperv/hyperv_net.h
808
u8 cache_type;
drivers/net/ieee802154/at86rf230.c
318
.cache_type = REGCACHE_MAPLE,
drivers/net/ieee802154/mcr20a.c
253
.cache_type = REGCACHE_MAPLE,
drivers/net/ieee802154/mcr20a.c
389
.cache_type = REGCACHE_MAPLE,
drivers/net/ieee802154/mrf24j40.c
391
.cache_type = REGCACHE_MAPLE,
drivers/net/ieee802154/mrf24j40.c
498
.cache_type = REGCACHE_MAPLE,
drivers/net/mdio/mdio-ipq8064.c
106
.cache_type = REGCACHE_NONE,
drivers/perf/arm_pmu.c
131
unsigned int cache_type, cache_op, cache_result, ret;
drivers/perf/arm_pmu.c
133
cache_type = (config >> 0) & 0xff;
drivers/perf/arm_pmu.c
134
if (cache_type >= PERF_COUNT_HW_CACHE_MAX)
drivers/perf/arm_pmu.c
148
ret = (int)(*cache_map)[cache_type][cache_op][cache_result];
drivers/perf/riscv_pmu_sbi.c
612
unsigned int cache_type, cache_op, cache_result, ret;
drivers/perf/riscv_pmu_sbi.c
614
cache_type = (config >> 0) & 0xff;
drivers/perf/riscv_pmu_sbi.c
615
if (cache_type >= PERF_COUNT_HW_CACHE_MAX)
drivers/perf/riscv_pmu_sbi.c
626
ret = pmu_cache_event_map[cache_type][cache_op][cache_result].event_idx;
drivers/pinctrl/pinctrl-apple-gpio.c
73
.cache_type = REGCACHE_FLAT,
drivers/pinctrl/pinctrl-aw9523.c
880
.cache_type = REGCACHE_FLAT,
drivers/pinctrl/pinctrl-cy8c95x0.c
468
.cache_type = REGCACHE_MAPLE,
drivers/pinctrl/pinctrl-mcp23s08.c
110
.cache_type = REGCACHE_MAPLE,
drivers/pinctrl/pinctrl-mcp23s08.c
75
.cache_type = REGCACHE_MAPLE,
drivers/pinctrl/pinctrl-sx150x.c
1110
.cache_type = REGCACHE_MAPLE,
drivers/platform/mellanox/mlx-platform.c
7295
.cache_type = REGCACHE_FLAT,
drivers/platform/mellanox/mlx-platform.c
7309
.cache_type = REGCACHE_FLAT,
drivers/platform/mellanox/mlx-platform.c
7323
.cache_type = REGCACHE_FLAT,
drivers/platform/mellanox/mlx-platform.c
7337
.cache_type = REGCACHE_FLAT,
drivers/platform/mellanox/mlx-platform.c
7351
.cache_type = REGCACHE_FLAT,
drivers/platform/mellanox/mlx-platform.c
7365
.cache_type = REGCACHE_FLAT,
drivers/platform/mellanox/mlx-platform.c
7379
.cache_type = REGCACHE_FLAT,
drivers/platform/mellanox/mlxreg-dpu.c
413
.cache_type = REGCACHE_FLAT,
drivers/platform/mellanox/mlxreg-lc.c
156
.cache_type = REGCACHE_FLAT,
drivers/platform/mellanox/nvsw-sn2201.c
315
.cache_type = REGCACHE_FLAT,
drivers/platform/x86/uniwill/uniwill-acpi.c
601
.cache_type = REGCACHE_MAPLE,
drivers/power/reset/tdx-ec-poweroff.c
61
.cache_type = REGCACHE_RBTREE,
drivers/power/supply/bd99954-charger.c
158
.cache_type = REGCACHE_MAPLE,
drivers/power/supply/bq24257_charger.c
116
.cache_type = REGCACHE_MAPLE,
drivers/power/supply/bq2515x_charger.c
1063
.cache_type = REGCACHE_MAPLE,
drivers/power/supply/bq2515x_charger.c
1074
.cache_type = REGCACHE_MAPLE,
drivers/power/supply/bq256xx_charger.c
1286
.cache_type = REGCACHE_FLAT,
drivers/power/supply/bq256xx_charger.c
1297
.cache_type = REGCACHE_FLAT,
drivers/power/supply/bq256xx_charger.c
1308
.cache_type = REGCACHE_FLAT,
drivers/power/supply/bq25890_charger.c
167
.cache_type = REGCACHE_MAPLE,
drivers/power/supply/bq25980_charger.c
934
.cache_type = REGCACHE_MAPLE,
drivers/power/supply/bq25980_charger.c
945
.cache_type = REGCACHE_MAPLE,
drivers/power/supply/bq25980_charger.c
956
.cache_type = REGCACHE_MAPLE,
drivers/power/supply/ltc4162-l-charger.c
1122
.cache_type = REGCACHE_MAPLE,
drivers/power/supply/max1720x_battery.c
122
.cache_type = REGCACHE_MAPLE,
drivers/power/supply/rt9455_charger.c
1582
.cache_type = REGCACHE_MAPLE,
drivers/power/supply/smb347-charger.c
1491
.cache_type = REGCACHE_MAPLE,
drivers/pwm/pwm-fsl-ftm.c
401
.cache_type = REGCACHE_FLAT,
drivers/pwm/pwm-pca9685.c
426
.cache_type = REGCACHE_MAPLE,
drivers/regulator/da9121-regulator.c
875
.cache_type = REGCACHE_MAPLE,
drivers/regulator/da9121-regulator.c
886
.cache_type = REGCACHE_MAPLE,
drivers/regulator/da9211-regulator.c
71
.cache_type = REGCACHE_MAPLE,
drivers/regulator/fp9931.c
224
.cache_type = REGCACHE_FLAT,
drivers/regulator/isl9305.c
137
.cache_type = REGCACHE_MAPLE,
drivers/regulator/ltc3589.c
348
.cache_type = REGCACHE_MAPLE,
drivers/regulator/ltc3676.c
264
.cache_type = REGCACHE_MAPLE,
drivers/regulator/max20086-regulator.c
216
.cache_type = REGCACHE_NONE,
drivers/regulator/max77675-regulator.c
611
.cache_type = REGCACHE_MAPLE,
drivers/regulator/max77857-regulator.c
73
.cache_type = REGCACHE_MAPLE,
drivers/regulator/max8973-regulator.c
510
.cache_type = REGCACHE_MAPLE,
drivers/regulator/mcp16502.c
499
.cache_type = REGCACHE_NONE,
drivers/regulator/mp8859.c
282
.cache_type = REGCACHE_MAPLE,
drivers/regulator/mt6311-regulator.c
23
.cache_type = REGCACHE_MAPLE,
drivers/regulator/pca9450-regulator.c
64
.cache_type = REGCACHE_MAPLE,
drivers/regulator/pf0900-regulator.c
302
.cache_type = REGCACHE_MAPLE,
drivers/regulator/pf530x-regulator.c
107
.cache_type = REGCACHE_MAPLE,
drivers/regulator/pf8x00-regulator.c
145
.cache_type = REGCACHE_MAPLE,
drivers/regulator/pf9453-regulator.c
205
.cache_type = REGCACHE_MAPLE,
drivers/regulator/pfuze100-regulator.c
683
.cache_type = REGCACHE_MAPLE,
drivers/regulator/rpi-panel-attiny-regulator.c
80
.cache_type = REGCACHE_MAPLE,
drivers/regulator/rt5133-regulator.c
477
.cache_type = REGCACHE_FLAT,
drivers/regulator/rt5739.c
251
.cache_type = REGCACHE_MAPLE,
drivers/regulator/rt6160-regulator.c
224
.cache_type = REGCACHE_FLAT,
drivers/regulator/rt6190-regulator.c
310
.cache_type = REGCACHE_FLAT,
drivers/regulator/rt6245-regulator.c
182
.cache_type = REGCACHE_FLAT,
drivers/regulator/rtmv20-regulator.c
315
.cache_type = REGCACHE_MAPLE,
drivers/regulator/rtq6752-regulator.c
212
.cache_type = REGCACHE_MAPLE,
drivers/regulator/sy8824x.c
115
.cache_type = REGCACHE_FLAT,
drivers/regulator/sy8824x.c
122
.cache_type = REGCACHE_FLAT,
drivers/regulator/sy8827n.c
121
.cache_type = REGCACHE_FLAT,
drivers/regulator/tps51632-regulator.c
202
.cache_type = REGCACHE_MAPLE,
drivers/regulator/tps62360-regulator.c
278
.cache_type = REGCACHE_MAPLE,
drivers/regulator/tps6286x-regulator.c
36
.cache_type = REGCACHE_MAPLE,
drivers/regulator/tps6287x-regulator.c
39
.cache_type = REGCACHE_MAPLE,
drivers/regulator/tps65132-regulator.c
218
.cache_type = REGCACHE_NONE,
drivers/regulator/tps65185.c
122
.cache_type = REGCACHE_MAPLE,
drivers/rtc/rtc-atcrtc100.c
82
.cache_type = REGCACHE_NONE,
drivers/scsi/sd.c
440
static DEVICE_ATTR_RW(cache_type);
drivers/soc/qcom/icc-bwmon.c
287
.cache_type = REGCACHE_MAPLE,
drivers/soc/qcom/icc-bwmon.c
306
.cache_type = REGCACHE_MAPLE,
drivers/soc/qcom/icc-bwmon.c
374
.cache_type = REGCACHE_MAPLE,
drivers/soc/qcom/icc-bwmon.c
451
.cache_type = REGCACHE_MAPLE,
drivers/soc/tegra/cbb/tegra234-cbb.c
424
u8 cache_type, prot_type, burst_length, mstr_id, grpsec, vqc, falconsec, beat_size;
drivers/soc/tegra/cbb/tegra234-cbb.c
456
cache_type = FIELD_GET(FAB_EM_EL_AXCACHE, cbb->mn_attr0);
drivers/soc/tegra/cbb/tegra234-cbb.c
477
tegra_cbb_print_cache(file, cache_type);
drivers/spi/spi-atcspi200.c
480
.cache_type = REGCACHE_NONE,
drivers/tty/serial/max310x.c
1489
.cache_type = REGCACHE_MAPLE,
drivers/tty/serial/max310x.c
1593
.cache_type = REGCACHE_MAPLE,
drivers/tty/serial/sc16is7xx.c
1724
.cache_type = REGCACHE_MAPLE,
drivers/usb/typec/stusb160x.c
237
.cache_type = REGCACHE_MAPLE,
include/hyperv/hvhdk.h
802
u32 cache_type; /* enum hv_cache_type */
include/hyperv/hvhdk.h
846
u32 cache_type; /* enum hv_cache_type */
include/linux/cacheinfo.h
52
enum cache_type type;
include/linux/regmap.h
458
enum regcache_type cache_type;
sound/hda/codecs/side-codecs/tas2781_hda_spi.c
71
.cache_type = REGCACHE_NONE,
sound/hda/core/regmap.c
360
.cache_type = REGCACHE_MAPLE,
sound/soc/atmel/atmel-classd.c
514
.cache_type = REGCACHE_FLAT,
sound/soc/atmel/mchp-pdmc.c
858
.cache_type = REGCACHE_FLAT,
sound/soc/atmel/mchp-spdifrx.c
242
.cache_type = REGCACHE_FLAT,
sound/soc/atmel/mchp-spdiftx.c
176
.cache_type = REGCACHE_FLAT,
sound/soc/bcm/bcm2835-i2s.c
820
.cache_type = REGCACHE_MAPLE,
sound/soc/bcm/bcm63xx-i2s-whistler.c
71
.cache_type = REGCACHE_FLAT,
sound/soc/codecs/ad1836.c
361
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/ad1980.c
95
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/adau1372.c
1074
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/adau1373.c
1469
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/adau1701.c
778
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/adau1761.c
1018
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/adau1781.c
475
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/adau1977.c
995
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/adau7118-i2c.c
46
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/adav80x.c
873
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/ak4104.c
261
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/ak4118.c
346
.cache_type = REGCACHE_NONE,
sound/soc/codecs/ak4375.c
484
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/ak4458.c
716
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/ak4535.c
387
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/ak4613.c
296
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/ak4619.c
824
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/ak4642.c
570
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/ak4642.c
579
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/ak4642.c
588
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/ak4671.c
628
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/ak5558.c
426
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/alc5623.c
962
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/alc5632.c
1091
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/cs35l32.c
262
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/cs35l33.c
851
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/cs35l34.c
779
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/cs35l35.c
1099
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/cs35l36.c
1301
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/cs35l41-lib.c
749
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/cs35l41-lib.c
766
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/cs35l45-tables.c
261
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/cs35l45-tables.c
277
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/cs35l56-shared-test.c
45
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/cs35l56-shared.c
1851
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/cs35l56-shared.c
1868
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/cs35l56-shared.c
1884
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/cs35l56-shared.c
1901
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/cs35l56-shared.c
1917
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/cs4234.c
679
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/cs4265.c
567
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/cs4270.c
639
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/cs4271.c
703
.cache_type = REGCACHE_FLAT,
sound/soc/codecs/cs42l42.c
393
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/cs42l51.c
706
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/cs42l52.c
1105
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/cs42l56.c
1161
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/cs42l73.c
1278
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/cs42l83-i2c.c
161
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/cs42l84.c
78
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/cs42xx8.c
461
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/cs43130.c
2437
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/cs4341.c
240
cs4341->regcfg.cache_type = REGCACHE_FLAT;
sound/soc/codecs/cs4341.c
295
cs4341->regcfg.cache_type = REGCACHE_FLAT;
sound/soc/codecs/cs4349.c
273
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/cs48l32-tables.c
528
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/cs530x.c
1140
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/cs530x.c
1160
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/cs53l30.c
896
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/cx2072x.c
1606
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/da7210.c
1205
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/da7210.c
1292
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/da7213.c
2191
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/da7218.c
3239
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/da7219.c
2447
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/da732x.c
1259
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/da9055.c
1473
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/es8311.c
906
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/es8316.c
859
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/es8323.c
766
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/es8326.c
370
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/es8328.c
858
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/es8375.c
625
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/es8389.c
963
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/fs210x.c
1334
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/isabelle.c
1107
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/jz4725b.c
614
.cache_type = REGCACHE_FLAT,
sound/soc/codecs/jz4740.c
305
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/jz4760.c
814
.cache_type = REGCACHE_FLAT,
sound/soc/codecs/jz4770.c
861
.cache_type = REGCACHE_FLAT,
sound/soc/codecs/lm4857.c
113
.cache_type = REGCACHE_FLAT,
sound/soc/codecs/lm49453.c
1412
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/lpass-rx-macro.c
1675
.cache_type = REGCACHE_FLAT,
sound/soc/codecs/lpass-tx-macro.c
604
.cache_type = REGCACHE_FLAT,
sound/soc/codecs/lpass-va-macro.c
451
.cache_type = REGCACHE_FLAT,
sound/soc/codecs/lpass-wsa-macro.c
1111
.cache_type = REGCACHE_FLAT,
sound/soc/codecs/max9768.c
174
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/max98088.c
304
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/max98090.c
2571
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/max98095.c
241
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/max98363.c
72
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/max98371.c
364
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/max98373-i2c.c
511
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/max98373-sdw.c
243
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/max98388.c
887
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/max98390.c
989
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/max98396.c
1656
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/max98396.c
1667
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/max9850.c
49
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/max98504.c
307
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/max98520.c
668
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/max9860.c
123
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/max9867.c
652
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/max9877.c
133
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/max98925.c
557
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/max98926.c
509
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/max98927.c
778
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/ml26124.c
549
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/msm8916-wcd-digital.c
1163
.cache_type = REGCACHE_FLAT,
sound/soc/codecs/nau8325.c
662
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/nau8540.c
931
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/nau8810.c
856
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/nau8821.c
1258
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/nau8822.c
1147
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/nau8824.c
1622
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/nau8825.c
2221
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/ntp8835.c
409
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/ntp8918.c
331
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/pcm186x.c
634
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/pcm3060.c
301
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/pcm3168a.c
705
.cache_type = REGCACHE_FLAT
sound/soc/codecs/pcm512x.c
1566
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/pcm6240.c
2025
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/peb2466.c
248
.cache_type = REGCACHE_NONE,
sound/soc/codecs/pm4125-sdw.c
334
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/rk3328_codec.c
419
.cache_type = REGCACHE_FLAT,
sound/soc/codecs/rt1011.c
2180
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/rt1015.c
1091
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/rt1016.c
605
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/rt1017-sdca-sdw.c
252
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/rt1019.c
537
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/rt1305.c
956
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/rt1308-sdw.c
72
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/rt1308.c
774
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/rt1316-sdw.c
191
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/rt1318-sdw.c
340
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/rt1318.c
1137
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/rt1320-sdw.c
645
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/rt1320-sdw.c
658
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/rt274.c
1087
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/rt286.c
1074
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/rt298.c
1135
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/rt5514.c
1182
.cache_type = REGCACHE_NONE,
sound/soc/codecs/rt5514.c
1195
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/rt5616.c
1316
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/rt5631.c
1698
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/rt5640.c
2948
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/rt5645.c
3614
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/rt5645.c
3631
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/rt5645.c
3645
.cache_type = REGCACHE_NONE,
sound/soc/codecs/rt5651.c
2178
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/rt5659.c
3811
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/rt5660.c
1220
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/rt5663.c
3281
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/rt5663.c
3294
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/rt5663.c
3306
.cache_type = REGCACHE_NONE,
sound/soc/codecs/rt5665.c
4529
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/rt5668.c
2329
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/rt5670.c
2871
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/rt5677.c
5174
.cache_type = REGCACHE_NONE,
sound/soc/codecs/rt5677.c
5191
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/rt5682-i2c.c
48
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/rt5682-sdw.c
506
.cache_type = REGCACHE_NONE,
sound/soc/codecs/rt5682-sdw.c
80
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/rt5682s.c
3047
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/rt700-sdw.c
295
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/rt700-sdw.c
308
.cache_type = REGCACHE_NONE,
sound/soc/codecs/rt711-sdca-sdw.c
122
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/rt711-sdca-sdw.c
136
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/rt711-sdw.c
301
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/rt711-sdw.c
314
.cache_type = REGCACHE_NONE,
sound/soc/codecs/rt712-sdca-dmic.c
113
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/rt712-sdca-dmic.c
127
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/rt712-sdca-sdw.c
137
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/rt712-sdca-sdw.c
151
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/rt715-sdca-sdw.c
100
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/rt715-sdca-sdw.c
114
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/rt715-sdw.c
358
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/rt715-sdw.c
370
.cache_type = REGCACHE_NONE,
sound/soc/codecs/rt721-sdca-sdw.c
172
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/rt721-sdca-sdw.c
186
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/rt722-sdca-sdw.c
203
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/rt9120.c
468
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/rt9123.c
373
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/rtq9124.c
418
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/rtq9128.c
227
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/sgtl5000.c
1550
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/sma1303.c
1594
.cache_type = REGCACHE_NONE,
sound/soc/codecs/src4xxx.c
512
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/ssm2518.c
732
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/ssm2602.c
665
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/ssm3515.c
93
.cache_type = REGCACHE_FLAT,
sound/soc/codecs/ssm4567.c
442
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/sta32x.c
1024
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/sta350.c
1069
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/sta529.c
335
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/stac9766.c
70
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/sti-sas.c
315
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/tas2552.c
684
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/tas2562.c
651
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/tas2764.c
829
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/tas2770.c
760
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/tas2780.c
556
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/tas2781-comlib-i2c.c
40
.cache_type = REGCACHE_NONE,
sound/soc/codecs/tas2783-sdw.c
521
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/tas5086.c
905
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/tas571x.c
434
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/tas571x.c
539
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/tas571x.c
646
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/tas571x.c
717
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/tas571x.c
829
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/tas571x.c
879
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/tas5720.c
510
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/tas5720.c
519
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/tas5720.c
528
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/tas5805m.c
455
.cache_type = REGCACHE_NONE,
sound/soc/codecs/tas6424.c
674
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/tda7419.c
122
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/tfa9879.c
248
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/tfa989x.c
81
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/tlv320adc3xxx.c
462
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/tlv320adcx140.c
190
.cache_type = REGCACHE_FLAT,
sound/soc/codecs/tlv320aic23.c
57
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/tlv320aic31xx.c
140
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/tlv320aic3x.c
151
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/tpa6130a2.c
204
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/ts3a227e.c
289
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/tscs42xx.c
95
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/tscs454.c
274
.cache_type = REGCACHE_RBTREE,
sound/soc/codecs/uda1342.c
276
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/wcd9335.c
4916
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/wcd937x-sdw.c
950
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/wcd938x-sdw.c
1137
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/wcd939x-sdw.c
1323
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/wm2200.c
2157
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/wm5100.c
2389
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/wm8510.c
611
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/wm8523.c
441
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/wm8580.c
980
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/wm8711.c
397
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/wm8728.c
240
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/wm8731.c
643
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/wm8737.c
604
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/wm8741.c
546
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/wm8750.c
739
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/wm8753.c
1511
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/wm8770.c
636
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/wm8776.c
455
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/wm8804.c
557
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/wm8900.c
1230
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/wm8903.c
1909
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/wm8904.c
2267
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/wm8940.c
825
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/wm8955.c
967
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/wm8960.c
1405
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/wm8961.c
908
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/wm8962.c
3633
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/wm8971.c
672
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/wm8974.c
661
.cache_type = REGCACHE_FLAT,
sound/soc/codecs/wm8978.c
1020
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/wm8983.c
999
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/wm8985.c
1129
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/wm8988.c
836
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/wm8991.c
1257
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/wm8993.c
1614
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/wm8995.c
2197
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/wm8996.c
2612
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/wm9081.c
1299
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/wm9090.c
557
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/wm9705.c
67
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/wm9712.c
89
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/wm9713.c
726
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/wsa881x.c
637
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/wsa883x.c
982
.cache_type = REGCACHE_MAPLE,
sound/soc/codecs/wsa884x.c
1375
.cache_type = REGCACHE_MAPLE,
sound/soc/fsl/fsl_asrc.c
975
.cache_type = REGCACHE_FLAT,
sound/soc/fsl/fsl_aud2htx.c
172
.cache_type = REGCACHE_MAPLE,
sound/soc/fsl/fsl_audmix.c
440
.cache_type = REGCACHE_FLAT,
sound/soc/fsl/fsl_easrc.c
1760
.cache_type = REGCACHE_MAPLE,
sound/soc/fsl/fsl_esai.c
948
.cache_type = REGCACHE_FLAT,
sound/soc/fsl/fsl_micfil.c
1203
.cache_type = REGCACHE_MAPLE,
sound/soc/fsl/fsl_micfil.c
1217
.cache_type = REGCACHE_MAPLE,
sound/soc/fsl/fsl_mqs.c
214
.cache_type = REGCACHE_NONE,
sound/soc/fsl/fsl_sai.c
1263
.cache_type = REGCACHE_FLAT,
sound/soc/fsl/fsl_spdif.c
1421
.cache_type = REGCACHE_FLAT,
sound/soc/fsl/fsl_ssi.c
196
.cache_type = REGCACHE_FLAT,
sound/soc/fsl/fsl_xcvr.c
1311
.cache_type = REGCACHE_FLAT,
sound/soc/fsl/fsl_xcvr.c
1333
.cache_type = REGCACHE_FLAT,
sound/soc/fsl/fsl_xcvr.c
1344
.cache_type = REGCACHE_FLAT,
sound/soc/fsl/fsl_xcvr.c
1355
.cache_type = REGCACHE_FLAT,
sound/soc/loongson/loongson_i2s_pci.c
72
.cache_type = REGCACHE_FLAT,
sound/soc/loongson/loongson_i2s_plat.c
93
.cache_type = REGCACHE_FLAT,
sound/soc/mediatek/mt8173/mt8173-afe-pcm.c
910
.cache_type = REGCACHE_NONE,
sound/soc/mediatek/mt8183/mt8183-afe-pcm.c
618
.cache_type = REGCACHE_FLAT,
sound/soc/mediatek/mt8186/mt8186-afe-pcm.c
2630
.cache_type = REGCACHE_FLAT,
sound/soc/mediatek/mt8188/mt8188-afe-pcm.c
2939
.cache_type = REGCACHE_FLAT,
sound/soc/mediatek/mt8189/mt8189-afe-pcm.c
2191
.cache_type = REGCACHE_FLAT,
sound/soc/mediatek/mt8192/mt8192-afe-pcm.c
2001
.cache_type = REGCACHE_FLAT,
sound/soc/mediatek/mt8195/mt8195-afe-pcm.c
2838
.cache_type = REGCACHE_FLAT,
sound/soc/mediatek/mt8365/mt8365-afe-pcm.c
1909
.cache_type = REGCACHE_NONE,
sound/soc/qcom/lpass-cpu.c
1004
.cache_type = REGCACHE_FLAT,
sound/soc/qcom/lpass-cpu.c
610
.cache_type = REGCACHE_FLAT,
sound/soc/qcom/lpass-cpu.c
821
.cache_type = REGCACHE_FLAT,
sound/soc/qcom/lpass-cpu.c
994
.cache_type = REGCACHE_FLAT,
sound/soc/rockchip/rockchip_i2s.c
639
.cache_type = REGCACHE_FLAT,
sound/soc/rockchip/rockchip_i2s_tdm.c
936
.cache_type = REGCACHE_FLAT,
sound/soc/rockchip/rockchip_pdm.c
524
.cache_type = REGCACHE_FLAT,
sound/soc/rockchip/rockchip_sai.c
1095
.cache_type = REGCACHE_FLAT,
sound/soc/rockchip/rockchip_spdif.c
321
.cache_type = REGCACHE_FLAT,
sound/soc/sdca/sdca_class.c
134
.cache_type = REGCACHE_MAPLE,
sound/soc/sdca/sdca_class_function.c
90
.cache_type = REGCACHE_MAPLE,
sound/soc/soc-ops-test.c
379
.cache_type = REGCACHE_FLAT,
sound/soc/stm/stm32_i2s.c
1096
.cache_type = REGCACHE_FLAT,
sound/soc/stm/stm32_sai_sub.c
254
.cache_type = REGCACHE_FLAT,
sound/soc/stm/stm32_sai_sub.c
266
.cache_type = REGCACHE_FLAT,
sound/soc/stm/stm32_spdifrx.c
662
.cache_type = REGCACHE_FLAT,
sound/soc/sunxi/sun4i-codec.c
2131
.cache_type = REGCACHE_NONE,
sound/soc/sunxi/sun4i-i2s.c
1262
.cache_type = REGCACHE_FLAT,
sound/soc/sunxi/sun4i-i2s.c
1275
.cache_type = REGCACHE_FLAT,
sound/soc/sunxi/sun4i-i2s.c
1288
.cache_type = REGCACHE_FLAT,
sound/soc/sunxi/sun50i-dmic.c
262
.cache_type = REGCACHE_NONE,
sound/soc/sunxi/sun8i-codec.c
1602
.cache_type = REGCACHE_FLAT,
sound/soc/tegra/tegra186_asrc.c
954
.cache_type = REGCACHE_FLAT,
sound/soc/tegra/tegra186_dspk.c
471
.cache_type = REGCACHE_FLAT,
sound/soc/tegra/tegra20_ac97.c
298
.cache_type = REGCACHE_FLAT,
sound/soc/tegra/tegra20_das.c
152
.cache_type = REGCACHE_FLAT,
sound/soc/tegra/tegra20_i2s.c
396
.cache_type = REGCACHE_FLAT,
sound/soc/tegra/tegra20_spdif.c
340
.cache_type = REGCACHE_FLAT,
sound/soc/tegra/tegra210_admaif.c
245
.cache_type = REGCACHE_FLAT,
sound/soc/tegra/tegra210_admaif.c
259
.cache_type = REGCACHE_FLAT,
sound/soc/tegra/tegra210_admaif.c
273
.cache_type = REGCACHE_FLAT,
sound/soc/tegra/tegra210_adx.c
629
.cache_type = REGCACHE_FLAT,
sound/soc/tegra/tegra210_adx.c
643
.cache_type = REGCACHE_FLAT,
sound/soc/tegra/tegra210_ahub.c
2137
.cache_type = REGCACHE_FLAT,
sound/soc/tegra/tegra210_ahub.c
2147
.cache_type = REGCACHE_FLAT,
sound/soc/tegra/tegra210_ahub.c
2157
.cache_type = REGCACHE_FLAT,
sound/soc/tegra/tegra210_amx.c
658
.cache_type = REGCACHE_FLAT,
sound/soc/tegra/tegra210_amx.c
672
.cache_type = REGCACHE_FLAT,
sound/soc/tegra/tegra210_amx.c
686
.cache_type = REGCACHE_FLAT,
sound/soc/tegra/tegra210_dmic.c
487
.cache_type = REGCACHE_FLAT,
sound/soc/tegra/tegra210_i2s.c
1001
.cache_type = REGCACHE_FLAT,
sound/soc/tegra/tegra210_i2s.c
1049
.cache_type = REGCACHE_FLAT,
sound/soc/tegra/tegra210_mbdrc.c
767
.cache_type = REGCACHE_FLAT,
sound/soc/tegra/tegra210_mixer.c
612
.cache_type = REGCACHE_FLAT,
sound/soc/tegra/tegra210_mvc.c
703
.cache_type = REGCACHE_FLAT,
sound/soc/tegra/tegra210_ope.c
301
.cache_type = REGCACHE_FLAT,
sound/soc/tegra/tegra210_peq.c
310
.cache_type = REGCACHE_FLAT,
sound/soc/tegra/tegra210_sfc.c
3573
.cache_type = REGCACHE_FLAT,
sound/soc/tegra/tegra30_ahub.c
469
.cache_type = REGCACHE_FLAT,
sound/soc/tegra/tegra30_ahub.c
488
.cache_type = REGCACHE_FLAT,
sound/soc/tegra/tegra30_i2s.c
389
.cache_type = REGCACHE_FLAT,
sound/soc/uniphier/aio-dma.c
238
.cache_type = REGCACHE_NONE,
sound/soc/uniphier/evea.c
447
.cache_type = REGCACHE_NONE,
sound/soc/xtensa/xtfpga-i2s.c
117
.cache_type = REGCACHE_FLAT,
tools/perf/util/parse-events.c
1022
int cache_type, cache_op, cache_result;
tools/perf/util/parse-events.c
1026
cache_type = term->val.num & 0xFF;
tools/perf/util/parse-events.c
1030
cache_type >= PERF_COUNT_HW_CACHE_MAX ||
tools/perf/util/parse-events.c
367
int len, cache_type = -1, cache_op = -1, cache_result = -1;
tools/perf/util/parse-events.c
371
cache_type = parse_aliases(str, evsel__hw_cache, PERF_COUNT_HW_CACHE_MAX, &len);
tools/perf/util/parse-events.c
372
if (cache_type == -1)
tools/perf/util/parse-events.c
380
if (!evsel__is_cache_op_valid(cache_type, cache_op))
tools/perf/util/parse-events.c
395
if (!evsel__is_cache_op_valid(cache_type, cache_op))
tools/perf/util/parse-events.c
416
*config = cache_type | (cache_op << 8) | (cache_result << 16);
tools/perf/util/pmu.c
1551
int cache_type = term->val.num & 0xFF;
tools/perf/util/pmu.c
1555
assert(cache_type < PERF_COUNT_HW_CACHE_MAX);
tools/testing/selftests/resctrl/cat_test.c
67
static int check_results(struct resctrl_val_param *param, const char *cache_type,
tools/testing/selftests/resctrl/fill_buf.c
133
ssize_t get_fill_buf_size(int cpu_no, const char *cache_type)
tools/testing/selftests/resctrl/fill_buf.c
138
ret = get_cache_size(cpu_no, cache_type, &cache_total_size);
tools/testing/selftests/resctrl/resctrl.h
189
ssize_t get_fill_buf_size(int cpu_no, const char *cache_type);
tools/testing/selftests/resctrl/resctrl.h
200
int get_full_cbm(const char *cache_type, unsigned long *mask);
tools/testing/selftests/resctrl/resctrl.h
201
int get_mask_no_shareable(const char *cache_type, unsigned long *mask);
tools/testing/selftests/resctrl/resctrl.h
202
int get_cache_size(int cpu_no, const char *cache_type, unsigned long *cache_size);
tools/testing/selftests/resctrl/resctrlfs.c
105
static int get_cache_level(const char *cache_type)
tools/testing/selftests/resctrl/resctrlfs.c
107
if (!strcmp(cache_type, "L3"))
tools/testing/selftests/resctrl/resctrlfs.c
109
if (!strcmp(cache_type, "L2"))
tools/testing/selftests/resctrl/resctrlfs.c
271
int get_cache_size(int cpu_no, const char *cache_type, unsigned long *cache_size)
tools/testing/selftests/resctrl/resctrlfs.c
277
cache_num = get_cache_level(cache_type);
tools/testing/selftests/resctrl/resctrlfs.c
449
int get_full_cbm(const char *cache_type, unsigned long *mask)
tools/testing/selftests/resctrl/resctrlfs.c
454
if (!cache_type)
tools/testing/selftests/resctrl/resctrlfs.c
458
INFO_PATH, cache_type);
tools/testing/selftests/resctrl/resctrlfs.c
474
static int get_shareable_mask(const char *cache_type, unsigned long *shareable_mask)
tools/testing/selftests/resctrl/resctrlfs.c
478
if (!cache_type)
tools/testing/selftests/resctrl/resctrlfs.c
482
INFO_PATH, cache_type);
tools/testing/selftests/resctrl/resctrlfs.c
499
int get_mask_no_shareable(const char *cache_type, unsigned long *mask)
tools/testing/selftests/resctrl/resctrlfs.c
504
if (get_full_cbm(cache_type, &full_mask) < 0)
tools/testing/selftests/resctrl/resctrlfs.c
506
if (get_shareable_mask(cache_type, &shareable_mask) < 0)