blob: 48b72d89dffebda65d86774872f6cced9dd6032a [file] [log] [blame]
Hans Verkuilcc3c6df2012-01-16 04:55:10 -03001/*
2 * AimsLab RadioTrack (aka RadioVeveal) driver
3 *
4 * Copyright 1997 M. Kirkwood
5 *
6 * Converted to the radio-isa framework by Hans Verkuil <hans.verkuil@cisco.com>
Mauro Carvalho Chehab46ff2c72006-08-08 09:10:01 -03007 * Converted to V4L2 API by Mauro Carvalho Chehab <mchehab@infradead.org>
Alan Coxd9b01442008-10-27 15:13:47 -03008 * Converted to new API by Alan Cox <alan@lxorguk.ukuu.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * Various bugfixes and enhancements by Russell Kroll <rkroll@exploits.org>
10 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * Notes on the hardware (reverse engineered from other peoples'
12 * reverse engineering of AIMS' code :-)
13 *
14 * Frequency control is done digitally -- ie out(port,encodefreq(95.8));
15 *
16 * The signal strength query is unsurprisingly inaccurate. And it seems
17 * to indicate that (on my card, at least) the frequency setting isn't
18 * too great. (I have to tune up .025MHz from what the freq should be
19 * to get a report that the thing is tuned.)
20 *
21 * Volume control is (ugh) analogue:
22 * out(port, start_increasing_volume);
23 * wait(a_wee_while);
24 * out(port, stop_changing_the_volume);
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -030025 *
Hans Verkuilcc3c6df2012-01-16 04:55:10 -030026 * Fully tested with the Keene USB FM Transmitter and the v4l2-compliance tool.
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 */
28
29#include <linux/module.h> /* Modules */
30#include <linux/init.h> /* Initdata */
Peter Osterlundfb911ee2005-09-13 01:25:15 -070031#include <linux/ioport.h> /* request_region */
Geert Uytterhoeven24009822011-01-16 10:09:13 -030032#include <linux/delay.h> /* msleep */
Mauro Carvalho Chehab46ff2c72006-08-08 09:10:01 -030033#include <linux/videodev2.h> /* kernel radio structs */
Hans Verkuil151c3f82009-03-06 13:45:27 -030034#include <linux/io.h> /* outb, outb_p */
Hans Verkuil9f1dfcc2012-02-29 05:50:27 -030035#include <linux/slab.h>
Hans Verkuil151c3f82009-03-06 13:45:27 -030036#include <media/v4l2-device.h>
Hans Verkuil35ea11f2008-07-20 08:12:02 -030037#include <media/v4l2-ioctl.h>
Hans Verkuilcc3c6df2012-01-16 04:55:10 -030038#include <media/v4l2-ctrls.h>
39#include "radio-isa.h"
Ondrej Zarybece0832012-06-12 14:38:00 -030040#include "lm7000.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Hans Verkuilcc3c6df2012-01-16 04:55:10 -030042MODULE_AUTHOR("M. Kirkwood");
Hans Verkuil151c3f82009-03-06 13:45:27 -030043MODULE_DESCRIPTION("A driver for the RadioTrack/RadioReveal radio card.");
44MODULE_LICENSE("GPL");
Hans Verkuilcc3c6df2012-01-16 04:55:10 -030045MODULE_VERSION("1.0.0");
Mauro Carvalho Chehab46ff2c72006-08-08 09:10:01 -030046
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#ifndef CONFIG_RADIO_RTRACK_PORT
48#define CONFIG_RADIO_RTRACK_PORT -1
49#endif
50
Hans Verkuilcc3c6df2012-01-16 04:55:10 -030051#define RTRACK_MAX 2
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Hans Verkuilcc3c6df2012-01-16 04:55:10 -030053static int io[RTRACK_MAX] = { [0] = CONFIG_RADIO_RTRACK_PORT,
54 [1 ... (RTRACK_MAX - 1)] = -1 };
55static int radio_nr[RTRACK_MAX] = { [0 ... (RTRACK_MAX - 1)] = -1 };
Hans Verkuil151c3f82009-03-06 13:45:27 -030056
Hans Verkuilcc3c6df2012-01-16 04:55:10 -030057module_param_array(io, int, NULL, 0444);
58MODULE_PARM_DESC(io, "I/O addresses of the RadioTrack card (0x20f or 0x30f)");
59module_param_array(radio_nr, int, NULL, 0444);
60MODULE_PARM_DESC(radio_nr, "Radio device numbers");
61
62struct rtrack {
63 struct radio_isa_card isa;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 int curvol;
Ondrej Zarybece0832012-06-12 14:38:00 -030065 struct lm7000 lm;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066};
67
Ondrej Zarybece0832012-06-12 14:38:00 -030068#define AIMS_BIT_TUN_CE (1 << 0)
69#define AIMS_BIT_TUN_CLK (1 << 1)
70#define AIMS_BIT_TUN_DATA (1 << 2)
71#define AIMS_BIT_VOL_CE (1 << 3)
72#define AIMS_BIT_TUN_STRQ (1 << 4)
73/* bit 5 is not connected */
74#define AIMS_BIT_VOL_UP (1 << 6) /* active low */
75#define AIMS_BIT_VOL_DN (1 << 7) /* active low */
76
77void rtrack_set_pins(struct lm7000 *lm, u8 pins)
78{
79 struct rtrack *rt = container_of(lm, struct rtrack, lm);
80 u8 bits = AIMS_BIT_VOL_DN | AIMS_BIT_VOL_UP | AIMS_BIT_TUN_STRQ;
81
82 if (!v4l2_ctrl_g_ctrl(rt->isa.mute))
83 bits |= AIMS_BIT_VOL_CE;
84
85 if (pins & LM7000_DATA)
86 bits |= AIMS_BIT_TUN_DATA;
87 if (pins & LM7000_CLK)
88 bits |= AIMS_BIT_TUN_CLK;
89 if (pins & LM7000_CE)
90 bits |= AIMS_BIT_TUN_CE;
91
92 outb_p(bits, rt->isa.io);
93}
94
Hans Verkuilcc3c6df2012-01-16 04:55:10 -030095static struct radio_isa_card *rtrack_alloc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096{
Hans Verkuilcc3c6df2012-01-16 04:55:10 -030097 struct rtrack *rt = kzalloc(sizeof(struct rtrack), GFP_KERNEL);
98
Ondrej Zarybece0832012-06-12 14:38:00 -030099 if (rt) {
Hans Verkuilcc3c6df2012-01-16 04:55:10 -0300100 rt->curvol = 0xff;
Ondrej Zarybece0832012-06-12 14:38:00 -0300101 rt->lm.set_pins = rtrack_set_pins;
102 }
Hans Verkuilcc3c6df2012-01-16 04:55:10 -0300103 return rt ? &rt->isa : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104}
105
Hans Verkuilcc3c6df2012-01-16 04:55:10 -0300106static int rtrack_s_frequency(struct radio_isa_card *isa, u32 freq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
Ondrej Zarybece0832012-06-12 14:38:00 -0300108 struct rtrack *rt = container_of(isa, struct rtrack, isa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Ondrej Zarybece0832012-06-12 14:38:00 -0300110 lm7000_set_freq(&rt->lm, freq);
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -0300111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 return 0;
113}
114
Hans Verkuilcc3c6df2012-01-16 04:55:10 -0300115static u32 rtrack_g_signal(struct radio_isa_card *isa)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116{
Hans Verkuilcc3c6df2012-01-16 04:55:10 -0300117 /* bit set = no signal present */
118 return 0xffff * !(inb(isa->io) & 2);
Hans Verkuil151c3f82009-03-06 13:45:27 -0300119}
Mauro Carvalho Chehab46ff2c72006-08-08 09:10:01 -0300120
Hans Verkuilcc3c6df2012-01-16 04:55:10 -0300121static int rtrack_s_mute_volume(struct radio_isa_card *isa, bool mute, int vol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
Hans Verkuilcc3c6df2012-01-16 04:55:10 -0300123 struct rtrack *rt = container_of(isa, struct rtrack, isa);
124 int curvol = rt->curvol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Hans Verkuilcc3c6df2012-01-16 04:55:10 -0300126 if (mute) {
127 outb(0xd0, isa->io); /* volume steady + sigstr + off */
Douglas Landgraf385e8d82007-04-25 00:14:36 -0300128 return 0;
129 }
Hans Verkuilcc3c6df2012-01-16 04:55:10 -0300130 if (vol == 0) { /* volume = 0 means mute the card */
131 outb(0x48, isa->io); /* volume down but still "on" */
132 msleep(curvol * 3); /* make sure it's totally down */
133 } else if (curvol < vol) {
134 outb(0x98, isa->io); /* volume up + sigstr + on */
135 for (; curvol < vol; curvol++)
136 udelay(3000);
137 } else if (curvol > vol) {
138 outb(0x58, isa->io); /* volume down + sigstr + on */
139 for (; curvol > vol; curvol--)
140 udelay(3000);
Douglas Landgraf385e8d82007-04-25 00:14:36 -0300141 }
Hans Verkuilcc3c6df2012-01-16 04:55:10 -0300142 outb(0xd8, isa->io); /* volume steady + sigstr + on */
143 rt->curvol = vol;
Douglas Landgraf385e8d82007-04-25 00:14:36 -0300144 return 0;
145}
146
Hans Verkuilcc3c6df2012-01-16 04:55:10 -0300147/* Mute card - prevents noisy bootups */
148static int rtrack_initialize(struct radio_isa_card *isa)
Douglas Landgraf385e8d82007-04-25 00:14:36 -0300149{
Hans Verkuilcc3c6df2012-01-16 04:55:10 -0300150 /* this ensures that the volume is all the way up */
151 outb(0x90, isa->io); /* volume up but still "on" */
152 msleep(3000); /* make sure it's totally up */
153 outb(0xc0, isa->io); /* steady volume, mute card */
Douglas Landgraf385e8d82007-04-25 00:14:36 -0300154 return 0;
155}
156
Hans Verkuilcc3c6df2012-01-16 04:55:10 -0300157static const struct radio_isa_ops rtrack_ops = {
158 .alloc = rtrack_alloc,
159 .init = rtrack_initialize,
160 .s_mute_volume = rtrack_s_mute_volume,
161 .s_frequency = rtrack_s_frequency,
162 .g_signal = rtrack_g_signal,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163};
164
Hans Verkuilcc3c6df2012-01-16 04:55:10 -0300165static const int rtrack_ioports[] = { 0x20f, 0x30f };
166
167static struct radio_isa_driver rtrack_driver = {
168 .driver = {
169 .match = radio_isa_match,
170 .probe = radio_isa_probe,
171 .remove = radio_isa_remove,
172 .driver = {
173 .name = "radio-aimslab",
174 },
175 },
176 .io_params = io,
177 .radio_nr_params = radio_nr,
178 .io_ports = rtrack_ioports,
179 .num_of_io_ports = ARRAY_SIZE(rtrack_ioports),
180 .region_size = 2,
181 .card = "AIMSlab RadioTrack/RadioReveal",
182 .ops = &rtrack_ops,
183 .has_stereo = true,
184 .max_volume = 0xff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185};
186
187static int __init rtrack_init(void)
188{
Hans Verkuilcc3c6df2012-01-16 04:55:10 -0300189 return isa_register_driver(&rtrack_driver.driver, RTRACK_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190}
191
Hans Verkuil151c3f82009-03-06 13:45:27 -0300192static void __exit rtrack_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193{
Hans Verkuilcc3c6df2012-01-16 04:55:10 -0300194 isa_unregister_driver(&rtrack_driver.driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195}
196
197module_init(rtrack_init);
Hans Verkuil151c3f82009-03-06 13:45:27 -0300198module_exit(rtrack_exit);