public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] media/v4l2-ctrls: Always run s_ctrl on volatile ctrls
@ 2015-02-17 11:02 Ricardo Ribalda Delgado
  2015-02-17 11:17 ` Hans Verkuil
  2015-02-17 12:03 ` Hans Verkuil
  0 siblings, 2 replies; 12+ messages in thread
From: Ricardo Ribalda Delgado @ 2015-02-17 11:02 UTC (permalink / raw)
  To: Hans Verkuil, Mauro Carvalho Chehab, Sylwester Nawrocki,
	Antti Palosaari, Sakari Ailus, linux-media, linux-kernel
  Cc: Ricardo Ribalda Delgado

Volatile controls can change their value outside the v4l-ctrl framework.

We should ignore the cached written value of the ctrl when evaluating if
we should run s_ctrl.

Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com>
---

I have a control that tells the user when there has been a external trigger
overrun. (Trigger while processing old image). This is a volatile control.

The user writes 0 to the control, to ack the error condition, and clear the
hardware flag.

Unfortunately, it only works one time, because the next time the user writes
a zero to the control cluster_changed returns false.

I think on volatile controls it is safer to run s_ctrl twice than missing a
valid s_ctrl.

I know I am abusing a bit the API for this :P, but I also believe that the
semantic here is a bit confusing.

 drivers/media/v4l2-core/v4l2-ctrls.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/media/v4l2-core/v4l2-ctrls.c b/drivers/media/v4l2-core/v4l2-ctrls.c
index 45c5b47..3d0c7f4 100644
--- a/drivers/media/v4l2-core/v4l2-ctrls.c
+++ b/drivers/media/v4l2-core/v4l2-ctrls.c
@@ -1605,7 +1605,7 @@ static int cluster_changed(struct v4l2_ctrl *master)
 
 	for (i = 0; i < master->ncontrols; i++) {
 		struct v4l2_ctrl *ctrl = master->cluster[i];
-		bool ctrl_changed = false;
+		bool ctrl_changed = ctrl->flags & V4L2_CTRL_FLAG_VOLATILE;
 
 		if (ctrl == NULL)
 			continue;
-- 
2.1.4


^ permalink raw reply related	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2015-02-17 15:14 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-17 11:02 [PATCH] media/v4l2-ctrls: Always run s_ctrl on volatile ctrls Ricardo Ribalda Delgado
2015-02-17 11:17 ` Hans Verkuil
2015-02-17 11:29   ` Ricardo Ribalda Delgado
2015-02-17 11:32   ` Sakari Ailus
2015-02-17 13:53     ` Jacek Anaszewski
2015-02-17 14:06       ` Sakari Ailus
2015-02-17 14:22         ` Jacek Anaszewski
2015-02-17 14:35           ` Sakari Ailus
2015-02-17 15:14             ` Jacek Anaszewski
2015-02-17 12:03 ` Hans Verkuil
2015-02-17 12:21   ` Ricardo Ribalda Delgado
2015-02-17 12:23     ` Hans Verkuil

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox