]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - drivers/media/radio/radio-aztech.c
media: replace all <spaces><tab> occurrences
[mirror_ubuntu-jammy-kernel.git] / drivers / media / radio / radio-aztech.c
CommitLineData
3088fba8
HV
1/*
2 * radio-aztech.c - Aztech radio card driver
1da177e4 3 *
3088fba8 4 * Converted to the radio-isa framework by Hans Verkuil <hans.verkuil@xs4all.nl>
a4366af4 5 * Converted to V4L2 API by Mauro Carvalho Chehab <mchehab@infradead.org>
4286c6f6 6 * Adapted to support the Video for Linux API by
1da177e4
LT
7 * Russell Kroll <rkroll@exploits.org>. Based on original tuner code by:
8 *
9 * Quay Ly
10 * Donald Song
4286c6f6 11 * Jason Lewis (jlewis@twilight.vtc.vsc.edu)
1da177e4
LT
12 * Scott McGrath (smcgrath@twilight.vtc.vsc.edu)
13 * William McGrath (wmcgrath@twilight.vtc.vsc.edu)
14 *
3088fba8 15 * Fully tested with the Keene USB FM Transmitter and the v4l2-compliance tool.
1da177e4
LT
16*/
17
6e6a8b5a 18#include <linux/module.h> /* Modules */
1da177e4 19#include <linux/init.h> /* Initdata */
fb911ee8 20#include <linux/ioport.h> /* request_region */
1da177e4 21#include <linux/delay.h> /* udelay */
a4366af4 22#include <linux/videodev2.h> /* kernel radio structs */
e697e12e 23#include <linux/io.h> /* outb, outb_p */
9f1dfccf 24#include <linux/slab.h>
e697e12e 25#include <media/v4l2-device.h>
35ea11ff 26#include <media/v4l2-ioctl.h>
3088fba8
HV
27#include <media/v4l2-ctrls.h>
28#include "radio-isa.h"
eb27fafe 29#include "lm7000.h"
1da177e4 30
e697e12e
HV
31MODULE_AUTHOR("Russell Kroll, Quay Lu, Donald Song, Jason Lewis, Scott McGrath, William McGrath");
32MODULE_DESCRIPTION("A driver for the Aztech radio card.");
33MODULE_LICENSE("GPL");
3088fba8 34MODULE_VERSION("1.0.0");
a4366af4 35
1da177e4 36/* acceptable ports: 0x350 (JP3 shorted), 0x358 (JP3 open) */
1da177e4
LT
37#ifndef CONFIG_RADIO_AZTECH_PORT
38#define CONFIG_RADIO_AZTECH_PORT -1
39#endif
40
3088fba8 41#define AZTECH_MAX 2
1da177e4 42
3088fba8
HV
43static int io[AZTECH_MAX] = { [0] = CONFIG_RADIO_AZTECH_PORT,
44 [1 ... (AZTECH_MAX - 1)] = -1 };
45static int radio_nr[AZTECH_MAX] = { [0 ... (AZTECH_MAX - 1)] = -1 };
e697e12e 46
3088fba8
HV
47module_param_array(io, int, NULL, 0444);
48MODULE_PARM_DESC(io, "I/O addresses of the Aztech card (0x350 or 0x358)");
49module_param_array(radio_nr, int, NULL, 0444);
50MODULE_PARM_DESC(radio_nr, "Radio device numbers");
51
52struct aztech {
53 struct radio_isa_card isa;
1da177e4 54 int curvol;
1da177e4
LT
55};
56
eb27fafe
OZ
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 */
1da177e4 65
eb27fafe 66static void aztech_set_pins(void *handle, u8 pins)
1da177e4 67{
eb27fafe
OZ
68 struct radio_isa_card *isa = handle;
69 struct aztech *az = container_of(isa, struct aztech, isa);
70 u8 bits = az->curvol;
71
72 if (pins & LM7000_DATA)
73 bits |= AZTECH_BIT_TUN_DATA;
74 if (pins & LM7000_CLK)
75 bits |= AZTECH_BIT_TUN_CLK;
76 if (pins & LM7000_CE)
77 bits |= AZTECH_BIT_TUN_CE;
78
79 outb_p(bits, az->isa.io);
1da177e4
LT
80}
81
3088fba8 82static struct radio_isa_card *aztech_alloc(void)
1da177e4 83{
3088fba8 84 struct aztech *az = kzalloc(sizeof(*az), GFP_KERNEL);
e697e12e 85
3088fba8 86 return az ? &az->isa : NULL;
1da177e4
LT
87}
88
3088fba8 89static int aztech_s_frequency(struct radio_isa_card *isa, u32 freq)
1da177e4 90{
eb27fafe 91 lm7000_set_freq(freq, isa, aztech_set_pins);
676b0ac7 92
a0c05ab9
MCC
93 return 0;
94}
95
3088fba8 96static u32 aztech_g_rxsubchans(struct radio_isa_card *isa)
e697e12e 97{
1c9f11ed 98 if (inb(isa->io) & AZTECH_BIT_MONO)
3088fba8
HV
99 return V4L2_TUNER_SUB_MONO;
100 return V4L2_TUNER_SUB_STEREO;
e697e12e
HV
101}
102
1c9f11ed 103static u32 aztech_g_signal(struct radio_isa_card *isa)
99218fe4 104{
1c9f11ed 105 return (inb(isa->io) & AZTECH_BIT_NOT_TUNED) ? 0 : 0xffff;
99218fe4
MCC
106}
107
3088fba8 108static int aztech_s_mute_volume(struct radio_isa_card *isa, bool mute, int vol)
99218fe4 109{
3088fba8 110 struct aztech *az = container_of(isa, struct aztech, isa);
99218fe4 111
3088fba8
HV
112 if (mute)
113 vol = 0;
114 az->curvol = (vol & 1) + ((vol & 2) << 1);
115 outb(az->curvol, isa->io);
99218fe4
MCC
116 return 0;
117}
118
3088fba8
HV
119static 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,
3088fba8 123 .g_rxsubchans = aztech_g_rxsubchans,
1c9f11ed 124 .g_signal = aztech_g_signal,
1da177e4
LT
125};
126
3088fba8
HV
127static const int aztech_ioports[] = { 0x350, 0x358 };
128
129static struct radio_isa_driver aztech_driver = {
130 .driver = {
131 .match = radio_isa_match,
132 .probe = radio_isa_probe,
133 .remove = radio_isa_remove,
134 .driver = {
135 .name = "radio-aztech",
136 },
137 },
138 .io_params = io,
139 .radio_nr_params = radio_nr,
140 .io_ports = aztech_ioports,
141 .num_of_io_ports = ARRAY_SIZE(aztech_ioports),
eb27fafe 142 .region_size = 8,
3088fba8
HV
143 .card = "Aztech Radio",
144 .ops = &aztech_ops,
145 .has_stereo = true,
146 .max_volume = 3,
1da177e4
LT
147};
148
149static int __init aztech_init(void)
150{
3088fba8 151 return isa_register_driver(&aztech_driver.driver, AZTECH_MAX);
1da177e4
LT
152}
153
e697e12e 154static void __exit aztech_exit(void)
1da177e4 155{
3088fba8 156 isa_unregister_driver(&aztech_driver.driver);
1da177e4
LT
157}
158
159module_init(aztech_init);
e697e12e 160module_exit(aztech_exit);