blob: 7a8683ab6fdedc32ba70a7351377576be6d19d72 [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 Baechlec4c40182007-02-23 13:40:45 +000056 atomic_t 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;
Ralf Baechlec4c40182007-02-23 13:40:45 +0000151 enum rtlx_state state;
Ralf Baechle67e2ccc2007-02-22 14:19:48 +0000152 int ret = 0;
Ralf Baechle26009902006-04-05 09:45:45 +0100153
154 if (index >= RTLX_CHANNELS) {
155 printk(KERN_DEBUG "rtlx_open index out of range\n");
156 return -ENOSYS;
157 }
158
Ralf Baechlec4c40182007-02-23 13:40:45 +0000159 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;
Ralf Baechle26009902006-04-05 09:45:45 +0100164 }
165
Ralf Baechlee01402b2005-07-14 15:57:16 +0000166 if (rtlx == NULL) {
Ralf Baechlee01402b2005-07-14 15:57:16 +0000167 if( (p = vpe_get_shared(RTLX_TARG_VPE)) == NULL) {
Ralf Baechle26009902006-04-05 09:45:45 +0100168 if (can_sleep) {
Ralf Baechle67e2ccc2007-02-22 14:19:48 +0000169 int ret = 0;
Ralf Baechle26009902006-04-05 09:45:45 +0100170
Ralf Baechle67e2ccc2007-02-22 14:19:48 +0000171 __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;
Ralf Baechle26009902006-04-05 09:45:45 +0100176 } else {
Ralf Baechlec4c40182007-02-23 13:40:45 +0000177 printk(KERN_DEBUG "No SP program loaded, and device "
Ralf Baechle26009902006-04-05 09:45:45 +0100178 "opened with O_NONBLOCK\n");
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");
Ralf Baechle67e2ccc2007-02-22 14:19:48 +0000196 ret = -ENOSYS;
197 goto out_fail;
Ralf Baechle26009902006-04-05 09:45:45 +0100198 }
Ralf Baechlee01402b2005-07-14 15:57:16 +0000199 }
200
Ralf Baechle26009902006-04-05 09:45:45 +0100201 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);
Ralf Baechle67e2ccc2007-02-22 14:19:48 +0000204 ret = -ENOSYS;
205 goto out_fail;
Ralf Baechle26009902006-04-05 09:45:45 +0100206 }
207
Ralf Baechlec4c40182007-02-23 13:40:45 +0000208 if ((ret = rtlx_init(*p)) < 0)
209 goto out_ret;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000210 }
211
Ralf Baechle26009902006-04-05 09:45:45 +0100212 chan = &rtlx->channel[index];
Ralf Baechlee01402b2005-07-14 15:57:16 +0000213
Ralf Baechlec4c40182007-02-23 13:40:45 +0000214 state = xchg(&chan->lx_state, RTLX_STATE_OPENED);
215 if (state == RTLX_STATE_OPENED) {
216 ret = -EBUSY;
217 goto out_fail;
218 }
Ralf Baechle67e2ccc2007-02-22 14:19:48 +0000219
220out_fail:
Ralf Baechlec4c40182007-02-23 13:40:45 +0000221 smp_mb();
222 atomic_dec(&channel_wqs[index].in_open);
223 smp_mb();
Ralf Baechle67e2ccc2007-02-22 14:19:48 +0000224
Ralf Baechlec4c40182007-02-23 13:40:45 +0000225out_ret:
Ralf Baechle67e2ccc2007-02-22 14:19:48 +0000226 return ret;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000227}
228
Ralf Baechle26009902006-04-05 09:45:45 +0100229int rtlx_release(int index)
Ralf Baechlee01402b2005-07-14 15:57:16 +0000230{
Ralf Baechle26009902006-04-05 09:45:45 +0100231 rtlx->channel[index].lx_state = RTLX_STATE_UNUSED;
Ralf Baechleafc48412005-10-31 00:30:39 +0000232 return 0;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000233}
234
Ralf Baechle26009902006-04-05 09:45:45 +0100235unsigned int rtlx_read_poll(int index, int can_sleep)
Ralf Baechlee01402b2005-07-14 15:57:16 +0000236{
Ralf Baechle26009902006-04-05 09:45:45 +0100237 struct rtlx_channel *chan;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000238
Ralf Baechle26009902006-04-05 09:45:45 +0100239 if (rtlx == NULL)
240 return 0;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000241
Ralf Baechle26009902006-04-05 09:45:45 +0100242 chan = &rtlx->channel[index];
Ralf Baechlee01402b2005-07-14 15:57:16 +0000243
244 /* data available to read? */
Ralf Baechle26009902006-04-05 09:45:45 +0100245 if (chan->lx_read == chan->lx_write) {
246 if (can_sleep) {
Ralf Baechle67e2ccc2007-02-22 14:19:48 +0000247 int ret = 0;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000248
Ralf Baechle67e2ccc2007-02-22 14:19:48 +0000249 __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;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000254
Ralf Baechle67e2ccc2007-02-22 14:19:48 +0000255 if (sp_stopping)
256 return 0;
257 } else
Ralf Baechle26009902006-04-05 09:45:45 +0100258 return 0;
259 }
260
261 return (chan->lx_write + chan->buffer_size - chan->lx_read)
262 % chan->buffer_size;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000263}
264
Ralf Baechle26009902006-04-05 09:45:45 +0100265static inline int write_spacefree(int read, int write, int size)
Ralf Baechlee01402b2005-07-14 15:57:16 +0000266{
Ralf Baechle26009902006-04-05 09:45:45 +0100267 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;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000273 }
274
Ralf Baechle26009902006-04-05 09:45:45 +0100275 return ((read + size - write) % size) - 1;
276}
277
278unsigned 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
284static 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
292static 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
300ssize_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
Ralf Baechlee01402b2005-07-14 15:57:16 +0000310 /* find out how much in total */
Ralf Baechleafc48412005-10-31 00:30:39 +0000311 count = min(count,
Ralf Baechle26009902006-04-05 09:45:45 +0100312 (size_t)(lx->lx_write + lx->buffer_size - lx->lx_read)
313 % lx->buffer_size);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000314
315 /* then how much from the read pointer onwards */
Ralf Baechle26009902006-04-05 09:45:45 +0100316 fl = min( count, (size_t)lx->buffer_size - lx->lx_read);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000317
Ralf Baechle26009902006-04-05 09:45:45 +0100318 copy_to(buff, &lx->lx_buffer[lx->lx_read], fl, user);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000319
320 /* and if there is anything left at the beginning of the buffer */
Ralf Baechle26009902006-04-05 09:45:45 +0100321 if ( count - fl )
322 copy_to (buff + fl, lx->lx_buffer, count - fl, user);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000323
324 /* update the index */
325 lx->lx_read += count;
326 lx->lx_read %= lx->buffer_size;
327
Ralf Baechleafc48412005-10-31 00:30:39 +0000328 return count;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000329}
330
Ralf Baechle26009902006-04-05 09:45:45 +0100331ssize_t rtlx_write(int index, void *buffer, size_t count, int user)
Ralf Baechlee01402b2005-07-14 15:57:16 +0000332{
Ralf Baechlee01402b2005-07-14 15:57:16 +0000333 struct rtlx_channel *rt;
334 size_t fl;
Ralf Baechle26009902006-04-05 09:45:45 +0100335
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
362static int file_open(struct inode *inode, struct file *filp)
363{
Ralf Baechle79e55bc2006-04-24 17:15:10 +0100364 int minor = iminor(inode);
Ralf Baechle26009902006-04-05 09:45:45 +0100365
366 return rtlx_open(minor, (filp->f_flags & O_NONBLOCK) ? 0 : 1);
367}
368
369static int file_release(struct inode *inode, struct file *filp)
370{
Ralf Baechle79e55bc2006-04-24 17:15:10 +0100371 int minor = iminor(inode);
Ralf Baechle26009902006-04-05 09:45:45 +0100372
373 return rtlx_release(minor);
374}
375
376static unsigned int file_poll(struct file *file, poll_table * wait)
377{
378 int minor;
379 unsigned int mask = 0;
380
Josef Sipek1b04fe92006-12-08 02:37:20 -0800381 minor = iminor(file->f_path.dentry->d_inode);
Ralf Baechle26009902006-04-05 09:45:45 +0100382
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
400static ssize_t file_read(struct file *file, char __user * buffer, size_t count,
401 loff_t * ppos)
402{
Josef Sipek1b04fe92006-12-08 02:37:20 -0800403 int minor = iminor(file->f_path.dentry->d_inode);
Ralf Baechle26009902006-04-05 09:45:45 +0100404
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
413static 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;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000418
Josef Sipek1b04fe92006-12-08 02:37:20 -0800419 minor = iminor(file->f_path.dentry->d_inode);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000420 rt = &rtlx->channel[minor];
421
422 /* any space left... */
Ralf Baechle26009902006-04-05 09:45:45 +0100423 if (!rtlx_write_poll(minor)) {
Ralf Baechle67e2ccc2007-02-22 14:19:48 +0000424 int ret = 0;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000425
426 if (file->f_flags & O_NONBLOCK)
Ralf Baechleafc48412005-10-31 00:30:39 +0000427 return -EAGAIN;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000428
Ralf Baechle67e2ccc2007-02-22 14:19:48 +0000429 __wait_event_interruptible(channel_wqs[minor].rt_queue,
430 rtlx_write_poll(minor),
431 ret);
432 if (ret)
433 return ret;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000434 }
435
Ralf Baechle26009902006-04-05 09:45:45 +0100436 return rtlx_write(minor, (void *)buffer, count, 1);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000437}
438
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -0800439static const struct file_operations rtlx_fops = {
Ralf Baechle26009902006-04-05 09:45:45 +0100440 .owner = THIS_MODULE,
441 .open = file_open,
442 .release = file_release,
443 .write = file_write,
444 .read = file_read,
445 .poll = file_poll
Ralf Baechlee01402b2005-07-14 15:57:16 +0000446};
447
Ralf Baechle26009902006-04-05 09:45:45 +0100448static struct irqaction rtlx_irq = {
449 .handler = rtlx_interrupt,
Thomas Gleixnerf40298f2006-07-01 19:29:20 -0700450 .flags = IRQF_DISABLED,
Ralf Baechle26009902006-04-05 09:45:45 +0100451 .name = "RTLX",
452};
453
Atsushi Nemoto97dcb822007-01-08 02:14:29 +0900454static int rtlx_irq_num = MIPS_CPU_IRQ_BASE + MIPS_CPU_RTLX_IRQ;
Ralf Baechle26009902006-04-05 09:45:45 +0100455
Ralf Baechleafc48412005-10-31 00:30:39 +0000456static char register_chrdev_failed[] __initdata =
457 KERN_ERR "rtlx_module_init: unable to register device\n";
458
Ralf Baechle26009902006-04-05 09:45:45 +0100459static int rtlx_module_init(void)
Ralf Baechlee01402b2005-07-14 15:57:16 +0000460{
Ralf Baechlebb3d7c72007-02-07 15:36:56 +0000461 struct device *dev;
462 int i, err;
Ralf Baechle26009902006-04-05 09:45:45 +0100463
Ralf Baechleafc48412005-10-31 00:30:39 +0000464 major = register_chrdev(0, module_name, &rtlx_fops);
465 if (major < 0) {
466 printk(register_chrdev_failed);
467 return major;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000468 }
469
Ralf Baechle26009902006-04-05 09:45:45 +0100470 /* 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);
Ralf Baechlec4c40182007-02-23 13:40:45 +0000474 atomic_set(&channel_wqs[i].in_open, 0);
Ralf Baechlebb3d7c72007-02-07 15:36:56 +0000475
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 }
Ralf Baechle26009902006-04-05 09:45:45 +0100482 }
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
Ralf Baechleafc48412005-10-31 00:30:39 +0000495 return 0;
Ralf Baechlebb3d7c72007-02-07 15:36:56 +0000496
497out_chrdev:
498 for (i = 0; i < RTLX_CHANNELS; i++)
499 device_destroy(mt_class, MKDEV(major, i));
500
501 return err;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000502}
503
Ralf Baechleafc48412005-10-31 00:30:39 +0000504static void __exit rtlx_module_exit(void)
Ralf Baechlee01402b2005-07-14 15:57:16 +0000505{
Ralf Baechlebb3d7c72007-02-07 15:36:56 +0000506 int i;
507
508 for (i = 0; i < RTLX_CHANNELS; i++)
509 device_destroy(mt_class, MKDEV(major, i));
510
Ralf Baechlee01402b2005-07-14 15:57:16 +0000511 unregister_chrdev(major, module_name);
512}
513
514module_init(rtlx_module_init);
515module_exit(rtlx_module_exit);
Ralf Baechleafc48412005-10-31 00:30:39 +0000516
Ralf Baechlee01402b2005-07-14 15:57:16 +0000517MODULE_DESCRIPTION("MIPS RTLX");
Ralf Baechle26009902006-04-05 09:45:45 +0100518MODULE_AUTHOR("Elizabeth Oldham, MIPS Technologies, Inc.");
Ralf Baechlee01402b2005-07-14 15:57:16 +0000519MODULE_LICENSE("GPL");