diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2008-12-19 05:18:38 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2008-12-30 06:39:25 -0500 |
commit | 77587c5627aab50636ea0f93c28d2013cd0b7004 (patch) | |
tree | 948f73d3d392041cc2c97e5d82ffe1dcde8665cd /drivers/media/video/bt8xx/bt832.c | |
parent | 49dd1315fae94ef6161f72c7be961560d3309f17 (diff) |
V4L/DVB (9940): bt832: remove this driver
The bt832 i2c driver was never used or even compiled and is no longer
maintained. It is now removed completely.
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/bt8xx/bt832.c')
-rw-r--r-- | drivers/media/video/bt8xx/bt832.c | 274 |
1 files changed, 0 insertions, 274 deletions
diff --git a/drivers/media/video/bt8xx/bt832.c b/drivers/media/video/bt8xx/bt832.c deleted file mode 100644 index 216fc9680e80..000000000000 --- a/drivers/media/video/bt8xx/bt832.c +++ /dev/null | |||
@@ -1,274 +0,0 @@ | |||
1 | /* Driver for Bt832 CMOS Camera Video Processor | ||
2 | i2c-addresses: 0x88 or 0x8a | ||
3 | |||
4 | The BT832 interfaces to a Quartzsight Digital Camera (352x288, 25 or 30 fps) | ||
5 | via a 9 pin connector ( 4-wire SDATA, 2-wire i2c, SCLK, VCC, GND). | ||
6 | It outputs an 8-bit 4:2:2 YUV or YCrCb video signal which can be directly | ||
7 | connected to bt848/bt878 GPIO pins on this purpose. | ||
8 | (see: VLSI Vision Ltd. www.vvl.co.uk for camera datasheets) | ||
9 | |||
10 | Supported Cards: | ||
11 | - Pixelview Rev.4E: 0x8a | ||
12 | GPIO 0x400000 toggles Bt832 RESET, and the chip changes to i2c 0x88 ! | ||
13 | |||
14 | (c) Gunther Mayer, 2002 | ||
15 | |||
16 | STATUS: | ||
17 | - detect chip and hexdump | ||
18 | - reset chip and leave low power mode | ||
19 | - detect camera present | ||
20 | |||
21 | TODO: | ||
22 | - make it work (find correct setup for Bt832 and Bt878) | ||
23 | */ | ||
24 | |||
25 | #include <linux/module.h> | ||
26 | #include <linux/kernel.h> | ||
27 | #include <linux/i2c.h> | ||
28 | #include <linux/types.h> | ||
29 | #include <linux/videodev.h> | ||
30 | #include <linux/init.h> | ||
31 | #include <linux/errno.h> | ||
32 | #include <linux/slab.h> | ||
33 | #include <media/v4l2-common.h> | ||
34 | |||
35 | #include "bttv.h" | ||
36 | #include "bt832.h" | ||
37 | |||
38 | MODULE_LICENSE("GPL"); | ||
39 | |||
40 | /* Addresses to scan */ | ||
41 | static unsigned short normal_i2c[] = { I2C_ADDR_BT832_ALT1>>1, I2C_ADDR_BT832_ALT2>>1, | ||
42 | I2C_CLIENT_END }; | ||
43 | I2C_CLIENT_INSMOD; | ||
44 | |||
45 | int debug; /* debug output */ | ||
46 | module_param(debug, int, 0644); | ||
47 | |||
48 | /* ---------------------------------------------------------------------- */ | ||
49 | |||
50 | static int bt832_detach(struct i2c_client *client); | ||
51 | |||
52 | |||
53 | static struct i2c_driver driver; | ||
54 | static struct i2c_client client_template; | ||
55 | |||
56 | struct bt832 { | ||
57 | struct i2c_client client; | ||
58 | }; | ||
59 | |||
60 | int bt832_hexdump(struct i2c_client *i2c_client_s, unsigned char *buf) | ||
61 | { | ||
62 | int i,rc; | ||
63 | buf[0]=0x80; // start at register 0 with auto-increment | ||
64 | if (1 != (rc = i2c_master_send(i2c_client_s,buf,1))) | ||
65 | v4l_err(i2c_client_s,"i2c i/o error: rc == %d (should be 1)\n",rc); | ||
66 | |||
67 | for(i=0;i<65;i++) | ||
68 | buf[i]=0; | ||
69 | if (65 != (rc=i2c_master_recv(i2c_client_s,buf,65))) | ||
70 | v4l_err(i2c_client_s,"i2c i/o error: rc == %d (should be 65)\n",rc); | ||
71 | |||
72 | // Note: On READ the first byte is the current index | ||
73 | // (e.g. 0x80, what we just wrote) | ||
74 | |||
75 | if(debug>1) { | ||
76 | int i; | ||
77 | v4l_dbg(2, debug,i2c_client_s,"hexdump:"); | ||
78 | for(i=1;i<65;i++) { | ||
79 | if(i!=1) { | ||
80 | if(((i-1)%8)==0) printk(" "); | ||
81 | if(((i-1)%16)==0) { | ||
82 | printk("\n"); | ||
83 | v4l_dbg(2, debug,i2c_client_s,"hexdump:"); | ||
84 | } | ||
85 | } | ||
86 | printk(" %02x",buf[i]); | ||
87 | } | ||
88 | printk("\n"); | ||
89 | } | ||
90 | return 0; | ||
91 | } | ||
92 | |||
93 | // Return: 1 (is a bt832), 0 (No bt832 here) | ||
94 | int bt832_init(struct i2c_client *i2c_client_s) | ||
95 | { | ||
96 | unsigned char *buf; | ||
97 | int rc; | ||
98 | |||
99 | buf=kmalloc(65,GFP_KERNEL); | ||
100 | if (!buf) { | ||
101 | v4l_err(&t->client, | ||
102 | "Unable to allocate memory. Detaching.\n"); | ||
103 | return 0; | ||
104 | } | ||
105 | bt832_hexdump(i2c_client_s,buf); | ||
106 | |||
107 | if(buf[0x40] != 0x31) { | ||
108 | v4l_err(i2c_client_s,"This i2c chip is no bt832 (id=%02x). Detaching.\n",buf[0x40]); | ||
109 | kfree(buf); | ||
110 | return 0; | ||
111 | } | ||
112 | |||
113 | v4l_err(i2c_client_s,"Write 0 tp VPSTATUS\n"); | ||
114 | buf[0]=BT832_VP_STATUS; // Reg.52 | ||
115 | buf[1]= 0x00; | ||
116 | if (2 != (rc = i2c_master_send(i2c_client_s,buf,2))) | ||
117 | v4l_err(i2c_client_s,"i2c i/o error VPS: rc == %d (should be 2)\n",rc); | ||
118 | |||
119 | bt832_hexdump(i2c_client_s,buf); | ||
120 | |||
121 | |||
122 | // Leave low power mode: | ||
123 | v4l_err(i2c_client_s,"leave low power mode.\n"); | ||
124 | buf[0]=BT832_CAM_SETUP0; //0x39 57 | ||
125 | buf[1]=0x08; | ||
126 | if (2 != (rc = i2c_master_send(i2c_client_s,buf,2))) | ||
127 | v4l_err(i2c_client_s,"i2c i/o error LLPM: rc == %d (should be 2)\n",rc); | ||
128 | |||
129 | bt832_hexdump(i2c_client_s,buf); | ||
130 | |||
131 | v4l_info(i2c_client_s,"Write 0 tp VPSTATUS\n"); | ||
132 | buf[0]=BT832_VP_STATUS; // Reg.52 | ||
133 | buf[1]= 0x00; | ||
134 | if (2 != (rc = i2c_master_send(i2c_client_s,buf,2))) | ||
135 | v4l_err(i2c_client_s,"i2c i/o error VPS: rc == %d (should be 2)\n",rc); | ||
136 | |||
137 | bt832_hexdump(i2c_client_s,buf); | ||
138 | |||
139 | |||
140 | // Enable Output | ||
141 | v4l_info(i2c_client_s,"Enable Output\n"); | ||
142 | buf[0]=BT832_VP_CONTROL1; // Reg.40 | ||
143 | buf[1]= 0x27 & (~0x01); // Default | !skip | ||
144 | if (2 != (rc = i2c_master_send(i2c_client_s,buf,2))) | ||
145 | v4l_err(i2c_client_s,"i2c i/o error EO: rc == %d (should be 2)\n",rc); | ||
146 | |||
147 | bt832_hexdump(i2c_client_s,buf); | ||
148 | |||
149 | |||
150 | // for testing (even works when no camera attached) | ||
151 | v4l_info(i2c_client_s,"*** Generate NTSC M Bars *****\n"); | ||
152 | buf[0]=BT832_VP_TESTCONTROL0; // Reg. 42 | ||
153 | buf[1]=3; // Generate NTSC System M bars, Generate Frame timing internally | ||
154 | if (2 != (rc = i2c_master_send(i2c_client_s,buf,2))) | ||
155 | v4l_info(i2c_client_s,"i2c i/o error MBAR: rc == %d (should be 2)\n",rc); | ||
156 | |||
157 | v4l_info(i2c_client_s,"Camera Present: %s\n", | ||
158 | (buf[1+BT832_CAM_STATUS] & BT832_56_CAMERA_PRESENT) ? "yes":"no"); | ||
159 | |||
160 | bt832_hexdump(i2c_client_s,buf); | ||
161 | kfree(buf); | ||
162 | return 1; | ||
163 | } | ||
164 | |||
165 | |||
166 | |||
167 | static int bt832_attach(struct i2c_adapter *adap, int addr, int kind) | ||
168 | { | ||
169 | struct bt832 *t; | ||
170 | |||
171 | client_template.adapter = adap; | ||
172 | client_template.addr = addr; | ||
173 | |||
174 | if (NULL == (t = kzalloc(sizeof(*t), GFP_KERNEL))) | ||
175 | return -ENOMEM; | ||
176 | t->client = client_template; | ||
177 | i2c_set_clientdata(&t->client, t); | ||
178 | i2c_attach_client(&t->client); | ||
179 | |||
180 | v4l_info(&t->client,"chip found @ 0x%x\n", addr<<1); | ||
181 | |||
182 | if(! bt832_init(&t->client)) { | ||
183 | bt832_detach(&t->client); | ||
184 | return -1; | ||
185 | } | ||
186 | |||
187 | return 0; | ||
188 | } | ||
189 | |||
190 | static int bt832_probe(struct i2c_adapter *adap) | ||
191 | { | ||
192 | if (adap->class & I2C_CLASS_TV_ANALOG) | ||
193 | return i2c_probe(adap, &addr_data, bt832_attach); | ||
194 | return 0; | ||
195 | } | ||
196 | |||
197 | static int bt832_detach(struct i2c_client *client) | ||
198 | { | ||
199 | struct bt832 *t = i2c_get_clientdata(client); | ||
200 | |||
201 | v4l_info(&t->client,"dettach\n"); | ||
202 | i2c_detach_client(client); | ||
203 | kfree(t); | ||
204 | return 0; | ||
205 | } | ||
206 | |||
207 | static int | ||
208 | bt832_command(struct i2c_client *client, unsigned int cmd, void *arg) | ||
209 | { | ||
210 | struct bt832 *t = i2c_get_clientdata(client); | ||
211 | |||
212 | if (debug>1) | ||
213 | v4l_i2c_print_ioctl(&t->client,cmd); | ||
214 | |||
215 | switch (cmd) { | ||
216 | case BT832_HEXDUMP: { | ||
217 | unsigned char *buf; | ||
218 | buf = kmalloc(65, GFP_KERNEL); | ||
219 | if (!buf) { | ||
220 | v4l_err(&t->client, | ||
221 | "Unable to allocate memory\n"); | ||
222 | break; | ||
223 | } | ||
224 | bt832_hexdump(&t->client,buf); | ||
225 | kfree(buf); | ||
226 | } | ||
227 | break; | ||
228 | case BT832_REATTACH: | ||
229 | v4l_info(&t->client,"re-attach\n"); | ||
230 | i2c_del_driver(&driver); | ||
231 | i2c_add_driver(&driver); | ||
232 | break; | ||
233 | } | ||
234 | return 0; | ||
235 | } | ||
236 | |||
237 | /* ----------------------------------------------------------------------- */ | ||
238 | |||
239 | static struct i2c_driver driver = { | ||
240 | .driver = { | ||
241 | .name = "bt832", | ||
242 | }, | ||
243 | .id = 0, /* FIXME */ | ||
244 | .attach_adapter = bt832_probe, | ||
245 | .detach_client = bt832_detach, | ||
246 | .command = bt832_command, | ||
247 | }; | ||
248 | static struct i2c_client client_template = | ||
249 | { | ||
250 | .name = "bt832", | ||
251 | .driver = &driver, | ||
252 | }; | ||
253 | |||
254 | |||
255 | static int __init bt832_init_module(void) | ||
256 | { | ||
257 | return i2c_add_driver(&driver); | ||
258 | } | ||
259 | |||
260 | static void __exit bt832_cleanup_module(void) | ||
261 | { | ||
262 | i2c_del_driver(&driver); | ||
263 | } | ||
264 | |||
265 | module_init(bt832_init_module); | ||
266 | module_exit(bt832_cleanup_module); | ||
267 | |||
268 | /* | ||
269 | * Overrides for Emacs so that we follow Linus's tabbing style. | ||
270 | * --------------------------------------------------------------------------- | ||
271 | * Local variables: | ||
272 | * c-basic-offset: 8 | ||
273 | * End: | ||
274 | */ | ||