Merge tag 'trace-printf-v6.13' of git://git.kernel.org/pub/scm/linux/kernel/git/trace...
[drm/drm-misc.git] / drivers / iio / light / st_uvis25_i2c.c
blob6bc2ddfb77ca633361682b3637f2c45e558a0f6f
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * STMicroelectronics uvis25 i2c driver
5 * Copyright 2017 STMicroelectronics Inc.
7 * Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
8 */
10 #include <linux/kernel.h>
11 #include <linux/module.h>
12 #include <linux/mod_devicetable.h>
13 #include <linux/i2c.h>
14 #include <linux/slab.h>
15 #include <linux/regmap.h>
17 #include "st_uvis25.h"
19 #define UVIS25_I2C_AUTO_INCREMENT BIT(7)
21 static const struct regmap_config st_uvis25_i2c_regmap_config = {
22 .reg_bits = 8,
23 .val_bits = 8,
24 .write_flag_mask = UVIS25_I2C_AUTO_INCREMENT,
25 .read_flag_mask = UVIS25_I2C_AUTO_INCREMENT,
28 static int st_uvis25_i2c_probe(struct i2c_client *client)
30 struct regmap *regmap;
32 regmap = devm_regmap_init_i2c(client, &st_uvis25_i2c_regmap_config);
33 if (IS_ERR(regmap)) {
34 dev_err(&client->dev, "Failed to register i2c regmap %ld\n",
35 PTR_ERR(regmap));
36 return PTR_ERR(regmap);
39 return st_uvis25_probe(&client->dev, client->irq, regmap);
42 static const struct of_device_id st_uvis25_i2c_of_match[] = {
43 { .compatible = "st,uvis25", },
44 {},
46 MODULE_DEVICE_TABLE(of, st_uvis25_i2c_of_match);
48 static const struct i2c_device_id st_uvis25_i2c_id_table[] = {
49 { ST_UVIS25_DEV_NAME },
50 {},
52 MODULE_DEVICE_TABLE(i2c, st_uvis25_i2c_id_table);
54 static struct i2c_driver st_uvis25_driver = {
55 .driver = {
56 .name = "st_uvis25_i2c",
57 .pm = pm_sleep_ptr(&st_uvis25_pm_ops),
58 .of_match_table = st_uvis25_i2c_of_match,
60 .probe = st_uvis25_i2c_probe,
61 .id_table = st_uvis25_i2c_id_table,
63 module_i2c_driver(st_uvis25_driver);
65 MODULE_AUTHOR("Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>");
66 MODULE_DESCRIPTION("STMicroelectronics uvis25 i2c driver");
67 MODULE_LICENSE("GPL v2");
68 MODULE_IMPORT_NS(IIO_UVIS25);