radio-rtrack2.c 7.6 KB
Newer Older
L
Linus Torvalds 已提交
1
/* RadioTrack II driver for Linux radio support (C) 1998 Ben Pfaff
2
 *
L
Linus Torvalds 已提交
3
 * Based on RadioTrack I/RadioReveal (C) 1997 M. Kirkwood
4
 * Converted to new API by Alan Cox <alan@lxorguk.ukuu.org.uk>
L
Linus Torvalds 已提交
5 6 7 8
 * Various bugfixes and enhancements by Russell Kroll <rkroll@exploits.org>
 *
 * TODO: Allow for more than one of these foolish entities :-)
 *
9
 * Converted to V4L2 API by Mauro Carvalho Chehab <mchehab@infradead.org>
L
Linus Torvalds 已提交
10 11 12 13
 */

#include <linux/module.h>	/* Modules 			*/
#include <linux/init.h>		/* Initdata			*/
14
#include <linux/ioport.h>	/* request_region		*/
L
Linus Torvalds 已提交
15
#include <linux/delay.h>	/* udelay			*/
16
#include <linux/videodev2.h>	/* kernel radio structs		*/
17 18 19 20
#include <linux/mutex.h>
#include <linux/version.h>      /* for KERNEL_VERSION MACRO     */
#include <linux/io.h>		/* outb, outb_p			*/
#include <media/v4l2-device.h>
21
#include <media/v4l2-ioctl.h>
L
Linus Torvalds 已提交
22

23 24 25
MODULE_AUTHOR("Ben Pfaff");
MODULE_DESCRIPTION("A driver for the RadioTrack II radio card.");
MODULE_LICENSE("GPL");
26

L
Linus Torvalds 已提交
27 28 29 30
#ifndef CONFIG_RADIO_RTRACK2_PORT
#define CONFIG_RADIO_RTRACK2_PORT -1
#endif

31
static int io = CONFIG_RADIO_RTRACK2_PORT;
L
Linus Torvalds 已提交
32 33
static int radio_nr = -1;

34 35 36 37 38 39 40
module_param(io, int, 0);
MODULE_PARM_DESC(io, "I/O address of the RadioTrack card (0x20c or 0x30c)");
module_param(radio_nr, int, 0);

#define RADIO_VERSION KERNEL_VERSION(0, 0, 2)

struct rtrack2
L
Linus Torvalds 已提交
41
{
42 43 44
	struct v4l2_device v4l2_dev;
	struct video_device vdev;
	int io;
L
Linus Torvalds 已提交
45 46
	unsigned long curfreq;
	int muted;
47
	struct mutex lock;
L
Linus Torvalds 已提交
48 49
};

50 51
static struct rtrack2 rtrack2_card;

L
Linus Torvalds 已提交
52 53 54

/* local things */

55
static void rt_mute(struct rtrack2 *dev)
L
Linus Torvalds 已提交
56
{
57
	if (dev->muted)
L
Linus Torvalds 已提交
58
		return;
59 60 61
	mutex_lock(&dev->lock);
	outb(1, dev->io);
	mutex_unlock(&dev->lock);
L
Linus Torvalds 已提交
62 63 64
	dev->muted = 1;
}

65
static void rt_unmute(struct rtrack2 *dev)
L
Linus Torvalds 已提交
66 67 68
{
	if(dev->muted == 0)
		return;
69 70 71
	mutex_lock(&dev->lock);
	outb(0, dev->io);
	mutex_unlock(&dev->lock);
L
Linus Torvalds 已提交
72 73 74
	dev->muted = 0;
}

75
static void zero(struct rtrack2 *dev)
L
Linus Torvalds 已提交
76
{
77 78 79
	outb_p(1, dev->io);
	outb_p(3, dev->io);
	outb_p(1, dev->io);
L
Linus Torvalds 已提交
80 81
}

82
static void one(struct rtrack2 *dev)
L
Linus Torvalds 已提交
83
{
84 85 86
	outb_p(5, dev->io);
	outb_p(7, dev->io);
	outb_p(5, dev->io);
L
Linus Torvalds 已提交
87 88
}

89
static int rt_setfreq(struct rtrack2 *dev, unsigned long freq)
L
Linus Torvalds 已提交
90 91 92
{
	int i;

93 94
	mutex_lock(&dev->lock);
	dev->curfreq = freq;
L
Linus Torvalds 已提交
95
	freq = freq / 200 + 856;
96

97 98 99
	outb_p(0xc8, dev->io);
	outb_p(0xc9, dev->io);
	outb_p(0xc9, dev->io);
L
Linus Torvalds 已提交
100 101

	for (i = 0; i < 10; i++)
102
		zero(dev);
L
Linus Torvalds 已提交
103 104 105

	for (i = 14; i >= 0; i--)
		if (freq & (1 << i))
106
			one(dev);
L
Linus Torvalds 已提交
107
		else
108
			zero(dev);
L
Linus Torvalds 已提交
109

110
	outb_p(0xc8, dev->io);
L
Linus Torvalds 已提交
111
	if (!dev->muted)
112
		outb_p(0, dev->io);
113

114
	mutex_unlock(&dev->lock);
L
Linus Torvalds 已提交
115 116 117
	return 0;
}

