Lines Matching refs:regmap

30 	struct regmap *regmap;  member
49 static struct regmap *regmap_alloc(int count) in regmap_alloc()
51 struct regmap *map; in regmap_alloc()
65 struct regmap **mapp) in regmap_init_mem_plat()
68 struct regmap *map; in regmap_init_mem_plat()
136 int regmap_init_mem_index(ofnode node, struct regmap **mapp, int index) in regmap_init_mem_index()
138 struct regmap *map; in regmap_init_mem_index()
183 struct regmap **mapp) in regmap_init_mem_range()
185 struct regmap *map; in regmap_init_mem_range()
209 int regmap_init_mem(ofnode node, struct regmap **mapp) in regmap_init_mem()
212 struct regmap *map; in regmap_init_mem()
285 regmap_uninit(*(struct regmap **)res); in devm_regmap_release()
288 struct regmap *devm_regmap_init(struct udevice *dev, in devm_regmap_init()
294 struct regmap **mapp, *map; in devm_regmap_init()
297 mapp = devres_alloc(devm_regmap_release, sizeof(struct regmap *), in devm_regmap_init()
321 void *regmap_get_range(struct regmap *map, unsigned int range_num) in regmap_get_range()
332 int regmap_uninit(struct regmap *map) in regmap_uninit()
388 int regmap_raw_read_range(struct regmap *map, uint range_num, uint offset, in regmap_raw_read_range()
432 int regmap_raw_read(struct regmap *map, uint offset, void *valp, size_t val_len) in regmap_raw_read()
437 int regmap_read(struct regmap *map, uint offset, uint *valp) in regmap_read()
527 int regmap_raw_write_range(struct regmap *map, uint range_num, uint offset, in regmap_raw_write_range()
571 int regmap_raw_write(struct regmap *map, uint offset, const void *val, in regmap_raw_write()
577 int regmap_write(struct regmap *map, uint offset, uint val) in regmap_write()
608 int regmap_update_bits(struct regmap *map, uint offset, uint mask, uint val) in regmap_update_bits()
627 ret = regmap_read(field->regmap, field->reg, &reg_val); in regmap_field_read()
640 return regmap_update_bits(field->regmap, field->reg, field->mask, in regmap_field_write()
645 struct regmap *regmap, in regmap_field_init() argument
648 rm_field->regmap = regmap; in regmap_field_init()
655 struct regmap *regmap, in devm_regmap_field_alloc() argument
663 regmap_field_init(rm_field, regmap, reg_field); in devm_regmap_field_alloc()
673 struct regmap_field *regmap_field_alloc(struct regmap *regmap, in regmap_field_alloc() argument
681 regmap_field_init(rm_field, regmap, reg_field); in regmap_field_alloc()