[MIPS] RTLX, VPE: Make open actually atomic.
[deliverable/linux.git] / arch / mips / kernel / rtlx.c
1 /*
2 * Copyright (C) 2005 MIPS Technologies, Inc. All rights reserved.
3 * Copyright (C) 2005, 06 Ralf Baechle (ralf@linux-mips.org)
4 *
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
20 #include <linux/device.h>
21 #include <linux/kernel.h>
22 #include <linux/module.h>
23 #include <linux/fs.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>
41 #include <asm/cpu.h>
42 #include <asm/processor.h>
43 #include <asm/system.h>
44 #include <asm/vpe.h>
45 #include <asm/rtlx.h>
46
47 #define RTLX_TARG_VPE 1
48
49 static struct rtlx_info *rtlx;
50 static int major;
51 static char module_name[] = "rtlx";
52
53 static struct chan_waitqueues {
54 wait_queue_head_t rt_queue;
55 wait_queue_head_t lx_queue;
56 atomic_t in_open;
57 } channel_wqs[RTLX_CHANNELS];
58
59 static struct irqaction irq;
60 static int irq_num;
61 static struct vpe_notifications notify;
62 static int sp_stopping = 0;
63
64 extern void *vpe_get_shared(int index);
65
66 static void rtlx_dispatch(void)
67 {
68 do_IRQ(MIPS_CPU_IRQ_BASE + MIPS_CPU_RTLX_IRQ);
69 }
70
71
72 /* Interrupt handler may be called before rtlx_init has otherwise had
73 a chance to run.
74 */
75 static irqreturn_t rtlx_interrupt(int irq, void *dev_id)
76 {
77 int i;
78
79 for (i = 0; i < RTLX_CHANNELS; i++) {
80 wake_up(&channel_wqs[i].lx_queue);
81 wake_up(&channel_wqs[i].rt_queue);
82 }
83
84 return IRQ_HANDLED;
85 }
86
87 static __attribute_used__ void dump_rtlx(void)
88 {
89 int i;
90
91 printk("id 0x%lx state %d\n", rtlx->id, rtlx->state);
92
93 for (i = 0; i < RTLX_CHANNELS; i++) {
94 struct rtlx_channel *chan = &rtlx->channel[i];
95
96 printk(" rt_state %d lx_state %d buffer_size %d\n",
97 chan->rt_state, chan->lx_state, chan->buffer_size);
98
99 printk(" rt_read %d rt_write %d\n",
100 chan->rt_read, chan->rt_write);
101
102 printk(" lx_read %d lx_write %d\n",
103 chan->lx_read, chan->lx_write);
104
105 printk(" rt_buffer <%s>\n", chan->rt_buffer);
106 printk(" lx_buffer <%s>\n", chan->lx_buffer);
107 }
108 }
109
110 /* call when we have the address of the shared structure from the SP side. */
111 static int rtlx_init(struct rtlx_info *rtlxi)
112 {
113 if (rtlxi->id != RTLX_ID) {
114 printk(KERN_ERR "no valid RTLX id at 0x%p 0x%x\n", rtlxi, rtlxi->id);
115 return -ENOEXEC;
116 }
117
118 rtlx = rtlxi;
119
120 return 0;
121 }
122
123 /* notifications */
124 static void starting(int vpe)
125 {
126 int i;
127 sp_stopping = 0;
128
129 /* force a reload of rtlx */
130 rtlx=NULL;
131
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);
135 }
136
137 static void stopping(int vpe)
138 {
139 int i;
140
141 sp_stopping = 1;
142 for (i = 0; i < RTLX_CHANNELS; i++)
143 wake_up_interruptible(&channel_wqs[i].lx_queue);
144 }
145
146
147 int rtlx_open(int index, int can_sleep)
148 {
149 volatile struct rtlx_info **p;
150 struct rtlx_channel *chan;
151 enum rtlx_state state;
152 int ret = 0;
153
154 if (index >= RTLX_CHANNELS) {
155 printk(KERN_DEBUG "rtlx_open index out of range\n");
156 return -ENOSYS;
157 }
158
159 if (atomic_inc_return(&channel_wqs[index].in_open) > 1) {
160 printk(KERN_DEBUG "rtlx_open channel %d already opened\n",
161 index);
162 ret = -EBUSY;
163 goto out_fail;
164 }
165
166 if (rtlx == NULL) {
167 if( (p = vpe_get_shared(RTLX_TARG_VPE)) == NULL) {
168 if (can_sleep) {
169 int ret = 0;
170
171 __wait_event_interruptible(channel_wqs[index].lx_queue,
172 (p = vpe_get_shared(RTLX_TARG_VPE)),
173 ret);
174 if (ret)
175 goto out_fail;
176 } else {
177 printk(KERN_DEBUG "No SP program loaded, and device "
178 "opened with O_NONBLOCK\n");
179 ret = -ENOSYS;
180 goto out_fail;
181 }
182 }
183
184 if (*p == NULL) {
185 if (can_sleep) {
186 int ret = 0;
187
188 __wait_event_interruptible(channel_wqs[index].lx_queue,
189 *p != NULL,
190 ret);
191 if (ret)
192 goto out_fail;
193 } else {
194 printk(" *vpe_get_shared is NULL. "
195 "Has an SP program been loaded?\n");
196 ret = -ENOSYS;
197 goto out_fail;
198 }
199 }
200
201 if ((unsigned int)*p < KSEG0) {
202 printk(KERN_WARNING "vpe_get_shared returned an invalid pointer "
203 "maybe an error code %d\n", (int)*p);
204 ret = -ENOSYS;
205 goto out_fail;
206 }
207
208 if ((ret = rtlx_init(*p)) < 0)
209 goto out_ret;
210 }
211
212 chan = &rtlx->channel[index];
213
214 state = xchg(&chan->lx_state, RTLX_STATE_OPENED);
215 if (state == RTLX_STATE_OPENED) {
216 ret = -EBUSY;
217 goto out_fail;
218 }
219
220 out_fail:
221 smp_mb();
222 atomic_dec(&channel_wqs[index].in_open);
223 smp_mb();
224
225 out_ret:
226 return ret;
227 }
228
229 int rtlx_release(int index)
230 {
231 rtlx->channel[index].lx_state = RTLX_STATE_UNUSED;
232 return 0;
233 }
234
235 unsigned int rtlx_read_poll(int index, int can_sleep)
236 {
237 struct rtlx_channel *chan;
238
239 if (rtlx == NULL)
240 return 0;
241
242 chan = &rtlx->channel[index];
243
244 /* data available to read? */
245 if (chan->lx_read == chan->lx_write) {
246 if (can_sleep) {
247 int ret = 0;
248
249 __wait_event_interruptible(channel_wqs[index].lx_queue,
250 chan->lx_read != chan->lx_write || sp_stopping,
251 ret);
252 if (ret)
253 return ret;
254
255 if (sp_stopping)
256 return 0;
257 } else
258 return 0;
259 }
260
261 return (chan->lx_write + chan->buffer_size - chan->lx_read)
262 % chan->buffer_size;
263 }
264
265 static inline int write_spacefree(int read, int write, int size)
266 {
267 if (read == write) {
268 /*
269 * Never fill the buffer completely, so indexes are always
270 * equal if empty and only empty, or !equal if data available
271 */
272 return size - 1;
273 }
274
275 return ((read + size - write) % size) - 1;
276 }
277
278 unsigned int rtlx_write_poll(int index)
279 {
280 struct rtlx_channel *chan = &rtlx->channel[index];
281 return write_spacefree(chan->rt_read, chan->rt_write, chan->buffer_size);
282 }
283
284 static inline void copy_to(void *dst, void *src, size_t count, int user)
285 {
286 if (user)
287 copy_to_user(dst, src, count);
288 else
289 memcpy(dst, src, count);
290 }
291
292 static inline void copy_from(void *dst, void *src, size_t count, int user)
293 {
294 if (user)
295 copy_from_user(dst, src, count);
296 else
297 memcpy(dst, src, count);
298 }
299
300 ssize_t rtlx_read(int index, void *buff, size_t count, int user)
301 {
302 size_t fl = 0L;
303 struct rtlx_channel *lx;
304
305 if (rtlx == NULL)
306 return -ENOSYS;
307
308 lx = &rtlx->channel[index];
309
310 /* find out how much in total */
311 count = min(count,
312 (size_t)(lx->lx_write + lx->buffer_size - lx->lx_read)
313 % lx->buffer_size);
314
315 /* then how much from the read pointer onwards */
316 fl = min( count, (size_t)lx->buffer_size - lx->lx_read);
317
318 copy_to(buff, &lx->lx_buffer[lx->lx_read], fl, user);
319
320 /* and if there is anything left at the beginning of the buffer */
321 if ( count - fl )
322 copy_to (buff + fl, lx->lx_buffer, count - fl, user);
323
324 /* update the index */
325 lx->lx_read += count;
326 lx->lx_read %= lx->buffer_size;
327
328 return count;
329 }
330
331 ssize_t rtlx_write(int index, void *buffer, size_t count, int user)
332 {
333 struct rtlx_channel *rt;
334 size_t fl;
335
336 if (rtlx == NULL)
337 return(-ENOSYS);
338
339 rt = &rtlx->channel[index];
340
341 /* total number of bytes to copy */
342 count = min(count,
343 (size_t)write_spacefree(rt->rt_read, rt->rt_write,
344 rt->buffer_size));
345
346 /* first bit from write pointer to the end of the buffer, or count */
347 fl = min(count, (size_t) rt->buffer_size - rt->rt_write);
348
349 copy_from (&rt->rt_buffer[rt->rt_write], buffer, fl, user);
350
351 /* if there's any left copy to the beginning of the buffer */
352 if( count - fl )
353 copy_from (rt->rt_buffer, buffer + fl, count - fl, user);
354
355 rt->rt_write += count;
356 rt->rt_write %= rt->buffer_size;
357
358 return(count);
359 }
360
361
362 static int file_open(struct inode *inode, struct file *filp)
363 {
364 int minor = iminor(inode);
365
366 return rtlx_open(minor, (filp->f_flags & O_NONBLOCK) ? 0 : 1);
367 }
368
369 static int file_release(struct inode *inode, struct file *filp)
370 {
371 int minor = iminor(inode);
372
373 return rtlx_release(minor);
374 }
375
376 static unsigned int file_poll(struct file *file, poll_table * wait)
377 {
378 int minor;
379 unsigned int mask = 0;
380
381 minor = iminor(file->f_path.dentry->d_inode);
382
383 poll_wait(file, &channel_wqs[minor].rt_queue, wait);
384 poll_wait(file, &channel_wqs[minor].lx_queue, wait);
385
386 if (rtlx == NULL)
387 return 0;
388
389 /* data available to read? */
390 if (rtlx_read_poll(minor, 0))
391 mask |= POLLIN | POLLRDNORM;
392
393 /* space to write */
394 if (rtlx_write_poll(minor))
395 mask |= POLLOUT | POLLWRNORM;
396
397 return mask;
398 }
399
400 static ssize_t file_read(struct file *file, char __user * buffer, size_t count,
401 loff_t * ppos)
402 {
403 int minor = iminor(file->f_path.dentry->d_inode);
404
405 /* data available? */
406 if (!rtlx_read_poll(minor, (file->f_flags & O_NONBLOCK) ? 0 : 1)) {
407 return 0; // -EAGAIN makes cat whinge
408 }
409
410 return rtlx_read(minor, buffer, count, 1);
411 }
412
413 static ssize_t file_write(struct file *file, const char __user * buffer,
414 size_t count, loff_t * ppos)
415 {
416 int minor;
417 struct rtlx_channel *rt;
418
419 minor = iminor(file->f_path.dentry->d_inode);
420 rt = &rtlx->channel[minor];
421
422 /* any space left... */
423 if (!rtlx_write_poll(minor)) {
424 int ret = 0;
425
426 if (file->f_flags & O_NONBLOCK)
427 return -EAGAIN;
428
429 __wait_event_interruptible(channel_wqs[minor].rt_queue,
430 rtlx_write_poll(minor),
431 ret);
432 if (ret)
433 return ret;
434 }
435
436 return rtlx_write(minor, (void *)buffer, count, 1);
437 }
438
439 static const struct file_operations rtlx_fops = {
440 .owner = THIS_MODULE,
441 .open = file_open,
442 .release = file_release,
443 .write = file_write,
444 .read = file_read,
445 .poll = file_poll
446 };
447
448 static struct irqaction rtlx_irq = {
449 .handler = rtlx_interrupt,
450 .flags = IRQF_DISABLED,
451 .name = "RTLX",
452 };
453
454 static int rtlx_irq_num = MIPS_CPU_IRQ_BASE + MIPS_CPU_RTLX_IRQ;
455
456 static char register_chrdev_failed[] __initdata =
457 KERN_ERR "rtlx_module_init: unable to register device\n";
458
459 static int rtlx_module_init(void)
460 {
461 struct device *dev;
462 int i, err;
463
464 major = register_chrdev(0, module_name, &rtlx_fops);
465 if (major < 0) {
466 printk(register_chrdev_failed);
467 return major;
468 }
469
470 /* initialise the wait queues */
471 for (i = 0; i < RTLX_CHANNELS; i++) {
472 init_waitqueue_head(&channel_wqs[i].rt_queue);
473 init_waitqueue_head(&channel_wqs[i].lx_queue);
474 atomic_set(&channel_wqs[i].in_open, 0);
475
476 dev = device_create(mt_class, NULL, MKDEV(major, i),
477 "%s%d", module_name, i);
478 if (IS_ERR(dev)) {
479 err = PTR_ERR(dev);
480 goto out_chrdev;
481 }
482 }
483
484 /* set up notifiers */
485 notify.start = starting;
486 notify.stop = stopping;
487 vpe_notify(RTLX_TARG_VPE, &notify);
488
489 if (cpu_has_vint)
490 set_vi_handler(MIPS_CPU_RTLX_IRQ, rtlx_dispatch);
491
492 rtlx_irq.dev_id = rtlx;
493 setup_irq(rtlx_irq_num, &rtlx_irq);
494
495 return 0;
496
497 out_chrdev:
498 for (i = 0; i < RTLX_CHANNELS; i++)
499 device_destroy(mt_class, MKDEV(major, i));
500
501 return err;
502 }
503
504 static void __exit rtlx_module_exit(void)
505 {
506 int i;
507
508 for (i = 0; i < RTLX_CHANNELS; i++)
509 device_destroy(mt_class, MKDEV(major, i));
510
511 unregister_chrdev(major, module_name);
512 }
513
514 module_init(rtlx_module_init);
515 module_exit(rtlx_module_exit);
516
517 MODULE_DESCRIPTION("MIPS RTLX");
518 MODULE_AUTHOR("Elizabeth Oldham, MIPS Technologies, Inc.");
519 MODULE_LICENSE("GPL");
This page took 0.04207 seconds and 6 git commands to generate.