Lines Matching refs:regmap
36 struct regmap;
602 struct regmap *__regmap_init(struct device *dev,
608 struct regmap *__regmap_init_i2c(struct i2c_client *i2c,
612 struct regmap *__regmap_init_mdio(struct mdio_device *mdio_dev,
616 struct regmap *__regmap_init_sccb(struct i2c_client *i2c,
620 struct regmap *__regmap_init_slimbus(struct slim_device *slimbus,
624 struct regmap *__regmap_init_spi(struct spi_device *dev,
628 struct regmap *__regmap_init_spmi_base(struct spmi_device *dev,
632 struct regmap *__regmap_init_spmi_ext(struct spmi_device *dev,
636 struct regmap *__regmap_init_w1(struct device *w1_dev,
640 struct regmap *__regmap_init_mmio_clk(struct device *dev, const char *clk_id,
645 struct regmap *__regmap_init_ac97(struct snd_ac97 *ac97,
649 struct regmap *__regmap_init_sdw(struct sdw_slave *sdw,
653 struct regmap *__regmap_init_sdw_mbq(struct sdw_slave *sdw,
657 struct regmap *__regmap_init_spi_avmm(struct spi_device *spi,
661 struct regmap *__regmap_init_fsi(struct fsi_device *fsi_dev,
666 struct regmap *__devm_regmap_init(struct device *dev,
672 struct regmap *__devm_regmap_init_i2c(struct i2c_client *i2c,
676 struct regmap *__devm_regmap_init_mdio(struct mdio_device *mdio_dev,
680 struct regmap *__devm_regmap_init_sccb(struct i2c_client *i2c,
684 struct regmap *__devm_regmap_init_spi(struct spi_device *dev,
688 struct regmap *__devm_regmap_init_spmi_base(struct spmi_device *dev,
692 struct regmap *__devm_regmap_init_spmi_ext(struct spmi_device *dev,
696 struct regmap *__devm_regmap_init_w1(struct device *w1_dev,
700 struct regmap *__devm_regmap_init_mmio_clk(struct device *dev,
706 struct regmap *__devm_regmap_init_ac97(struct snd_ac97 *ac97,
710 struct regmap *__devm_regmap_init_sdw(struct sdw_slave *sdw,
714 struct regmap *__devm_regmap_init_sdw_mbq(struct sdw_slave *sdw,
718 struct regmap *__devm_regmap_init_slimbus(struct slim_device *slimbus,
722 struct regmap *__devm_regmap_init_i3c(struct i3c_device *i3c,
726 struct regmap *__devm_regmap_init_spi_avmm(struct spi_device *spi,
730 struct regmap *__devm_regmap_init_fsi(struct fsi_device *fsi_dev,
772 int regmap_attach_dev(struct device *dev, struct regmap *map,
1217 int regmap_mmio_attach_clk(struct regmap *map, struct clk *clk);
1218 void regmap_mmio_detach_clk(struct regmap *map);
1219 void regmap_exit(struct regmap *map);
1220 int regmap_reinit_cache(struct regmap *map,
1222 struct regmap *dev_get_regmap(struct device *dev, const char *name);
1223 struct device *regmap_get_device(struct regmap *map);
1224 int regmap_write(struct regmap *map, unsigned int reg, unsigned int val);
1225 int regmap_write_async(struct regmap *map, unsigned int reg, unsigned int val);
1226 int regmap_raw_write(struct regmap *map, unsigned int reg,
1228 int regmap_noinc_write(struct regmap *map, unsigned int reg,
1230 int regmap_bulk_write(struct regmap *map, unsigned int reg, const void *val,
1232 int regmap_multi_reg_write(struct regmap *map, const struct reg_sequence *regs,
1234 int regmap_multi_reg_write_bypassed(struct regmap *map,
1237 int regmap_raw_write_async(struct regmap *map, unsigned int reg,
1239 int regmap_read(struct regmap *map, unsigned int reg, unsigned int *val);
1240 int regmap_read_bypassed(struct regmap *map, unsigned int reg, unsigned int *val);
1241 int regmap_raw_read(struct regmap *map, unsigned int reg,
1243 int regmap_noinc_read(struct regmap *map, unsigned int reg,
1245 int regmap_bulk_read(struct regmap *map, unsigned int reg, void *val,
1247 int regmap_multi_reg_read(struct regmap *map, unsigned int *reg, void *val,
1249 int regmap_update_bits_base(struct regmap *map, unsigned int reg,
1253 static inline int regmap_update_bits(struct regmap *map, unsigned int reg, in regmap_update_bits()
1259 static inline int regmap_update_bits_async(struct regmap *map, unsigned int reg, in regmap_update_bits_async()
1265 static inline int regmap_update_bits_check(struct regmap *map, unsigned int reg, in regmap_update_bits_check()
1274 regmap_update_bits_check_async(struct regmap *map, unsigned int reg, in regmap_update_bits_check_async()
1282 static inline int regmap_write_bits(struct regmap *map, unsigned int reg, in regmap_write_bits()
1288 int regmap_get_val_bytes(struct regmap *map);
1289 int regmap_get_max_register(struct regmap *map);
1290 int regmap_get_reg_stride(struct regmap *map);
1291 bool regmap_might_sleep(struct regmap *map);
1292 int regmap_async_complete(struct regmap *map);
1293 bool regmap_can_raw_write(struct regmap *map);
1294 size_t regmap_get_raw_read_max(struct regmap *map);
1295 size_t regmap_get_raw_write_max(struct regmap *map);
1297 int regcache_sync(struct regmap *map);
1298 int regcache_sync_region(struct regmap *map, unsigned int min,
1300 int regcache_drop_region(struct regmap *map, unsigned int min,
1302 void regcache_cache_only(struct regmap *map, bool enable);
1303 void regcache_cache_bypass(struct regmap *map, bool enable);
1304 void regcache_mark_dirty(struct regmap *map);
1305 bool regcache_reg_cached(struct regmap *map, unsigned int reg);
1307 bool regmap_check_range_table(struct regmap *map, unsigned int reg,
1310 int regmap_register_patch(struct regmap *map, const struct reg_sequence *regs,
1312 int regmap_parse_val(struct regmap *map, const void *buf,
1325 static inline int regmap_set_bits(struct regmap *map, in regmap_set_bits()
1332 static inline int regmap_clear_bits(struct regmap *map, in regmap_clear_bits()
1338 int regmap_test_bits(struct regmap *map, unsigned int reg, unsigned int bits);
1371 struct regmap_field *regmap_field_alloc(struct regmap *regmap,
1376 struct regmap *regmap, struct reg_field reg_field);
1379 int regmap_field_bulk_alloc(struct regmap *regmap,
1384 int devm_regmap_field_bulk_alloc(struct device *dev, struct regmap *regmap,
1671 int regmap_add_irq_chip(struct regmap *map, int irq, int irq_flags,
1675 struct regmap *map, int irq,
1681 int devm_regmap_add_irq_chip(struct device *dev, struct regmap *map, int irq,
1687 struct regmap *map, int irq,
1707 static inline int regmap_write(struct regmap *map, unsigned int reg, in regmap_write()
1714 static inline int regmap_write_async(struct regmap *map, unsigned int reg, in regmap_write_async()
1721 static inline int regmap_raw_write(struct regmap *map, unsigned int reg, in regmap_raw_write()
1728 static inline int regmap_raw_write_async(struct regmap *map, unsigned int reg, in regmap_raw_write_async()
1735 static inline int regmap_noinc_write(struct regmap *map, unsigned int reg, in regmap_noinc_write()
1742 static inline int regmap_bulk_write(struct regmap *map, unsigned int reg, in regmap_bulk_write()
1749 static inline int regmap_read(struct regmap *map, unsigned int reg, in regmap_read()
1756 static inline int regmap_read_bypassed(struct regmap *map, unsigned int reg, in regmap_read_bypassed()
1763 static inline int regmap_raw_read(struct regmap *map, unsigned int reg, in regmap_raw_read()
1770 static inline int regmap_noinc_read(struct regmap *map, unsigned int reg, in regmap_noinc_read()
1777 static inline int regmap_bulk_read(struct regmap *map, unsigned int reg, in regmap_bulk_read()
1784 static inline int regmap_update_bits_base(struct regmap *map, unsigned int reg, in regmap_update_bits_base()
1792 static inline int regmap_set_bits(struct regmap *map, in regmap_set_bits()
1799 static inline int regmap_clear_bits(struct regmap *map, in regmap_clear_bits()
1806 static inline int regmap_test_bits(struct regmap *map, in regmap_test_bits()
1830 static inline int regmap_update_bits(struct regmap *map, unsigned int reg, in regmap_update_bits()
1837 static inline int regmap_update_bits_async(struct regmap *map, unsigned int reg, in regmap_update_bits_async()
1844 static inline int regmap_update_bits_check(struct regmap *map, unsigned int reg, in regmap_update_bits_check()
1853 regmap_update_bits_check_async(struct regmap *map, unsigned int reg, in regmap_update_bits_check_async()
1861 static inline int regmap_write_bits(struct regmap *map, unsigned int reg, in regmap_write_bits()
1948 static inline int regmap_get_val_bytes(struct regmap *map) in regmap_get_val_bytes()
1954 static inline int regmap_get_max_register(struct regmap *map) in regmap_get_max_register()
1960 static inline int regmap_get_reg_stride(struct regmap *map) in regmap_get_reg_stride()
1966 static inline bool regmap_might_sleep(struct regmap *map) in regmap_might_sleep()
1972 static inline int regcache_sync(struct regmap *map) in regcache_sync()
1978 static inline int regcache_sync_region(struct regmap *map, unsigned int min, in regcache_sync_region()
1985 static inline int regcache_drop_region(struct regmap *map, unsigned int min, in regcache_drop_region()
1992 static inline void regcache_cache_only(struct regmap *map, bool enable) in regcache_cache_only()
1997 static inline void regcache_cache_bypass(struct regmap *map, bool enable) in regcache_cache_bypass()
2002 static inline void regcache_mark_dirty(struct regmap *map) in regcache_mark_dirty()
2007 static inline void regmap_async_complete(struct regmap *map) in regmap_async_complete()
2012 static inline int regmap_register_patch(struct regmap *map, in regmap_register_patch()
2020 static inline int regmap_parse_val(struct regmap *map, const void *buf, in regmap_parse_val()
2027 static inline struct regmap *dev_get_regmap(struct device *dev, in dev_get_regmap()
2033 static inline struct device *regmap_get_device(struct regmap *map) in regmap_get_device()