118 119 120 121 122
static int vidioc_querycap(struct file *file, void *priv,
				struct v4l2_capability *v)
{
	strlcpy(v->driver, "radio-rtrack2", sizeof(v->driver));
	strlcpy(v->card, "RadioTrack II", sizeof(v->card));
123
	strlcpy(v->bus_info, "ISA", sizeof(v->bus_info));
124
	v->version = RADIO_VERSION;
125
	v->capabilities = V4L2_CAP_TUNER | V4L2_CAP_RADIO;
126 127 128 129 130 131
	return 0;
}

static int vidioc_s_tuner(struct file *file, void *priv,
				struct v4l2_tuner *v)
{
132
	return v->index ? -EINVAL : 0;
133 134
}

135
static int rt_getsigstr(struct rtrack2 *dev)
L
Linus Torvalds 已提交
136
{
137 138 139 140 141 142 143
	int sig = 1;

	mutex_lock(&dev->lock);
	if (inb(dev->io) & 2)	/* bit set = no signal present	*/
		sig = 0;
	mutex_unlock(&dev->lock);
	return sig;
L
Linus Torvalds 已提交
144 145
}

146 147
static int vidioc_g_tuner(struct file *file, void *priv,
				struct v4l2_tuner *v)
L
Linus Torvalds 已提交
148
{
149
	struct rtrack2 *rt = video_drvdata(file);
150 151 152 153

	if (v->index > 0)
		return -EINVAL;

154
	strlcpy(v->name, "FM", sizeof(v->name));
155
	v->type = V4L2_TUNER_RADIO;
156 157
	v->rangelow = 88 * 16000;
	v->rangehigh = 108 * 16000;
158 159 160
	v->rxsubchans = V4L2_TUNER_SUB_MONO;
	v->capability = V4L2_TUNER_CAP_LOW;
	v->audmode = V4L2_TUNER_MODE_MONO;
161
	v->signal = 0xFFFF * rt_getsigstr(rt);
162 163
	return 0;
}
164

165 166 167
static int vidioc_s_frequency(struct file *file, void *priv,
				struct v4l2_frequency *f)
{
168
	struct rtrack2 *rt = video_drvdata(file);
169

170 171
	if (f->tuner != 0 || f->type != V4L2_TUNER_RADIO)
		return -EINVAL;
172
	rt_setfreq(rt, f->frequency);
173 174
	return 0;
}
175

176 177 178
static int vidioc_g_frequency(struct file *file, void *priv,
				struct v4l2_frequency *f)
{
179
	struct rtrack2 *rt = video_drvdata(file);
180

181 182
	if (f->tuner != 0)
		return -EINVAL;
183 184 185 186
	f->type = V4L2_TUNER_RADIO;
	f->frequency = rt->curfreq;
	return 0;
}
187

188 189 190
static int vidioc_queryctrl(struct file *file, void *priv,
				struct v4l2_queryctrl *qc)
{
191 192 193 194 195
	switch (qc->id) {
	case V4L2_CID_AUDIO_MUTE:
		return v4l2_ctrl_query_fill(qc, 0, 1, 1, 1);
	case V4L2_CID_AUDIO_VOLUME:
		return v4l2_ctrl_query_fill(qc, 0, 65535, 65535, 65535);
196 197 198
	}
	return -EINVAL;
}
199

200 201 202
static int vidioc_g_ctrl(struct file *file, void *priv,
				struct v4l2_control *ctrl)
{
203
	struct rtrack2 *rt = video_drvdata(file);
204

205 206 207 208 209 210 211 212 213 214
	switch (ctrl->id) {
	case V4L2_CID_AUDIO_MUTE:
		ctrl->value = rt->muted;
		return 0;
	case V4L2_CID_AUDIO_VOLUME:
		if (rt->muted)
			ctrl->value = 0;
		else
			ctrl->value = 65535;
		return 0;
L
Linus Torvalds 已提交
215
	}
216
	return -EINVAL;
L
Linus Torvalds 已提交
217 218
}

219 220
static int vidioc_s_ctrl(struct file *file, void *priv,
				struct v4l2_control *ctrl)
L
Linus Torvalds 已提交
221
{
222
	struct rtrack2 *rt = video_drvdata(file);
223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238

	switch (ctrl->id) {
	case V4L2_CID_AUDIO_MUTE:
		if (ctrl->value)
			rt_mute(rt);
		else
			rt_unmute(rt);
		return 0;
	case V4L2_CID_AUDIO_VOLUME:
		if (ctrl->value)
			rt_unmute(rt);
		else
			rt_mute(rt);
		return 0;
	}
	return -EINVAL;
L
Linus Torvalds 已提交
239 240
}

