radio-rtrack2.c 7.5 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
#include <linux/mutex.h>
#include <linux/io.h>		/* outb, outb_p			*/
#include <media/v4l2-device.h>
20
#include <media/v4l2-ioctl.h>
L
Linus Torvalds 已提交
21

22 23 24
MODULE_AUTHOR("Ben Pfaff");
MODULE_DESCRIPTION("A driver for the RadioTrack II radio card.");
MODULE_LICENSE("GPL");
25
MODULE_VERSION("0.0.3");
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
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);

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

48 49
static struct rtrack2 rtrack2_card;

L
Linus Torvalds 已提交
50 51 52

/* local things */

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

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

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

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

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

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

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

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

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

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

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

116 117 118 119 120
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));
121 122
	strlcpy(v->bus_info, "ISA", sizeof(v->bus_info));
	v->capabilities = V4L2_CAP_TUNER | V4L2_CAP_RADIO;
123 124 125 126 127 128
	return 0;
}

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

132
static int rt_getsigstr(struct rtrack2 *dev)
L
Linus Torvalds 已提交
133
{
134 135 136 137 138 139 140
	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 已提交
141 142
}

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

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

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

162 163 164
static int vidioc_s_frequency(struct file *file, void *priv,
				struct v4l2_frequency *f)
{
165
	struct rtrack2 *rt = video_drvdata(file);
166

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

173 174 175
static int vidioc_g_frequency(struct file *file, void *priv,
				struct v4l2_frequency *f)
{
176
	struct rtrack2 *rt = video_drvdata(file);
177

178 179
	if (f->tuner != 0)
		return -EINVAL;
180 181 182 183
	f->type = V4L2_TUNER_RADIO;
	f->frequency = rt->curfreq;
	return 0;
}
184

185 186 187
static int vidioc_queryctrl(struct file *file, void *priv,
				struct v4l2_queryctrl *qc)
{
188 189 190 191 192
	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);
193 194 195
	}
	return -EINVAL;
}
196

197 198 199
static int vidioc_g_ctrl(struct file *file, void *priv,
				struct v4l2_control *ctrl)
{
200
	struct rtrack2 *rt = video_drvdata(file);
201

202 203 204 205 206 207 208 209 210 211
	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 已提交
212
	}
213
	return -EINVAL;
L
Linus Torvalds 已提交
214 215
}

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

	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 已提交
236 237
}

238 239 240 241 242 243 244 245
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)
{
246
	return i ? -EINVAL : 0;
247 248
}

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

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

264
static const struct v4l2_file_operations rtrack2_fops = {
L
Linus Torvalds 已提交
265
	.owner		= THIS_MODULE,
266
	.unlocked_ioctl	= video_ioctl2,
L
Linus Torvalds 已提交
267 268
};

269
static const struct v4l2_ioctl_ops rtrack2_ioctl_ops = {
270 271 272 273 274 275 276 277
	.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,
278 279 280 281
	.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 已提交
282 283 284 285
};

static int __init rtrack2_init(void)
{
286 287 288 289 290 291 292 293
	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 已提交
294 295
		return -EINVAL;
	}
296 297
	if (!request_region(dev->io, 4, "rtrack2")) {
		v4l2_err(v4l2_dev, "port 0x%x already in use\n", dev->io);
L
Linus Torvalds 已提交
298 299 300
		return -EBUSY;
	}

301 302 303 304 305 306
	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 已提交
307

308 309 310 311 312 313 314
	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);

315 316 317 318
	/* mute card - prevents noisy bootups */
	outb(1, dev->io);
	dev->muted = 1;

319 320 321 322
	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 已提交
323 324
		return -EINVAL;
	}
325

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

	return 0;
}

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

	video_unregister_device(&dev->vdev);
	v4l2_device_unregister(&dev->v4l2_dev);
	release_region(dev->io, 4);
L
Linus Torvalds 已提交
338 339 340
}

module_init(rtrack2_init);
341
module_exit(rtrack2_exit);