Merge branch 'x86-debug-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git...
[deliverable/linux.git] / drivers / media / radio / radio-maxiradio.c
CommitLineData
4286c6f6
MCC
1/*
2 * Guillemot Maxi Radio FM 2000 PCI radio card driver for Linux
1da177e4
LT
3 * (C) 2001 Dimitromanolakis Apostolos <apdim@grecian.net>
4 *
5 * Based in the radio Maestro PCI driver. Actually it uses the same chip
6 * for radio but different pci controller.
7 *
8 * I didn't have any specs I reversed engineered the protocol from
4286c6f6 9 * the windows driver (radio.dll).
1da177e4
LT
10 *
11 * The card uses the TEA5757 chip that includes a search function but it
4286c6f6 12 * is useless as I haven't found any way to read back the frequency. If
1da177e4
LT
13 * anybody does please mail me.
14 *
15 * For the pdf file see:
631dd1a8 16 * http://www.nxp.com/acrobat_download2/expired_datasheets/TEA5757_5759_3.pdf
1da177e4
LT
17 *
18 *
19 * CHANGES:
20 * 0.75b
21 * - better pci interface thanks to Francois Romieu <romieu@cogenit.fr>
22 *
e84fef6b 23 * 0.75 Sun Feb 4 22:51:27 EET 2001
1da177e4
LT
24 * - tiding up
25 * - removed support for multiple devices as it didn't work anyway
26 *
4286c6f6 27 * BUGS:
1da177e4
LT
28 * - card unmutes if you change frequency
29 *
06470ed6
MCC
30 * (c) 2006, 2007 by Mauro Carvalho Chehab <mchehab@infradead.org>:
31 * - Conversion to V4L2 API
32 * - Uses video_ioctl2 for parsing and to add debug support
1da177e4
LT
33 */
34
35
36#include <linux/module.h>
37#include <linux/init.h>
38#include <linux/ioport.h>
39#include <linux/delay.h>
3593cab5 40#include <linux/mutex.h>
1da177e4 41#include <linux/pci.h>
e84fef6b 42#include <linux/videodev2.h>
2710e6aa 43#include <linux/io.h>
5a0e3ad6 44#include <linux/slab.h>
cfb19b0a 45#include <sound/tea575x-tuner.h>
2710e6aa 46#include <media/v4l2-device.h>
35ea11ff 47#include <media/v4l2-ioctl.h>
cfb19b0a
HV
48#include <media/v4l2-fh.h>
49#include <media/v4l2-ctrls.h>
50#include <media/v4l2-event.h>
29834c1a 51
2710e6aa 52MODULE_AUTHOR("Dimitromanolakis Apostolos, apdim@grecian.net");
cfb19b0a 53MODULE_DESCRIPTION("Radio driver for the Guillemot Maxi Radio FM2000.");
2710e6aa 54MODULE_LICENSE("GPL");
cfb19b0a 55MODULE_VERSION("1.0.0");
2710e6aa
HV
56
57static int radio_nr = -1;
cfb19b0a
HV
58module_param(radio_nr, int, 0644);
59MODULE_PARM_DESC(radio_nr, "Radio device number");
1da177e4
LT
60
61/* TEA5757 pin mappings */
2710e6aa 62static const int clk = 1, data = 2, wren = 4, mo_st = 8, power = 16;
1da177e4 63
cfb19b0a 64static atomic_t maxiradio_instance = ATOMIC_INIT(0);
1da177e4 65
cfb19b0a
HV
66#define PCI_VENDOR_ID_GUILLEMOT 0x5046
67#define PCI_DEVICE_ID_GUILLEMOT_MAXIRADIO 0x1001
1da177e4 68
2710e6aa 69struct maxiradio
3ca685aa 70{
cfb19b0a 71 struct snd_tea575x tea;
2710e6aa 72 struct v4l2_device v4l2_dev;
2710e6aa 73 struct pci_dev *pdev;
1da177e4 74
2710e6aa 75 u16 io; /* base of radio io */
712642b8 76};
1da177e4 77
2710e6aa 78static inline struct maxiradio *to_maxiradio(struct v4l2_device *v4l2_dev)
1da177e4 79{
2710e6aa 80 return container_of(v4l2_dev, struct maxiradio, v4l2_dev);
1da177e4
LT
81}
82
cfb19b0a 83static void maxiradio_tea575x_set_pins(struct snd_tea575x *tea, u8 pins)
4286c6f6 84{
cfb19b0a
HV
85 struct maxiradio *dev = tea->private_data;
86 u8 bits = 0;
f1557ceb 87
cfb19b0a
HV
88 bits |= (pins & TEA575X_DATA) ? data : 0;
89 bits |= (pins & TEA575X_CLK) ? clk : 0;
90 bits |= (pins & TEA575X_WREN) ? wren : 0;
91 bits |= power;
1da177e4 92
cfb19b0a 93 outb(bits, dev->io);
06470ed6
MCC
94}
95
cfb19b0a
HV
96/* Note: this card cannot read out the data of the shift registers,
97 only the mono/stereo pin works. */
98static u8 maxiradio_tea575x_get_pins(struct snd_tea575x *tea)
1da177e4 99{
cfb19b0a
HV
100 struct maxiradio *dev = tea->private_data;
101 u8 bits = inb(dev->io);
4286c6f6 102
cfb19b0a
HV
103 return ((bits & data) ? TEA575X_DATA : 0) |
104 ((bits & mo_st) ? TEA575X_MOST : 0);
06470ed6 105}
e84fef6b 106
cfb19b0a 107static void maxiradio_tea575x_set_direction(struct snd_tea575x *tea, bool output)
06470ed6 108{
140dcc46
MCC
109}
110
cfb19b0a
HV
111static struct snd_tea575x_ops maxiradio_tea_ops = {
112 .set_pins = maxiradio_tea575x_set_pins,
113 .get_pins = maxiradio_tea575x_get_pins,
114 .set_direction = maxiradio_tea575x_set_direction,
2710e6aa
HV
115};
116
cfb19b0a 117static int __devinit maxiradio_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
1da177e4 118{
2710e6aa
HV
119 struct maxiradio *dev;
120 struct v4l2_device *v4l2_dev;
121 int retval = -ENOMEM;
122
123 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
124 if (dev == NULL) {
125 dev_err(&pdev->dev, "not enough memory\n");
126 return -ENOMEM;
127 }
128
129 v4l2_dev = &dev->v4l2_dev;
cfb19b0a 130 v4l2_device_set_name(v4l2_dev, "maxiradio", &maxiradio_instance);
2710e6aa
HV
131
132 retval = v4l2_device_register(&pdev->dev, v4l2_dev);
133 if (retval < 0) {
134 v4l2_err(v4l2_dev, "Could not register v4l2_device\n");
135 goto errfr;
136 }
cfb19b0a
HV
137 dev->tea.private_data = dev;
138 dev->tea.ops = &maxiradio_tea_ops;
139 /* The data pin cannot be read. This may be a hardware limitation, or
140 we just don't know how to read it. */
141 dev->tea.cannot_read_data = true;
142 dev->tea.v4l2_dev = v4l2_dev;
143 dev->tea.radio_nr = radio_nr;
144 strlcpy(dev->tea.card, "Maxi Radio FM2000", sizeof(dev->tea.card));
145 snprintf(dev->tea.bus_info, sizeof(dev->tea.bus_info),
146 "PCI:%s", pci_name(pdev));
147
148 retval = -ENODEV;
2710e6aa
HV
149
150 if (!request_region(pci_resource_start(pdev, 0),
cfb19b0a
HV
151 pci_resource_len(pdev, 0), v4l2_dev->name)) {
152 dev_err(&pdev->dev, "can't reserve I/O ports\n");
153 goto err_hdl;
1da177e4
LT
154 }
155
156 if (pci_enable_device(pdev))
4286c6f6 157 goto err_out_free_region;
1da177e4 158
2710e6aa 159 dev->io = pci_resource_start(pdev, 0);
5daf53a6 160 if (snd_tea575x_init(&dev->tea, THIS_MODULE)) {
cfb19b0a 161 printk(KERN_ERR "radio-maxiradio: Unable to detect TEA575x tuner\n");
4286c6f6 162 goto err_out_free_region;
1da177e4 163 }
1da177e4
LT
164 return 0;
165
166err_out_free_region:
167 release_region(pci_resource_start(pdev, 0), pci_resource_len(pdev, 0));
cfb19b0a 168err_hdl:
2710e6aa
HV
169 v4l2_device_unregister(v4l2_dev);
170errfr:
171 kfree(dev);
cfb19b0a 172 return retval;
1da177e4
LT
173}
174
cfb19b0a 175static void __devexit maxiradio_remove(struct pci_dev *pdev)
1da177e4 176{
2710e6aa
HV
177 struct v4l2_device *v4l2_dev = dev_get_drvdata(&pdev->dev);
178 struct maxiradio *dev = to_maxiradio(v4l2_dev);
179
cfb19b0a
HV
180 snd_tea575x_exit(&dev->tea);
181 /* Turn off power */
182 outb(0, dev->io);
183 v4l2_device_unregister(v4l2_dev);
1da177e4
LT
184 release_region(pci_resource_start(pdev, 0), pci_resource_len(pdev, 0));
185}
186
187static struct pci_device_id maxiradio_pci_tbl[] = {
188 { PCI_VENDOR_ID_GUILLEMOT, PCI_DEVICE_ID_GUILLEMOT_MAXIRADIO,
189 PCI_ANY_ID, PCI_ANY_ID, },
2710e6aa 190 { 0 }
1da177e4
LT
191};
192
193MODULE_DEVICE_TABLE(pci, maxiradio_pci_tbl);
194
195static struct pci_driver maxiradio_driver = {
196 .name = "radio-maxiradio",
197 .id_table = maxiradio_pci_tbl,
cfb19b0a
HV
198 .probe = maxiradio_probe,
199 .remove = __devexit_p(maxiradio_remove),
1da177e4
LT
200};
201
cfb19b0a 202static int __init maxiradio_init(void)
1da177e4 203{
9bfab8ce 204 return pci_register_driver(&maxiradio_driver);
1da177e4
LT
205}
206
cfb19b0a 207static void __exit maxiradio_exit(void)
1da177e4
LT
208{
209 pci_unregister_driver(&maxiradio_driver);
210}
211
cfb19b0a
HV
212module_init(maxiradio_init);
213module_exit(maxiradio_exit);
This page took 0.704474 seconds and 5 git commands to generate.