treewide: Add SPDX license identifier for more missed files
[linux-2.6-block.git] / drivers / media / radio / radio-typhoon.c
CommitLineData
09c434b8 1// SPDX-License-Identifier: GPL-2.0-only
1da177e4
LT
2/* Typhoon Radio Card driver for radio support
3 * (c) 1999 Dr. Henrik Seidel <Henrik.Seidel@gmx.de>
4 *
1da177e4
LT
5 * Notes on the hardware
6 *
7 * This card has two output sockets, one for speakers and one for line.
8 * The speaker output has volume control, but only in four discrete
9 * steps. The line output has neither volume control nor mute.
10 *
11 * The card has auto-stereo according to its manual, although it all
12 * sounds mono to me (even with the Win/DOS drivers). Maybe it's my
13 * antenna - I really don't know for sure.
14 *
15 * Frequency control is done digitally.
16 *
17 * Volume control is done digitally, but there are only four different
18 * possible values. So you should better always turn the volume up and
19 * use line control. I got the best results by connecting line output
20 * to the sound card microphone input. For such a configuration the
21 * volume control has no effect, since volume control only influences
22 * the speaker output.
23 *
24 * There is no explicit mute/unmute. So I set the radio frequency to a
25 * value where I do expect just noise and turn the speaker volume down.
26 * The frequency change is necessary since the card never seems to be
27 * completely silent.
30c48305 28 *
32590819 29 * Converted to V4L2 API by Mauro Carvalho Chehab <mchehab@kernel.org>
1da177e4
LT
30 */
31
32#include <linux/module.h> /* Modules */
33#include <linux/init.h> /* Initdata */
fb911ee8 34#include <linux/ioport.h> /* request_region */
30c48305 35#include <linux/videodev2.h> /* kernel radio structs */
f1bfe89b 36#include <linux/io.h> /* outb, outb_p */
9f1dfccf 37#include <linux/slab.h>
f1bfe89b 38#include <media/v4l2-device.h>
35ea11ff 39#include <media/v4l2-ioctl.h>
da1ff351 40#include "radio-isa.h"
1da177e4 41
29834c1a
MCC
42#define DRIVER_VERSION "0.1.2"
43
f1bfe89b
HV
44MODULE_AUTHOR("Dr. Henrik Seidel");
45MODULE_DESCRIPTION("A driver for the Typhoon radio card (a.k.a. EcoRadio).");
46MODULE_LICENSE("GPL");
da1ff351 47MODULE_VERSION("0.1.99");
1da177e4
LT
48
49#ifndef CONFIG_RADIO_TYPHOON_PORT
50#define CONFIG_RADIO_TYPHOON_PORT -1
51#endif
52
53#ifndef CONFIG_RADIO_TYPHOON_MUTEFREQ
da1ff351 54#define CONFIG_RADIO_TYPHOON_MUTEFREQ 87000
1da177e4
LT
55#endif
56
da1ff351 57#define TYPHOON_MAX 2
f1bfe89b 58
da1ff351
HV
59static int io[TYPHOON_MAX] = { [0] = CONFIG_RADIO_TYPHOON_PORT,
60 [1 ... (TYPHOON_MAX - 1)] = -1 };
61static int radio_nr[TYPHOON_MAX] = { [0 ... (TYPHOON_MAX - 1)] = -1 };
f1bfe89b 62static unsigned long mutefreq = CONFIG_RADIO_TYPHOON_MUTEFREQ;
da1ff351
HV
63
64module_param_array(io, int, NULL, 0444);
65MODULE_PARM_DESC(io, "I/O addresses of the Typhoon card (0x316 or 0x336)");
66module_param_array(radio_nr, int, NULL, 0444);
67MODULE_PARM_DESC(radio_nr, "Radio device numbers");
f1bfe89b
HV
68module_param(mutefreq, ulong, 0);
69MODULE_PARM_DESC(mutefreq, "Frequency used when muting the card (in kHz)");
70
f1bfe89b 71struct typhoon {
da1ff351 72 struct radio_isa_card isa;
1da177e4 73 int muted;
1da177e4
LT
74};
75
da1ff351 76static struct radio_isa_card *typhoon_alloc(void)
1da177e4 77{
da1ff351
HV
78 struct typhoon *ty = kzalloc(sizeof(*ty), GFP_KERNEL);
79
80 return ty ? &ty->isa : NULL;
1da177e4
LT
81}
82
da1ff351 83static int typhoon_s_frequency(struct radio_isa_card *isa, u32 freq)
1da177e4
LT
84{
85 unsigned long outval;
86 unsigned long x;
87
88 /*
89 * The frequency transfer curve is not linear. The best fit I could
90 * get is
91 *
92 * outval = -155 + exp((f + 15.55) * 0.057))
93 *
94 * where frequency f is in MHz. Since we don't have exp in the kernel,
95 * I approximate this function by a third order polynomial.
96 *
97 */
98
da1ff351 99 x = freq / 160;
1da177e4
LT
100 outval = (x * x + 2500) / 5000;
101 outval = (outval * x + 5000) / 10000;
102 outval -= (10 * x * x + 10433) / 20866;
103 outval += 4 * x - 11505;
104
da1ff351
HV
105 outb_p((outval >> 8) & 0x01, isa->io + 4);
106 outb_p(outval >> 9, isa->io + 6);
107 outb_p(outval & 0xff, isa->io + 8);
3f6892ac
DL
108 return 0;
109}
30c48305 110
da1ff351 111static int typhoon_s_mute_volume(struct radio_isa_card *isa, bool mute, int vol)
3f6892ac 112{
da1ff351 113 struct typhoon *ty = container_of(isa, struct typhoon, isa);
30c48305 114
da1ff351
HV
115 if (mute)
116 vol = 0;
117 vol >>= 14; /* Map 16 bit to 2 bit */
118 vol &= 3;
119 outb_p(vol / 2, isa->io); /* Set the volume, high bit. */
120 outb_p(vol % 2, isa->io + 2); /* Set the volume, low bit. */
30c48305 121
da1ff351
HV
122 if (vol == 0 && !ty->muted) {
123 ty->muted = true;
124 return typhoon_s_frequency(isa, mutefreq << 4);
3f6892ac 125 }
da1ff351
HV
126 if (vol && ty->muted) {
127 ty->muted = false;
128 return typhoon_s_frequency(isa, isa->freq);
3f6892ac 129 }
3f6892ac 130 return 0;
1da177e4
LT
131}
132
da1ff351
HV
133static const struct radio_isa_ops typhoon_ops = {
134 .alloc = typhoon_alloc,
135 .s_mute_volume = typhoon_s_mute_volume,
136 .s_frequency = typhoon_s_frequency,
1da177e4
LT
137};
138
da1ff351
HV
139static const int typhoon_ioports[] = { 0x316, 0x336 };
140
141static struct radio_isa_driver typhoon_driver = {
142 .driver = {
143 .match = radio_isa_match,
144 .probe = radio_isa_probe,
145 .remove = radio_isa_remove,
146 .driver = {
147 .name = "radio-typhoon",
148 },
149 },
150 .io_params = io,
151 .radio_nr_params = radio_nr,
152 .io_ports = typhoon_ioports,
153 .num_of_io_ports = ARRAY_SIZE(typhoon_ioports),
154 .region_size = 8,
155 .card = "Typhoon Radio",
156 .ops = &typhoon_ops,
157 .has_stereo = true,
158 .max_volume = 3,
1da177e4
LT
159};
160
f1bfe89b 161static int __init typhoon_init(void)
0b9c2b7a 162{
da1ff351
HV
163 if (mutefreq < 87000 || mutefreq > 108000) {
164 printk(KERN_ERR "%s: You must set a frequency (in kHz) used when muting the card,\n",
165 typhoon_driver.driver.driver.name);
166 printk(KERN_ERR "%s: e.g. with \"mutefreq=87500\" (87000 <= mutefreq <= 108000)\n",
167 typhoon_driver.driver.driver.name);
168 return -ENODEV;
f1bfe89b 169 }
da1ff351 170 return isa_register_driver(&typhoon_driver.driver, TYPHOON_MAX);
1da177e4
LT
171}
172
f1bfe89b 173static void __exit typhoon_exit(void)
1da177e4 174{
da1ff351 175 isa_unregister_driver(&typhoon_driver.driver);
1da177e4
LT
176}
177
da1ff351 178
1da177e4 179module_init(typhoon_init);
f1bfe89b 180module_exit(typhoon_exit);
1da177e4 181