Commit 85644a9b authored by Paul Elder's avatar Paul Elder Committed by Mauro Carvalho Chehab

media: ov5640: Use runtime PM

Switch to using runtime PM for power management. Make it optional,
however, to support ACPI.
Signed-off-by: default avatarPaul Elder <paul.elder@ideasonboard.com>
Reviewed-by: default avatarLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: default avatarSakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@kernel.org>
parent 4b7444ff
...@@ -15,6 +15,7 @@ ...@@ -15,6 +15,7 @@
#include <linux/init.h> #include <linux/init.h>
#include <linux/module.h> #include <linux/module.h>
#include <linux/of_device.h> #include <linux/of_device.h>
#include <linux/pm_runtime.h>
#include <linux/regulator/consumer.h> #include <linux/regulator/consumer.h>
#include <linux/slab.h> #include <linux/slab.h>
#include <linux/types.h> #include <linux/types.h>
...@@ -447,8 +448,6 @@ struct ov5640_dev { ...@@ -447,8 +448,6 @@ struct ov5640_dev {
/* lock to protect all members below */ /* lock to protect all members below */
struct mutex lock; struct mutex lock;
int power_count;
struct v4l2_mbus_framefmt fmt; struct v4l2_mbus_framefmt fmt;
bool pending_fmt_change; bool pending_fmt_change;
...@@ -2696,39 +2695,24 @@ static int ov5640_set_power(struct ov5640_dev *sensor, bool on) ...@@ -2696,39 +2695,24 @@ static int ov5640_set_power(struct ov5640_dev *sensor, bool on)
return ret; return ret;
} }
/* --------------- Subdev Operations --------------- */ static int ov5640_sensor_suspend(struct device *dev)
static int ov5640_s_power(struct v4l2_subdev *sd, int on)
{ {
struct ov5640_dev *sensor = to_ov5640_dev(sd); struct v4l2_subdev *sd = dev_get_drvdata(dev);
int ret = 0; struct ov5640_dev *ov5640 = to_ov5640_dev(sd);
mutex_lock(&sensor->lock);
/*
* If the power count is modified from 0 to != 0 or from != 0 to 0,
* update the power state.
*/
if (sensor->power_count == !on) {
ret = ov5640_set_power(sensor, !!on);
if (ret)
goto out;
}
/* Update the power count. */ return ov5640_set_power(ov5640, false);
sensor->power_count += on ? 1 : -1; }
WARN_ON(sensor->power_count < 0);
out:
mutex_unlock(&sensor->lock);
if (on && !ret && sensor->power_count == 1) { static int ov5640_sensor_resume(struct device *dev)
/* restore controls */ {
ret = v4l2_ctrl_handler_setup(&sensor->ctrls.handler); struct v4l2_subdev *sd = dev_get_drvdata(dev);
} struct ov5640_dev *ov5640 = to_ov5640_dev(sd);
return ret; return ov5640_set_power(ov5640, true);
} }
/* --------------- Subdev Operations --------------- */
static int ov5640_try_frame_interval(struct ov5640_dev *sensor, static int ov5640_try_frame_interval(struct ov5640_dev *sensor,
struct v4l2_fract *fi, struct v4l2_fract *fi,
u32 width, u32 height) u32 width, u32 height)
...@@ -3314,6 +3298,9 @@ static int ov5640_g_volatile_ctrl(struct v4l2_ctrl *ctrl) ...@@ -3314,6 +3298,9 @@ static int ov5640_g_volatile_ctrl(struct v4l2_ctrl *ctrl)
/* v4l2_ctrl_lock() locks our own mutex */ /* v4l2_ctrl_lock() locks our own mutex */
if (!pm_runtime_get_if_in_use(&sensor->i2c_client->dev))
return 0;
switch (ctrl->id) { switch (ctrl->id) {
case V4L2_CID_AUTOGAIN: case V4L2_CID_AUTOGAIN:
val = ov5640_get_gain(sensor); val = ov5640_get_gain(sensor);
...@@ -3329,6 +3316,8 @@ static int ov5640_g_volatile_ctrl(struct v4l2_ctrl *ctrl) ...@@ -3329,6 +3316,8 @@ static int ov5640_g_volatile_ctrl(struct v4l2_ctrl *ctrl)
break; break;
} }
pm_runtime_put_autosuspend(&sensor->i2c_client->dev);
return 0; return 0;
} }
...@@ -3358,9 +3347,9 @@ static int ov5640_s_ctrl(struct v4l2_ctrl *ctrl) ...@@ -3358,9 +3347,9 @@ static int ov5640_s_ctrl(struct v4l2_ctrl *ctrl)
/* /*
* If the device is not powered up by the host driver do * If the device is not powered up by the host driver do
* not apply any controls to H/W at this time. Instead * not apply any controls to H/W at this time. Instead
* the controls will be restored right after power-up. * the controls will be restored at start streaming time.
*/ */
if (sensor->power_count == 0) if (!pm_runtime_get_if_in_use(&sensor->i2c_client->dev))
return 0; return 0;
switch (ctrl->id) { switch (ctrl->id) {
...@@ -3402,6 +3391,8 @@ static int ov5640_s_ctrl(struct v4l2_ctrl *ctrl) ...@@ -3402,6 +3391,8 @@ static int ov5640_s_ctrl(struct v4l2_ctrl *ctrl)
break; break;
} }
pm_runtime_put_autosuspend(&sensor->i2c_client->dev);
return ret; return ret;
} }
...@@ -3677,6 +3668,18 @@ static int ov5640_s_stream(struct v4l2_subdev *sd, int enable) ...@@ -3677,6 +3668,18 @@ static int ov5640_s_stream(struct v4l2_subdev *sd, int enable)
struct ov5640_dev *sensor = to_ov5640_dev(sd); struct ov5640_dev *sensor = to_ov5640_dev(sd);
int ret = 0; int ret = 0;
if (enable) {
ret = pm_runtime_resume_and_get(&sensor->i2c_client->dev);
if (ret < 0)
return ret;
ret = v4l2_ctrl_handler_setup(&sensor->ctrls.handler);
if (ret) {
pm_runtime_put(&sensor->i2c_client->dev);
return ret;
}
}
mutex_lock(&sensor->lock); mutex_lock(&sensor->lock);
if (sensor->streaming == !enable) { if (sensor->streaming == !enable) {
...@@ -3701,8 +3704,13 @@ static int ov5640_s_stream(struct v4l2_subdev *sd, int enable) ...@@ -3701,8 +3704,13 @@ static int ov5640_s_stream(struct v4l2_subdev *sd, int enable)
if (!ret) if (!ret)
sensor->streaming = enable; sensor->streaming = enable;
} }
out: out:
mutex_unlock(&sensor->lock); mutex_unlock(&sensor->lock);
if (!enable || ret)
pm_runtime_put_autosuspend(&sensor->i2c_client->dev);
return ret; return ret;
} }
...@@ -3724,7 +3732,6 @@ static int ov5640_init_cfg(struct v4l2_subdev *sd, ...@@ -3724,7 +3732,6 @@ static int ov5640_init_cfg(struct v4l2_subdev *sd,
} }
static const struct v4l2_subdev_core_ops ov5640_core_ops = { static const struct v4l2_subdev_core_ops ov5640_core_ops = {
.s_power = ov5640_s_power,
.log_status = v4l2_ctrl_subdev_log_status, .log_status = v4l2_ctrl_subdev_log_status,
.subscribe_event = v4l2_ctrl_subdev_subscribe_event, .subscribe_event = v4l2_ctrl_subdev_subscribe_event,
.unsubscribe_event = v4l2_event_subdev_unsubscribe, .unsubscribe_event = v4l2_event_subdev_unsubscribe,
...@@ -3770,26 +3777,20 @@ static int ov5640_check_chip_id(struct ov5640_dev *sensor) ...@@ -3770,26 +3777,20 @@ static int ov5640_check_chip_id(struct ov5640_dev *sensor)
int ret = 0; int ret = 0;
u16 chip_id; u16 chip_id;
ret = ov5640_set_power_on(sensor);
if (ret)
return ret;
ret = ov5640_read_reg16(sensor, OV5640_REG_CHIP_ID, &chip_id); ret = ov5640_read_reg16(sensor, OV5640_REG_CHIP_ID, &chip_id);
if (ret) { if (ret) {
dev_err(&client->dev, "%s: failed to read chip identifier\n", dev_err(&client->dev, "%s: failed to read chip identifier\n",
__func__); __func__);
goto power_off; return ret;
} }
if (chip_id != 0x5640) { if (chip_id != 0x5640) {
dev_err(&client->dev, "%s: wrong chip identifier, expected 0x5640, got 0x%x\n", dev_err(&client->dev, "%s: wrong chip identifier, expected 0x5640, got 0x%x\n",
__func__, chip_id); __func__, chip_id);
ret = -ENXIO; return -ENXIO;
} }
power_off: return 0;
ov5640_set_power_off(sensor);
return ret;
} }
static int ov5640_probe(struct i2c_client *client) static int ov5640_probe(struct i2c_client *client)
...@@ -3880,26 +3881,43 @@ static int ov5640_probe(struct i2c_client *client) ...@@ -3880,26 +3881,43 @@ static int ov5640_probe(struct i2c_client *client)
ret = ov5640_get_regulators(sensor); ret = ov5640_get_regulators(sensor);
if (ret) if (ret)
return ret; goto entity_cleanup;
mutex_init(&sensor->lock); mutex_init(&sensor->lock);
ret = ov5640_check_chip_id(sensor); ret = ov5640_init_controls(sensor);
if (ret) if (ret)
goto entity_cleanup; goto entity_cleanup;
ret = ov5640_init_controls(sensor); ret = ov5640_sensor_resume(dev);
if (ret) if (ret) {
dev_err(dev, "failed to power on\n");
goto entity_cleanup; goto entity_cleanup;
}
pm_runtime_set_active(dev);
pm_runtime_get_noresume(dev);
pm_runtime_enable(dev);
ret = ov5640_check_chip_id(sensor);
if (ret)
goto err_pm_runtime;
ret = v4l2_async_register_subdev_sensor(&sensor->sd); ret = v4l2_async_register_subdev_sensor(&sensor->sd);
if (ret) if (ret)
goto free_ctrls; goto err_pm_runtime;
pm_runtime_set_autosuspend_delay(dev, 1000);
pm_runtime_use_autosuspend(dev);
pm_runtime_put_autosuspend(dev);
return 0; return 0;
free_ctrls: err_pm_runtime:
pm_runtime_put_noidle(dev);
pm_runtime_disable(dev);
v4l2_ctrl_handler_free(&sensor->ctrls.handler); v4l2_ctrl_handler_free(&sensor->ctrls.handler);
ov5640_sensor_suspend(dev);
entity_cleanup: entity_cleanup:
media_entity_cleanup(&sensor->sd.entity); media_entity_cleanup(&sensor->sd.entity);
mutex_destroy(&sensor->lock); mutex_destroy(&sensor->lock);
...@@ -3910,6 +3928,12 @@ static int ov5640_remove(struct i2c_client *client) ...@@ -3910,6 +3928,12 @@ static int ov5640_remove(struct i2c_client *client)
{ {
struct v4l2_subdev *sd = i2c_get_clientdata(client); struct v4l2_subdev *sd = i2c_get_clientdata(client);
struct ov5640_dev *sensor = to_ov5640_dev(sd); struct ov5640_dev *sensor = to_ov5640_dev(sd);
struct device *dev = &client->dev;
pm_runtime_disable(dev);
if (!pm_runtime_status_suspended(dev))
ov5640_sensor_suspend(dev);
pm_runtime_set_suspended(dev);
v4l2_async_unregister_subdev(&sensor->sd); v4l2_async_unregister_subdev(&sensor->sd);
media_entity_cleanup(&sensor->sd.entity); media_entity_cleanup(&sensor->sd.entity);
...@@ -3919,6 +3943,10 @@ static int ov5640_remove(struct i2c_client *client) ...@@ -3919,6 +3943,10 @@ static int ov5640_remove(struct i2c_client *client)
return 0; return 0;
} }
static const struct dev_pm_ops ov5640_pm_ops = {
SET_RUNTIME_PM_OPS(ov5640_sensor_suspend, ov5640_sensor_resume, NULL)
};
static const struct i2c_device_id ov5640_id[] = { static const struct i2c_device_id ov5640_id[] = {
{"ov5640", 0}, {"ov5640", 0},
{}, {},
...@@ -3935,6 +3963,7 @@ static struct i2c_driver ov5640_i2c_driver = { ...@@ -3935,6 +3963,7 @@ static struct i2c_driver ov5640_i2c_driver = {
.driver = { .driver = {
.name = "ov5640", .name = "ov5640",
.of_match_table = ov5640_dt_ids, .of_match_table = ov5640_dt_ids,
.pm = &ov5640_pm_ops,
}, },
.id_table = ov5640_id, .id_table = ov5640_id,
.probe_new = ov5640_probe, .probe_new = ov5640_probe,
......
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