241 242 243 244 245 246 247 248
static int vidioc_g_input(struct file *filp, void *priv, unsigned int *i)
{
	*i = 0;
	return 0;
}

static int vidioc_s_input(struct file *filp, void *priv, unsigned int i)
{
249
	return i ? -EINVAL : 0;
250 251
}

252
static int vidioc_g_audio(struct file *file, void *priv,
253 254
				struct v4l2_audio *a)
{
255 256 257
	a->index = 0;
	strlcpy(a->name, "Radio", sizeof(a->name));
	a->capability = V4L2_AUDCAP_STEREO;
258 259 260
	return 0;
}

261 262 263 264 265
static int vidioc_s_audio(struct file *file, void *priv,
				struct v4l2_audio *a)
{
	return a->index ? -EINVAL : 0;
}
L
Linus Torvalds 已提交
266

267
static const struct v4l2_file_operations rtrack2_fops = {
L
Linus Torvalds 已提交
268
	.owner		= THIS_MODULE,
269
	.ioctl		= video_ioctl2,
L
Linus Torvalds 已提交
270 271
};

272
static const struct v4l2_ioctl_ops rtrack2_ioctl_ops = {
273 274 275 276 277 278 279 280
	.vidioc_querycap    = vidioc_querycap,
	.vidioc_g_tuner     = vidioc_g_tuner,
	.vidioc_s_tuner     = vidioc_s_tuner,
	.vidioc_g_frequency = vidioc_g_frequency,
	.vidioc_s_frequency = vidioc_s_frequency,
	.vidioc_queryctrl   = vidioc_queryctrl,
	.vidioc_g_ctrl      = vidioc_g_ctrl,
	.vidioc_s_ctrl      = vidioc_s_ctrl,
281 282 283 284
	.vidioc_g_audio     = vidioc_g_audio,
	.vidioc_s_audio     = vidioc_s_audio,
	.vidioc_g_input     = vidioc_g_input,
	.vidioc_s_input     = vidioc_s_input,
L
Linus Torvalds 已提交
285 286 287 288
};

static int __init rtrack2_init(void)
{
289 290 291 292 293 294 295 296
	struct rtrack2 *dev = &rtrack2_card;
	struct v4l2_device *v4l2_dev = &dev->v4l2_dev;
	int res;

	strlcpy(v4l2_dev->name, "rtrack2", sizeof(v4l2_dev->name));
	dev->io = io;
	if (dev->io == -1) {
		v4l2_err(v4l2_dev, "You must set an I/O address with io=0x20c or io=0x30c\n");
L
Linus Torvalds 已提交
297 298
		return -EINVAL;
	}
299 300
	if (!request_region(dev->io, 4, "rtrack2")) {
		v4l2_err(v4l2_dev, "port 0x%x already in use\n", dev->io);
L
Linus Torvalds 已提交
301 302 303
		return -EBUSY;
	}

304 305 306 307 308 309
	res = v4l2_device_register(NULL, v4l2_dev);
	if (res < 0) {
		release_region(dev->io, 4);
		v4l2_err(v4l2_dev, "Could not register v4l2_device\n");
		return res;
	}
L
Linus Torvalds 已提交
310

311 312 313 314 315 316 317 318 319 320 321
	strlcpy(dev->vdev.name, v4l2_dev->name, sizeof(dev->vdev.name));
	dev->vdev.v4l2_dev = v4l2_dev;
	dev->vdev.fops = &rtrack2_fops;
	dev->vdev.ioctl_ops = &rtrack2_ioctl_ops;
	dev->vdev.release = video_device_release_empty;
	video_set_drvdata(&dev->vdev, dev);

	mutex_init(&dev->lock);
	if (video_register_device(&dev->vdev, VFL_TYPE_RADIO, radio_nr) < 0) {
		v4l2_device_unregister(v4l2_dev);
		release_region(dev->io, 4);
L
Linus Torvalds 已提交
322 323
		return -EINVAL;
	}
324

325
	v4l2_info(v4l2_dev, "AIMSlab Radiotrack II card driver.\n");
L
Linus Torvalds 已提交
326

327
	/* mute card - prevents noisy bootups */
328 329
	outb(1, dev->io);
	dev->muted = 1;
L
Linus Torvalds 已提交
330 331 332 333

	return 0;
}

334
static void __exit rtrack2_exit(void)
L
Linus Torvalds 已提交
335
{
336 337 338 339 340
	struct rtrack2 *dev = &rtrack2_card;

	video_unregister_device(&dev->vdev);
	v4l2_device_unregister(&dev->v4l2_dev);
	release_region(dev->io, 4);
L
Linus Torvalds 已提交
341 342 343
}

module_init(rtrack2_init);
344
module_exit(rtrack2_exit);