Lines Matching refs:map

5  * Register map access API
47 * Configuration for the register map of a device.
110 * Description of a hardware bus for the register map infrastructure.
143 void regmap_exit(struct regmap *map);
144 int regmap_reinit_cache(struct regmap *map,
146 int regmap_write(struct regmap *map, unsigned int reg, unsigned int val);
147 int regmap_raw_write(struct regmap *map, unsigned int reg,
149 int regmap_bulk_write(struct regmap *map, unsigned int reg, const void *val,
151 int regmap_read(struct regmap *map, unsigned int reg, unsigned int *val);
152 int regmap_raw_read(struct regmap *map, unsigned int reg,
154 int regmap_bulk_read(struct regmap *map, unsigned int reg, void *val,
156 int regmap_update_bits(struct regmap *map, unsigned int reg,
158 int regmap_update_bits_check(struct regmap *map, unsigned int reg,
161 int regmap_get_val_bytes(struct regmap *map);
163 int regcache_sync(struct regmap *map);
164 int regcache_sync_region(struct regmap *map, unsigned int min,
166 void regcache_cache_only(struct regmap *map, bool enable);
167 void regcache_cache_bypass(struct regmap *map, bool enable);
168 void regcache_mark_dirty(struct regmap *map);
170 int regmap_register_patch(struct regmap *map, const struct reg_default *regs,
215 int regmap_add_irq_chip(struct regmap *map, int irq, int irq_flags,
230 static inline int regmap_write(struct regmap *map, unsigned int reg,
237 static inline int regmap_raw_write(struct regmap *map, unsigned int reg,
244 static inline int regmap_bulk_write(struct regmap *map, unsigned int reg,
251 static inline int regmap_read(struct regmap *map, unsigned int reg,
258 static inline int regmap_raw_read(struct regmap *map, unsigned int reg,
265 static inline int regmap_bulk_read(struct regmap *map, unsigned int reg,
272 static inline int regmap_update_bits(struct regmap *map, unsigned int reg,
279 static inline int regmap_update_bits_check(struct regmap *map,
288 static inline int regmap_get_val_bytes(struct regmap *map)
294 static inline int regcache_sync(struct regmap *map)
300 static inline int regcache_sync_region(struct regmap *map, unsigned int min,
307 static inline void regcache_cache_only(struct regmap *map, bool enable)
312 static inline void regcache_cache_bypass(struct regmap *map, bool enable)
317 static inline void regcache_mark_dirty(struct regmap *map)
322 static inline int regmap_register_patch(struct regmap *map,