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/delay.h>
18 #include <asm/uaccess.h>
19 #include "miropcm20-rds-core.h"
21 static char * text_buffer;
22 static int rds_users = 0;
25 static int rds_f_open(struct inode *in, struct file *fi)
31 if ((text_buffer=kmalloc(66, GFP_KERNEL)) == 0) {
33 printk(KERN_NOTICE "aci-rds: Out of memory by open()...\n");
40 static int rds_f_release(struct inode *in, struct file *fi)
48 static void print_matrix(char *ch, char out[])
52 for (j=7; j>=0; j--) {
53 out[7-j] = ((*ch >> j) & 0x1) + '0';
57 static ssize_t rds_f_read(struct file *file, char __user *buffer, size_t length, loff_t *offset)
59 // i = sprintf(text_buffer, "length: %d, offset: %d\n", length, *offset);
65 aci_rds_cmd(RDS_STATUS, &c, 1);
66 print_matrix(&c, bits);
67 if (copy_to_user(buffer, bits, 8))
70 /* if ((c >> 3) & 1) {
71 aci_rds_cmd(RDS_STATIONNAME, text_buffer+1, 8);
72 text_buffer[0] = ' ' ;
73 text_buffer[9] = '\n';
74 return copy_to_user(buffer+8, text_buffer, 10) ? -EFAULT: 18;
77 /* if ((c >> 6) & 1) {
78 aci_rds_cmd(RDS_PTYTATP, &c, 1);
80 sprintf(text_buffer, " M");
82 sprintf(text_buffer, " S");
84 sprintf(text_buffer+2, " TA");
86 sprintf(text_buffer+2, " --");
88 sprintf(text_buffer+5, " TP");
90 sprintf(text_buffer+5, " --");
91 sprintf(text_buffer+8, " %2d\n", (c >> 2) & 0x1f);
92 return copy_to_user(buffer+8, text_buffer, 12) ? -EFAULT: 20;
97 aci_rds_cmd(RDS_TEXT, text_buffer, 65);
98 text_buffer[0] = ' ' ;
99 text_buffer[65] = '\n';
100 return copy_to_user(buffer+8, text_buffer,66) ? -EFAULT : 66+8;
102 put_user('\n', buffer+8);
107 static const struct file_operations rds_fops = {
108 .owner = THIS_MODULE,
111 .release = rds_f_release
114 static struct miscdevice rds_miscdev = {
115 .minor = MISC_DYNAMIC_MINOR,
120 static int __init miropcm20_rds_init(void)
122 return misc_register(&rds_miscdev);
125 static void __exit miropcm20_rds_cleanup(void)
127 misc_deregister(&rds_miscdev);
130 module_init(miropcm20_rds_init);
131 module_exit(miropcm20_rds_cleanup);
132 MODULE_LICENSE("GPL");