Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 261369
b: refs/heads/master
c: ddac5c1
h: refs/heads/master
i:
  261367: 0fdf19b
v: v3
  • Loading branch information
Hans Verkuil authored and Mauro Carvalho Chehab committed Jul 27, 2011
1 parent 25c58a6 commit 7993d1c
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 13 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 18d171badf47a436045589668f785b7d278f4e4d
refs/heads/master: ddac5c107942d9584a9f55701aad405b57618726
2 changes: 1 addition & 1 deletion trunk/drivers/media/radio/radio-wl1273.c
Original file line number Diff line number Diff line change
Expand Up @@ -1382,7 +1382,7 @@ static int wl1273_fm_g_volatile_ctrl(struct v4l2_ctrl *ctrl)

switch (ctrl->id) {
case V4L2_CID_TUNE_ANTENNA_CAPACITOR:
ctrl->cur.val = wl1273_fm_get_tx_ctune(radio);
ctrl->val = wl1273_fm_get_tx_ctune(radio);
break;

default:
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/media/radio/wl128x/fmdrv_v4l2.c
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ static int fm_g_volatile_ctrl(struct v4l2_ctrl *ctrl)

switch (ctrl->id) {
case V4L2_CID_TUNE_ANTENNA_CAPACITOR:
ctrl->cur.val = fm_tx_get_tune_cap_val(fmdev);
ctrl->val = fm_tx_get_tune_cap_val(fmdev);
break;
default:
fmwarn("%s: Unknown IOCTL: %d\n", __func__, ctrl->id);
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/media/video/saa7115.c
Original file line number Diff line number Diff line change
Expand Up @@ -757,8 +757,8 @@ static int saa711x_g_volatile_ctrl(struct v4l2_ctrl *ctrl)
switch (ctrl->id) {
case V4L2_CID_CHROMA_AGC:
/* chroma gain cluster */
if (state->agc->cur.val)
state->gain->cur.val =
if (state->agc->val)
state->gain->val =
saa711x_read(sd, R_0F_CHROMA_GAIN_CNTL) & 0x7f;
break;
}
Expand Down
52 changes: 44 additions & 8 deletions trunk/drivers/media/video/v4l2-ctrls.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,10 @@
#include <media/v4l2-ctrls.h>
#include <media/v4l2-dev.h>

#define has_op(master, op) \
(master->ops && master->ops->op)
#define call_op(master, op) \
((master->ops && master->ops->op) ? master->ops->op(master) : 0)
(has_op(master, op) ? master->ops->op(master) : 0)

/* Internal temporary helper struct, one for each v4l2_ext_control */
struct ctrl_helper {
Expand Down Expand Up @@ -626,6 +628,20 @@ static int new_to_user(struct v4l2_ext_control *c,
return 0;
}

static int ctrl_to_user(struct v4l2_ext_control *c,
struct v4l2_ctrl *ctrl)
{
if (ctrl->is_volatile)
return new_to_user(c, ctrl);
return cur_to_user(c, ctrl);
}

static int ctrl_is_volatile(struct v4l2_ext_control *c,
struct v4l2_ctrl *ctrl)
{
return ctrl->is_volatile;
}

/* Copy the new value to the current value. */
static void new_to_cur(struct v4l2_ctrl *ctrl)
{
Expand Down Expand Up @@ -1535,7 +1551,7 @@ int v4l2_g_ext_ctrls(struct v4l2_ctrl_handler *hdl, struct v4l2_ext_controls *cs
struct ctrl_helper helper[4];
struct ctrl_helper *helpers = helper;
int ret;
int i;
int i, j;

cs->error_idx = cs->count;
cs->ctrl_class = V4L2_CTRL_ID2CLASS(cs->ctrl_class);
Expand All @@ -1562,19 +1578,33 @@ int v4l2_g_ext_ctrls(struct v4l2_ctrl_handler *hdl, struct v4l2_ext_controls *cs
for (i = 0; !ret && i < cs->count; i++) {
struct v4l2_ctrl *ctrl = helpers[i].ctrl;
struct v4l2_ctrl *master = ctrl->cluster[0];
bool has_volatiles;

if (helpers[i].handled)
continue;

cs->error_idx = i;

/* Any volatile controls requested from this cluster? */
has_volatiles = ctrl->is_volatile;
if (!has_volatiles && has_op(master, g_volatile_ctrl) &&
master->ncontrols > 1)
has_volatiles = cluster_walk(i, cs, helpers,
ctrl_is_volatile);

v4l2_ctrl_lock(master);
/* g_volatile_ctrl will update the current control values */
if (ctrl->is_volatile)

/* g_volatile_ctrl will update the new control values */
if (has_volatiles) {
for (j = 0; j < master->ncontrols; j++)
cur_to_new(master->cluster[j]);
ret = call_op(master, g_volatile_ctrl);
/* If OK, then copy the current control values to the caller */
}
/* If OK, then copy the current (for non-volatile controls)
or the new (for volatile controls) control values to the
caller */
if (!ret)
ret = cluster_walk(i, cs, helpers, cur_to_user);
ret = cluster_walk(i, cs, helpers, ctrl_to_user);
v4l2_ctrl_unlock(master);
cluster_done(i, cs, helpers);
}
Expand All @@ -1596,15 +1626,21 @@ static int get_ctrl(struct v4l2_ctrl *ctrl, s32 *val)
{
struct v4l2_ctrl *master = ctrl->cluster[0];
int ret = 0;
int i;

if (ctrl->flags & V4L2_CTRL_FLAG_WRITE_ONLY)
return -EACCES;

v4l2_ctrl_lock(master);
/* g_volatile_ctrl will update the current control values */
if (ctrl->is_volatile)
if (ctrl->is_volatile) {
for (i = 0; i < master->ncontrols; i++)
cur_to_new(master->cluster[i]);
ret = call_op(master, g_volatile_ctrl);
*val = ctrl->cur.val;
*val = ctrl->val;
} else {
*val = ctrl->cur.val;
}
v4l2_ctrl_unlock(master);
return ret;
}
Expand Down

0 comments on commit 7993d1c

Please sign in to comment.