2005-04-16 15:20:36 -07:00
/* RadioTrack II driver for Linux radio support (C) 1998 Ben Pfaff
2006-04-08 16:06:16 -03:00
*
2005-04-16 15:20:36 -07:00
* Based on RadioTrack I / RadioReveal ( C ) 1997 M . Kirkwood
2008-10-27 15:13:47 -03:00
* Converted to new API by Alan Cox < alan @ lxorguk . ukuu . org . uk >
2005-04-16 15:20:36 -07:00
* Various bugfixes and enhancements by Russell Kroll < rkroll @ exploits . org >
*
* TODO : Allow for more than one of these foolish entities : - )
*
2006-08-08 09:10:02 -03:00
* Converted to V4L2 API by Mauro Carvalho Chehab < mchehab @ infradead . org >
2005-04-16 15:20:36 -07:00
*/
# include <linux/module.h> /* Modules */
# include <linux/init.h> /* Initdata */
2005-09-13 01:25:15 -07:00
# include <linux/ioport.h> /* request_region */
2005-04-16 15:20:36 -07:00
# include <linux/delay.h> /* udelay */
2006-08-08 09:10:02 -03:00
# include <linux/videodev2.h> /* kernel radio structs */
2009-03-06 13:52:06 -03:00
# include <linux/mutex.h>
# include <linux/version.h> /* for KERNEL_VERSION MACRO */
# include <linux/io.h> /* outb, outb_p */
# include <media/v4l2-device.h>
2008-07-20 08:12:02 -03:00
# include <media/v4l2-ioctl.h>
2005-04-16 15:20:36 -07:00
2009-03-06 13:52:06 -03:00
MODULE_AUTHOR ( " Ben Pfaff " ) ;
MODULE_DESCRIPTION ( " A driver for the RadioTrack II radio card. " ) ;
MODULE_LICENSE ( " GPL " ) ;
2006-08-08 09:10:02 -03:00
2005-04-16 15:20:36 -07:00
# ifndef CONFIG_RADIO_RTRACK2_PORT
# define CONFIG_RADIO_RTRACK2_PORT -1
# endif
2006-04-08 16:06:16 -03:00
static int io = CONFIG_RADIO_RTRACK2_PORT ;
2005-04-16 15:20:36 -07:00
static int radio_nr = - 1 ;
2009-03-06 13:52:06 -03:00
module_param ( io , int , 0 ) ;
MODULE_PARM_DESC ( io , " I/O address of the RadioTrack card (0x20c or 0x30c) " ) ;
module_param ( radio_nr , int , 0 ) ;
# define RADIO_VERSION KERNEL_VERSION(0, 0, 2)
struct rtrack2
2005-04-16 15:20:36 -07:00
{
2009-03-06 13:52:06 -03:00
struct v4l2_device v4l2_dev ;
struct video_device vdev ;
int io ;
2005-04-16 15:20:36 -07:00
unsigned long curfreq ;
int muted ;
2009-03-06 13:52:06 -03:00
struct mutex lock ;
2005-04-16 15:20:36 -07:00
} ;
2009-03-06 13:52:06 -03:00
static struct rtrack2 rtrack2_card ;
2005-04-16 15:20:36 -07:00
/* local things */
2009-03-06 13:52:06 -03:00
static void rt_mute ( struct rtrack2 * dev )
2005-04-16 15:20:36 -07:00
{
2009-03-06 13:52:06 -03:00
if ( dev - > muted )
2005-04-16 15:20:36 -07:00
return ;
2009-03-06 13:52:06 -03:00
mutex_lock ( & dev - > lock ) ;
outb ( 1 , dev - > io ) ;
mutex_unlock ( & dev - > lock ) ;
2005-04-16 15:20:36 -07:00
dev - > muted = 1 ;
}
2009-03-06 13:52:06 -03:00
static void rt_unmute ( struct rtrack2 * dev )
2005-04-16 15:20:36 -07:00
{
if ( dev - > muted = = 0 )
return ;
2009-03-06 13:52:06 -03:00
mutex_lock ( & dev - > lock ) ;
outb ( 0 , dev - > io ) ;
mutex_unlock ( & dev - > lock ) ;
2005-04-16 15:20:36 -07:00
dev - > muted = 0 ;
}
2009-03-06 13:52:06 -03:00
static void zero ( struct rtrack2 * dev )
2005-04-16 15:20:36 -07:00
{
2009-03-06 13:52:06 -03:00
outb_p ( 1 , dev - > io ) ;
outb_p ( 3 , dev - > io ) ;
outb_p ( 1 , dev - > io ) ;
2005-04-16 15:20:36 -07:00
}
2009-03-06 13:52:06 -03:00
static void one ( struct rtrack2 * dev )
2005-04-16 15:20:36 -07:00
{
2009-03-06 13:52:06 -03:00
outb_p ( 5 , dev - > io ) ;
outb_p ( 7 , dev - > io ) ;
outb_p ( 5 , dev - > io ) ;
2005-04-16 15:20:36 -07:00
}
2009-03-06 13:52:06 -03:00
static int rt_setfreq ( struct rtrack2 * dev , unsigned long freq )
2005-04-16 15:20:36 -07:00
{
int i ;
2009-03-06 13:52:06 -03:00
mutex_lock ( & dev - > lock ) ;
dev - > curfreq = freq ;
2005-04-16 15:20:36 -07:00
freq = freq / 200 + 856 ;
2006-04-08 16:06:16 -03:00
2009-03-06 13:52:06 -03:00
outb_p ( 0xc8 , dev - > io ) ;
outb_p ( 0xc9 , dev - > io ) ;
outb_p ( 0xc9 , dev - > io ) ;
2005-04-16 15:20:36 -07:00
for ( i = 0 ; i < 10 ; i + + )
2009-03-06 13:52:06 -03:00
zero ( dev ) ;
2005-04-16 15:20:36 -07:00
for ( i = 14 ; i > = 0 ; i - - )
if ( freq & ( 1 < < i ) )
2009-03-06 13:52:06 -03:00
one ( dev ) ;
2005-04-16 15:20:36 -07:00
else
2009-03-06 13:52:06 -03:00
zero ( dev ) ;
2005-04-16 15:20:36 -07:00
2009-03-06 13:52:06 -03:00
outb_p ( 0xc8 , dev - > io ) ;
2005-04-16 15:20:36 -07:00
if ( ! dev - > muted )
2009-03-06 13:52:06 -03:00
outb_p ( 0 , dev - > io ) ;
2006-04-08 16:06:16 -03:00
2009-03-06 13:52:06 -03:00
mutex_unlock ( & dev - > lock ) ;
2005-04-16 15:20:36 -07:00
return 0 ;
}
2007-04-19 16:42:25 -03:00
static int vidioc_querycap ( struct file * file , void * priv ,
struct v4l2_capability * v )
{
strlcpy ( v - > driver , " radio-rtrack2 " , sizeof ( v - > driver ) ) ;
strlcpy ( v - > card , " RadioTrack II " , sizeof ( v - > card ) ) ;
2009-03-06 13:52:06 -03:00
strlcpy ( v - > bus_info , " ISA " , sizeof ( v - > bus_info ) ) ;
2007-04-19 16:42:25 -03:00
v - > version = RADIO_VERSION ;
2009-03-06 13:52:06 -03:00
v - > capabilities = V4L2_CAP_TUNER | V4L2_CAP_RADIO ;
2007-04-19 16:42:25 -03:00
return 0 ;
}
static int vidioc_s_tuner ( struct file * file , void * priv ,
struct v4l2_tuner * v )
{
2009-03-06 13:52:06 -03:00
return v - > index ? - EINVAL : 0 ;
2007-04-19 16:42:25 -03:00
}
2009-03-06 13:52:06 -03:00
static int rt_getsigstr ( struct rtrack2 * dev )
2005-04-16 15:20:36 -07:00
{
2009-03-06 13:52:06 -03:00
int sig = 1 ;
mutex_lock ( & dev - > lock ) ;
if ( inb ( dev - > io ) & 2 ) /* bit set = no signal present */
sig = 0 ;
mutex_unlock ( & dev - > lock ) ;
return sig ;
2005-04-16 15:20:36 -07:00
}
2007-04-19 16:42:25 -03:00
static int vidioc_g_tuner ( struct file * file , void * priv ,
struct v4l2_tuner * v )
2005-04-16 15:20:36 -07:00
{
2009-03-06 13:52:06 -03:00
struct rtrack2 * rt = video_drvdata ( file ) ;
2007-04-19 16:42:25 -03:00
if ( v - > index > 0 )
return - EINVAL ;
2009-03-06 13:52:06 -03:00
strlcpy ( v - > name , " FM " , sizeof ( v - > name ) ) ;
2007-04-19 16:42:25 -03:00
v - > type = V4L2_TUNER_RADIO ;
2009-03-06 13:52:06 -03:00
v - > rangelow = 88 * 16000 ;
v - > rangehigh = 108 * 16000 ;
2007-04-19 16:42:25 -03:00
v - > rxsubchans = V4L2_TUNER_SUB_MONO ;
v - > capability = V4L2_TUNER_CAP_LOW ;
v - > audmode = V4L2_TUNER_MODE_MONO ;
2009-03-06 13:52:06 -03:00
v - > signal = 0xFFFF * rt_getsigstr ( rt ) ;
2007-04-19 16:42:25 -03:00
return 0 ;
}
2006-08-08 09:10:02 -03:00
2007-04-19 16:42:25 -03:00
static int vidioc_s_frequency ( struct file * file , void * priv ,
struct v4l2_frequency * f )
{
2009-03-06 13:52:06 -03:00
struct rtrack2 * rt = video_drvdata ( file ) ;
2006-08-08 09:10:02 -03:00
2009-11-27 04:33:25 -03:00
if ( f - > tuner ! = 0 | | f - > type ! = V4L2_TUNER_RADIO )
return - EINVAL ;
2009-03-06 13:52:06 -03:00
rt_setfreq ( rt , f - > frequency ) ;
2007-04-19 16:42:25 -03:00
return 0 ;
}
2006-08-08 09:10:02 -03:00
2007-04-19 16:42:25 -03:00
static int vidioc_g_frequency ( struct file * file , void * priv ,
struct v4l2_frequency * f )
{
2009-03-06 13:52:06 -03:00
struct rtrack2 * rt = video_drvdata ( file ) ;
2006-08-08 09:10:02 -03:00
2009-11-27 04:33:25 -03:00
if ( f - > tuner ! = 0 )
return - EINVAL ;
2007-04-19 16:42:25 -03:00
f - > type = V4L2_TUNER_RADIO ;
f - > frequency = rt - > curfreq ;
return 0 ;
}
2006-08-08 09:10:02 -03:00
2007-04-19 16:42:25 -03:00
static int vidioc_queryctrl ( struct file * file , void * priv ,
struct v4l2_queryctrl * qc )
{
2009-03-06 13:52:06 -03:00
switch ( qc - > id ) {
case V4L2_CID_AUDIO_MUTE :
return v4l2_ctrl_query_fill ( qc , 0 , 1 , 1 , 1 ) ;
case V4L2_CID_AUDIO_VOLUME :
return v4l2_ctrl_query_fill ( qc , 0 , 65535 , 65535 , 65535 ) ;
2007-04-19 16:42:25 -03:00
}
return - EINVAL ;
}
2006-08-08 09:10:02 -03:00
2007-04-19 16:42:25 -03:00
static int vidioc_g_ctrl ( struct file * file , void * priv ,
struct v4l2_control * ctrl )
{
2009-03-06 13:52:06 -03:00
struct rtrack2 * rt = video_drvdata ( file ) ;
2006-08-08 09:10:02 -03:00
2007-04-19 16:42:25 -03:00
switch ( ctrl - > id ) {
case V4L2_CID_AUDIO_MUTE :
ctrl - > value = rt - > muted ;
return 0 ;
case V4L2_CID_AUDIO_VOLUME :
if ( rt - > muted )
ctrl - > value = 0 ;
else
ctrl - > value = 65535 ;
return 0 ;
2005-04-16 15:20:36 -07:00
}
2007-04-19 16:42:25 -03:00
return - EINVAL ;
2005-04-16 15:20:36 -07:00
}
2007-04-19 16:42:25 -03:00
static int vidioc_s_ctrl ( struct file * file , void * priv ,
struct v4l2_control * ctrl )
2005-04-16 15:20:36 -07:00
{
2009-03-06 13:52:06 -03:00
struct rtrack2 * rt = video_drvdata ( file ) ;
2007-04-19 16:42:25 -03:00
switch ( ctrl - > id ) {
case V4L2_CID_AUDIO_MUTE :
if ( ctrl - > value )
rt_mute ( rt ) ;
else
rt_unmute ( rt ) ;
return 0 ;
case V4L2_CID_AUDIO_VOLUME :
if ( ctrl - > value )
rt_unmute ( rt ) ;
else
rt_mute ( rt ) ;
return 0 ;
}
return - EINVAL ;
2005-04-16 15:20:36 -07:00
}
2007-04-20 06:37:36 -03:00
static int vidioc_g_input ( struct file * filp , void * priv , unsigned int * i )
{
* i = 0 ;
return 0 ;
}
static int vidioc_s_input ( struct file * filp , void * priv , unsigned int i )
{
2009-03-06 13:52:06 -03:00
return i ? - EINVAL : 0 ;
2007-04-20 06:37:36 -03:00
}
2009-03-06 13:52:06 -03:00
static int vidioc_g_audio ( struct file * file , void * priv ,
2007-04-20 06:37:36 -03:00
struct v4l2_audio * a )
{
2009-03-06 13:52:06 -03:00
a - > index = 0 ;
strlcpy ( a - > name , " Radio " , sizeof ( a - > name ) ) ;
a - > capability = V4L2_AUDCAP_STEREO ;
2007-04-20 06:37:36 -03:00
return 0 ;
}
2009-03-06 13:52:06 -03:00
static int vidioc_s_audio ( struct file * file , void * priv ,
struct v4l2_audio * a )
{
return a - > index ? - EINVAL : 0 ;
}
2005-04-16 15:20:36 -07:00
2008-12-30 06:58:20 -03:00
static const struct v4l2_file_operations rtrack2_fops = {
2005-04-16 15:20:36 -07:00
. owner = THIS_MODULE ,
2010-11-14 09:36:23 -03:00
. unlocked_ioctl = video_ioctl2 ,
2005-04-16 15:20:36 -07:00
} ;
2008-07-21 02:57:38 -03:00
static const struct v4l2_ioctl_ops rtrack2_ioctl_ops = {
2007-04-19 16:42:25 -03:00
. vidioc_querycap = vidioc_querycap ,
. vidioc_g_tuner = vidioc_g_tuner ,
. vidioc_s_tuner = vidioc_s_tuner ,
. vidioc_g_frequency = vidioc_g_frequency ,
. vidioc_s_frequency = vidioc_s_frequency ,
. vidioc_queryctrl = vidioc_queryctrl ,
. vidioc_g_ctrl = vidioc_g_ctrl ,
. vidioc_s_ctrl = vidioc_s_ctrl ,
2007-04-20 06:37:36 -03:00
. vidioc_g_audio = vidioc_g_audio ,
. vidioc_s_audio = vidioc_s_audio ,
. vidioc_g_input = vidioc_g_input ,
. vidioc_s_input = vidioc_s_input ,
2005-04-16 15:20:36 -07:00
} ;
static int __init rtrack2_init ( void )
{
2009-03-06 13:52:06 -03:00
struct rtrack2 * dev = & rtrack2_card ;
struct v4l2_device * v4l2_dev = & dev - > v4l2_dev ;
int res ;
strlcpy ( v4l2_dev - > name , " rtrack2 " , sizeof ( v4l2_dev - > name ) ) ;
dev - > io = io ;
if ( dev - > io = = - 1 ) {
v4l2_err ( v4l2_dev , " You must set an I/O address with io=0x20c or io=0x30c \n " ) ;
2005-04-16 15:20:36 -07:00
return - EINVAL ;
}
2009-03-06 13:52:06 -03:00
if ( ! request_region ( dev - > io , 4 , " rtrack2 " ) ) {
v4l2_err ( v4l2_dev , " port 0x%x already in use \n " , dev - > io ) ;
2005-04-16 15:20:36 -07:00
return - EBUSY ;
}
2009-03-06 13:52:06 -03:00
res = v4l2_device_register ( NULL , v4l2_dev ) ;
if ( res < 0 ) {
release_region ( dev - > io , 4 ) ;
v4l2_err ( v4l2_dev , " Could not register v4l2_device \n " ) ;
return res ;
}
2005-04-16 15:20:36 -07:00
2009-03-06 13:52:06 -03:00
strlcpy ( dev - > vdev . name , v4l2_dev - > name , sizeof ( dev - > vdev . name ) ) ;
dev - > vdev . v4l2_dev = v4l2_dev ;
dev - > vdev . fops = & rtrack2_fops ;
dev - > vdev . ioctl_ops = & rtrack2_ioctl_ops ;
dev - > vdev . release = video_device_release_empty ;
video_set_drvdata ( & dev - > vdev , dev ) ;
2010-11-14 09:36:23 -03:00
/* mute card - prevents noisy bootups */
outb ( 1 , dev - > io ) ;
dev - > muted = 1 ;
2009-03-06 13:52:06 -03:00
mutex_init ( & dev - > lock ) ;
if ( video_register_device ( & dev - > vdev , VFL_TYPE_RADIO , radio_nr ) < 0 ) {
v4l2_device_unregister ( v4l2_dev ) ;
release_region ( dev - > io , 4 ) ;
2005-04-16 15:20:36 -07:00
return - EINVAL ;
}
2006-04-08 16:06:16 -03:00
2009-03-06 13:52:06 -03:00
v4l2_info ( v4l2_dev , " AIMSlab Radiotrack II card driver. \n " ) ;
2005-04-16 15:20:36 -07:00
return 0 ;
}
2009-03-06 13:52:06 -03:00
static void __exit rtrack2_exit ( void )
2005-04-16 15:20:36 -07:00
{
2009-03-06 13:52:06 -03:00
struct rtrack2 * dev = & rtrack2_card ;
video_unregister_device ( & dev - > vdev ) ;
v4l2_device_unregister ( & dev - > v4l2_dev ) ;
release_region ( dev - > io , 4 ) ;
2005-04-16 15:20:36 -07:00
}
module_init ( rtrack2_init ) ;
2009-03-06 13:52:06 -03:00
module_exit ( rtrack2_exit ) ;