saa5249.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:19k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Cleaned up to use existing videodev interface and allow the idea
  3.  * of multiple teletext decoders on the video4linux iface. Changed i2c
  4.  * to cover addressing clashes on device busses. It's also rebuilt so
  5.  * you can add arbitary multiple teletext devices to Linux video4linux
  6.  * now (well 32 anyway).
  7.  *
  8.  * Alan Cox <Alan.Cox@linux.org>
  9.  *
  10.  * The original driver was heavily modified to match the i2c interface
  11.  * It was truncated to use the WinTV boards, too.
  12.  *
  13.  * Copyright (c) 1998 Richard Guenther <richard.guenther@student.uni-tuebingen.de>
  14.  *
  15.  * $Id: saa5249.c,v 1.1 1998/03/30 22:23:23 alan Exp $
  16.  *
  17.  * Derived From
  18.  *
  19.  * vtx.c:
  20.  * This is a loadable character-device-driver for videotext-interfaces
  21.  * (aka teletext). Please check the Makefile/README for a list of supported
  22.  * interfaces.
  23.  *
  24.  * Copyright (c) 1994-97 Martin Buck  <martin-2.buck@student.uni-ulm.de>
  25.  *
  26.  *
  27.  * This program is free software; you can redistribute it and/or modify
  28.  * it under the terms of the GNU General Public License as published by
  29.  * the Free Software Foundation; either version 2 of the License, or
  30.  * (at your option) any later version.
  31.  *
  32.  * This program is distributed in the hope that it will be useful,
  33.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  34.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  35.  * GNU General Public License for more details.
  36.  *
  37.  * You should have received a copy of the GNU General Public License
  38.  * along with this program; if not, write to the Free Software
  39.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
  40.  * USA.
  41.  */
  42. #include <linux/module.h>
  43. #include <linux/kernel.h>
  44. #include <linux/sched.h>
  45. #include <linux/mm.h>
  46. #include <linux/errno.h>
  47. #include <linux/delay.h>
  48. #include <linux/ioport.h>
  49. #include <linux/slab.h>
  50. #include <linux/init.h>
  51. #include <stdarg.h>
  52. #include <linux/i2c.h>
  53. #include <linux/videotext.h>
  54. #include <linux/videodev.h>
  55. #include <asm/io.h>
  56. #include <asm/uaccess.h>
  57. #define VTX_VER_MAJ 1
  58. #define VTX_VER_MIN 7
  59. #define NUM_DAUS 4
  60. #define NUM_BUFS 8
  61. #define IF_NAME "SAA5249"
  62. static const int disp_modes[8][3] = 
  63. {
  64. { 0x46, 0x03, 0x03 }, /* DISPOFF */
  65. { 0x46, 0xcc, 0xcc }, /* DISPNORM */
  66. { 0x44, 0x0f, 0x0f }, /* DISPTRANS */
  67. { 0x46, 0xcc, 0x46 }, /* DISPINS */
  68. { 0x44, 0x03, 0x03 }, /* DISPOFF, interlaced */
  69. { 0x44, 0xcc, 0xcc }, /* DISPNORM, interlaced */
  70. { 0x44, 0x0f, 0x0f }, /* DISPTRANS, interlaced */
  71. { 0x44, 0xcc, 0x46 } /* DISPINS, interlaced */
  72. };
  73. #define PAGE_WAIT (300*HZ/1000) /* Time between requesting page and */
  74. /* checking status bits */
  75. #define PGBUF_EXPIRE (15*HZ) /* Time to wait before retransmitting */
  76. /* page regardless of infobits */
  77. typedef struct {
  78. u8 pgbuf[VTX_VIRTUALSIZE]; /* Page-buffer */
  79. u8 laststat[10]; /* Last value of infobits for DAU */
  80. u8 sregs[7]; /* Page-request registers */
  81. unsigned long expire; /* Time when page will be expired */
  82. unsigned clrfound : 1; /* VTXIOCCLRFOUND has been called */
  83. unsigned stopped : 1; /* VTXIOCSTOPDAU has been called */
  84. } vdau_t;
  85. struct saa5249_device
  86. {
  87. vdau_t vdau[NUM_DAUS]; /* Data for virtual DAUs (the 5249 only has one */
  88. /* real DAU, so we have to simulate some more) */
  89. int vtx_use_count;
  90. int is_searching[NUM_DAUS];
  91. int disp_mode;
  92. int virtual_mode;
  93. struct i2c_client *client;
  94. struct semaphore lock;
  95. };
  96. #define CCTWR 34 /* I睠 write/read-address of vtx-chip */
  97. #define CCTRD 35
  98. #define NOACK_REPEAT 10 /* Retry access this many times on failure */
  99. #define CLEAR_DELAY (HZ/20) /* Time required to clear a page */
  100. #define READY_TIMEOUT (30*HZ/1000) /* Time to wait for ready signal of I睠-bus interface */
  101. #define INIT_DELAY 500 /* Time in usec to wait at initialization of CEA interface */
  102. #define START_DELAY 10 /* Time in usec to wait before starting write-cycle (CEA) */
  103. #define VTX_DEV_MINOR 0
  104. /* General defines and debugging support */
  105. #ifndef FALSE
  106. #define FALSE 0
  107. #define TRUE 1
  108. #endif
  109. #ifndef MIN
  110. #define MIN(a, b) ((a) < (b) ? (a) : (b))
  111. #define MAX(a, b) ((a) > (b) ? (a) : (b))
  112. #endif
  113. #define RESCHED 
  114.         do { 
  115.           if (current->need_resched) 
  116.             schedule(); 
  117.         } while (0)
  118. static struct video_device saa_template; /* Declared near bottom */
  119. /* Addresses to scan */
  120. static unsigned short normal_i2c[] = {34>>1,I2C_CLIENT_END};
  121. static unsigned short normal_i2c_range[] = {I2C_CLIENT_END};
  122. static unsigned short probe[2]        = { I2C_CLIENT_END, I2C_CLIENT_END };
  123. static unsigned short probe_range[2]  = { I2C_CLIENT_END, I2C_CLIENT_END };
  124. static unsigned short ignore[2]       = { I2C_CLIENT_END, I2C_CLIENT_END };
  125. static unsigned short ignore_range[2] = { I2C_CLIENT_END, I2C_CLIENT_END };
  126. static unsigned short force[2]        = { I2C_CLIENT_END, I2C_CLIENT_END };
  127. static struct i2c_client_address_data addr_data = {
  128. normal_i2c, normal_i2c_range, 
  129. probe, probe_range, 
  130. ignore, ignore_range, 
  131. force
  132. };
  133. static struct i2c_client client_template;
  134. static int saa5249_attach(struct i2c_adapter *adap, int addr, unsigned short flags, int kind)
  135. {
  136. int pgbuf;
  137. int err;
  138. struct i2c_client *client;
  139. struct video_device *vd;
  140. struct saa5249_device *t;
  141. printk(KERN_INFO "saa5249: teletext chip found.n");
  142. client=kmalloc(sizeof(*client), GFP_KERNEL);
  143. if(client==NULL)
  144. return -ENOMEM;
  145.         client_template.adapter = adap;
  146.         client_template.addr = addr;
  147. memcpy(client, &client_template, sizeof(*client));
  148. t = kmalloc(sizeof(*t), GFP_KERNEL);
  149. if(t==NULL)
  150. {
  151. kfree(client);
  152. return -ENOMEM;
  153. }
  154. memset(t, 0, sizeof(*t));
  155. strcpy(client->name, IF_NAME);
  156. init_MUTEX(&t->lock);
  157. /*
  158.  * Now create a video4linux device
  159.  */
  160.  
  161. client->data = vd=(struct video_device *)kmalloc(sizeof(struct video_device), GFP_KERNEL);
  162. if(vd==NULL)
  163. {
  164. kfree(t);
  165. kfree(client);
  166. return -ENOMEM;
  167. }
  168. memcpy(vd, &saa_template, sizeof(*vd));
  169. for (pgbuf = 0; pgbuf < NUM_DAUS; pgbuf++) 
  170. {
  171. memset(t->vdau[pgbuf].pgbuf, ' ', sizeof(t->vdau[0].pgbuf));
  172. memset(t->vdau[pgbuf].sregs, 0, sizeof(t->vdau[0].sregs));
  173. memset(t->vdau[pgbuf].laststat, 0, sizeof(t->vdau[0].laststat));
  174. t->vdau[pgbuf].expire = 0;
  175. t->vdau[pgbuf].clrfound = TRUE;
  176. t->vdau[pgbuf].stopped = TRUE;
  177. t->is_searching[pgbuf] = FALSE;
  178. }
  179. vd->priv=t;
  180.  
  181. /*
  182.  * Register it
  183.  */
  184. if((err=video_register_device(vd, VFL_TYPE_VTX,-1))<0)
  185. {
  186. kfree(t);
  187. kfree(vd);
  188. kfree(client);
  189. return err;
  190. }
  191. t->client = client;
  192. i2c_attach_client(client);
  193. MOD_INC_USE_COUNT;
  194. return 0;
  195. }
  196. /*
  197.  * We do most of the hard work when we become a device on the i2c.
  198.  */
  199.  
  200. static int saa5249_probe(struct i2c_adapter *adap)
  201. {
  202. /* Only attach these chips to the BT848 bus for now */
  203. if (adap->id == (I2C_ALGO_BIT | I2C_HW_B_BT848))
  204. {
  205. return i2c_probe(adap, &addr_data, saa5249_attach);
  206. }
  207. return 0;
  208. }
  209. static int saa5249_detach(struct i2c_client *client)
  210. {
  211. struct video_device *vd=client->data;
  212. i2c_detach_client(client);
  213. video_unregister_device(vd);
  214. kfree(vd->priv);
  215. kfree(vd);
  216. kfree(client);
  217. MOD_DEC_USE_COUNT;
  218. return 0;
  219. }
  220. static int saa5249_command(struct i2c_client *device,
  221.      unsigned int cmd, void *arg)
  222. {
  223. return -EINVAL;
  224. }
  225. /* new I2C driver support */
  226. static struct i2c_driver i2c_driver_videotext = 
  227. {
  228. IF_NAME, /* name */
  229. I2C_DRIVERID_SAA5249, /* in i2c.h */
  230. I2C_DF_NOTIFY,
  231. saa5249_probe,
  232. saa5249_detach,
  233. saa5249_command
  234. };
  235. static struct i2c_client client_template = {
  236. "(unset)",
  237. -1,
  238. 0,
  239. 0,
  240. NULL,
  241. &i2c_driver_videotext
  242. };
  243. /*
  244.  * Wait the given number of jiffies (10ms). This calls the scheduler, so the actual
  245.  * delay may be longer.
  246.  */
  247. static void jdelay(unsigned long delay) 
  248. {
  249. sigset_t oldblocked = current->blocked;
  250. spin_lock_irq(&current->sigmask_lock);
  251. sigfillset(&current->blocked);
  252. recalc_sigpending(current);
  253. spin_unlock_irq(&current->sigmask_lock);
  254. current->state = TASK_INTERRUPTIBLE;
  255. schedule_timeout(delay);
  256. spin_lock_irq(&current->sigmask_lock);
  257. current->blocked = oldblocked;
  258. recalc_sigpending(current);
  259. spin_unlock_irq(&current->sigmask_lock);
  260. }
  261. /*
  262.  * I2C interfaces
  263.  */
  264.  
  265. static int i2c_sendbuf(struct saa5249_device *t, int reg, int count, u8 *data) 
  266. {
  267. char buf[64];
  268. buf[0] = reg;
  269. memcpy(buf+1, data, count);
  270. if(i2c_master_send(t->client, buf, count+1)==count+1)
  271. return 0;
  272. return -1;
  273. }
  274. static int i2c_senddata(struct saa5249_device *t, ...)
  275. {
  276. unsigned char buf[64];
  277. int v;
  278. int ct=0;
  279. va_list argp;
  280. va_start(argp,t);
  281. while((v=va_arg(argp,int))!=-1)
  282. buf[ct++]=v;
  283. return i2c_sendbuf(t, buf[0], ct-1, buf+1);
  284. }
  285. /* Get count number of bytes from I睠-device at address adr, store them in buf. Start & stop
  286.  * handshaking is done by this routine, ack will be sent after the last byte to inhibit further
  287.  * sending of data. If uaccess is TRUE, data is written to user-space with put_user.
  288.  * Returns -1 if I睠-device didn't send acknowledge, 0 otherwise
  289.  */
  290. static int i2c_getdata(struct saa5249_device *t, int count, u8 *buf) 
  291. {
  292. if(i2c_master_recv(t->client, buf, count)!=count)
  293. return -1;
  294. return 0;
  295. }
  296. /*
  297.  * Standard character-device-driver functions
  298.  */
  299. static int do_saa5249_ioctl(struct saa5249_device *t, unsigned int cmd, void *arg) 
  300. {
  301. static int virtual_mode = FALSE;
  302. switch(cmd) 
  303. {
  304. case VTXIOCGETINFO: 
  305. {
  306. vtx_info_t info;
  307. info.version_major = VTX_VER_MAJ;
  308. info.version_minor = VTX_VER_MIN;
  309. info.numpages = NUM_DAUS;
  310. /*info.cct_type = CCT_TYPE;*/
  311. if(copy_to_user((void*)arg, &info, sizeof(vtx_info_t)))
  312. return -EFAULT;
  313. return 0;
  314. }
  315. case VTXIOCCLRPAGE: 
  316. {
  317. vtx_pagereq_t req;
  318.       
  319. if(copy_from_user(&req, (void*)arg, sizeof(vtx_pagereq_t)))
  320. return -EFAULT;
  321. if (req.pgbuf < 0 || req.pgbuf >= NUM_DAUS)
  322. return -EINVAL;
  323. memset(t->vdau[req.pgbuf].pgbuf, ' ', sizeof(t->vdau[0].pgbuf));
  324. t->vdau[req.pgbuf].clrfound = TRUE;
  325. return 0;
  326. }
  327. case VTXIOCCLRFOUND: 
  328. {
  329. vtx_pagereq_t req;
  330.       
  331. if(copy_from_user(&req, (void*)arg, sizeof(vtx_pagereq_t)))
  332. return -EFAULT;
  333. if (req.pgbuf < 0 || req.pgbuf >= NUM_DAUS)
  334. return -EINVAL;
  335. t->vdau[req.pgbuf].clrfound = TRUE;
  336. return 0;
  337. }
  338. case VTXIOCPAGEREQ: 
  339. {
  340. vtx_pagereq_t req;
  341. if(copy_from_user(&req, (void*)arg, sizeof(vtx_pagereq_t)))
  342. return -EFAULT;
  343. if (!(req.pagemask & PGMASK_PAGE))
  344. req.page = 0;
  345. if (!(req.pagemask & PGMASK_HOUR))
  346. req.hour = 0;
  347. if (!(req.pagemask & PGMASK_MINUTE))
  348. req.minute = 0;
  349. if (req.page < 0 || req.page > 0x8ff) /* 7FF ?? */
  350. return -EINVAL;
  351. req.page &= 0x7ff;
  352. if (req.hour < 0 || req.hour > 0x3f || req.minute < 0 || req.minute > 0x7f ||
  353. req.pagemask < 0 || req.pagemask >= PGMASK_MAX || req.pgbuf < 0 || req.pgbuf >= NUM_DAUS)
  354. return -EINVAL;
  355. t->vdau[req.pgbuf].sregs[0] = (req.pagemask & PG_HUND ? 0x10 : 0) | (req.page / 0x100);
  356. t->vdau[req.pgbuf].sregs[1] = (req.pagemask & PG_TEN ? 0x10 : 0) | ((req.page / 0x10) & 0xf);
  357. t->vdau[req.pgbuf].sregs[2] = (req.pagemask & PG_UNIT ? 0x10 : 0) | (req.page & 0xf);
  358. t->vdau[req.pgbuf].sregs[3] = (req.pagemask & HR_TEN ? 0x10 : 0) | (req.hour / 0x10);
  359. t->vdau[req.pgbuf].sregs[4] = (req.pagemask & HR_UNIT ? 0x10 : 0) | (req.hour & 0xf);
  360. t->vdau[req.pgbuf].sregs[5] = (req.pagemask & MIN_TEN ? 0x10 : 0) | (req.minute / 0x10);
  361. t->vdau[req.pgbuf].sregs[6] = (req.pagemask & MIN_UNIT ? 0x10 : 0) | (req.minute & 0xf);
  362. t->vdau[req.pgbuf].stopped = FALSE;
  363. t->vdau[req.pgbuf].clrfound = TRUE;
  364. t->is_searching[req.pgbuf] = TRUE;
  365. return 0;
  366. }
  367. case VTXIOCGETSTAT: 
  368. {
  369. vtx_pagereq_t req;
  370. u8 infobits[10];
  371. vtx_pageinfo_t info;
  372. int a;
  373. if(copy_from_user(&req, (void*)arg, sizeof(vtx_pagereq_t)))
  374. return -EFAULT;
  375. if (req.pgbuf < 0 || req.pgbuf >= NUM_DAUS)
  376. return -EINVAL;
  377. if (!t->vdau[req.pgbuf].stopped) 
  378. {
  379. if (i2c_senddata(t, 2, 0, -1) ||
  380. i2c_sendbuf(t, 3, sizeof(t->vdau[0].sregs), t->vdau[req.pgbuf].sregs) ||
  381. i2c_senddata(t, 8, 0, 25, 0, ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', -1) ||
  382. i2c_senddata(t, 2, 0, t->vdau[req.pgbuf].sregs[0] | 8, -1) ||
  383. i2c_senddata(t, 8, 0, 25, 0, -1))
  384. return -EIO;
  385. jdelay(PAGE_WAIT);
  386. if (i2c_getdata(t, 10, infobits))
  387. return -EIO;
  388. if (!(infobits[8] & 0x10) && !(infobits[7] & 0xf0) && /* check FOUND-bit */
  389. (memcmp(infobits, t->vdau[req.pgbuf].laststat, sizeof(infobits)) || 
  390. time_after_eq(jiffies, t->vdau[req.pgbuf].expire)))
  391. { /* check if new page arrived */
  392. if (i2c_senddata(t, 8, 0, 0, 0, -1) ||
  393. i2c_getdata(t, VTX_PAGESIZE, t->vdau[req.pgbuf].pgbuf))
  394. return -EIO;
  395. t->vdau[req.pgbuf].expire = jiffies + PGBUF_EXPIRE;
  396. memset(t->vdau[req.pgbuf].pgbuf + VTX_PAGESIZE, ' ', VTX_VIRTUALSIZE - VTX_PAGESIZE);
  397. if (t->virtual_mode) 
  398. {
  399. /* Packet X/24 */
  400. if (i2c_senddata(t, 8, 0, 0x20, 0, -1) ||
  401. i2c_getdata(t, 40, t->vdau[req.pgbuf].pgbuf + VTX_PAGESIZE + 20 * 40))
  402. return -EIO;
  403. /* Packet X/27/0 */
  404. if (i2c_senddata(t, 8, 0, 0x21, 0, -1) ||
  405. i2c_getdata(t, 40, t->vdau[req.pgbuf].pgbuf + VTX_PAGESIZE + 16 * 40))
  406. return -EIO;
  407. /* Packet 8/30/0...8/30/15
  408.  * FIXME: AFAIK, the 5249 does hamming-decoding for some bytes in packet 8/30,
  409.  *        so we should undo this here.
  410.  */
  411. if (i2c_senddata(t, 8, 0, 0x22, 0, -1) ||
  412. i2c_getdata(t, 40, t->vdau[req.pgbuf].pgbuf + VTX_PAGESIZE + 23 * 40))
  413. return -EIO;
  414. }
  415. t->vdau[req.pgbuf].clrfound = FALSE;
  416. memcpy(t->vdau[req.pgbuf].laststat, infobits, sizeof(infobits));
  417. }
  418. else
  419. {
  420. memcpy(infobits, t->vdau[req.pgbuf].laststat, sizeof(infobits));
  421. }
  422. }
  423. else
  424. {
  425. memcpy(infobits, t->vdau[req.pgbuf].laststat, sizeof(infobits));
  426. }
  427. info.pagenum = ((infobits[8] << 8) & 0x700) | ((infobits[1] << 4) & 0xf0) | (infobits[0] & 0x0f);
  428. if (info.pagenum < 0x100)
  429. info.pagenum += 0x800;
  430. info.hour = ((infobits[5] << 4) & 0x30) | (infobits[4] & 0x0f);
  431. info.minute = ((infobits[3] << 4) & 0x70) | (infobits[2] & 0x0f);
  432. info.charset = ((infobits[7] >> 1) & 7);
  433. info.delete = !!(infobits[3] & 8);
  434. info.headline = !!(infobits[5] & 4);
  435. info.subtitle = !!(infobits[5] & 8);
  436. info.supp_header = !!(infobits[6] & 1);
  437. info.update = !!(infobits[6] & 2);
  438. info.inter_seq = !!(infobits[6] & 4);
  439. info.dis_disp = !!(infobits[6] & 8);
  440. info.serial = !!(infobits[7] & 1);
  441. info.notfound = !!(infobits[8] & 0x10);
  442. info.pblf = !!(infobits[9] & 0x20);
  443. info.hamming = 0;
  444. for (a = 0; a <= 7; a++) 
  445. {
  446. if (infobits[a] & 0xf0) 
  447. {
  448. info.hamming = 1;
  449. break;
  450. }
  451. }
  452. if (t->vdau[req.pgbuf].clrfound)
  453. info.notfound = 1;
  454. if(copy_to_user(req.buffer, &info, sizeof(vtx_pageinfo_t)))
  455. return -EFAULT;
  456. if (!info.hamming && !info.notfound) 
  457. {
  458. t->is_searching[req.pgbuf] = FALSE;
  459. }
  460. return 0;
  461. }
  462. case VTXIOCGETPAGE: 
  463. {
  464. vtx_pagereq_t req;
  465. int start, end;
  466. if(copy_from_user(&req, (void*)arg, sizeof(vtx_pagereq_t)))
  467. return -EFAULT;
  468. if (req.pgbuf < 0 || req.pgbuf >= NUM_DAUS || req.start < 0 ||
  469. req.start > req.end || req.end >= (virtual_mode ? VTX_VIRTUALSIZE : VTX_PAGESIZE))
  470. return -EINVAL;
  471. if(copy_to_user(req.buffer, &t->vdau[req.pgbuf].pgbuf[req.start], req.end - req.start + 1))
  472. return -EFAULT;
  473.  /* 
  474.   * Always read the time directly from SAA5249
  475.   */
  476.   
  477. if (req.start <= 39 && req.end >= 32) 
  478. {
  479. int len;
  480. char buf[16];  
  481. start = MAX(req.start, 32);
  482. end = MIN(req.end, 39);
  483. len=end-start+1;
  484. if (i2c_senddata(t, 8, 0, 0, start, -1) ||
  485. i2c_getdata(t, len, buf))
  486. return -EIO;
  487. if(copy_to_user(req.buffer+start-req.start, buf, len))
  488. return -EFAULT;
  489. }
  490. /* Insert the current header if DAU is still searching for a page */
  491. if (req.start <= 31 && req.end >= 7 && t->is_searching[req.pgbuf]) 
  492. {
  493. char buf[32];
  494. int len;
  495. start = MAX(req.start, 7);
  496. end = MIN(req.end, 31);
  497. len=end-start+1;
  498. if (i2c_senddata(t, 8, 0, 0, start, -1) ||
  499. i2c_getdata(t, len, buf))
  500. return -EIO;
  501. if(copy_to_user(req.buffer+start-req.start, buf, len))
  502. return -EFAULT;
  503. }
  504. return 0;
  505. }
  506. case VTXIOCSTOPDAU: 
  507. {
  508. vtx_pagereq_t req;
  509. if(copy_from_user(&req, (void*)arg, sizeof(vtx_pagereq_t)))
  510. return -EFAULT;
  511. if (req.pgbuf < 0 || req.pgbuf >= NUM_DAUS)
  512. return -EINVAL;
  513. t->vdau[req.pgbuf].stopped = TRUE;
  514. t->is_searching[req.pgbuf] = FALSE;
  515. return 0;
  516. }
  517. case VTXIOCPUTPAGE: 
  518. case VTXIOCSETDISP: 
  519. case VTXIOCPUTSTAT: 
  520. return 0;
  521. case VTXIOCCLRCACHE: 
  522. {
  523. if (i2c_senddata(t, 0, NUM_DAUS, 0, 8, -1) || i2c_senddata(t, 11,
  524. ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',
  525. ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ', -1))
  526. return -EIO;
  527. if (i2c_senddata(t, 3, 0x20, -1))
  528. return -EIO;
  529. jdelay(10 * CLEAR_DELAY); /* I have no idea how long we have to wait here */
  530. return 0;
  531. }
  532. case VTXIOCSETVIRT: 
  533. {
  534. /* The SAA5249 has virtual-row reception turned on always */
  535. t->virtual_mode = (int)arg;
  536. return 0;
  537. }
  538. }
  539. return -EINVAL;
  540. }
  541. /*
  542.  * Handle the locking
  543.  */
  544.  
  545. static int saa5249_ioctl(struct video_device *vd, unsigned int cmd, void *arg) 
  546. {
  547. struct saa5249_device *t=vd->priv;
  548. int err;
  549. down(&t->lock);
  550. err = do_saa5249_ioctl(t, cmd, arg);
  551. up(&t->lock);
  552. return err;
  553. }
  554. static int saa5249_open(struct video_device *vd, int nb) 
  555. {
  556. struct saa5249_device *t=vd->priv;
  557. int pgbuf;
  558. if (t->client==NULL) 
  559. return -ENODEV;
  560. if (i2c_senddata(t, 0, 0, -1) || /* Select R11 */
  561. /* Turn off parity checks (we do this ourselves) */
  562. i2c_senddata(t, 1, disp_modes[t->disp_mode][0], 0, -1) ||
  563. /* Display TV-picture, no virtual rows */
  564. 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 */
  565. {
  566. return -EIO;
  567. }
  568. for (pgbuf = 0; pgbuf < NUM_DAUS; pgbuf++) 
  569. {
  570. memset(t->vdau[pgbuf].pgbuf, ' ', sizeof(t->vdau[0].pgbuf));
  571. memset(t->vdau[pgbuf].sregs, 0, sizeof(t->vdau[0].sregs));
  572. memset(t->vdau[pgbuf].laststat, 0, sizeof(t->vdau[0].laststat));
  573. t->vdau[pgbuf].expire = 0;
  574. t->vdau[pgbuf].clrfound = TRUE;
  575. t->vdau[pgbuf].stopped = TRUE;
  576. t->is_searching[pgbuf] = FALSE;
  577. }
  578. t->virtual_mode=FALSE;
  579. return 0;
  580. }
  581. static void saa5249_release(struct video_device *vd) 
  582. {
  583. struct saa5249_device *t=vd->priv;
  584. i2c_senddata(t, 1, 0x20, -1); /* Turn off CCT */
  585. i2c_senddata(t, 5, 3, 3, -1); /* Turn off TV-display */
  586. return;
  587. }
  588. static long saa5249_write(struct video_device *v, const char *buf, unsigned long l, int nb)
  589. {
  590. return -EINVAL;
  591. }
  592. static int __init init_saa_5249 (void)
  593. {
  594. printk(KERN_INFO "SAA5249 driver (" IF_NAME " interface) for VideoText version %d.%dn",
  595. VTX_VER_MAJ, VTX_VER_MIN);
  596. return i2c_add_driver(&i2c_driver_videotext);
  597. }
  598. static void __exit cleanup_saa_5249 (void) 
  599. {
  600. i2c_del_driver(&i2c_driver_videotext);
  601. }
  602. module_init(init_saa_5249);
  603. module_exit(cleanup_saa_5249);
  604. static struct video_device saa_template =
  605. {
  606. owner: THIS_MODULE,
  607. name: IF_NAME,
  608. type: VID_TYPE_TELETEXT, /*| VID_TYPE_TUNER ?? */
  609. hardware: VID_HARDWARE_SAA5249,
  610. open: saa5249_open,
  611. close: saa5249_release,
  612. write: saa5249_write,
  613. ioctl: saa5249_ioctl,
  614. };
  615. MODULE_LICENSE("GPL");