V4L/DVB (6340): ivtvfb: screen mode change sometimes goes wrong
[linux-2.6/x86.git] / drivers / media / video / tuner-3036.c
blobbdf506e6ae279a8fd296e2096f80eb75319b6ba8
1 /*
2 * Driver for Philips SAB3036 "CITAC" tuner control chip.
4 * Author: Phil Blundell <philb@gnu.org>
6 * The SAB3036 is just about different enough from the chips that
7 * tuner.c copes with to make it not worth the effort to crowbar
8 * the support into that file. So instead we have a separate driver.
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version
13 * 2 of the License, or (at your option) any later version.
16 #include <linux/module.h>
17 #include <linux/kernel.h>
18 #include <linux/sched.h>
19 #include <linux/string.h>
20 #include <linux/timer.h>
21 #include <linux/delay.h>
22 #include <linux/errno.h>
23 #include <linux/slab.h>
24 #include <linux/init.h>
26 #include <linux/i2c.h>
27 #include <linux/videodev.h>
28 #include <media/v4l2-common.h>
30 #include <media/tuner.h>
32 static int debug; /* insmod parameter */
33 static int this_adap;
35 static struct i2c_client client_template;
37 /* Addresses to scan */
38 static unsigned short normal_i2c[] = { 0x60, 0x61, I2C_CLIENT_END };
39 static unsigned short ignore = I2C_CLIENT_END;
41 static struct i2c_client_address_data addr_data = {
42 .normal_i2c = normal_i2c,
43 .probe = &ignore,
44 .ignore = &ignore,
47 /* ---------------------------------------------------------------------- */
49 static unsigned char
50 tuner_getstatus (struct i2c_client *c)
52 unsigned char byte;
53 if (i2c_master_recv(c, &byte, 1) != 1)
54 printk(KERN_ERR "tuner-3036: I/O error.\n");
55 return byte;
58 #define TUNER_FL 0x80
60 static int
61 tuner_islocked (struct i2c_client *c)
63 return (tuner_getstatus(c) & TUNER_FL);
66 /* ---------------------------------------------------------------------- */
68 static void
69 set_tv_freq(struct i2c_client *c, int freq)
71 u16 div = ((freq * 20) / 16);
72 unsigned long give_up = jiffies + HZ;
73 unsigned char buffer[2];
75 if (debug)
76 printk(KERN_DEBUG "tuner: setting frequency %dMHz, divisor %x\n", freq / 16, div);
78 /* Select high tuning current */
79 buffer[0] = 0x29;
80 buffer[1] = 0x3e;
82 if (i2c_master_send(c, buffer, 2) != 2)
83 printk("tuner: i2c i/o error 1\n");
85 buffer[0] = 0x80 | ((div>>8) & 0x7f);
86 buffer[1] = div & 0xff;
88 if (i2c_master_send(c, buffer, 2) != 2)
89 printk("tuner: i2c i/o error 2\n");
91 while (!tuner_islocked(c) && time_before(jiffies, give_up))
92 schedule();
94 if (!tuner_islocked(c))
95 printk(KERN_WARNING "tuner: failed to achieve PLL lock\n");
97 /* Select low tuning current and engage AFC */
98 buffer[0] = 0x29;
99 buffer[1] = 0xb2;
101 if (i2c_master_send(c, buffer, 2) != 2)
102 printk("tuner: i2c i/o error 3\n");
104 if (debug)
105 printk(KERN_DEBUG "tuner: status %02x\n", tuner_getstatus(c));
108 /* ---------------------------------------------------------------------- */
110 static int
111 tuner_attach(struct i2c_adapter *adap, int addr, int kind)
113 static unsigned char buffer[] = { 0x29, 0x32, 0x2a, 0, 0x2b, 0 };
115 struct i2c_client *client;
117 if (this_adap > 0)
118 return -1;
119 this_adap++;
121 client_template.adapter = adap;
122 client_template.addr = addr;
124 client = kmalloc(sizeof(struct i2c_client), GFP_KERNEL);
125 if (client == NULL)
126 return -ENOMEM;
127 memcpy(client, &client_template, sizeof(struct i2c_client));
129 printk("tuner: SAB3036 found, status %02x\n", tuner_getstatus(client));
131 i2c_attach_client(client);
133 if (i2c_master_send(client, buffer, 2) != 2)
134 printk("tuner: i2c i/o error 1\n");
135 if (i2c_master_send(client, buffer+2, 2) != 2)
136 printk("tuner: i2c i/o error 2\n");
137 if (i2c_master_send(client, buffer+4, 2) != 2)
138 printk("tuner: i2c i/o error 3\n");
139 return 0;
142 static int
143 tuner_detach(struct i2c_client *c)
145 return 0;
148 static int
149 tuner_command(struct i2c_client *client, unsigned int cmd, void *arg)
151 int *iarg = (int*)arg;
153 switch (cmd)
155 case VIDIOCSFREQ:
156 set_tv_freq(client, *iarg);
157 break;
159 default:
160 return -EINVAL;
162 return 0;
165 static int
166 tuner_probe(struct i2c_adapter *adap)
168 this_adap = 0;
169 if (adap->id == I2C_HW_B_LP)
170 return i2c_probe(adap, &addr_data, tuner_attach);
171 return 0;
174 /* ----------------------------------------------------------------------- */
176 static struct i2c_driver
177 i2c_driver_tuner =
179 .driver = {
180 .name = "sab3036",
182 .id = I2C_DRIVERID_SAB3036,
183 .attach_adapter = tuner_probe,
184 .detach_client = tuner_detach,
185 .command = tuner_command
188 static struct i2c_client client_template =
190 .driver = &i2c_driver_tuner,
191 .name = "SAB3036",
194 static int __init
195 tuner3036_init(void)
197 return i2c_add_driver(&i2c_driver_tuner);
200 static void __exit
201 tuner3036_exit(void)
203 i2c_del_driver(&i2c_driver_tuner);
206 MODULE_DESCRIPTION("SAB3036 tuner driver");
207 MODULE_AUTHOR("Philip Blundell <philb@gnu.org>");
208 MODULE_LICENSE("GPL");
210 module_param(debug, int, 0);
211 MODULE_PARM_DESC(debug,"Enable debugging output");
213 module_init(tuner3036_init);
214 module_exit(tuner3036_exit);