Lines Matching refs:regmap
21 static struct regmap *regmap_alloc_count(int count) in regmap_alloc_count()
23 struct regmap *map; in regmap_alloc_count()
25 map = malloc(sizeof(struct regmap)); in regmap_alloc_count()
44 struct regmap **mapp) in regmap_init_mem_platdata()
47 struct regmap *map; in regmap_init_mem_platdata()
64 int regmap_init_mem(struct udevice *dev, struct regmap **mapp) in regmap_init_mem()
67 struct regmap *map; in regmap_init_mem()
111 void *regmap_get_range(struct regmap *map, unsigned int range_num) in regmap_get_range()
122 int regmap_uninit(struct regmap *map) in regmap_uninit()
131 int regmap_read(struct regmap *map, uint offset, uint *valp) in regmap_read()
140 int regmap_write(struct regmap *map, uint offset, uint val) in regmap_write()
149 int regmap_update_bits(struct regmap *map, uint offset, uint mask, uint val) in regmap_update_bits()