Lines Matching refs:cache_ops
157 map->cache_ops = cache_types[i]; in regcache_init()
159 if (!map->cache_ops->read || in regcache_init()
160 !map->cache_ops->write || in regcache_init()
161 !map->cache_ops->name) in regcache_init()
189 if (map->cache_ops->init) { in regcache_init()
191 map->cache_ops->name); in regcache_init()
192 ret = map->cache_ops->init(map); in regcache_init()
211 BUG_ON(!map->cache_ops); in regcache_exit()
217 if (map->cache_ops->exit) { in regcache_exit()
219 map->cache_ops->name); in regcache_exit()
220 map->cache_ops->exit(map); in regcache_exit()
241 BUG_ON(!map->cache_ops); in regcache_read()
244 ret = map->cache_ops->read(map, reg, value); in regcache_read()
270 BUG_ON(!map->cache_ops); in regcache_write()
273 return map->cache_ops->write(map, reg, value); in regcache_write()
346 BUG_ON(!map->cache_ops); in regcache_sync()
352 map->cache_ops->name); in regcache_sync()
353 name = map->cache_ops->name; in regcache_sync()
373 if (map->cache_ops->sync) in regcache_sync()
374 ret = map->cache_ops->sync(map, 0, map->max_register); in regcache_sync()
415 BUG_ON(!map->cache_ops); in regcache_sync_region()
422 name = map->cache_ops->name; in regcache_sync_region()
432 if (map->cache_ops->sync) in regcache_sync_region()
433 ret = map->cache_ops->sync(map, min, max); in regcache_sync_region()
468 if (!map->cache_ops || !map->cache_ops->drop) in regcache_drop_region()
475 ret = map->cache_ops->drop(map, min, max); in regcache_drop_region()