2 * Copyright (C) 2005 MIPS Technologies, Inc. All rights reserved.
5 * This program is free software; you can distribute it and/or modify it
6 * under the terms of the GNU General Public License (Version 2) as
7 * published by the Free Software Foundation.
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
20 #include <linux/device.h>
21 #include <linux/kernel.h>
22 #include <linux/module.h>
24 #include <linux/init.h>
25 #include <asm/uaccess.h>
26 #include <linux/slab.h>
27 #include <linux/list.h>
28 #include <linux/vmalloc.h>
29 #include <linux/elf.h>
30 #include <linux/seq_file.h>
31 #include <linux/syscalls.h>
32 #include <linux/moduleloader.h>
33 #include <linux/interrupt.h>
34 #include <linux/poll.h>
35 #include <linux/sched.h>
36 #include <linux/wait.h>
37 #include <asm/mipsmtregs.h>
38 #include <asm/mips_mt.h>
39 #include <asm/cacheflush.h>
40 #include <asm/atomic.h>
42 #include <asm/processor.h>
43 #include <asm/system.h>
47 #define RTLX_TARG_VPE 1
49 static struct rtlx_info *rtlx;
51 static char module_name[] = "rtlx";
53 static struct chan_waitqueues {
54 wait_queue_head_t rt_queue;
55 wait_queue_head_t lx_queue;
57 } channel_wqs[RTLX_CHANNELS];
59 static struct irqaction irq;
61 static struct vpe_notifications notify;
62 static int sp_stopping = 0;
64 extern void *vpe_get_shared(int index);
66 static void rtlx_dispatch(void)
68 do_IRQ(MIPS_CPU_IRQ_BASE + MIPS_CPU_RTLX_IRQ);
72 /* Interrupt handler may be called before rtlx_init has otherwise had
75 static irqreturn_t rtlx_interrupt(int irq, void *dev_id)
79 for (i = 0; i < RTLX_CHANNELS; i++) {
80 wake_up(&channel_wqs[i].lx_queue);
81 wake_up(&channel_wqs[i].rt_queue);
87 static __attribute_used__ void dump_rtlx(void)
91 printk("id 0x%lx state %d\n", rtlx->id, rtlx->state);
93 for (i = 0; i < RTLX_CHANNELS; i++) {
94 struct rtlx_channel *chan = &rtlx->channel[i];
96 printk(" rt_state %d lx_state %d buffer_size %d\n",
97 chan->rt_state, chan->lx_state, chan->buffer_size);
99 printk(" rt_read %d rt_write %d\n",
100 chan->rt_read, chan->rt_write);
102 printk(" lx_read %d lx_write %d\n",
103 chan->lx_read, chan->lx_write);
105 printk(" rt_buffer <%s>\n", chan->rt_buffer);
106 printk(" lx_buffer <%s>\n", chan->lx_buffer);
110 /* call when we have the address of the shared structure from the SP side. */
111 static int rtlx_init(struct rtlx_info *rtlxi)
113 if (rtlxi->id != RTLX_ID) {
114 printk(KERN_ERR "no valid RTLX id at 0x%p 0x%x\n", rtlxi, rtlxi->id);
124 static void starting(int vpe)
129 /* force a reload of rtlx */
132 /* wake up any sleeping rtlx_open's */
133 for (i = 0; i < RTLX_CHANNELS; i++)
134 wake_up_interruptible(&channel_wqs[i].lx_queue);
137 static void stopping(int vpe)
142 for (i = 0; i < RTLX_CHANNELS; i++)
143 wake_up_interruptible(&channel_wqs[i].lx_queue);
147 int rtlx_open(int index, int can_sleep)
149 struct rtlx_info **p;
150 struct rtlx_channel *chan;
151 enum rtlx_state state;
154 if (index >= RTLX_CHANNELS) {
155 printk(KERN_DEBUG "rtlx_open index out of range\n");
159 if (atomic_inc_return(&channel_wqs[index].in_open) > 1) {
160 printk(KERN_DEBUG "rtlx_open channel %d already opened\n",
167 if( (p = vpe_get_shared(RTLX_TARG_VPE)) == NULL) {
169 __wait_event_interruptible(channel_wqs[index].lx_queue,
170 (p = vpe_get_shared(RTLX_TARG_VPE)),
175 printk(KERN_DEBUG "No SP program loaded, and device "
176 "opened with O_NONBLOCK\n");
188 prepare_to_wait(&channel_wqs[index].lx_queue, &wait, TASK_INTERRUPTIBLE);
192 if (!signal_pending(current)) {
199 finish_wait(&channel_wqs[index].lx_queue, &wait);
201 printk(" *vpe_get_shared is NULL. "
202 "Has an SP program been loaded?\n");
208 if ((unsigned int)*p < KSEG0) {
209 printk(KERN_WARNING "vpe_get_shared returned an invalid pointer "
210 "maybe an error code %d\n", (int)*p);
215 if ((ret = rtlx_init(*p)) < 0)
219 chan = &rtlx->channel[index];
221 state = xchg(&chan->lx_state, RTLX_STATE_OPENED);
222 if (state == RTLX_STATE_OPENED) {
229 atomic_dec(&channel_wqs[index].in_open);
236 int rtlx_release(int index)
238 rtlx->channel[index].lx_state = RTLX_STATE_UNUSED;
242 unsigned int rtlx_read_poll(int index, int can_sleep)
244 struct rtlx_channel *chan;
249 chan = &rtlx->channel[index];
251 /* data available to read? */
252 if (chan->lx_read == chan->lx_write) {
256 __wait_event_interruptible(channel_wqs[index].lx_queue,
257 chan->lx_read != chan->lx_write || sp_stopping,
268 return (chan->lx_write + chan->buffer_size - chan->lx_read)
272 static inline int write_spacefree(int read, int write, int size)
276 * Never fill the buffer completely, so indexes are always
277 * equal if empty and only empty, or !equal if data available
282 return ((read + size - write) % size) - 1;
285 unsigned int rtlx_write_poll(int index)
287 struct rtlx_channel *chan = &rtlx->channel[index];
288 return write_spacefree(chan->rt_read, chan->rt_write, chan->buffer_size);
291 static inline void copy_to(void *dst, void *src, size_t count, int user)
294 copy_to_user(dst, src, count);
296 memcpy(dst, src, count);
299 static inline void copy_from(void *dst, void *src, size_t count, int user)
302 copy_from_user(dst, src, count);
304 memcpy(dst, src, count);
307 ssize_t rtlx_read(int index, void *buff, size_t count, int user)
310 struct rtlx_channel *lx;
315 lx = &rtlx->channel[index];
317 /* find out how much in total */
319 (size_t)(lx->lx_write + lx->buffer_size - lx->lx_read)
322 /* then how much from the read pointer onwards */
323 fl = min( count, (size_t)lx->buffer_size - lx->lx_read);
325 copy_to(buff, &lx->lx_buffer[lx->lx_read], fl, user);
327 /* and if there is anything left at the beginning of the buffer */
329 copy_to (buff + fl, lx->lx_buffer, count - fl, user);
331 /* update the index */
332 lx->lx_read += count;
333 lx->lx_read %= lx->buffer_size;
338 ssize_t rtlx_write(int index, void *buffer, size_t count, int user)
340 struct rtlx_channel *rt;
346 rt = &rtlx->channel[index];
348 /* total number of bytes to copy */
350 (size_t)write_spacefree(rt->rt_read, rt->rt_write,
353 /* first bit from write pointer to the end of the buffer, or count */
354 fl = min(count, (size_t) rt->buffer_size - rt->rt_write);
356 copy_from (&rt->rt_buffer[rt->rt_write], buffer, fl, user);
358 /* if there's any left copy to the beginning of the buffer */
360 copy_from (rt->rt_buffer, buffer + fl, count - fl, user);
362 rt->rt_write += count;
363 rt->rt_write %= rt->buffer_size;
369 static int file_open(struct inode *inode, struct file *filp)
371 int minor = iminor(inode);
373 return rtlx_open(minor, (filp->f_flags & O_NONBLOCK) ? 0 : 1);
376 static int file_release(struct inode *inode, struct file *filp)
378 int minor = iminor(inode);
380 return rtlx_release(minor);
383 static unsigned int file_poll(struct file *file, poll_table * wait)
386 unsigned int mask = 0;
388 minor = iminor(file->f_path.dentry->d_inode);
390 poll_wait(file, &channel_wqs[minor].rt_queue, wait);
391 poll_wait(file, &channel_wqs[minor].lx_queue, wait);
396 /* data available to read? */
397 if (rtlx_read_poll(minor, 0))
398 mask |= POLLIN | POLLRDNORM;
401 if (rtlx_write_poll(minor))
402 mask |= POLLOUT | POLLWRNORM;
407 static ssize_t file_read(struct file *file, char __user * buffer, size_t count,
410 int minor = iminor(file->f_path.dentry->d_inode);
412 /* data available? */
413 if (!rtlx_read_poll(minor, (file->f_flags & O_NONBLOCK) ? 0 : 1)) {
414 return 0; // -EAGAIN makes cat whinge
417 return rtlx_read(minor, buffer, count, 1);
420 static ssize_t file_write(struct file *file, const char __user * buffer,
421 size_t count, loff_t * ppos)
424 struct rtlx_channel *rt;
426 minor = iminor(file->f_path.dentry->d_inode);
427 rt = &rtlx->channel[minor];
429 /* any space left... */
430 if (!rtlx_write_poll(minor)) {
433 if (file->f_flags & O_NONBLOCK)
436 __wait_event_interruptible(channel_wqs[minor].rt_queue,
437 rtlx_write_poll(minor),
443 return rtlx_write(minor, (void *)buffer, count, 1);
446 static const struct file_operations rtlx_fops = {
447 .owner = THIS_MODULE,
449 .release = file_release,
455 static struct irqaction rtlx_irq = {
456 .handler = rtlx_interrupt,
457 .flags = IRQF_DISABLED,
461 static int rtlx_irq_num = MIPS_CPU_IRQ_BASE + MIPS_CPU_RTLX_IRQ;
463 static char register_chrdev_failed[] __initdata =
464 KERN_ERR "rtlx_module_init: unable to register device\n";
466 static int rtlx_module_init(void)
471 major = register_chrdev(0, module_name, &rtlx_fops);
473 printk(register_chrdev_failed);
477 /* initialise the wait queues */
478 for (i = 0; i < RTLX_CHANNELS; i++) {
479 init_waitqueue_head(&channel_wqs[i].rt_queue);
480 init_waitqueue_head(&channel_wqs[i].lx_queue);
481 atomic_set(&channel_wqs[i].in_open, 0);
483 dev = device_create(mt_class, NULL, MKDEV(major, i),
484 "%s%d", module_name, i);
491 /* set up notifiers */
492 notify.start = starting;
493 notify.stop = stopping;
494 vpe_notify(RTLX_TARG_VPE, ¬ify);
497 set_vi_handler(MIPS_CPU_RTLX_IRQ, rtlx_dispatch);
499 rtlx_irq.dev_id = rtlx;
500 setup_irq(rtlx_irq_num, &rtlx_irq);
505 for (i = 0; i < RTLX_CHANNELS; i++)
506 device_destroy(mt_class, MKDEV(major, i));
511 static void __exit rtlx_module_exit(void)
515 for (i = 0; i < RTLX_CHANNELS; i++)
516 device_destroy(mt_class, MKDEV(major, i));
518 unregister_chrdev(major, module_name);
521 module_init(rtlx_module_init);
522 module_exit(rtlx_module_exit);
524 MODULE_DESCRIPTION("MIPS RTLX");
525 MODULE_AUTHOR("Elizabeth Oldham, MIPS Technologies, Inc.");
526 MODULE_LICENSE("GPL");