1 /* MiroSOUND PCM20 radio rds interface driver
2 * (c) 2001 Robert Siemer <Robert.Siemer@gmx.de>
3 * Thanks to Fred Seidel. See miropcm20-rds-core.c for further information.
8 * 2001-04-18 Robert Siemer <Robert.Siemer@gmx.de>
9 * separate file for user interface driver
12 #include <linux/module.h>
13 #include <linux/init.h>
14 #include <linux/slab.h>
16 #include <linux/miscdevice.h>
17 #include <linux/sched.h> /* current, TASK_*, schedule_timeout() */
18 #include <linux/delay.h>
19 #include <asm/uaccess.h>
20 #include "miropcm20-rds-core.h"
22 static char * text_buffer
;
23 static int rds_users
= 0;
26 static int rds_f_open(struct inode
*in
, struct file
*fi
)
32 if ((text_buffer
=kmalloc(66, GFP_KERNEL
)) == 0) {
34 printk(KERN_NOTICE
"aci-rds: Out of memory by open()...\n");
41 static int rds_f_release(struct inode
*in
, struct file
*fi
)
49 static void print_matrix(char *ch
, char out
[])
53 for (j
=7; j
>=0; j
--) {
54 out
[7-j
] = ((*ch
>> j
) & 0x1) + '0';
58 static ssize_t
rds_f_read(struct file
*file
, char __user
*buffer
, size_t length
, loff_t
*offset
)
60 // i = sprintf(text_buffer, "length: %d, offset: %d\n", length, *offset);
66 aci_rds_cmd(RDS_STATUS
, &c
, 1);
67 print_matrix(&c
, bits
);
68 if (copy_to_user(buffer
, bits
, 8))
71 /* if ((c >> 3) & 1) {
72 aci_rds_cmd(RDS_STATIONNAME, text_buffer+1, 8);
73 text_buffer[0] = ' ' ;
74 text_buffer[9] = '\n';
75 return copy_to_user(buffer+8, text_buffer, 10) ? -EFAULT: 18;
78 /* if ((c >> 6) & 1) {
79 aci_rds_cmd(RDS_PTYTATP, &c, 1);
81 sprintf(text_buffer, " M");
83 sprintf(text_buffer, " S");
85 sprintf(text_buffer+2, " TA");
87 sprintf(text_buffer+2, " --");
89 sprintf(text_buffer+5, " TP");
91 sprintf(text_buffer+5, " --");
92 sprintf(text_buffer+8, " %2d\n", (c >> 2) & 0x1f);
93 return copy_to_user(buffer+8, text_buffer, 12) ? -EFAULT: 20;
98 aci_rds_cmd(RDS_TEXT
, text_buffer
, 65);
99 text_buffer
[0] = ' ' ;
100 text_buffer
[65] = '\n';
101 return copy_to_user(buffer
+8, text_buffer
,66) ? -EFAULT
: 66+8;
103 put_user('\n', buffer
+8);
108 static struct file_operations rds_fops
= {
109 .owner
= THIS_MODULE
,
112 .release
= rds_f_release
115 static struct miscdevice rds_miscdev
= {
116 .minor
= MISC_DYNAMIC_MINOR
,
118 .devfs_name
= "v4l/rds/radiotext",
122 static int __init
miropcm20_rds_init(void)
124 return misc_register(&rds_miscdev
);
127 static void __exit
miropcm20_rds_cleanup(void)
129 misc_deregister(&rds_miscdev
);
132 module_init(miropcm20_rds_init
);
133 module_exit(miropcm20_rds_cleanup
);
134 MODULE_LICENSE("GPL");