2 * Modified in order to keep it compatible both with new and old videotext IOCTLs by
3 * Michael Geng <linux@MichaelGeng.de>
5 * Cleaned up to use existing videodev interface and allow the idea
6 * of multiple teletext decoders on the video4linux iface. Changed i2c
7 * to cover addressing clashes on device busses. It's also rebuilt so
8 * you can add arbitary multiple teletext devices to Linux video4linux
9 * now (well 32 anyway).
11 * Alan Cox <Alan.Cox@linux.org>
13 * The original driver was heavily modified to match the i2c interface
14 * It was truncated to use the WinTV boards, too.
16 * Copyright (c) 1998 Richard Guenther <richard.guenther@student.uni-tuebingen.de>
18 * $Id: saa5249.c,v 1.1 1998/03/30 22:23:23 alan Exp $
23 * This is a loadable character-device-driver for videotext-interfaces
24 * (aka teletext). Please check the Makefile/README for a list of supported
27 * Copyright (c) 1994-97 Martin Buck <martin-2.buck@student.uni-ulm.de>
30 * This program is free software; you can redistribute it and/or modify
31 * it under the terms of the GNU General Public License as published by
32 * the Free Software Foundation; either version 2 of the License, or
33 * (at your option) any later version.
35 * This program is distributed in the hope that it will be useful,
36 * but WITHOUT ANY WARRANTY; without even the implied warranty of
37 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
38 * GNU General Public License for more details.
40 * You should have received a copy of the GNU General Public License
41 * along with this program; if not, write to the Free Software
42 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
46 #include <linux/module.h>
47 #include <linux/kernel.h>
48 #include <linux/sched.h>
50 #include <linux/errno.h>
51 #include <linux/delay.h>
52 #include <linux/ioport.h>
53 #include <linux/slab.h>
54 #include <linux/init.h>
56 #include <linux/i2c.h>
57 #include <linux/videotext.h>
58 #include <linux/videodev.h>
61 #include <asm/uaccess.h>
70 #define IF_NAME "SAA5249"
72 static const int disp_modes
[8][3] =
74 { 0x46, 0x03, 0x03 }, /* DISPOFF */
75 { 0x46, 0xcc, 0xcc }, /* DISPNORM */
76 { 0x44, 0x0f, 0x0f }, /* DISPTRANS */
77 { 0x46, 0xcc, 0x46 }, /* DISPINS */
78 { 0x44, 0x03, 0x03 }, /* DISPOFF, interlaced */
79 { 0x44, 0xcc, 0xcc }, /* DISPNORM, interlaced */
80 { 0x44, 0x0f, 0x0f }, /* DISPTRANS, interlaced */
81 { 0x44, 0xcc, 0x46 } /* DISPINS, interlaced */
86 #define PAGE_WAIT (300*HZ/1000) /* Time between requesting page and */
87 /* checking status bits */
88 #define PGBUF_EXPIRE (15*HZ) /* Time to wait before retransmitting */
89 /* page regardless of infobits */
91 u8 pgbuf
[VTX_VIRTUALSIZE
]; /* Page-buffer */
92 u8 laststat
[10]; /* Last value of infobits for DAU */
93 u8 sregs
[7]; /* Page-request registers */
94 unsigned long expire
; /* Time when page will be expired */
95 unsigned clrfound
: 1; /* VTXIOCCLRFOUND has been called */
96 unsigned stopped
: 1; /* VTXIOCSTOPDAU has been called */
101 vdau_t vdau
[NUM_DAUS
]; /* Data for virtual DAUs (the 5249 only has one */
102 /* real DAU, so we have to simulate some more) */
104 int is_searching
[NUM_DAUS
];
107 struct i2c_client
*client
;
108 struct semaphore lock
;
112 #define CCTWR 34 /* I²C write/read-address of vtx-chip */
114 #define NOACK_REPEAT 10 /* Retry access this many times on failure */
115 #define CLEAR_DELAY (HZ/20) /* Time required to clear a page */
116 #define READY_TIMEOUT (30*HZ/1000) /* Time to wait for ready signal of I²C-bus interface */
117 #define INIT_DELAY 500 /* Time in usec to wait at initialization of CEA interface */
118 #define START_DELAY 10 /* Time in usec to wait before starting write-cycle (CEA) */
120 #define VTX_DEV_MINOR 0
122 /* General defines and debugging support */
129 #define RESCHED do { cond_resched(); } while(0)
131 static struct video_device saa_template
; /* Declared near bottom */
133 /* Addresses to scan */
134 static unsigned short normal_i2c
[] = {34>>1,I2C_CLIENT_END
};
135 static unsigned short normal_i2c_range
[] = {I2C_CLIENT_END
};
138 static struct i2c_client client_template
;
140 static int saa5249_attach(struct i2c_adapter
*adap
, int addr
, int kind
)
144 struct i2c_client
*client
;
145 struct video_device
*vd
;
146 struct saa5249_device
*t
;
148 printk(KERN_INFO
"saa5249: teletext chip found.\n");
149 client
=kmalloc(sizeof(*client
), GFP_KERNEL
);
152 client_template
.adapter
= adap
;
153 client_template
.addr
= addr
;
154 memcpy(client
, &client_template
, sizeof(*client
));
155 t
= kmalloc(sizeof(*t
), GFP_KERNEL
);
161 memset(t
, 0, sizeof(*t
));
162 strlcpy(client
->name
, IF_NAME
, I2C_NAME_SIZE
);
163 init_MUTEX(&t
->lock
);
166 * Now create a video4linux device
169 vd
= (struct video_device
*)kmalloc(sizeof(struct video_device
), GFP_KERNEL
);
176 i2c_set_clientdata(client
, vd
);
177 memcpy(vd
, &saa_template
, sizeof(*vd
));
179 for (pgbuf
= 0; pgbuf
< NUM_DAUS
; pgbuf
++)
181 memset(t
->vdau
[pgbuf
].pgbuf
, ' ', sizeof(t
->vdau
[0].pgbuf
));
182 memset(t
->vdau
[pgbuf
].sregs
, 0, sizeof(t
->vdau
[0].sregs
));
183 memset(t
->vdau
[pgbuf
].laststat
, 0, sizeof(t
->vdau
[0].laststat
));
184 t
->vdau
[pgbuf
].expire
= 0;
185 t
->vdau
[pgbuf
].clrfound
= TRUE
;
186 t
->vdau
[pgbuf
].stopped
= TRUE
;
187 t
->is_searching
[pgbuf
] = FALSE
;
196 if((err
=video_register_device(vd
, VFL_TYPE_VTX
,-1))<0)
204 i2c_attach_client(client
);
209 * We do most of the hard work when we become a device on the i2c.
212 static int saa5249_probe(struct i2c_adapter
*adap
)
214 if (adap
->class & I2C_CLASS_TV_ANALOG
)
215 return i2c_probe(adap
, &addr_data
, saa5249_attach
);
219 static int saa5249_detach(struct i2c_client
*client
)
221 struct video_device
*vd
= i2c_get_clientdata(client
);
222 i2c_detach_client(client
);
223 video_unregister_device(vd
);
230 static int saa5249_command(struct i2c_client
*device
,
231 unsigned int cmd
, void *arg
)
236 /* new I2C driver support */
238 static struct i2c_driver i2c_driver_videotext
=
240 .owner
= THIS_MODULE
,
241 .name
= IF_NAME
, /* name */
242 .id
= I2C_DRIVERID_SAA5249
, /* in i2c.h */
243 .flags
= I2C_DF_NOTIFY
,
244 .attach_adapter
= saa5249_probe
,
245 .detach_client
= saa5249_detach
,
246 .command
= saa5249_command
249 static struct i2c_client client_template
= {
250 .driver
= &i2c_driver_videotext
,
255 * Wait the given number of jiffies (10ms). This calls the scheduler, so the actual
256 * delay may be longer.
259 static void jdelay(unsigned long delay
)
261 sigset_t oldblocked
= current
->blocked
;
263 spin_lock_irq(¤t
->sighand
->siglock
);
264 sigfillset(¤t
->blocked
);
266 spin_unlock_irq(¤t
->sighand
->siglock
);
267 msleep_interruptible(jiffies_to_msecs(delay
));
269 spin_lock_irq(¤t
->sighand
->siglock
);
270 current
->blocked
= oldblocked
;
272 spin_unlock_irq(¤t
->sighand
->siglock
);
280 static int i2c_sendbuf(struct saa5249_device
*t
, int reg
, int count
, u8
*data
)
285 memcpy(buf
+1, data
, count
);
287 if(i2c_master_send(t
->client
, buf
, count
+1)==count
+1)
292 static int i2c_senddata(struct saa5249_device
*t
, ...)
294 unsigned char buf
[64];
300 while((v
=va_arg(argp
,int))!=-1)
302 return i2c_sendbuf(t
, buf
[0], ct
-1, buf
+1);
305 /* Get count number of bytes from I²C-device at address adr, store them in buf. Start & stop
306 * handshaking is done by this routine, ack will be sent after the last byte to inhibit further
307 * sending of data. If uaccess is TRUE, data is written to user-space with put_user.
308 * Returns -1 if I²C-device didn't send acknowledge, 0 otherwise
311 static int i2c_getdata(struct saa5249_device
*t
, int count
, u8
*buf
)
313 if(i2c_master_recv(t
->client
, buf
, count
)!=count
)
320 * Standard character-device-driver functions
323 static int do_saa5249_ioctl(struct inode
*inode
, struct file
*file
,
324 unsigned int cmd
, void *arg
)
326 static int virtual_mode
= FALSE
;
327 struct video_device
*vd
= video_devdata(file
);
328 struct saa5249_device
*t
=vd
->priv
;
334 vtx_info_t
*info
= arg
;
335 info
->version_major
= VTX_VER_MAJ
;
336 info
->version_minor
= VTX_VER_MIN
;
337 info
->numpages
= NUM_DAUS
;
338 /*info->cct_type = CCT_TYPE;*/
344 vtx_pagereq_t
*req
= arg
;
346 if (req
->pgbuf
< 0 || req
->pgbuf
>= NUM_DAUS
)
348 memset(t
->vdau
[req
->pgbuf
].pgbuf
, ' ', sizeof(t
->vdau
[0].pgbuf
));
349 t
->vdau
[req
->pgbuf
].clrfound
= TRUE
;
355 vtx_pagereq_t
*req
= arg
;
357 if (req
->pgbuf
< 0 || req
->pgbuf
>= NUM_DAUS
)
359 t
->vdau
[req
->pgbuf
].clrfound
= TRUE
;
365 vtx_pagereq_t
*req
= arg
;
366 if (!(req
->pagemask
& PGMASK_PAGE
))
368 if (!(req
->pagemask
& PGMASK_HOUR
))
370 if (!(req
->pagemask
& PGMASK_MINUTE
))
372 if (req
->page
< 0 || req
->page
> 0x8ff) /* 7FF ?? */
375 if (req
->hour
< 0 || req
->hour
> 0x3f || req
->minute
< 0 || req
->minute
> 0x7f ||
376 req
->pagemask
< 0 || req
->pagemask
>= PGMASK_MAX
|| req
->pgbuf
< 0 || req
->pgbuf
>= NUM_DAUS
)
378 t
->vdau
[req
->pgbuf
].sregs
[0] = (req
->pagemask
& PG_HUND
? 0x10 : 0) | (req
->page
/ 0x100);
379 t
->vdau
[req
->pgbuf
].sregs
[1] = (req
->pagemask
& PG_TEN
? 0x10 : 0) | ((req
->page
/ 0x10) & 0xf);
380 t
->vdau
[req
->pgbuf
].sregs
[2] = (req
->pagemask
& PG_UNIT
? 0x10 : 0) | (req
->page
& 0xf);
381 t
->vdau
[req
->pgbuf
].sregs
[3] = (req
->pagemask
& HR_TEN
? 0x10 : 0) | (req
->hour
/ 0x10);
382 t
->vdau
[req
->pgbuf
].sregs
[4] = (req
->pagemask
& HR_UNIT
? 0x10 : 0) | (req
->hour
& 0xf);
383 t
->vdau
[req
->pgbuf
].sregs
[5] = (req
->pagemask
& MIN_TEN
? 0x10 : 0) | (req
->minute
/ 0x10);
384 t
->vdau
[req
->pgbuf
].sregs
[6] = (req
->pagemask
& MIN_UNIT
? 0x10 : 0) | (req
->minute
& 0xf);
385 t
->vdau
[req
->pgbuf
].stopped
= FALSE
;
386 t
->vdau
[req
->pgbuf
].clrfound
= TRUE
;
387 t
->is_searching
[req
->pgbuf
] = TRUE
;
393 vtx_pagereq_t
*req
= arg
;
398 if (req
->pgbuf
< 0 || req
->pgbuf
>= NUM_DAUS
)
400 if (!t
->vdau
[req
->pgbuf
].stopped
)
402 if (i2c_senddata(t
, 2, 0, -1) ||
403 i2c_sendbuf(t
, 3, sizeof(t
->vdau
[0].sregs
), t
->vdau
[req
->pgbuf
].sregs
) ||
404 i2c_senddata(t
, 8, 0, 25, 0, ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', -1) ||
405 i2c_senddata(t
, 2, 0, t
->vdau
[req
->pgbuf
].sregs
[0] | 8, -1) ||
406 i2c_senddata(t
, 8, 0, 25, 0, -1))
409 if (i2c_getdata(t
, 10, infobits
))
412 if (!(infobits
[8] & 0x10) && !(infobits
[7] & 0xf0) && /* check FOUND-bit */
413 (memcmp(infobits
, t
->vdau
[req
->pgbuf
].laststat
, sizeof(infobits
)) ||
414 time_after_eq(jiffies
, t
->vdau
[req
->pgbuf
].expire
)))
415 { /* check if new page arrived */
416 if (i2c_senddata(t
, 8, 0, 0, 0, -1) ||
417 i2c_getdata(t
, VTX_PAGESIZE
, t
->vdau
[req
->pgbuf
].pgbuf
))
419 t
->vdau
[req
->pgbuf
].expire
= jiffies
+ PGBUF_EXPIRE
;
420 memset(t
->vdau
[req
->pgbuf
].pgbuf
+ VTX_PAGESIZE
, ' ', VTX_VIRTUALSIZE
- VTX_PAGESIZE
);
424 if (i2c_senddata(t
, 8, 0, 0x20, 0, -1) ||
425 i2c_getdata(t
, 40, t
->vdau
[req
->pgbuf
].pgbuf
+ VTX_PAGESIZE
+ 20 * 40))
428 if (i2c_senddata(t
, 8, 0, 0x21, 0, -1) ||
429 i2c_getdata(t
, 40, t
->vdau
[req
->pgbuf
].pgbuf
+ VTX_PAGESIZE
+ 16 * 40))
431 /* Packet 8/30/0...8/30/15
432 * FIXME: AFAIK, the 5249 does hamming-decoding for some bytes in packet 8/30,
433 * so we should undo this here.
435 if (i2c_senddata(t
, 8, 0, 0x22, 0, -1) ||
436 i2c_getdata(t
, 40, t
->vdau
[req
->pgbuf
].pgbuf
+ VTX_PAGESIZE
+ 23 * 40))
439 t
->vdau
[req
->pgbuf
].clrfound
= FALSE
;
440 memcpy(t
->vdau
[req
->pgbuf
].laststat
, infobits
, sizeof(infobits
));
444 memcpy(infobits
, t
->vdau
[req
->pgbuf
].laststat
, sizeof(infobits
));
449 memcpy(infobits
, t
->vdau
[req
->pgbuf
].laststat
, sizeof(infobits
));
452 info
.pagenum
= ((infobits
[8] << 8) & 0x700) | ((infobits
[1] << 4) & 0xf0) | (infobits
[0] & 0x0f);
453 if (info
.pagenum
< 0x100)
454 info
.pagenum
+= 0x800;
455 info
.hour
= ((infobits
[5] << 4) & 0x30) | (infobits
[4] & 0x0f);
456 info
.minute
= ((infobits
[3] << 4) & 0x70) | (infobits
[2] & 0x0f);
457 info
.charset
= ((infobits
[7] >> 1) & 7);
458 info
.delete = !!(infobits
[3] & 8);
459 info
.headline
= !!(infobits
[5] & 4);
460 info
.subtitle
= !!(infobits
[5] & 8);
461 info
.supp_header
= !!(infobits
[6] & 1);
462 info
.update
= !!(infobits
[6] & 2);
463 info
.inter_seq
= !!(infobits
[6] & 4);
464 info
.dis_disp
= !!(infobits
[6] & 8);
465 info
.serial
= !!(infobits
[7] & 1);
466 info
.notfound
= !!(infobits
[8] & 0x10);
467 info
.pblf
= !!(infobits
[9] & 0x20);
469 for (a
= 0; a
<= 7; a
++)
471 if (infobits
[a
] & 0xf0)
477 if (t
->vdau
[req
->pgbuf
].clrfound
)
479 if(copy_to_user(req
->buffer
, &info
, sizeof(vtx_pageinfo_t
)))
481 if (!info
.hamming
&& !info
.notfound
)
483 t
->is_searching
[req
->pgbuf
] = FALSE
;
490 vtx_pagereq_t
*req
= arg
;
493 if (req
->pgbuf
< 0 || req
->pgbuf
>= NUM_DAUS
|| req
->start
< 0 ||
494 req
->start
> req
->end
|| req
->end
>= (virtual_mode
? VTX_VIRTUALSIZE
: VTX_PAGESIZE
))
496 if(copy_to_user(req
->buffer
, &t
->vdau
[req
->pgbuf
].pgbuf
[req
->start
], req
->end
- req
->start
+ 1))
500 * Always read the time directly from SAA5249
503 if (req
->start
<= 39 && req
->end
>= 32)
507 start
= max(req
->start
, 32);
508 end
= min(req
->end
, 39);
510 if (i2c_senddata(t
, 8, 0, 0, start
, -1) ||
511 i2c_getdata(t
, len
, buf
))
513 if(copy_to_user(req
->buffer
+start
-req
->start
, buf
, len
))
516 /* Insert the current header if DAU is still searching for a page */
517 if (req
->start
<= 31 && req
->end
>= 7 && t
->is_searching
[req
->pgbuf
])
521 start
= max(req
->start
, 7);
522 end
= min(req
->end
, 31);
524 if (i2c_senddata(t
, 8, 0, 0, start
, -1) ||
525 i2c_getdata(t
, len
, buf
))
527 if(copy_to_user(req
->buffer
+start
-req
->start
, buf
, len
))
535 vtx_pagereq_t
*req
= arg
;
537 if (req
->pgbuf
< 0 || req
->pgbuf
>= NUM_DAUS
)
539 t
->vdau
[req
->pgbuf
].stopped
= TRUE
;
540 t
->is_searching
[req
->pgbuf
] = FALSE
;
551 if (i2c_senddata(t
, 0, NUM_DAUS
, 0, 8, -1) || i2c_senddata(t
, 11,
552 ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',
553 ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ', -1))
555 if (i2c_senddata(t
, 3, 0x20, -1))
557 jdelay(10 * CLEAR_DELAY
); /* I have no idea how long we have to wait here */
563 /* The SAA5249 has virtual-row reception turned on always */
564 t
->virtual_mode
= (int)(long)arg
;
572 * Translates old vtx IOCTLs to new ones
574 * This keeps new kernel versions compatible with old userspace programs.
576 static inline unsigned int vtx_fix_command(unsigned int cmd
)
579 case VTXIOCGETINFO_OLD
:
582 case VTXIOCCLRPAGE_OLD
:
585 case VTXIOCCLRFOUND_OLD
:
586 cmd
= VTXIOCCLRFOUND
;
588 case VTXIOCPAGEREQ_OLD
:
591 case VTXIOCGETSTAT_OLD
:
594 case VTXIOCGETPAGE_OLD
:
597 case VTXIOCSTOPDAU_OLD
:
600 case VTXIOCPUTPAGE_OLD
:
603 case VTXIOCSETDISP_OLD
:
606 case VTXIOCPUTSTAT_OLD
:
609 case VTXIOCCLRCACHE_OLD
:
610 cmd
= VTXIOCCLRCACHE
;
612 case VTXIOCSETVIRT_OLD
:
623 static int saa5249_ioctl(struct inode
*inode
, struct file
*file
,
624 unsigned int cmd
, unsigned long arg
)
626 struct video_device
*vd
= video_devdata(file
);
627 struct saa5249_device
*t
=vd
->priv
;
630 cmd
= vtx_fix_command(cmd
);
632 err
= video_usercopy(inode
,file
,cmd
,arg
,do_saa5249_ioctl
);
637 static int saa5249_open(struct inode
*inode
, struct file
*file
)
639 struct video_device
*vd
= video_devdata(file
);
640 struct saa5249_device
*t
=vd
->priv
;
643 err
= video_exclusive_open(inode
,file
);
647 if (t
->client
==NULL
) {
652 if (i2c_senddata(t
, 0, 0, -1) || /* Select R11 */
653 /* Turn off parity checks (we do this ourselves) */
654 i2c_senddata(t
, 1, disp_modes
[t
->disp_mode
][0], 0, -1) ||
655 /* Display TV-picture, no virtual rows */
656 i2c_senddata(t
, 4, NUM_DAUS
, disp_modes
[t
->disp_mode
][1], disp_modes
[t
->disp_mode
][2], 7, -1)) /* Set display to page 4 */
663 for (pgbuf
= 0; pgbuf
< NUM_DAUS
; pgbuf
++)
665 memset(t
->vdau
[pgbuf
].pgbuf
, ' ', sizeof(t
->vdau
[0].pgbuf
));
666 memset(t
->vdau
[pgbuf
].sregs
, 0, sizeof(t
->vdau
[0].sregs
));
667 memset(t
->vdau
[pgbuf
].laststat
, 0, sizeof(t
->vdau
[0].laststat
));
668 t
->vdau
[pgbuf
].expire
= 0;
669 t
->vdau
[pgbuf
].clrfound
= TRUE
;
670 t
->vdau
[pgbuf
].stopped
= TRUE
;
671 t
->is_searching
[pgbuf
] = FALSE
;
673 t
->virtual_mode
=FALSE
;
677 video_exclusive_release(inode
,file
);
683 static int saa5249_release(struct inode
*inode
, struct file
*file
)
685 struct video_device
*vd
= video_devdata(file
);
686 struct saa5249_device
*t
=vd
->priv
;
687 i2c_senddata(t
, 1, 0x20, -1); /* Turn off CCT */
688 i2c_senddata(t
, 5, 3, 3, -1); /* Turn off TV-display */
689 video_exclusive_release(inode
,file
);
693 static int __init
init_saa_5249 (void)
695 printk(KERN_INFO
"SAA5249 driver (" IF_NAME
" interface) for VideoText version %d.%d\n",
696 VTX_VER_MAJ
, VTX_VER_MIN
);
697 return i2c_add_driver(&i2c_driver_videotext
);
700 static void __exit
cleanup_saa_5249 (void)
702 i2c_del_driver(&i2c_driver_videotext
);
705 module_init(init_saa_5249
);
706 module_exit(cleanup_saa_5249
);
708 static struct file_operations saa_fops
= {
709 .owner
= THIS_MODULE
,
710 .open
= saa5249_open
,
711 .release
= saa5249_release
,
712 .ioctl
= saa5249_ioctl
,
716 static struct video_device saa_template
=
718 .owner
= THIS_MODULE
,
720 .type
= VID_TYPE_TELETEXT
, /*| VID_TYPE_TUNER ?? */
721 .hardware
= VID_HARDWARE_SAA5249
,
725 MODULE_LICENSE("GPL");