]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - drivers/media/video/saa5246a.c
V4L/DVB (8613): v4l: move BKL down to the driver level.
[linux-2.6-omap-h63xx.git] / drivers / media / video / saa5246a.c
1 /*
2  * Driver for the SAA5246A or SAA5281 Teletext (=Videotext) decoder chips from
3  * Philips.
4  *
5  * Only capturing of Teletext pages is tested. The videotext chips also have a
6  * TV output but my hardware doesn't use it. For this reason this driver does
7  * not support changing any TV display settings.
8  *
9  * Copyright (C) 2004 Michael Geng <linux@MichaelGeng.de>
10  *
11  * Derived from
12  *
13  * saa5249 driver
14  * Copyright (C) 1998 Richard Guenther
15  * <richard.guenther@student.uni-tuebingen.de>
16  *
17  * with changes by
18  * Alan Cox <Alan.Cox@linux.org>
19  *
20  * and
21  *
22  * vtx.c
23  * Copyright (C) 1994-97 Martin Buck  <martin-2.buck@student.uni-ulm.de>
24  *
25  * This program is free software; you can redistribute it and/or modify
26  * it under the terms of the GNU General Public License as published by
27  * the Free Software Foundation; either version 2 of the License, or
28  * (at your option) any later version.
29  *
30  * This program is distributed in the hope that it will be useful,
31  * but WITHOUT ANY WARRANTY; without even the implied warranty of
32  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
33  * GNU General Public License for more details.
34  *
35  * You should have received a copy of the GNU General Public License
36  * along with this program; if not, write to the Free Software
37  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
38  * USA.
39  */
40
41 #include <linux/module.h>
42 #include <linux/kernel.h>
43 #include <linux/mm.h>
44 #include <linux/init.h>
45 #include <linux/i2c.h>
46 #include <linux/videotext.h>
47 #include <linux/smp_lock.h>
48 #include <linux/videodev.h>
49 #include <media/v4l2-common.h>
50 #include <media/v4l2-ioctl.h>
51 #include <linux/mutex.h>
52
53 #include "saa5246a.h"
54
55 MODULE_AUTHOR("Michael Geng <linux@MichaelGeng.de>");
56 MODULE_DESCRIPTION("Philips SAA5246A, SAA5281 Teletext decoder driver");
57 MODULE_LICENSE("GPL");
58
59 struct saa5246a_device
60 {
61         u8     pgbuf[NUM_DAUS][VTX_VIRTUALSIZE];
62         int    is_searching[NUM_DAUS];
63         struct i2c_client *client;
64         struct mutex lock;
65 };
66
67 static struct video_device saa_template;        /* Declared near bottom */
68
69 /* Addresses to scan */
70 static unsigned short normal_i2c[]       = { I2C_ADDRESS, I2C_CLIENT_END };
71
72 I2C_CLIENT_INSMOD;
73
74 static struct i2c_client client_template;
75
76 static int saa5246a_attach(struct i2c_adapter *adap, int addr, int kind)
77 {
78         int pgbuf;
79         int err;
80         struct i2c_client *client;
81         struct video_device *vd;
82         struct saa5246a_device *t;
83
84         printk(KERN_INFO "saa5246a: teletext chip found.\n");
85         client=kmalloc(sizeof(*client), GFP_KERNEL);
86         if(client==NULL)
87                 return -ENOMEM;
88         client_template.adapter = adap;
89         client_template.addr = addr;
90         memcpy(client, &client_template, sizeof(*client));
91         t = kzalloc(sizeof(*t), GFP_KERNEL);
92         if(t==NULL)
93         {
94                 kfree(client);
95                 return -ENOMEM;
96         }
97         strlcpy(client->name, IF_NAME, I2C_NAME_SIZE);
98         mutex_init(&t->lock);
99
100         /*
101          *      Now create a video4linux device
102          */
103
104         vd = video_device_alloc();
105         if(vd==NULL)
106         {
107                 kfree(t);
108                 kfree(client);
109                 return -ENOMEM;
110         }
111         i2c_set_clientdata(client, vd);
112         memcpy(vd, &saa_template, sizeof(*vd));
113
114         for (pgbuf = 0; pgbuf < NUM_DAUS; pgbuf++)
115         {
116                 memset(t->pgbuf[pgbuf], ' ', sizeof(t->pgbuf[0]));
117                 t->is_searching[pgbuf] = false;
118         }
119         vd->priv=t;
120
121
122         /*
123          *      Register it
124          */
125
126         if((err=video_register_device(vd, VFL_TYPE_VTX,-1))<0)
127         {
128                 kfree(t);
129                 kfree(client);
130                 video_device_release(vd);
131                 return err;
132         }
133         t->client = client;
134         i2c_attach_client(client);
135         return 0;
136 }
137
138 /*
139  *      We do most of the hard work when we become a device on the i2c.
140  */
141 static int saa5246a_probe(struct i2c_adapter *adap)
142 {
143         if (adap->class & I2C_CLASS_TV_ANALOG)
144                 return i2c_probe(adap, &addr_data, saa5246a_attach);
145         return 0;
146 }
147
148 static int saa5246a_detach(struct i2c_client *client)
149 {
150         struct video_device *vd = i2c_get_clientdata(client);
151         i2c_detach_client(client);
152         video_unregister_device(vd);
153         kfree(vd->priv);
154         kfree(client);
155         return 0;
156 }
157
158 /*
159  *      I2C interfaces
160  */
161
162 static struct i2c_driver i2c_driver_videotext =
163 {
164         .driver = {
165                 .name   = IF_NAME,              /* name */
166         },
167         .id             = I2C_DRIVERID_SAA5249, /* in i2c.h */
168         .attach_adapter = saa5246a_probe,
169         .detach_client  = saa5246a_detach,
170 };
171
172 static struct i2c_client client_template = {
173         .driver         = &i2c_driver_videotext,
174         .name           = "(unset)",
175 };
176
177 static int i2c_sendbuf(struct saa5246a_device *t, int reg, int count, u8 *data)
178 {
179         char buf[64];
180
181         buf[0] = reg;
182         memcpy(buf+1, data, count);
183
184         if(i2c_master_send(t->client, buf, count+1)==count+1)
185                 return 0;
186         return -1;
187 }
188
189 static int i2c_senddata(struct saa5246a_device *t, ...)
190 {
191         unsigned char buf[64];
192         int v;
193         int ct = 0;
194         va_list argp;
195         va_start(argp, t);
196
197         while ((v = va_arg(argp, int)) != -1)
198                 buf[ct++] = v;
199
200         va_end(argp);
201         return i2c_sendbuf(t, buf[0], ct-1, buf+1);
202 }
203
204 /* Get count number of bytes from I²C-device at address adr, store them in buf.
205  * Start & stop handshaking is done by this routine, ack will be sent after the
206  * last byte to inhibit further sending of data. If uaccess is 'true', data is
207  * written to user-space with put_user. Returns -1 if I²C-device didn't send
208  * acknowledge, 0 otherwise
209  */
210 static int i2c_getdata(struct saa5246a_device *t, int count, u8 *buf)
211 {
212         if(i2c_master_recv(t->client, buf, count)!=count)
213                 return -1;
214         return 0;
215 }
216
217 /* When a page is found then the not FOUND bit in one of the status registers
218  * of the SAA5264A chip is cleared. Unfortunately this bit is not set
219  * automatically when a new page is requested. Instead this function must be
220  * called after a page has been requested.
221  *
222  * Return value: 0 if successful
223  */
224 static int saa5246a_clear_found_bit(struct saa5246a_device *t,
225         unsigned char dau_no)
226 {
227         unsigned char row_25_column_8;
228
229         if (i2c_senddata(t, SAA5246A_REGISTER_R8,
230
231                 dau_no |
232                 R8_DO_NOT_CLEAR_MEMORY,
233
234                 R9_CURSER_ROW_25,
235
236                 R10_CURSER_COLUMN_8,
237
238                 COMMAND_END) ||
239                 i2c_getdata(t, 1, &row_25_column_8))
240         {
241                 return -EIO;
242         }
243         row_25_column_8 |= ROW25_COLUMN8_PAGE_NOT_FOUND;
244         if (i2c_senddata(t, SAA5246A_REGISTER_R8,
245
246                 dau_no |
247                 R8_DO_NOT_CLEAR_MEMORY,
248
249                 R9_CURSER_ROW_25,
250
251                 R10_CURSER_COLUMN_8,
252
253                 row_25_column_8,
254
255                 COMMAND_END))
256         {
257                 return -EIO;
258         }
259
260         return 0;
261 }
262
263 /* Requests one videotext page as described in req. The fields of req are
264  * checked and an error is returned if something is invalid.
265  *
266  * Return value: 0 if successful
267  */
268 static int saa5246a_request_page(struct saa5246a_device *t,
269     vtx_pagereq_t *req)
270 {
271         if (req->pagemask < 0 || req->pagemask >= PGMASK_MAX)
272                 return -EINVAL;
273         if (req->pagemask & PGMASK_PAGE)
274                 if (req->page < 0 || req->page > PAGE_MAX)
275                         return -EINVAL;
276         if (req->pagemask & PGMASK_HOUR)
277                 if (req->hour < 0 || req->hour > HOUR_MAX)
278                         return -EINVAL;
279         if (req->pagemask & PGMASK_MINUTE)
280                 if (req->minute < 0 || req->minute > MINUTE_MAX)
281                         return -EINVAL;
282         if (req->pgbuf < 0 || req->pgbuf >= NUM_DAUS)
283                 return -EINVAL;
284
285         if (i2c_senddata(t, SAA5246A_REGISTER_R2,
286
287                 R2_IN_R3_SELECT_PAGE_HUNDREDS |
288                 req->pgbuf << 4 |
289                 R2_BANK_0 |
290                 R2_HAMMING_CHECK_OFF,
291
292                 HUNDREDS_OF_PAGE(req->page) |
293                 R3_HOLD_PAGE |
294                 (req->pagemask & PG_HUND ?
295                         R3_PAGE_HUNDREDS_DO_CARE :
296                         R3_PAGE_HUNDREDS_DO_NOT_CARE),
297
298                 TENS_OF_PAGE(req->page) |
299                 (req->pagemask & PG_TEN ?
300                         R3_PAGE_TENS_DO_CARE :
301                         R3_PAGE_TENS_DO_NOT_CARE),
302
303                 UNITS_OF_PAGE(req->page) |
304                 (req->pagemask & PG_UNIT ?
305                         R3_PAGE_UNITS_DO_CARE :
306                         R3_PAGE_UNITS_DO_NOT_CARE),
307
308                 TENS_OF_HOUR(req->hour) |
309                 (req->pagemask & HR_TEN ?
310                         R3_HOURS_TENS_DO_CARE :
311                         R3_HOURS_TENS_DO_NOT_CARE),
312
313                 UNITS_OF_HOUR(req->hour) |
314                 (req->pagemask & HR_UNIT ?
315                         R3_HOURS_UNITS_DO_CARE :
316                         R3_HOURS_UNITS_DO_NOT_CARE),
317
318                 TENS_OF_MINUTE(req->minute) |
319                 (req->pagemask & MIN_TEN ?
320                         R3_MINUTES_TENS_DO_CARE :
321                         R3_MINUTES_TENS_DO_NOT_CARE),
322
323                 UNITS_OF_MINUTE(req->minute) |
324                 (req->pagemask & MIN_UNIT ?
325                         R3_MINUTES_UNITS_DO_CARE :
326                         R3_MINUTES_UNITS_DO_NOT_CARE),
327
328                 COMMAND_END) || i2c_senddata(t, SAA5246A_REGISTER_R2,
329
330                 R2_IN_R3_SELECT_PAGE_HUNDREDS |
331                 req->pgbuf << 4 |
332                 R2_BANK_0 |
333                 R2_HAMMING_CHECK_OFF,
334
335                 HUNDREDS_OF_PAGE(req->page) |
336                 R3_UPDATE_PAGE |
337                 (req->pagemask & PG_HUND ?
338                         R3_PAGE_HUNDREDS_DO_CARE :
339                         R3_PAGE_HUNDREDS_DO_NOT_CARE),
340
341                 COMMAND_END))
342         {
343                 return -EIO;
344         }
345
346         t->is_searching[req->pgbuf] = true;
347         return 0;
348 }
349
350 /* This routine decodes the page number from the infobits contained in line 25.
351  *
352  * Parameters:
353  * infobits: must be bits 0 to 9 of column 25
354  *
355  * Return value: page number coded in hexadecimal, i. e. page 123 is coded 0x123
356  */
357 static inline int saa5246a_extract_pagenum_from_infobits(
358     unsigned char infobits[10])
359 {
360         int page_hundreds, page_tens, page_units;
361
362         page_units    = infobits[0] & ROW25_COLUMN0_PAGE_UNITS;
363         page_tens     = infobits[1] & ROW25_COLUMN1_PAGE_TENS;
364         page_hundreds = infobits[8] & ROW25_COLUMN8_PAGE_HUNDREDS;
365
366         /* page 0x.. means page 8.. */
367         if (page_hundreds == 0)
368                 page_hundreds = 8;
369
370         return((page_hundreds << 8) | (page_tens << 4) | page_units);
371 }
372
373 /* Decodes the hour from the infobits contained in line 25.
374  *
375  * Parameters:
376  * infobits: must be bits 0 to 9 of column 25
377  *
378  * Return: hour coded in hexadecimal, i. e. 12h is coded 0x12
379  */
380 static inline int saa5246a_extract_hour_from_infobits(
381     unsigned char infobits[10])
382 {
383         int hour_tens, hour_units;
384
385         hour_units = infobits[4] & ROW25_COLUMN4_HOUR_UNITS;
386         hour_tens  = infobits[5] & ROW25_COLUMN5_HOUR_TENS;
387
388         return((hour_tens << 4) | hour_units);
389 }
390
391 /* Decodes the minutes from the infobits contained in line 25.
392  *
393  * Parameters:
394  * infobits: must be bits 0 to 9 of column 25
395  *
396  * Return: minutes coded in hexadecimal, i. e. 10min is coded 0x10
397  */
398 static inline int saa5246a_extract_minutes_from_infobits(
399     unsigned char infobits[10])
400 {
401         int minutes_tens, minutes_units;
402
403         minutes_units = infobits[2] & ROW25_COLUMN2_MINUTES_UNITS;
404         minutes_tens  = infobits[3] & ROW25_COLUMN3_MINUTES_TENS;
405
406         return((minutes_tens << 4) | minutes_units);
407 }
408
409 /* Reads the status bits contained in the first 10 columns of the first line
410  * and extracts the information into info.
411  *
412  * Return value: 0 if successful
413  */
414 static inline int saa5246a_get_status(struct saa5246a_device *t,
415     vtx_pageinfo_t *info, unsigned char dau_no)
416 {
417         unsigned char infobits[10];
418         int column;
419
420         if (dau_no >= NUM_DAUS)
421                 return -EINVAL;
422
423         if (i2c_senddata(t, SAA5246A_REGISTER_R8,
424
425                 dau_no |
426                 R8_DO_NOT_CLEAR_MEMORY,
427
428                 R9_CURSER_ROW_25,
429
430                 R10_CURSER_COLUMN_0,
431
432                 COMMAND_END) ||
433                 i2c_getdata(t, 10, infobits))
434         {
435                 return -EIO;
436         }
437
438         info->pagenum = saa5246a_extract_pagenum_from_infobits(infobits);
439         info->hour    = saa5246a_extract_hour_from_infobits(infobits);
440         info->minute  = saa5246a_extract_minutes_from_infobits(infobits);
441         info->charset = ((infobits[7] & ROW25_COLUMN7_CHARACTER_SET) >> 1);
442         info->delete = !!(infobits[3] & ROW25_COLUMN3_DELETE_PAGE);
443         info->headline = !!(infobits[5] & ROW25_COLUMN5_INSERT_HEADLINE);
444         info->subtitle = !!(infobits[5] & ROW25_COLUMN5_INSERT_SUBTITLE);
445         info->supp_header = !!(infobits[6] & ROW25_COLUMN6_SUPPRESS_HEADER);
446         info->update = !!(infobits[6] & ROW25_COLUMN6_UPDATE_PAGE);
447         info->inter_seq = !!(infobits[6] & ROW25_COLUMN6_INTERRUPTED_SEQUENCE);
448         info->dis_disp = !!(infobits[6] & ROW25_COLUMN6_SUPPRESS_DISPLAY);
449         info->serial = !!(infobits[7] & ROW25_COLUMN7_SERIAL_MODE);
450         info->notfound = !!(infobits[8] & ROW25_COLUMN8_PAGE_NOT_FOUND);
451         info->pblf = !!(infobits[9] & ROW25_COLUMN9_PAGE_BEING_LOOKED_FOR);
452         info->hamming = 0;
453         for (column = 0; column <= 7; column++) {
454                 if (infobits[column] & ROW25_COLUMN0_TO_7_HAMMING_ERROR) {
455                         info->hamming = 1;
456                         break;
457                 }
458         }
459         if (!info->hamming && !info->notfound)
460                 t->is_searching[dau_no] = false;
461         return 0;
462 }
463
464 /* Reads 1 videotext page buffer of the SAA5246A.
465  *
466  * req is used both as input and as output. It contains information which part
467  * must be read. The videotext page is copied into req->buffer.
468  *
469  * Return value: 0 if successful
470  */
471 static inline int saa5246a_get_page(struct saa5246a_device *t,
472         vtx_pagereq_t *req)
473 {
474         int start, end, size;
475         char *buf;
476         int err;
477
478         if (req->pgbuf < 0 || req->pgbuf >= NUM_DAUS ||
479             req->start < 0 || req->start > req->end || req->end >= VTX_PAGESIZE)
480                 return -EINVAL;
481
482         buf = kmalloc(VTX_PAGESIZE, GFP_KERNEL);
483         if (!buf)
484                 return -ENOMEM;
485
486         /* Read "normal" part of page */
487         err = -EIO;
488
489         end = min(req->end, VTX_PAGESIZE - 1);
490         if (i2c_senddata(t, SAA5246A_REGISTER_R8,
491                         req->pgbuf | R8_DO_NOT_CLEAR_MEMORY,
492                         ROW(req->start), COLUMN(req->start), COMMAND_END))
493                 goto out;
494         if (i2c_getdata(t, end - req->start + 1, buf))
495                 goto out;
496         err = -EFAULT;
497         if (copy_to_user(req->buffer, buf, end - req->start + 1))
498                 goto out;
499
500         /* Always get the time from buffer 4, since this stupid SAA5246A only
501          * updates the currently displayed buffer...
502          */
503         if (REQ_CONTAINS_TIME(req)) {
504                 start = max(req->start, POS_TIME_START);
505                 end   = min(req->end,   POS_TIME_END);
506                 size = end - start + 1;
507                 err = -EINVAL;
508                 if (size < 0)
509                         goto out;
510                 err = -EIO;
511                 if (i2c_senddata(t, SAA5246A_REGISTER_R8,
512                                 R8_ACTIVE_CHAPTER_4 | R8_DO_NOT_CLEAR_MEMORY,
513                                 R9_CURSER_ROW_0, start, COMMAND_END))
514                         goto out;
515                 if (i2c_getdata(t, size, buf))
516                         goto out;
517                 err = -EFAULT;
518                 if (copy_to_user(req->buffer + start - req->start, buf, size))
519                         goto out;
520         }
521         /* Insert the header from buffer 4 only, if acquisition circuit is still searching for a page */
522         if (REQ_CONTAINS_HEADER(req) && t->is_searching[req->pgbuf]) {
523                 start = max(req->start, POS_HEADER_START);
524                 end   = min(req->end,   POS_HEADER_END);
525                 size = end - start + 1;
526                 err = -EINVAL;
527                 if (size < 0)
528                         goto out;
529                 err = -EIO;
530                 if (i2c_senddata(t, SAA5246A_REGISTER_R8,
531                                 R8_ACTIVE_CHAPTER_4 | R8_DO_NOT_CLEAR_MEMORY,
532                                 R9_CURSER_ROW_0, start, COMMAND_END))
533                         goto out;
534                 if (i2c_getdata(t, end - start + 1, buf))
535                         goto out;
536                 err = -EFAULT;
537                 if (copy_to_user(req->buffer + start - req->start, buf, size))
538                         goto out;
539         }
540         err = 0;
541 out:
542         kfree(buf);
543         return err;
544 }
545
546 /* Stops the acquisition circuit given in dau_no. The page buffer associated
547  * with this acquisition circuit will no more be updated. The other daus are
548  * not affected.
549  *
550  * Return value: 0 if successful
551  */
552 static inline int saa5246a_stop_dau(struct saa5246a_device *t,
553     unsigned char dau_no)
554 {
555         if (dau_no >= NUM_DAUS)
556                 return -EINVAL;
557         if (i2c_senddata(t, SAA5246A_REGISTER_R2,
558
559                 R2_IN_R3_SELECT_PAGE_HUNDREDS |
560                 dau_no << 4 |
561                 R2_BANK_0 |
562                 R2_HAMMING_CHECK_OFF,
563
564                 R3_PAGE_HUNDREDS_0 |
565                 R3_HOLD_PAGE |
566                 R3_PAGE_HUNDREDS_DO_NOT_CARE,
567
568                 COMMAND_END))
569         {
570                 return -EIO;
571         }
572         t->is_searching[dau_no] = false;
573         return 0;
574 }
575
576 /*  Handles ioctls defined in videotext.h
577  *
578  *  Returns 0 if successful
579  */
580 static int do_saa5246a_ioctl(struct inode *inode, struct file *file,
581                             unsigned int cmd, void *arg)
582 {
583         struct video_device *vd = video_devdata(file);
584         struct saa5246a_device *t=vd->priv;
585         switch(cmd)
586         {
587                 case VTXIOCGETINFO:
588                 {
589                         vtx_info_t *info = arg;
590
591                         info->version_major = MAJOR_VERSION;
592                         info->version_minor = MINOR_VERSION;
593                         info->numpages = NUM_DAUS;
594                         return 0;
595                 }
596
597                 case VTXIOCCLRPAGE:
598                 {
599                         vtx_pagereq_t *req = arg;
600
601                         if (req->pgbuf < 0 || req->pgbuf >= NUM_DAUS)
602                                 return -EINVAL;
603                         memset(t->pgbuf[req->pgbuf], ' ', sizeof(t->pgbuf[0]));
604                         return 0;
605                 }
606
607                 case VTXIOCCLRFOUND:
608                 {
609                         vtx_pagereq_t *req = arg;
610
611                         if (req->pgbuf < 0 || req->pgbuf >= NUM_DAUS)
612                                 return -EINVAL;
613                         return(saa5246a_clear_found_bit(t, req->pgbuf));
614                 }
615
616                 case VTXIOCPAGEREQ:
617                 {
618                         vtx_pagereq_t *req = arg;
619
620                         return(saa5246a_request_page(t, req));
621                 }
622
623                 case VTXIOCGETSTAT:
624                 {
625                         vtx_pagereq_t *req = arg;
626                         vtx_pageinfo_t info;
627                         int rval;
628
629                         if ((rval = saa5246a_get_status(t, &info, req->pgbuf)))
630                                 return rval;
631                         if(copy_to_user(req->buffer, &info,
632                                 sizeof(vtx_pageinfo_t)))
633                                 return -EFAULT;
634                         return 0;
635                 }
636
637                 case VTXIOCGETPAGE:
638                 {
639                         vtx_pagereq_t *req = arg;
640
641                         return(saa5246a_get_page(t, req));
642                 }
643
644                 case VTXIOCSTOPDAU:
645                 {
646                         vtx_pagereq_t *req = arg;
647
648                         return(saa5246a_stop_dau(t, req->pgbuf));
649                 }
650
651                 case VTXIOCPUTPAGE:
652                 case VTXIOCSETDISP:
653                 case VTXIOCPUTSTAT:
654                         return 0;
655
656                 case VTXIOCCLRCACHE:
657                 {
658                         return 0;
659                 }
660
661                 case VTXIOCSETVIRT:
662                 {
663                         /* I do not know what "virtual mode" means */
664                         return 0;
665                 }
666         }
667         return -EINVAL;
668 }
669
670 /*
671  * Translates old vtx IOCTLs to new ones
672  *
673  * This keeps new kernel versions compatible with old userspace programs.
674  */
675 static inline unsigned int vtx_fix_command(unsigned int cmd)
676 {
677         switch (cmd) {
678         case VTXIOCGETINFO_OLD:
679                 cmd = VTXIOCGETINFO;
680                 break;
681         case VTXIOCCLRPAGE_OLD:
682                 cmd = VTXIOCCLRPAGE;
683                 break;
684         case VTXIOCCLRFOUND_OLD:
685                 cmd = VTXIOCCLRFOUND;
686                 break;
687         case VTXIOCPAGEREQ_OLD:
688                 cmd = VTXIOCPAGEREQ;
689                 break;
690         case VTXIOCGETSTAT_OLD:
691                 cmd = VTXIOCGETSTAT;
692                 break;
693         case VTXIOCGETPAGE_OLD:
694                 cmd = VTXIOCGETPAGE;
695                 break;
696         case VTXIOCSTOPDAU_OLD:
697                 cmd = VTXIOCSTOPDAU;
698                 break;
699         case VTXIOCPUTPAGE_OLD:
700                 cmd = VTXIOCPUTPAGE;
701                 break;
702         case VTXIOCSETDISP_OLD:
703                 cmd = VTXIOCSETDISP;
704                 break;
705         case VTXIOCPUTSTAT_OLD:
706                 cmd = VTXIOCPUTSTAT;
707                 break;
708         case VTXIOCCLRCACHE_OLD:
709                 cmd = VTXIOCCLRCACHE;
710                 break;
711         case VTXIOCSETVIRT_OLD:
712                 cmd = VTXIOCSETVIRT;
713                 break;
714         }
715         return cmd;
716 }
717
718 /*
719  *      Handle the locking
720  */
721 static int saa5246a_ioctl(struct inode *inode, struct file *file,
722                          unsigned int cmd, unsigned long arg)
723 {
724         struct video_device *vd = video_devdata(file);
725         struct saa5246a_device *t = vd->priv;
726         int err;
727
728         cmd = vtx_fix_command(cmd);
729         mutex_lock(&t->lock);
730         err = video_usercopy(inode, file, cmd, arg, do_saa5246a_ioctl);
731         mutex_unlock(&t->lock);
732         return err;
733 }
734
735 static int saa5246a_open(struct inode *inode, struct file *file)
736 {
737         struct video_device *vd = video_devdata(file);
738         struct saa5246a_device *t = vd->priv;
739         int err;
740
741         lock_kernel();
742         err = video_exclusive_open(inode,file);
743         if (err < 0) {
744                 unlock_kernel();
745                 return err;
746         }
747
748         if (t->client==NULL) {
749                 err = -ENODEV;
750                 goto fail;
751         }
752
753         if (i2c_senddata(t, SAA5246A_REGISTER_R0,
754
755                 R0_SELECT_R11 |
756                 R0_PLL_TIME_CONSTANT_LONG |
757                 R0_ENABLE_nODD_EVEN_OUTPUT |
758                 R0_ENABLE_HDR_POLL |
759                 R0_DO_NOT_FORCE_nODD_EVEN_LOW_IF_PICTURE_DISPLAYED |
760                 R0_NO_FREE_RUN_PLL |
761                 R0_NO_AUTOMATIC_FASTEXT_PROMPT,
762
763                 R1_NON_INTERLACED_312_312_LINES |
764                 R1_DEW |
765                 R1_EXTENDED_PACKET_DISABLE |
766                 R1_DAUS_ALL_ON |
767                 R1_8_BITS_NO_PARITY |
768                 R1_VCS_TO_SCS,
769
770                 COMMAND_END) ||
771                 i2c_senddata(t, SAA5246A_REGISTER_R4,
772
773                 /* We do not care much for the TV display but nevertheless we
774                  * need the currently displayed page later because only on that
775                  * page the time is updated. */
776                 R4_DISPLAY_PAGE_4,
777
778                 COMMAND_END))
779         {
780                 err = -EIO;
781                 goto fail;
782         }
783         unlock_kernel();
784
785         return 0;
786
787 fail:
788         video_exclusive_release(inode,file);
789         unlock_kernel();
790         return err;
791 }
792
793 static int saa5246a_release(struct inode *inode, struct file *file)
794 {
795         struct video_device *vd = video_devdata(file);
796         struct saa5246a_device *t = vd->priv;
797
798         /* Stop all acquisition circuits. */
799         i2c_senddata(t, SAA5246A_REGISTER_R1,
800
801                 R1_INTERLACED_312_AND_HALF_312_AND_HALF_LINES |
802                 R1_DEW |
803                 R1_EXTENDED_PACKET_DISABLE |
804                 R1_DAUS_ALL_OFF |
805                 R1_8_BITS_NO_PARITY |
806                 R1_VCS_TO_SCS,
807
808                 COMMAND_END);
809         video_exclusive_release(inode,file);
810         return 0;
811 }
812
813 static int __init init_saa_5246a (void)
814 {
815         printk(KERN_INFO
816                 "SAA5246A (or compatible) Teletext decoder driver version %d.%d\n",
817                 MAJOR_VERSION, MINOR_VERSION);
818         return i2c_add_driver(&i2c_driver_videotext);
819 }
820
821 static void __exit cleanup_saa_5246a (void)
822 {
823         i2c_del_driver(&i2c_driver_videotext);
824 }
825
826 module_init(init_saa_5246a);
827 module_exit(cleanup_saa_5246a);
828
829 static const struct file_operations saa_fops = {
830         .owner   = THIS_MODULE,
831         .open    = saa5246a_open,
832         .release = saa5246a_release,
833         .ioctl   = saa5246a_ioctl,
834         .llseek  = no_llseek,
835 };
836
837 static struct video_device saa_template =
838 {
839         .name     = IF_NAME,
840         .fops     = &saa_fops,
841         .release  = video_device_release,
842         .minor    = -1,
843 };