blob: 08f1051979cae6f7508026dc0e957a23de775795 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* Maestro PCI sound card radio driver for Linux support
2 * (c) 2000 A. Tlalka, atlka@pg.gda.pl
3 * Notes on the hardware
4 *
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -03005 * + Frequency control is done digitally
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * + No volume control - only mute/unmute - you have to use Aux line volume
7 * control on Maestro card to set the volume
8 * + Radio status (tuned/not_tuned and stereo/mono) is valid some time after
9 * frequency setting (>100ms) and only when the radio is unmuted.
10 * version 0.02
11 * + io port is automatically detected - only the first radio is used
12 * version 0.03
13 * + thread access locking additions
14 * version 0.04
15 * + code improvements
16 * + VIDEO_TUNER_LOW is permanent
Mauro Carvalho Chehabb6055d72006-08-08 09:10:02 -030017 *
18 * Converted to V4L2 API by Mauro Carvalho Chehab <mchehab@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 */
20
21#include <linux/module.h>
22#include <linux/init.h>
23#include <linux/ioport.h>
24#include <linux/delay.h>
Hans Verkuil087c6182009-03-06 13:51:08 -030025#include <linux/version.h> /* for KERNEL_VERSION MACRO */
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/pci.h>
Mauro Carvalho Chehabb6055d72006-08-08 09:10:02 -030027#include <linux/videodev2.h>
Hans Verkuil087c6182009-03-06 13:51:08 -030028#include <linux/io.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/slab.h>
Hans Verkuil087c6182009-03-06 13:51:08 -030030#include <media/v4l2-device.h>
Hans Verkuil35ea11f2008-07-20 08:12:02 -030031#include <media/v4l2-ioctl.h>
Ingo Molnar3593cab2006-02-07 06:49:14 -020032
Hans Verkuil087c6182009-03-06 13:51:08 -030033MODULE_AUTHOR("Adam Tlalka, atlka@pg.gda.pl");
34MODULE_DESCRIPTION("Radio driver for the Maestro PCI sound card radio.");
35MODULE_LICENSE("GPL");
Mauro Carvalho Chehabb6055d72006-08-08 09:10:02 -030036
Hans Verkuil087c6182009-03-06 13:51:08 -030037static int radio_nr = -1;
38module_param(radio_nr, int, 0);
39
40#define RADIO_VERSION KERNEL_VERSION(0, 0, 6)
41#define DRIVER_VERSION "0.06"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Jiri Slaby6a2cf8e2006-01-09 20:52:48 -080043#define GPIO_DATA 0x60 /* port offset from ESS_IO_BASE */
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45#define IO_MASK 4 /* mask register offset from GPIO_DATA
46 bits 1=unmask write to given bit */
47#define IO_DIR 8 /* direction register offset from GPIO_DATA
48 bits 0/1=read/write direction */
49
Jiri Slaby6a2cf8e2006-01-09 20:52:48 -080050#define GPIO6 0x0040 /* mask bits for GPIO lines */
51#define GPIO7 0x0080
52#define GPIO8 0x0100
53#define GPIO9 0x0200
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Jiri Slaby6a2cf8e2006-01-09 20:52:48 -080055#define STR_DATA GPIO6 /* radio TEA5757 pins and GPIO bits */
56#define STR_CLK GPIO7
57#define STR_WREN GPIO8
58#define STR_MOST GPIO9
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60#define FREQ_LO 50*16000
61#define FREQ_HI 150*16000
62
Jiri Slaby6a2cf8e2006-01-09 20:52:48 -080063#define FREQ_IF 171200 /* 10.7*16000 */
64#define FREQ_STEP 200 /* 12.5*16 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66#define FREQ2BITS(x) ((((unsigned int)(x)+FREQ_IF+(FREQ_STEP<<1))\
67 /(FREQ_STEP<<2))<<2) /* (x==fmhz*16*1000) -> bits */
68
69#define BITS2FREQ(x) ((x) * FREQ_STEP - FREQ_IF)
70
Hans Verkuil087c6182009-03-06 13:51:08 -030071struct maestro {
72 struct v4l2_device v4l2_dev;
73 struct video_device vdev;
74 struct pci_dev *pdev;
75 struct mutex lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Hans Verkuil087c6182009-03-06 13:51:08 -030077 u16 io; /* base of Maestro card radio io (GPIO_DATA)*/
78 u16 muted; /* VIDEO_AUDIO_MUTE */
79 u16 stereo; /* VIDEO_TUNER_STEREO_ON */
80 u16 tuned; /* signal strength (0 or 0xffff) */
81};
Hans Verkuil3ca685a2008-08-23 04:49:13 -030082
Hans Verkuil087c6182009-03-06 13:51:08 -030083static inline struct maestro *to_maestro(struct v4l2_device *v4l2_dev)
Hans Verkuil3ca685a2008-08-23 04:49:13 -030084{
Hans Verkuil087c6182009-03-06 13:51:08 -030085 return container_of(v4l2_dev, struct maestro, v4l2_dev);
Hans Verkuil3ca685a2008-08-23 04:49:13 -030086}
87
Hans Verkuil087c6182009-03-06 13:51:08 -030088static u32 radio_bits_get(struct maestro *dev)
Hans Verkuil3ca685a2008-08-23 04:49:13 -030089{
Hans Verkuil087c6182009-03-06 13:51:08 -030090 u16 io = dev->io, l, rdata;
91 u32 data = 0;
Jiri Slaby0eaa21f2006-01-09 20:52:49 -080092 u16 omask;
Jiri Slaby6a2cf8e2006-01-09 20:52:48 -080093
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 omask = inw(io + IO_MASK);
95 outw(~(STR_CLK | STR_WREN), io + IO_MASK);
96 outw(0, io);
97 udelay(16);
98
Hans Verkuil087c6182009-03-06 13:51:08 -030099 for (l = 24; l--;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 outw(STR_CLK, io); /* HI state */
101 udelay(2);
Hans Verkuil087c6182009-03-06 13:51:08 -0300102 if (!l)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 dev->tuned = inw(io) & STR_MOST ? 0 : 0xffff;
104 outw(0, io); /* LO state */
105 udelay(2);
106 data <<= 1; /* shift data */
107 rdata = inw(io);
Hans Verkuil087c6182009-03-06 13:51:08 -0300108 if (!l)
109 dev->stereo = (rdata & STR_MOST) ? 0 : 1;
110 else if (rdata & STR_DATA)
111 data++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 udelay(2);
113 }
Jiri Slaby6a2cf8e2006-01-09 20:52:48 -0800114
Hans Verkuil087c6182009-03-06 13:51:08 -0300115 if (dev->muted)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 outw(STR_WREN, io);
Jiri Slaby6a2cf8e2006-01-09 20:52:48 -0800117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 udelay(4);
119 outw(omask, io + IO_MASK);
Jiri Slaby6a2cf8e2006-01-09 20:52:48 -0800120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 return data & 0x3ffe;
122}
123
Hans Verkuil087c6182009-03-06 13:51:08 -0300124static void radio_bits_set(struct maestro *dev, u32 data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125{
Hans Verkuil087c6182009-03-06 13:51:08 -0300126 u16 io = dev->io, l, bits;
Jiri Slaby0eaa21f2006-01-09 20:52:49 -0800127 u16 omask, odir;
Jiri Slaby6a2cf8e2006-01-09 20:52:48 -0800128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 omask = inw(io + IO_MASK);
Hans Verkuil087c6182009-03-06 13:51:08 -0300130 odir = (inw(io + IO_DIR) & ~STR_DATA) | (STR_CLK | STR_WREN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 outw(odir | STR_DATA, io + IO_DIR);
132 outw(~(STR_DATA | STR_CLK | STR_WREN), io + IO_MASK);
133 udelay(16);
Hans Verkuil087c6182009-03-06 13:51:08 -0300134 for (l = 25; l; l--) {
135 bits = ((data >> 18) & STR_DATA) | STR_WREN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 data <<= 1; /* shift data */
137 outw(bits, io); /* start strobe */
138 udelay(2);
139 outw(bits | STR_CLK, io); /* HI level */
140 udelay(2);
141 outw(bits, io); /* LO level */
142 udelay(4);
143 }
Jiri Slaby6a2cf8e2006-01-09 20:52:48 -0800144
Hans Verkuil087c6182009-03-06 13:51:08 -0300145 if (!dev->muted)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 outw(0, io);
Jiri Slaby6a2cf8e2006-01-09 20:52:48 -0800147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 udelay(4);
149 outw(omask, io + IO_MASK);
150 outw(odir, io + IO_DIR);
151 msleep(125);
152}
153
Douglas Landgrafd455cf52007-04-26 16:44:55 -0300154static int vidioc_querycap(struct file *file, void *priv,
155 struct v4l2_capability *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
Hans Verkuil087c6182009-03-06 13:51:08 -0300157 struct maestro *dev = video_drvdata(file);
158
Douglas Landgrafd455cf52007-04-26 16:44:55 -0300159 strlcpy(v->driver, "radio-maestro", sizeof(v->driver));
160 strlcpy(v->card, "Maestro Radio", sizeof(v->card));
Hans Verkuil087c6182009-03-06 13:51:08 -0300161 snprintf(v->bus_info, sizeof(v->bus_info), "PCI:%s", pci_name(dev->pdev));
Douglas Landgrafd455cf52007-04-26 16:44:55 -0300162 v->version = RADIO_VERSION;
Hans Verkuil087c6182009-03-06 13:51:08 -0300163 v->capabilities = V4L2_CAP_TUNER | V4L2_CAP_RADIO;
Douglas Landgrafd455cf52007-04-26 16:44:55 -0300164 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165}
166
Douglas Landgrafd455cf52007-04-26 16:44:55 -0300167static int vidioc_g_tuner(struct file *file, void *priv,
168 struct v4l2_tuner *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169{
Hans Verkuil087c6182009-03-06 13:51:08 -0300170 struct maestro *dev = video_drvdata(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Douglas Landgrafd455cf52007-04-26 16:44:55 -0300172 if (v->index > 0)
173 return -EINVAL;
Jiri Slaby6a2cf8e2006-01-09 20:52:48 -0800174
Hans Verkuil087c6182009-03-06 13:51:08 -0300175 mutex_lock(&dev->lock);
176 radio_bits_get(dev);
Douglas Landgrafd455cf52007-04-26 16:44:55 -0300177
Hans Verkuil087c6182009-03-06 13:51:08 -0300178 strlcpy(v->name, "FM", sizeof(v->name));
Douglas Landgrafd455cf52007-04-26 16:44:55 -0300179 v->type = V4L2_TUNER_RADIO;
180 v->rangelow = FREQ_LO;
181 v->rangehigh = FREQ_HI;
Hans Verkuil087c6182009-03-06 13:51:08 -0300182 v->rxsubchans = V4L2_TUNER_SUB_MONO | V4L2_TUNER_SUB_STEREO;
Douglas Landgrafd455cf52007-04-26 16:44:55 -0300183 v->capability = V4L2_TUNER_CAP_LOW;
Hans Verkuil087c6182009-03-06 13:51:08 -0300184 if (dev->stereo)
Douglas Landgrafd455cf52007-04-26 16:44:55 -0300185 v->audmode = V4L2_TUNER_MODE_STEREO;
186 else
187 v->audmode = V4L2_TUNER_MODE_MONO;
Hans Verkuil087c6182009-03-06 13:51:08 -0300188 v->signal = dev->tuned;
189 mutex_unlock(&dev->lock);
Douglas Landgrafd455cf52007-04-26 16:44:55 -0300190 return 0;
191}
192
193static int vidioc_s_tuner(struct file *file, void *priv,
194 struct v4l2_tuner *v)
195{
Hans Verkuil087c6182009-03-06 13:51:08 -0300196 return v->index ? -EINVAL : 0;
Douglas Landgrafd455cf52007-04-26 16:44:55 -0300197}
198
199static int vidioc_s_frequency(struct file *file, void *priv,
200 struct v4l2_frequency *f)
201{
Hans Verkuil087c6182009-03-06 13:51:08 -0300202 struct maestro *dev = video_drvdata(file);
Douglas Landgrafd455cf52007-04-26 16:44:55 -0300203
Hans Verkuila3a9e282009-11-27 04:33:25 -0300204 if (f->tuner != 0 || f->type != V4L2_TUNER_RADIO)
205 return -EINVAL;
Douglas Landgrafd455cf52007-04-26 16:44:55 -0300206 if (f->frequency < FREQ_LO || f->frequency > FREQ_HI)
207 return -EINVAL;
Hans Verkuil087c6182009-03-06 13:51:08 -0300208 mutex_lock(&dev->lock);
209 radio_bits_set(dev, FREQ2BITS(f->frequency));
210 mutex_unlock(&dev->lock);
Douglas Landgrafd455cf52007-04-26 16:44:55 -0300211 return 0;
212}
213
214static int vidioc_g_frequency(struct file *file, void *priv,
215 struct v4l2_frequency *f)
216{
Hans Verkuil087c6182009-03-06 13:51:08 -0300217 struct maestro *dev = video_drvdata(file);
Douglas Landgrafd455cf52007-04-26 16:44:55 -0300218
Hans Verkuila3a9e282009-11-27 04:33:25 -0300219 if (f->tuner != 0)
220 return -EINVAL;
Douglas Landgrafd455cf52007-04-26 16:44:55 -0300221 f->type = V4L2_TUNER_RADIO;
Hans Verkuil087c6182009-03-06 13:51:08 -0300222 mutex_lock(&dev->lock);
223 f->frequency = BITS2FREQ(radio_bits_get(dev));
224 mutex_unlock(&dev->lock);
Douglas Landgrafd455cf52007-04-26 16:44:55 -0300225 return 0;
226}
227
228static int vidioc_queryctrl(struct file *file, void *priv,
229 struct v4l2_queryctrl *qc)
230{
Hans Verkuil087c6182009-03-06 13:51:08 -0300231 switch (qc->id) {
232 case V4L2_CID_AUDIO_MUTE:
233 return v4l2_ctrl_query_fill(qc, 0, 1, 1, 1);
Douglas Landgrafd455cf52007-04-26 16:44:55 -0300234 }
235 return -EINVAL;
236}
237
238static int vidioc_g_ctrl(struct file *file, void *priv,
239 struct v4l2_control *ctrl)
240{
Hans Verkuil087c6182009-03-06 13:51:08 -0300241 struct maestro *dev = video_drvdata(file);
Douglas Landgrafd455cf52007-04-26 16:44:55 -0300242
243 switch (ctrl->id) {
244 case V4L2_CID_AUDIO_MUTE:
Hans Verkuil087c6182009-03-06 13:51:08 -0300245 ctrl->value = dev->muted;
Douglas Landgrafd455cf52007-04-26 16:44:55 -0300246 return 0;
247 }
248 return -EINVAL;
249}
250
251static int vidioc_s_ctrl(struct file *file, void *priv,
252 struct v4l2_control *ctrl)
253{
Hans Verkuil087c6182009-03-06 13:51:08 -0300254 struct maestro *dev = video_drvdata(file);
255 u16 io = dev->io;
256 u16 omask;
Douglas Landgrafd455cf52007-04-26 16:44:55 -0300257
258 switch (ctrl->id) {
259 case V4L2_CID_AUDIO_MUTE:
Hans Verkuil087c6182009-03-06 13:51:08 -0300260 mutex_lock(&dev->lock);
261 omask = inw(io + IO_MASK);
Douglas Landgrafd455cf52007-04-26 16:44:55 -0300262 outw(~STR_WREN, io + IO_MASK);
Hans Verkuil087c6182009-03-06 13:51:08 -0300263 dev->muted = ctrl->value;
264 outw(dev->muted ? STR_WREN : 0, io);
Douglas Landgrafd455cf52007-04-26 16:44:55 -0300265 udelay(4);
266 outw(omask, io + IO_MASK);
267 msleep(125);
Hans Verkuil087c6182009-03-06 13:51:08 -0300268 mutex_unlock(&dev->lock);
Douglas Landgrafd455cf52007-04-26 16:44:55 -0300269 return 0;
270 }
271 return -EINVAL;
272}
273
Douglas Landgrafd455cf52007-04-26 16:44:55 -0300274static int vidioc_g_input(struct file *filp, void *priv, unsigned int *i)
275{
276 *i = 0;
277 return 0;
278}
279
280static int vidioc_s_input(struct file *filp, void *priv, unsigned int i)
281{
Hans Verkuil087c6182009-03-06 13:51:08 -0300282 return i ? -EINVAL : 0;
283}
284
285static int vidioc_g_audio(struct file *file, void *priv,
286 struct v4l2_audio *a)
287{
288 a->index = 0;
289 strlcpy(a->name, "Radio", sizeof(a->name));
290 a->capability = V4L2_AUDCAP_STEREO;
Douglas Landgrafd455cf52007-04-26 16:44:55 -0300291 return 0;
292}
293
294static int vidioc_s_audio(struct file *file, void *priv,
295 struct v4l2_audio *a)
296{
Hans Verkuil087c6182009-03-06 13:51:08 -0300297 return a->index ? -EINVAL : 0;
298}
299
Hans Verkuil087c6182009-03-06 13:51:08 -0300300static const struct v4l2_file_operations maestro_fops = {
301 .owner = THIS_MODULE,
Hans Verkuil087c6182009-03-06 13:51:08 -0300302 .ioctl = video_ioctl2,
303};
304
305static const struct v4l2_ioctl_ops maestro_ioctl_ops = {
306 .vidioc_querycap = vidioc_querycap,
307 .vidioc_g_tuner = vidioc_g_tuner,
308 .vidioc_s_tuner = vidioc_s_tuner,
309 .vidioc_g_audio = vidioc_g_audio,
310 .vidioc_s_audio = vidioc_s_audio,
311 .vidioc_g_input = vidioc_g_input,
312 .vidioc_s_input = vidioc_s_input,
313 .vidioc_g_frequency = vidioc_g_frequency,
314 .vidioc_s_frequency = vidioc_s_frequency,
315 .vidioc_queryctrl = vidioc_queryctrl,
316 .vidioc_g_ctrl = vidioc_g_ctrl,
317 .vidioc_s_ctrl = vidioc_s_ctrl,
318};
319
320static u16 __devinit radio_power_on(struct maestro *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321{
Jiri Slaby0eaa21f2006-01-09 20:52:49 -0800322 register u16 io = dev->io;
323 register u32 ofreq;
324 u16 omask, odir;
Jiri Slaby6a2cf8e2006-01-09 20:52:48 -0800325
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 omask = inw(io + IO_MASK);
Jiri Slaby6a2cf8e2006-01-09 20:52:48 -0800327 odir = (inw(io + IO_DIR) & ~STR_DATA) | (STR_CLK | STR_WREN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 outw(odir & ~STR_WREN, io + IO_DIR);
Mauro Carvalho Chehabb6055d72006-08-08 09:10:02 -0300329 dev->muted = inw(io) & STR_WREN ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 outw(odir, io + IO_DIR);
331 outw(~(STR_WREN | STR_CLK), io + IO_MASK);
332 outw(dev->muted ? 0 : STR_WREN, io);
333 udelay(16);
334 outw(omask, io + IO_MASK);
335 ofreq = radio_bits_get(dev);
Jiri Slaby6a2cf8e2006-01-09 20:52:48 -0800336
337 if ((ofreq < FREQ2BITS(FREQ_LO)) || (ofreq > FREQ2BITS(FREQ_HI)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 ofreq = FREQ2BITS(FREQ_LO);
339 radio_bits_set(dev, ofreq);
Jiri Slaby6a2cf8e2006-01-09 20:52:48 -0800340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 return (ofreq == radio_bits_get(dev));
342}
343
Jiri Slaby89dad8f2006-01-09 20:52:47 -0800344static int __devinit maestro_probe(struct pci_dev *pdev,
345 const struct pci_device_id *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346{
Hans Verkuil087c6182009-03-06 13:51:08 -0300347 struct maestro *dev;
348 struct v4l2_device *v4l2_dev;
Jiri Slaby89dad8f2006-01-09 20:52:47 -0800349 int retval;
350
351 retval = pci_enable_device(pdev);
352 if (retval) {
353 dev_err(&pdev->dev, "enabling pci device failed!\n");
354 goto err;
355 }
356
357 retval = -ENOMEM;
358
Hans Verkuil087c6182009-03-06 13:51:08 -0300359 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
360 if (dev == NULL) {
Jiri Slaby89dad8f2006-01-09 20:52:47 -0800361 dev_err(&pdev->dev, "not enough memory\n");
362 goto err;
363 }
364
Hans Verkuil087c6182009-03-06 13:51:08 -0300365 v4l2_dev = &dev->v4l2_dev;
366 mutex_init(&dev->lock);
367 dev->pdev = pdev;
Jiri Slaby89dad8f2006-01-09 20:52:47 -0800368
Hans Verkuil087c6182009-03-06 13:51:08 -0300369 strlcpy(v4l2_dev->name, "maestro", sizeof(v4l2_dev->name));
370
371 retval = v4l2_device_register(&pdev->dev, v4l2_dev);
372 if (retval < 0) {
373 v4l2_err(v4l2_dev, "Could not register v4l2_device\n");
Jiri Slaby89dad8f2006-01-09 20:52:47 -0800374 goto errfr;
375 }
376
Hans Verkuil087c6182009-03-06 13:51:08 -0300377 dev->io = pci_resource_start(pdev, 0) + GPIO_DATA;
Jiri Slaby89dad8f2006-01-09 20:52:47 -0800378
Hans Verkuil087c6182009-03-06 13:51:08 -0300379 strlcpy(dev->vdev.name, v4l2_dev->name, sizeof(dev->vdev.name));
380 dev->vdev.v4l2_dev = v4l2_dev;
381 dev->vdev.fops = &maestro_fops;
382 dev->vdev.ioctl_ops = &maestro_ioctl_ops;
383 dev->vdev.release = video_device_release_empty;
384 video_set_drvdata(&dev->vdev, dev);
385
386 retval = video_register_device(&dev->vdev, VFL_TYPE_RADIO, radio_nr);
Jiri Slaby89dad8f2006-01-09 20:52:47 -0800387 if (retval) {
Hans Verkuil087c6182009-03-06 13:51:08 -0300388 v4l2_err(v4l2_dev, "can't register video device!\n");
Jiri Slaby89dad8f2006-01-09 20:52:47 -0800389 goto errfr1;
390 }
391
Hans Verkuil087c6182009-03-06 13:51:08 -0300392 if (!radio_power_on(dev)) {
Jiri Slaby89dad8f2006-01-09 20:52:47 -0800393 retval = -EIO;
394 goto errunr;
395 }
396
Hans Verkuil087c6182009-03-06 13:51:08 -0300397 v4l2_info(v4l2_dev, "version " DRIVER_VERSION "\n");
Jiri Slaby89dad8f2006-01-09 20:52:47 -0800398
399 return 0;
400errunr:
Hans Verkuil087c6182009-03-06 13:51:08 -0300401 video_unregister_device(&dev->vdev);
Jiri Slaby89dad8f2006-01-09 20:52:47 -0800402errfr1:
Hans Verkuil087c6182009-03-06 13:51:08 -0300403 v4l2_device_unregister(v4l2_dev);
Jiri Slaby89dad8f2006-01-09 20:52:47 -0800404errfr:
Hans Verkuil087c6182009-03-06 13:51:08 -0300405 kfree(dev);
Jiri Slaby89dad8f2006-01-09 20:52:47 -0800406err:
407 return retval;
408
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409}
410
Jiri Slaby89dad8f2006-01-09 20:52:47 -0800411static void __devexit maestro_remove(struct pci_dev *pdev)
412{
Hans Verkuil087c6182009-03-06 13:51:08 -0300413 struct v4l2_device *v4l2_dev = dev_get_drvdata(&pdev->dev);
414 struct maestro *dev = to_maestro(v4l2_dev);
Jiri Slaby89dad8f2006-01-09 20:52:47 -0800415
Hans Verkuil087c6182009-03-06 13:51:08 -0300416 video_unregister_device(&dev->vdev);
417 v4l2_device_unregister(&dev->v4l2_dev);
Jiri Slaby89dad8f2006-01-09 20:52:47 -0800418}
419
Hans Verkuil087c6182009-03-06 13:51:08 -0300420static struct pci_device_id maestro_r_pci_tbl[] = {
421 { PCI_DEVICE(PCI_VENDOR_ID_ESS, PCI_DEVICE_ID_ESS_ESS1968),
422 .class = PCI_CLASS_MULTIMEDIA_AUDIO << 8,
423 .class_mask = 0xffff00 },
424 { PCI_DEVICE(PCI_VENDOR_ID_ESS, PCI_DEVICE_ID_ESS_ESS1978),
425 .class = PCI_CLASS_MULTIMEDIA_AUDIO << 8,
426 .class_mask = 0xffff00 },
427 { 0 }
428};
429MODULE_DEVICE_TABLE(pci, maestro_r_pci_tbl);
430
431static struct pci_driver maestro_r_driver = {
432 .name = "maestro_radio",
433 .id_table = maestro_r_pci_tbl,
434 .probe = maestro_probe,
435 .remove = __devexit_p(maestro_remove),
436};
437
Jiri Slaby89dad8f2006-01-09 20:52:47 -0800438static int __init maestro_radio_init(void)
439{
440 int retval = pci_register_driver(&maestro_r_driver);
441
442 if (retval)
443 printk(KERN_ERR "error during registration pci driver\n");
444
445 return retval;
446}
447
448static void __exit maestro_radio_exit(void)
449{
450 pci_unregister_driver(&maestro_r_driver);
451}
452
453module_init(maestro_radio_init);
454module_exit(maestro_radio_exit);