2005-04-17 02:20:36 +04:00
/* SF16FMR2 radio driver for Linux radio support
* heavily based on fmi driver . . .
* ( c ) 2000 - 2002 Ziglio Frediano , freddy77 @ angelfire . com
*
* Notes on the hardware
*
* Frequency control is done digitally - - ie out ( port , encodefreq ( 95.8 ) ) ;
* No volume control - only mute / unmute - you have to use line volume
*
* For read stereo / mono you must wait 0.1 sec after set frequency and
* card unmuted so I set frequency on unmute
* Signal handling seem to work only on autoscanning ( not implemented )
2006-08-08 16:10:02 +04:00
*
* Converted to V4L2 API by Mauro Carvalho Chehab < mchehab @ infradead . org >
2005-04-17 02:20:36 +04:00
*/
# include <linux/module.h> /* Modules */
# include <linux/init.h> /* Initdata */
2005-09-13 12:25:15 +04:00
# include <linux/ioport.h> /* request_region */
2005-04-17 02:20:36 +04:00
# include <linux/delay.h> /* udelay */
# include <asm/io.h> /* outb, outb_p */
# include <asm/uaccess.h> /* copy to/from user */
2006-08-08 16:10:02 +04:00
# include <linux/videodev2.h> /* kernel radio structs */
2006-06-05 17:26:32 +04:00
# include <media/v4l2-common.h>
2008-07-20 15:12:02 +04:00
# include <media/v4l2-ioctl.h>
2006-02-07 11:49:14 +03:00
# include <linux/mutex.h>
2005-04-17 02:20:36 +04:00
2006-08-08 16:10:06 +04:00
static struct mutex lock ;
# include <linux/version.h> /* for KERNEL_VERSION MACRO */
2006-08-08 16:10:02 +04:00
# define RADIO_VERSION KERNEL_VERSION(0,0,2)
2008-04-22 21:46:03 +04:00
# define AUD_VOL_INDEX 1
2006-08-08 16:10:02 +04:00
static struct v4l2_queryctrl radio_qctrl [ ] = {
{
. id = V4L2_CID_AUDIO_MUTE ,
. name = " Mute " ,
. minimum = 0 ,
. maximum = 1 ,
. default_value = 1 ,
. type = V4L2_CTRL_TYPE_BOOLEAN ,
2008-04-22 21:46:03 +04:00
} ,
[ AUD_VOL_INDEX ] = {
2006-08-08 16:10:02 +04:00
. id = V4L2_CID_AUDIO_VOLUME ,
. name = " Volume " ,
. minimum = 0 ,
2008-04-22 21:46:03 +04:00
. maximum = 15 ,
. step = 1 ,
. default_value = 0 ,
2006-08-08 16:10:02 +04:00
. type = V4L2_CTRL_TYPE_INTEGER ,
}
} ;
2005-04-17 02:20:36 +04:00
# undef DEBUG
//#define DEBUG 1
# ifdef DEBUG
# define debug_print(s) printk s
# else
# define debug_print(s)
# endif
/* this should be static vars for module size */
struct fmr2_device
{
2008-08-23 11:49:13 +04:00
unsigned long in_use ;
2005-04-17 02:20:36 +04:00
int port ;
2008-04-22 21:46:03 +04:00
int curvol ; /* 0-15 */
2005-04-17 02:20:36 +04:00
int mute ;
int stereo ; /* card is producing stereo audio */
unsigned long curfreq ; /* freq in kHz */
int card_type ;
__u32 flags ;
} ;
static int io = 0x384 ;
static int radio_nr = - 1 ;
/* hw precision is 12.5 kHz
2006-01-10 02:08:17 +03:00
* It is only useful to give freq in intervall of 200 ( = 0.0125 Mhz ) ,
2005-04-17 02:20:36 +04:00
* other bits will be truncated
*/
# define RSF16_ENCODE(x) ((x) / 200+856)
# define RSF16_MINFREQ 87*16000
# define RSF16_MAXFREQ 108*16000
static inline void wait ( int n , int port )
{
for ( ; n ; - - n ) inb ( port ) ;
}
static void outbits ( int bits , unsigned int data , int nWait , int port )
{
int bit ;
for ( ; - - bits > = 0 ; ) {
bit = ( data > > bits ) & 1 ;
outb ( bit , port ) ;
wait ( nWait , port ) ;
outb ( bit | 2 , port ) ;
wait ( nWait , port ) ;
outb ( bit , port ) ;
wait ( nWait , port ) ;
}
}
static inline void fmr2_mute ( int port )
{
outb ( 0x00 , port ) ;
wait ( 4 , port ) ;
}
static inline void fmr2_unmute ( int port )
{
outb ( 0x04 , port ) ;
wait ( 4 , port ) ;
}
static inline int fmr2_stereo_mode ( int port )
{
int n = inb ( port ) ;
outb ( 6 , port ) ;
inb ( port ) ;
n = ( ( n > > 3 ) & 1 ) ^ 1 ;
debug_print ( ( KERN_DEBUG " stereo: %d \n " , n ) ) ;
return n ;
}
static int fmr2_product_info ( struct fmr2_device * dev )
{
int n = inb ( dev - > port ) ;
n & = 0xC1 ;
if ( n = = 0 )
{
/* this should support volume set */
dev - > card_type = 12 ;
return 0 ;
}
/* not volume (mine is 11) */
dev - > card_type = ( n = = 128 ) ? 11 : 0 ;
return n ;
}
static inline int fmr2_getsigstr ( struct fmr2_device * dev )
{
/* !!! work only if scanning freq */
int port = dev - > port , res = 0xffff ;
outb ( 5 , port ) ;
wait ( 4 , port ) ;
if ( ! ( inb ( port ) & 1 ) ) res = 0 ;
debug_print ( ( KERN_DEBUG " signal: %d \n " , res ) ) ;
return res ;
}
/* set frequency and unmute card */
static int fmr2_setfreq ( struct fmr2_device * dev )
{
int port = dev - > port ;
unsigned long freq = dev - > curfreq ;
fmr2_mute ( port ) ;
/* 0x42 for mono output
* 0x102 forward scanning
* 0x182 scansione avanti
*/
outbits ( 9 , 0x2 , 3 , port ) ;
outbits ( 16 , RSF16_ENCODE ( freq ) , 2 , port ) ;
fmr2_unmute ( port ) ;
/* wait 0.11 sec */
msleep ( 110 ) ;
/* NOTE if mute this stop radio
you must set freq on unmute */
dev - > stereo = fmr2_stereo_mode ( port ) ;
return 0 ;
}
/* !!! not tested, in my card this does't work !!! */
static int fmr2_setvolume ( struct fmr2_device * dev )
{
2008-04-22 21:46:03 +04:00
int vol [ 16 ] = { 0x021 , 0x084 , 0x090 , 0x104 ,
0x110 , 0x204 , 0x210 , 0x402 ,
0x404 , 0x408 , 0x410 , 0x801 ,
0x802 , 0x804 , 0x808 , 0x810 } ;
int i , a , port = dev - > port ;
int n = vol [ dev - > curvol & 0x0f ] ;
2005-04-17 02:20:36 +04:00
2008-04-22 21:46:03 +04:00
if ( dev - > card_type ! = 11 )
return 1 ;
2005-04-17 02:20:36 +04:00
2008-04-22 21:46:03 +04:00
for ( i = 12 ; - - i > = 0 ; ) {
2005-04-17 02:20:36 +04:00
a = ( ( n > > i ) & 1 ) < < 6 ; /* if (a=0) a= 0; else a= 0x40; */
2008-04-22 21:46:03 +04:00
outb ( a | 4 , port ) ;
wait ( 4 , port ) ;
outb ( a | 0x24 , port ) ;
wait ( 4 , port ) ;
outb ( a | 4 , port ) ;
wait ( 4 , port ) ;
2005-04-17 02:20:36 +04:00
}
2008-04-22 21:46:03 +04:00
for ( i = 6 ; - - i > = 0 ; ) {
2005-04-17 02:20:36 +04:00
a = ( ( 0x18 > > i ) & 1 ) < < 6 ;
2008-04-22 21:46:03 +04:00
outb ( a | 4 , port ) ;
2005-04-17 02:20:36 +04:00
wait ( 4 , port ) ;
2008-04-22 21:46:03 +04:00
outb ( a | 0x24 , port ) ;
2005-04-17 02:20:36 +04:00
wait ( 4 , port ) ;
outb ( a | 4 , port ) ;
wait ( 4 , port ) ;
}
2008-04-22 21:46:03 +04:00
wait ( 4 , port ) ;
2005-04-17 02:20:36 +04:00
outb ( 0x14 , port ) ;
return 0 ;
}
2007-04-24 00:51:37 +04:00
static int vidioc_querycap ( struct file * file , void * priv ,
struct v4l2_capability * v )
2005-04-17 02:20:36 +04:00
{
2007-04-24 00:51:37 +04:00
strlcpy ( v - > driver , " radio-sf16fmr2 " , sizeof ( v - > driver ) ) ;
strlcpy ( v - > card , " SF16-FMR2 radio " , sizeof ( v - > card ) ) ;
sprintf ( v - > bus_info , " ISA " ) ;
v - > version = RADIO_VERSION ;
v - > capabilities = V4L2_CAP_TUNER ;
return 0 ;
}
static int vidioc_g_tuner ( struct file * file , void * priv ,
struct v4l2_tuner * v )
{
int mult ;
2008-08-23 15:32:09 +04:00
struct fmr2_device * fmr2 = video_drvdata ( file ) ;
2005-04-17 02:20:36 +04:00
2007-04-24 00:51:37 +04:00
if ( v - > index > 0 )
return - EINVAL ;
strcpy ( v - > name , " FM " ) ;
v - > type = V4L2_TUNER_RADIO ;
mult = ( fmr2 - > flags & V4L2_TUNER_CAP_LOW ) ? 1 : 1000 ;
v - > rangelow = RSF16_MINFREQ / mult ;
v - > rangehigh = RSF16_MAXFREQ / mult ;
v - > rxsubchans = V4L2_TUNER_SUB_MONO | V4L2_TUNER_MODE_STEREO ;
v - > capability = fmr2 - > flags & V4L2_TUNER_CAP_LOW ;
v - > audmode = fmr2 - > stereo ? V4L2_TUNER_MODE_STEREO :
V4L2_TUNER_MODE_MONO ;
mutex_lock ( & lock ) ;
v - > signal = fmr2_getsigstr ( fmr2 ) ;
mutex_unlock ( & lock ) ;
return 0 ;
}
2006-08-08 16:10:02 +04:00
2007-04-24 00:51:37 +04:00
static int vidioc_s_tuner ( struct file * file , void * priv ,
struct v4l2_tuner * v )
{
if ( v - > index > 0 )
return - EINVAL ;
return 0 ;
}
2006-08-08 16:10:02 +04:00
2007-04-24 00:51:37 +04:00
static int vidioc_s_frequency ( struct file * file , void * priv ,
struct v4l2_frequency * f )
{
2008-08-23 15:32:09 +04:00
struct fmr2_device * fmr2 = video_drvdata ( file ) ;
2006-08-08 16:10:02 +04:00
2007-04-24 00:51:37 +04:00
if ( ! ( fmr2 - > flags & V4L2_TUNER_CAP_LOW ) )
f - > frequency * = 1000 ;
if ( f - > frequency < RSF16_MINFREQ | |
f - > frequency > RSF16_MAXFREQ )
return - EINVAL ;
/*rounding in steps of 200 to match th freq
that will be used */
fmr2 - > curfreq = ( f - > frequency / 200 ) * 200 ;
/* set card freq (if not muted) */
if ( fmr2 - > curvol & & ! fmr2 - > mute ) {
mutex_lock ( & lock ) ;
fmr2_setfreq ( fmr2 ) ;
mutex_unlock ( & lock ) ;
}
return 0 ;
}
2006-08-08 16:10:02 +04:00
2007-04-24 00:51:37 +04:00
static int vidioc_g_frequency ( struct file * file , void * priv ,
struct v4l2_frequency * f )
{
2008-08-23 15:32:09 +04:00
struct fmr2_device * fmr2 = video_drvdata ( file ) ;
2006-08-08 16:10:02 +04:00
2007-04-24 00:51:37 +04:00
f - > type = V4L2_TUNER_RADIO ;
f - > frequency = fmr2 - > curfreq ;
if ( ! ( fmr2 - > flags & V4L2_TUNER_CAP_LOW ) )
f - > frequency / = 1000 ;
return 0 ;
}
2006-08-08 16:10:02 +04:00
2007-04-24 00:51:37 +04:00
static int vidioc_queryctrl ( struct file * file , void * priv ,
struct v4l2_queryctrl * qc )
{
int i ;
2006-08-08 16:10:02 +04:00
2007-04-24 00:51:37 +04:00
for ( i = 0 ; i < ARRAY_SIZE ( radio_qctrl ) ; i + + ) {
if ( qc - > id & & qc - > id = = radio_qctrl [ i ] . id ) {
2008-04-22 21:46:03 +04:00
memcpy ( qc , & radio_qctrl [ i ] , sizeof ( * qc ) ) ;
2005-04-17 02:20:36 +04:00
return 0 ;
}
2007-04-24 00:51:37 +04:00
}
return - EINVAL ;
}
static int vidioc_g_ctrl ( struct file * file , void * priv ,
struct v4l2_control * ctrl )
{
2008-08-23 15:32:09 +04:00
struct fmr2_device * fmr2 = video_drvdata ( file ) ;
2007-04-24 00:51:37 +04:00
switch ( ctrl - > id ) {
case V4L2_CID_AUDIO_MUTE :
ctrl - > value = fmr2 - > mute ;
return 0 ;
case V4L2_CID_AUDIO_VOLUME :
ctrl - > value = fmr2 - > curvol ;
return 0 ;
}
return - EINVAL ;
}
static int vidioc_s_ctrl ( struct file * file , void * priv ,
struct v4l2_control * ctrl )
{
2008-08-23 15:32:09 +04:00
struct fmr2_device * fmr2 = video_drvdata ( file ) ;
2007-04-24 00:51:37 +04:00
switch ( ctrl - > id ) {
case V4L2_CID_AUDIO_MUTE :
fmr2 - > mute = ctrl - > value ;
break ;
case V4L2_CID_AUDIO_VOLUME :
2008-04-22 21:46:03 +04:00
if ( ctrl - > value > radio_qctrl [ AUD_VOL_INDEX ] . maximum )
fmr2 - > curvol = radio_qctrl [ AUD_VOL_INDEX ] . maximum ;
else
fmr2 - > curvol = ctrl - > value ;
2007-04-24 00:51:37 +04:00
break ;
default :
return - EINVAL ;
}
2005-04-17 02:20:36 +04:00
# ifdef DEBUG
2007-04-24 00:51:37 +04:00
if ( fmr2 - > curvol & & ! fmr2 - > mute )
printk ( KERN_DEBUG " unmute \n " ) ;
else
printk ( KERN_DEBUG " mute \n " ) ;
2005-04-17 02:20:36 +04:00
# endif
2006-08-08 16:10:02 +04:00
2007-04-24 00:51:37 +04:00
mutex_lock ( & lock ) ;
if ( fmr2 - > curvol & & ! fmr2 - > mute ) {
fmr2_setvolume ( fmr2 ) ;
2008-04-22 21:46:03 +04:00
/* Set frequency and unmute card */
2007-04-24 00:51:37 +04:00
fmr2_setfreq ( fmr2 ) ;
} else
fmr2_mute ( fmr2 - > port ) ;
mutex_unlock ( & lock ) ;
return 0 ;
}
static int vidioc_g_audio ( struct file * file , void * priv ,
struct v4l2_audio * a )
{
if ( a - > index > 1 )
return - EINVAL ;
strcpy ( a - > name , " Radio " ) ;
a - > capability = V4L2_AUDCAP_STEREO ;
return 0 ;
}
static int vidioc_g_input ( struct file * filp , void * priv , unsigned int * i )
{
* i = 0 ;
return 0 ;
2005-04-17 02:20:36 +04:00
}
2007-04-24 00:51:37 +04:00
static int vidioc_s_input ( struct file * filp , void * priv , unsigned int i )
{
if ( i ! = 0 )
return - EINVAL ;
return 0 ;
}
static int vidioc_s_audio ( struct file * file , void * priv ,
struct v4l2_audio * a )
{
if ( a - > index ! = 0 )
return - EINVAL ;
return 0 ;
2005-04-17 02:20:36 +04:00
}
static struct fmr2_device fmr2_unit ;
2008-12-30 12:58:20 +03:00
static int fmr2_exclusive_open ( struct file * file )
2008-08-23 11:49:13 +04:00
{
return test_and_set_bit ( 0 , & fmr2_unit . in_use ) ? - EBUSY : 0 ;
}
2008-12-30 12:58:20 +03:00
static int fmr2_exclusive_release ( struct file * file )
2008-08-23 11:49:13 +04:00
{
clear_bit ( 0 , & fmr2_unit . in_use ) ;
return 0 ;
}
2008-12-30 12:58:20 +03:00
static const struct v4l2_file_operations fmr2_fops = {
2005-04-17 02:20:36 +04:00
. owner = THIS_MODULE ,
2008-08-23 11:49:13 +04:00
. open = fmr2_exclusive_open ,
. release = fmr2_exclusive_release ,
2007-04-24 00:51:37 +04:00
. ioctl = video_ioctl2 ,
2005-04-17 02:20:36 +04:00
} ;
2008-07-21 09:57:38 +04:00
static const struct v4l2_ioctl_ops fmr2_ioctl_ops = {
2007-04-24 00:51:37 +04:00
. vidioc_querycap = vidioc_querycap ,
. vidioc_g_tuner = vidioc_g_tuner ,
. vidioc_s_tuner = vidioc_s_tuner ,
. vidioc_g_audio = vidioc_g_audio ,
. vidioc_s_audio = vidioc_s_audio ,
. vidioc_g_input = vidioc_g_input ,
. vidioc_s_input = vidioc_s_input ,
. 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 ,
2005-04-17 02:20:36 +04:00
} ;
2008-07-21 09:57:38 +04:00
static struct video_device fmr2_radio = {
. name = " SF16FMR2 radio " ,
. fops = & fmr2_fops ,
. ioctl_ops = & fmr2_ioctl_ops ,
2008-08-23 13:23:55 +04:00
. release = video_device_release_empty ,
2008-07-21 09:57:38 +04:00
} ;
2005-04-17 02:20:36 +04:00
static int __init fmr2_init ( void )
{
fmr2_unit . port = io ;
fmr2_unit . curvol = 0 ;
fmr2_unit . mute = 0 ;
fmr2_unit . curfreq = 0 ;
fmr2_unit . stereo = 1 ;
2006-08-08 16:10:02 +04:00
fmr2_unit . flags = V4L2_TUNER_CAP_LOW ;
2005-04-17 02:20:36 +04:00
fmr2_unit . card_type = 0 ;
2008-08-23 14:24:07 +04:00
video_set_drvdata ( & fmr2_radio , & fmr2_unit ) ;
2005-04-17 02:20:36 +04:00
2006-02-07 11:49:14 +03:00
mutex_init ( & lock ) ;
2005-04-17 02:20:36 +04:00
2008-01-27 20:29:51 +03:00
if ( ! request_region ( io , 2 , " sf16fmr2 " ) ) {
printk ( KERN_ERR " radio-sf16fmr2: request_region failed! \n " ) ;
2005-04-17 02:20:36 +04:00
return - EBUSY ;
}
2008-01-07 11:24:51 +03:00
if ( video_register_device ( & fmr2_radio , VFL_TYPE_RADIO , radio_nr ) < 0 ) {
2005-04-17 02:20:36 +04:00
release_region ( io , 2 ) ;
return - EINVAL ;
}
printk ( KERN_INFO " SF16FMR2 radio card driver at 0x%x. \n " , io ) ;
/* mute card - prevents noisy bootups */
2006-02-07 11:49:14 +03:00
mutex_lock ( & lock ) ;
2005-04-17 02:20:36 +04:00
fmr2_mute ( io ) ;
fmr2_product_info ( & fmr2_unit ) ;
2006-02-07 11:49:14 +03:00
mutex_unlock ( & lock ) ;
2005-04-17 02:20:36 +04:00
debug_print ( ( KERN_DEBUG " card_type %d \n " , fmr2_unit . card_type ) ) ;
2008-04-22 21:46:03 +04:00
/* Only card_type == 11 implements volume */
if ( fmr2_unit . card_type ! = 11 )
radio_qctrl [ AUD_VOL_INDEX ] . maximum = 1 ;
2005-04-17 02:20:36 +04:00
return 0 ;
}
MODULE_AUTHOR ( " Ziglio Frediano, freddy77@angelfire.com " ) ;
MODULE_DESCRIPTION ( " A driver for the SF16FMR2 radio. " ) ;
MODULE_LICENSE ( " GPL " ) ;
module_param ( io , int , 0 ) ;
MODULE_PARM_DESC ( io , " I/O address of the SF16FMR2 card (should be 0x384, if do not work try 0x284) " ) ;
module_param ( radio_nr , int , 0 ) ;
static void __exit fmr2_cleanup_module ( void )
{
video_unregister_device ( & fmr2_radio ) ;
release_region ( io , 2 ) ;
}
module_init ( fmr2_init ) ;
module_exit ( fmr2_cleanup_module ) ;
# ifndef MODULE
static int __init fmr2_setup_io ( char * str )
{
get_option ( & str , & io ) ;
return 1 ;
}
__setup ( " sf16fmr2= " , fmr2_setup_io ) ;
# endif