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