2 * radio-aztech.c - Aztech radio card driver
4 * Converted to the radio-isa framework by Hans Verkuil <hans.verkuil@xs4all.nl>
5 * Converted to V4L2 API by Mauro Carvalho Chehab <mchehab@infradead.org>
6 * Adapted to support the Video for Linux API by
7 * Russell Kroll <rkroll@exploits.org>. Based on original tuner code by:
11 * Jason Lewis (jlewis@twilight.vtc.vsc.edu)
12 * Scott McGrath (smcgrath@twilight.vtc.vsc.edu)
13 * William McGrath (wmcgrath@twilight.vtc.vsc.edu)
15 * Fully tested with the Keene USB FM Transmitter and the v4l2-compliance tool.
18 #include <linux/module.h> /* Modules */
19 #include <linux/init.h> /* Initdata */
20 #include <linux/ioport.h> /* request_region */
21 #include <linux/delay.h> /* udelay */
22 #include <linux/videodev2.h> /* kernel radio structs */
23 #include <linux/io.h> /* outb, outb_p */
24 #include <linux/slab.h>
25 #include <media/v4l2-device.h>
26 #include <media/v4l2-ioctl.h>
27 #include <media/v4l2-ctrls.h>
28 #include "radio-isa.h"
31 MODULE_AUTHOR("Russell Kroll, Quay Lu, Donald Song, Jason Lewis, Scott McGrath, William McGrath");
32 MODULE_DESCRIPTION("A driver for the Aztech radio card.");
33 MODULE_LICENSE("GPL");
34 MODULE_VERSION("1.0.0");
36 /* acceptable ports: 0x350 (JP3 shorted), 0x358 (JP3 open) */
37 #ifndef CONFIG_RADIO_AZTECH_PORT
38 #define CONFIG_RADIO_AZTECH_PORT -1
43 static int io
[AZTECH_MAX
] = { [0] = CONFIG_RADIO_AZTECH_PORT
,
44 [1 ... (AZTECH_MAX
- 1)] = -1 };
45 static int radio_nr
[AZTECH_MAX
] = { [0 ... (AZTECH_MAX
- 1)] = -1 };
47 module_param_array(io
, int, NULL
, 0444);
48 MODULE_PARM_DESC(io
, "I/O addresses of the Aztech card (0x350 or 0x358)");
49 module_param_array(radio_nr
, int, NULL
, 0444);
50 MODULE_PARM_DESC(radio_nr
, "Radio device numbers");
53 struct radio_isa_card isa
;
57 /* bit definitions for register read */
58 #define AZTECH_BIT_NOT_TUNED (1 << 0)
59 #define AZTECH_BIT_MONO (1 << 1)
60 /* bit definitions for register write */
61 #define AZTECH_BIT_TUN_CE (1 << 1)
62 #define AZTECH_BIT_TUN_CLK (1 << 6)
63 #define AZTECH_BIT_TUN_DATA (1 << 7)
64 /* bits 0 and 2 are volume control, bits 3..5 are not connected */
66 static void aztech_set_pins(void *handle
, u8 pins
)
68 struct radio_isa_card
*isa
= handle
;
69 struct aztech
*az
= container_of(isa
, struct aztech
, isa
);
72 if (pins
& LM7000_DATA
)
73 bits
|= AZTECH_BIT_TUN_DATA
;
74 if (pins
& LM7000_CLK
)
75 bits
|= AZTECH_BIT_TUN_CLK
;
77 bits
|= AZTECH_BIT_TUN_CE
;
79 outb_p(bits
, az
->isa
.io
);
82 static struct radio_isa_card
*aztech_alloc(void)
84 struct aztech
*az
= kzalloc(sizeof(*az
), GFP_KERNEL
);
86 return az
? &az
->isa
: NULL
;
89 static int aztech_s_frequency(struct radio_isa_card
*isa
, u32 freq
)
91 lm7000_set_freq(freq
, isa
, aztech_set_pins
);
96 static u32
aztech_g_rxsubchans(struct radio_isa_card
*isa
)
98 if (inb(isa
->io
) & AZTECH_BIT_MONO
)
99 return V4L2_TUNER_SUB_MONO
;
100 return V4L2_TUNER_SUB_STEREO
;
103 static u32
aztech_g_signal(struct radio_isa_card
*isa
)
105 return (inb(isa
->io
) & AZTECH_BIT_NOT_TUNED
) ? 0 : 0xffff;
108 static int aztech_s_mute_volume(struct radio_isa_card
*isa
, bool mute
, int vol
)
110 struct aztech
*az
= container_of(isa
, struct aztech
, isa
);
114 az
->curvol
= (vol
& 1) + ((vol
& 2) << 1);
115 outb(az
->curvol
, isa
->io
);
119 static const struct radio_isa_ops aztech_ops
= {
120 .alloc
= aztech_alloc
,
121 .s_mute_volume
= aztech_s_mute_volume
,
122 .s_frequency
= aztech_s_frequency
,
123 .g_rxsubchans
= aztech_g_rxsubchans
,
124 .g_signal
= aztech_g_signal
,
127 static const int aztech_ioports
[] = { 0x350, 0x358 };
129 static struct radio_isa_driver aztech_driver
= {
131 .match
= radio_isa_match
,
132 .probe
= radio_isa_probe
,
133 .remove
= radio_isa_remove
,
135 .name
= "radio-aztech",
139 .radio_nr_params
= radio_nr
,
140 .io_ports
= aztech_ioports
,
141 .num_of_io_ports
= ARRAY_SIZE(aztech_ioports
),
143 .card
= "Aztech Radio",
149 static int __init
aztech_init(void)
151 return isa_register_driver(&aztech_driver
.driver
, AZTECH_MAX
);
154 static void __exit
aztech_exit(void)
156 isa_unregister_driver(&aztech_driver
.driver
);
159 module_init(aztech_init
);
160 module_exit(aztech_exit
);