aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/radio
diff options
context:
space:
mode:
authorOndrej Zary <linux@rainbow-software.org>2012-06-12 13:38:00 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2012-06-21 11:12:13 -0400
commitbece083a6b2b242c7ab74117640396e1bd851e49 (patch)
tree51c10f318fcdf82d5d82fd68c9f6969813a359c5 /drivers/media/radio
parent4ecbb69414c61af3594209e081d6e834ea68a16d (diff)
[media] radio-aimslab: Use LM7000 driver
Convert radio-aimslab to use generic LM7000 driver. Tested with Reveal RA300. Signed-off-by: Ondrej Zary <linux@rainbow-software.org> Acked-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/radio')
-rw-r--r--drivers/media/radio/Kconfig3
-rw-r--r--drivers/media/radio/radio-aimslab.c78
2 files changed, 36 insertions, 45 deletions
diff --git a/drivers/media/radio/Kconfig b/drivers/media/radio/Kconfig
index 5bcce129d718..abdf43c05720 100644
--- a/drivers/media/radio/Kconfig
+++ b/drivers/media/radio/Kconfig
@@ -193,11 +193,14 @@ config RADIO_CADET
193 193
194config RADIO_LM7000 194config RADIO_LM7000
195 tristate 195 tristate
196 depends on RADIO_RTRACK
197 default RADIO_RTRACK
196 198
197config RADIO_RTRACK 199config RADIO_RTRACK
198 tristate "AIMSlab RadioTrack (aka RadioReveal) support" 200 tristate "AIMSlab RadioTrack (aka RadioReveal) support"
199 depends on ISA && VIDEO_V4L2 201 depends on ISA && VIDEO_V4L2
200 select RADIO_ISA 202 select RADIO_ISA
203 select RADIO_LM7000
201 ---help--- 204 ---help---
202 Choose Y here if you have one of these FM radio cards, and then fill 205 Choose Y here if you have one of these FM radio cards, and then fill
203 in the port address below. 206 in the port address below.
diff --git a/drivers/media/radio/radio-aimslab.c b/drivers/media/radio/radio-aimslab.c
index 98e0c8c20312..48b72d89dffe 100644
--- a/drivers/media/radio/radio-aimslab.c
+++ b/drivers/media/radio/radio-aimslab.c
@@ -37,6 +37,7 @@
37#include <media/v4l2-ioctl.h> 37#include <media/v4l2-ioctl.h>
38#include <media/v4l2-ctrls.h> 38#include <media/v4l2-ctrls.h>
39#include "radio-isa.h" 39#include "radio-isa.h"
40#include "lm7000.h"
40 41
41MODULE_AUTHOR("M. Kirkwood"); 42MODULE_AUTHOR("M. Kirkwood");
42MODULE_DESCRIPTION("A driver for the RadioTrack/RadioReveal radio card."); 43MODULE_DESCRIPTION("A driver for the RadioTrack/RadioReveal radio card.");
@@ -61,66 +62,53 @@ MODULE_PARM_DESC(radio_nr, "Radio device numbers");
61struct rtrack { 62struct rtrack {
62 struct radio_isa_card isa; 63 struct radio_isa_card isa;
63 int curvol; 64 int curvol;
65 struct lm7000 lm;
64}; 66};
65 67
66static struct radio_isa_card *rtrack_alloc(void) 68#define AIMS_BIT_TUN_CE (1 << 0)
69#define AIMS_BIT_TUN_CLK (1 << 1)
70#define AIMS_BIT_TUN_DATA (1 << 2)
71#define AIMS_BIT_VOL_CE (1 << 3)
72#define AIMS_BIT_TUN_STRQ (1 << 4)
73/* bit 5 is not connected */
74#define AIMS_BIT_VOL_UP (1 << 6) /* active low */
75#define AIMS_BIT_VOL_DN (1 << 7) /* active low */
76
77void rtrack_set_pins(struct lm7000 *lm, u8 pins)
67{ 78{
68 struct rtrack *rt = kzalloc(sizeof(struct rtrack), GFP_KERNEL); 79 struct rtrack *rt = container_of(lm, struct rtrack, lm);
80 u8 bits = AIMS_BIT_VOL_DN | AIMS_BIT_VOL_UP | AIMS_BIT_TUN_STRQ;
69 81
70 if (rt) 82 if (!v4l2_ctrl_g_ctrl(rt->isa.mute))
71 rt->curvol = 0xff; 83 bits |= AIMS_BIT_VOL_CE;
72 return rt ? &rt->isa : NULL;
73}
74 84
75/* The 128+64 on these outb's is to keep the volume stable while tuning. 85 if (pins & LM7000_DATA)
76 * Without them, the volume _will_ creep up with each frequency change 86 bits |= AIMS_BIT_TUN_DATA;
77 * and bit 4 (+16) is to keep the signal strength meter enabled. 87 if (pins & LM7000_CLK)
78 */ 88 bits |= AIMS_BIT_TUN_CLK;
89 if (pins & LM7000_CE)
90 bits |= AIMS_BIT_TUN_CE;
79 91
80static void send_0_byte(struct radio_isa_card *isa, int on) 92 outb_p(bits, rt->isa.io);
81{
82 outb_p(128+64+16+on+1, isa->io); /* wr-enable + data low */
83 outb_p(128+64+16+on+2+1, isa->io); /* clock */
84 msleep(1);
85} 93}
86 94
87static void send_1_byte(struct radio_isa_card *isa, int on) 95static struct radio_isa_card *rtrack_alloc(void)
88{ 96{
89 outb_p(128+64+16+on+4+1, isa->io); /* wr-enable+data high */ 97 struct rtrack *rt = kzalloc(sizeof(struct rtrack), GFP_KERNEL);
90 outb_p(128+64+16+on+4+2+1, isa->io); /* clock */ 98
91 msleep(1); 99 if (rt) {
100 rt->curvol = 0xff;
101 rt->lm.set_pins = rtrack_set_pins;
102 }
103 return rt ? &rt->isa : NULL;
92} 104}
93 105
94static int rtrack_s_frequency(struct radio_isa_card *isa, u32 freq) 106static int rtrack_s_frequency(struct radio_isa_card *isa, u32 freq)
95{ 107{
96 int on = v4l2_ctrl_g_ctrl(isa->mute) ? 0 : 8; 108 struct rtrack *rt = container_of(isa, struct rtrack, isa);
97 int i;
98
99 freq += 171200; /* Add 10.7 MHz IF */
100 freq /= 800; /* Convert to 50 kHz units */
101
102 send_0_byte(isa, on); /* 0: LSB of frequency */
103
104 for (i = 0; i < 13; i++) /* : frequency bits (1-13) */
105 if (freq & (1 << i))
106 send_1_byte(isa, on);
107 else
108 send_0_byte(isa, on);
109
110 send_0_byte(isa, on); /* 14: test bit - always 0 */
111 send_0_byte(isa, on); /* 15: test bit - always 0 */
112
113 send_0_byte(isa, on); /* 16: band data 0 - always 0 */
114 send_0_byte(isa, on); /* 17: band data 1 - always 0 */
115 send_0_byte(isa, on); /* 18: band data 2 - always 0 */
116 send_0_byte(isa, on); /* 19: time base - always 0 */
117 109
118 send_0_byte(isa, on); /* 20: spacing (0 = 25 kHz) */ 110 lm7000_set_freq(&rt->lm, freq);
119 send_1_byte(isa, on); /* 21: spacing (1 = 25 kHz) */
120 send_0_byte(isa, on); /* 22: spacing (0 = 25 kHz) */
121 send_1_byte(isa, on); /* 23: AM/FM (FM = 1, always) */
122 111
123 outb(0xd0 + on, isa->io); /* volume steady + sigstr */
124 return 0; 112 return 0;
125} 113}
126 114