blob: 766db51ab69e4ea6e2e9813e2ccf16a4879a3914 [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>
22#include <linux/module.h>
23#include <linux/fs.h>
24#include <linux/init.h>
Ralf Baechle26009902006-04-05 09:45:45 +010025#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>
Ralf Baechlea84c96e2006-01-15 18:11:28 +000033#include <linux/interrupt.h>
Ralf Baechlee01402b2005-07-14 15:57:16 +000034#include <linux/poll.h>
35#include <linux/sched.h>
36#include <linux/wait.h>
37#include <asm/mipsmtregs.h>
Ralf Baechlebb3d7c72007-02-07 15:36:56 +000038#include <asm/mips_mt.h>
Ralf Baechle26009902006-04-05 09:45:45 +010039#include <asm/cacheflush.h>
40#include <asm/atomic.h>
Ralf Baechlee01402b2005-07-14 15:57:16 +000041#include <asm/cpu.h>
42#include <asm/processor.h>
Ralf Baechle26009902006-04-05 09:45:45 +010043#include <asm/system.h>
44#include <asm/vpe.h>
Ralf Baechlee01402b2005-07-14 15:57:16 +000045#include <asm/rtlx.h>
46
Ralf Baechlee01402b2005-07-14 15:57:16 +000047#define RTLX_TARG_VPE 1
48
Ralf Baechleafc48412005-10-31 00:30:39 +000049static struct rtlx_info *rtlx;
Ralf Baechlee01402b2005-07-14 15:57:16 +000050static int major;
51static char module_name[] = "rtlx";
Ralf Baechlee01402b2005-07-14 15:57:16 +000052
53static struct chan_waitqueues {
54 wait_queue_head_t rt_queue;
55 wait_queue_head_t lx_queue;
Ralf Baechle26009902006-04-05 09:45:45 +010056 int in_open;
Ralf Baechlee01402b2005-07-14 15:57:16 +000057} channel_wqs[RTLX_CHANNELS];
58
Ralf Baechle26009902006-04-05 09:45:45 +010059static struct irqaction irq;
60static int irq_num;
61static struct vpe_notifications notify;
62static int sp_stopping = 0;
63
Ralf Baechlee01402b2005-07-14 15:57:16 +000064extern void *vpe_get_shared(int index);
65
Ralf Baechle937a8012006-10-07 19:44:33 +010066static void rtlx_dispatch(void)
Ralf Baechlee01402b2005-07-14 15:57:16 +000067{
Atsushi Nemoto97dcb822007-01-08 02:14:29 +090068 do_IRQ(MIPS_CPU_IRQ_BASE + MIPS_CPU_RTLX_IRQ);
Ralf Baechlee01402b2005-07-14 15:57:16 +000069}
70
Ralf Baechle26009902006-04-05 09:45:45 +010071
72/* Interrupt handler may be called before rtlx_init has otherwise had
73 a chance to run.
74*/
Ralf Baechle937a8012006-10-07 19:44:33 +010075static irqreturn_t rtlx_interrupt(int irq, void *dev_id)
Ralf Baechlee01402b2005-07-14 15:57:16 +000076{
Ralf Baechlee01402b2005-07-14 15:57:16 +000077 int i;
78
79 for (i = 0; i < RTLX_CHANNELS; i++) {
Ralf Baechle26009902006-04-05 09:45:45 +010080 wake_up(&channel_wqs[i].lx_queue);
81 wake_up(&channel_wqs[i].rt_queue);
Ralf Baechlee01402b2005-07-14 15:57:16 +000082 }
83
Ralf Baechleafc48412005-10-31 00:30:39 +000084 return IRQ_HANDLED;
Ralf Baechlee01402b2005-07-14 15:57:16 +000085}
86
Ralf Baechle26009902006-04-05 09:45:45 +010087static __attribute_used__ void dump_rtlx(void)
Ralf Baechlee01402b2005-07-14 15:57:16 +000088{
89 int i;
90
Ralf Baechle26009902006-04-05 09:45:45 +010091 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. */
111static int rtlx_init(struct rtlx_info *rtlxi)
112{
Ralf Baechlee01402b2005-07-14 15:57:16 +0000113 if (rtlxi->id != RTLX_ID) {
Ralf Baechle26009902006-04-05 09:45:45 +0100114 printk(KERN_ERR "no valid RTLX id at 0x%p 0x%x\n", rtlxi, rtlxi->id);
Ralf Baechleafc48412005-10-31 00:30:39 +0000115 return -ENOEXEC;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000116 }
117
Ralf Baechlee01402b2005-07-14 15:57:16 +0000118 rtlx = rtlxi;
Ralf Baechleafc48412005-10-31 00:30:39 +0000119
120 return 0;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000121}
122
Ralf Baechle26009902006-04-05 09:45:45 +0100123/* notifications */
124static void starting(int vpe)
Ralf Baechlee01402b2005-07-14 15:57:16 +0000125{
Ralf Baechle26009902006-04-05 09:45:45 +0100126 int i;
127 sp_stopping = 0;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000128
Ralf Baechle26009902006-04-05 09:45:45 +0100129 /* 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
137static 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
147int rtlx_open(int index, int can_sleep)
148{
Ralf Baechle26009902006-04-05 09:45:45 +0100149 volatile struct rtlx_info **p;
Ralf Baechle67e2ccc2007-02-22 14:19:48 +0000150 struct rtlx_channel *chan;
151 int ret = 0;
Ralf Baechle26009902006-04-05 09:45:45 +0100152
153 if (index >= RTLX_CHANNELS) {
154 printk(KERN_DEBUG "rtlx_open index out of range\n");
155 return -ENOSYS;
156 }
157
158 if (channel_wqs[index].in_open) {
159 printk(KERN_DEBUG "rtlx_open channel %d already opened\n", index);
160 return -EBUSY;
161 }
162
163 channel_wqs[index].in_open++;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000164
165 if (rtlx == NULL) {
Ralf Baechlee01402b2005-07-14 15:57:16 +0000166 if( (p = vpe_get_shared(RTLX_TARG_VPE)) == NULL) {
Ralf Baechle26009902006-04-05 09:45:45 +0100167 if (can_sleep) {
Ralf Baechle67e2ccc2007-02-22 14:19:48 +0000168 int ret = 0;
Ralf Baechle26009902006-04-05 09:45:45 +0100169
Ralf Baechle67e2ccc2007-02-22 14:19:48 +0000170 __wait_event_interruptible(channel_wqs[index].lx_queue,
171 (p = vpe_get_shared(RTLX_TARG_VPE)),
172 ret);
173 if (ret)
174 goto out_fail;
Ralf Baechle26009902006-04-05 09:45:45 +0100175 } else {
176 printk( KERN_DEBUG "No SP program loaded, and device "
177 "opened with O_NONBLOCK\n");
178 channel_wqs[index].in_open = 0;
Ralf Baechle67e2ccc2007-02-22 14:19:48 +0000179 ret = -ENOSYS;
180 goto out_fail;
Ralf Baechle26009902006-04-05 09:45:45 +0100181 }
Ralf Baechlee01402b2005-07-14 15:57:16 +0000182 }
183
184 if (*p == NULL) {
Ralf Baechle26009902006-04-05 09:45:45 +0100185 if (can_sleep) {
Ralf Baechle67e2ccc2007-02-22 14:19:48 +0000186 int ret = 0;
Ralf Baechle26009902006-04-05 09:45:45 +0100187
Ralf Baechle67e2ccc2007-02-22 14:19:48 +0000188 __wait_event_interruptible(channel_wqs[index].lx_queue,
189 *p != NULL,
190 ret);
191 if (ret)
192 goto out_fail;
193 } else {
Ralf Baechle26009902006-04-05 09:45:45 +0100194 printk(" *vpe_get_shared is NULL. "
195 "Has an SP program been loaded?\n");
196 channel_wqs[index].in_open = 0;
Ralf Baechle67e2ccc2007-02-22 14:19:48 +0000197 ret = -ENOSYS;
198 goto out_fail;
Ralf Baechle26009902006-04-05 09:45:45 +0100199 }
Ralf Baechlee01402b2005-07-14 15:57:16 +0000200 }
201
Ralf Baechle26009902006-04-05 09:45:45 +0100202 if ((unsigned int)*p < KSEG0) {
203 printk(KERN_WARNING "vpe_get_shared returned an invalid pointer "
204 "maybe an error code %d\n", (int)*p);
205 channel_wqs[index].in_open = 0;
Ralf Baechle67e2ccc2007-02-22 14:19:48 +0000206 ret = -ENOSYS;
207 goto out_fail;
Ralf Baechle26009902006-04-05 09:45:45 +0100208 }
209
Ralf Baechle67e2ccc2007-02-22 14:19:48 +0000210 if ((ret = rtlx_init(*p)) < 0) {
Ralf Baechle26009902006-04-05 09:45:45 +0100211 channel_wqs[index].in_open = 0;
212 return ret;
213 }
Ralf Baechlee01402b2005-07-14 15:57:16 +0000214 }
215
Ralf Baechle26009902006-04-05 09:45:45 +0100216 chan = &rtlx->channel[index];
Ralf Baechlee01402b2005-07-14 15:57:16 +0000217
Ralf Baechle26009902006-04-05 09:45:45 +0100218 if (chan->lx_state == RTLX_STATE_OPENED) {
219 channel_wqs[index].in_open = 0;
220 return -EBUSY;
221 }
Ralf Baechlee01402b2005-07-14 15:57:16 +0000222
Ralf Baechle26009902006-04-05 09:45:45 +0100223 chan->lx_state = RTLX_STATE_OPENED;
224 channel_wqs[index].in_open = 0;
Ralf Baechleafc48412005-10-31 00:30:39 +0000225 return 0;
Ralf Baechle67e2ccc2007-02-22 14:19:48 +0000226
227out_fail:
228 channel_wqs[index].in_open--;
229
230 return ret;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000231}
232
Ralf Baechle26009902006-04-05 09:45:45 +0100233int rtlx_release(int index)
Ralf Baechlee01402b2005-07-14 15:57:16 +0000234{
Ralf Baechle26009902006-04-05 09:45:45 +0100235 rtlx->channel[index].lx_state = RTLX_STATE_UNUSED;
Ralf Baechleafc48412005-10-31 00:30:39 +0000236 return 0;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000237}
238
Ralf Baechle26009902006-04-05 09:45:45 +0100239unsigned int rtlx_read_poll(int index, int can_sleep)
Ralf Baechlee01402b2005-07-14 15:57:16 +0000240{
Ralf Baechle26009902006-04-05 09:45:45 +0100241 struct rtlx_channel *chan;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000242
Ralf Baechle26009902006-04-05 09:45:45 +0100243 if (rtlx == NULL)
244 return 0;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000245
Ralf Baechle26009902006-04-05 09:45:45 +0100246 chan = &rtlx->channel[index];
Ralf Baechlee01402b2005-07-14 15:57:16 +0000247
248 /* data available to read? */
Ralf Baechle26009902006-04-05 09:45:45 +0100249 if (chan->lx_read == chan->lx_write) {
250 if (can_sleep) {
Ralf Baechle67e2ccc2007-02-22 14:19:48 +0000251 int ret = 0;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000252
Ralf Baechle67e2ccc2007-02-22 14:19:48 +0000253 __wait_event_interruptible(channel_wqs[index].lx_queue,
254 chan->lx_read != chan->lx_write || sp_stopping,
255 ret);
256 if (ret)
257 return ret;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000258
Ralf Baechle67e2ccc2007-02-22 14:19:48 +0000259 if (sp_stopping)
260 return 0;
261 } else
Ralf Baechle26009902006-04-05 09:45:45 +0100262 return 0;
263 }
264
265 return (chan->lx_write + chan->buffer_size - chan->lx_read)
266 % chan->buffer_size;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000267}
268
Ralf Baechle26009902006-04-05 09:45:45 +0100269static inline int write_spacefree(int read, int write, int size)
Ralf Baechlee01402b2005-07-14 15:57:16 +0000270{
Ralf Baechle26009902006-04-05 09:45:45 +0100271 if (read == write) {
272 /*
273 * Never fill the buffer completely, so indexes are always
274 * equal if empty and only empty, or !equal if data available
275 */
276 return size - 1;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000277 }
278
Ralf Baechle26009902006-04-05 09:45:45 +0100279 return ((read + size - write) % size) - 1;
280}
281
282unsigned int rtlx_write_poll(int index)
283{
284 struct rtlx_channel *chan = &rtlx->channel[index];
285 return write_spacefree(chan->rt_read, chan->rt_write, chan->buffer_size);
286}
287
288static inline void copy_to(void *dst, void *src, size_t count, int user)
289{
290 if (user)
291 copy_to_user(dst, src, count);
292 else
293 memcpy(dst, src, count);
294}
295
296static inline void copy_from(void *dst, void *src, size_t count, int user)
297{
298 if (user)
299 copy_from_user(dst, src, count);
300 else
301 memcpy(dst, src, count);
302}
303
304ssize_t rtlx_read(int index, void *buff, size_t count, int user)
305{
306 size_t fl = 0L;
307 struct rtlx_channel *lx;
308
309 if (rtlx == NULL)
310 return -ENOSYS;
311
312 lx = &rtlx->channel[index];
313
Ralf Baechlee01402b2005-07-14 15:57:16 +0000314 /* find out how much in total */
Ralf Baechleafc48412005-10-31 00:30:39 +0000315 count = min(count,
Ralf Baechle26009902006-04-05 09:45:45 +0100316 (size_t)(lx->lx_write + lx->buffer_size - lx->lx_read)
317 % lx->buffer_size);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000318
319 /* then how much from the read pointer onwards */
Ralf Baechle26009902006-04-05 09:45:45 +0100320 fl = min( count, (size_t)lx->buffer_size - lx->lx_read);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000321
Ralf Baechle26009902006-04-05 09:45:45 +0100322 copy_to(buff, &lx->lx_buffer[lx->lx_read], fl, user);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000323
324 /* and if there is anything left at the beginning of the buffer */
Ralf Baechle26009902006-04-05 09:45:45 +0100325 if ( count - fl )
326 copy_to (buff + fl, lx->lx_buffer, count - fl, user);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000327
328 /* update the index */
329 lx->lx_read += count;
330 lx->lx_read %= lx->buffer_size;
331
Ralf Baechleafc48412005-10-31 00:30:39 +0000332 return count;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000333}
334
Ralf Baechle26009902006-04-05 09:45:45 +0100335ssize_t rtlx_write(int index, void *buffer, size_t count, int user)
Ralf Baechlee01402b2005-07-14 15:57:16 +0000336{
Ralf Baechlee01402b2005-07-14 15:57:16 +0000337 struct rtlx_channel *rt;
338 size_t fl;
Ralf Baechle26009902006-04-05 09:45:45 +0100339
340 if (rtlx == NULL)
341 return(-ENOSYS);
342
343 rt = &rtlx->channel[index];
344
345 /* total number of bytes to copy */
346 count = min(count,
347 (size_t)write_spacefree(rt->rt_read, rt->rt_write,
348 rt->buffer_size));
349
350 /* first bit from write pointer to the end of the buffer, or count */
351 fl = min(count, (size_t) rt->buffer_size - rt->rt_write);
352
353 copy_from (&rt->rt_buffer[rt->rt_write], buffer, fl, user);
354
355 /* if there's any left copy to the beginning of the buffer */
356 if( count - fl )
357 copy_from (rt->rt_buffer, buffer + fl, count - fl, user);
358
359 rt->rt_write += count;
360 rt->rt_write %= rt->buffer_size;
361
362 return(count);
363}
364
365
366static int file_open(struct inode *inode, struct file *filp)
367{
Ralf Baechle79e55bc2006-04-24 17:15:10 +0100368 int minor = iminor(inode);
Ralf Baechle26009902006-04-05 09:45:45 +0100369
370 return rtlx_open(minor, (filp->f_flags & O_NONBLOCK) ? 0 : 1);
371}
372
373static int file_release(struct inode *inode, struct file *filp)
374{
Ralf Baechle79e55bc2006-04-24 17:15:10 +0100375 int minor = iminor(inode);
Ralf Baechle26009902006-04-05 09:45:45 +0100376
377 return rtlx_release(minor);
378}
379
380static unsigned int file_poll(struct file *file, poll_table * wait)
381{
382 int minor;
383 unsigned int mask = 0;
384
Josef Sipek1b04fe92006-12-08 02:37:20 -0800385 minor = iminor(file->f_path.dentry->d_inode);
Ralf Baechle26009902006-04-05 09:45:45 +0100386
387 poll_wait(file, &channel_wqs[minor].rt_queue, wait);
388 poll_wait(file, &channel_wqs[minor].lx_queue, wait);
389
390 if (rtlx == NULL)
391 return 0;
392
393 /* data available to read? */
394 if (rtlx_read_poll(minor, 0))
395 mask |= POLLIN | POLLRDNORM;
396
397 /* space to write */
398 if (rtlx_write_poll(minor))
399 mask |= POLLOUT | POLLWRNORM;
400
401 return mask;
402}
403
404static ssize_t file_read(struct file *file, char __user * buffer, size_t count,
405 loff_t * ppos)
406{
Josef Sipek1b04fe92006-12-08 02:37:20 -0800407 int minor = iminor(file->f_path.dentry->d_inode);
Ralf Baechle26009902006-04-05 09:45:45 +0100408
409 /* data available? */
410 if (!rtlx_read_poll(minor, (file->f_flags & O_NONBLOCK) ? 0 : 1)) {
411 return 0; // -EAGAIN makes cat whinge
412 }
413
414 return rtlx_read(minor, buffer, count, 1);
415}
416
417static ssize_t file_write(struct file *file, const char __user * buffer,
418 size_t count, loff_t * ppos)
419{
420 int minor;
421 struct rtlx_channel *rt;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000422
Josef Sipek1b04fe92006-12-08 02:37:20 -0800423 minor = iminor(file->f_path.dentry->d_inode);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000424 rt = &rtlx->channel[minor];
425
426 /* any space left... */
Ralf Baechle26009902006-04-05 09:45:45 +0100427 if (!rtlx_write_poll(minor)) {
Ralf Baechle67e2ccc2007-02-22 14:19:48 +0000428 int ret = 0;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000429
430 if (file->f_flags & O_NONBLOCK)
Ralf Baechleafc48412005-10-31 00:30:39 +0000431 return -EAGAIN;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000432
Ralf Baechle67e2ccc2007-02-22 14:19:48 +0000433 __wait_event_interruptible(channel_wqs[minor].rt_queue,
434 rtlx_write_poll(minor),
435 ret);
436 if (ret)
437 return ret;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000438 }
439
Ralf Baechle26009902006-04-05 09:45:45 +0100440 return rtlx_write(minor, (void *)buffer, count, 1);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000441}
442
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -0800443static const struct file_operations rtlx_fops = {
Ralf Baechle26009902006-04-05 09:45:45 +0100444 .owner = THIS_MODULE,
445 .open = file_open,
446 .release = file_release,
447 .write = file_write,
448 .read = file_read,
449 .poll = file_poll
Ralf Baechlee01402b2005-07-14 15:57:16 +0000450};
451
Ralf Baechle26009902006-04-05 09:45:45 +0100452static struct irqaction rtlx_irq = {
453 .handler = rtlx_interrupt,
Thomas Gleixnerf40298f2006-07-01 19:29:20 -0700454 .flags = IRQF_DISABLED,
Ralf Baechle26009902006-04-05 09:45:45 +0100455 .name = "RTLX",
456};
457
Atsushi Nemoto97dcb822007-01-08 02:14:29 +0900458static int rtlx_irq_num = MIPS_CPU_IRQ_BASE + MIPS_CPU_RTLX_IRQ;
Ralf Baechle26009902006-04-05 09:45:45 +0100459
Ralf Baechleafc48412005-10-31 00:30:39 +0000460static char register_chrdev_failed[] __initdata =
461 KERN_ERR "rtlx_module_init: unable to register device\n";
462
Ralf Baechle26009902006-04-05 09:45:45 +0100463static int rtlx_module_init(void)
Ralf Baechlee01402b2005-07-14 15:57:16 +0000464{
Ralf Baechlebb3d7c72007-02-07 15:36:56 +0000465 struct device *dev;
466 int i, err;
Ralf Baechle26009902006-04-05 09:45:45 +0100467
Ralf Baechleafc48412005-10-31 00:30:39 +0000468 major = register_chrdev(0, module_name, &rtlx_fops);
469 if (major < 0) {
470 printk(register_chrdev_failed);
471 return major;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000472 }
473
Ralf Baechle26009902006-04-05 09:45:45 +0100474 /* initialise the wait queues */
475 for (i = 0; i < RTLX_CHANNELS; i++) {
476 init_waitqueue_head(&channel_wqs[i].rt_queue);
477 init_waitqueue_head(&channel_wqs[i].lx_queue);
478 channel_wqs[i].in_open = 0;
Ralf Baechlebb3d7c72007-02-07 15:36:56 +0000479
480 dev = device_create(mt_class, NULL, MKDEV(major, i),
481 "%s%d", module_name, i);
482 if (IS_ERR(dev)) {
483 err = PTR_ERR(dev);
484 goto out_chrdev;
485 }
Ralf Baechle26009902006-04-05 09:45:45 +0100486 }
487
488 /* set up notifiers */
489 notify.start = starting;
490 notify.stop = stopping;
491 vpe_notify(RTLX_TARG_VPE, &notify);
492
493 if (cpu_has_vint)
494 set_vi_handler(MIPS_CPU_RTLX_IRQ, rtlx_dispatch);
495
496 rtlx_irq.dev_id = rtlx;
497 setup_irq(rtlx_irq_num, &rtlx_irq);
498
Ralf Baechleafc48412005-10-31 00:30:39 +0000499 return 0;
Ralf Baechlebb3d7c72007-02-07 15:36:56 +0000500
501out_chrdev:
502 for (i = 0; i < RTLX_CHANNELS; i++)
503 device_destroy(mt_class, MKDEV(major, i));
504
505 return err;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000506}
507
Ralf Baechleafc48412005-10-31 00:30:39 +0000508static void __exit rtlx_module_exit(void)
Ralf Baechlee01402b2005-07-14 15:57:16 +0000509{
Ralf Baechlebb3d7c72007-02-07 15:36:56 +0000510 int i;
511
512 for (i = 0; i < RTLX_CHANNELS; i++)
513 device_destroy(mt_class, MKDEV(major, i));
514
Ralf Baechlee01402b2005-07-14 15:57:16 +0000515 unregister_chrdev(major, module_name);
516}
517
518module_init(rtlx_module_init);
519module_exit(rtlx_module_exit);
Ralf Baechleafc48412005-10-31 00:30:39 +0000520
Ralf Baechlee01402b2005-07-14 15:57:16 +0000521MODULE_DESCRIPTION("MIPS RTLX");
Ralf Baechle26009902006-04-05 09:45:45 +0100522MODULE_AUTHOR("Elizabeth Oldham, MIPS Technologies, Inc.");
Ralf Baechlee01402b2005-07-14 15:57:16 +0000523MODULE_LICENSE("GPL");