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.
7 * Copyright (C) 2005, 06 Ralf Baechle (ralf@linux-mips.org)
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 <linux/sched/signal.h>
17 #include <asm/mipsmtregs.h>
18 #include <asm/mips_mt.h>
19 #include <asm/processor.h>
21 #include <asm/setup.h>
24 static int sp_stopping;
25 struct rtlx_info *rtlx;
26 struct chan_waitqueues channel_wqs[RTLX_CHANNELS];
27 struct vpe_notifications rtlx_notify;
28 void (*aprp_hook)(void) = NULL;
29 EXPORT_SYMBOL(aprp_hook);
31 static void __used dump_rtlx(void)
35 pr_info("id 0x%lx state %d\n", rtlx->id, rtlx->state);
37 for (i = 0; i < RTLX_CHANNELS; i++) {
38 struct rtlx_channel *chan = &rtlx->channel[i];
40 pr_info(" rt_state %d lx_state %d buffer_size %d\n",
41 chan->rt_state, chan->lx_state, chan->buffer_size);
43 pr_info(" rt_read %d rt_write %d\n",
44 chan->rt_read, chan->rt_write);
46 pr_info(" lx_read %d lx_write %d\n",
47 chan->lx_read, chan->lx_write);
49 pr_info(" rt_buffer <%s>\n", chan->rt_buffer);
50 pr_info(" lx_buffer <%s>\n", chan->lx_buffer);
54 /* call when we have the address of the shared structure from the SP side. */
55 static int rtlx_init(struct rtlx_info *rtlxi)
57 if (rtlxi->id != RTLX_ID) {
58 pr_err("no valid RTLX id at 0x%p 0x%lx\n", rtlxi, rtlxi->id);
68 void rtlx_starting(int vpe)
73 /* force a reload of rtlx */
76 /* wake up any sleeping rtlx_open's */
77 for (i = 0; i < RTLX_CHANNELS; i++)
78 wake_up_interruptible(&channel_wqs[i].lx_queue);
81 void rtlx_stopping(int vpe)
86 for (i = 0; i < RTLX_CHANNELS; i++)
87 wake_up_interruptible(&channel_wqs[i].lx_queue);
91 int rtlx_open(int index, int can_sleep)
94 struct rtlx_channel *chan;
95 enum rtlx_state state;
98 if (index >= RTLX_CHANNELS) {
99 pr_debug("rtlx_open index out of range\n");
103 if (atomic_inc_return(&channel_wqs[index].in_open) > 1) {
104 pr_debug("rtlx_open channel %d already opened\n", index);
110 p = vpe_get_shared(aprp_cpu_index());
113 ret = __wait_event_interruptible(
114 channel_wqs[index].lx_queue,
115 (p = vpe_get_shared(aprp_cpu_index())));
119 pr_debug("No SP program loaded, and device opened with O_NONBLOCK\n");
132 &channel_wqs[index].lx_queue,
133 &wait, TASK_INTERRUPTIBLE);
137 if (!signal_pending(current)) {
144 finish_wait(&channel_wqs[index].lx_queue,
147 pr_err(" *vpe_get_shared is NULL. Has an SP program been loaded?\n");
153 if ((unsigned int)*p < KSEG0) {
154 pr_warn("vpe_get_shared returned an invalid pointer maybe an error code %d\n",
165 chan = &rtlx->channel[index];
167 state = xchg(&chan->lx_state, RTLX_STATE_OPENED);
168 if (state == RTLX_STATE_OPENED) {
175 atomic_dec(&channel_wqs[index].in_open);
182 int rtlx_release(int index)
185 pr_err("rtlx_release() with null rtlx\n");
188 rtlx->channel[index].lx_state = RTLX_STATE_UNUSED;
192 unsigned int rtlx_read_poll(int index, int can_sleep)
194 struct rtlx_channel *chan;
199 chan = &rtlx->channel[index];
201 /* data available to read? */
202 if (chan->lx_read == chan->lx_write) {
204 int ret = __wait_event_interruptible(
205 channel_wqs[index].lx_queue,
206 (chan->lx_read != chan->lx_write) ||
217 return (chan->lx_write + chan->buffer_size - chan->lx_read)
221 static inline int write_spacefree(int read, int write, int size)
225 * Never fill the buffer completely, so indexes are always
226 * equal if empty and only empty, or !equal if data available
231 return ((read + size - write) % size) - 1;
234 unsigned int rtlx_write_poll(int index)
236 struct rtlx_channel *chan = &rtlx->channel[index];
238 return write_spacefree(chan->rt_read, chan->rt_write,
242 ssize_t rtlx_read(int index, void __user *buff, size_t count)
244 size_t lx_write, fl = 0L;
245 struct rtlx_channel *lx;
246 unsigned long failed;
251 lx = &rtlx->channel[index];
253 mutex_lock(&channel_wqs[index].mutex);
255 lx_write = lx->lx_write;
257 /* find out how much in total */
259 (size_t)(lx_write + lx->buffer_size - lx->lx_read)
262 /* then how much from the read pointer onwards */
263 fl = min(count, (size_t)lx->buffer_size - lx->lx_read);
265 failed = copy_to_user(buff, lx->lx_buffer + lx->lx_read, fl);
269 /* and if there is anything left at the beginning of the buffer */
271 failed = copy_to_user(buff + fl, lx->lx_buffer, count - fl);
277 lx->lx_read = (lx->lx_read + count) % lx->buffer_size;
279 mutex_unlock(&channel_wqs[index].mutex);
284 ssize_t rtlx_write(int index, const void __user *buffer, size_t count)
286 struct rtlx_channel *rt;
287 unsigned long failed;
294 rt = &rtlx->channel[index];
296 mutex_lock(&channel_wqs[index].mutex);
298 rt_read = rt->rt_read;
300 /* total number of bytes to copy */
301 count = min_t(size_t, count, write_spacefree(rt_read, rt->rt_write,
304 /* first bit from write pointer to the end of the buffer, or count */
305 fl = min(count, (size_t) rt->buffer_size - rt->rt_write);
307 failed = copy_from_user(rt->rt_buffer + rt->rt_write, buffer, fl);
311 /* if there's any left copy to the beginning of the buffer */
313 failed = copy_from_user(rt->rt_buffer, buffer + fl, count - fl);
319 rt->rt_write = (rt->rt_write + count) % rt->buffer_size;
321 mutex_unlock(&channel_wqs[index].mutex);
329 static int file_open(struct inode *inode, struct file *filp)
331 return rtlx_open(iminor(inode), (filp->f_flags & O_NONBLOCK) ? 0 : 1);
334 static int file_release(struct inode *inode, struct file *filp)
336 return rtlx_release(iminor(inode));
339 static __poll_t file_poll(struct file *file, poll_table *wait)
341 int minor = iminor(file_inode(file));
344 poll_wait(file, &channel_wqs[minor].rt_queue, wait);
345 poll_wait(file, &channel_wqs[minor].lx_queue, wait);
350 /* data available to read? */
351 if (rtlx_read_poll(minor, 0))
352 mask |= EPOLLIN | EPOLLRDNORM;
355 if (rtlx_write_poll(minor))
356 mask |= EPOLLOUT | EPOLLWRNORM;
361 static ssize_t file_read(struct file *file, char __user *buffer, size_t count,
364 int minor = iminor(file_inode(file));
366 /* data available? */
367 if (!rtlx_read_poll(minor, (file->f_flags & O_NONBLOCK) ? 0 : 1))
368 return 0; /* -EAGAIN makes 'cat' whine */
370 return rtlx_read(minor, buffer, count);
373 static ssize_t file_write(struct file *file, const char __user *buffer,
374 size_t count, loff_t *ppos)
376 int minor = iminor(file_inode(file));
378 /* any space left... */
379 if (!rtlx_write_poll(minor)) {
382 if (file->f_flags & O_NONBLOCK)
385 ret = __wait_event_interruptible(channel_wqs[minor].rt_queue,
386 rtlx_write_poll(minor));
391 return rtlx_write(minor, buffer, count);
394 const struct file_operations rtlx_fops = {
395 .owner = THIS_MODULE,
397 .release = file_release,
401 .llseek = noop_llseek,
404 module_init(rtlx_module_init);
405 module_exit(rtlx_module_exit);
407 MODULE_DESCRIPTION("MIPS RTLX");
408 MODULE_AUTHOR("Elizabeth Oldham, MIPS Technologies, Inc.");
409 MODULE_LICENSE("GPL");