Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * ALSA driver for TEA5757/5759 Philips AM/FM radio tuner chips |
| 3 | * |
Jaroslav Kysela | c1017a4 | 2007-10-15 09:50:19 +0200 | [diff] [blame] | 4 | * Copyright (c) 2004 Jaroslav Kysela <perex@perex.cz> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License as published by |
| 9 | * the Free Software Foundation; either version 2 of the License, or |
| 10 | * (at your option) any later version. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | * GNU General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with this program; if not, write to the Free Software |
| 19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 20 | * |
Igor M. Liplianin | 4b29631 | 2008-11-09 15:25:31 -0300 | [diff] [blame] | 21 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include <asm/io.h> |
| 24 | #include <linux/delay.h> |
Paul Gortmaker | da155d5 | 2011-07-15 12:38:28 -0400 | [diff] [blame] | 25 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <linux/init.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 27 | #include <linux/slab.h> |
Hans Verkuil | d4ecc83 | 2012-02-27 05:30:13 -0300 | [diff] [blame] | 28 | #include <linux/sched.h> |
| 29 | #include <media/v4l2-device.h> |
Ondrej Zary | 4522e82 | 2011-05-23 09:17:19 -0300 | [diff] [blame] | 30 | #include <media/v4l2-dev.h> |
Hans Verkuil | d4ecc83 | 2012-02-27 05:30:13 -0300 | [diff] [blame] | 31 | #include <media/v4l2-fh.h> |
Ondrej Zary | 4522e82 | 2011-05-23 09:17:19 -0300 | [diff] [blame] | 32 | #include <media/v4l2-ioctl.h> |
Hans Verkuil | d4ecc83 | 2012-02-27 05:30:13 -0300 | [diff] [blame] | 33 | #include <media/v4l2-event.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | #include <sound/tea575x-tuner.h> |
| 35 | |
Jaroslav Kysela | c1017a4 | 2007-10-15 09:50:19 +0200 | [diff] [blame] | 36 | MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | MODULE_DESCRIPTION("Routines for control of TEA5757/5759 Philips AM/FM radio tuner chips"); |
| 38 | MODULE_LICENSE("GPL"); |
| 39 | |
Hans Verkuil | d4ecc83 | 2012-02-27 05:30:13 -0300 | [diff] [blame] | 40 | #define FREQ_LO (76U * 16000) |
| 41 | #define FREQ_HI (108U * 16000) |
Mauro Carvalho Chehab | 9b76ede | 2009-02-27 11:51:24 -0300 | [diff] [blame] | 42 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | /* |
| 44 | * definitions |
| 45 | */ |
| 46 | |
| 47 | #define TEA575X_BIT_SEARCH (1<<24) /* 1 = search action, 0 = tuned */ |
| 48 | #define TEA575X_BIT_UPDOWN (1<<23) /* 0 = search down, 1 = search up */ |
| 49 | #define TEA575X_BIT_MONO (1<<22) /* 0 = stereo, 1 = mono */ |
| 50 | #define TEA575X_BIT_BAND_MASK (3<<20) |
| 51 | #define TEA575X_BIT_BAND_FM (0<<20) |
| 52 | #define TEA575X_BIT_BAND_MW (1<<20) |
| 53 | #define TEA575X_BIT_BAND_LW (1<<21) |
| 54 | #define TEA575X_BIT_BAND_SW (1<<22) |
| 55 | #define TEA575X_BIT_PORT_0 (1<<19) /* user bit */ |
| 56 | #define TEA575X_BIT_PORT_1 (1<<18) /* user bit */ |
| 57 | #define TEA575X_BIT_SEARCH_MASK (3<<16) /* search level */ |
| 58 | #define TEA575X_BIT_SEARCH_5_28 (0<<16) /* FM >5uV, AM >28uV */ |
| 59 | #define TEA575X_BIT_SEARCH_10_40 (1<<16) /* FM >10uV, AM > 40uV */ |
| 60 | #define TEA575X_BIT_SEARCH_30_63 (2<<16) /* FM >30uV, AM > 63uV */ |
| 61 | #define TEA575X_BIT_SEARCH_150_1000 (3<<16) /* FM > 150uV, AM > 1000uV */ |
| 62 | #define TEA575X_BIT_DUMMY (1<<15) /* buffer */ |
| 63 | #define TEA575X_BIT_FREQ_MASK 0x7fff |
| 64 | |
| 65 | /* |
| 66 | * lowlevel part |
| 67 | */ |
| 68 | |
Ondrej Zary | 14219d0 | 2011-05-09 23:39:26 +0200 | [diff] [blame] | 69 | static void snd_tea575x_write(struct snd_tea575x *tea, unsigned int val) |
| 70 | { |
| 71 | u16 l; |
| 72 | u8 data; |
| 73 | |
| 74 | tea->ops->set_direction(tea, 1); |
| 75 | udelay(16); |
| 76 | |
| 77 | for (l = 25; l > 0; l--) { |
| 78 | data = (val >> 24) & TEA575X_DATA; |
| 79 | val <<= 1; /* shift data */ |
| 80 | tea->ops->set_pins(tea, data | TEA575X_WREN); |
| 81 | udelay(2); |
| 82 | tea->ops->set_pins(tea, data | TEA575X_WREN | TEA575X_CLK); |
| 83 | udelay(2); |
| 84 | tea->ops->set_pins(tea, data | TEA575X_WREN); |
| 85 | udelay(2); |
| 86 | } |
| 87 | |
| 88 | if (!tea->mute) |
| 89 | tea->ops->set_pins(tea, 0); |
| 90 | } |
| 91 | |
Hans Verkuil | bc2b395 | 2012-02-27 05:31:58 -0300 | [diff] [blame] | 92 | static u32 snd_tea575x_read(struct snd_tea575x *tea) |
Ondrej Zary | 14219d0 | 2011-05-09 23:39:26 +0200 | [diff] [blame] | 93 | { |
| 94 | u16 l, rdata; |
| 95 | u32 data = 0; |
| 96 | |
| 97 | tea->ops->set_direction(tea, 0); |
| 98 | tea->ops->set_pins(tea, 0); |
| 99 | udelay(16); |
| 100 | |
| 101 | for (l = 24; l--;) { |
| 102 | tea->ops->set_pins(tea, TEA575X_CLK); |
| 103 | udelay(2); |
| 104 | if (!l) |
| 105 | tea->tuned = tea->ops->get_pins(tea) & TEA575X_MOST ? 0 : 1; |
| 106 | tea->ops->set_pins(tea, 0); |
| 107 | udelay(2); |
| 108 | data <<= 1; /* shift data */ |
| 109 | rdata = tea->ops->get_pins(tea); |
| 110 | if (!l) |
| 111 | tea->stereo = (rdata & TEA575X_MOST) ? 0 : 1; |
| 112 | if (rdata & TEA575X_DATA) |
| 113 | data++; |
| 114 | udelay(2); |
| 115 | } |
| 116 | |
| 117 | if (tea->mute) |
| 118 | tea->ops->set_pins(tea, TEA575X_WREN); |
| 119 | |
| 120 | return data; |
| 121 | } |
| 122 | |
Hans Verkuil | bc2b395 | 2012-02-27 05:31:58 -0300 | [diff] [blame] | 123 | static u32 snd_tea575x_get_freq(struct snd_tea575x *tea) |
| 124 | { |
| 125 | u32 freq = snd_tea575x_read(tea) & TEA575X_BIT_FREQ_MASK; |
| 126 | |
| 127 | if (freq == 0) |
| 128 | return freq; |
| 129 | |
| 130 | /* freq *= 12.5 */ |
| 131 | freq *= 125; |
| 132 | freq /= 10; |
| 133 | /* crystal fixup */ |
| 134 | if (tea->tea5759) |
| 135 | freq += TEA575X_FMIF; |
| 136 | else |
| 137 | freq -= TEA575X_FMIF; |
| 138 | |
| 139 | return clamp(freq * 16, FREQ_LO, FREQ_HI); /* from kHz */ |
| 140 | } |
| 141 | |
Takashi Iwai | 97f02e0 | 2005-11-17 14:17:19 +0100 | [diff] [blame] | 142 | static void snd_tea575x_set_freq(struct snd_tea575x *tea) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | { |
Hans Verkuil | d4ecc83 | 2012-02-27 05:30:13 -0300 | [diff] [blame] | 144 | u32 freq = tea->freq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | |
Ondrej Zary | 375d135 | 2011-03-19 16:32:53 +0100 | [diff] [blame] | 146 | freq /= 16; /* to kHz */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | /* crystal fixup */ |
| 148 | if (tea->tea5759) |
Ondrej Zary | ea27316 | 2011-05-12 22:17:56 +0200 | [diff] [blame] | 149 | freq -= TEA575X_FMIF; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | else |
Ondrej Zary | ea27316 | 2011-05-12 22:17:56 +0200 | [diff] [blame] | 151 | freq += TEA575X_FMIF; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | /* freq /= 12.5 */ |
| 153 | freq *= 10; |
| 154 | freq /= 125; |
| 155 | |
| 156 | tea->val &= ~TEA575X_BIT_FREQ_MASK; |
| 157 | tea->val |= freq & TEA575X_BIT_FREQ_MASK; |
Ondrej Zary | 14219d0 | 2011-05-09 23:39:26 +0200 | [diff] [blame] | 158 | snd_tea575x_write(tea, tea->val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | } |
| 160 | |
| 161 | /* |
| 162 | * Linux Video interface |
| 163 | */ |
| 164 | |
Mauro Carvalho Chehab | 9b76ede | 2009-02-27 11:51:24 -0300 | [diff] [blame] | 165 | static int vidioc_querycap(struct file *file, void *priv, |
| 166 | struct v4l2_capability *v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | { |
Hans Verkuil | c170ecf | 2008-08-23 08:32:09 -0300 | [diff] [blame] | 168 | struct snd_tea575x *tea = video_drvdata(file); |
Igor M. Liplianin | 4b29631 | 2008-11-09 15:25:31 -0300 | [diff] [blame] | 169 | |
Hans Verkuil | d4ecc83 | 2012-02-27 05:30:13 -0300 | [diff] [blame] | 170 | strlcpy(v->driver, tea->v4l2_dev->name, sizeof(v->driver)); |
Ondrej Zary | 10ca720 | 2011-05-12 22:18:22 +0200 | [diff] [blame] | 171 | strlcpy(v->card, tea->card, sizeof(v->card)); |
| 172 | strlcat(v->card, tea->tea5759 ? " TEA5759" : " TEA5757", sizeof(v->card)); |
| 173 | strlcpy(v->bus_info, tea->bus_info, sizeof(v->bus_info)); |
Hans Verkuil | d4ecc83 | 2012-02-27 05:30:13 -0300 | [diff] [blame] | 174 | v->device_caps = V4L2_CAP_TUNER | V4L2_CAP_RADIO; |
| 175 | if (!tea->cannot_read_data) |
| 176 | v->device_caps |= V4L2_CAP_HW_FREQ_SEEK; |
| 177 | v->capabilities = v->device_caps | V4L2_CAP_DEVICE_CAPS; |
Mauro Carvalho Chehab | 9b76ede | 2009-02-27 11:51:24 -0300 | [diff] [blame] | 178 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | } |
| 180 | |
Mauro Carvalho Chehab | 9b76ede | 2009-02-27 11:51:24 -0300 | [diff] [blame] | 181 | static int vidioc_g_tuner(struct file *file, void *priv, |
| 182 | struct v4l2_tuner *v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | { |
Ondrej Zary | 375d135 | 2011-03-19 16:32:53 +0100 | [diff] [blame] | 184 | struct snd_tea575x *tea = video_drvdata(file); |
| 185 | |
Mauro Carvalho Chehab | 9b76ede | 2009-02-27 11:51:24 -0300 | [diff] [blame] | 186 | if (v->index > 0) |
| 187 | return -EINVAL; |
| 188 | |
Ondrej Zary | 14219d0 | 2011-05-09 23:39:26 +0200 | [diff] [blame] | 189 | snd_tea575x_read(tea); |
Ondrej Zary | 375d135 | 2011-03-19 16:32:53 +0100 | [diff] [blame] | 190 | |
Mauro Carvalho Chehab | 9b76ede | 2009-02-27 11:51:24 -0300 | [diff] [blame] | 191 | strcpy(v->name, "FM"); |
| 192 | v->type = V4L2_TUNER_RADIO; |
Ondrej Zary | 375d135 | 2011-03-19 16:32:53 +0100 | [diff] [blame] | 193 | v->capability = V4L2_TUNER_CAP_LOW | V4L2_TUNER_CAP_STEREO; |
Mauro Carvalho Chehab | 9b76ede | 2009-02-27 11:51:24 -0300 | [diff] [blame] | 194 | v->rangelow = FREQ_LO; |
| 195 | v->rangehigh = FREQ_HI; |
Hans Verkuil | d4ecc83 | 2012-02-27 05:30:13 -0300 | [diff] [blame] | 196 | v->rxsubchans = tea->stereo ? V4L2_TUNER_SUB_STEREO : V4L2_TUNER_SUB_MONO; |
| 197 | v->audmode = (tea->val & TEA575X_BIT_MONO) ? |
| 198 | V4L2_TUNER_MODE_MONO : V4L2_TUNER_MODE_STEREO; |
Ondrej Zary | 375d135 | 2011-03-19 16:32:53 +0100 | [diff] [blame] | 199 | v->signal = tea->tuned ? 0xffff : 0; |
Mauro Carvalho Chehab | 9b76ede | 2009-02-27 11:51:24 -0300 | [diff] [blame] | 200 | return 0; |
| 201 | } |
| 202 | |
| 203 | static int vidioc_s_tuner(struct file *file, void *priv, |
| 204 | struct v4l2_tuner *v) |
| 205 | { |
Hans Verkuil | d4ecc83 | 2012-02-27 05:30:13 -0300 | [diff] [blame] | 206 | struct snd_tea575x *tea = video_drvdata(file); |
| 207 | |
| 208 | if (v->index) |
Mauro Carvalho Chehab | 9b76ede | 2009-02-27 11:51:24 -0300 | [diff] [blame] | 209 | return -EINVAL; |
Hans Verkuil | d4ecc83 | 2012-02-27 05:30:13 -0300 | [diff] [blame] | 210 | tea->val &= ~TEA575X_BIT_MONO; |
| 211 | if (v->audmode == V4L2_TUNER_MODE_MONO) |
| 212 | tea->val |= TEA575X_BIT_MONO; |
| 213 | snd_tea575x_write(tea, tea->val); |
Mauro Carvalho Chehab | 9b76ede | 2009-02-27 11:51:24 -0300 | [diff] [blame] | 214 | return 0; |
| 215 | } |
| 216 | |
| 217 | static int vidioc_g_frequency(struct file *file, void *priv, |
| 218 | struct v4l2_frequency *f) |
| 219 | { |
| 220 | struct snd_tea575x *tea = video_drvdata(file); |
| 221 | |
Ondrej Zary | 375d135 | 2011-03-19 16:32:53 +0100 | [diff] [blame] | 222 | if (f->tuner != 0) |
| 223 | return -EINVAL; |
Mauro Carvalho Chehab | 9b76ede | 2009-02-27 11:51:24 -0300 | [diff] [blame] | 224 | f->type = V4L2_TUNER_RADIO; |
| 225 | f->frequency = tea->freq; |
| 226 | return 0; |
| 227 | } |
| 228 | |
| 229 | static int vidioc_s_frequency(struct file *file, void *priv, |
| 230 | struct v4l2_frequency *f) |
| 231 | { |
| 232 | struct snd_tea575x *tea = video_drvdata(file); |
| 233 | |
Ondrej Zary | 375d135 | 2011-03-19 16:32:53 +0100 | [diff] [blame] | 234 | if (f->tuner != 0 || f->type != V4L2_TUNER_RADIO) |
| 235 | return -EINVAL; |
| 236 | |
Hans Verkuil | d4ecc83 | 2012-02-27 05:30:13 -0300 | [diff] [blame] | 237 | tea->val &= ~TEA575X_BIT_SEARCH; |
| 238 | tea->freq = clamp(f->frequency, FREQ_LO, FREQ_HI); |
Mauro Carvalho Chehab | 9b76ede | 2009-02-27 11:51:24 -0300 | [diff] [blame] | 239 | snd_tea575x_set_freq(tea); |
Mauro Carvalho Chehab | 9b76ede | 2009-02-27 11:51:24 -0300 | [diff] [blame] | 240 | return 0; |
| 241 | } |
| 242 | |
Hans Verkuil | d4ecc83 | 2012-02-27 05:30:13 -0300 | [diff] [blame] | 243 | static int vidioc_s_hw_freq_seek(struct file *file, void *fh, |
| 244 | struct v4l2_hw_freq_seek *a) |
Mauro Carvalho Chehab | 9b76ede | 2009-02-27 11:51:24 -0300 | [diff] [blame] | 245 | { |
Hans Verkuil | d4ecc83 | 2012-02-27 05:30:13 -0300 | [diff] [blame] | 246 | struct snd_tea575x *tea = video_drvdata(file); |
Hans Verkuil | bc2b395 | 2012-02-27 05:31:58 -0300 | [diff] [blame] | 247 | unsigned long timeout; |
| 248 | int i; |
Mauro Carvalho Chehab | 9b76ede | 2009-02-27 11:51:24 -0300 | [diff] [blame] | 249 | |
Hans Verkuil | d4ecc83 | 2012-02-27 05:30:13 -0300 | [diff] [blame] | 250 | if (tea->cannot_read_data) |
| 251 | return -ENOTTY; |
| 252 | if (a->tuner || a->wrap_around) |
Mauro Carvalho Chehab | 9b76ede | 2009-02-27 11:51:24 -0300 | [diff] [blame] | 253 | return -EINVAL; |
Hans Verkuil | bc2b395 | 2012-02-27 05:31:58 -0300 | [diff] [blame] | 254 | |
| 255 | /* clear the frequency, HW will fill it in */ |
| 256 | tea->val &= ~TEA575X_BIT_FREQ_MASK; |
Hans Verkuil | d4ecc83 | 2012-02-27 05:30:13 -0300 | [diff] [blame] | 257 | tea->val |= TEA575X_BIT_SEARCH; |
Hans Verkuil | d4ecc83 | 2012-02-27 05:30:13 -0300 | [diff] [blame] | 258 | if (a->seek_upward) |
| 259 | tea->val |= TEA575X_BIT_UPDOWN; |
Hans Verkuil | bc2b395 | 2012-02-27 05:31:58 -0300 | [diff] [blame] | 260 | else |
| 261 | tea->val &= ~TEA575X_BIT_UPDOWN; |
Hans Verkuil | d4ecc83 | 2012-02-27 05:30:13 -0300 | [diff] [blame] | 262 | snd_tea575x_write(tea, tea->val); |
Hans Verkuil | bc2b395 | 2012-02-27 05:31:58 -0300 | [diff] [blame] | 263 | timeout = jiffies + msecs_to_jiffies(10000); |
Hans Verkuil | d4ecc83 | 2012-02-27 05:30:13 -0300 | [diff] [blame] | 264 | for (;;) { |
Hans Verkuil | bc2b395 | 2012-02-27 05:31:58 -0300 | [diff] [blame] | 265 | if (time_after(jiffies, timeout)) |
| 266 | break; |
Hans Verkuil | d4ecc83 | 2012-02-27 05:30:13 -0300 | [diff] [blame] | 267 | if (schedule_timeout_interruptible(msecs_to_jiffies(10))) { |
| 268 | /* some signal arrived, stop search */ |
| 269 | tea->val &= ~TEA575X_BIT_SEARCH; |
Hans Verkuil | bc2b395 | 2012-02-27 05:31:58 -0300 | [diff] [blame] | 270 | snd_tea575x_set_freq(tea); |
Hans Verkuil | d4ecc83 | 2012-02-27 05:30:13 -0300 | [diff] [blame] | 271 | return -ERESTARTSYS; |
| 272 | } |
Hans Verkuil | bc2b395 | 2012-02-27 05:31:58 -0300 | [diff] [blame] | 273 | if (!(snd_tea575x_read(tea) & TEA575X_BIT_SEARCH)) { |
| 274 | u32 freq; |
| 275 | |
| 276 | /* Found a frequency, wait until it can be read */ |
| 277 | for (i = 0; i < 100; i++) { |
| 278 | msleep(10); |
| 279 | freq = snd_tea575x_get_freq(tea); |
| 280 | if (freq) /* available */ |
| 281 | break; |
| 282 | } |
| 283 | if (freq == 0) /* shouldn't happen */ |
| 284 | break; |
| 285 | /* |
| 286 | * if we moved by less than 50 kHz, or in the wrong |
| 287 | * direction, continue seeking |
| 288 | */ |
| 289 | if (abs(tea->freq - freq) < 16 * 50 || |
| 290 | (a->seek_upward && freq < tea->freq) || |
| 291 | (!a->seek_upward && freq > tea->freq)) { |
| 292 | snd_tea575x_write(tea, tea->val); |
| 293 | continue; |
| 294 | } |
| 295 | tea->freq = freq; |
| 296 | tea->val &= ~TEA575X_BIT_SEARCH; |
| 297 | return 0; |
| 298 | } |
Hans Verkuil | d4ecc83 | 2012-02-27 05:30:13 -0300 | [diff] [blame] | 299 | } |
Hans Verkuil | bc2b395 | 2012-02-27 05:31:58 -0300 | [diff] [blame] | 300 | tea->val &= ~TEA575X_BIT_SEARCH; |
| 301 | snd_tea575x_set_freq(tea); |
| 302 | return -EAGAIN; |
Mauro Carvalho Chehab | 9b76ede | 2009-02-27 11:51:24 -0300 | [diff] [blame] | 303 | } |
| 304 | |
Ondrej Zary | 4522e82 | 2011-05-23 09:17:19 -0300 | [diff] [blame] | 305 | static int tea575x_s_ctrl(struct v4l2_ctrl *ctrl) |
Mauro Carvalho Chehab | 9b76ede | 2009-02-27 11:51:24 -0300 | [diff] [blame] | 306 | { |
Ondrej Zary | 4522e82 | 2011-05-23 09:17:19 -0300 | [diff] [blame] | 307 | struct snd_tea575x *tea = container_of(ctrl->handler, struct snd_tea575x, ctrl_handler); |
Mauro Carvalho Chehab | 9b76ede | 2009-02-27 11:51:24 -0300 | [diff] [blame] | 308 | |
| 309 | switch (ctrl->id) { |
| 310 | case V4L2_CID_AUDIO_MUTE: |
Ondrej Zary | 4522e82 | 2011-05-23 09:17:19 -0300 | [diff] [blame] | 311 | tea->mute = ctrl->val; |
| 312 | snd_tea575x_set_freq(tea); |
Ondrej Zary | 14219d0 | 2011-05-09 23:39:26 +0200 | [diff] [blame] | 313 | return 0; |
Mauro Carvalho Chehab | 9b76ede | 2009-02-27 11:51:24 -0300 | [diff] [blame] | 314 | } |
Mauro Carvalho Chehab | 9b76ede | 2009-02-27 11:51:24 -0300 | [diff] [blame] | 315 | |
Mauro Carvalho Chehab | 9b76ede | 2009-02-27 11:51:24 -0300 | [diff] [blame] | 316 | return -EINVAL; |
| 317 | } |
| 318 | |
Mauro Carvalho Chehab | 9b76ede | 2009-02-27 11:51:24 -0300 | [diff] [blame] | 319 | static const struct v4l2_file_operations tea575x_fops = { |
| 320 | .owner = THIS_MODULE, |
Ondrej Zary | 6a529c1 | 2011-06-11 10:28:59 -0300 | [diff] [blame] | 321 | .unlocked_ioctl = video_ioctl2, |
Hans Verkuil | d4ecc83 | 2012-02-27 05:30:13 -0300 | [diff] [blame] | 322 | .open = v4l2_fh_open, |
| 323 | .release = v4l2_fh_release, |
| 324 | .poll = v4l2_ctrl_poll, |
Mauro Carvalho Chehab | 9b76ede | 2009-02-27 11:51:24 -0300 | [diff] [blame] | 325 | }; |
| 326 | |
| 327 | static const struct v4l2_ioctl_ops tea575x_ioctl_ops = { |
| 328 | .vidioc_querycap = vidioc_querycap, |
| 329 | .vidioc_g_tuner = vidioc_g_tuner, |
| 330 | .vidioc_s_tuner = vidioc_s_tuner, |
Mauro Carvalho Chehab | 9b76ede | 2009-02-27 11:51:24 -0300 | [diff] [blame] | 331 | .vidioc_g_frequency = vidioc_g_frequency, |
| 332 | .vidioc_s_frequency = vidioc_s_frequency, |
Hans Verkuil | d4ecc83 | 2012-02-27 05:30:13 -0300 | [diff] [blame] | 333 | .vidioc_s_hw_freq_seek = vidioc_s_hw_freq_seek, |
| 334 | .vidioc_log_status = v4l2_ctrl_log_status, |
| 335 | .vidioc_subscribe_event = v4l2_ctrl_subscribe_event, |
| 336 | .vidioc_unsubscribe_event = v4l2_event_unsubscribe, |
Mauro Carvalho Chehab | 9b76ede | 2009-02-27 11:51:24 -0300 | [diff] [blame] | 337 | }; |
| 338 | |
Hans Verkuil | d4ecc83 | 2012-02-27 05:30:13 -0300 | [diff] [blame] | 339 | static const struct video_device tea575x_radio = { |
Mauro Carvalho Chehab | 9b76ede | 2009-02-27 11:51:24 -0300 | [diff] [blame] | 340 | .fops = &tea575x_fops, |
| 341 | .ioctl_ops = &tea575x_ioctl_ops, |
Hans Verkuil | d4ecc83 | 2012-02-27 05:30:13 -0300 | [diff] [blame] | 342 | .release = video_device_release_empty, |
Ondrej Zary | 4522e82 | 2011-05-23 09:17:19 -0300 | [diff] [blame] | 343 | }; |
| 344 | |
| 345 | static const struct v4l2_ctrl_ops tea575x_ctrl_ops = { |
| 346 | .s_ctrl = tea575x_s_ctrl, |
Mauro Carvalho Chehab | 9b76ede | 2009-02-27 11:51:24 -0300 | [diff] [blame] | 347 | }; |
| 348 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | /* |
| 350 | * initialize all the tea575x chips |
| 351 | */ |
Ondrej Zary | 14219d0 | 2011-05-09 23:39:26 +0200 | [diff] [blame] | 352 | int snd_tea575x_init(struct snd_tea575x *tea) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | { |
Mauro Carvalho Chehab | 9b76ede | 2009-02-27 11:51:24 -0300 | [diff] [blame] | 354 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | |
Hans Verkuil | d4ecc83 | 2012-02-27 05:30:13 -0300 | [diff] [blame] | 356 | tea->mute = true; |
Ondrej Zary | 14219d0 | 2011-05-09 23:39:26 +0200 | [diff] [blame] | 357 | |
Hans Verkuil | d4ecc83 | 2012-02-27 05:30:13 -0300 | [diff] [blame] | 358 | /* Not all devices can or know how to read the data back. |
| 359 | Such devices can set cannot_read_data to true. */ |
| 360 | if (!tea->cannot_read_data) { |
| 361 | snd_tea575x_write(tea, 0x55AA); |
| 362 | if (snd_tea575x_read(tea) != 0x55AA) |
| 363 | return -ENODEV; |
| 364 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | |
Hans Verkuil | bc2b395 | 2012-02-27 05:31:58 -0300 | [diff] [blame] | 366 | tea->val = TEA575X_BIT_BAND_FM | TEA575X_BIT_SEARCH_5_28; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | tea->freq = 90500 * 16; /* 90.5Mhz default */ |
Ondrej Zary | 4522e82 | 2011-05-23 09:17:19 -0300 | [diff] [blame] | 368 | snd_tea575x_set_freq(tea); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | |
Ondrej Zary | 4522e82 | 2011-05-23 09:17:19 -0300 | [diff] [blame] | 370 | tea->vd = tea575x_radio; |
| 371 | video_set_drvdata(&tea->vd, tea); |
Ondrej Zary | 6a529c1 | 2011-06-11 10:28:59 -0300 | [diff] [blame] | 372 | mutex_init(&tea->mutex); |
Hans Verkuil | d4ecc83 | 2012-02-27 05:30:13 -0300 | [diff] [blame] | 373 | strlcpy(tea->vd.name, tea->v4l2_dev->name, sizeof(tea->vd.name)); |
Ondrej Zary | 6a529c1 | 2011-06-11 10:28:59 -0300 | [diff] [blame] | 374 | tea->vd.lock = &tea->mutex; |
Hans Verkuil | d4ecc83 | 2012-02-27 05:30:13 -0300 | [diff] [blame] | 375 | tea->vd.v4l2_dev = tea->v4l2_dev; |
| 376 | tea->vd.ctrl_handler = &tea->ctrl_handler; |
| 377 | set_bit(V4L2_FL_USE_FH_PRIO, &tea->vd.flags); |
Mauro Carvalho Chehab | 9b76ede | 2009-02-27 11:51:24 -0300 | [diff] [blame] | 378 | |
Ondrej Zary | 4522e82 | 2011-05-23 09:17:19 -0300 | [diff] [blame] | 379 | v4l2_ctrl_handler_init(&tea->ctrl_handler, 1); |
Ondrej Zary | 4522e82 | 2011-05-23 09:17:19 -0300 | [diff] [blame] | 380 | v4l2_ctrl_new_std(&tea->ctrl_handler, &tea575x_ctrl_ops, V4L2_CID_AUDIO_MUTE, 0, 1, 1, 1); |
| 381 | retval = tea->ctrl_handler.error; |
Mauro Carvalho Chehab | 9b76ede | 2009-02-27 11:51:24 -0300 | [diff] [blame] | 382 | if (retval) { |
Hans Verkuil | d4ecc83 | 2012-02-27 05:30:13 -0300 | [diff] [blame] | 383 | v4l2_err(tea->v4l2_dev, "can't initialize controls\n"); |
Ondrej Zary | 4522e82 | 2011-05-23 09:17:19 -0300 | [diff] [blame] | 384 | v4l2_ctrl_handler_free(&tea->ctrl_handler); |
Ondrej Zary | 14219d0 | 2011-05-09 23:39:26 +0200 | [diff] [blame] | 385 | return retval; |
Mauro Carvalho Chehab | 9b76ede | 2009-02-27 11:51:24 -0300 | [diff] [blame] | 386 | } |
| 387 | |
Ondrej Zary | 4522e82 | 2011-05-23 09:17:19 -0300 | [diff] [blame] | 388 | if (tea->ext_init) { |
| 389 | retval = tea->ext_init(tea); |
| 390 | if (retval) { |
| 391 | v4l2_ctrl_handler_free(&tea->ctrl_handler); |
| 392 | return retval; |
| 393 | } |
| 394 | } |
| 395 | |
| 396 | v4l2_ctrl_handler_setup(&tea->ctrl_handler); |
| 397 | |
Hans Verkuil | d4ecc83 | 2012-02-27 05:30:13 -0300 | [diff] [blame] | 398 | retval = video_register_device(&tea->vd, VFL_TYPE_RADIO, tea->radio_nr); |
Ondrej Zary | 4522e82 | 2011-05-23 09:17:19 -0300 | [diff] [blame] | 399 | if (retval) { |
Hans Verkuil | d4ecc83 | 2012-02-27 05:30:13 -0300 | [diff] [blame] | 400 | v4l2_err(tea->v4l2_dev, "can't register video device!\n"); |
Ondrej Zary | 4522e82 | 2011-05-23 09:17:19 -0300 | [diff] [blame] | 401 | v4l2_ctrl_handler_free(&tea->ctrl_handler); |
| 402 | return retval; |
| 403 | } |
Ondrej Zary | 14219d0 | 2011-05-09 23:39:26 +0200 | [diff] [blame] | 404 | |
| 405 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | } |
| 407 | |
Takashi Iwai | 97f02e0 | 2005-11-17 14:17:19 +0100 | [diff] [blame] | 408 | void snd_tea575x_exit(struct snd_tea575x *tea) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | { |
Ondrej Zary | 4522e82 | 2011-05-23 09:17:19 -0300 | [diff] [blame] | 410 | video_unregister_device(&tea->vd); |
| 411 | v4l2_ctrl_handler_free(&tea->ctrl_handler); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | } |
| 413 | |
| 414 | static int __init alsa_tea575x_module_init(void) |
| 415 | { |
| 416 | return 0; |
| 417 | } |
Igor M. Liplianin | 4b29631 | 2008-11-09 15:25:31 -0300 | [diff] [blame] | 418 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | static void __exit alsa_tea575x_module_exit(void) |
| 420 | { |
| 421 | } |
Igor M. Liplianin | 4b29631 | 2008-11-09 15:25:31 -0300 | [diff] [blame] | 422 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | module_init(alsa_tea575x_module_init) |
| 424 | module_exit(alsa_tea575x_module_exit) |
| 425 | |
| 426 | EXPORT_SYMBOL(snd_tea575x_init); |
| 427 | EXPORT_SYMBOL(snd_tea575x_exit); |