2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
6 * Copyright (C) 2005 MIPS Technologies, Inc. All rights reserved.
8 * Copyright (C) 2013 Imagination Technologies Ltd.
10 #include <linux/kernel.h>
12 #include <linux/syscalls.h>
13 #include <linux/moduleloader.h>
14 #include <linux/atomic.h>
15 #include <asm/mipsmtregs.h>
16 #include <asm/mips_mt.h>
17 #include <asm/processor.h>
19 #include <asm/setup.h>
22 static int sp_stopping;
23 struct rtlx_info *rtlx;
24 struct chan_waitqueues channel_wqs[RTLX_CHANNELS];
25 struct vpe_notifications rtlx_notify;
26 void (*aprp_hook)(void) = NULL;
27 EXPORT_SYMBOL(aprp_hook);
29 static void __used dump_rtlx(void)
33 pr_info("id 0x%lx state %d\n", rtlx->id, rtlx->state);
35 for (i = 0; i < RTLX_CHANNELS; i++) {
36 struct rtlx_channel *chan = &rtlx->channel[i];
38 pr_info(" rt_state %d lx_state %d buffer_size %d\n",
39 chan->rt_state, chan->lx_state, chan->buffer_size);
41 pr_info(" rt_read %d rt_write %d\n",
42 chan->rt_read, chan->rt_write);
44 pr_info(" lx_read %d lx_write %d\n",
45 chan->lx_read, chan->lx_write);
47 pr_info(" rt_buffer <%s>\n", chan->rt_buffer);
48 pr_info(" lx_buffer <%s>\n", chan->lx_buffer);
52 /* call when we have the address of the shared structure from the SP side. */
53 static int rtlx_init(struct rtlx_info *rtlxi)
55 if (rtlxi->id != RTLX_ID) {
56 pr_err("no valid RTLX id at 0x%p 0x%lx\n", rtlxi, rtlxi->id);
66 void rtlx_starting(int vpe)
71 /* force a reload of rtlx */
74 /* wake up any sleeping rtlx_open's */
75 for (i = 0; i < RTLX_CHANNELS; i++)
76 wake_up_interruptible(&channel_wqs[i].lx_queue);
79 void rtlx_stopping(int vpe)
84 for (i = 0; i < RTLX_CHANNELS; i++)
85 wake_up_interruptible(&channel_wqs[i].lx_queue);
89 int rtlx_open(int index, int can_sleep)
92 struct rtlx_channel *chan;
93 enum rtlx_state state;
96 if (index >= RTLX_CHANNELS) {
97 pr_debug("rtlx_open index out of range\n");
101 if (atomic_inc_return(&channel_wqs[index].in_open) > 1) {
102 pr_debug("rtlx_open channel %d already opened\n", index);
108 p = vpe_get_shared(aprp_cpu_index());
111 ret = __wait_event_interruptible(
112 channel_wqs[index].lx_queue,
113 (p = vpe_get_shared(aprp_cpu_index())));
117 pr_debug("No SP program loaded, and device opened with O_NONBLOCK\n");
130 &channel_wqs[index].lx_queue,
131 &wait, TASK_INTERRUPTIBLE);
135 if (!signal_pending(current)) {
142 finish_wait(&channel_wqs[index].lx_queue,
145 pr_err(" *vpe_get_shared is NULL. Has an SP program been loaded?\n");
151 if ((unsigned int)*p < KSEG0) {
152 pr_warn("vpe_get_shared returned an invalid pointer maybe an error code %d\n",
163 chan = &rtlx->channel[index];
165 state = xchg(&chan->lx_state, RTLX_STATE_OPENED);
166 if (state == RTLX_STATE_OPENED) {
173 atomic_dec(&channel_wqs[index].in_open);
180 int rtlx_release(int index)
183 pr_err("rtlx_release() with null rtlx\n");
186 rtlx->channel[index].lx_state = RTLX_STATE_UNUSED;
190 unsigned int rtlx_read_poll(int index, int can_sleep)
192 struct rtlx_channel *chan;
197 chan = &rtlx->channel[index];
199 /* data available to read? */
200 if (chan->lx_read == chan->lx_write) {
202 int ret = __wait_event_interruptible(
203 channel_wqs[index].lx_queue,
204 (chan->lx_read != chan->lx_write) ||
215 return (chan->lx_write + chan->buffer_size - chan->lx_read)
219 static inline int write_spacefree(int read, int write, int size)
223 * Never fill the buffer completely, so indexes are always
224 * equal if empty and only empty, or !equal if data available
229 return ((read + size - write) % size) - 1;
232 unsigned int rtlx_write_poll(int index)
234 struct rtlx_channel *chan = &rtlx->channel[index];
236 return write_spacefree(chan->rt_read, chan->rt_write,
240 ssize_t rtlx_read(int index, void __user *buff, size_t count)
242 size_t lx_write, fl = 0L;
243 struct rtlx_channel *lx;
244 unsigned long failed;
249 lx = &rtlx->channel[index];
251 mutex_lock(&channel_wqs[index].mutex);
253 lx_write = lx->lx_write;
255 /* find out how much in total */
257 (size_t)(lx_write + lx->buffer_size - lx->lx_read)
260 /* then how much from the read pointer onwards */
261 fl = min(count, (size_t)lx->buffer_size - lx->lx_read);
263 failed = copy_to_user(buff, lx->lx_buffer + lx->lx_read, fl);
267 /* and if there is anything left at the beginning of the buffer */
269 failed = copy_to_user(buff + fl, lx->lx_buffer, count - fl);
275 lx->lx_read = (lx->lx_read + count) % lx->buffer_size;
277 mutex_unlock(&channel_wqs[index].mutex);
282 ssize_t rtlx_write(int index, const void __user *buffer, size_t count)
284 struct rtlx_channel *rt;
285 unsigned long failed;
292 rt = &rtlx->channel[index];
294 mutex_lock(&channel_wqs[index].mutex);
296 rt_read = rt->rt_read;
298 /* total number of bytes to copy */
299 count = min_t(size_t, count, write_spacefree(rt_read, rt->rt_write,
302 /* first bit from write pointer to the end of the buffer, or count */
303 fl = min(count, (size_t) rt->buffer_size - rt->rt_write);
305 failed = copy_from_user(rt->rt_buffer + rt->rt_write, buffer, fl);
309 /* if there's any left copy to the beginning of the buffer */
311 failed = copy_from_user(rt->rt_buffer, buffer + fl, count - fl);
317 rt->rt_write = (rt->rt_write + count) % rt->buffer_size;
319 mutex_unlock(&channel_wqs[index].mutex);
327 static int file_open(struct inode *inode, struct file *filp)
329 return rtlx_open(iminor(inode), (filp->f_flags & O_NONBLOCK) ? 0 : 1);
332 static int file_release(struct inode *inode, struct file *filp)
334 return rtlx_release(iminor(inode));
337 static unsigned int file_poll(struct file *file, poll_table *wait)
339 int minor = iminor(file_inode(file));
340 unsigned int mask = 0;
342 poll_wait(file, &channel_wqs[minor].rt_queue, wait);
343 poll_wait(file, &channel_wqs[minor].lx_queue, wait);
348 /* data available to read? */
349 if (rtlx_read_poll(minor, 0))
350 mask |= POLLIN | POLLRDNORM;
353 if (rtlx_write_poll(minor))
354 mask |= POLLOUT | POLLWRNORM;
359 static ssize_t file_read(struct file *file, char __user *buffer, size_t count,
362 int minor = iminor(file_inode(file));
364 /* data available? */
365 if (!rtlx_read_poll(minor, (file->f_flags & O_NONBLOCK) ? 0 : 1))
366 return 0; /* -EAGAIN makes 'cat' whine */
368 return rtlx_read(minor, buffer, count);
371 static ssize_t file_write(struct file *file, const char __user *buffer,
372 size_t count, loff_t *ppos)
374 int minor = iminor(file_inode(file));
376 /* any space left... */
377 if (!rtlx_write_poll(minor)) {
380 if (file->f_flags & O_NONBLOCK)
383 ret = __wait_event_interruptible(channel_wqs[minor].rt_queue,
384 rtlx_write_poll(minor));
389 return rtlx_write(minor, buffer, count);
392 const struct file_operations rtlx_fops = {
393 .owner = THIS_MODULE,
395 .release = file_release,
399 .llseek = noop_llseek,
402 module_init(rtlx_module_init);
403 module_exit(rtlx_module_exit);
405 MODULE_DESCRIPTION("MIPS RTLX");
406 MODULE_AUTHOR("Elizabeth Oldham, MIPS Technologies, Inc.");
407 MODULE_LICENSE("GPL");