V4L/DVB (13656): tw9910: tw9910_set_hsync clean up
[deliverable/linux.git] / drivers / media / video / bt866.c
CommitLineData
fbe60daa
MS
1/*
2 bt866 - BT866 Digital Video Encoder (Rockwell Part)
3
4 Copyright (C) 1999 Mike Bernson <mike@mlb.org>
5 Copyright (C) 1998 Dave Perks <dperks@ibm.net>
6
7 Modifications for LML33/DC10plus unified driver
8 Copyright (C) 2000 Serguei Miridonov <mirsev@cicese.mx>
9
10 This code was modify/ported from the saa7111 driver written
11 by Dave Perks.
12
13 This code was adapted for the bt866 by Christer Weinigel and ported
14 to 2.6 by Martin Samuelsson.
15
16 This program is free software; you can redistribute it and/or modify
17 it under the terms of the GNU General Public License as published by
18 the Free Software Foundation; either version 2 of the License, or
19 (at your option) any later version.
20
21 This program is distributed in the hope that it will be useful,
22 but WITHOUT ANY WARRANTY; without even the implied warranty of
23 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 GNU General Public License for more details.
25
26 You should have received a copy of the GNU General Public License
27 along with this program; if not, write to the Free Software
28 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
29*/
30
31#include <linux/module.h>
fbe60daa 32#include <linux/types.h>
c18fdcf6
HV
33#include <linux/ioctl.h>
34#include <asm/uaccess.h>
fbe60daa 35#include <linux/i2c.h>
c18fdcf6 36#include <linux/i2c-id.h>
8e4e1d80
HV
37#include <linux/videodev2.h>
38#include <media/v4l2-device.h>
39#include <media/v4l2-chip-ident.h>
2d26698e 40#include <media/v4l2-i2c-drv.h>
fbe60daa 41
c18fdcf6
HV
42MODULE_DESCRIPTION("Brooktree-866 video encoder driver");
43MODULE_AUTHOR("Mike Bernson & Dave Perks");
fbe60daa
MS
44MODULE_LICENSE("GPL");
45
c18fdcf6
HV
46static int debug;
47module_param(debug, int, 0);
48MODULE_PARM_DESC(debug, "Debug level (0-1)");
fbe60daa 49
8e4e1d80 50
fbe60daa
MS
51/* ----------------------------------------------------------------------- */
52
53struct bt866 {
8e4e1d80 54 struct v4l2_subdev sd;
c18fdcf6 55 u8 reg[256];
fbe60daa
MS
56};
57
8e4e1d80 58static inline struct bt866 *to_bt866(struct v4l2_subdev *sd)
c18fdcf6 59{
8e4e1d80
HV
60 return container_of(sd, struct bt866, sd);
61}
62
63static int bt866_write(struct bt866 *encoder, u8 subaddr, u8 data)
64{
65 struct i2c_client *client = v4l2_get_subdevdata(&encoder->sd);
c18fdcf6
HV
66 u8 buffer[2];
67 int err;
68
69 buffer[0] = subaddr;
70 buffer[1] = data;
71
72 encoder->reg[subaddr] = data;
73
74 v4l_dbg(1, debug, client, "write 0x%02x = 0x%02x\n", subaddr, data);
75
76 for (err = 0; err < 3;) {
77 if (i2c_master_send(client, buffer, 2) == 2)
78 break;
79 err++;
80 v4l_warn(client, "error #%d writing to 0x%02x\n",
81 err, subaddr);
82 schedule_timeout_interruptible(msecs_to_jiffies(100));
83 }
84 if (err == 3) {
85 v4l_warn(client, "giving up\n");
86 return -1;
87 }
88
89 return 0;
90}
fbe60daa 91
8e4e1d80 92static int bt866_s_std_output(struct v4l2_subdev *sd, v4l2_std_id std)
fbe60daa 93{
cc5cef8e 94 v4l2_dbg(1, debug, sd, "set norm %llx\n", (unsigned long long)std);
fbe60daa 95
8e4e1d80
HV
96 /* Only PAL supported by this driver at the moment! */
97 if (!(std & V4L2_STD_NTSC))
98 return -EINVAL;
99 return 0;
100}
fbe60daa 101
5325b427
HV
102static int bt866_s_routing(struct v4l2_subdev *sd,
103 u32 input, u32 output, u32 config)
8e4e1d80
HV
104{
105 static const __u8 init[] = {
106 0xc8, 0xcc, /* CRSCALE */
107 0xca, 0x91, /* CBSCALE */
108 0xcc, 0x24, /* YC16 | OSDNUM */
109 0xda, 0x00, /* */
110 0xdc, 0x24, /* SETMODE | PAL */
111 0xde, 0x02, /* EACTIVE */
112
113 /* overlay colors */
114 0x70, 0xEB, 0x90, 0x80, 0xB0, 0x80, /* white */
115 0x72, 0xA2, 0x92, 0x8E, 0xB2, 0x2C, /* yellow */
116 0x74, 0x83, 0x94, 0x2C, 0xB4, 0x9C, /* cyan */
117 0x76, 0x70, 0x96, 0x3A, 0xB6, 0x48, /* green */
118 0x78, 0x54, 0x98, 0xC6, 0xB8, 0xB8, /* magenta */
119 0x7A, 0x41, 0x9A, 0xD4, 0xBA, 0x64, /* red */
120 0x7C, 0x23, 0x9C, 0x72, 0xBC, 0xD4, /* blue */
121 0x7E, 0x10, 0x9E, 0x80, 0xBE, 0x80, /* black */
122
123 0x60, 0xEB, 0x80, 0x80, 0xc0, 0x80, /* white */
124 0x62, 0xA2, 0x82, 0x8E, 0xc2, 0x2C, /* yellow */
125 0x64, 0x83, 0x84, 0x2C, 0xc4, 0x9C, /* cyan */
126 0x66, 0x70, 0x86, 0x3A, 0xc6, 0x48, /* green */
127 0x68, 0x54, 0x88, 0xC6, 0xc8, 0xB8, /* magenta */
128 0x6A, 0x41, 0x8A, 0xD4, 0xcA, 0x64, /* red */
129 0x6C, 0x23, 0x8C, 0x72, 0xcC, 0xD4, /* blue */
130 0x6E, 0x10, 0x8E, 0x80, 0xcE, 0x80, /* black */
131 };
132 struct bt866 *encoder = to_bt866(sd);
133 u8 val;
134 int i;
135
136 for (i = 0; i < ARRAY_SIZE(init) / 2; i += 2)
137 bt866_write(encoder, init[i], init[i+1]);
138
139 val = encoder->reg[0xdc];
140
5325b427 141 if (input == 0)
8e4e1d80
HV
142 val |= 0x40; /* CBSWAP */
143 else
144 val &= ~0x40; /* !CBSWAP */
145
146 bt866_write(encoder, 0xdc, val);
147
148 val = encoder->reg[0xcc];
5325b427 149 if (input == 2)
8e4e1d80
HV
150 val |= 0x01; /* OSDBAR */
151 else
152 val &= ~0x01; /* !OSDBAR */
153 bt866_write(encoder, 0xcc, val);
154
5325b427 155 v4l2_dbg(1, debug, sd, "set input %d\n", input);
8e4e1d80 156
5325b427 157 switch (input) {
8e4e1d80
HV
158 case 0:
159 case 1:
160 case 2:
c18fdcf6 161 break;
8e4e1d80
HV
162 default:
163 return -EINVAL;
fbe60daa 164 }
8e4e1d80
HV
165 return 0;
166}
fbe60daa 167
8e4e1d80
HV
168#if 0
169/* Code to setup square pixels, might be of some use in the future,
170 but is currently unused. */
171 val = encoder->reg[0xdc];
172 if (*iarg)
173 val |= 1; /* SQUARE */
174 else
175 val &= ~1; /* !SQUARE */
176 bt866_write(client, 0xdc, val);
177#endif
178
179static int bt866_g_chip_ident(struct v4l2_subdev *sd, struct v4l2_dbg_chip_ident *chip)
180{
181 struct i2c_client *client = v4l2_get_subdevdata(sd);
fbe60daa 182
8e4e1d80
HV
183 return v4l2_chip_ident_i2c_client(client, chip, V4L2_IDENT_BT866, 0);
184}
fbe60daa 185
8e4e1d80 186/* ----------------------------------------------------------------------- */
fbe60daa 187
8e4e1d80
HV
188static const struct v4l2_subdev_core_ops bt866_core_ops = {
189 .g_chip_ident = bt866_g_chip_ident,
190};
fbe60daa 191
8e4e1d80
HV
192static const struct v4l2_subdev_video_ops bt866_video_ops = {
193 .s_std_output = bt866_s_std_output,
194 .s_routing = bt866_s_routing,
195};
fbe60daa 196
8e4e1d80
HV
197static const struct v4l2_subdev_ops bt866_ops = {
198 .core = &bt866_core_ops,
199 .video = &bt866_video_ops,
200};
fbe60daa 201
c18fdcf6
HV
202static int bt866_probe(struct i2c_client *client,
203 const struct i2c_device_id *id)
fbe60daa
MS
204{
205 struct bt866 *encoder;
8e4e1d80 206 struct v4l2_subdev *sd;
fbe60daa 207
c18fdcf6
HV
208 v4l_info(client, "chip found @ 0x%x (%s)\n",
209 client->addr << 1, client->adapter->name);
fbe60daa
MS
210
211 encoder = kzalloc(sizeof(*encoder), GFP_KERNEL);
c18fdcf6 212 if (encoder == NULL)
fbe60daa 213 return -ENOMEM;
8e4e1d80
HV
214 sd = &encoder->sd;
215 v4l2_i2c_subdev_init(sd, client, &bt866_ops);
fbe60daa
MS
216 return 0;
217}
218
c18fdcf6 219static int bt866_remove(struct i2c_client *client)
fbe60daa 220{
8e4e1d80
HV
221 struct v4l2_subdev *sd = i2c_get_clientdata(client);
222
223 v4l2_device_unregister_subdev(sd);
224 kfree(to_bt866(sd));
fbe60daa
MS
225 return 0;
226}
227
c18fdcf6
HV
228static const struct i2c_device_id bt866_id[] = {
229 { "bt866", 0 },
230 { }
231};
232MODULE_DEVICE_TABLE(i2c, bt866_id);
233
234static struct v4l2_i2c_driver_data v4l2_i2c_data = {
235 .name = "bt866",
c18fdcf6
HV
236 .probe = bt866_probe,
237 .remove = bt866_remove,
c18fdcf6
HV
238 .id_table = bt866_id,
239};
This page took 0.471894 seconds and 5 git commands to generate.