936e01d2c785b25e65b7d108b9e0b887940fce3f
[deliverable/linux.git] / drivers / media / video / tvmixer.c
1 /*
2 */
3
4 #include <linux/module.h>
5 #include <linux/moduleparam.h>
6 #include <linux/kernel.h>
7 #include <linux/sched.h>
8 #include <linux/string.h>
9 #include <linux/timer.h>
10 #include <linux/delay.h>
11 #include <linux/errno.h>
12 #include <linux/slab.h>
13 #include <linux/i2c.h>
14 #include <linux/videodev.h>
15 #include <linux/init.h>
16 #include <linux/kdev_t.h>
17 #include <linux/sound.h>
18 #include <linux/soundcard.h>
19
20 #include <asm/semaphore.h>
21 #include <asm/uaccess.h>
22
23
24 #define DEV_MAX 4
25
26 static int devnr = -1;
27 module_param(devnr, int, 0644);
28
29 MODULE_AUTHOR("Gerd Knorr");
30 MODULE_LICENSE("GPL");
31
32 /* ----------------------------------------------------------------------- */
33
34 struct TVMIXER {
35 struct i2c_client *dev;
36 int minor;
37 int count;
38 };
39
40 static struct TVMIXER devices[DEV_MAX];
41
42 static int tvmixer_adapters(struct i2c_adapter *adap);
43 static int tvmixer_clients(struct i2c_client *client);
44
45 /* ----------------------------------------------------------------------- */
46
47 static int mix_to_v4l(int i)
48 {
49 int r;
50
51 r = ((i & 0xff) * 65536 + 50) / 100;
52 if (r > 65535) r = 65535;
53 if (r < 0) r = 0;
54 return r;
55 }
56
57 static int v4l_to_mix(int i)
58 {
59 int r;
60
61 r = (i * 100 + 32768) / 65536;
62 if (r > 100) r = 100;
63 if (r < 0) r = 0;
64 return r | (r << 8);
65 }
66
67 static int v4l_to_mix2(int l, int r)
68 {
69 r = (r * 100 + 32768) / 65536;
70 if (r > 100) r = 100;
71 if (r < 0) r = 0;
72 l = (l * 100 + 32768) / 65536;
73 if (l > 100) l = 100;
74 if (l < 0) l = 0;
75 return (r << 8) | l;
76 }
77
78 static int tvmixer_ioctl(struct inode *inode, struct file *file, unsigned int cmd, unsigned long arg)
79 {
80 struct video_audio va;
81 int left,right,ret,val = 0;
82 struct TVMIXER *mix = file->private_data;
83 struct i2c_client *client = mix->dev;
84 void __user *argp = (void __user *)arg;
85 int __user *p = argp;
86
87 if (NULL == client)
88 return -ENODEV;
89
90 if (cmd == SOUND_MIXER_INFO) {
91 mixer_info info;
92 strlcpy(info.id, "tv card", sizeof(info.id));
93 strlcpy(info.name, client->name, sizeof(info.name));
94 info.modify_counter = 42 /* FIXME */;
95 if (copy_to_user(argp, &info, sizeof(info)))
96 return -EFAULT;
97 return 0;
98 }
99 if (cmd == SOUND_OLD_MIXER_INFO) {
100 _old_mixer_info info;
101 strlcpy(info.id, "tv card", sizeof(info.id));
102 strlcpy(info.name, client->name, sizeof(info.name));
103 if (copy_to_user(argp, &info, sizeof(info)))
104 return -EFAULT;
105 return 0;
106 }
107 if (cmd == OSS_GETVERSION)
108 return put_user(SOUND_VERSION, p);
109
110 if (_SIOC_DIR(cmd) & _SIOC_WRITE)
111 if (get_user(val, p))
112 return -EFAULT;
113
114 /* read state */
115 memset(&va,0,sizeof(va));
116 client->driver->command(client,VIDIOCGAUDIO,&va);
117
118 switch (cmd) {
119 case MIXER_READ(SOUND_MIXER_RECMASK):
120 case MIXER_READ(SOUND_MIXER_CAPS):
121 case MIXER_READ(SOUND_MIXER_RECSRC):
122 case MIXER_WRITE(SOUND_MIXER_RECSRC):
123 ret = 0;
124 break;
125
126 case MIXER_READ(SOUND_MIXER_STEREODEVS):
127 ret = SOUND_MASK_VOLUME;
128 break;
129 case MIXER_READ(SOUND_MIXER_DEVMASK):
130 ret = SOUND_MASK_VOLUME;
131 if (va.flags & VIDEO_AUDIO_BASS)
132 ret |= SOUND_MASK_BASS;
133 if (va.flags & VIDEO_AUDIO_TREBLE)
134 ret |= SOUND_MASK_TREBLE;
135 break;
136
137 case MIXER_WRITE(SOUND_MIXER_VOLUME):
138 left = mix_to_v4l(val);
139 right = mix_to_v4l(val >> 8);
140 va.volume = max(left,right);
141 va.balance = (32768*min(left,right)) / (va.volume ? va.volume : 1);
142 va.balance = (left<right) ? (65535-va.balance) : va.balance;
143 if (va.volume)
144 va.flags &= ~VIDEO_AUDIO_MUTE;
145 client->driver->command(client,VIDIOCSAUDIO,&va);
146 client->driver->command(client,VIDIOCGAUDIO,&va);
147 /* fall throuth */
148 case MIXER_READ(SOUND_MIXER_VOLUME):
149 left = (min(65536 - va.balance,32768) *
150 va.volume) / 32768;
151 right = (min(va.balance,(u16)32768) *
152 va.volume) / 32768;
153 ret = v4l_to_mix2(left,right);
154 break;
155
156 case MIXER_WRITE(SOUND_MIXER_BASS):
157 va.bass = mix_to_v4l(val);
158 client->driver->command(client,VIDIOCSAUDIO,&va);
159 client->driver->command(client,VIDIOCGAUDIO,&va);
160 /* fall throuth */
161 case MIXER_READ(SOUND_MIXER_BASS):
162 ret = v4l_to_mix(va.bass);
163 break;
164
165 case MIXER_WRITE(SOUND_MIXER_TREBLE):
166 va.treble = mix_to_v4l(val);
167 client->driver->command(client,VIDIOCSAUDIO,&va);
168 client->driver->command(client,VIDIOCGAUDIO,&va);
169 /* fall throuth */
170 case MIXER_READ(SOUND_MIXER_TREBLE):
171 ret = v4l_to_mix(va.treble);
172 break;
173
174 default:
175 return -EINVAL;
176 }
177 if (put_user(ret, p))
178 return -EFAULT;
179 return 0;
180 }
181
182 static int tvmixer_open(struct inode *inode, struct file *file)
183 {
184 int i, minor = iminor(inode);
185 struct TVMIXER *mix = NULL;
186 struct i2c_client *client = NULL;
187
188 for (i = 0; i < DEV_MAX; i++) {
189 if (devices[i].minor == minor) {
190 mix = devices+i;
191 client = mix->dev;
192 break;
193 }
194 }
195
196 if (NULL == client)
197 return -ENODEV;
198
199 /* lock bttv in memory while the mixer is in use */
200 file->private_data = mix;
201 #ifndef I2C_PEC
202 if (client->adapter->inc_use)
203 client->adapter->inc_use(client->adapter);
204 #endif
205 if (client->adapter->owner)
206 try_module_get(client->adapter->owner);
207 return 0;
208 }
209
210 static int tvmixer_release(struct inode *inode, struct file *file)
211 {
212 struct TVMIXER *mix = file->private_data;
213 struct i2c_client *client;
214
215 client = mix->dev;
216 if (NULL == client) {
217 return -ENODEV;
218 }
219
220 #ifndef I2C_PEC
221 if (client->adapter->dec_use)
222 client->adapter->dec_use(client->adapter);
223 #endif
224 if (client->adapter->owner)
225 module_put(client->adapter->owner);
226 return 0;
227 }
228
229 static struct i2c_driver driver = {
230 #ifdef I2C_PEC
231 .owner = THIS_MODULE,
232 #endif
233 .name = "tv card mixer driver",
234 .id = I2C_DRIVERID_TVMIXER,
235 .detach_adapter = tvmixer_adapters,
236 .attach_adapter = tvmixer_adapters,
237 .detach_client = tvmixer_clients,
238 };
239
240 static struct file_operations tvmixer_fops = {
241 .owner = THIS_MODULE,
242 .llseek = no_llseek,
243 .ioctl = tvmixer_ioctl,
244 .open = tvmixer_open,
245 .release = tvmixer_release,
246 };
247
248 /* ----------------------------------------------------------------------- */
249
250 static int tvmixer_adapters(struct i2c_adapter *adap)
251 {
252 struct list_head *item;
253 struct i2c_client *client;
254
255 list_for_each(item,&adap->clients) {
256 client = list_entry(item, struct i2c_client, list);
257 tvmixer_clients(client);
258 }
259 return 0;
260 }
261
262 static int tvmixer_clients(struct i2c_client *client)
263 {
264 struct video_audio va;
265 int i,minor;
266
267 #ifdef I2C_CLASS_TV_ANALOG
268 if (!(client->adapter->class & I2C_CLASS_TV_ANALOG))
269 return -1;
270 #else
271 /* TV card ??? */
272 switch (client->adapter->id) {
273 case I2C_HW_SMBUS_VOODOO3:
274 case I2C_HW_B_BT848:
275 case I2C_HW_B_RIVA:
276 /* ok, have a look ... */
277 break;
278 default:
279 /* ignore that one */
280 return -1;
281 }
282 #endif
283
284 /* unregister ?? */
285 for (i = 0; i < DEV_MAX; i++) {
286 if (devices[i].dev == client) {
287 /* unregister */
288 unregister_sound_mixer(devices[i].minor);
289 devices[i].dev = NULL;
290 devices[i].minor = -1;
291 printk("tvmixer: %s unregistered (#1)\n",
292 client->name);
293 return 0;
294 }
295 }
296
297 /* look for a free slot */
298 for (i = 0; i < DEV_MAX; i++)
299 if (NULL == devices[i].dev)
300 break;
301 if (i == DEV_MAX) {
302 printk(KERN_WARNING "tvmixer: DEV_MAX too small\n");
303 return -1;
304 }
305
306 /* audio chip with mixer ??? */
307 if (NULL == client->driver->command)
308 return -1;
309 memset(&va,0,sizeof(va));
310 if (0 != client->driver->command(client,VIDIOCGAUDIO,&va))
311 return -1;
312 if (0 == (va.flags & VIDEO_AUDIO_VOLUME))
313 return -1;
314
315 /* everything is fine, register */
316 if ((minor = register_sound_mixer(&tvmixer_fops,devnr)) < 0) {
317 printk(KERN_ERR "tvmixer: cannot allocate mixer device\n");
318 return -1;
319 }
320
321 devices[i].minor = minor;
322 devices[i].count = 0;
323 devices[i].dev = client;
324 printk("tvmixer: %s (%s) registered with minor %d\n",
325 client->name,client->adapter->name,minor);
326
327 return 0;
328 }
329
330 /* ----------------------------------------------------------------------- */
331
332 static int __init tvmixer_init_module(void)
333 {
334 int i;
335
336 for (i = 0; i < DEV_MAX; i++)
337 devices[i].minor = -1;
338
339 return i2c_add_driver(&driver);
340 }
341
342 static void __exit tvmixer_cleanup_module(void)
343 {
344 int i;
345
346 i2c_del_driver(&driver);
347 for (i = 0; i < DEV_MAX; i++) {
348 if (devices[i].minor != -1) {
349 unregister_sound_mixer(devices[i].minor);
350 printk("tvmixer: %s unregistered (#2)\n",
351 devices[i].dev->name);
352 }
353 }
354 }
355
356 module_init(tvmixer_init_module);
357 module_exit(tvmixer_cleanup_module);
358
359 /*
360 * Overrides for Emacs so that we follow Linus's tabbing style.
361 * ---------------------------------------------------------------------------
362 * Local variables:
363 * c-basic-offset: 8
364 * End:
365 */
This page took 0.04527 seconds and 4 git commands to generate.