blob: 525d6b00cba2346d4ede2cf0a3c440bfeed4ffc3 [file] [log] [blame]
Arnd Bergmann67207b92005-11-15 15:53:48 -05001/*
2 * SPU file system -- file contents
3 *
4 * (C) Copyright IBM Deutschland Entwicklung GmbH 2005
5 *
6 * Author: Arnd Bergmann <arndb@de.ibm.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2, or (at your option)
11 * any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
Arnd Bergmanna33a7d72006-03-23 00:00:11 +010023#undef DEBUG
24
Arnd Bergmann67207b92005-11-15 15:53:48 -050025#include <linux/fs.h>
26#include <linux/ioctl.h>
27#include <linux/module.h>
Arnd Bergmannd88cfff2005-12-05 22:52:22 -050028#include <linux/pagemap.h>
Arnd Bergmann67207b92005-11-15 15:53:48 -050029#include <linux/poll.h>
Arnd Bergmann51104592005-12-05 22:52:25 -050030#include <linux/ptrace.h>
Arnd Bergmann67207b92005-11-15 15:53:48 -050031
32#include <asm/io.h>
33#include <asm/semaphore.h>
34#include <asm/spu.h>
Dwayne Grant McConnellb9e3bd72006-11-20 18:44:58 +010035#include <asm/spu_info.h>
Arnd Bergmann67207b92005-11-15 15:53:48 -050036#include <asm/uaccess.h>
37
38#include "spufs.h"
39
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +020040#define SPUFS_MMAP_4K (PAGE_SIZE == 0x1000)
41
Arnd Bergmann67207b92005-11-15 15:53:48 -050042static int
43spufs_mem_open(struct inode *inode, struct file *file)
44{
45 struct spufs_inode_info *i = SPUFS_I(inode);
Mark Nutter6df10a82006-03-23 00:00:12 +010046 struct spu_context *ctx = i->i_ctx;
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +020047
48 spin_lock(&ctx->mapping_lock);
Mark Nutter6df10a82006-03-23 00:00:12 +010049 file->private_data = ctx;
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +020050 if (!i->i_openers++)
51 ctx->local_store = inode->i_mapping;
52 spin_unlock(&ctx->mapping_lock);
53 smp_wmb();
54 return 0;
55}
56
57static int
58spufs_mem_release(struct inode *inode, struct file *file)
59{
60 struct spufs_inode_info *i = SPUFS_I(inode);
61 struct spu_context *ctx = i->i_ctx;
62
63 spin_lock(&ctx->mapping_lock);
64 if (!--i->i_openers)
65 ctx->local_store = NULL;
66 spin_unlock(&ctx->mapping_lock);
Benjamin Herrenschmidt17e0e272007-02-13 11:46:08 +110067 smp_wmb();
Arnd Bergmann67207b92005-11-15 15:53:48 -050068 return 0;
69}
70
71static ssize_t
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +010072__spufs_mem_read(struct spu_context *ctx, char __user *buffer,
73 size_t size, loff_t *pos)
74{
75 char *local_store = ctx->ops->get_ls(ctx);
76 return simple_read_from_buffer(buffer, size, pos, local_store,
77 LS_SIZE);
78}
79
80static ssize_t
Arnd Bergmann67207b92005-11-15 15:53:48 -050081spufs_mem_read(struct file *file, char __user *buffer,
82 size_t size, loff_t *pos)
83{
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +010084 struct spu_context *ctx = file->private_data;
Arnd Bergmannaa0ed2b2007-03-10 00:05:35 +010085 ssize_t ret;
Arnd Bergmann67207b92005-11-15 15:53:48 -050086
Arnd Bergmann8b3d6662005-11-15 15:53:52 -050087 spu_acquire(ctx);
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +010088 ret = __spufs_mem_read(ctx, buffer, size, pos);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -050089 spu_release(ctx);
Arnd Bergmann67207b92005-11-15 15:53:48 -050090 return ret;
91}
92
93static ssize_t
94spufs_mem_write(struct file *file, const char __user *buffer,
Arnd Bergmannaa0ed2b2007-03-10 00:05:35 +010095 size_t size, loff_t *ppos)
Arnd Bergmann67207b92005-11-15 15:53:48 -050096{
97 struct spu_context *ctx = file->private_data;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -050098 char *local_store;
Arnd Bergmannaa0ed2b2007-03-10 00:05:35 +010099 loff_t pos = *ppos;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500100 int ret;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500101
Arnd Bergmannaa0ed2b2007-03-10 00:05:35 +0100102 if (pos < 0)
103 return -EINVAL;
104 if (pos > LS_SIZE)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500105 return -EFBIG;
Arnd Bergmannaa0ed2b2007-03-10 00:05:35 +0100106 if (size > LS_SIZE - pos)
107 size = LS_SIZE - pos;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500108
109 spu_acquire(ctx);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500110 local_store = ctx->ops->get_ls(ctx);
Arnd Bergmannaa0ed2b2007-03-10 00:05:35 +0100111 ret = copy_from_user(local_store + pos, buffer, size);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500112 spu_release(ctx);
Arnd Bergmannaa0ed2b2007-03-10 00:05:35 +0100113
114 if (ret)
115 return -EFAULT;
116 *ppos = pos + size;
117 return size;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500118}
119
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100120static unsigned long spufs_mem_mmap_nopfn(struct vm_area_struct *vma,
121 unsigned long address)
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500122{
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500123 struct spu_context *ctx = vma->vm_file->private_data;
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100124 unsigned long pfn, offset = address - vma->vm_start;
125
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500126 offset += vma->vm_pgoff << PAGE_SHIFT;
127
Masato Noguchi128b8542007-02-13 21:54:30 +0100128 if (offset >= LS_SIZE)
129 return NOPFN_SIGBUS;
130
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500131 spu_acquire(ctx);
132
Arnd Bergmannac91cb82006-10-04 17:26:16 +0200133 if (ctx->state == SPU_STATE_SAVED) {
134 vma->vm_page_prot = __pgprot(pgprot_val(vma->vm_page_prot)
Arnd Bergmann932f535d2006-11-20 18:45:06 +0100135 & ~_PAGE_NO_CACHE);
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100136 pfn = vmalloc_to_pfn(ctx->csa.lscsa->ls + offset);
Arnd Bergmannac91cb82006-10-04 17:26:16 +0200137 } else {
138 vma->vm_page_prot = __pgprot(pgprot_val(vma->vm_page_prot)
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100139 | _PAGE_NO_CACHE);
140 pfn = (ctx->spu->local_store_phys + offset) >> PAGE_SHIFT;
Arnd Bergmannac91cb82006-10-04 17:26:16 +0200141 }
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100142 vm_insert_pfn(vma, address, pfn);
143
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500144 spu_release(ctx);
145
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100146 return NOPFN_REFAULT;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500147}
148
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100149
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500150static struct vm_operations_struct spufs_mem_mmap_vmops = {
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100151 .nopfn = spufs_mem_mmap_nopfn,
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500152};
153
Arnd Bergmann67207b92005-11-15 15:53:48 -0500154static int
155spufs_mem_mmap(struct file *file, struct vm_area_struct *vma)
156{
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500157 if (!(vma->vm_flags & VM_SHARED))
158 return -EINVAL;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500159
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100160 vma->vm_flags |= VM_IO | VM_PFNMAP;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500161 vma->vm_page_prot = __pgprot(pgprot_val(vma->vm_page_prot)
162 | _PAGE_NO_CACHE);
163
164 vma->vm_ops = &spufs_mem_mmap_vmops;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500165 return 0;
166}
167
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -0800168static const struct file_operations spufs_mem_fops = {
Arnd Bergmann67207b92005-11-15 15:53:48 -0500169 .open = spufs_mem_open,
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +0200170 .release = spufs_mem_release,
Arnd Bergmann67207b92005-11-15 15:53:48 -0500171 .read = spufs_mem_read,
172 .write = spufs_mem_write,
Arnd Bergmann67207b92005-11-15 15:53:48 -0500173 .llseek = generic_file_llseek,
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500174 .mmap = spufs_mem_mmap,
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500175};
176
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100177static unsigned long spufs_ps_nopfn(struct vm_area_struct *vma,
Mark Nutter6df10a82006-03-23 00:00:12 +0100178 unsigned long address,
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100179 unsigned long ps_offs,
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +0200180 unsigned long ps_size)
Mark Nutter6df10a82006-03-23 00:00:12 +0100181{
Mark Nutter6df10a82006-03-23 00:00:12 +0100182 struct spu_context *ctx = vma->vm_file->private_data;
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100183 unsigned long area, offset = address - vma->vm_start;
Mark Nutter6df10a82006-03-23 00:00:12 +0100184 int ret;
185
186 offset += vma->vm_pgoff << PAGE_SHIFT;
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +0200187 if (offset >= ps_size)
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100188 return NOPFN_SIGBUS;
Mark Nutter6df10a82006-03-23 00:00:12 +0100189
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100190 /* error here usually means a signal.. we might want to test
191 * the error code more precisely though
192 */
Christoph Hellwig26bec672007-02-13 21:54:24 +0100193 ret = spu_acquire_runnable(ctx, 0);
Mark Nutter6df10a82006-03-23 00:00:12 +0100194 if (ret)
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100195 return NOPFN_REFAULT;
Mark Nutter6df10a82006-03-23 00:00:12 +0100196
197 area = ctx->spu->problem_phys + ps_offs;
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100198 vm_insert_pfn(vma, address, (area + offset) >> PAGE_SHIFT);
Mark Nutter6df10a82006-03-23 00:00:12 +0100199 spu_release(ctx);
200
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100201 return NOPFN_REFAULT;
Mark Nutter6df10a82006-03-23 00:00:12 +0100202}
203
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +0200204#if SPUFS_MMAP_4K
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100205static unsigned long spufs_cntl_mmap_nopfn(struct vm_area_struct *vma,
206 unsigned long address)
Mark Nutter6df10a82006-03-23 00:00:12 +0100207{
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100208 return spufs_ps_nopfn(vma, address, 0x4000, 0x1000);
Mark Nutter6df10a82006-03-23 00:00:12 +0100209}
210
211static struct vm_operations_struct spufs_cntl_mmap_vmops = {
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100212 .nopfn = spufs_cntl_mmap_nopfn,
Mark Nutter6df10a82006-03-23 00:00:12 +0100213};
214
215/*
216 * mmap support for problem state control area [0x4000 - 0x4fff].
Mark Nutter6df10a82006-03-23 00:00:12 +0100217 */
218static int spufs_cntl_mmap(struct file *file, struct vm_area_struct *vma)
219{
220 if (!(vma->vm_flags & VM_SHARED))
221 return -EINVAL;
222
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100223 vma->vm_flags |= VM_IO | VM_PFNMAP;
Mark Nutter6df10a82006-03-23 00:00:12 +0100224 vma->vm_page_prot = __pgprot(pgprot_val(vma->vm_page_prot)
Benjamin Herrenschmidt23cc7702006-06-23 20:57:47 +0200225 | _PAGE_NO_CACHE | _PAGE_GUARDED);
Mark Nutter6df10a82006-03-23 00:00:12 +0100226
227 vma->vm_ops = &spufs_cntl_mmap_vmops;
228 return 0;
229}
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +0200230#else /* SPUFS_MMAP_4K */
231#define spufs_cntl_mmap NULL
232#endif /* !SPUFS_MMAP_4K */
Mark Nutter6df10a82006-03-23 00:00:12 +0100233
Arnd Bergmanne1dbff22006-10-04 17:26:19 +0200234static u64 spufs_cntl_get(void *data)
235{
236 struct spu_context *ctx = data;
237 u64 val;
238
239 spu_acquire(ctx);
240 val = ctx->ops->status_read(ctx);
241 spu_release(ctx);
242
243 return val;
244}
245
246static void spufs_cntl_set(void *data, u64 val)
247{
248 struct spu_context *ctx = data;
249
250 spu_acquire(ctx);
251 ctx->ops->runcntl_write(ctx, val);
252 spu_release(ctx);
253}
254
Mark Nutter6df10a82006-03-23 00:00:12 +0100255static int spufs_cntl_open(struct inode *inode, struct file *file)
256{
257 struct spufs_inode_info *i = SPUFS_I(inode);
258 struct spu_context *ctx = i->i_ctx;
259
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +0200260 spin_lock(&ctx->mapping_lock);
Mark Nutter6df10a82006-03-23 00:00:12 +0100261 file->private_data = ctx;
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +0200262 if (!i->i_openers++)
263 ctx->cntl = inode->i_mapping;
264 spin_unlock(&ctx->mapping_lock);
Benjamin Herrenschmidt17e0e272007-02-13 11:46:08 +1100265 smp_wmb();
Arnd Bergmanne1dbff22006-10-04 17:26:19 +0200266 return simple_attr_open(inode, file, spufs_cntl_get,
267 spufs_cntl_set, "0x%08lx");
Mark Nutter6df10a82006-03-23 00:00:12 +0100268}
269
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +0200270static int
271spufs_cntl_release(struct inode *inode, struct file *file)
272{
273 struct spufs_inode_info *i = SPUFS_I(inode);
274 struct spu_context *ctx = i->i_ctx;
275
276 simple_attr_close(inode, file);
277
278 spin_lock(&ctx->mapping_lock);
279 if (!--i->i_openers)
280 ctx->cntl = NULL;
281 spin_unlock(&ctx->mapping_lock);
282 smp_wmb();
283 return 0;
284}
285
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -0800286static const struct file_operations spufs_cntl_fops = {
Mark Nutter6df10a82006-03-23 00:00:12 +0100287 .open = spufs_cntl_open,
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +0200288 .release = spufs_cntl_release,
Arnd Bergmanne1dbff22006-10-04 17:26:19 +0200289 .read = simple_attr_read,
290 .write = simple_attr_write,
Mark Nutter6df10a82006-03-23 00:00:12 +0100291 .mmap = spufs_cntl_mmap,
Mark Nutter6df10a82006-03-23 00:00:12 +0100292};
293
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500294static int
295spufs_regs_open(struct inode *inode, struct file *file)
296{
297 struct spufs_inode_info *i = SPUFS_I(inode);
298 file->private_data = i->i_ctx;
299 return 0;
300}
301
302static ssize_t
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +0100303__spufs_regs_read(struct spu_context *ctx, char __user *buffer,
304 size_t size, loff_t *pos)
305{
306 struct spu_lscsa *lscsa = ctx->csa.lscsa;
307 return simple_read_from_buffer(buffer, size, pos,
308 lscsa->gprs, sizeof lscsa->gprs);
309}
310
311static ssize_t
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500312spufs_regs_read(struct file *file, char __user *buffer,
313 size_t size, loff_t *pos)
314{
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500315 int ret;
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +0100316 struct spu_context *ctx = file->private_data;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500317
318 spu_acquire_saved(ctx);
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +0100319 ret = __spufs_regs_read(ctx, buffer, size, pos);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500320 spu_release(ctx);
321 return ret;
322}
323
324static ssize_t
325spufs_regs_write(struct file *file, const char __user *buffer,
326 size_t size, loff_t *pos)
327{
328 struct spu_context *ctx = file->private_data;
329 struct spu_lscsa *lscsa = ctx->csa.lscsa;
330 int ret;
331
332 size = min_t(ssize_t, sizeof lscsa->gprs - *pos, size);
333 if (size <= 0)
334 return -EFBIG;
335 *pos += size;
336
337 spu_acquire_saved(ctx);
338
339 ret = copy_from_user(lscsa->gprs + *pos - size,
340 buffer, size) ? -EFAULT : size;
341
342 spu_release(ctx);
343 return ret;
344}
345
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -0800346static const struct file_operations spufs_regs_fops = {
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500347 .open = spufs_regs_open,
348 .read = spufs_regs_read,
349 .write = spufs_regs_write,
350 .llseek = generic_file_llseek,
351};
352
353static ssize_t
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +0100354__spufs_fpcr_read(struct spu_context *ctx, char __user * buffer,
355 size_t size, loff_t * pos)
356{
357 struct spu_lscsa *lscsa = ctx->csa.lscsa;
358 return simple_read_from_buffer(buffer, size, pos,
359 &lscsa->fpcr, sizeof(lscsa->fpcr));
360}
361
362static ssize_t
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500363spufs_fpcr_read(struct file *file, char __user * buffer,
364 size_t size, loff_t * pos)
365{
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500366 int ret;
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +0100367 struct spu_context *ctx = file->private_data;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500368
369 spu_acquire_saved(ctx);
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +0100370 ret = __spufs_fpcr_read(ctx, buffer, size, pos);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500371 spu_release(ctx);
372 return ret;
373}
374
375static ssize_t
376spufs_fpcr_write(struct file *file, const char __user * buffer,
377 size_t size, loff_t * pos)
378{
379 struct spu_context *ctx = file->private_data;
380 struct spu_lscsa *lscsa = ctx->csa.lscsa;
381 int ret;
382
383 size = min_t(ssize_t, sizeof(lscsa->fpcr) - *pos, size);
384 if (size <= 0)
385 return -EFBIG;
386 *pos += size;
387
388 spu_acquire_saved(ctx);
389
390 ret = copy_from_user((char *)&lscsa->fpcr + *pos - size,
391 buffer, size) ? -EFAULT : size;
392
393 spu_release(ctx);
394 return ret;
395}
396
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -0800397static const struct file_operations spufs_fpcr_fops = {
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500398 .open = spufs_regs_open,
399 .read = spufs_fpcr_read,
400 .write = spufs_fpcr_write,
401 .llseek = generic_file_llseek,
Arnd Bergmann67207b92005-11-15 15:53:48 -0500402};
403
404/* generic open function for all pipe-like files */
405static int spufs_pipe_open(struct inode *inode, struct file *file)
406{
407 struct spufs_inode_info *i = SPUFS_I(inode);
408 file->private_data = i->i_ctx;
409
410 return nonseekable_open(inode, file);
411}
412
Arnd Bergmanncdcc89b2006-10-04 17:26:17 +0200413/*
414 * Read as many bytes from the mailbox as possible, until
415 * one of the conditions becomes true:
416 *
417 * - no more data available in the mailbox
418 * - end of the user provided buffer
419 * - end of the mapped area
420 */
Arnd Bergmann67207b92005-11-15 15:53:48 -0500421static ssize_t spufs_mbox_read(struct file *file, char __user *buf,
422 size_t len, loff_t *pos)
423{
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500424 struct spu_context *ctx = file->private_data;
Arnd Bergmanncdcc89b2006-10-04 17:26:17 +0200425 u32 mbox_data, __user *udata;
426 ssize_t count;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500427
428 if (len < 4)
429 return -EINVAL;
430
Arnd Bergmanncdcc89b2006-10-04 17:26:17 +0200431 if (!access_ok(VERIFY_WRITE, buf, len))
Arnd Bergmann67207b92005-11-15 15:53:48 -0500432 return -EFAULT;
433
Arnd Bergmanncdcc89b2006-10-04 17:26:17 +0200434 udata = (void __user *)buf;
435
436 spu_acquire(ctx);
Arnd Bergmann274cef52006-10-24 18:01:42 +0200437 for (count = 0; (count + 4) <= len; count += 4, udata++) {
Arnd Bergmanncdcc89b2006-10-04 17:26:17 +0200438 int ret;
439 ret = ctx->ops->mbox_read(ctx, &mbox_data);
440 if (ret == 0)
441 break;
442
443 /*
444 * at the end of the mapped area, we can fault
445 * but still need to return the data we have
446 * read successfully so far.
447 */
448 ret = __put_user(mbox_data, udata);
449 if (ret) {
450 if (!count)
451 count = -EFAULT;
452 break;
453 }
454 }
455 spu_release(ctx);
456
457 if (!count)
458 count = -EAGAIN;
459
460 return count;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500461}
462
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -0800463static const struct file_operations spufs_mbox_fops = {
Arnd Bergmann67207b92005-11-15 15:53:48 -0500464 .open = spufs_pipe_open,
465 .read = spufs_mbox_read,
466};
467
468static ssize_t spufs_mbox_stat_read(struct file *file, char __user *buf,
469 size_t len, loff_t *pos)
470{
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500471 struct spu_context *ctx = file->private_data;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500472 u32 mbox_stat;
473
474 if (len < 4)
475 return -EINVAL;
476
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500477 spu_acquire(ctx);
478
479 mbox_stat = ctx->ops->mbox_stat_read(ctx) & 0xff;
480
481 spu_release(ctx);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500482
483 if (copy_to_user(buf, &mbox_stat, sizeof mbox_stat))
484 return -EFAULT;
485
486 return 4;
487}
488
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -0800489static const struct file_operations spufs_mbox_stat_fops = {
Arnd Bergmann67207b92005-11-15 15:53:48 -0500490 .open = spufs_pipe_open,
491 .read = spufs_mbox_stat_read,
492};
493
494/* low-level ibox access function */
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500495size_t spu_ibox_read(struct spu_context *ctx, u32 *data)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500496{
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500497 return ctx->ops->ibox_read(ctx, data);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500498}
Arnd Bergmann67207b92005-11-15 15:53:48 -0500499
500static int spufs_ibox_fasync(int fd, struct file *file, int on)
501{
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500502 struct spu_context *ctx = file->private_data;
503
504 return fasync_helper(fd, file, on, &ctx->ibox_fasync);
505}
506
507/* interrupt-level ibox callback function. */
508void spufs_ibox_callback(struct spu *spu)
509{
510 struct spu_context *ctx = spu->ctx;
511
512 wake_up_all(&ctx->ibox_wq);
513 kill_fasync(&ctx->ibox_fasync, SIGIO, POLLIN);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500514}
515
Arnd Bergmanncdcc89b2006-10-04 17:26:17 +0200516/*
517 * Read as many bytes from the interrupt mailbox as possible, until
518 * one of the conditions becomes true:
519 *
520 * - no more data available in the mailbox
521 * - end of the user provided buffer
522 * - end of the mapped area
523 *
524 * If the file is opened without O_NONBLOCK, we wait here until
525 * any data is available, but return when we have been able to
526 * read something.
527 */
Arnd Bergmann67207b92005-11-15 15:53:48 -0500528static ssize_t spufs_ibox_read(struct file *file, char __user *buf,
529 size_t len, loff_t *pos)
530{
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500531 struct spu_context *ctx = file->private_data;
Arnd Bergmanncdcc89b2006-10-04 17:26:17 +0200532 u32 ibox_data, __user *udata;
533 ssize_t count;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500534
535 if (len < 4)
536 return -EINVAL;
537
Arnd Bergmanncdcc89b2006-10-04 17:26:17 +0200538 if (!access_ok(VERIFY_WRITE, buf, len))
539 return -EFAULT;
540
541 udata = (void __user *)buf;
542
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500543 spu_acquire(ctx);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500544
Arnd Bergmanncdcc89b2006-10-04 17:26:17 +0200545 /* wait only for the first element */
546 count = 0;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500547 if (file->f_flags & O_NONBLOCK) {
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500548 if (!spu_ibox_read(ctx, &ibox_data))
Arnd Bergmanncdcc89b2006-10-04 17:26:17 +0200549 count = -EAGAIN;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500550 } else {
Arnd Bergmanncdcc89b2006-10-04 17:26:17 +0200551 count = spufs_wait(ctx->ibox_wq, spu_ibox_read(ctx, &ibox_data));
552 }
553 if (count)
554 goto out;
555
556 /* if we can't write at all, return -EFAULT */
557 count = __put_user(ibox_data, udata);
558 if (count)
559 goto out;
560
561 for (count = 4, udata++; (count + 4) <= len; count += 4, udata++) {
562 int ret;
563 ret = ctx->ops->ibox_read(ctx, &ibox_data);
564 if (ret == 0)
565 break;
566 /*
567 * at the end of the mapped area, we can fault
568 * but still need to return the data we have
569 * read successfully so far.
570 */
571 ret = __put_user(ibox_data, udata);
572 if (ret)
573 break;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500574 }
575
Arnd Bergmanncdcc89b2006-10-04 17:26:17 +0200576out:
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500577 spu_release(ctx);
578
Arnd Bergmanncdcc89b2006-10-04 17:26:17 +0200579 return count;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500580}
581
582static unsigned int spufs_ibox_poll(struct file *file, poll_table *wait)
583{
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500584 struct spu_context *ctx = file->private_data;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500585 unsigned int mask;
586
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500587 poll_wait(file, &ctx->ibox_wq, wait);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500588
Arnd Bergmann3a843d72005-12-05 22:52:27 -0500589 spu_acquire(ctx);
590 mask = ctx->ops->mbox_stat_poll(ctx, POLLIN | POLLRDNORM);
591 spu_release(ctx);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500592
593 return mask;
594}
595
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -0800596static const struct file_operations spufs_ibox_fops = {
Arnd Bergmann67207b92005-11-15 15:53:48 -0500597 .open = spufs_pipe_open,
598 .read = spufs_ibox_read,
599 .poll = spufs_ibox_poll,
600 .fasync = spufs_ibox_fasync,
601};
602
603static ssize_t spufs_ibox_stat_read(struct file *file, char __user *buf,
604 size_t len, loff_t *pos)
605{
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500606 struct spu_context *ctx = file->private_data;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500607 u32 ibox_stat;
608
609 if (len < 4)
610 return -EINVAL;
611
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500612 spu_acquire(ctx);
613 ibox_stat = (ctx->ops->mbox_stat_read(ctx) >> 16) & 0xff;
614 spu_release(ctx);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500615
616 if (copy_to_user(buf, &ibox_stat, sizeof ibox_stat))
617 return -EFAULT;
618
619 return 4;
620}
621
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -0800622static const struct file_operations spufs_ibox_stat_fops = {
Arnd Bergmann67207b92005-11-15 15:53:48 -0500623 .open = spufs_pipe_open,
624 .read = spufs_ibox_stat_read,
625};
626
627/* low-level mailbox write */
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500628size_t spu_wbox_write(struct spu_context *ctx, u32 data)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500629{
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500630 return ctx->ops->wbox_write(ctx, data);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500631}
Arnd Bergmann67207b92005-11-15 15:53:48 -0500632
633static int spufs_wbox_fasync(int fd, struct file *file, int on)
634{
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500635 struct spu_context *ctx = file->private_data;
636 int ret;
637
638 ret = fasync_helper(fd, file, on, &ctx->wbox_fasync);
639
640 return ret;
641}
642
643/* interrupt-level wbox callback function. */
644void spufs_wbox_callback(struct spu *spu)
645{
646 struct spu_context *ctx = spu->ctx;
647
648 wake_up_all(&ctx->wbox_wq);
649 kill_fasync(&ctx->wbox_fasync, SIGIO, POLLOUT);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500650}
651
Arnd Bergmanncdcc89b2006-10-04 17:26:17 +0200652/*
653 * Write as many bytes to the interrupt mailbox as possible, until
654 * one of the conditions becomes true:
655 *
656 * - the mailbox is full
657 * - end of the user provided buffer
658 * - end of the mapped area
659 *
660 * If the file is opened without O_NONBLOCK, we wait here until
661 * space is availabyl, but return when we have been able to
662 * write something.
663 */
Arnd Bergmann67207b92005-11-15 15:53:48 -0500664static ssize_t spufs_wbox_write(struct file *file, const char __user *buf,
665 size_t len, loff_t *pos)
666{
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500667 struct spu_context *ctx = file->private_data;
Arnd Bergmanncdcc89b2006-10-04 17:26:17 +0200668 u32 wbox_data, __user *udata;
669 ssize_t count;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500670
671 if (len < 4)
672 return -EINVAL;
673
Arnd Bergmanncdcc89b2006-10-04 17:26:17 +0200674 udata = (void __user *)buf;
675 if (!access_ok(VERIFY_READ, buf, len))
676 return -EFAULT;
677
678 if (__get_user(wbox_data, udata))
Arnd Bergmann67207b92005-11-15 15:53:48 -0500679 return -EFAULT;
680
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500681 spu_acquire(ctx);
682
Arnd Bergmanncdcc89b2006-10-04 17:26:17 +0200683 /*
684 * make sure we can at least write one element, by waiting
685 * in case of !O_NONBLOCK
686 */
687 count = 0;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500688 if (file->f_flags & O_NONBLOCK) {
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500689 if (!spu_wbox_write(ctx, wbox_data))
Arnd Bergmanncdcc89b2006-10-04 17:26:17 +0200690 count = -EAGAIN;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500691 } else {
Arnd Bergmanncdcc89b2006-10-04 17:26:17 +0200692 count = spufs_wait(ctx->wbox_wq, spu_wbox_write(ctx, wbox_data));
Arnd Bergmann67207b92005-11-15 15:53:48 -0500693 }
694
Arnd Bergmanncdcc89b2006-10-04 17:26:17 +0200695 if (count)
696 goto out;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500697
Arnd Bergmanncdcc89b2006-10-04 17:26:17 +0200698 /* write aѕ much as possible */
699 for (count = 4, udata++; (count + 4) <= len; count += 4, udata++) {
700 int ret;
701 ret = __get_user(wbox_data, udata);
702 if (ret)
703 break;
704
705 ret = spu_wbox_write(ctx, wbox_data);
706 if (ret == 0)
707 break;
708 }
709
710out:
711 spu_release(ctx);
712 return count;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500713}
714
715static unsigned int spufs_wbox_poll(struct file *file, poll_table *wait)
716{
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500717 struct spu_context *ctx = file->private_data;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500718 unsigned int mask;
719
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500720 poll_wait(file, &ctx->wbox_wq, wait);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500721
Arnd Bergmann3a843d72005-12-05 22:52:27 -0500722 spu_acquire(ctx);
723 mask = ctx->ops->mbox_stat_poll(ctx, POLLOUT | POLLWRNORM);
724 spu_release(ctx);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500725
726 return mask;
727}
728
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -0800729static const struct file_operations spufs_wbox_fops = {
Arnd Bergmann67207b92005-11-15 15:53:48 -0500730 .open = spufs_pipe_open,
731 .write = spufs_wbox_write,
732 .poll = spufs_wbox_poll,
733 .fasync = spufs_wbox_fasync,
734};
735
736static ssize_t spufs_wbox_stat_read(struct file *file, char __user *buf,
737 size_t len, loff_t *pos)
738{
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500739 struct spu_context *ctx = file->private_data;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500740 u32 wbox_stat;
741
742 if (len < 4)
743 return -EINVAL;
744
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500745 spu_acquire(ctx);
746 wbox_stat = (ctx->ops->mbox_stat_read(ctx) >> 8) & 0xff;
747 spu_release(ctx);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500748
749 if (copy_to_user(buf, &wbox_stat, sizeof wbox_stat))
750 return -EFAULT;
751
752 return 4;
753}
754
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -0800755static const struct file_operations spufs_wbox_stat_fops = {
Arnd Bergmann67207b92005-11-15 15:53:48 -0500756 .open = spufs_pipe_open,
757 .read = spufs_wbox_stat_read,
758};
759
Mark Nutter6df10a82006-03-23 00:00:12 +0100760static int spufs_signal1_open(struct inode *inode, struct file *file)
761{
762 struct spufs_inode_info *i = SPUFS_I(inode);
763 struct spu_context *ctx = i->i_ctx;
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +0200764
765 spin_lock(&ctx->mapping_lock);
Mark Nutter6df10a82006-03-23 00:00:12 +0100766 file->private_data = ctx;
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +0200767 if (!i->i_openers++)
768 ctx->signal1 = inode->i_mapping;
769 spin_unlock(&ctx->mapping_lock);
Benjamin Herrenschmidt17e0e272007-02-13 11:46:08 +1100770 smp_wmb();
Mark Nutter6df10a82006-03-23 00:00:12 +0100771 return nonseekable_open(inode, file);
772}
773
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +0200774static int
775spufs_signal1_release(struct inode *inode, struct file *file)
776{
777 struct spufs_inode_info *i = SPUFS_I(inode);
778 struct spu_context *ctx = i->i_ctx;
779
780 spin_lock(&ctx->mapping_lock);
781 if (!--i->i_openers)
782 ctx->signal1 = NULL;
783 spin_unlock(&ctx->mapping_lock);
784 smp_wmb();
785 return 0;
786}
787
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +0100788static ssize_t __spufs_signal1_read(struct spu_context *ctx, char __user *buf,
Arnd Bergmann67207b92005-11-15 15:53:48 -0500789 size_t len, loff_t *pos)
790{
Dwayne Grant McConnell17f88ce2006-11-20 18:45:01 +0100791 int ret = 0;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500792 u32 data;
793
Arnd Bergmann67207b92005-11-15 15:53:48 -0500794 if (len < 4)
795 return -EINVAL;
796
Dwayne Grant McConnell17f88ce2006-11-20 18:45:01 +0100797 if (ctx->csa.spu_chnlcnt_RW[3]) {
798 data = ctx->csa.spu_chnldata_RW[3];
799 ret = 4;
800 }
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500801
Dwayne Grant McConnell17f88ce2006-11-20 18:45:01 +0100802 if (!ret)
803 goto out;
804
Arnd Bergmann67207b92005-11-15 15:53:48 -0500805 if (copy_to_user(buf, &data, 4))
806 return -EFAULT;
807
Dwayne Grant McConnell17f88ce2006-11-20 18:45:01 +0100808out:
809 return ret;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500810}
811
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +0100812static ssize_t spufs_signal1_read(struct file *file, char __user *buf,
813 size_t len, loff_t *pos)
814{
815 int ret;
816 struct spu_context *ctx = file->private_data;
817
818 spu_acquire_saved(ctx);
819 ret = __spufs_signal1_read(ctx, buf, len, pos);
820 spu_release(ctx);
821
822 return ret;
823}
824
Arnd Bergmann67207b92005-11-15 15:53:48 -0500825static ssize_t spufs_signal1_write(struct file *file, const char __user *buf,
826 size_t len, loff_t *pos)
827{
828 struct spu_context *ctx;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500829 u32 data;
830
831 ctx = file->private_data;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500832
833 if (len < 4)
834 return -EINVAL;
835
836 if (copy_from_user(&data, buf, 4))
837 return -EFAULT;
838
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500839 spu_acquire(ctx);
840 ctx->ops->signal1_write(ctx, data);
841 spu_release(ctx);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500842
843 return 4;
844}
845
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100846static unsigned long spufs_signal1_mmap_nopfn(struct vm_area_struct *vma,
847 unsigned long address)
Mark Nutter6df10a82006-03-23 00:00:12 +0100848{
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +0200849#if PAGE_SIZE == 0x1000
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100850 return spufs_ps_nopfn(vma, address, 0x14000, 0x1000);
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +0200851#elif PAGE_SIZE == 0x10000
852 /* For 64k pages, both signal1 and signal2 can be used to mmap the whole
853 * signal 1 and 2 area
854 */
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100855 return spufs_ps_nopfn(vma, address, 0x10000, 0x10000);
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +0200856#else
857#error unsupported page size
858#endif
Mark Nutter6df10a82006-03-23 00:00:12 +0100859}
860
861static struct vm_operations_struct spufs_signal1_mmap_vmops = {
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100862 .nopfn = spufs_signal1_mmap_nopfn,
Mark Nutter6df10a82006-03-23 00:00:12 +0100863};
864
865static int spufs_signal1_mmap(struct file *file, struct vm_area_struct *vma)
866{
867 if (!(vma->vm_flags & VM_SHARED))
868 return -EINVAL;
869
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100870 vma->vm_flags |= VM_IO | VM_PFNMAP;
Mark Nutter6df10a82006-03-23 00:00:12 +0100871 vma->vm_page_prot = __pgprot(pgprot_val(vma->vm_page_prot)
Benjamin Herrenschmidt23cc7702006-06-23 20:57:47 +0200872 | _PAGE_NO_CACHE | _PAGE_GUARDED);
Mark Nutter6df10a82006-03-23 00:00:12 +0100873
874 vma->vm_ops = &spufs_signal1_mmap_vmops;
875 return 0;
876}
Mark Nutter6df10a82006-03-23 00:00:12 +0100877
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -0800878static const struct file_operations spufs_signal1_fops = {
Mark Nutter6df10a82006-03-23 00:00:12 +0100879 .open = spufs_signal1_open,
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +0200880 .release = spufs_signal1_release,
Arnd Bergmann67207b92005-11-15 15:53:48 -0500881 .read = spufs_signal1_read,
882 .write = spufs_signal1_write,
Mark Nutter6df10a82006-03-23 00:00:12 +0100883 .mmap = spufs_signal1_mmap,
Arnd Bergmann67207b92005-11-15 15:53:48 -0500884};
885
Mark Nutter6df10a82006-03-23 00:00:12 +0100886static int spufs_signal2_open(struct inode *inode, struct file *file)
887{
888 struct spufs_inode_info *i = SPUFS_I(inode);
889 struct spu_context *ctx = i->i_ctx;
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +0200890
891 spin_lock(&ctx->mapping_lock);
Mark Nutter6df10a82006-03-23 00:00:12 +0100892 file->private_data = ctx;
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +0200893 if (!i->i_openers++)
894 ctx->signal2 = inode->i_mapping;
895 spin_unlock(&ctx->mapping_lock);
Benjamin Herrenschmidt17e0e272007-02-13 11:46:08 +1100896 smp_wmb();
Mark Nutter6df10a82006-03-23 00:00:12 +0100897 return nonseekable_open(inode, file);
898}
899
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +0200900static int
901spufs_signal2_release(struct inode *inode, struct file *file)
902{
903 struct spufs_inode_info *i = SPUFS_I(inode);
904 struct spu_context *ctx = i->i_ctx;
905
906 spin_lock(&ctx->mapping_lock);
907 if (!--i->i_openers)
908 ctx->signal2 = NULL;
909 spin_unlock(&ctx->mapping_lock);
910 smp_wmb();
911 return 0;
912}
913
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +0100914static ssize_t __spufs_signal2_read(struct spu_context *ctx, char __user *buf,
Arnd Bergmann67207b92005-11-15 15:53:48 -0500915 size_t len, loff_t *pos)
916{
Dwayne Grant McConnell17f88ce2006-11-20 18:45:01 +0100917 int ret = 0;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500918 u32 data;
919
Arnd Bergmann67207b92005-11-15 15:53:48 -0500920 if (len < 4)
921 return -EINVAL;
922
Dwayne Grant McConnell17f88ce2006-11-20 18:45:01 +0100923 if (ctx->csa.spu_chnlcnt_RW[4]) {
924 data = ctx->csa.spu_chnldata_RW[4];
925 ret = 4;
926 }
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500927
Dwayne Grant McConnell17f88ce2006-11-20 18:45:01 +0100928 if (!ret)
929 goto out;
930
Arnd Bergmann67207b92005-11-15 15:53:48 -0500931 if (copy_to_user(buf, &data, 4))
932 return -EFAULT;
933
Dwayne Grant McConnell17f88ce2006-11-20 18:45:01 +0100934out:
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +0100935 return ret;
936}
937
938static ssize_t spufs_signal2_read(struct file *file, char __user *buf,
939 size_t len, loff_t *pos)
940{
941 struct spu_context *ctx = file->private_data;
942 int ret;
943
944 spu_acquire_saved(ctx);
945 ret = __spufs_signal2_read(ctx, buf, len, pos);
946 spu_release(ctx);
947
948 return ret;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500949}
950
951static ssize_t spufs_signal2_write(struct file *file, const char __user *buf,
952 size_t len, loff_t *pos)
953{
954 struct spu_context *ctx;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500955 u32 data;
956
957 ctx = file->private_data;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500958
959 if (len < 4)
960 return -EINVAL;
961
962 if (copy_from_user(&data, buf, 4))
963 return -EFAULT;
964
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500965 spu_acquire(ctx);
966 ctx->ops->signal2_write(ctx, data);
967 spu_release(ctx);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500968
969 return 4;
970}
971
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +0200972#if SPUFS_MMAP_4K
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100973static unsigned long spufs_signal2_mmap_nopfn(struct vm_area_struct *vma,
974 unsigned long address)
Mark Nutter6df10a82006-03-23 00:00:12 +0100975{
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +0200976#if PAGE_SIZE == 0x1000
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100977 return spufs_ps_nopfn(vma, address, 0x1c000, 0x1000);
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +0200978#elif PAGE_SIZE == 0x10000
979 /* For 64k pages, both signal1 and signal2 can be used to mmap the whole
980 * signal 1 and 2 area
981 */
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100982 return spufs_ps_nopfn(vma, address, 0x10000, 0x10000);
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +0200983#else
984#error unsupported page size
985#endif
Mark Nutter6df10a82006-03-23 00:00:12 +0100986}
987
988static struct vm_operations_struct spufs_signal2_mmap_vmops = {
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100989 .nopfn = spufs_signal2_mmap_nopfn,
Mark Nutter6df10a82006-03-23 00:00:12 +0100990};
991
992static int spufs_signal2_mmap(struct file *file, struct vm_area_struct *vma)
993{
994 if (!(vma->vm_flags & VM_SHARED))
995 return -EINVAL;
996
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100997 vma->vm_flags |= VM_IO | VM_PFNMAP;
Mark Nutter6df10a82006-03-23 00:00:12 +0100998 vma->vm_page_prot = __pgprot(pgprot_val(vma->vm_page_prot)
Benjamin Herrenschmidt23cc7702006-06-23 20:57:47 +0200999 | _PAGE_NO_CACHE | _PAGE_GUARDED);
Mark Nutter6df10a82006-03-23 00:00:12 +01001000
1001 vma->vm_ops = &spufs_signal2_mmap_vmops;
1002 return 0;
1003}
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +02001004#else /* SPUFS_MMAP_4K */
1005#define spufs_signal2_mmap NULL
1006#endif /* !SPUFS_MMAP_4K */
Mark Nutter6df10a82006-03-23 00:00:12 +01001007
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -08001008static const struct file_operations spufs_signal2_fops = {
Mark Nutter6df10a82006-03-23 00:00:12 +01001009 .open = spufs_signal2_open,
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +02001010 .release = spufs_signal2_release,
Arnd Bergmann67207b92005-11-15 15:53:48 -05001011 .read = spufs_signal2_read,
1012 .write = spufs_signal2_write,
Mark Nutter6df10a82006-03-23 00:00:12 +01001013 .mmap = spufs_signal2_mmap,
Arnd Bergmann67207b92005-11-15 15:53:48 -05001014};
1015
1016static void spufs_signal1_type_set(void *data, u64 val)
1017{
1018 struct spu_context *ctx = data;
Arnd Bergmann67207b92005-11-15 15:53:48 -05001019
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001020 spu_acquire(ctx);
1021 ctx->ops->signal1_type_set(ctx, val);
1022 spu_release(ctx);
Arnd Bergmann67207b92005-11-15 15:53:48 -05001023}
1024
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001025static u64 __spufs_signal1_type_get(void *data)
1026{
1027 struct spu_context *ctx = data;
1028 return ctx->ops->signal1_type_get(ctx);
1029}
1030
Arnd Bergmann67207b92005-11-15 15:53:48 -05001031static u64 spufs_signal1_type_get(void *data)
1032{
1033 struct spu_context *ctx = data;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001034 u64 ret;
1035
1036 spu_acquire(ctx);
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001037 ret = __spufs_signal1_type_get(data);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001038 spu_release(ctx);
1039
1040 return ret;
Arnd Bergmann67207b92005-11-15 15:53:48 -05001041}
1042DEFINE_SIMPLE_ATTRIBUTE(spufs_signal1_type, spufs_signal1_type_get,
1043 spufs_signal1_type_set, "%llu");
1044
1045static void spufs_signal2_type_set(void *data, u64 val)
1046{
1047 struct spu_context *ctx = data;
Arnd Bergmann67207b92005-11-15 15:53:48 -05001048
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001049 spu_acquire(ctx);
1050 ctx->ops->signal2_type_set(ctx, val);
1051 spu_release(ctx);
Arnd Bergmann67207b92005-11-15 15:53:48 -05001052}
1053
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001054static u64 __spufs_signal2_type_get(void *data)
1055{
1056 struct spu_context *ctx = data;
1057 return ctx->ops->signal2_type_get(ctx);
1058}
1059
Arnd Bergmann67207b92005-11-15 15:53:48 -05001060static u64 spufs_signal2_type_get(void *data)
1061{
1062 struct spu_context *ctx = data;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001063 u64 ret;
1064
1065 spu_acquire(ctx);
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001066 ret = __spufs_signal2_type_get(data);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001067 spu_release(ctx);
1068
1069 return ret;
Arnd Bergmann67207b92005-11-15 15:53:48 -05001070}
1071DEFINE_SIMPLE_ATTRIBUTE(spufs_signal2_type, spufs_signal2_type_get,
1072 spufs_signal2_type_set, "%llu");
1073
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +02001074#if SPUFS_MMAP_4K
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +11001075static unsigned long spufs_mss_mmap_nopfn(struct vm_area_struct *vma,
1076 unsigned long address)
arnd@arndb.ded9379c42006-06-19 20:33:21 +02001077{
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +11001078 return spufs_ps_nopfn(vma, address, 0x0000, 0x1000);
arnd@arndb.ded9379c42006-06-19 20:33:21 +02001079}
1080
1081static struct vm_operations_struct spufs_mss_mmap_vmops = {
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +11001082 .nopfn = spufs_mss_mmap_nopfn,
arnd@arndb.ded9379c42006-06-19 20:33:21 +02001083};
1084
1085/*
1086 * mmap support for problem state MFC DMA area [0x0000 - 0x0fff].
arnd@arndb.ded9379c42006-06-19 20:33:21 +02001087 */
1088static int spufs_mss_mmap(struct file *file, struct vm_area_struct *vma)
1089{
1090 if (!(vma->vm_flags & VM_SHARED))
1091 return -EINVAL;
1092
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +11001093 vma->vm_flags |= VM_IO | VM_PFNMAP;
arnd@arndb.ded9379c42006-06-19 20:33:21 +02001094 vma->vm_page_prot = __pgprot(pgprot_val(vma->vm_page_prot)
Benjamin Herrenschmidt23cc7702006-06-23 20:57:47 +02001095 | _PAGE_NO_CACHE | _PAGE_GUARDED);
arnd@arndb.ded9379c42006-06-19 20:33:21 +02001096
1097 vma->vm_ops = &spufs_mss_mmap_vmops;
1098 return 0;
1099}
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +02001100#else /* SPUFS_MMAP_4K */
1101#define spufs_mss_mmap NULL
1102#endif /* !SPUFS_MMAP_4K */
arnd@arndb.ded9379c42006-06-19 20:33:21 +02001103
1104static int spufs_mss_open(struct inode *inode, struct file *file)
1105{
1106 struct spufs_inode_info *i = SPUFS_I(inode);
Benjamin Herrenschmidt17e0e272007-02-13 11:46:08 +11001107 struct spu_context *ctx = i->i_ctx;
arnd@arndb.ded9379c42006-06-19 20:33:21 +02001108
1109 file->private_data = i->i_ctx;
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +02001110
1111 spin_lock(&ctx->mapping_lock);
1112 if (!i->i_openers++)
1113 ctx->mss = inode->i_mapping;
1114 spin_unlock(&ctx->mapping_lock);
Benjamin Herrenschmidt17e0e272007-02-13 11:46:08 +11001115 smp_wmb();
arnd@arndb.ded9379c42006-06-19 20:33:21 +02001116 return nonseekable_open(inode, file);
1117}
1118
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +02001119static int
1120spufs_mss_release(struct inode *inode, struct file *file)
1121{
1122 struct spufs_inode_info *i = SPUFS_I(inode);
1123 struct spu_context *ctx = i->i_ctx;
1124
1125 spin_lock(&ctx->mapping_lock);
1126 if (!--i->i_openers)
1127 ctx->mss = NULL;
1128 spin_unlock(&ctx->mapping_lock);
1129 smp_wmb();
1130 return 0;
1131}
1132
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -08001133static const struct file_operations spufs_mss_fops = {
arnd@arndb.ded9379c42006-06-19 20:33:21 +02001134 .open = spufs_mss_open,
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +02001135 .release = spufs_mss_release,
arnd@arndb.ded9379c42006-06-19 20:33:21 +02001136 .mmap = spufs_mss_mmap,
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +02001137};
1138
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +11001139static unsigned long spufs_psmap_mmap_nopfn(struct vm_area_struct *vma,
1140 unsigned long address)
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +02001141{
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +11001142 return spufs_ps_nopfn(vma, address, 0x0000, 0x20000);
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +02001143}
1144
1145static struct vm_operations_struct spufs_psmap_mmap_vmops = {
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +11001146 .nopfn = spufs_psmap_mmap_nopfn,
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +02001147};
1148
1149/*
1150 * mmap support for full problem state area [0x00000 - 0x1ffff].
1151 */
1152static int spufs_psmap_mmap(struct file *file, struct vm_area_struct *vma)
1153{
1154 if (!(vma->vm_flags & VM_SHARED))
1155 return -EINVAL;
1156
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +11001157 vma->vm_flags |= VM_IO | VM_PFNMAP;
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +02001158 vma->vm_page_prot = __pgprot(pgprot_val(vma->vm_page_prot)
1159 | _PAGE_NO_CACHE | _PAGE_GUARDED);
1160
1161 vma->vm_ops = &spufs_psmap_mmap_vmops;
1162 return 0;
1163}
1164
1165static int spufs_psmap_open(struct inode *inode, struct file *file)
1166{
1167 struct spufs_inode_info *i = SPUFS_I(inode);
Benjamin Herrenschmidt17e0e272007-02-13 11:46:08 +11001168 struct spu_context *ctx = i->i_ctx;
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +02001169
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +02001170 spin_lock(&ctx->mapping_lock);
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +02001171 file->private_data = i->i_ctx;
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +02001172 if (!i->i_openers++)
1173 ctx->psmap = inode->i_mapping;
1174 spin_unlock(&ctx->mapping_lock);
Benjamin Herrenschmidt17e0e272007-02-13 11:46:08 +11001175 smp_wmb();
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +02001176 return nonseekable_open(inode, file);
1177}
1178
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +02001179static int
1180spufs_psmap_release(struct inode *inode, struct file *file)
1181{
1182 struct spufs_inode_info *i = SPUFS_I(inode);
1183 struct spu_context *ctx = i->i_ctx;
1184
1185 spin_lock(&ctx->mapping_lock);
1186 if (!--i->i_openers)
1187 ctx->psmap = NULL;
1188 spin_unlock(&ctx->mapping_lock);
1189 smp_wmb();
1190 return 0;
1191}
1192
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -08001193static const struct file_operations spufs_psmap_fops = {
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +02001194 .open = spufs_psmap_open,
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +02001195 .release = spufs_psmap_release,
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +02001196 .mmap = spufs_psmap_mmap,
arnd@arndb.ded9379c42006-06-19 20:33:21 +02001197};
1198
1199
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +02001200#if SPUFS_MMAP_4K
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +11001201static unsigned long spufs_mfc_mmap_nopfn(struct vm_area_struct *vma,
1202 unsigned long address)
Mark Nutter6df10a82006-03-23 00:00:12 +01001203{
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +11001204 return spufs_ps_nopfn(vma, address, 0x3000, 0x1000);
Mark Nutter6df10a82006-03-23 00:00:12 +01001205}
1206
1207static struct vm_operations_struct spufs_mfc_mmap_vmops = {
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +11001208 .nopfn = spufs_mfc_mmap_nopfn,
Mark Nutter6df10a82006-03-23 00:00:12 +01001209};
1210
1211/*
1212 * mmap support for problem state MFC DMA area [0x0000 - 0x0fff].
Mark Nutter6df10a82006-03-23 00:00:12 +01001213 */
1214static int spufs_mfc_mmap(struct file *file, struct vm_area_struct *vma)
1215{
1216 if (!(vma->vm_flags & VM_SHARED))
1217 return -EINVAL;
1218
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +11001219 vma->vm_flags |= VM_IO | VM_PFNMAP;
Mark Nutter6df10a82006-03-23 00:00:12 +01001220 vma->vm_page_prot = __pgprot(pgprot_val(vma->vm_page_prot)
Benjamin Herrenschmidt23cc7702006-06-23 20:57:47 +02001221 | _PAGE_NO_CACHE | _PAGE_GUARDED);
Mark Nutter6df10a82006-03-23 00:00:12 +01001222
1223 vma->vm_ops = &spufs_mfc_mmap_vmops;
1224 return 0;
1225}
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +02001226#else /* SPUFS_MMAP_4K */
1227#define spufs_mfc_mmap NULL
1228#endif /* !SPUFS_MMAP_4K */
Arnd Bergmanna33a7d72006-03-23 00:00:11 +01001229
1230static int spufs_mfc_open(struct inode *inode, struct file *file)
1231{
1232 struct spufs_inode_info *i = SPUFS_I(inode);
1233 struct spu_context *ctx = i->i_ctx;
1234
1235 /* we don't want to deal with DMA into other processes */
1236 if (ctx->owner != current->mm)
1237 return -EINVAL;
1238
1239 if (atomic_read(&inode->i_count) != 1)
1240 return -EBUSY;
1241
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +02001242 spin_lock(&ctx->mapping_lock);
Arnd Bergmanna33a7d72006-03-23 00:00:11 +01001243 file->private_data = ctx;
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +02001244 if (!i->i_openers++)
1245 ctx->mfc = inode->i_mapping;
1246 spin_unlock(&ctx->mapping_lock);
Benjamin Herrenschmidt17e0e272007-02-13 11:46:08 +11001247 smp_wmb();
Arnd Bergmanna33a7d72006-03-23 00:00:11 +01001248 return nonseekable_open(inode, file);
1249}
1250
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +02001251static int
1252spufs_mfc_release(struct inode *inode, struct file *file)
1253{
1254 struct spufs_inode_info *i = SPUFS_I(inode);
1255 struct spu_context *ctx = i->i_ctx;
1256
1257 spin_lock(&ctx->mapping_lock);
1258 if (!--i->i_openers)
1259 ctx->mfc = NULL;
1260 spin_unlock(&ctx->mapping_lock);
1261 smp_wmb();
1262 return 0;
1263}
1264
Arnd Bergmanna33a7d72006-03-23 00:00:11 +01001265/* interrupt-level mfc callback function. */
1266void spufs_mfc_callback(struct spu *spu)
1267{
1268 struct spu_context *ctx = spu->ctx;
1269
1270 wake_up_all(&ctx->mfc_wq);
1271
1272 pr_debug("%s %s\n", __FUNCTION__, spu->name);
1273 if (ctx->mfc_fasync) {
1274 u32 free_elements, tagstatus;
1275 unsigned int mask;
1276
1277 /* no need for spu_acquire in interrupt context */
1278 free_elements = ctx->ops->get_mfc_free_elements(ctx);
1279 tagstatus = ctx->ops->read_mfc_tagstatus(ctx);
1280
1281 mask = 0;
1282 if (free_elements & 0xffff)
1283 mask |= POLLOUT;
1284 if (tagstatus & ctx->tagwait)
1285 mask |= POLLIN;
1286
1287 kill_fasync(&ctx->mfc_fasync, SIGIO, mask);
1288 }
1289}
1290
1291static int spufs_read_mfc_tagstatus(struct spu_context *ctx, u32 *status)
1292{
1293 /* See if there is one tag group is complete */
1294 /* FIXME we need locking around tagwait */
1295 *status = ctx->ops->read_mfc_tagstatus(ctx) & ctx->tagwait;
1296 ctx->tagwait &= ~*status;
1297 if (*status)
1298 return 1;
1299
1300 /* enable interrupt waiting for any tag group,
1301 may silently fail if interrupts are already enabled */
1302 ctx->ops->set_mfc_query(ctx, ctx->tagwait, 1);
1303 return 0;
1304}
1305
1306static ssize_t spufs_mfc_read(struct file *file, char __user *buffer,
1307 size_t size, loff_t *pos)
1308{
1309 struct spu_context *ctx = file->private_data;
1310 int ret = -EINVAL;
1311 u32 status;
1312
1313 if (size != 4)
1314 goto out;
1315
1316 spu_acquire(ctx);
1317 if (file->f_flags & O_NONBLOCK) {
1318 status = ctx->ops->read_mfc_tagstatus(ctx);
1319 if (!(status & ctx->tagwait))
1320 ret = -EAGAIN;
1321 else
1322 ctx->tagwait &= ~status;
1323 } else {
1324 ret = spufs_wait(ctx->mfc_wq,
1325 spufs_read_mfc_tagstatus(ctx, &status));
1326 }
1327 spu_release(ctx);
1328
1329 if (ret)
1330 goto out;
1331
1332 ret = 4;
1333 if (copy_to_user(buffer, &status, 4))
1334 ret = -EFAULT;
1335
1336out:
1337 return ret;
1338}
1339
1340static int spufs_check_valid_dma(struct mfc_dma_command *cmd)
1341{
1342 pr_debug("queueing DMA %x %lx %x %x %x\n", cmd->lsa,
1343 cmd->ea, cmd->size, cmd->tag, cmd->cmd);
1344
1345 switch (cmd->cmd) {
1346 case MFC_PUT_CMD:
1347 case MFC_PUTF_CMD:
1348 case MFC_PUTB_CMD:
1349 case MFC_GET_CMD:
1350 case MFC_GETF_CMD:
1351 case MFC_GETB_CMD:
1352 break;
1353 default:
1354 pr_debug("invalid DMA opcode %x\n", cmd->cmd);
1355 return -EIO;
1356 }
1357
1358 if ((cmd->lsa & 0xf) != (cmd->ea &0xf)) {
1359 pr_debug("invalid DMA alignment, ea %lx lsa %x\n",
1360 cmd->ea, cmd->lsa);
1361 return -EIO;
1362 }
1363
1364 switch (cmd->size & 0xf) {
1365 case 1:
1366 break;
1367 case 2:
1368 if (cmd->lsa & 1)
1369 goto error;
1370 break;
1371 case 4:
1372 if (cmd->lsa & 3)
1373 goto error;
1374 break;
1375 case 8:
1376 if (cmd->lsa & 7)
1377 goto error;
1378 break;
1379 case 0:
1380 if (cmd->lsa & 15)
1381 goto error;
1382 break;
1383 error:
1384 default:
1385 pr_debug("invalid DMA alignment %x for size %x\n",
1386 cmd->lsa & 0xf, cmd->size);
1387 return -EIO;
1388 }
1389
1390 if (cmd->size > 16 * 1024) {
1391 pr_debug("invalid DMA size %x\n", cmd->size);
1392 return -EIO;
1393 }
1394
1395 if (cmd->tag & 0xfff0) {
1396 /* we reserve the higher tag numbers for kernel use */
1397 pr_debug("invalid DMA tag\n");
1398 return -EIO;
1399 }
1400
1401 if (cmd->class) {
1402 /* not supported in this version */
1403 pr_debug("invalid DMA class\n");
1404 return -EIO;
1405 }
1406
1407 return 0;
1408}
1409
1410static int spu_send_mfc_command(struct spu_context *ctx,
1411 struct mfc_dma_command cmd,
1412 int *error)
1413{
1414 *error = ctx->ops->send_mfc_command(ctx, &cmd);
1415 if (*error == -EAGAIN) {
1416 /* wait for any tag group to complete
1417 so we have space for the new command */
1418 ctx->ops->set_mfc_query(ctx, ctx->tagwait, 1);
1419 /* try again, because the queue might be
1420 empty again */
1421 *error = ctx->ops->send_mfc_command(ctx, &cmd);
1422 if (*error == -EAGAIN)
1423 return 0;
1424 }
1425 return 1;
1426}
1427
1428static ssize_t spufs_mfc_write(struct file *file, const char __user *buffer,
1429 size_t size, loff_t *pos)
1430{
1431 struct spu_context *ctx = file->private_data;
1432 struct mfc_dma_command cmd;
1433 int ret = -EINVAL;
1434
1435 if (size != sizeof cmd)
1436 goto out;
1437
1438 ret = -EFAULT;
1439 if (copy_from_user(&cmd, buffer, sizeof cmd))
1440 goto out;
1441
1442 ret = spufs_check_valid_dma(&cmd);
1443 if (ret)
1444 goto out;
1445
Akinobu Mita577f8f12007-04-23 21:08:18 +02001446 ret = spu_acquire_runnable(ctx, 0);
1447 if (ret)
1448 goto out;
1449
Arnd Bergmanna33a7d72006-03-23 00:00:11 +01001450 if (file->f_flags & O_NONBLOCK) {
1451 ret = ctx->ops->send_mfc_command(ctx, &cmd);
1452 } else {
1453 int status;
1454 ret = spufs_wait(ctx->mfc_wq,
1455 spu_send_mfc_command(ctx, cmd, &status));
1456 if (status)
1457 ret = status;
1458 }
1459 spu_release(ctx);
1460
1461 if (ret)
1462 goto out;
1463
1464 ctx->tagwait |= 1 << cmd.tag;
Masato Noguchi3692dc62006-11-20 18:45:07 +01001465 ret = size;
Arnd Bergmanna33a7d72006-03-23 00:00:11 +01001466
1467out:
1468 return ret;
1469}
1470
1471static unsigned int spufs_mfc_poll(struct file *file,poll_table *wait)
1472{
1473 struct spu_context *ctx = file->private_data;
1474 u32 free_elements, tagstatus;
1475 unsigned int mask;
1476
1477 spu_acquire(ctx);
1478 ctx->ops->set_mfc_query(ctx, ctx->tagwait, 2);
1479 free_elements = ctx->ops->get_mfc_free_elements(ctx);
1480 tagstatus = ctx->ops->read_mfc_tagstatus(ctx);
1481 spu_release(ctx);
1482
1483 poll_wait(file, &ctx->mfc_wq, wait);
1484
1485 mask = 0;
1486 if (free_elements & 0xffff)
1487 mask |= POLLOUT | POLLWRNORM;
1488 if (tagstatus & ctx->tagwait)
1489 mask |= POLLIN | POLLRDNORM;
1490
1491 pr_debug("%s: free %d tagstatus %d tagwait %d\n", __FUNCTION__,
1492 free_elements, tagstatus, ctx->tagwait);
1493
1494 return mask;
1495}
1496
Al Viro73b6af82006-06-25 16:42:33 -07001497static int spufs_mfc_flush(struct file *file, fl_owner_t id)
Arnd Bergmanna33a7d72006-03-23 00:00:11 +01001498{
1499 struct spu_context *ctx = file->private_data;
1500 int ret;
1501
1502 spu_acquire(ctx);
1503#if 0
1504/* this currently hangs */
1505 ret = spufs_wait(ctx->mfc_wq,
1506 ctx->ops->set_mfc_query(ctx, ctx->tagwait, 2));
1507 if (ret)
1508 goto out;
1509 ret = spufs_wait(ctx->mfc_wq,
1510 ctx->ops->read_mfc_tagstatus(ctx) == ctx->tagwait);
1511out:
1512#else
1513 ret = 0;
1514#endif
1515 spu_release(ctx);
1516
1517 return ret;
1518}
1519
1520static int spufs_mfc_fsync(struct file *file, struct dentry *dentry,
1521 int datasync)
1522{
Al Viro73b6af82006-06-25 16:42:33 -07001523 return spufs_mfc_flush(file, NULL);
Arnd Bergmanna33a7d72006-03-23 00:00:11 +01001524}
1525
1526static int spufs_mfc_fasync(int fd, struct file *file, int on)
1527{
1528 struct spu_context *ctx = file->private_data;
1529
1530 return fasync_helper(fd, file, on, &ctx->mfc_fasync);
1531}
1532
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -08001533static const struct file_operations spufs_mfc_fops = {
Arnd Bergmanna33a7d72006-03-23 00:00:11 +01001534 .open = spufs_mfc_open,
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +02001535 .release = spufs_mfc_release,
Arnd Bergmanna33a7d72006-03-23 00:00:11 +01001536 .read = spufs_mfc_read,
1537 .write = spufs_mfc_write,
1538 .poll = spufs_mfc_poll,
1539 .flush = spufs_mfc_flush,
1540 .fsync = spufs_mfc_fsync,
1541 .fasync = spufs_mfc_fasync,
Mark Nutter6df10a82006-03-23 00:00:12 +01001542 .mmap = spufs_mfc_mmap,
Arnd Bergmanna33a7d72006-03-23 00:00:11 +01001543};
1544
Arnd Bergmann67207b92005-11-15 15:53:48 -05001545static void spufs_npc_set(void *data, u64 val)
1546{
1547 struct spu_context *ctx = data;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001548 spu_acquire(ctx);
1549 ctx->ops->npc_write(ctx, val);
1550 spu_release(ctx);
Arnd Bergmann67207b92005-11-15 15:53:48 -05001551}
1552
1553static u64 spufs_npc_get(void *data)
1554{
1555 struct spu_context *ctx = data;
1556 u64 ret;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001557 spu_acquire(ctx);
1558 ret = ctx->ops->npc_read(ctx);
1559 spu_release(ctx);
Arnd Bergmann67207b92005-11-15 15:53:48 -05001560 return ret;
1561}
Dwayne Grant McConnell9b5047e2006-11-20 18:44:57 +01001562DEFINE_SIMPLE_ATTRIBUTE(spufs_npc_ops, spufs_npc_get, spufs_npc_set,
1563 "0x%llx\n")
Arnd Bergmann67207b92005-11-15 15:53:48 -05001564
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001565static void spufs_decr_set(void *data, u64 val)
1566{
1567 struct spu_context *ctx = data;
1568 struct spu_lscsa *lscsa = ctx->csa.lscsa;
1569 spu_acquire_saved(ctx);
1570 lscsa->decr.slot[0] = (u32) val;
1571 spu_release(ctx);
1572}
1573
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001574static u64 __spufs_decr_get(void *data)
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001575{
1576 struct spu_context *ctx = data;
1577 struct spu_lscsa *lscsa = ctx->csa.lscsa;
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001578 return lscsa->decr.slot[0];
1579}
1580
1581static u64 spufs_decr_get(void *data)
1582{
1583 struct spu_context *ctx = data;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001584 u64 ret;
1585 spu_acquire_saved(ctx);
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001586 ret = __spufs_decr_get(data);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001587 spu_release(ctx);
1588 return ret;
1589}
1590DEFINE_SIMPLE_ATTRIBUTE(spufs_decr_ops, spufs_decr_get, spufs_decr_set,
Dwayne Grant McConnell9b5047e2006-11-20 18:44:57 +01001591 "0x%llx\n")
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001592
1593static void spufs_decr_status_set(void *data, u64 val)
1594{
1595 struct spu_context *ctx = data;
1596 struct spu_lscsa *lscsa = ctx->csa.lscsa;
1597 spu_acquire_saved(ctx);
1598 lscsa->decr_status.slot[0] = (u32) val;
1599 spu_release(ctx);
1600}
1601
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001602static u64 __spufs_decr_status_get(void *data)
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001603{
1604 struct spu_context *ctx = data;
1605 struct spu_lscsa *lscsa = ctx->csa.lscsa;
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001606 return lscsa->decr_status.slot[0];
1607}
1608
1609static u64 spufs_decr_status_get(void *data)
1610{
1611 struct spu_context *ctx = data;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001612 u64 ret;
1613 spu_acquire_saved(ctx);
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001614 ret = __spufs_decr_status_get(data);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001615 spu_release(ctx);
1616 return ret;
1617}
1618DEFINE_SIMPLE_ATTRIBUTE(spufs_decr_status_ops, spufs_decr_status_get,
Dwayne Grant McConnell9b5047e2006-11-20 18:44:57 +01001619 spufs_decr_status_set, "0x%llx\n")
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001620
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001621static void spufs_event_mask_set(void *data, u64 val)
1622{
1623 struct spu_context *ctx = data;
1624 struct spu_lscsa *lscsa = ctx->csa.lscsa;
1625 spu_acquire_saved(ctx);
1626 lscsa->event_mask.slot[0] = (u32) val;
1627 spu_release(ctx);
1628}
1629
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001630static u64 __spufs_event_mask_get(void *data)
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001631{
1632 struct spu_context *ctx = data;
1633 struct spu_lscsa *lscsa = ctx->csa.lscsa;
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001634 return lscsa->event_mask.slot[0];
1635}
1636
1637static u64 spufs_event_mask_get(void *data)
1638{
1639 struct spu_context *ctx = data;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001640 u64 ret;
1641 spu_acquire_saved(ctx);
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001642 ret = __spufs_event_mask_get(data);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001643 spu_release(ctx);
1644 return ret;
1645}
1646DEFINE_SIMPLE_ATTRIBUTE(spufs_event_mask_ops, spufs_event_mask_get,
Dwayne Grant McConnell9b5047e2006-11-20 18:44:57 +01001647 spufs_event_mask_set, "0x%llx\n")
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001648
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001649static u64 __spufs_event_status_get(void *data)
Dwayne Grant McConnellb9e3bd72006-11-20 18:44:58 +01001650{
1651 struct spu_context *ctx = data;
1652 struct spu_state *state = &ctx->csa;
Dwayne Grant McConnellb9e3bd72006-11-20 18:44:58 +01001653 u64 stat;
Dwayne Grant McConnellb9e3bd72006-11-20 18:44:58 +01001654 stat = state->spu_chnlcnt_RW[0];
1655 if (stat)
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001656 return state->spu_chnldata_RW[0];
1657 return 0;
1658}
1659
1660static u64 spufs_event_status_get(void *data)
1661{
1662 struct spu_context *ctx = data;
1663 u64 ret = 0;
1664
1665 spu_acquire_saved(ctx);
1666 ret = __spufs_event_status_get(data);
Dwayne Grant McConnellb9e3bd72006-11-20 18:44:58 +01001667 spu_release(ctx);
1668 return ret;
1669}
1670DEFINE_SIMPLE_ATTRIBUTE(spufs_event_status_ops, spufs_event_status_get,
1671 NULL, "0x%llx\n")
1672
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001673static void spufs_srr0_set(void *data, u64 val)
1674{
1675 struct spu_context *ctx = data;
1676 struct spu_lscsa *lscsa = ctx->csa.lscsa;
1677 spu_acquire_saved(ctx);
1678 lscsa->srr0.slot[0] = (u32) val;
1679 spu_release(ctx);
1680}
1681
1682static u64 spufs_srr0_get(void *data)
1683{
1684 struct spu_context *ctx = data;
1685 struct spu_lscsa *lscsa = ctx->csa.lscsa;
1686 u64 ret;
1687 spu_acquire_saved(ctx);
1688 ret = lscsa->srr0.slot[0];
1689 spu_release(ctx);
1690 return ret;
1691}
1692DEFINE_SIMPLE_ATTRIBUTE(spufs_srr0_ops, spufs_srr0_get, spufs_srr0_set,
Dwayne Grant McConnell9b5047e2006-11-20 18:44:57 +01001693 "0x%llx\n")
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001694
arnd@arndb.de7b1a7012006-06-19 20:33:24 +02001695static u64 spufs_id_get(void *data)
1696{
1697 struct spu_context *ctx = data;
1698 u64 num;
1699
1700 spu_acquire(ctx);
1701 if (ctx->state == SPU_STATE_RUNNABLE)
1702 num = ctx->spu->number;
1703 else
1704 num = (unsigned int)-1;
1705 spu_release(ctx);
1706
1707 return num;
1708}
Al Viroe45d6632006-09-23 01:37:41 +01001709DEFINE_SIMPLE_ATTRIBUTE(spufs_id_ops, spufs_id_get, NULL, "0x%llx\n")
arnd@arndb.de7b1a7012006-06-19 20:33:24 +02001710
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001711static u64 __spufs_object_id_get(void *data)
Arnd Bergmann86767272006-10-04 17:26:21 +02001712{
1713 struct spu_context *ctx = data;
1714 return ctx->object_id;
1715}
1716
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001717static u64 spufs_object_id_get(void *data)
1718{
1719 /* FIXME: Should there really be no locking here? */
1720 return __spufs_object_id_get(data);
1721}
1722
Arnd Bergmann86767272006-10-04 17:26:21 +02001723static void spufs_object_id_set(void *data, u64 id)
1724{
1725 struct spu_context *ctx = data;
1726 ctx->object_id = id;
1727}
1728
1729DEFINE_SIMPLE_ATTRIBUTE(spufs_object_id_ops, spufs_object_id_get,
1730 spufs_object_id_set, "0x%llx\n");
1731
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001732static u64 __spufs_lslr_get(void *data)
1733{
1734 struct spu_context *ctx = data;
1735 return ctx->csa.priv2.spu_lslr_RW;
1736}
1737
Dwayne Grant McConnellb9e3bd72006-11-20 18:44:58 +01001738static u64 spufs_lslr_get(void *data)
1739{
1740 struct spu_context *ctx = data;
1741 u64 ret;
1742
1743 spu_acquire_saved(ctx);
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001744 ret = __spufs_lslr_get(data);
Dwayne Grant McConnellb9e3bd72006-11-20 18:44:58 +01001745 spu_release(ctx);
1746
1747 return ret;
1748}
1749DEFINE_SIMPLE_ATTRIBUTE(spufs_lslr_ops, spufs_lslr_get, NULL, "0x%llx\n")
1750
1751static int spufs_info_open(struct inode *inode, struct file *file)
1752{
1753 struct spufs_inode_info *i = SPUFS_I(inode);
1754 struct spu_context *ctx = i->i_ctx;
1755 file->private_data = ctx;
1756 return 0;
1757}
1758
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001759static ssize_t __spufs_mbox_info_read(struct spu_context *ctx,
1760 char __user *buf, size_t len, loff_t *pos)
1761{
1762 u32 mbox_stat;
1763 u32 data;
1764
1765 mbox_stat = ctx->csa.prob.mb_stat_R;
1766 if (mbox_stat & 0x0000ff) {
1767 data = ctx->csa.prob.pu_mb_R;
1768 }
1769
1770 return simple_read_from_buffer(buf, len, pos, &data, sizeof data);
1771}
1772
Dwayne Grant McConnell69a2f002006-11-20 18:45:00 +01001773static ssize_t spufs_mbox_info_read(struct file *file, char __user *buf,
1774 size_t len, loff_t *pos)
1775{
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001776 int ret;
Dwayne Grant McConnell69a2f002006-11-20 18:45:00 +01001777 struct spu_context *ctx = file->private_data;
Dwayne Grant McConnell69a2f002006-11-20 18:45:00 +01001778
1779 if (!access_ok(VERIFY_WRITE, buf, len))
1780 return -EFAULT;
1781
1782 spu_acquire_saved(ctx);
1783 spin_lock(&ctx->csa.register_lock);
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001784 ret = __spufs_mbox_info_read(ctx, buf, len, pos);
Dwayne Grant McConnell69a2f002006-11-20 18:45:00 +01001785 spin_unlock(&ctx->csa.register_lock);
1786 spu_release(ctx);
1787
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001788 return ret;
Dwayne Grant McConnell69a2f002006-11-20 18:45:00 +01001789}
1790
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -08001791static const struct file_operations spufs_mbox_info_fops = {
Dwayne Grant McConnell69a2f002006-11-20 18:45:00 +01001792 .open = spufs_info_open,
1793 .read = spufs_mbox_info_read,
1794 .llseek = generic_file_llseek,
1795};
1796
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001797static ssize_t __spufs_ibox_info_read(struct spu_context *ctx,
1798 char __user *buf, size_t len, loff_t *pos)
1799{
1800 u32 ibox_stat;
1801 u32 data;
1802
1803 ibox_stat = ctx->csa.prob.mb_stat_R;
1804 if (ibox_stat & 0xff0000) {
1805 data = ctx->csa.priv2.puint_mb_R;
1806 }
1807
1808 return simple_read_from_buffer(buf, len, pos, &data, sizeof data);
1809}
1810
Dwayne Grant McConnell69a2f002006-11-20 18:45:00 +01001811static ssize_t spufs_ibox_info_read(struct file *file, char __user *buf,
1812 size_t len, loff_t *pos)
1813{
1814 struct spu_context *ctx = file->private_data;
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001815 int ret;
Dwayne Grant McConnell69a2f002006-11-20 18:45:00 +01001816
1817 if (!access_ok(VERIFY_WRITE, buf, len))
1818 return -EFAULT;
1819
1820 spu_acquire_saved(ctx);
1821 spin_lock(&ctx->csa.register_lock);
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001822 ret = __spufs_ibox_info_read(ctx, buf, len, pos);
Dwayne Grant McConnell69a2f002006-11-20 18:45:00 +01001823 spin_unlock(&ctx->csa.register_lock);
1824 spu_release(ctx);
1825
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001826 return ret;
Dwayne Grant McConnell69a2f002006-11-20 18:45:00 +01001827}
1828
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -08001829static const struct file_operations spufs_ibox_info_fops = {
Dwayne Grant McConnell69a2f002006-11-20 18:45:00 +01001830 .open = spufs_info_open,
1831 .read = spufs_ibox_info_read,
1832 .llseek = generic_file_llseek,
1833};
1834
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001835static ssize_t __spufs_wbox_info_read(struct spu_context *ctx,
1836 char __user *buf, size_t len, loff_t *pos)
1837{
1838 int i, cnt;
1839 u32 data[4];
1840 u32 wbox_stat;
1841
1842 wbox_stat = ctx->csa.prob.mb_stat_R;
1843 cnt = 4 - ((wbox_stat & 0x00ff00) >> 8);
1844 for (i = 0; i < cnt; i++) {
1845 data[i] = ctx->csa.spu_mailbox_data[i];
1846 }
1847
1848 return simple_read_from_buffer(buf, len, pos, &data,
1849 cnt * sizeof(u32));
1850}
1851
Dwayne Grant McConnell69a2f002006-11-20 18:45:00 +01001852static ssize_t spufs_wbox_info_read(struct file *file, char __user *buf,
1853 size_t len, loff_t *pos)
1854{
1855 struct spu_context *ctx = file->private_data;
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001856 int ret;
Dwayne Grant McConnell69a2f002006-11-20 18:45:00 +01001857
1858 if (!access_ok(VERIFY_WRITE, buf, len))
1859 return -EFAULT;
1860
1861 spu_acquire_saved(ctx);
1862 spin_lock(&ctx->csa.register_lock);
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001863 ret = __spufs_wbox_info_read(ctx, buf, len, pos);
Dwayne Grant McConnell69a2f002006-11-20 18:45:00 +01001864 spin_unlock(&ctx->csa.register_lock);
1865 spu_release(ctx);
1866
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001867 return ret;
Dwayne Grant McConnell69a2f002006-11-20 18:45:00 +01001868}
1869
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -08001870static const struct file_operations spufs_wbox_info_fops = {
Dwayne Grant McConnell69a2f002006-11-20 18:45:00 +01001871 .open = spufs_info_open,
1872 .read = spufs_wbox_info_read,
1873 .llseek = generic_file_llseek,
1874};
1875
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001876static ssize_t __spufs_dma_info_read(struct spu_context *ctx,
1877 char __user *buf, size_t len, loff_t *pos)
Dwayne Grant McConnellb9e3bd72006-11-20 18:44:58 +01001878{
Dwayne Grant McConnellb9e3bd72006-11-20 18:44:58 +01001879 struct spu_dma_info info;
1880 struct mfc_cq_sr *qp, *spuqp;
1881 int i;
1882
Dwayne Grant McConnellb9e3bd72006-11-20 18:44:58 +01001883 info.dma_info_type = ctx->csa.priv2.spu_tag_status_query_RW;
1884 info.dma_info_mask = ctx->csa.lscsa->tag_mask.slot[0];
1885 info.dma_info_status = ctx->csa.spu_chnldata_RW[24];
1886 info.dma_info_stall_and_notify = ctx->csa.spu_chnldata_RW[25];
1887 info.dma_info_atomic_command_status = ctx->csa.spu_chnldata_RW[27];
1888 for (i = 0; i < 16; i++) {
1889 qp = &info.dma_info_command_data[i];
1890 spuqp = &ctx->csa.priv2.spuq[i];
1891
1892 qp->mfc_cq_data0_RW = spuqp->mfc_cq_data0_RW;
1893 qp->mfc_cq_data1_RW = spuqp->mfc_cq_data1_RW;
1894 qp->mfc_cq_data2_RW = spuqp->mfc_cq_data2_RW;
1895 qp->mfc_cq_data3_RW = spuqp->mfc_cq_data3_RW;
1896 }
Dwayne Grant McConnellb9e3bd72006-11-20 18:44:58 +01001897
1898 return simple_read_from_buffer(buf, len, pos, &info,
1899 sizeof info);
1900}
1901
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001902static ssize_t spufs_dma_info_read(struct file *file, char __user *buf,
1903 size_t len, loff_t *pos)
1904{
1905 struct spu_context *ctx = file->private_data;
1906 int ret;
1907
1908 if (!access_ok(VERIFY_WRITE, buf, len))
1909 return -EFAULT;
1910
1911 spu_acquire_saved(ctx);
1912 spin_lock(&ctx->csa.register_lock);
1913 ret = __spufs_dma_info_read(ctx, buf, len, pos);
1914 spin_unlock(&ctx->csa.register_lock);
1915 spu_release(ctx);
1916
1917 return ret;
1918}
1919
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -08001920static const struct file_operations spufs_dma_info_fops = {
Dwayne Grant McConnellb9e3bd72006-11-20 18:44:58 +01001921 .open = spufs_info_open,
1922 .read = spufs_dma_info_read,
1923};
1924
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001925static ssize_t __spufs_proxydma_info_read(struct spu_context *ctx,
1926 char __user *buf, size_t len, loff_t *pos)
Dwayne Grant McConnellb9e3bd72006-11-20 18:44:58 +01001927{
Dwayne Grant McConnellb9e3bd72006-11-20 18:44:58 +01001928 struct spu_proxydma_info info;
Dwayne Grant McConnellb9e3bd72006-11-20 18:44:58 +01001929 struct mfc_cq_sr *qp, *puqp;
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001930 int ret = sizeof info;
Dwayne Grant McConnellb9e3bd72006-11-20 18:44:58 +01001931 int i;
1932
1933 if (len < ret)
1934 return -EINVAL;
1935
1936 if (!access_ok(VERIFY_WRITE, buf, len))
1937 return -EFAULT;
1938
Dwayne Grant McConnellb9e3bd72006-11-20 18:44:58 +01001939 info.proxydma_info_type = ctx->csa.prob.dma_querytype_RW;
1940 info.proxydma_info_mask = ctx->csa.prob.dma_querymask_RW;
1941 info.proxydma_info_status = ctx->csa.prob.dma_tagstatus_R;
1942 for (i = 0; i < 8; i++) {
1943 qp = &info.proxydma_info_command_data[i];
1944 puqp = &ctx->csa.priv2.puq[i];
1945
1946 qp->mfc_cq_data0_RW = puqp->mfc_cq_data0_RW;
1947 qp->mfc_cq_data1_RW = puqp->mfc_cq_data1_RW;
1948 qp->mfc_cq_data2_RW = puqp->mfc_cq_data2_RW;
1949 qp->mfc_cq_data3_RW = puqp->mfc_cq_data3_RW;
1950 }
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001951
1952 return simple_read_from_buffer(buf, len, pos, &info,
1953 sizeof info);
1954}
1955
1956static ssize_t spufs_proxydma_info_read(struct file *file, char __user *buf,
1957 size_t len, loff_t *pos)
1958{
1959 struct spu_context *ctx = file->private_data;
1960 int ret;
1961
1962 spu_acquire_saved(ctx);
1963 spin_lock(&ctx->csa.register_lock);
1964 ret = __spufs_proxydma_info_read(ctx, buf, len, pos);
Dwayne Grant McConnellb9e3bd72006-11-20 18:44:58 +01001965 spin_unlock(&ctx->csa.register_lock);
1966 spu_release(ctx);
1967
Dwayne Grant McConnellb9e3bd72006-11-20 18:44:58 +01001968 return ret;
1969}
1970
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -08001971static const struct file_operations spufs_proxydma_info_fops = {
Dwayne Grant McConnellb9e3bd72006-11-20 18:44:58 +01001972 .open = spufs_info_open,
1973 .read = spufs_proxydma_info_read,
1974};
1975
Arnd Bergmann67207b92005-11-15 15:53:48 -05001976struct tree_descr spufs_dir_contents[] = {
1977 { "mem", &spufs_mem_fops, 0666, },
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001978 { "regs", &spufs_regs_fops, 0666, },
Arnd Bergmann67207b92005-11-15 15:53:48 -05001979 { "mbox", &spufs_mbox_fops, 0444, },
1980 { "ibox", &spufs_ibox_fops, 0444, },
1981 { "wbox", &spufs_wbox_fops, 0222, },
1982 { "mbox_stat", &spufs_mbox_stat_fops, 0444, },
1983 { "ibox_stat", &spufs_ibox_stat_fops, 0444, },
1984 { "wbox_stat", &spufs_wbox_stat_fops, 0444, },
1985 { "signal1", &spufs_signal1_fops, 0666, },
1986 { "signal2", &spufs_signal2_fops, 0666, },
1987 { "signal1_type", &spufs_signal1_type, 0666, },
1988 { "signal2_type", &spufs_signal2_type, 0666, },
Mark Nutter6df10a82006-03-23 00:00:12 +01001989 { "cntl", &spufs_cntl_fops, 0666, },
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001990 { "fpcr", &spufs_fpcr_fops, 0666, },
Dwayne Grant McConnellb9e3bd72006-11-20 18:44:58 +01001991 { "lslr", &spufs_lslr_ops, 0444, },
1992 { "mfc", &spufs_mfc_fops, 0666, },
1993 { "mss", &spufs_mss_fops, 0666, },
1994 { "npc", &spufs_npc_ops, 0666, },
1995 { "srr0", &spufs_srr0_ops, 0666, },
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001996 { "decr", &spufs_decr_ops, 0666, },
1997 { "decr_status", &spufs_decr_status_ops, 0666, },
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001998 { "event_mask", &spufs_event_mask_ops, 0666, },
Dwayne Grant McConnellb9e3bd72006-11-20 18:44:58 +01001999 { "event_status", &spufs_event_status_ops, 0444, },
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +02002000 { "psmap", &spufs_psmap_fops, 0666, },
Arnd Bergmann86767272006-10-04 17:26:21 +02002001 { "phys-id", &spufs_id_ops, 0666, },
2002 { "object-id", &spufs_object_id_ops, 0666, },
Dwayne Grant McConnell69a2f002006-11-20 18:45:00 +01002003 { "mbox_info", &spufs_mbox_info_fops, 0444, },
2004 { "ibox_info", &spufs_ibox_info_fops, 0444, },
2005 { "wbox_info", &spufs_wbox_info_fops, 0444, },
Dwayne Grant McConnellb9e3bd72006-11-20 18:44:58 +01002006 { "dma_info", &spufs_dma_info_fops, 0444, },
2007 { "proxydma_info", &spufs_proxydma_info_fops, 0444, },
Arnd Bergmann67207b92005-11-15 15:53:48 -05002008 {},
2009};
Mark Nutter5737edd2006-10-24 18:31:16 +02002010
2011struct tree_descr spufs_dir_nosched_contents[] = {
2012 { "mem", &spufs_mem_fops, 0666, },
2013 { "mbox", &spufs_mbox_fops, 0444, },
2014 { "ibox", &spufs_ibox_fops, 0444, },
2015 { "wbox", &spufs_wbox_fops, 0222, },
2016 { "mbox_stat", &spufs_mbox_stat_fops, 0444, },
2017 { "ibox_stat", &spufs_ibox_stat_fops, 0444, },
2018 { "wbox_stat", &spufs_wbox_stat_fops, 0444, },
2019 { "signal1", &spufs_signal1_fops, 0666, },
2020 { "signal2", &spufs_signal2_fops, 0666, },
2021 { "signal1_type", &spufs_signal1_type, 0666, },
2022 { "signal2_type", &spufs_signal2_type, 0666, },
2023 { "mss", &spufs_mss_fops, 0666, },
2024 { "mfc", &spufs_mfc_fops, 0666, },
2025 { "cntl", &spufs_cntl_fops, 0666, },
2026 { "npc", &spufs_npc_ops, 0666, },
2027 { "psmap", &spufs_psmap_fops, 0666, },
2028 { "phys-id", &spufs_id_ops, 0666, },
2029 { "object-id", &spufs_object_id_ops, 0666, },
2030 {},
2031};
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01002032
2033struct spufs_coredump_reader spufs_coredump_read[] = {
2034 { "regs", __spufs_regs_read, NULL, 128 * 16 },
2035 { "fpcr", __spufs_fpcr_read, NULL, 16 },
2036 { "lslr", NULL, __spufs_lslr_get, 11 },
2037 { "decr", NULL, __spufs_decr_get, 11 },
2038 { "decr_status", NULL, __spufs_decr_status_get, 11 },
2039 { "mem", __spufs_mem_read, NULL, 256 * 1024, },
2040 { "signal1", __spufs_signal1_read, NULL, 4 },
2041 { "signal1_type", NULL, __spufs_signal1_type_get, 2 },
2042 { "signal2", __spufs_signal2_read, NULL, 4 },
2043 { "signal2_type", NULL, __spufs_signal2_type_get, 2 },
2044 { "event_mask", NULL, __spufs_event_mask_get, 8 },
2045 { "event_status", NULL, __spufs_event_status_get, 8 },
2046 { "mbox_info", __spufs_mbox_info_read, NULL, 4 },
2047 { "ibox_info", __spufs_ibox_info_read, NULL, 4 },
2048 { "wbox_info", __spufs_wbox_info_read, NULL, 16 },
2049 { "dma_info", __spufs_dma_info_read, NULL, 69 * 8 },
2050 { "proxydma_info", __spufs_proxydma_info_read, NULL, 35 * 8 },
2051 { "object-id", NULL, __spufs_object_id_get, 19 },
2052 { },
2053};
2054int spufs_coredump_num_notes = ARRAY_SIZE(spufs_coredump_read) - 1;
2055