blob: 6fa198db89994cbe504dee1dadd51b25f9a38790 [file] [log] [blame]
Ralf Baechlee01402b2005-07-14 15:57:16 +00001/*
2 * Copyright (C) 2005 MIPS Technologies, Inc. All rights reserved.
Ralf Baechlea84c96e2006-01-15 18:11:28 +00003 * Copyright (C) 2005, 06 Ralf Baechle (ralf@linux-mips.org)
Ralf Baechlee01402b2005-07-14 15:57:16 +00004 *
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.
8 *
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
12 * for more details.
13 *
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.
17 *
18 */
19
Ralf Baechlebb3d7c72007-02-07 15:36:56 +000020#include <linux/device.h>
Ralf Baechlee01402b2005-07-14 15:57:16 +000021#include <linux/kernel.h>
Ralf Baechlee01402b2005-07-14 15:57:16 +000022#include <linux/fs.h>
23#include <linux/init.h>
Ralf Baechle26009902006-04-05 09:45:45 +010024#include <asm/uaccess.h>
Ralf Baechle26009902006-04-05 09:45:45 +010025#include <linux/list.h>
26#include <linux/vmalloc.h>
27#include <linux/elf.h>
28#include <linux/seq_file.h>
29#include <linux/syscalls.h>
30#include <linux/moduleloader.h>
Ralf Baechlea84c96e2006-01-15 18:11:28 +000031#include <linux/interrupt.h>
Ralf Baechlee01402b2005-07-14 15:57:16 +000032#include <linux/poll.h>
33#include <linux/sched.h>
34#include <linux/wait.h>
35#include <asm/mipsmtregs.h>
Ralf Baechlebb3d7c72007-02-07 15:36:56 +000036#include <asm/mips_mt.h>
Ralf Baechle26009902006-04-05 09:45:45 +010037#include <asm/cacheflush.h>
Arun Sharma600634972011-07-26 16:09:06 -070038#include <linux/atomic.h>
Ralf Baechlee01402b2005-07-14 15:57:16 +000039#include <asm/cpu.h>
40#include <asm/processor.h>
Ralf Baechle26009902006-04-05 09:45:45 +010041#include <asm/vpe.h>
Ralf Baechlee01402b2005-07-14 15:57:16 +000042#include <asm/rtlx.h>
Yoichi Yuasa406b5ee2013-05-28 01:23:22 +000043#include <asm/setup.h>
Ralf Baechlee01402b2005-07-14 15:57:16 +000044
Ralf Baechleafc48412005-10-31 00:30:39 +000045static struct rtlx_info *rtlx;
Ralf Baechlee01402b2005-07-14 15:57:16 +000046static int major;
47static char module_name[] = "rtlx";
Ralf Baechlee01402b2005-07-14 15:57:16 +000048
49static struct chan_waitqueues {
50 wait_queue_head_t rt_queue;
51 wait_queue_head_t lx_queue;
Ralf Baechlec4c40182007-02-23 13:40:45 +000052 atomic_t in_open;
Ralf Baechlebc4809e2007-03-15 17:13:47 +000053 struct mutex mutex;
Ralf Baechlee01402b2005-07-14 15:57:16 +000054} channel_wqs[RTLX_CHANNELS];
55
Ralf Baechle26009902006-04-05 09:45:45 +010056static struct vpe_notifications notify;
Ralf Baechle982f6ff2009-09-17 02:25:07 +020057static int sp_stopping;
Ralf Baechle26009902006-04-05 09:45:45 +010058
Ralf Baechlee01402b2005-07-14 15:57:16 +000059extern void *vpe_get_shared(int index);
60
Ralf Baechle937a8012006-10-07 19:44:33 +010061static void rtlx_dispatch(void)
Ralf Baechlee01402b2005-07-14 15:57:16 +000062{
Atsushi Nemoto97dcb822007-01-08 02:14:29 +090063 do_IRQ(MIPS_CPU_IRQ_BASE + MIPS_CPU_RTLX_IRQ);
Ralf Baechlee01402b2005-07-14 15:57:16 +000064}
65
Ralf Baechle26009902006-04-05 09:45:45 +010066
67/* Interrupt handler may be called before rtlx_init has otherwise had
68 a chance to run.
69*/
Ralf Baechle937a8012006-10-07 19:44:33 +010070static irqreturn_t rtlx_interrupt(int irq, void *dev_id)
Ralf Baechlee01402b2005-07-14 15:57:16 +000071{
Ralf Baechle1bbfc202009-09-29 00:52:27 +010072 unsigned int vpeflags;
73 unsigned long flags;
Ralf Baechlee01402b2005-07-14 15:57:16 +000074 int i;
Kevin D. Kissell1928cc82008-04-16 15:32:22 +020075
76 /* Ought not to be strictly necessary for SMTC builds */
77 local_irq_save(flags);
78 vpeflags = dvpe();
79 set_c0_status(0x100 << MIPS_CPU_RTLX_IRQ);
80 irq_enable_hazard();
81 evpe(vpeflags);
82 local_irq_restore(flags);
Ralf Baechlee01402b2005-07-14 15:57:16 +000083
84 for (i = 0; i < RTLX_CHANNELS; i++) {
Ralf Baechle26009902006-04-05 09:45:45 +010085 wake_up(&channel_wqs[i].lx_queue);
86 wake_up(&channel_wqs[i].rt_queue);
Ralf Baechlee01402b2005-07-14 15:57:16 +000087 }
88
Ralf Baechleafc48412005-10-31 00:30:39 +000089 return IRQ_HANDLED;
Ralf Baechlee01402b2005-07-14 15:57:16 +000090}
91
David Rientjesf5dbeaf2007-07-22 01:01:39 -070092static void __used dump_rtlx(void)
Ralf Baechlee01402b2005-07-14 15:57:16 +000093{
94 int i;
95
Ralf Baechle26009902006-04-05 09:45:45 +010096 printk("id 0x%lx state %d\n", rtlx->id, rtlx->state);
97
98 for (i = 0; i < RTLX_CHANNELS; i++) {
99 struct rtlx_channel *chan = &rtlx->channel[i];
100
101 printk(" rt_state %d lx_state %d buffer_size %d\n",
102 chan->rt_state, chan->lx_state, chan->buffer_size);
103
104 printk(" rt_read %d rt_write %d\n",
105 chan->rt_read, chan->rt_write);
106
107 printk(" lx_read %d lx_write %d\n",
108 chan->lx_read, chan->lx_write);
109
110 printk(" rt_buffer <%s>\n", chan->rt_buffer);
111 printk(" lx_buffer <%s>\n", chan->lx_buffer);
112 }
113}
114
115/* call when we have the address of the shared structure from the SP side. */
116static int rtlx_init(struct rtlx_info *rtlxi)
117{
Ralf Baechlee01402b2005-07-14 15:57:16 +0000118 if (rtlxi->id != RTLX_ID) {
Kevin D. Kissell1928cc82008-04-16 15:32:22 +0200119 printk(KERN_ERR "no valid RTLX id at 0x%p 0x%lx\n",
120 rtlxi, rtlxi->id);
Ralf Baechleafc48412005-10-31 00:30:39 +0000121 return -ENOEXEC;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000122 }
123
Ralf Baechlee01402b2005-07-14 15:57:16 +0000124 rtlx = rtlxi;
Ralf Baechleafc48412005-10-31 00:30:39 +0000125
126 return 0;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000127}
128
Ralf Baechle26009902006-04-05 09:45:45 +0100129/* notifications */
130static void starting(int vpe)
Ralf Baechlee01402b2005-07-14 15:57:16 +0000131{
Ralf Baechle26009902006-04-05 09:45:45 +0100132 int i;
133 sp_stopping = 0;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000134
Ralf Baechle26009902006-04-05 09:45:45 +0100135 /* force a reload of rtlx */
136 rtlx=NULL;
137
138 /* wake up any sleeping rtlx_open's */
139 for (i = 0; i < RTLX_CHANNELS; i++)
140 wake_up_interruptible(&channel_wqs[i].lx_queue);
141}
142
143static void stopping(int vpe)
144{
145 int i;
146
147 sp_stopping = 1;
148 for (i = 0; i < RTLX_CHANNELS; i++)
149 wake_up_interruptible(&channel_wqs[i].lx_queue);
150}
151
152
153int rtlx_open(int index, int can_sleep)
154{
Ralf Baechle9e346822007-03-15 17:08:28 +0000155 struct rtlx_info **p;
Ralf Baechle67e2ccc2007-02-22 14:19:48 +0000156 struct rtlx_channel *chan;
Ralf Baechlec4c40182007-02-23 13:40:45 +0000157 enum rtlx_state state;
Ralf Baechle67e2ccc2007-02-22 14:19:48 +0000158 int ret = 0;
Ralf Baechle26009902006-04-05 09:45:45 +0100159
160 if (index >= RTLX_CHANNELS) {
161 printk(KERN_DEBUG "rtlx_open index out of range\n");
162 return -ENOSYS;
163 }
164
Ralf Baechlec4c40182007-02-23 13:40:45 +0000165 if (atomic_inc_return(&channel_wqs[index].in_open) > 1) {
166 printk(KERN_DEBUG "rtlx_open channel %d already opened\n",
167 index);
168 ret = -EBUSY;
169 goto out_fail;
Ralf Baechle26009902006-04-05 09:45:45 +0100170 }
171
Ralf Baechlee01402b2005-07-14 15:57:16 +0000172 if (rtlx == NULL) {
Ralf Baechle07cc0c92007-07-27 19:31:10 +0100173 if( (p = vpe_get_shared(tclimit)) == NULL) {
Kevin D. Kissell1928cc82008-04-16 15:32:22 +0200174 if (can_sleep) {
175 __wait_event_interruptible(channel_wqs[index].lx_queue,
176 (p = vpe_get_shared(tclimit)), ret);
177 if (ret)
Ralf Baechle67e2ccc2007-02-22 14:19:48 +0000178 goto out_fail;
Kevin D. Kissell1928cc82008-04-16 15:32:22 +0200179 } else {
180 printk(KERN_DEBUG "No SP program loaded, and device "
181 "opened with O_NONBLOCK\n");
182 ret = -ENOSYS;
183 goto out_fail;
184 }
Ralf Baechlee01402b2005-07-14 15:57:16 +0000185 }
186
Ralf Baechle9e346822007-03-15 17:08:28 +0000187 smp_rmb();
Ralf Baechlee01402b2005-07-14 15:57:16 +0000188 if (*p == NULL) {
Ralf Baechle26009902006-04-05 09:45:45 +0100189 if (can_sleep) {
Ralf Baechle9e346822007-03-15 17:08:28 +0000190 DEFINE_WAIT(wait);
191
192 for (;;) {
Kevin D. Kissell1928cc82008-04-16 15:32:22 +0200193 prepare_to_wait(
194 &channel_wqs[index].lx_queue,
195 &wait, TASK_INTERRUPTIBLE);
Ralf Baechle9e346822007-03-15 17:08:28 +0000196 smp_rmb();
197 if (*p != NULL)
198 break;
199 if (!signal_pending(current)) {
200 schedule();
201 continue;
202 }
203 ret = -ERESTARTSYS;
Ralf Baechle67e2ccc2007-02-22 14:19:48 +0000204 goto out_fail;
Ralf Baechle9e346822007-03-15 17:08:28 +0000205 }
206 finish_wait(&channel_wqs[index].lx_queue, &wait);
Ralf Baechle67e2ccc2007-02-22 14:19:48 +0000207 } else {
Kevin D. Kissell1928cc82008-04-16 15:32:22 +0200208 pr_err(" *vpe_get_shared is NULL. "
Ralf Baechle26009902006-04-05 09:45:45 +0100209 "Has an SP program been loaded?\n");
Ralf Baechle67e2ccc2007-02-22 14:19:48 +0000210 ret = -ENOSYS;
211 goto out_fail;
Ralf Baechle26009902006-04-05 09:45:45 +0100212 }
Ralf Baechlee01402b2005-07-14 15:57:16 +0000213 }
214
Ralf Baechle26009902006-04-05 09:45:45 +0100215 if ((unsigned int)*p < KSEG0) {
Kevin D. Kissell1928cc82008-04-16 15:32:22 +0200216 printk(KERN_WARNING "vpe_get_shared returned an "
217 "invalid pointer maybe an error code %d\n",
218 (int)*p);
Ralf Baechle67e2ccc2007-02-22 14:19:48 +0000219 ret = -ENOSYS;
220 goto out_fail;
Ralf Baechle26009902006-04-05 09:45:45 +0100221 }
222
Ralf Baechlec4c40182007-02-23 13:40:45 +0000223 if ((ret = rtlx_init(*p)) < 0)
224 goto out_ret;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000225 }
226
Ralf Baechle26009902006-04-05 09:45:45 +0100227 chan = &rtlx->channel[index];
Ralf Baechlee01402b2005-07-14 15:57:16 +0000228
Ralf Baechlec4c40182007-02-23 13:40:45 +0000229 state = xchg(&chan->lx_state, RTLX_STATE_OPENED);
230 if (state == RTLX_STATE_OPENED) {
231 ret = -EBUSY;
232 goto out_fail;
233 }
Ralf Baechle67e2ccc2007-02-22 14:19:48 +0000234
235out_fail:
Ralf Baechlec4c40182007-02-23 13:40:45 +0000236 smp_mb();
237 atomic_dec(&channel_wqs[index].in_open);
238 smp_mb();
Ralf Baechle67e2ccc2007-02-22 14:19:48 +0000239
Ralf Baechlec4c40182007-02-23 13:40:45 +0000240out_ret:
Ralf Baechle67e2ccc2007-02-22 14:19:48 +0000241 return ret;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000242}
243
Ralf Baechle26009902006-04-05 09:45:45 +0100244int rtlx_release(int index)
Ralf Baechlee01402b2005-07-14 15:57:16 +0000245{
Kevin D. Kissell1928cc82008-04-16 15:32:22 +0200246 if (rtlx == NULL) {
247 pr_err("rtlx_release() with null rtlx\n");
248 return 0;
249 }
Ralf Baechle26009902006-04-05 09:45:45 +0100250 rtlx->channel[index].lx_state = RTLX_STATE_UNUSED;
Ralf Baechleafc48412005-10-31 00:30:39 +0000251 return 0;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000252}
253
Ralf Baechle26009902006-04-05 09:45:45 +0100254unsigned int rtlx_read_poll(int index, int can_sleep)
Ralf Baechlee01402b2005-07-14 15:57:16 +0000255{
Ralf Baechle70342282013-01-22 12:59:30 +0100256 struct rtlx_channel *chan;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000257
Ralf Baechle70342282013-01-22 12:59:30 +0100258 if (rtlx == NULL)
259 return 0;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000260
Ralf Baechle70342282013-01-22 12:59:30 +0100261 chan = &rtlx->channel[index];
Ralf Baechlee01402b2005-07-14 15:57:16 +0000262
263 /* data available to read? */
Ralf Baechle26009902006-04-05 09:45:45 +0100264 if (chan->lx_read == chan->lx_write) {
265 if (can_sleep) {
Ralf Baechle67e2ccc2007-02-22 14:19:48 +0000266 int ret = 0;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000267
Ralf Baechle67e2ccc2007-02-22 14:19:48 +0000268 __wait_event_interruptible(channel_wqs[index].lx_queue,
Kevin D. Kissell1928cc82008-04-16 15:32:22 +0200269 (chan->lx_read != chan->lx_write) ||
270 sp_stopping, ret);
Ralf Baechle67e2ccc2007-02-22 14:19:48 +0000271 if (ret)
272 return ret;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000273
Ralf Baechle67e2ccc2007-02-22 14:19:48 +0000274 if (sp_stopping)
275 return 0;
276 } else
Ralf Baechle26009902006-04-05 09:45:45 +0100277 return 0;
278 }
279
280 return (chan->lx_write + chan->buffer_size - chan->lx_read)
281 % chan->buffer_size;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000282}
283
Ralf Baechle26009902006-04-05 09:45:45 +0100284static inline int write_spacefree(int read, int write, int size)
Ralf Baechlee01402b2005-07-14 15:57:16 +0000285{
Ralf Baechle26009902006-04-05 09:45:45 +0100286 if (read == write) {
287 /*
288 * Never fill the buffer completely, so indexes are always
289 * equal if empty and only empty, or !equal if data available
290 */
291 return size - 1;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000292 }
293
Ralf Baechle26009902006-04-05 09:45:45 +0100294 return ((read + size - write) % size) - 1;
295}
296
297unsigned int rtlx_write_poll(int index)
298{
299 struct rtlx_channel *chan = &rtlx->channel[index];
Kevin D. Kissell1928cc82008-04-16 15:32:22 +0200300
301 return write_spacefree(chan->rt_read, chan->rt_write,
302 chan->buffer_size);
Ralf Baechle26009902006-04-05 09:45:45 +0100303}
304
Ralf Baechle7f5a7712007-04-25 15:08:57 +0100305ssize_t rtlx_read(int index, void __user *buff, size_t count)
Ralf Baechle26009902006-04-05 09:45:45 +0100306{
Ralf Baechle61dcc6f2007-03-15 17:10:16 +0000307 size_t lx_write, fl = 0L;
Ralf Baechle26009902006-04-05 09:45:45 +0100308 struct rtlx_channel *lx;
Ralf Baechle46230aa2007-03-16 12:16:27 +0000309 unsigned long failed;
Ralf Baechle26009902006-04-05 09:45:45 +0100310
311 if (rtlx == NULL)
312 return -ENOSYS;
313
314 lx = &rtlx->channel[index];
315
Ralf Baechlebc4809e2007-03-15 17:13:47 +0000316 mutex_lock(&channel_wqs[index].mutex);
Ralf Baechle61dcc6f2007-03-15 17:10:16 +0000317 smp_rmb();
318 lx_write = lx->lx_write;
319
Ralf Baechlee01402b2005-07-14 15:57:16 +0000320 /* find out how much in total */
Ralf Baechleafc48412005-10-31 00:30:39 +0000321 count = min(count,
Ralf Baechle61dcc6f2007-03-15 17:10:16 +0000322 (size_t)(lx_write + lx->buffer_size - lx->lx_read)
Ralf Baechle26009902006-04-05 09:45:45 +0100323 % lx->buffer_size);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000324
325 /* then how much from the read pointer onwards */
Ralf Baechle61dcc6f2007-03-15 17:10:16 +0000326 fl = min(count, (size_t)lx->buffer_size - lx->lx_read);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000327
Ralf Baechle46230aa2007-03-16 12:16:27 +0000328 failed = copy_to_user(buff, lx->lx_buffer + lx->lx_read, fl);
329 if (failed)
330 goto out;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000331
332 /* and if there is anything left at the beginning of the buffer */
Ralf Baechle61dcc6f2007-03-15 17:10:16 +0000333 if (count - fl)
Ralf Baechle46230aa2007-03-16 12:16:27 +0000334 failed = copy_to_user(buff + fl, lx->lx_buffer, count - fl);
335
336out:
337 count -= failed;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000338
Ralf Baechle61dcc6f2007-03-15 17:10:16 +0000339 smp_wmb();
340 lx->lx_read = (lx->lx_read + count) % lx->buffer_size;
341 smp_wmb();
Ralf Baechlebc4809e2007-03-15 17:13:47 +0000342 mutex_unlock(&channel_wqs[index].mutex);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000343
Ralf Baechleafc48412005-10-31 00:30:39 +0000344 return count;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000345}
346
Ralf Baechle7f5a7712007-04-25 15:08:57 +0100347ssize_t rtlx_write(int index, const void __user *buffer, size_t count)
Ralf Baechlee01402b2005-07-14 15:57:16 +0000348{
Ralf Baechlee01402b2005-07-14 15:57:16 +0000349 struct rtlx_channel *rt;
Ralf Baechle7f5a7712007-04-25 15:08:57 +0100350 unsigned long failed;
Ralf Baechle61dcc6f2007-03-15 17:10:16 +0000351 size_t rt_read;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000352 size_t fl;
Ralf Baechle26009902006-04-05 09:45:45 +0100353
354 if (rtlx == NULL)
355 return(-ENOSYS);
356
357 rt = &rtlx->channel[index];
358
Ralf Baechlebc4809e2007-03-15 17:13:47 +0000359 mutex_lock(&channel_wqs[index].mutex);
Ralf Baechle61dcc6f2007-03-15 17:10:16 +0000360 smp_rmb();
361 rt_read = rt->rt_read;
362
Ralf Baechle26009902006-04-05 09:45:45 +0100363 /* total number of bytes to copy */
Kevin D. Kissell1928cc82008-04-16 15:32:22 +0200364 count = min(count, (size_t)write_spacefree(rt_read, rt->rt_write,
365 rt->buffer_size));
Ralf Baechle26009902006-04-05 09:45:45 +0100366
367 /* first bit from write pointer to the end of the buffer, or count */
368 fl = min(count, (size_t) rt->buffer_size - rt->rt_write);
369
Ralf Baechle46230aa2007-03-16 12:16:27 +0000370 failed = copy_from_user(rt->rt_buffer + rt->rt_write, buffer, fl);
371 if (failed)
372 goto out;
Ralf Baechle26009902006-04-05 09:45:45 +0100373
374 /* if there's any left copy to the beginning of the buffer */
Ralf Baechle46230aa2007-03-16 12:16:27 +0000375 if (count - fl) {
376 failed = copy_from_user(rt->rt_buffer, buffer + fl, count - fl);
377 }
378
379out:
Ralf Baechle7f5a7712007-04-25 15:08:57 +0100380 count -= failed;
Ralf Baechle26009902006-04-05 09:45:45 +0100381
Ralf Baechle61dcc6f2007-03-15 17:10:16 +0000382 smp_wmb();
383 rt->rt_write = (rt->rt_write + count) % rt->buffer_size;
384 smp_wmb();
Ralf Baechlebc4809e2007-03-15 17:13:47 +0000385 mutex_unlock(&channel_wqs[index].mutex);
Ralf Baechle26009902006-04-05 09:45:45 +0100386
Ralf Baechle61dcc6f2007-03-15 17:10:16 +0000387 return count;
Ralf Baechle26009902006-04-05 09:45:45 +0100388}
389
390
391static int file_open(struct inode *inode, struct file *filp)
392{
Ralf Baechle1bbfc202009-09-29 00:52:27 +0100393 return rtlx_open(iminor(inode), (filp->f_flags & O_NONBLOCK) ? 0 : 1);
Ralf Baechle26009902006-04-05 09:45:45 +0100394}
395
396static int file_release(struct inode *inode, struct file *filp)
397{
Ralf Baechle1bbfc202009-09-29 00:52:27 +0100398 return rtlx_release(iminor(inode));
Ralf Baechle26009902006-04-05 09:45:45 +0100399}
400
401static unsigned int file_poll(struct file *file, poll_table * wait)
402{
Al Viro496ad9a2013-01-23 17:07:38 -0500403 int minor = iminor(file_inode(file));
Ralf Baechle26009902006-04-05 09:45:45 +0100404 unsigned int mask = 0;
405
Ralf Baechle26009902006-04-05 09:45:45 +0100406 poll_wait(file, &channel_wqs[minor].rt_queue, wait);
407 poll_wait(file, &channel_wqs[minor].lx_queue, wait);
408
409 if (rtlx == NULL)
410 return 0;
411
412 /* data available to read? */
413 if (rtlx_read_poll(minor, 0))
414 mask |= POLLIN | POLLRDNORM;
415
416 /* space to write */
417 if (rtlx_write_poll(minor))
418 mask |= POLLOUT | POLLWRNORM;
419
420 return mask;
421}
422
423static ssize_t file_read(struct file *file, char __user * buffer, size_t count,
424 loff_t * ppos)
425{
Al Viro496ad9a2013-01-23 17:07:38 -0500426 int minor = iminor(file_inode(file));
Ralf Baechle26009902006-04-05 09:45:45 +0100427
428 /* data available? */
429 if (!rtlx_read_poll(minor, (file->f_flags & O_NONBLOCK) ? 0 : 1)) {
430 return 0; // -EAGAIN makes cat whinge
431 }
432
Ralf Baechle46230aa2007-03-16 12:16:27 +0000433 return rtlx_read(minor, buffer, count);
Ralf Baechle26009902006-04-05 09:45:45 +0100434}
435
436static ssize_t file_write(struct file *file, const char __user * buffer,
437 size_t count, loff_t * ppos)
438{
Al Viro496ad9a2013-01-23 17:07:38 -0500439 int minor = iminor(file_inode(file));
440 struct rtlx_channel *rt = &rtlx->channel[minor];
Ralf Baechlee01402b2005-07-14 15:57:16 +0000441
442 /* any space left... */
Ralf Baechle26009902006-04-05 09:45:45 +0100443 if (!rtlx_write_poll(minor)) {
Ralf Baechle67e2ccc2007-02-22 14:19:48 +0000444 int ret = 0;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000445
446 if (file->f_flags & O_NONBLOCK)
Ralf Baechleafc48412005-10-31 00:30:39 +0000447 return -EAGAIN;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000448
Ralf Baechle67e2ccc2007-02-22 14:19:48 +0000449 __wait_event_interruptible(channel_wqs[minor].rt_queue,
Ralf Baechle70342282013-01-22 12:59:30 +0100450 rtlx_write_poll(minor),
451 ret);
Ralf Baechle67e2ccc2007-02-22 14:19:48 +0000452 if (ret)
453 return ret;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000454 }
455
Ralf Baechle46230aa2007-03-16 12:16:27 +0000456 return rtlx_write(minor, buffer, count);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000457}
458
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -0800459static const struct file_operations rtlx_fops = {
Ralf Baechle26009902006-04-05 09:45:45 +0100460 .owner = THIS_MODULE,
Ralf Baechle70342282013-01-22 12:59:30 +0100461 .open = file_open,
Ralf Baechle26009902006-04-05 09:45:45 +0100462 .release = file_release,
463 .write = file_write,
Ralf Baechle70342282013-01-22 12:59:30 +0100464 .read = file_read,
465 .poll = file_poll,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200466 .llseek = noop_llseek,
Ralf Baechlee01402b2005-07-14 15:57:16 +0000467};
468
Ralf Baechle26009902006-04-05 09:45:45 +0100469static struct irqaction rtlx_irq = {
470 .handler = rtlx_interrupt,
Ralf Baechle26009902006-04-05 09:45:45 +0100471 .name = "RTLX",
472};
473
Atsushi Nemoto97dcb822007-01-08 02:14:29 +0900474static int rtlx_irq_num = MIPS_CPU_IRQ_BASE + MIPS_CPU_RTLX_IRQ;
Ralf Baechle26009902006-04-05 09:45:45 +0100475
Ralf Baechleafc48412005-10-31 00:30:39 +0000476static char register_chrdev_failed[] __initdata =
477 KERN_ERR "rtlx_module_init: unable to register device\n";
478
Ralf Baechle9d5a3f52007-07-28 00:51:45 +0100479static int __init rtlx_module_init(void)
Ralf Baechlee01402b2005-07-14 15:57:16 +0000480{
Ralf Baechlebb3d7c72007-02-07 15:36:56 +0000481 struct device *dev;
482 int i, err;
Ralf Baechle26009902006-04-05 09:45:45 +0100483
Ralf Baechle07cc0c92007-07-27 19:31:10 +0100484 if (!cpu_has_mipsmt) {
485 printk("VPE loader: not a MIPS MT capable processor\n");
486 return -ENODEV;
487 }
488
489 if (tclimit == 0) {
490 printk(KERN_WARNING "No TCs reserved for AP/SP, not "
491 "initializing RTLX.\nPass maxtcs=<n> argument as kernel "
492 "argument\n");
493
494 return -ENODEV;
495 }
496
Ralf Baechleafc48412005-10-31 00:30:39 +0000497 major = register_chrdev(0, module_name, &rtlx_fops);
498 if (major < 0) {
499 printk(register_chrdev_failed);
500 return major;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000501 }
502
Ralf Baechle26009902006-04-05 09:45:45 +0100503 /* initialise the wait queues */
504 for (i = 0; i < RTLX_CHANNELS; i++) {
505 init_waitqueue_head(&channel_wqs[i].rt_queue);
506 init_waitqueue_head(&channel_wqs[i].lx_queue);
Ralf Baechlec4c40182007-02-23 13:40:45 +0000507 atomic_set(&channel_wqs[i].in_open, 0);
Ralf Baechlebc4809e2007-03-15 17:13:47 +0000508 mutex_init(&channel_wqs[i].mutex);
Ralf Baechlebb3d7c72007-02-07 15:36:56 +0000509
Greg Kroah-Hartmana9b12612008-07-21 20:03:34 -0700510 dev = device_create(mt_class, NULL, MKDEV(major, i), NULL,
511 "%s%d", module_name, i);
Ralf Baechlebb3d7c72007-02-07 15:36:56 +0000512 if (IS_ERR(dev)) {
513 err = PTR_ERR(dev);
514 goto out_chrdev;
515 }
Ralf Baechle26009902006-04-05 09:45:45 +0100516 }
517
518 /* set up notifiers */
519 notify.start = starting;
520 notify.stop = stopping;
Ralf Baechle07cc0c92007-07-27 19:31:10 +0100521 vpe_notify(tclimit, &notify);
Ralf Baechle26009902006-04-05 09:45:45 +0100522
523 if (cpu_has_vint)
524 set_vi_handler(MIPS_CPU_RTLX_IRQ, rtlx_dispatch);
Kevin D. Kissell1928cc82008-04-16 15:32:22 +0200525 else {
526 pr_err("APRP RTLX init on non-vectored-interrupt processor\n");
527 err = -ENODEV;
528 goto out_chrdev;
529 }
Ralf Baechle26009902006-04-05 09:45:45 +0100530
531 rtlx_irq.dev_id = rtlx;
532 setup_irq(rtlx_irq_num, &rtlx_irq);
533
Ralf Baechleafc48412005-10-31 00:30:39 +0000534 return 0;
Ralf Baechlebb3d7c72007-02-07 15:36:56 +0000535
536out_chrdev:
537 for (i = 0; i < RTLX_CHANNELS; i++)
538 device_destroy(mt_class, MKDEV(major, i));
539
540 return err;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000541}
542
Ralf Baechleafc48412005-10-31 00:30:39 +0000543static void __exit rtlx_module_exit(void)
Ralf Baechlee01402b2005-07-14 15:57:16 +0000544{
Ralf Baechlebb3d7c72007-02-07 15:36:56 +0000545 int i;
546
547 for (i = 0; i < RTLX_CHANNELS; i++)
548 device_destroy(mt_class, MKDEV(major, i));
549
Ralf Baechlee01402b2005-07-14 15:57:16 +0000550 unregister_chrdev(major, module_name);
551}
552
553module_init(rtlx_module_init);
554module_exit(rtlx_module_exit);
Ralf Baechleafc48412005-10-31 00:30:39 +0000555
Ralf Baechlee01402b2005-07-14 15:57:16 +0000556MODULE_DESCRIPTION("MIPS RTLX");
Ralf Baechle26009902006-04-05 09:45:45 +0100557MODULE_AUTHOR("Elizabeth Oldham, MIPS Technologies, Inc.");
Ralf Baechlee01402b2005-07-14 15:57:16 +0000558MODULE_LICENSE("GPL");