diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2009-02-18 10:23:38 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-03-30 11:42:54 -0400 |
commit | 9040320a899f41cc1978bdd4b6867b172da9b021 (patch) | |
tree | 8e7bbc1e13411353221e9a29205c7defcc1e9e50 /drivers/media/video/saa7185.c | |
parent | 674a323218ab0b0be100b51c251a72787b5c9e3a (diff) |
V4L/DVB (10701): saa7185: add colorbar support.
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/saa7185.c')
-rw-r--r-- | drivers/media/video/saa7185.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/drivers/media/video/saa7185.c b/drivers/media/video/saa7185.c index 6debb65152ee..8d06bb312c55 100644 --- a/drivers/media/video/saa7185.c +++ b/drivers/media/video/saa7185.c | |||
@@ -281,6 +281,8 @@ static int saa7185_command(struct i2c_client *client, unsigned cmd, void *arg) | |||
281 | 281 | ||
282 | switch (*iarg) { | 282 | switch (*iarg) { |
283 | case 0: | 283 | case 0: |
284 | /* turn off colorbar */ | ||
285 | saa7185_write(client, 0x3a, 0x0f); | ||
284 | /* Switch RTCE to 1 */ | 286 | /* Switch RTCE to 1 */ |
285 | saa7185_write(client, 0x61, | 287 | saa7185_write(client, 0x61, |
286 | (encoder->reg[0x61] & 0xf7) | 0x08); | 288 | (encoder->reg[0x61] & 0xf7) | 0x08); |
@@ -288,6 +290,8 @@ static int saa7185_command(struct i2c_client *client, unsigned cmd, void *arg) | |||
288 | break; | 290 | break; |
289 | 291 | ||
290 | case 1: | 292 | case 1: |
293 | /* turn off colorbar */ | ||
294 | saa7185_write(client, 0x3a, 0x0f); | ||
291 | /* Switch RTCE to 0 */ | 295 | /* Switch RTCE to 0 */ |
292 | saa7185_write(client, 0x61, | 296 | saa7185_write(client, 0x61, |
293 | (encoder->reg[0x61] & 0xf7) | 0x00); | 297 | (encoder->reg[0x61] & 0xf7) | 0x00); |
@@ -295,6 +299,16 @@ static int saa7185_command(struct i2c_client *client, unsigned cmd, void *arg) | |||
295 | saa7185_write(client, 0x6e, 0x00); | 299 | saa7185_write(client, 0x6e, 0x00); |
296 | break; | 300 | break; |
297 | 301 | ||
302 | case 2: | ||
303 | /* turn on colorbar */ | ||
304 | saa7185_write(client, 0x3a, 0x8f); | ||
305 | /* Switch RTCE to 0 */ | ||
306 | saa7185_write(client, 0x61, | ||
307 | (encoder->reg[0x61] & 0xf7) | 0x08); | ||
308 | /* SW: a slight sync problem... */ | ||
309 | saa7185_write(client, 0x6e, 0x01); | ||
310 | break; | ||
311 | |||
298 | default: | 312 | default: |
299 | return -EINVAL; | 313 | return -EINVAL; |
300 | } | 314 | } |