blob: 705dd6f9162c019b55ee0ab987bbf04d7c0df59f [file] [log] [blame]
Hans Verkuil3088fba2012-01-16 04:58:15 -03001/*
2 * radio-aztech.c - Aztech radio card driver
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Hans Verkuil3088fba2012-01-16 04:58:15 -03004 * Converted to the radio-isa framework by Hans Verkuil <hans.verkuil@xs4all.nl>
Mauro Carvalho Chehaba4366af2006-08-08 09:10:01 -03005 * Converted to V4L2 API by Mauro Carvalho Chehab <mchehab@infradead.org>
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 *
Hans Verkuil3088fba2012-01-16 04:58:15 -030015 * Fully tested with the Keene USB FM Transmitter and the v4l2-compliance tool.
Linus Torvalds1da177e2005-04-16 15:20:36 -070016*/
17
18#include <linux/module.h> /* Modules */
19#include <linux/init.h> /* Initdata */
Peter Osterlundfb911ee2005-09-13 01:25:15 -070020#include <linux/ioport.h> /* request_region */
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/delay.h> /* udelay */
Mauro Carvalho Chehaba4366af2006-08-08 09:10:01 -030022#include <linux/videodev2.h> /* kernel radio structs */
Hans Verkuile697e122009-03-06 13:48:18 -030023#include <linux/io.h> /* outb, outb_p */
Hans Verkuil9f1dfcc2012-02-29 05:50:27 -030024#include <linux/slab.h>
Hans Verkuile697e122009-03-06 13:48:18 -030025#include <media/v4l2-device.h>
Hans Verkuil35ea11f2008-07-20 08:12:02 -030026#include <media/v4l2-ioctl.h>
Hans Verkuil3088fba2012-01-16 04:58:15 -030027#include <media/v4l2-ctrls.h>
28#include "radio-isa.h"
Ondrej Zaryeb27faf2013-07-19 13:46:17 -030029#include "lm7000.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Hans Verkuile697e122009-03-06 13:48:18 -030031MODULE_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");
Hans Verkuil3088fba2012-01-16 04:58:15 -030034MODULE_VERSION("1.0.0");
Mauro Carvalho Chehaba4366af2006-08-08 09:10:01 -030035
Linus Torvalds1da177e2005-04-16 15:20:36 -070036/* acceptable ports: 0x350 (JP3 shorted), 0x358 (JP3 open) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#ifndef CONFIG_RADIO_AZTECH_PORT
38#define CONFIG_RADIO_AZTECH_PORT -1
39#endif
40
Hans Verkuil3088fba2012-01-16 04:58:15 -030041#define AZTECH_MAX 2
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Hans Verkuil3088fba2012-01-16 04:58:15 -030043static 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 };
46static const int radio_wait_time = 1000;
Hans Verkuile697e122009-03-06 13:48:18 -030047
Hans Verkuil3088fba2012-01-16 04:58:15 -030048module_param_array(io, int, NULL, 0444);
49MODULE_PARM_DESC(io, "I/O addresses of the Aztech card (0x350 or 0x358)");
50module_param_array(radio_nr, int, NULL, 0444);
51MODULE_PARM_DESC(radio_nr, "Radio device numbers");
52
53struct aztech {
54 struct radio_isa_card isa;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 int curvol;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056};
57
Ondrej Zaryeb27faf2013-07-19 13:46:17 -030058/* bit definitions for register read */
59#define AZTECH_BIT_NOT_TUNED (1 << 0)
60#define AZTECH_BIT_MONO (1 << 1)
61/* bit definitions for register write */
62#define AZTECH_BIT_TUN_CE (1 << 1)
63#define AZTECH_BIT_TUN_CLK (1 << 6)
64#define AZTECH_BIT_TUN_DATA (1 << 7)
65/* bits 0 and 2 are volume control, bits 3..5 are not connected */
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Ondrej Zaryeb27faf2013-07-19 13:46:17 -030067static void aztech_set_pins(void *handle, u8 pins)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068{
Ondrej Zaryeb27faf2013-07-19 13:46:17 -030069 struct radio_isa_card *isa = handle;
70 struct aztech *az = container_of(isa, struct aztech, isa);
71 u8 bits = az->curvol;
72
73 if (pins & LM7000_DATA)
74 bits |= AZTECH_BIT_TUN_DATA;
75 if (pins & LM7000_CLK)
76 bits |= AZTECH_BIT_TUN_CLK;
77 if (pins & LM7000_CE)
78 bits |= AZTECH_BIT_TUN_CE;
79
80 outb_p(bits, az->isa.io);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081}
82
Hans Verkuil3088fba2012-01-16 04:58:15 -030083static struct radio_isa_card *aztech_alloc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084{
Hans Verkuil3088fba2012-01-16 04:58:15 -030085 struct aztech *az = kzalloc(sizeof(*az), GFP_KERNEL);
86
87 return az ? &az->isa : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088}
89
Hans Verkuil3088fba2012-01-16 04:58:15 -030090static int aztech_s_frequency(struct radio_isa_card *isa, u32 freq)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
Ondrej Zaryeb27faf2013-07-19 13:46:17 -030092 lm7000_set_freq(freq, isa, aztech_set_pins);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94 return 0;
95}
96
Hans Verkuil3088fba2012-01-16 04:58:15 -030097static u32 aztech_g_rxsubchans(struct radio_isa_card *isa)
Mauro Carvalho Chehab99218fe2007-01-25 08:09:32 -030098{
Ondrej Zary1c9f11e2013-07-19 13:46:18 -030099 if (inb(isa->io) & AZTECH_BIT_MONO)
Hans Verkuil3088fba2012-01-16 04:58:15 -0300100 return V4L2_TUNER_SUB_MONO;
101 return V4L2_TUNER_SUB_STEREO;
102}
103
Ondrej Zary1c9f11e2013-07-19 13:46:18 -0300104static u32 aztech_g_signal(struct radio_isa_card *isa)
Hans Verkuil3088fba2012-01-16 04:58:15 -0300105{
Ondrej Zary1c9f11e2013-07-19 13:46:18 -0300106 return (inb(isa->io) & AZTECH_BIT_NOT_TUNED) ? 0 : 0xffff;
Hans Verkuil3088fba2012-01-16 04:58:15 -0300107}
108
109static int aztech_s_mute_volume(struct radio_isa_card *isa, bool mute, int vol)
110{
111 struct aztech *az = container_of(isa, struct aztech, isa);
112
113 if (mute)
114 vol = 0;
115 az->curvol = (vol & 1) + ((vol & 2) << 1);
116 outb(az->curvol, isa->io);
Mauro Carvalho Chehab99218fe2007-01-25 08:09:32 -0300117 return 0;
118}
119
Hans Verkuil3088fba2012-01-16 04:58:15 -0300120static const struct radio_isa_ops aztech_ops = {
121 .alloc = aztech_alloc,
122 .s_mute_volume = aztech_s_mute_volume,
123 .s_frequency = aztech_s_frequency,
Hans Verkuil3088fba2012-01-16 04:58:15 -0300124 .g_rxsubchans = aztech_g_rxsubchans,
Ondrej Zary1c9f11e2013-07-19 13:46:18 -0300125 .g_signal = aztech_g_signal,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126};
127
Hans Verkuil3088fba2012-01-16 04:58:15 -0300128static const int aztech_ioports[] = { 0x350, 0x358 };
129
130static struct radio_isa_driver aztech_driver = {
131 .driver = {
132 .match = radio_isa_match,
133 .probe = radio_isa_probe,
134 .remove = radio_isa_remove,
135 .driver = {
136 .name = "radio-aztech",
137 },
138 },
139 .io_params = io,
140 .radio_nr_params = radio_nr,
141 .io_ports = aztech_ioports,
142 .num_of_io_ports = ARRAY_SIZE(aztech_ioports),
Ondrej Zaryeb27faf2013-07-19 13:46:17 -0300143 .region_size = 8,
Hans Verkuil3088fba2012-01-16 04:58:15 -0300144 .card = "Aztech Radio",
145 .ops = &aztech_ops,
146 .has_stereo = true,
147 .max_volume = 3,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148};
149
150static int __init aztech_init(void)
151{
Hans Verkuil3088fba2012-01-16 04:58:15 -0300152 return isa_register_driver(&aztech_driver.driver, AZTECH_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153}
154
Hans Verkuile697e122009-03-06 13:48:18 -0300155static void __exit aztech_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
Hans Verkuil3088fba2012-01-16 04:58:15 -0300157 isa_unregister_driver(&aztech_driver.driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158}
159
160module_init(aztech_init);
Hans Verkuile697e122009-03-06 13:48:18 -0300161module_exit(aztech_exit);