blob: 26a8c6002121bde9182e709efce646fd5a9547cb [file] [log] [blame]
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -03001/* radio-trust.c - Trust FM Radio card driver for Linux 2.2
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * by Eric Lammerts <eric@scintilla.utwente.nl>
3 *
4 * Based on radio-aztech.c. Original notes:
5 *
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -03006 * Adapted to support the Video for Linux API by
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Russell Kroll <rkroll@exploits.org>. Based on original tuner code by:
8 *
9 * Quay Ly
10 * Donald Song
Mauro Carvalho Chehab4286c6f2006-04-08 16:06:16 -030011 * Jason Lewis (jlewis@twilight.vtc.vsc.edu)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * Scott McGrath (smcgrath@twilight.vtc.vsc.edu)
13 * William McGrath (wmcgrath@twilight.vtc.vsc.edu)
14 *
Mauro Carvalho Chehab982eddb2006-08-08 09:10:05 -030015 * Converted to V4L2 API by Mauro Carvalho Chehab <mchehab@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 */
17
18#include <stdarg.h>
19#include <linux/module.h>
20#include <linux/init.h>
21#include <linux/ioport.h>
Mauro Carvalho Chehab982eddb2006-08-08 09:10:05 -030022#include <linux/videodev2.h>
Hans Verkuil1dc8aaf2009-03-06 13:54:23 -030023#include <linux/io.h>
Hans Verkuil9f1dfcc2012-02-29 05:50:27 -030024#include <linux/slab.h>
Hans Verkuil1dc8aaf2009-03-06 13:54:23 -030025#include <media/v4l2-device.h>
Hans Verkuil35ea11f2008-07-20 08:12:02 -030026#include <media/v4l2-ioctl.h>
Hans Verkuil1d211f22012-01-16 05:16:29 -030027#include "radio-isa.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Hans Verkuil1dc8aaf2009-03-06 13:54:23 -030029MODULE_AUTHOR("Eric Lammerts, Russell Kroll, Quay Lu, Donald Song, Jason Lewis, Scott McGrath, William McGrath");
30MODULE_DESCRIPTION("A driver for the Trust FM Radio card.");
31MODULE_LICENSE("GPL");
Hans Verkuil1d211f22012-01-16 05:16:29 -030032MODULE_VERSION("0.1.99");
Mauro Carvalho Chehab982eddb2006-08-08 09:10:05 -030033
Linus Torvalds1da177e2005-04-16 15:20:36 -070034/* acceptable ports: 0x350 (JP3 shorted), 0x358 (JP3 open) */
35
36#ifndef CONFIG_RADIO_TRUST_PORT
37#define CONFIG_RADIO_TRUST_PORT -1
38#endif
39
Hans Verkuil1d211f22012-01-16 05:16:29 -030040#define TRUST_MAX 2
Hans Verkuil1dc8aaf2009-03-06 13:54:23 -030041
Hans Verkuil1d211f22012-01-16 05:16:29 -030042static int io[TRUST_MAX] = { [0] = CONFIG_RADIO_TRUST_PORT,
43 [1 ... (TRUST_MAX - 1)] = -1 };
44static int radio_nr[TRUST_MAX] = { [0 ... (TRUST_MAX - 1)] = -1 };
45
46module_param_array(io, int, NULL, 0444);
47MODULE_PARM_DESC(io, "I/O addresses of the Trust FM Radio card (0x350 or 0x358)");
48module_param_array(radio_nr, int, NULL, 0444);
49MODULE_PARM_DESC(radio_nr, "Radio device numbers");
Hans Verkuil1dc8aaf2009-03-06 13:54:23 -030050
Hans Verkuil1dc8aaf2009-03-06 13:54:23 -030051struct trust {
Hans Verkuil1d211f22012-01-16 05:16:29 -030052 struct radio_isa_card isa;
Hans Verkuil1dc8aaf2009-03-06 13:54:23 -030053 int ioval;
Hans Verkuil1dc8aaf2009-03-06 13:54:23 -030054};
55
Hans Verkuil1d211f22012-01-16 05:16:29 -030056static struct radio_isa_card *trust_alloc(void)
57{
58 struct trust *tr = kzalloc(sizeof(*tr), GFP_KERNEL);
59
60 return tr ? &tr->isa : NULL;
61}
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63/* i2c addresses */
64#define TDA7318_ADDR 0x88
65#define TSA6060T_ADDR 0xc4
66
Hans Verkuil1d211f22012-01-16 05:16:29 -030067#define TR_DELAY do { inb(tr->isa.io); inb(tr->isa.io); inb(tr->isa.io); } while (0)
68#define TR_SET_SCL outb(tr->ioval |= 2, tr->isa.io)
69#define TR_CLR_SCL outb(tr->ioval &= 0xfd, tr->isa.io)
70#define TR_SET_SDA outb(tr->ioval |= 1, tr->isa.io)
71#define TR_CLR_SDA outb(tr->ioval &= 0xfe, tr->isa.io)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Hans Verkuil1dc8aaf2009-03-06 13:54:23 -030073static void write_i2c(struct trust *tr, int n, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074{
75 unsigned char val, mask;
76 va_list args;
77
78 va_start(args, n);
79
80 /* start condition */
81 TR_SET_SDA;
82 TR_SET_SCL;
83 TR_DELAY;
84 TR_CLR_SDA;
85 TR_CLR_SCL;
86 TR_DELAY;
87
Hans Verkuil1d211f22012-01-16 05:16:29 -030088 for (; n; n--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 val = va_arg(args, unsigned);
Hans Verkuil1d211f22012-01-16 05:16:29 -030090 for (mask = 0x80; mask; mask >>= 1) {
91 if (val & mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 TR_SET_SDA;
93 else
94 TR_CLR_SDA;
95 TR_SET_SCL;
96 TR_DELAY;
97 TR_CLR_SCL;
98 TR_DELAY;
99 }
100 /* acknowledge bit */
101 TR_SET_SDA;
102 TR_SET_SCL;
103 TR_DELAY;
104 TR_CLR_SCL;
105 TR_DELAY;
106 }
107
108 /* stop condition */
109 TR_CLR_SDA;
110 TR_DELAY;
111 TR_SET_SCL;
112 TR_DELAY;
113 TR_SET_SDA;
114 TR_DELAY;
115
116 va_end(args);
117}
118
Hans Verkuil1d211f22012-01-16 05:16:29 -0300119static int trust_s_mute_volume(struct radio_isa_card *isa, bool mute, int vol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{
Hans Verkuil1d211f22012-01-16 05:16:29 -0300121 struct trust *tr = container_of(isa, struct trust, isa);
122
123 tr->ioval = (tr->ioval & 0xf7) | (mute << 3);
124 outb(tr->ioval, isa->io);
125 write_i2c(tr, 2, TDA7318_ADDR, vol ^ 0x1f);
126 return 0;
127}
128
129static int trust_s_stereo(struct radio_isa_card *isa, bool stereo)
130{
131 struct trust *tr = container_of(isa, struct trust, isa);
132
133 tr->ioval = (tr->ioval & 0xfb) | (!stereo << 2);
134 outb(tr->ioval, isa->io);
135 return 0;
136}
137
138static u32 trust_g_signal(struct radio_isa_card *isa)
139{
140 int i, v;
141
142 for (i = 0, v = 0; i < 100; i++)
143 v |= inb(isa->io);
144 return (v & 1) ? 0 : 0xffff;
145}
146
147static int trust_s_frequency(struct radio_isa_card *isa, u32 freq)
148{
149 struct trust *tr = container_of(isa, struct trust, isa);
150
151 freq /= 160; /* Convert to 10 kHz units */
152 freq += 1070; /* Add 10.7 MHz IF */
153 write_i2c(tr, 5, TSA6060T_ADDR, (freq << 1) | 1,
154 freq >> 7, 0x60 | ((freq >> 15) & 1), 0);
155 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156}
157
158static int basstreble2chip[15] = {
159 0, 1, 2, 3, 4, 5, 6, 7, 14, 13, 12, 11, 10, 9, 8
160};
161
Hans Verkuil1d211f22012-01-16 05:16:29 -0300162static int trust_s_ctrl(struct v4l2_ctrl *ctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163{
Hans Verkuil1d211f22012-01-16 05:16:29 -0300164 struct radio_isa_card *isa =
165 container_of(ctrl->handler, struct radio_isa_card, hdl);
166 struct trust *tr = container_of(isa, struct trust, isa);
Hans Verkuil1dc8aaf2009-03-06 13:54:23 -0300167
Douglas Landgrafc5f822b2007-04-20 18:22:19 -0300168 switch (ctrl->id) {
Douglas Landgrafc5f822b2007-04-20 18:22:19 -0300169 case V4L2_CID_AUDIO_BASS:
Hans Verkuil1d211f22012-01-16 05:16:29 -0300170 write_i2c(tr, 2, TDA7318_ADDR, 0x60 | basstreble2chip[ctrl->val]);
Douglas Landgrafc5f822b2007-04-20 18:22:19 -0300171 return 0;
172 case V4L2_CID_AUDIO_TREBLE:
Hans Verkuil1d211f22012-01-16 05:16:29 -0300173 write_i2c(tr, 2, TDA7318_ADDR, 0x70 | basstreble2chip[ctrl->val]);
Douglas Landgrafc5f822b2007-04-20 18:22:19 -0300174 return 0;
175 }
176 return -EINVAL;
177}
178
Hans Verkuil1d211f22012-01-16 05:16:29 -0300179static const struct v4l2_ctrl_ops trust_ctrl_ops = {
180 .s_ctrl = trust_s_ctrl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181};
182
Hans Verkuil1d211f22012-01-16 05:16:29 -0300183static int trust_initialize(struct radio_isa_card *isa)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184{
Hans Verkuil1d211f22012-01-16 05:16:29 -0300185 struct trust *tr = container_of(isa, struct trust, isa);
Hans Verkuil1dc8aaf2009-03-06 13:54:23 -0300186
Hans Verkuil1dc8aaf2009-03-06 13:54:23 -0300187 tr->ioval = 0xf;
Hans Verkuil1dc8aaf2009-03-06 13:54:23 -0300188 write_i2c(tr, 2, TDA7318_ADDR, 0x80); /* speaker att. LF = 0 dB */
189 write_i2c(tr, 2, TDA7318_ADDR, 0xa0); /* speaker att. RF = 0 dB */
190 write_i2c(tr, 2, TDA7318_ADDR, 0xc0); /* speaker att. LR = 0 dB */
191 write_i2c(tr, 2, TDA7318_ADDR, 0xe0); /* speaker att. RR = 0 dB */
192 write_i2c(tr, 2, TDA7318_ADDR, 0x40); /* stereo 1 input, gain = 18.75 dB */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Hans Verkuil1d211f22012-01-16 05:16:29 -0300194 v4l2_ctrl_new_std(&isa->hdl, &trust_ctrl_ops,
195 V4L2_CID_AUDIO_BASS, 0, 15, 1, 8);
196 v4l2_ctrl_new_std(&isa->hdl, &trust_ctrl_ops,
197 V4L2_CID_AUDIO_TREBLE, 0, 15, 1, 8);
198 return isa->hdl.error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199}
200
Hans Verkuil1d211f22012-01-16 05:16:29 -0300201static const struct radio_isa_ops trust_ops = {
202 .init = trust_initialize,
203 .alloc = trust_alloc,
204 .s_mute_volume = trust_s_mute_volume,
205 .s_frequency = trust_s_frequency,
206 .s_stereo = trust_s_stereo,
207 .g_signal = trust_g_signal,
208};
Hans Verkuil1dc8aaf2009-03-06 13:54:23 -0300209
Hans Verkuil1d211f22012-01-16 05:16:29 -0300210static const int trust_ioports[] = { 0x350, 0x358 };
211
212static struct radio_isa_driver trust_driver = {
213 .driver = {
214 .match = radio_isa_match,
215 .probe = radio_isa_probe,
216 .remove = radio_isa_remove,
217 .driver = {
218 .name = "radio-trust",
219 },
220 },
221 .io_params = io,
222 .radio_nr_params = radio_nr,
223 .io_ports = trust_ioports,
224 .num_of_io_ports = ARRAY_SIZE(trust_ioports),
225 .region_size = 2,
226 .card = "Trust FM Radio",
227 .ops = &trust_ops,
228 .has_stereo = true,
229 .max_volume = 31,
230};
231
232static int __init trust_init(void)
233{
234 return isa_register_driver(&trust_driver.driver, TRUST_MAX);
235}
236
237static void __exit trust_exit(void)
238{
239 isa_unregister_driver(&trust_driver.driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240}
241
242module_init(trust_init);
Hans Verkuil1d211f22012-01-16 05:16:29 -0300243module_exit(trust_exit);