Commit ae9e196d authored by Akinobu Mita's avatar Akinobu Mita Committed by Mauro Carvalho Chehab

media: video-i2c: use i2c regmap

Use regmap for i2c register access.  This simplifies register accesses and
chooses suitable access commands based on the functionality that the
adapter supports.
Acked-by: default avatarMatt Ranostay <matt.ranostay@konsulko.com>
Acked-by: default avatarSakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: default avatarAkinobu Mita <akinobu.mita@gmail.com>
Signed-off-by: default avatarHans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+samsung@kernel.org>
parent c764da98
...@@ -17,6 +17,7 @@ ...@@ -17,6 +17,7 @@
#include <linux/module.h> #include <linux/module.h>
#include <linux/mutex.h> #include <linux/mutex.h>
#include <linux/of_device.h> #include <linux/of_device.h>
#include <linux/regmap.h>
#include <linux/sched.h> #include <linux/sched.h>
#include <linux/slab.h> #include <linux/slab.h>
#include <linux/videodev2.h> #include <linux/videodev2.h>
...@@ -38,7 +39,7 @@ struct video_i2c_buffer { ...@@ -38,7 +39,7 @@ struct video_i2c_buffer {
}; };
struct video_i2c_data { struct video_i2c_data {
struct i2c_client *client; struct regmap *regmap;
const struct video_i2c_chip *chip; const struct video_i2c_chip *chip;
struct mutex lock; struct mutex lock;
spinlock_t slock; spinlock_t slock;
...@@ -62,6 +63,12 @@ static const struct v4l2_frmsize_discrete amg88xx_size = { ...@@ -62,6 +63,12 @@ static const struct v4l2_frmsize_discrete amg88xx_size = {
.height = 8, .height = 8,
}; };
static const struct regmap_config amg88xx_regmap_config = {
.reg_bits = 8,
.val_bits = 8,
.max_register = 0xff
};
struct video_i2c_chip { struct video_i2c_chip {
/* video dimensions */ /* video dimensions */
const struct v4l2_fmtdesc *format; const struct v4l2_fmtdesc *format;
...@@ -76,6 +83,8 @@ struct video_i2c_chip { ...@@ -76,6 +83,8 @@ struct video_i2c_chip {
/* pixel size in bits */ /* pixel size in bits */
unsigned int bpp; unsigned int bpp;
const struct regmap_config *regmap_config;
/* xfer function */ /* xfer function */
int (*xfer)(struct video_i2c_data *data, char *buf); int (*xfer)(struct video_i2c_data *data, char *buf);
...@@ -83,26 +92,16 @@ struct video_i2c_chip { ...@@ -83,26 +92,16 @@ struct video_i2c_chip {
int (*hwmon_init)(struct video_i2c_data *data); int (*hwmon_init)(struct video_i2c_data *data);
}; };
static int amg88xx_xfer(struct video_i2c_data *data, char *buf) /* Thermistor register */
{ #define AMG88XX_REG_TTHL 0x0e
struct i2c_client *client = data->client;
struct i2c_msg msg[2];
u8 reg = 0x80;
int ret;
msg[0].addr = client->addr;
msg[0].flags = 0;
msg[0].len = 1;
msg[0].buf = (char *)&reg;
msg[1].addr = client->addr; /* Temperature register */
msg[1].flags = I2C_M_RD; #define AMG88XX_REG_T01L 0x80
msg[1].len = data->chip->buffer_size;
msg[1].buf = (char *)buf;
ret = i2c_transfer(client->adapter, msg, 2); static int amg88xx_xfer(struct video_i2c_data *data, char *buf)
{
return (ret == 2) ? 0 : -EIO; return regmap_bulk_read(data->regmap, AMG88XX_REG_T01L, buf,
data->chip->buffer_size);
} }
#if IS_ENABLED(CONFIG_HWMON) #if IS_ENABLED(CONFIG_HWMON)
...@@ -133,12 +132,15 @@ static int amg88xx_read(struct device *dev, enum hwmon_sensor_types type, ...@@ -133,12 +132,15 @@ static int amg88xx_read(struct device *dev, enum hwmon_sensor_types type,
u32 attr, int channel, long *val) u32 attr, int channel, long *val)
{ {
struct video_i2c_data *data = dev_get_drvdata(dev); struct video_i2c_data *data = dev_get_drvdata(dev);
struct i2c_client *client = data->client; __le16 buf;
int tmp = i2c_smbus_read_word_data(client, 0x0e); int tmp;
if (tmp < 0) tmp = regmap_bulk_read(data->regmap, AMG88XX_REG_TTHL, &buf, 2);
if (tmp)
return tmp; return tmp;
tmp = le16_to_cpu(buf);
/* /*
* Check for sign bit, this isn't a two's complement value but an * Check for sign bit, this isn't a two's complement value but an
* absolute temperature that needs to be inverted in the case of being * absolute temperature that needs to be inverted in the case of being
...@@ -164,8 +166,9 @@ static const struct hwmon_chip_info amg88xx_chip_info = { ...@@ -164,8 +166,9 @@ static const struct hwmon_chip_info amg88xx_chip_info = {
static int amg88xx_hwmon_init(struct video_i2c_data *data) static int amg88xx_hwmon_init(struct video_i2c_data *data)
{ {
void *hwmon = devm_hwmon_device_register_with_info(&data->client->dev, struct device *dev = regmap_get_device(data->regmap);
"amg88xx", data, &amg88xx_chip_info, NULL); void *hwmon = devm_hwmon_device_register_with_info(dev, "amg88xx", data,
&amg88xx_chip_info, NULL);
return PTR_ERR_OR_ZERO(hwmon); return PTR_ERR_OR_ZERO(hwmon);
} }
...@@ -182,6 +185,7 @@ static const struct video_i2c_chip video_i2c_chip[] = { ...@@ -182,6 +185,7 @@ static const struct video_i2c_chip video_i2c_chip[] = {
.max_fps = 10, .max_fps = 10,
.buffer_size = 128, .buffer_size = 128,
.bpp = 16, .bpp = 16,
.regmap_config = &amg88xx_regmap_config,
.xfer = &amg88xx_xfer, .xfer = &amg88xx_xfer,
.hwmon_init = amg88xx_hwmon_init, .hwmon_init = amg88xx_hwmon_init,
}, },
...@@ -350,7 +354,8 @@ static int video_i2c_querycap(struct file *file, void *priv, ...@@ -350,7 +354,8 @@ static int video_i2c_querycap(struct file *file, void *priv,
struct v4l2_capability *vcap) struct v4l2_capability *vcap)
{ {
struct video_i2c_data *data = video_drvdata(file); struct video_i2c_data *data = video_drvdata(file);
struct i2c_client *client = data->client; struct device *dev = regmap_get_device(data->regmap);
struct i2c_client *client = to_i2c_client(dev);
strscpy(vcap->driver, data->v4l2_dev.name, sizeof(vcap->driver)); strscpy(vcap->driver, data->v4l2_dev.name, sizeof(vcap->driver));
strscpy(vcap->card, data->vdev.name, sizeof(vcap->card)); strscpy(vcap->card, data->vdev.name, sizeof(vcap->card));
...@@ -515,6 +520,7 @@ static void video_i2c_release(struct video_device *vdev) ...@@ -515,6 +520,7 @@ static void video_i2c_release(struct video_device *vdev)
v4l2_device_unregister(&data->v4l2_dev); v4l2_device_unregister(&data->v4l2_dev);
mutex_destroy(&data->lock); mutex_destroy(&data->lock);
mutex_destroy(&data->queue_lock); mutex_destroy(&data->queue_lock);
regmap_exit(data->regmap);
kfree(data); kfree(data);
} }
...@@ -537,13 +543,18 @@ static int video_i2c_probe(struct i2c_client *client, ...@@ -537,13 +543,18 @@ static int video_i2c_probe(struct i2c_client *client,
else else
goto error_free_device; goto error_free_device;
data->client = client; data->regmap = regmap_init_i2c(client, data->chip->regmap_config);
if (IS_ERR(data->regmap)) {
ret = PTR_ERR(data->regmap);
goto error_free_device;
}
v4l2_dev = &data->v4l2_dev; v4l2_dev = &data->v4l2_dev;
strscpy(v4l2_dev->name, VIDEO_I2C_DRIVER, sizeof(v4l2_dev->name)); strscpy(v4l2_dev->name, VIDEO_I2C_DRIVER, sizeof(v4l2_dev->name));
ret = v4l2_device_register(&client->dev, v4l2_dev); ret = v4l2_device_register(&client->dev, v4l2_dev);
if (ret < 0) if (ret < 0)
goto error_free_device; goto error_regmap_exit;
mutex_init(&data->lock); mutex_init(&data->lock);
mutex_init(&data->queue_lock); mutex_init(&data->queue_lock);
...@@ -602,6 +613,9 @@ static int video_i2c_probe(struct i2c_client *client, ...@@ -602,6 +613,9 @@ static int video_i2c_probe(struct i2c_client *client,
mutex_destroy(&data->lock); mutex_destroy(&data->lock);
mutex_destroy(&data->queue_lock); mutex_destroy(&data->queue_lock);
error_regmap_exit:
regmap_exit(data->regmap);
error_free_device: error_free_device:
kfree(data); kfree(data);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment