blob: f14d3a0a861598e1834a5c50108b431cbdc076bb [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>
Benjamin Herrenschmidtcbe709c2007-06-04 15:15:38 +100031#include <linux/seq_file.h>
Christoph Hellwig038200c2008-01-11 15:03:26 +110032#include <linux/marker.h>
Arnd Bergmann67207b92005-11-15 15:53:48 -050033
34#include <asm/io.h>
35#include <asm/semaphore.h>
36#include <asm/spu.h>
Dwayne Grant McConnellb9e3bd72006-11-20 18:44:58 +010037#include <asm/spu_info.h>
Arnd Bergmann67207b92005-11-15 15:53:48 -050038#include <asm/uaccess.h>
39
40#include "spufs.h"
41
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +020042#define SPUFS_MMAP_4K (PAGE_SIZE == 0x1000)
43
Christoph Hellwig197b1a82007-12-20 16:39:59 +090044/* Simple attribute files */
45struct spufs_attr {
46 int (*get)(void *, u64 *);
47 int (*set)(void *, u64);
48 char get_buf[24]; /* enough to store a u64 and "\n\0" */
49 char set_buf[24];
50 void *data;
51 const char *fmt; /* format for read operation */
52 struct mutex mutex; /* protects access to these buffers */
53};
54
55static int spufs_attr_open(struct inode *inode, struct file *file,
56 int (*get)(void *, u64 *), int (*set)(void *, u64),
57 const char *fmt)
58{
59 struct spufs_attr *attr;
60
61 attr = kmalloc(sizeof(*attr), GFP_KERNEL);
62 if (!attr)
63 return -ENOMEM;
64
65 attr->get = get;
66 attr->set = set;
67 attr->data = inode->i_private;
68 attr->fmt = fmt;
69 mutex_init(&attr->mutex);
70 file->private_data = attr;
71
72 return nonseekable_open(inode, file);
73}
74
75static int spufs_attr_release(struct inode *inode, struct file *file)
76{
77 kfree(file->private_data);
78 return 0;
79}
80
81static ssize_t spufs_attr_read(struct file *file, char __user *buf,
82 size_t len, loff_t *ppos)
83{
84 struct spufs_attr *attr;
85 size_t size;
86 ssize_t ret;
87
88 attr = file->private_data;
89 if (!attr->get)
90 return -EACCES;
91
92 ret = mutex_lock_interruptible(&attr->mutex);
93 if (ret)
94 return ret;
95
96 if (*ppos) { /* continued read */
97 size = strlen(attr->get_buf);
98 } else { /* first read */
99 u64 val;
100 ret = attr->get(attr->data, &val);
101 if (ret)
102 goto out;
103
104 size = scnprintf(attr->get_buf, sizeof(attr->get_buf),
105 attr->fmt, (unsigned long long)val);
106 }
107
108 ret = simple_read_from_buffer(buf, len, ppos, attr->get_buf, size);
109out:
110 mutex_unlock(&attr->mutex);
111 return ret;
112}
113
114static ssize_t spufs_attr_write(struct file *file, const char __user *buf,
115 size_t len, loff_t *ppos)
116{
117 struct spufs_attr *attr;
118 u64 val;
119 size_t size;
120 ssize_t ret;
121
122 attr = file->private_data;
123 if (!attr->set)
124 return -EACCES;
125
126 ret = mutex_lock_interruptible(&attr->mutex);
127 if (ret)
128 return ret;
129
130 ret = -EFAULT;
131 size = min(sizeof(attr->set_buf) - 1, len);
132 if (copy_from_user(attr->set_buf, buf, size))
133 goto out;
134
135 ret = len; /* claim we got the whole input */
136 attr->set_buf[size] = '\0';
137 val = simple_strtol(attr->set_buf, NULL, 0);
138 attr->set(attr->data, val);
139out:
140 mutex_unlock(&attr->mutex);
141 return ret;
142}
143
144#define DEFINE_SPUFS_SIMPLE_ATTRIBUTE(__fops, __get, __set, __fmt) \
145static int __fops ## _open(struct inode *inode, struct file *file) \
146{ \
147 __simple_attr_check_format(__fmt, 0ull); \
148 return spufs_attr_open(inode, file, __get, __set, __fmt); \
149} \
150static struct file_operations __fops = { \
151 .owner = THIS_MODULE, \
152 .open = __fops ## _open, \
153 .release = spufs_attr_release, \
154 .read = spufs_attr_read, \
155 .write = spufs_attr_write, \
156};
157
Benjamin Herrenschmidtcbe709c2007-06-04 15:15:38 +1000158
Arnd Bergmann67207b92005-11-15 15:53:48 -0500159static int
160spufs_mem_open(struct inode *inode, struct file *file)
161{
162 struct spufs_inode_info *i = SPUFS_I(inode);
Mark Nutter6df10a82006-03-23 00:00:12 +0100163 struct spu_context *ctx = i->i_ctx;
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +0200164
Christoph Hellwig47d3a5f2007-06-04 23:26:51 +1000165 mutex_lock(&ctx->mapping_lock);
Mark Nutter6df10a82006-03-23 00:00:12 +0100166 file->private_data = ctx;
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +0200167 if (!i->i_openers++)
168 ctx->local_store = inode->i_mapping;
Christoph Hellwig47d3a5f2007-06-04 23:26:51 +1000169 mutex_unlock(&ctx->mapping_lock);
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +0200170 return 0;
171}
172
173static int
174spufs_mem_release(struct inode *inode, struct file *file)
175{
176 struct spufs_inode_info *i = SPUFS_I(inode);
177 struct spu_context *ctx = i->i_ctx;
178
Christoph Hellwig47d3a5f2007-06-04 23:26:51 +1000179 mutex_lock(&ctx->mapping_lock);
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +0200180 if (!--i->i_openers)
181 ctx->local_store = NULL;
Christoph Hellwig47d3a5f2007-06-04 23:26:51 +1000182 mutex_unlock(&ctx->mapping_lock);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500183 return 0;
184}
185
186static ssize_t
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +0100187__spufs_mem_read(struct spu_context *ctx, char __user *buffer,
188 size_t size, loff_t *pos)
189{
190 char *local_store = ctx->ops->get_ls(ctx);
191 return simple_read_from_buffer(buffer, size, pos, local_store,
192 LS_SIZE);
193}
194
195static ssize_t
Arnd Bergmann67207b92005-11-15 15:53:48 -0500196spufs_mem_read(struct file *file, char __user *buffer,
197 size_t size, loff_t *pos)
198{
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +0100199 struct spu_context *ctx = file->private_data;
Arnd Bergmannaa0ed2b2007-03-10 00:05:35 +0100200 ssize_t ret;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500201
Christoph Hellwigc9101bd2007-12-20 16:39:59 +0900202 ret = spu_acquire(ctx);
203 if (ret)
204 return ret;
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +0100205 ret = __spufs_mem_read(ctx, buffer, size, pos);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500206 spu_release(ctx);
Christoph Hellwigc9101bd2007-12-20 16:39:59 +0900207
Arnd Bergmann67207b92005-11-15 15:53:48 -0500208 return ret;
209}
210
211static ssize_t
212spufs_mem_write(struct file *file, const char __user *buffer,
Arnd Bergmannaa0ed2b2007-03-10 00:05:35 +0100213 size_t size, loff_t *ppos)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500214{
215 struct spu_context *ctx = file->private_data;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500216 char *local_store;
Arnd Bergmannaa0ed2b2007-03-10 00:05:35 +0100217 loff_t pos = *ppos;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500218 int ret;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500219
Arnd Bergmannaa0ed2b2007-03-10 00:05:35 +0100220 if (pos < 0)
221 return -EINVAL;
222 if (pos > LS_SIZE)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500223 return -EFBIG;
Arnd Bergmannaa0ed2b2007-03-10 00:05:35 +0100224 if (size > LS_SIZE - pos)
225 size = LS_SIZE - pos;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500226
Christoph Hellwigc9101bd2007-12-20 16:39:59 +0900227 ret = spu_acquire(ctx);
228 if (ret)
229 return ret;
230
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500231 local_store = ctx->ops->get_ls(ctx);
Arnd Bergmannaa0ed2b2007-03-10 00:05:35 +0100232 ret = copy_from_user(local_store + pos, buffer, size);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500233 spu_release(ctx);
Arnd Bergmannaa0ed2b2007-03-10 00:05:35 +0100234
235 if (ret)
236 return -EFAULT;
237 *ppos = pos + size;
238 return size;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500239}
240
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100241static unsigned long spufs_mem_mmap_nopfn(struct vm_area_struct *vma,
242 unsigned long address)
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500243{
Benjamin Herrenschmidtf1fa74f2007-05-08 16:27:29 +1000244 struct spu_context *ctx = vma->vm_file->private_data;
245 unsigned long pfn, offset, addr0 = address;
246#ifdef CONFIG_SPU_FS_64K_LS
247 struct spu_state *csa = &ctx->csa;
248 int psize;
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100249
Benjamin Herrenschmidtf1fa74f2007-05-08 16:27:29 +1000250 /* Check what page size we are using */
251 psize = get_slice_psize(vma->vm_mm, address);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500252
Benjamin Herrenschmidtf1fa74f2007-05-08 16:27:29 +1000253 /* Some sanity checking */
254 BUG_ON(csa->use_big_pages != (psize == MMU_PAGE_64K));
255
256 /* Wow, 64K, cool, we need to align the address though */
257 if (csa->use_big_pages) {
258 BUG_ON(vma->vm_start & 0xffff);
259 address &= ~0xfffful;
260 }
261#endif /* CONFIG_SPU_FS_64K_LS */
262
263 offset = (address - vma->vm_start) + (vma->vm_pgoff << PAGE_SHIFT);
Masato Noguchi128b8542007-02-13 21:54:30 +0100264 if (offset >= LS_SIZE)
265 return NOPFN_SIGBUS;
266
Benjamin Herrenschmidtf1fa74f2007-05-08 16:27:29 +1000267 pr_debug("spufs_mem_mmap_nopfn address=0x%lx -> 0x%lx, offset=0x%lx\n",
268 addr0, address, offset);
269
Christoph Hellwigc9101bd2007-12-20 16:39:59 +0900270 if (spu_acquire(ctx))
271 return NOPFN_REFAULT;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500272
Arnd Bergmannac91cb82006-10-04 17:26:16 +0200273 if (ctx->state == SPU_STATE_SAVED) {
274 vma->vm_page_prot = __pgprot(pgprot_val(vma->vm_page_prot)
Arnd Bergmann932f5352006-11-20 18:45:06 +0100275 & ~_PAGE_NO_CACHE);
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100276 pfn = vmalloc_to_pfn(ctx->csa.lscsa->ls + offset);
Arnd Bergmannac91cb82006-10-04 17:26:16 +0200277 } else {
278 vma->vm_page_prot = __pgprot(pgprot_val(vma->vm_page_prot)
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100279 | _PAGE_NO_CACHE);
280 pfn = (ctx->spu->local_store_phys + offset) >> PAGE_SHIFT;
Arnd Bergmannac91cb82006-10-04 17:26:16 +0200281 }
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100282 vm_insert_pfn(vma, address, pfn);
283
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500284 spu_release(ctx);
285
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100286 return NOPFN_REFAULT;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500287}
288
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100289
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500290static struct vm_operations_struct spufs_mem_mmap_vmops = {
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100291 .nopfn = spufs_mem_mmap_nopfn,
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500292};
293
Benjamin Herrenschmidtf1fa74f2007-05-08 16:27:29 +1000294static int spufs_mem_mmap(struct file *file, struct vm_area_struct *vma)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500295{
Benjamin Herrenschmidtf1fa74f2007-05-08 16:27:29 +1000296#ifdef CONFIG_SPU_FS_64K_LS
297 struct spu_context *ctx = file->private_data;
298 struct spu_state *csa = &ctx->csa;
299
300 /* Sanity check VMA alignment */
301 if (csa->use_big_pages) {
302 pr_debug("spufs_mem_mmap 64K, start=0x%lx, end=0x%lx,"
303 " pgoff=0x%lx\n", vma->vm_start, vma->vm_end,
304 vma->vm_pgoff);
305 if (vma->vm_start & 0xffff)
306 return -EINVAL;
307 if (vma->vm_pgoff & 0xf)
308 return -EINVAL;
309 }
310#endif /* CONFIG_SPU_FS_64K_LS */
311
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500312 if (!(vma->vm_flags & VM_SHARED))
313 return -EINVAL;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500314
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100315 vma->vm_flags |= VM_IO | VM_PFNMAP;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500316 vma->vm_page_prot = __pgprot(pgprot_val(vma->vm_page_prot)
317 | _PAGE_NO_CACHE);
318
319 vma->vm_ops = &spufs_mem_mmap_vmops;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500320 return 0;
321}
322
Benjamin Herrenschmidtf1fa74f2007-05-08 16:27:29 +1000323#ifdef CONFIG_SPU_FS_64K_LS
Sebastian Siewior12388192007-09-19 14:38:12 +1000324static unsigned long spufs_get_unmapped_area(struct file *file,
325 unsigned long addr, unsigned long len, unsigned long pgoff,
326 unsigned long flags)
Benjamin Herrenschmidtf1fa74f2007-05-08 16:27:29 +1000327{
328 struct spu_context *ctx = file->private_data;
329 struct spu_state *csa = &ctx->csa;
330
331 /* If not using big pages, fallback to normal MM g_u_a */
332 if (!csa->use_big_pages)
333 return current->mm->get_unmapped_area(file, addr, len,
334 pgoff, flags);
335
336 /* Else, try to obtain a 64K pages slice */
337 return slice_get_unmapped_area(addr, len, flags,
338 MMU_PAGE_64K, 1, 0);
339}
340#endif /* CONFIG_SPU_FS_64K_LS */
341
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -0800342static const struct file_operations spufs_mem_fops = {
Jeremy Kerr70225432007-06-29 10:58:00 +1000343 .open = spufs_mem_open,
344 .release = spufs_mem_release,
345 .read = spufs_mem_read,
346 .write = spufs_mem_write,
347 .llseek = generic_file_llseek,
348 .mmap = spufs_mem_mmap,
Benjamin Herrenschmidtf1fa74f2007-05-08 16:27:29 +1000349#ifdef CONFIG_SPU_FS_64K_LS
350 .get_unmapped_area = spufs_get_unmapped_area,
351#endif
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500352};
353
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100354static unsigned long spufs_ps_nopfn(struct vm_area_struct *vma,
Mark Nutter6df10a82006-03-23 00:00:12 +0100355 unsigned long address,
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100356 unsigned long ps_offs,
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +0200357 unsigned long ps_size)
Mark Nutter6df10a82006-03-23 00:00:12 +0100358{
Mark Nutter6df10a82006-03-23 00:00:12 +0100359 struct spu_context *ctx = vma->vm_file->private_data;
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100360 unsigned long area, offset = address - vma->vm_start;
Christoph Hellwigeebead52008-02-08 15:50:41 +1100361 int ret = 0;
Mark Nutter6df10a82006-03-23 00:00:12 +0100362
Christoph Hellwig038200c2008-01-11 15:03:26 +1100363 spu_context_nospu_trace(spufs_ps_nopfn__enter, ctx);
364
Mark Nutter6df10a82006-03-23 00:00:12 +0100365 offset += vma->vm_pgoff << PAGE_SHIFT;
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +0200366 if (offset >= ps_size)
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100367 return NOPFN_SIGBUS;
Mark Nutter6df10a82006-03-23 00:00:12 +0100368
Arnd Bergmann33bfd7a2007-12-20 16:39:59 +0900369 /*
Jeremy Kerrd5883132008-02-26 13:31:42 +1100370 * Because we release the mmap_sem, the context may be destroyed while
371 * we're in spu_wait. Grab an extra reference so it isn't destroyed
372 * in the meantime.
373 */
374 get_spu_context(ctx);
375
376 /*
Arnd Bergmann33bfd7a2007-12-20 16:39:59 +0900377 * We have to wait for context to be loaded before we have
378 * pages to hand out to the user, but we don't want to wait
379 * with the mmap_sem held.
380 * It is possible to drop the mmap_sem here, but then we need
381 * to return NOPFN_REFAULT because the mappings may have
382 * hanged.
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100383 */
Christoph Hellwigc9101bd2007-12-20 16:39:59 +0900384 if (spu_acquire(ctx))
Jeremy Kerrd5883132008-02-26 13:31:42 +1100385 goto refault;
Christoph Hellwigc9101bd2007-12-20 16:39:59 +0900386
Arnd Bergmann33bfd7a2007-12-20 16:39:59 +0900387 if (ctx->state == SPU_STATE_SAVED) {
388 up_read(&current->mm->mmap_sem);
Christoph Hellwig038200c2008-01-11 15:03:26 +1100389 spu_context_nospu_trace(spufs_ps_nopfn__sleep, ctx);
Christoph Hellwigeebead52008-02-08 15:50:41 +1100390 ret = spufs_wait(ctx->run_wq, ctx->state == SPU_STATE_RUNNABLE);
Christoph Hellwig038200c2008-01-11 15:03:26 +1100391 spu_context_trace(spufs_ps_nopfn__wake, ctx, ctx->spu);
Arnd Bergmann33bfd7a2007-12-20 16:39:59 +0900392 down_read(&current->mm->mmap_sem);
Christoph Hellwigc9101bd2007-12-20 16:39:59 +0900393 } else {
394 area = ctx->spu->problem_phys + ps_offs;
395 vm_insert_pfn(vma, address, (area + offset) >> PAGE_SHIFT);
Christoph Hellwig038200c2008-01-11 15:03:26 +1100396 spu_context_trace(spufs_ps_nopfn__insert, ctx, ctx->spu);
Arnd Bergmann33bfd7a2007-12-20 16:39:59 +0900397 }
Mark Nutter6df10a82006-03-23 00:00:12 +0100398
Christoph Hellwigeebead52008-02-08 15:50:41 +1100399 if (!ret)
400 spu_release(ctx);
Jeremy Kerrd5883132008-02-26 13:31:42 +1100401
402refault:
403 put_spu_context(ctx);
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100404 return NOPFN_REFAULT;
Mark Nutter6df10a82006-03-23 00:00:12 +0100405}
406
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +0200407#if SPUFS_MMAP_4K
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100408static unsigned long spufs_cntl_mmap_nopfn(struct vm_area_struct *vma,
409 unsigned long address)
Mark Nutter6df10a82006-03-23 00:00:12 +0100410{
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100411 return spufs_ps_nopfn(vma, address, 0x4000, 0x1000);
Mark Nutter6df10a82006-03-23 00:00:12 +0100412}
413
414static struct vm_operations_struct spufs_cntl_mmap_vmops = {
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100415 .nopfn = spufs_cntl_mmap_nopfn,
Mark Nutter6df10a82006-03-23 00:00:12 +0100416};
417
418/*
419 * mmap support for problem state control area [0x4000 - 0x4fff].
Mark Nutter6df10a82006-03-23 00:00:12 +0100420 */
421static int spufs_cntl_mmap(struct file *file, struct vm_area_struct *vma)
422{
423 if (!(vma->vm_flags & VM_SHARED))
424 return -EINVAL;
425
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +1100426 vma->vm_flags |= VM_IO | VM_PFNMAP;
Mark Nutter6df10a82006-03-23 00:00:12 +0100427 vma->vm_page_prot = __pgprot(pgprot_val(vma->vm_page_prot)
Benjamin Herrenschmidt23cc7702006-06-23 20:57:47 +0200428 | _PAGE_NO_CACHE | _PAGE_GUARDED);
Mark Nutter6df10a82006-03-23 00:00:12 +0100429
430 vma->vm_ops = &spufs_cntl_mmap_vmops;
431 return 0;
432}
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +0200433#else /* SPUFS_MMAP_4K */
434#define spufs_cntl_mmap NULL
435#endif /* !SPUFS_MMAP_4K */
Mark Nutter6df10a82006-03-23 00:00:12 +0100436
Christoph Hellwig197b1a82007-12-20 16:39:59 +0900437static int spufs_cntl_get(void *data, u64 *val)
Arnd Bergmanne1dbff22006-10-04 17:26:19 +0200438{
439 struct spu_context *ctx = data;
Christoph Hellwigc9101bd2007-12-20 16:39:59 +0900440 int ret;
Arnd Bergmanne1dbff22006-10-04 17:26:19 +0200441
Christoph Hellwigc9101bd2007-12-20 16:39:59 +0900442 ret = spu_acquire(ctx);
443 if (ret)
444 return ret;
Christoph Hellwig197b1a82007-12-20 16:39:59 +0900445 *val = ctx->ops->status_read(ctx);
Arnd Bergmanne1dbff22006-10-04 17:26:19 +0200446 spu_release(ctx);
447
Christoph Hellwig197b1a82007-12-20 16:39:59 +0900448 return 0;
Arnd Bergmanne1dbff22006-10-04 17:26:19 +0200449}
450
Christoph Hellwig197b1a82007-12-20 16:39:59 +0900451static int spufs_cntl_set(void *data, u64 val)
Arnd Bergmanne1dbff22006-10-04 17:26:19 +0200452{
453 struct spu_context *ctx = data;
Christoph Hellwigc9101bd2007-12-20 16:39:59 +0900454 int ret;
Arnd Bergmanne1dbff22006-10-04 17:26:19 +0200455
Christoph Hellwigc9101bd2007-12-20 16:39:59 +0900456 ret = spu_acquire(ctx);
457 if (ret)
458 return ret;
Arnd Bergmanne1dbff22006-10-04 17:26:19 +0200459 ctx->ops->runcntl_write(ctx, val);
460 spu_release(ctx);
Christoph Hellwig197b1a82007-12-20 16:39:59 +0900461
462 return 0;
Arnd Bergmanne1dbff22006-10-04 17:26:19 +0200463}
464
Mark Nutter6df10a82006-03-23 00:00:12 +0100465static int spufs_cntl_open(struct inode *inode, struct file *file)
466{
467 struct spufs_inode_info *i = SPUFS_I(inode);
468 struct spu_context *ctx = i->i_ctx;
469
Christoph Hellwig47d3a5f2007-06-04 23:26:51 +1000470 mutex_lock(&ctx->mapping_lock);
Mark Nutter6df10a82006-03-23 00:00:12 +0100471 file->private_data = ctx;
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +0200472 if (!i->i_openers++)
473 ctx->cntl = inode->i_mapping;
Christoph Hellwig47d3a5f2007-06-04 23:26:51 +1000474 mutex_unlock(&ctx->mapping_lock);
Christoph Hellwig8b88b092008-02-08 04:20:26 -0800475 return simple_attr_open(inode, file, spufs_cntl_get,
Arnd Bergmanne1dbff22006-10-04 17:26:19 +0200476 spufs_cntl_set, "0x%08lx");
Mark Nutter6df10a82006-03-23 00:00:12 +0100477}
478
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +0200479static int
480spufs_cntl_release(struct inode *inode, struct file *file)
481{
482 struct spufs_inode_info *i = SPUFS_I(inode);
483 struct spu_context *ctx = i->i_ctx;
484
Christoph Hellwig74bedc42008-02-08 04:20:28 -0800485 simple_attr_release(inode, file);
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +0200486
Christoph Hellwig47d3a5f2007-06-04 23:26:51 +1000487 mutex_lock(&ctx->mapping_lock);
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +0200488 if (!--i->i_openers)
489 ctx->cntl = NULL;
Christoph Hellwig47d3a5f2007-06-04 23:26:51 +1000490 mutex_unlock(&ctx->mapping_lock);
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +0200491 return 0;
492}
493
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -0800494static const struct file_operations spufs_cntl_fops = {
Mark Nutter6df10a82006-03-23 00:00:12 +0100495 .open = spufs_cntl_open,
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +0200496 .release = spufs_cntl_release,
Christoph Hellwig8b88b092008-02-08 04:20:26 -0800497 .read = simple_attr_read,
498 .write = simple_attr_write,
Mark Nutter6df10a82006-03-23 00:00:12 +0100499 .mmap = spufs_cntl_mmap,
Mark Nutter6df10a82006-03-23 00:00:12 +0100500};
501
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500502static int
503spufs_regs_open(struct inode *inode, struct file *file)
504{
505 struct spufs_inode_info *i = SPUFS_I(inode);
506 file->private_data = i->i_ctx;
507 return 0;
508}
509
510static ssize_t
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +0100511__spufs_regs_read(struct spu_context *ctx, char __user *buffer,
512 size_t size, loff_t *pos)
513{
514 struct spu_lscsa *lscsa = ctx->csa.lscsa;
515 return simple_read_from_buffer(buffer, size, pos,
516 lscsa->gprs, sizeof lscsa->gprs);
517}
518
519static ssize_t
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500520spufs_regs_read(struct file *file, char __user *buffer,
521 size_t size, loff_t *pos)
522{
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500523 int ret;
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +0100524 struct spu_context *ctx = file->private_data;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500525
Christoph Hellwigc9101bd2007-12-20 16:39:59 +0900526 ret = spu_acquire_saved(ctx);
527 if (ret)
528 return ret;
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +0100529 ret = __spufs_regs_read(ctx, buffer, size, pos);
Christoph Hellwig27b1ea02007-07-20 21:39:34 +0200530 spu_release_saved(ctx);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500531 return ret;
532}
533
534static ssize_t
535spufs_regs_write(struct file *file, const char __user *buffer,
536 size_t size, loff_t *pos)
537{
538 struct spu_context *ctx = file->private_data;
539 struct spu_lscsa *lscsa = ctx->csa.lscsa;
540 int ret;
541
542 size = min_t(ssize_t, sizeof lscsa->gprs - *pos, size);
543 if (size <= 0)
544 return -EFBIG;
545 *pos += size;
546
Christoph Hellwigc9101bd2007-12-20 16:39:59 +0900547 ret = spu_acquire_saved(ctx);
548 if (ret)
549 return ret;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500550
551 ret = copy_from_user(lscsa->gprs + *pos - size,
552 buffer, size) ? -EFAULT : size;
553
Christoph Hellwig27b1ea02007-07-20 21:39:34 +0200554 spu_release_saved(ctx);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500555 return ret;
556}
557
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -0800558static const struct file_operations spufs_regs_fops = {
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500559 .open = spufs_regs_open,
560 .read = spufs_regs_read,
561 .write = spufs_regs_write,
562 .llseek = generic_file_llseek,
563};
564
565static ssize_t
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +0100566__spufs_fpcr_read(struct spu_context *ctx, char __user * buffer,
567 size_t size, loff_t * pos)
568{
569 struct spu_lscsa *lscsa = ctx->csa.lscsa;
570 return simple_read_from_buffer(buffer, size, pos,
571 &lscsa->fpcr, sizeof(lscsa->fpcr));
572}
573
574static ssize_t
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500575spufs_fpcr_read(struct file *file, char __user * buffer,
576 size_t size, loff_t * pos)
577{
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500578 int ret;
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +0100579 struct spu_context *ctx = file->private_data;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500580
Christoph Hellwigc9101bd2007-12-20 16:39:59 +0900581 ret = spu_acquire_saved(ctx);
582 if (ret)
583 return ret;
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +0100584 ret = __spufs_fpcr_read(ctx, buffer, size, pos);
Christoph Hellwig27b1ea02007-07-20 21:39:34 +0200585 spu_release_saved(ctx);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500586 return ret;
587}
588
589static ssize_t
590spufs_fpcr_write(struct file *file, const char __user * buffer,
591 size_t size, loff_t * pos)
592{
593 struct spu_context *ctx = file->private_data;
594 struct spu_lscsa *lscsa = ctx->csa.lscsa;
595 int ret;
596
597 size = min_t(ssize_t, sizeof(lscsa->fpcr) - *pos, size);
598 if (size <= 0)
599 return -EFBIG;
Christoph Hellwigc9101bd2007-12-20 16:39:59 +0900600
601 ret = spu_acquire_saved(ctx);
602 if (ret)
603 return ret;
604
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500605 *pos += size;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500606 ret = copy_from_user((char *)&lscsa->fpcr + *pos - size,
607 buffer, size) ? -EFAULT : size;
608
Christoph Hellwig27b1ea02007-07-20 21:39:34 +0200609 spu_release_saved(ctx);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500610 return ret;
611}
612
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -0800613static const struct file_operations spufs_fpcr_fops = {
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500614 .open = spufs_regs_open,
615 .read = spufs_fpcr_read,
616 .write = spufs_fpcr_write,
617 .llseek = generic_file_llseek,
Arnd Bergmann67207b92005-11-15 15:53:48 -0500618};
619
620/* generic open function for all pipe-like files */
621static int spufs_pipe_open(struct inode *inode, struct file *file)
622{
623 struct spufs_inode_info *i = SPUFS_I(inode);
624 file->private_data = i->i_ctx;
625
626 return nonseekable_open(inode, file);
627}
628
Arnd Bergmanncdcc89b2006-10-04 17:26:17 +0200629/*
630 * Read as many bytes from the mailbox as possible, until
631 * one of the conditions becomes true:
632 *
633 * - no more data available in the mailbox
634 * - end of the user provided buffer
635 * - end of the mapped area
636 */
Arnd Bergmann67207b92005-11-15 15:53:48 -0500637static ssize_t spufs_mbox_read(struct file *file, char __user *buf,
638 size_t len, loff_t *pos)
639{
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500640 struct spu_context *ctx = file->private_data;
Arnd Bergmanncdcc89b2006-10-04 17:26:17 +0200641 u32 mbox_data, __user *udata;
642 ssize_t count;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500643
644 if (len < 4)
645 return -EINVAL;
646
Arnd Bergmanncdcc89b2006-10-04 17:26:17 +0200647 if (!access_ok(VERIFY_WRITE, buf, len))
Arnd Bergmann67207b92005-11-15 15:53:48 -0500648 return -EFAULT;
649
Arnd Bergmanncdcc89b2006-10-04 17:26:17 +0200650 udata = (void __user *)buf;
651
Christoph Hellwigc9101bd2007-12-20 16:39:59 +0900652 count = spu_acquire(ctx);
653 if (count)
654 return count;
655
Arnd Bergmann274cef52006-10-24 18:01:42 +0200656 for (count = 0; (count + 4) <= len; count += 4, udata++) {
Arnd Bergmanncdcc89b2006-10-04 17:26:17 +0200657 int ret;
658 ret = ctx->ops->mbox_read(ctx, &mbox_data);
659 if (ret == 0)
660 break;
661
662 /*
663 * at the end of the mapped area, we can fault
664 * but still need to return the data we have
665 * read successfully so far.
666 */
667 ret = __put_user(mbox_data, udata);
668 if (ret) {
669 if (!count)
670 count = -EFAULT;
671 break;
672 }
673 }
674 spu_release(ctx);
675
676 if (!count)
677 count = -EAGAIN;
678
679 return count;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500680}
681
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -0800682static const struct file_operations spufs_mbox_fops = {
Arnd Bergmann67207b92005-11-15 15:53:48 -0500683 .open = spufs_pipe_open,
684 .read = spufs_mbox_read,
685};
686
687static ssize_t spufs_mbox_stat_read(struct file *file, char __user *buf,
688 size_t len, loff_t *pos)
689{
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500690 struct spu_context *ctx = file->private_data;
Christoph Hellwigc9101bd2007-12-20 16:39:59 +0900691 ssize_t ret;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500692 u32 mbox_stat;
693
694 if (len < 4)
695 return -EINVAL;
696
Christoph Hellwigc9101bd2007-12-20 16:39:59 +0900697 ret = spu_acquire(ctx);
698 if (ret)
699 return ret;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500700
701 mbox_stat = ctx->ops->mbox_stat_read(ctx) & 0xff;
702
703 spu_release(ctx);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500704
705 if (copy_to_user(buf, &mbox_stat, sizeof mbox_stat))
706 return -EFAULT;
707
708 return 4;
709}
710
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -0800711static const struct file_operations spufs_mbox_stat_fops = {
Arnd Bergmann67207b92005-11-15 15:53:48 -0500712 .open = spufs_pipe_open,
713 .read = spufs_mbox_stat_read,
714};
715
716/* low-level ibox access function */
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500717size_t spu_ibox_read(struct spu_context *ctx, u32 *data)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500718{
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500719 return ctx->ops->ibox_read(ctx, data);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500720}
Arnd Bergmann67207b92005-11-15 15:53:48 -0500721
722static int spufs_ibox_fasync(int fd, struct file *file, int on)
723{
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500724 struct spu_context *ctx = file->private_data;
725
726 return fasync_helper(fd, file, on, &ctx->ibox_fasync);
727}
728
729/* interrupt-level ibox callback function. */
730void spufs_ibox_callback(struct spu *spu)
731{
732 struct spu_context *ctx = spu->ctx;
733
Luke Browninge65c2f62007-12-20 16:39:59 +0900734 if (!ctx)
735 return;
736
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500737 wake_up_all(&ctx->ibox_wq);
738 kill_fasync(&ctx->ibox_fasync, SIGIO, POLLIN);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500739}
740
Arnd Bergmanncdcc89b2006-10-04 17:26:17 +0200741/*
742 * Read as many bytes from the interrupt mailbox as possible, until
743 * one of the conditions becomes true:
744 *
745 * - no more data available in the mailbox
746 * - end of the user provided buffer
747 * - end of the mapped area
748 *
749 * If the file is opened without O_NONBLOCK, we wait here until
750 * any data is available, but return when we have been able to
751 * read something.
752 */
Arnd Bergmann67207b92005-11-15 15:53:48 -0500753static ssize_t spufs_ibox_read(struct file *file, char __user *buf,
754 size_t len, loff_t *pos)
755{
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500756 struct spu_context *ctx = file->private_data;
Arnd Bergmanncdcc89b2006-10-04 17:26:17 +0200757 u32 ibox_data, __user *udata;
758 ssize_t count;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500759
760 if (len < 4)
761 return -EINVAL;
762
Arnd Bergmanncdcc89b2006-10-04 17:26:17 +0200763 if (!access_ok(VERIFY_WRITE, buf, len))
764 return -EFAULT;
765
766 udata = (void __user *)buf;
767
Christoph Hellwigc9101bd2007-12-20 16:39:59 +0900768 count = spu_acquire(ctx);
769 if (count)
Christoph Hellwigeebead52008-02-08 15:50:41 +1100770 goto out;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500771
Arnd Bergmanncdcc89b2006-10-04 17:26:17 +0200772 /* wait only for the first element */
773 count = 0;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500774 if (file->f_flags & O_NONBLOCK) {
Christoph Hellwigeebead52008-02-08 15:50:41 +1100775 if (!spu_ibox_read(ctx, &ibox_data)) {
Arnd Bergmanncdcc89b2006-10-04 17:26:17 +0200776 count = -EAGAIN;
Christoph Hellwigeebead52008-02-08 15:50:41 +1100777 goto out_unlock;
778 }
Arnd Bergmann67207b92005-11-15 15:53:48 -0500779 } else {
Arnd Bergmanncdcc89b2006-10-04 17:26:17 +0200780 count = spufs_wait(ctx->ibox_wq, spu_ibox_read(ctx, &ibox_data));
Christoph Hellwigeebead52008-02-08 15:50:41 +1100781 if (count)
782 goto out;
Arnd Bergmanncdcc89b2006-10-04 17:26:17 +0200783 }
Arnd Bergmanncdcc89b2006-10-04 17:26:17 +0200784
785 /* if we can't write at all, return -EFAULT */
786 count = __put_user(ibox_data, udata);
787 if (count)
Christoph Hellwigeebead52008-02-08 15:50:41 +1100788 goto out_unlock;
Arnd Bergmanncdcc89b2006-10-04 17:26:17 +0200789
790 for (count = 4, udata++; (count + 4) <= len; count += 4, udata++) {
791 int ret;
792 ret = ctx->ops->ibox_read(ctx, &ibox_data);
793 if (ret == 0)
794 break;
795 /*
796 * at the end of the mapped area, we can fault
797 * but still need to return the data we have
798 * read successfully so far.
799 */
800 ret = __put_user(ibox_data, udata);
801 if (ret)
802 break;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500803 }
804
Christoph Hellwigeebead52008-02-08 15:50:41 +1100805out_unlock:
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500806 spu_release(ctx);
Christoph Hellwigeebead52008-02-08 15:50:41 +1100807out:
Arnd Bergmanncdcc89b2006-10-04 17:26:17 +0200808 return count;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500809}
810
811static unsigned int spufs_ibox_poll(struct file *file, poll_table *wait)
812{
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500813 struct spu_context *ctx = file->private_data;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500814 unsigned int mask;
815
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500816 poll_wait(file, &ctx->ibox_wq, wait);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500817
Christoph Hellwigc9101bd2007-12-20 16:39:59 +0900818 /*
819 * For now keep this uninterruptible and also ignore the rule
820 * that poll should not sleep. Will be fixed later.
821 */
822 mutex_lock(&ctx->state_mutex);
Arnd Bergmann3a843d72005-12-05 22:52:27 -0500823 mask = ctx->ops->mbox_stat_poll(ctx, POLLIN | POLLRDNORM);
824 spu_release(ctx);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500825
826 return mask;
827}
828
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -0800829static const struct file_operations spufs_ibox_fops = {
Arnd Bergmann67207b92005-11-15 15:53:48 -0500830 .open = spufs_pipe_open,
831 .read = spufs_ibox_read,
832 .poll = spufs_ibox_poll,
833 .fasync = spufs_ibox_fasync,
834};
835
836static ssize_t spufs_ibox_stat_read(struct file *file, char __user *buf,
837 size_t len, loff_t *pos)
838{
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500839 struct spu_context *ctx = file->private_data;
Christoph Hellwigc9101bd2007-12-20 16:39:59 +0900840 ssize_t ret;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500841 u32 ibox_stat;
842
843 if (len < 4)
844 return -EINVAL;
845
Christoph Hellwigc9101bd2007-12-20 16:39:59 +0900846 ret = spu_acquire(ctx);
847 if (ret)
848 return ret;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500849 ibox_stat = (ctx->ops->mbox_stat_read(ctx) >> 16) & 0xff;
850 spu_release(ctx);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500851
852 if (copy_to_user(buf, &ibox_stat, sizeof ibox_stat))
853 return -EFAULT;
854
855 return 4;
856}
857
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -0800858static const struct file_operations spufs_ibox_stat_fops = {
Arnd Bergmann67207b92005-11-15 15:53:48 -0500859 .open = spufs_pipe_open,
860 .read = spufs_ibox_stat_read,
861};
862
863/* low-level mailbox write */
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500864size_t spu_wbox_write(struct spu_context *ctx, u32 data)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500865{
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500866 return ctx->ops->wbox_write(ctx, data);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500867}
Arnd Bergmann67207b92005-11-15 15:53:48 -0500868
869static int spufs_wbox_fasync(int fd, struct file *file, int on)
870{
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500871 struct spu_context *ctx = file->private_data;
872 int ret;
873
874 ret = fasync_helper(fd, file, on, &ctx->wbox_fasync);
875
876 return ret;
877}
878
879/* interrupt-level wbox callback function. */
880void spufs_wbox_callback(struct spu *spu)
881{
882 struct spu_context *ctx = spu->ctx;
883
Luke Browninge65c2f62007-12-20 16:39:59 +0900884 if (!ctx)
885 return;
886
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500887 wake_up_all(&ctx->wbox_wq);
888 kill_fasync(&ctx->wbox_fasync, SIGIO, POLLOUT);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500889}
890
Arnd Bergmanncdcc89b2006-10-04 17:26:17 +0200891/*
892 * Write as many bytes to the interrupt mailbox as possible, until
893 * one of the conditions becomes true:
894 *
895 * - the mailbox is full
896 * - end of the user provided buffer
897 * - end of the mapped area
898 *
899 * If the file is opened without O_NONBLOCK, we wait here until
900 * space is availabyl, but return when we have been able to
901 * write something.
902 */
Arnd Bergmann67207b92005-11-15 15:53:48 -0500903static ssize_t spufs_wbox_write(struct file *file, const char __user *buf,
904 size_t len, loff_t *pos)
905{
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500906 struct spu_context *ctx = file->private_data;
Arnd Bergmanncdcc89b2006-10-04 17:26:17 +0200907 u32 wbox_data, __user *udata;
908 ssize_t count;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500909
910 if (len < 4)
911 return -EINVAL;
912
Arnd Bergmanncdcc89b2006-10-04 17:26:17 +0200913 udata = (void __user *)buf;
914 if (!access_ok(VERIFY_READ, buf, len))
915 return -EFAULT;
916
917 if (__get_user(wbox_data, udata))
Arnd Bergmann67207b92005-11-15 15:53:48 -0500918 return -EFAULT;
919
Christoph Hellwigc9101bd2007-12-20 16:39:59 +0900920 count = spu_acquire(ctx);
921 if (count)
Christoph Hellwigeebead52008-02-08 15:50:41 +1100922 goto out;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500923
Arnd Bergmanncdcc89b2006-10-04 17:26:17 +0200924 /*
925 * make sure we can at least write one element, by waiting
926 * in case of !O_NONBLOCK
927 */
928 count = 0;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500929 if (file->f_flags & O_NONBLOCK) {
Christoph Hellwigeebead52008-02-08 15:50:41 +1100930 if (!spu_wbox_write(ctx, wbox_data)) {
Arnd Bergmanncdcc89b2006-10-04 17:26:17 +0200931 count = -EAGAIN;
Christoph Hellwigeebead52008-02-08 15:50:41 +1100932 goto out_unlock;
933 }
Arnd Bergmann67207b92005-11-15 15:53:48 -0500934 } else {
Arnd Bergmanncdcc89b2006-10-04 17:26:17 +0200935 count = spufs_wait(ctx->wbox_wq, spu_wbox_write(ctx, wbox_data));
Christoph Hellwigeebead52008-02-08 15:50:41 +1100936 if (count)
937 goto out;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500938 }
939
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500940
Jan Engelhardt96de0e22007-10-19 23:21:04 +0200941 /* write as much as possible */
Arnd Bergmanncdcc89b2006-10-04 17:26:17 +0200942 for (count = 4, udata++; (count + 4) <= len; count += 4, udata++) {
943 int ret;
944 ret = __get_user(wbox_data, udata);
945 if (ret)
946 break;
947
948 ret = spu_wbox_write(ctx, wbox_data);
949 if (ret == 0)
950 break;
951 }
952
Christoph Hellwigeebead52008-02-08 15:50:41 +1100953out_unlock:
Arnd Bergmanncdcc89b2006-10-04 17:26:17 +0200954 spu_release(ctx);
Christoph Hellwigeebead52008-02-08 15:50:41 +1100955out:
Arnd Bergmanncdcc89b2006-10-04 17:26:17 +0200956 return count;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500957}
958
959static unsigned int spufs_wbox_poll(struct file *file, poll_table *wait)
960{
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500961 struct spu_context *ctx = file->private_data;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500962 unsigned int mask;
963
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500964 poll_wait(file, &ctx->wbox_wq, wait);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500965
Christoph Hellwigc9101bd2007-12-20 16:39:59 +0900966 /*
967 * For now keep this uninterruptible and also ignore the rule
968 * that poll should not sleep. Will be fixed later.
969 */
970 mutex_lock(&ctx->state_mutex);
Arnd Bergmann3a843d72005-12-05 22:52:27 -0500971 mask = ctx->ops->mbox_stat_poll(ctx, POLLOUT | POLLWRNORM);
972 spu_release(ctx);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500973
974 return mask;
975}
976
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -0800977static const struct file_operations spufs_wbox_fops = {
Arnd Bergmann67207b92005-11-15 15:53:48 -0500978 .open = spufs_pipe_open,
979 .write = spufs_wbox_write,
980 .poll = spufs_wbox_poll,
981 .fasync = spufs_wbox_fasync,
982};
983
984static ssize_t spufs_wbox_stat_read(struct file *file, char __user *buf,
985 size_t len, loff_t *pos)
986{
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500987 struct spu_context *ctx = file->private_data;
Christoph Hellwigc9101bd2007-12-20 16:39:59 +0900988 ssize_t ret;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500989 u32 wbox_stat;
990
991 if (len < 4)
992 return -EINVAL;
993
Christoph Hellwigc9101bd2007-12-20 16:39:59 +0900994 ret = spu_acquire(ctx);
995 if (ret)
996 return ret;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500997 wbox_stat = (ctx->ops->mbox_stat_read(ctx) >> 8) & 0xff;
998 spu_release(ctx);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500999
1000 if (copy_to_user(buf, &wbox_stat, sizeof wbox_stat))
1001 return -EFAULT;
1002
1003 return 4;
1004}
1005
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -08001006static const struct file_operations spufs_wbox_stat_fops = {
Arnd Bergmann67207b92005-11-15 15:53:48 -05001007 .open = spufs_pipe_open,
1008 .read = spufs_wbox_stat_read,
1009};
1010
Mark Nutter6df10a82006-03-23 00:00:12 +01001011static int spufs_signal1_open(struct inode *inode, struct file *file)
1012{
1013 struct spufs_inode_info *i = SPUFS_I(inode);
1014 struct spu_context *ctx = i->i_ctx;
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +02001015
Christoph Hellwig47d3a5f2007-06-04 23:26:51 +10001016 mutex_lock(&ctx->mapping_lock);
Mark Nutter6df10a82006-03-23 00:00:12 +01001017 file->private_data = ctx;
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +02001018 if (!i->i_openers++)
1019 ctx->signal1 = inode->i_mapping;
Christoph Hellwig47d3a5f2007-06-04 23:26:51 +10001020 mutex_unlock(&ctx->mapping_lock);
Mark Nutter6df10a82006-03-23 00:00:12 +01001021 return nonseekable_open(inode, file);
1022}
1023
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +02001024static int
1025spufs_signal1_release(struct inode *inode, struct file *file)
1026{
1027 struct spufs_inode_info *i = SPUFS_I(inode);
1028 struct spu_context *ctx = i->i_ctx;
1029
Christoph Hellwig47d3a5f2007-06-04 23:26:51 +10001030 mutex_lock(&ctx->mapping_lock);
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +02001031 if (!--i->i_openers)
1032 ctx->signal1 = NULL;
Christoph Hellwig47d3a5f2007-06-04 23:26:51 +10001033 mutex_unlock(&ctx->mapping_lock);
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +02001034 return 0;
1035}
1036
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001037static ssize_t __spufs_signal1_read(struct spu_context *ctx, char __user *buf,
Arnd Bergmann67207b92005-11-15 15:53:48 -05001038 size_t len, loff_t *pos)
1039{
Dwayne Grant McConnell17f88ce2006-11-20 18:45:01 +01001040 int ret = 0;
Arnd Bergmann67207b92005-11-15 15:53:48 -05001041 u32 data;
1042
Arnd Bergmann67207b92005-11-15 15:53:48 -05001043 if (len < 4)
1044 return -EINVAL;
1045
Dwayne Grant McConnell17f88ce2006-11-20 18:45:01 +01001046 if (ctx->csa.spu_chnlcnt_RW[3]) {
1047 data = ctx->csa.spu_chnldata_RW[3];
1048 ret = 4;
1049 }
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001050
Dwayne Grant McConnell17f88ce2006-11-20 18:45:01 +01001051 if (!ret)
1052 goto out;
1053
Arnd Bergmann67207b92005-11-15 15:53:48 -05001054 if (copy_to_user(buf, &data, 4))
1055 return -EFAULT;
1056
Dwayne Grant McConnell17f88ce2006-11-20 18:45:01 +01001057out:
1058 return ret;
Arnd Bergmann67207b92005-11-15 15:53:48 -05001059}
1060
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001061static ssize_t spufs_signal1_read(struct file *file, char __user *buf,
1062 size_t len, loff_t *pos)
1063{
1064 int ret;
1065 struct spu_context *ctx = file->private_data;
1066
Christoph Hellwigc9101bd2007-12-20 16:39:59 +09001067 ret = spu_acquire_saved(ctx);
1068 if (ret)
1069 return ret;
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001070 ret = __spufs_signal1_read(ctx, buf, len, pos);
Christoph Hellwig27b1ea02007-07-20 21:39:34 +02001071 spu_release_saved(ctx);
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001072
1073 return ret;
1074}
1075
Arnd Bergmann67207b92005-11-15 15:53:48 -05001076static ssize_t spufs_signal1_write(struct file *file, const char __user *buf,
1077 size_t len, loff_t *pos)
1078{
1079 struct spu_context *ctx;
Christoph Hellwigc9101bd2007-12-20 16:39:59 +09001080 ssize_t ret;
Arnd Bergmann67207b92005-11-15 15:53:48 -05001081 u32 data;
1082
1083 ctx = file->private_data;
Arnd Bergmann67207b92005-11-15 15:53:48 -05001084
1085 if (len < 4)
1086 return -EINVAL;
1087
1088 if (copy_from_user(&data, buf, 4))
1089 return -EFAULT;
1090
Christoph Hellwigc9101bd2007-12-20 16:39:59 +09001091 ret = spu_acquire(ctx);
1092 if (ret)
1093 return ret;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001094 ctx->ops->signal1_write(ctx, data);
1095 spu_release(ctx);
Arnd Bergmann67207b92005-11-15 15:53:48 -05001096
1097 return 4;
1098}
1099
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +11001100static unsigned long spufs_signal1_mmap_nopfn(struct vm_area_struct *vma,
1101 unsigned long address)
Mark Nutter6df10a82006-03-23 00:00:12 +01001102{
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +02001103#if PAGE_SIZE == 0x1000
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +11001104 return spufs_ps_nopfn(vma, address, 0x14000, 0x1000);
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +02001105#elif PAGE_SIZE == 0x10000
1106 /* For 64k pages, both signal1 and signal2 can be used to mmap the whole
1107 * signal 1 and 2 area
1108 */
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +11001109 return spufs_ps_nopfn(vma, address, 0x10000, 0x10000);
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +02001110#else
1111#error unsupported page size
1112#endif
Mark Nutter6df10a82006-03-23 00:00:12 +01001113}
1114
1115static struct vm_operations_struct spufs_signal1_mmap_vmops = {
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +11001116 .nopfn = spufs_signal1_mmap_nopfn,
Mark Nutter6df10a82006-03-23 00:00:12 +01001117};
1118
1119static int spufs_signal1_mmap(struct file *file, struct vm_area_struct *vma)
1120{
1121 if (!(vma->vm_flags & VM_SHARED))
1122 return -EINVAL;
1123
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +11001124 vma->vm_flags |= VM_IO | VM_PFNMAP;
Mark Nutter6df10a82006-03-23 00:00:12 +01001125 vma->vm_page_prot = __pgprot(pgprot_val(vma->vm_page_prot)
Benjamin Herrenschmidt23cc7702006-06-23 20:57:47 +02001126 | _PAGE_NO_CACHE | _PAGE_GUARDED);
Mark Nutter6df10a82006-03-23 00:00:12 +01001127
1128 vma->vm_ops = &spufs_signal1_mmap_vmops;
1129 return 0;
1130}
Mark Nutter6df10a82006-03-23 00:00:12 +01001131
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -08001132static const struct file_operations spufs_signal1_fops = {
Mark Nutter6df10a82006-03-23 00:00:12 +01001133 .open = spufs_signal1_open,
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +02001134 .release = spufs_signal1_release,
Arnd Bergmann67207b92005-11-15 15:53:48 -05001135 .read = spufs_signal1_read,
1136 .write = spufs_signal1_write,
Mark Nutter6df10a82006-03-23 00:00:12 +01001137 .mmap = spufs_signal1_mmap,
Arnd Bergmann67207b92005-11-15 15:53:48 -05001138};
1139
Jeremy Kerrd054b362007-07-20 21:39:31 +02001140static const struct file_operations spufs_signal1_nosched_fops = {
1141 .open = spufs_signal1_open,
1142 .release = spufs_signal1_release,
1143 .write = spufs_signal1_write,
1144 .mmap = spufs_signal1_mmap,
1145};
1146
Mark Nutter6df10a82006-03-23 00:00:12 +01001147static int spufs_signal2_open(struct inode *inode, struct file *file)
1148{
1149 struct spufs_inode_info *i = SPUFS_I(inode);
1150 struct spu_context *ctx = i->i_ctx;
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +02001151
Christoph Hellwig47d3a5f2007-06-04 23:26:51 +10001152 mutex_lock(&ctx->mapping_lock);
Mark Nutter6df10a82006-03-23 00:00:12 +01001153 file->private_data = ctx;
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +02001154 if (!i->i_openers++)
1155 ctx->signal2 = inode->i_mapping;
Christoph Hellwig47d3a5f2007-06-04 23:26:51 +10001156 mutex_unlock(&ctx->mapping_lock);
Mark Nutter6df10a82006-03-23 00:00:12 +01001157 return nonseekable_open(inode, file);
1158}
1159
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +02001160static int
1161spufs_signal2_release(struct inode *inode, struct file *file)
1162{
1163 struct spufs_inode_info *i = SPUFS_I(inode);
1164 struct spu_context *ctx = i->i_ctx;
1165
Christoph Hellwig47d3a5f2007-06-04 23:26:51 +10001166 mutex_lock(&ctx->mapping_lock);
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +02001167 if (!--i->i_openers)
1168 ctx->signal2 = NULL;
Christoph Hellwig47d3a5f2007-06-04 23:26:51 +10001169 mutex_unlock(&ctx->mapping_lock);
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +02001170 return 0;
1171}
1172
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001173static ssize_t __spufs_signal2_read(struct spu_context *ctx, char __user *buf,
Arnd Bergmann67207b92005-11-15 15:53:48 -05001174 size_t len, loff_t *pos)
1175{
Dwayne Grant McConnell17f88ce2006-11-20 18:45:01 +01001176 int ret = 0;
Arnd Bergmann67207b92005-11-15 15:53:48 -05001177 u32 data;
1178
Arnd Bergmann67207b92005-11-15 15:53:48 -05001179 if (len < 4)
1180 return -EINVAL;
1181
Dwayne Grant McConnell17f88ce2006-11-20 18:45:01 +01001182 if (ctx->csa.spu_chnlcnt_RW[4]) {
1183 data = ctx->csa.spu_chnldata_RW[4];
1184 ret = 4;
1185 }
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001186
Dwayne Grant McConnell17f88ce2006-11-20 18:45:01 +01001187 if (!ret)
1188 goto out;
1189
Arnd Bergmann67207b92005-11-15 15:53:48 -05001190 if (copy_to_user(buf, &data, 4))
1191 return -EFAULT;
1192
Dwayne Grant McConnell17f88ce2006-11-20 18:45:01 +01001193out:
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001194 return ret;
1195}
1196
1197static ssize_t spufs_signal2_read(struct file *file, char __user *buf,
1198 size_t len, loff_t *pos)
1199{
1200 struct spu_context *ctx = file->private_data;
1201 int ret;
1202
Christoph Hellwigc9101bd2007-12-20 16:39:59 +09001203 ret = spu_acquire_saved(ctx);
1204 if (ret)
1205 return ret;
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001206 ret = __spufs_signal2_read(ctx, buf, len, pos);
Christoph Hellwig27b1ea02007-07-20 21:39:34 +02001207 spu_release_saved(ctx);
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001208
1209 return ret;
Arnd Bergmann67207b92005-11-15 15:53:48 -05001210}
1211
1212static ssize_t spufs_signal2_write(struct file *file, const char __user *buf,
1213 size_t len, loff_t *pos)
1214{
1215 struct spu_context *ctx;
Christoph Hellwigc9101bd2007-12-20 16:39:59 +09001216 ssize_t ret;
Arnd Bergmann67207b92005-11-15 15:53:48 -05001217 u32 data;
1218
1219 ctx = file->private_data;
Arnd Bergmann67207b92005-11-15 15:53:48 -05001220
1221 if (len < 4)
1222 return -EINVAL;
1223
1224 if (copy_from_user(&data, buf, 4))
1225 return -EFAULT;
1226
Christoph Hellwigc9101bd2007-12-20 16:39:59 +09001227 ret = spu_acquire(ctx);
1228 if (ret)
1229 return ret;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001230 ctx->ops->signal2_write(ctx, data);
1231 spu_release(ctx);
Arnd Bergmann67207b92005-11-15 15:53:48 -05001232
1233 return 4;
1234}
1235
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +02001236#if SPUFS_MMAP_4K
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +11001237static unsigned long spufs_signal2_mmap_nopfn(struct vm_area_struct *vma,
1238 unsigned long address)
Mark Nutter6df10a82006-03-23 00:00:12 +01001239{
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +02001240#if PAGE_SIZE == 0x1000
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +11001241 return spufs_ps_nopfn(vma, address, 0x1c000, 0x1000);
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +02001242#elif PAGE_SIZE == 0x10000
1243 /* For 64k pages, both signal1 and signal2 can be used to mmap the whole
1244 * signal 1 and 2 area
1245 */
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +11001246 return spufs_ps_nopfn(vma, address, 0x10000, 0x10000);
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +02001247#else
1248#error unsupported page size
1249#endif
Mark Nutter6df10a82006-03-23 00:00:12 +01001250}
1251
1252static struct vm_operations_struct spufs_signal2_mmap_vmops = {
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +11001253 .nopfn = spufs_signal2_mmap_nopfn,
Mark Nutter6df10a82006-03-23 00:00:12 +01001254};
1255
1256static int spufs_signal2_mmap(struct file *file, struct vm_area_struct *vma)
1257{
1258 if (!(vma->vm_flags & VM_SHARED))
1259 return -EINVAL;
1260
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +11001261 vma->vm_flags |= VM_IO | VM_PFNMAP;
Mark Nutter6df10a82006-03-23 00:00:12 +01001262 vma->vm_page_prot = __pgprot(pgprot_val(vma->vm_page_prot)
Benjamin Herrenschmidt23cc7702006-06-23 20:57:47 +02001263 | _PAGE_NO_CACHE | _PAGE_GUARDED);
Mark Nutter6df10a82006-03-23 00:00:12 +01001264
1265 vma->vm_ops = &spufs_signal2_mmap_vmops;
1266 return 0;
1267}
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +02001268#else /* SPUFS_MMAP_4K */
1269#define spufs_signal2_mmap NULL
1270#endif /* !SPUFS_MMAP_4K */
Mark Nutter6df10a82006-03-23 00:00:12 +01001271
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -08001272static const struct file_operations spufs_signal2_fops = {
Mark Nutter6df10a82006-03-23 00:00:12 +01001273 .open = spufs_signal2_open,
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +02001274 .release = spufs_signal2_release,
Arnd Bergmann67207b92005-11-15 15:53:48 -05001275 .read = spufs_signal2_read,
1276 .write = spufs_signal2_write,
Mark Nutter6df10a82006-03-23 00:00:12 +01001277 .mmap = spufs_signal2_mmap,
Arnd Bergmann67207b92005-11-15 15:53:48 -05001278};
1279
Jeremy Kerrd054b362007-07-20 21:39:31 +02001280static const struct file_operations spufs_signal2_nosched_fops = {
1281 .open = spufs_signal2_open,
1282 .release = spufs_signal2_release,
1283 .write = spufs_signal2_write,
1284 .mmap = spufs_signal2_mmap,
1285};
1286
Michael Ellerman104f0cc2007-09-19 14:38:12 +10001287/*
1288 * This is a wrapper around DEFINE_SIMPLE_ATTRIBUTE which does the
1289 * work of acquiring (or not) the SPU context before calling through
1290 * to the actual get routine. The set routine is called directly.
1291 */
1292#define SPU_ATTR_NOACQUIRE 0
1293#define SPU_ATTR_ACQUIRE 1
1294#define SPU_ATTR_ACQUIRE_SAVED 2
1295
1296#define DEFINE_SPUFS_ATTRIBUTE(__name, __get, __set, __fmt, __acquire) \
Christoph Hellwig197b1a82007-12-20 16:39:59 +09001297static int __##__get(void *data, u64 *val) \
Michael Ellerman104f0cc2007-09-19 14:38:12 +10001298{ \
1299 struct spu_context *ctx = data; \
Christoph Hellwigc9101bd2007-12-20 16:39:59 +09001300 int ret = 0; \
Michael Ellerman104f0cc2007-09-19 14:38:12 +10001301 \
1302 if (__acquire == SPU_ATTR_ACQUIRE) { \
Christoph Hellwigc9101bd2007-12-20 16:39:59 +09001303 ret = spu_acquire(ctx); \
1304 if (ret) \
1305 return ret; \
Christoph Hellwig197b1a82007-12-20 16:39:59 +09001306 *val = __get(ctx); \
Michael Ellerman104f0cc2007-09-19 14:38:12 +10001307 spu_release(ctx); \
1308 } else if (__acquire == SPU_ATTR_ACQUIRE_SAVED) { \
Christoph Hellwigc9101bd2007-12-20 16:39:59 +09001309 ret = spu_acquire_saved(ctx); \
1310 if (ret) \
1311 return ret; \
Christoph Hellwig197b1a82007-12-20 16:39:59 +09001312 *val = __get(ctx); \
Michael Ellerman104f0cc2007-09-19 14:38:12 +10001313 spu_release_saved(ctx); \
1314 } else \
Christoph Hellwig197b1a82007-12-20 16:39:59 +09001315 *val = __get(ctx); \
Michael Ellerman104f0cc2007-09-19 14:38:12 +10001316 \
Christoph Hellwig197b1a82007-12-20 16:39:59 +09001317 return 0; \
Michael Ellerman104f0cc2007-09-19 14:38:12 +10001318} \
Christoph Hellwig197b1a82007-12-20 16:39:59 +09001319DEFINE_SPUFS_SIMPLE_ATTRIBUTE(__name, __##__get, __set, __fmt);
Michael Ellerman104f0cc2007-09-19 14:38:12 +10001320
Christoph Hellwig197b1a82007-12-20 16:39:59 +09001321static int spufs_signal1_type_set(void *data, u64 val)
Arnd Bergmann67207b92005-11-15 15:53:48 -05001322{
1323 struct spu_context *ctx = data;
Christoph Hellwigc9101bd2007-12-20 16:39:59 +09001324 int ret;
Arnd Bergmann67207b92005-11-15 15:53:48 -05001325
Christoph Hellwigc9101bd2007-12-20 16:39:59 +09001326 ret = spu_acquire(ctx);
1327 if (ret)
1328 return ret;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001329 ctx->ops->signal1_type_set(ctx, val);
1330 spu_release(ctx);
Christoph Hellwig197b1a82007-12-20 16:39:59 +09001331
1332 return 0;
Arnd Bergmann67207b92005-11-15 15:53:48 -05001333}
1334
Michael Ellerman104f0cc2007-09-19 14:38:12 +10001335static u64 spufs_signal1_type_get(struct spu_context *ctx)
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001336{
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001337 return ctx->ops->signal1_type_get(ctx);
1338}
Michael Ellerman104f0cc2007-09-19 14:38:12 +10001339DEFINE_SPUFS_ATTRIBUTE(spufs_signal1_type, spufs_signal1_type_get,
1340 spufs_signal1_type_set, "%llu", SPU_ATTR_ACQUIRE);
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001341
Arnd Bergmann67207b92005-11-15 15:53:48 -05001342
Christoph Hellwig197b1a82007-12-20 16:39:59 +09001343static int spufs_signal2_type_set(void *data, u64 val)
Arnd Bergmann67207b92005-11-15 15:53:48 -05001344{
1345 struct spu_context *ctx = data;
Christoph Hellwigc9101bd2007-12-20 16:39:59 +09001346 int ret;
Arnd Bergmann67207b92005-11-15 15:53:48 -05001347
Christoph Hellwigc9101bd2007-12-20 16:39:59 +09001348 ret = spu_acquire(ctx);
1349 if (ret)
1350 return ret;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001351 ctx->ops->signal2_type_set(ctx, val);
1352 spu_release(ctx);
Christoph Hellwig197b1a82007-12-20 16:39:59 +09001353
1354 return 0;
Arnd Bergmann67207b92005-11-15 15:53:48 -05001355}
1356
Michael Ellerman104f0cc2007-09-19 14:38:12 +10001357static u64 spufs_signal2_type_get(struct spu_context *ctx)
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001358{
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001359 return ctx->ops->signal2_type_get(ctx);
1360}
Michael Ellerman104f0cc2007-09-19 14:38:12 +10001361DEFINE_SPUFS_ATTRIBUTE(spufs_signal2_type, spufs_signal2_type_get,
1362 spufs_signal2_type_set, "%llu", SPU_ATTR_ACQUIRE);
Arnd Bergmann67207b92005-11-15 15:53:48 -05001363
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +02001364#if SPUFS_MMAP_4K
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +11001365static unsigned long spufs_mss_mmap_nopfn(struct vm_area_struct *vma,
1366 unsigned long address)
arnd@arndb.ded9379c42006-06-19 20:33:21 +02001367{
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +11001368 return spufs_ps_nopfn(vma, address, 0x0000, 0x1000);
arnd@arndb.ded9379c42006-06-19 20:33:21 +02001369}
1370
1371static struct vm_operations_struct spufs_mss_mmap_vmops = {
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +11001372 .nopfn = spufs_mss_mmap_nopfn,
arnd@arndb.ded9379c42006-06-19 20:33:21 +02001373};
1374
1375/*
1376 * mmap support for problem state MFC DMA area [0x0000 - 0x0fff].
arnd@arndb.ded9379c42006-06-19 20:33:21 +02001377 */
1378static int spufs_mss_mmap(struct file *file, struct vm_area_struct *vma)
1379{
1380 if (!(vma->vm_flags & VM_SHARED))
1381 return -EINVAL;
1382
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +11001383 vma->vm_flags |= VM_IO | VM_PFNMAP;
arnd@arndb.ded9379c42006-06-19 20:33:21 +02001384 vma->vm_page_prot = __pgprot(pgprot_val(vma->vm_page_prot)
Benjamin Herrenschmidt23cc7702006-06-23 20:57:47 +02001385 | _PAGE_NO_CACHE | _PAGE_GUARDED);
arnd@arndb.ded9379c42006-06-19 20:33:21 +02001386
1387 vma->vm_ops = &spufs_mss_mmap_vmops;
1388 return 0;
1389}
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +02001390#else /* SPUFS_MMAP_4K */
1391#define spufs_mss_mmap NULL
1392#endif /* !SPUFS_MMAP_4K */
arnd@arndb.ded9379c42006-06-19 20:33:21 +02001393
1394static int spufs_mss_open(struct inode *inode, struct file *file)
1395{
1396 struct spufs_inode_info *i = SPUFS_I(inode);
Benjamin Herrenschmidt17e0e272007-02-13 11:46:08 +11001397 struct spu_context *ctx = i->i_ctx;
arnd@arndb.ded9379c42006-06-19 20:33:21 +02001398
1399 file->private_data = i->i_ctx;
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +02001400
Christoph Hellwig47d3a5f2007-06-04 23:26:51 +10001401 mutex_lock(&ctx->mapping_lock);
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +02001402 if (!i->i_openers++)
1403 ctx->mss = inode->i_mapping;
Christoph Hellwig47d3a5f2007-06-04 23:26:51 +10001404 mutex_unlock(&ctx->mapping_lock);
arnd@arndb.ded9379c42006-06-19 20:33:21 +02001405 return nonseekable_open(inode, file);
1406}
1407
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +02001408static int
1409spufs_mss_release(struct inode *inode, struct file *file)
1410{
1411 struct spufs_inode_info *i = SPUFS_I(inode);
1412 struct spu_context *ctx = i->i_ctx;
1413
Christoph Hellwig47d3a5f2007-06-04 23:26:51 +10001414 mutex_lock(&ctx->mapping_lock);
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +02001415 if (!--i->i_openers)
1416 ctx->mss = NULL;
Christoph Hellwig47d3a5f2007-06-04 23:26:51 +10001417 mutex_unlock(&ctx->mapping_lock);
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +02001418 return 0;
1419}
1420
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -08001421static const struct file_operations spufs_mss_fops = {
arnd@arndb.ded9379c42006-06-19 20:33:21 +02001422 .open = spufs_mss_open,
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +02001423 .release = spufs_mss_release,
arnd@arndb.ded9379c42006-06-19 20:33:21 +02001424 .mmap = spufs_mss_mmap,
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +02001425};
1426
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +11001427static unsigned long spufs_psmap_mmap_nopfn(struct vm_area_struct *vma,
1428 unsigned long address)
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +02001429{
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +11001430 return spufs_ps_nopfn(vma, address, 0x0000, 0x20000);
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +02001431}
1432
1433static struct vm_operations_struct spufs_psmap_mmap_vmops = {
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +11001434 .nopfn = spufs_psmap_mmap_nopfn,
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +02001435};
1436
1437/*
1438 * mmap support for full problem state area [0x00000 - 0x1ffff].
1439 */
1440static int spufs_psmap_mmap(struct file *file, struct vm_area_struct *vma)
1441{
1442 if (!(vma->vm_flags & VM_SHARED))
1443 return -EINVAL;
1444
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +11001445 vma->vm_flags |= VM_IO | VM_PFNMAP;
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +02001446 vma->vm_page_prot = __pgprot(pgprot_val(vma->vm_page_prot)
1447 | _PAGE_NO_CACHE | _PAGE_GUARDED);
1448
1449 vma->vm_ops = &spufs_psmap_mmap_vmops;
1450 return 0;
1451}
1452
1453static int spufs_psmap_open(struct inode *inode, struct file *file)
1454{
1455 struct spufs_inode_info *i = SPUFS_I(inode);
Benjamin Herrenschmidt17e0e272007-02-13 11:46:08 +11001456 struct spu_context *ctx = i->i_ctx;
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +02001457
Christoph Hellwig47d3a5f2007-06-04 23:26:51 +10001458 mutex_lock(&ctx->mapping_lock);
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +02001459 file->private_data = i->i_ctx;
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +02001460 if (!i->i_openers++)
1461 ctx->psmap = inode->i_mapping;
Christoph Hellwig47d3a5f2007-06-04 23:26:51 +10001462 mutex_unlock(&ctx->mapping_lock);
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +02001463 return nonseekable_open(inode, file);
1464}
1465
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +02001466static int
1467spufs_psmap_release(struct inode *inode, struct file *file)
1468{
1469 struct spufs_inode_info *i = SPUFS_I(inode);
1470 struct spu_context *ctx = i->i_ctx;
1471
Christoph Hellwig47d3a5f2007-06-04 23:26:51 +10001472 mutex_lock(&ctx->mapping_lock);
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +02001473 if (!--i->i_openers)
1474 ctx->psmap = NULL;
Christoph Hellwig47d3a5f2007-06-04 23:26:51 +10001475 mutex_unlock(&ctx->mapping_lock);
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +02001476 return 0;
1477}
1478
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -08001479static const struct file_operations spufs_psmap_fops = {
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +02001480 .open = spufs_psmap_open,
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +02001481 .release = spufs_psmap_release,
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +02001482 .mmap = spufs_psmap_mmap,
arnd@arndb.ded9379c42006-06-19 20:33:21 +02001483};
1484
1485
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +02001486#if SPUFS_MMAP_4K
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +11001487static unsigned long spufs_mfc_mmap_nopfn(struct vm_area_struct *vma,
1488 unsigned long address)
Mark Nutter6df10a82006-03-23 00:00:12 +01001489{
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +11001490 return spufs_ps_nopfn(vma, address, 0x3000, 0x1000);
Mark Nutter6df10a82006-03-23 00:00:12 +01001491}
1492
1493static struct vm_operations_struct spufs_mfc_mmap_vmops = {
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +11001494 .nopfn = spufs_mfc_mmap_nopfn,
Mark Nutter6df10a82006-03-23 00:00:12 +01001495};
1496
1497/*
1498 * mmap support for problem state MFC DMA area [0x0000 - 0x0fff].
Mark Nutter6df10a82006-03-23 00:00:12 +01001499 */
1500static int spufs_mfc_mmap(struct file *file, struct vm_area_struct *vma)
1501{
1502 if (!(vma->vm_flags & VM_SHARED))
1503 return -EINVAL;
1504
Benjamin Herrenschmidt78bde532007-02-13 11:46:06 +11001505 vma->vm_flags |= VM_IO | VM_PFNMAP;
Mark Nutter6df10a82006-03-23 00:00:12 +01001506 vma->vm_page_prot = __pgprot(pgprot_val(vma->vm_page_prot)
Benjamin Herrenschmidt23cc7702006-06-23 20:57:47 +02001507 | _PAGE_NO_CACHE | _PAGE_GUARDED);
Mark Nutter6df10a82006-03-23 00:00:12 +01001508
1509 vma->vm_ops = &spufs_mfc_mmap_vmops;
1510 return 0;
1511}
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +02001512#else /* SPUFS_MMAP_4K */
1513#define spufs_mfc_mmap NULL
1514#endif /* !SPUFS_MMAP_4K */
Arnd Bergmanna33a7d72006-03-23 00:00:11 +01001515
1516static int spufs_mfc_open(struct inode *inode, struct file *file)
1517{
1518 struct spufs_inode_info *i = SPUFS_I(inode);
1519 struct spu_context *ctx = i->i_ctx;
1520
1521 /* we don't want to deal with DMA into other processes */
1522 if (ctx->owner != current->mm)
1523 return -EINVAL;
1524
1525 if (atomic_read(&inode->i_count) != 1)
1526 return -EBUSY;
1527
Christoph Hellwig47d3a5f2007-06-04 23:26:51 +10001528 mutex_lock(&ctx->mapping_lock);
Arnd Bergmanna33a7d72006-03-23 00:00:11 +01001529 file->private_data = ctx;
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +02001530 if (!i->i_openers++)
1531 ctx->mfc = inode->i_mapping;
Christoph Hellwig47d3a5f2007-06-04 23:26:51 +10001532 mutex_unlock(&ctx->mapping_lock);
Arnd Bergmanna33a7d72006-03-23 00:00:11 +01001533 return nonseekable_open(inode, file);
1534}
1535
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +02001536static int
1537spufs_mfc_release(struct inode *inode, struct file *file)
1538{
1539 struct spufs_inode_info *i = SPUFS_I(inode);
1540 struct spu_context *ctx = i->i_ctx;
1541
Christoph Hellwig47d3a5f2007-06-04 23:26:51 +10001542 mutex_lock(&ctx->mapping_lock);
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +02001543 if (!--i->i_openers)
1544 ctx->mfc = NULL;
Christoph Hellwig47d3a5f2007-06-04 23:26:51 +10001545 mutex_unlock(&ctx->mapping_lock);
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +02001546 return 0;
1547}
1548
Arnd Bergmanna33a7d72006-03-23 00:00:11 +01001549/* interrupt-level mfc callback function. */
1550void spufs_mfc_callback(struct spu *spu)
1551{
1552 struct spu_context *ctx = spu->ctx;
1553
Luke Browninge65c2f62007-12-20 16:39:59 +09001554 if (!ctx)
1555 return;
1556
Arnd Bergmanna33a7d72006-03-23 00:00:11 +01001557 wake_up_all(&ctx->mfc_wq);
1558
Harvey Harrisone48b1b42008-03-29 08:21:07 +11001559 pr_debug("%s %s\n", __func__, spu->name);
Arnd Bergmanna33a7d72006-03-23 00:00:11 +01001560 if (ctx->mfc_fasync) {
1561 u32 free_elements, tagstatus;
1562 unsigned int mask;
1563
1564 /* no need for spu_acquire in interrupt context */
1565 free_elements = ctx->ops->get_mfc_free_elements(ctx);
1566 tagstatus = ctx->ops->read_mfc_tagstatus(ctx);
1567
1568 mask = 0;
1569 if (free_elements & 0xffff)
1570 mask |= POLLOUT;
1571 if (tagstatus & ctx->tagwait)
1572 mask |= POLLIN;
1573
1574 kill_fasync(&ctx->mfc_fasync, SIGIO, mask);
1575 }
1576}
1577
1578static int spufs_read_mfc_tagstatus(struct spu_context *ctx, u32 *status)
1579{
1580 /* See if there is one tag group is complete */
1581 /* FIXME we need locking around tagwait */
1582 *status = ctx->ops->read_mfc_tagstatus(ctx) & ctx->tagwait;
1583 ctx->tagwait &= ~*status;
1584 if (*status)
1585 return 1;
1586
1587 /* enable interrupt waiting for any tag group,
1588 may silently fail if interrupts are already enabled */
1589 ctx->ops->set_mfc_query(ctx, ctx->tagwait, 1);
1590 return 0;
1591}
1592
1593static ssize_t spufs_mfc_read(struct file *file, char __user *buffer,
1594 size_t size, loff_t *pos)
1595{
1596 struct spu_context *ctx = file->private_data;
1597 int ret = -EINVAL;
1598 u32 status;
1599
1600 if (size != 4)
1601 goto out;
1602
Christoph Hellwigc9101bd2007-12-20 16:39:59 +09001603 ret = spu_acquire(ctx);
1604 if (ret)
1605 return ret;
1606
1607 ret = -EINVAL;
Arnd Bergmanna33a7d72006-03-23 00:00:11 +01001608 if (file->f_flags & O_NONBLOCK) {
1609 status = ctx->ops->read_mfc_tagstatus(ctx);
1610 if (!(status & ctx->tagwait))
1611 ret = -EAGAIN;
1612 else
Christoph Hellwigc9101bd2007-12-20 16:39:59 +09001613 /* XXX(hch): shouldn't we clear ret here? */
Arnd Bergmanna33a7d72006-03-23 00:00:11 +01001614 ctx->tagwait &= ~status;
1615 } else {
1616 ret = spufs_wait(ctx->mfc_wq,
1617 spufs_read_mfc_tagstatus(ctx, &status));
Christoph Hellwigeebead52008-02-08 15:50:41 +11001618 if (ret)
1619 goto out;
Arnd Bergmanna33a7d72006-03-23 00:00:11 +01001620 }
1621 spu_release(ctx);
1622
Arnd Bergmanna33a7d72006-03-23 00:00:11 +01001623 ret = 4;
1624 if (copy_to_user(buffer, &status, 4))
1625 ret = -EFAULT;
1626
1627out:
1628 return ret;
1629}
1630
1631static int spufs_check_valid_dma(struct mfc_dma_command *cmd)
1632{
1633 pr_debug("queueing DMA %x %lx %x %x %x\n", cmd->lsa,
1634 cmd->ea, cmd->size, cmd->tag, cmd->cmd);
1635
1636 switch (cmd->cmd) {
1637 case MFC_PUT_CMD:
1638 case MFC_PUTF_CMD:
1639 case MFC_PUTB_CMD:
1640 case MFC_GET_CMD:
1641 case MFC_GETF_CMD:
1642 case MFC_GETB_CMD:
1643 break;
1644 default:
1645 pr_debug("invalid DMA opcode %x\n", cmd->cmd);
1646 return -EIO;
1647 }
1648
1649 if ((cmd->lsa & 0xf) != (cmd->ea &0xf)) {
1650 pr_debug("invalid DMA alignment, ea %lx lsa %x\n",
1651 cmd->ea, cmd->lsa);
1652 return -EIO;
1653 }
1654
1655 switch (cmd->size & 0xf) {
1656 case 1:
1657 break;
1658 case 2:
1659 if (cmd->lsa & 1)
1660 goto error;
1661 break;
1662 case 4:
1663 if (cmd->lsa & 3)
1664 goto error;
1665 break;
1666 case 8:
1667 if (cmd->lsa & 7)
1668 goto error;
1669 break;
1670 case 0:
1671 if (cmd->lsa & 15)
1672 goto error;
1673 break;
1674 error:
1675 default:
1676 pr_debug("invalid DMA alignment %x for size %x\n",
1677 cmd->lsa & 0xf, cmd->size);
1678 return -EIO;
1679 }
1680
1681 if (cmd->size > 16 * 1024) {
1682 pr_debug("invalid DMA size %x\n", cmd->size);
1683 return -EIO;
1684 }
1685
1686 if (cmd->tag & 0xfff0) {
1687 /* we reserve the higher tag numbers for kernel use */
1688 pr_debug("invalid DMA tag\n");
1689 return -EIO;
1690 }
1691
1692 if (cmd->class) {
1693 /* not supported in this version */
1694 pr_debug("invalid DMA class\n");
1695 return -EIO;
1696 }
1697
1698 return 0;
1699}
1700
1701static int spu_send_mfc_command(struct spu_context *ctx,
1702 struct mfc_dma_command cmd,
1703 int *error)
1704{
1705 *error = ctx->ops->send_mfc_command(ctx, &cmd);
1706 if (*error == -EAGAIN) {
1707 /* wait for any tag group to complete
1708 so we have space for the new command */
1709 ctx->ops->set_mfc_query(ctx, ctx->tagwait, 1);
1710 /* try again, because the queue might be
1711 empty again */
1712 *error = ctx->ops->send_mfc_command(ctx, &cmd);
1713 if (*error == -EAGAIN)
1714 return 0;
1715 }
1716 return 1;
1717}
1718
1719static ssize_t spufs_mfc_write(struct file *file, const char __user *buffer,
1720 size_t size, loff_t *pos)
1721{
1722 struct spu_context *ctx = file->private_data;
1723 struct mfc_dma_command cmd;
1724 int ret = -EINVAL;
1725
1726 if (size != sizeof cmd)
1727 goto out;
1728
1729 ret = -EFAULT;
1730 if (copy_from_user(&cmd, buffer, sizeof cmd))
1731 goto out;
1732
1733 ret = spufs_check_valid_dma(&cmd);
1734 if (ret)
1735 goto out;
1736
Christoph Hellwigc9101bd2007-12-20 16:39:59 +09001737 ret = spu_acquire(ctx);
1738 if (ret)
1739 goto out;
1740
Arnd Bergmann33bfd7a2007-12-20 16:39:59 +09001741 ret = spufs_wait(ctx->run_wq, ctx->state == SPU_STATE_RUNNABLE);
Akinobu Mita577f8f12007-04-23 21:08:18 +02001742 if (ret)
1743 goto out;
1744
Arnd Bergmanna33a7d72006-03-23 00:00:11 +01001745 if (file->f_flags & O_NONBLOCK) {
1746 ret = ctx->ops->send_mfc_command(ctx, &cmd);
1747 } else {
1748 int status;
1749 ret = spufs_wait(ctx->mfc_wq,
1750 spu_send_mfc_command(ctx, cmd, &status));
Christoph Hellwigeebead52008-02-08 15:50:41 +11001751 if (ret)
1752 goto out;
Arnd Bergmanna33a7d72006-03-23 00:00:11 +01001753 if (status)
1754 ret = status;
1755 }
Arnd Bergmanna33a7d72006-03-23 00:00:11 +01001756
1757 if (ret)
Kazunori Asayama933b0e32007-06-29 10:58:08 +10001758 goto out_unlock;
Arnd Bergmanna33a7d72006-03-23 00:00:11 +01001759
1760 ctx->tagwait |= 1 << cmd.tag;
Masato Noguchi3692dc62006-11-20 18:45:07 +01001761 ret = size;
Arnd Bergmanna33a7d72006-03-23 00:00:11 +01001762
Kazunori Asayama933b0e32007-06-29 10:58:08 +10001763out_unlock:
1764 spu_release(ctx);
Arnd Bergmanna33a7d72006-03-23 00:00:11 +01001765out:
1766 return ret;
1767}
1768
1769static unsigned int spufs_mfc_poll(struct file *file,poll_table *wait)
1770{
1771 struct spu_context *ctx = file->private_data;
1772 u32 free_elements, tagstatus;
1773 unsigned int mask;
1774
Kazunori Asayama933b0e32007-06-29 10:58:08 +10001775 poll_wait(file, &ctx->mfc_wq, wait);
1776
Christoph Hellwigc9101bd2007-12-20 16:39:59 +09001777 /*
1778 * For now keep this uninterruptible and also ignore the rule
1779 * that poll should not sleep. Will be fixed later.
1780 */
1781 mutex_lock(&ctx->state_mutex);
Arnd Bergmanna33a7d72006-03-23 00:00:11 +01001782 ctx->ops->set_mfc_query(ctx, ctx->tagwait, 2);
1783 free_elements = ctx->ops->get_mfc_free_elements(ctx);
1784 tagstatus = ctx->ops->read_mfc_tagstatus(ctx);
1785 spu_release(ctx);
1786
Arnd Bergmanna33a7d72006-03-23 00:00:11 +01001787 mask = 0;
1788 if (free_elements & 0xffff)
1789 mask |= POLLOUT | POLLWRNORM;
1790 if (tagstatus & ctx->tagwait)
1791 mask |= POLLIN | POLLRDNORM;
1792
Harvey Harrisone48b1b42008-03-29 08:21:07 +11001793 pr_debug("%s: free %d tagstatus %d tagwait %d\n", __func__,
Arnd Bergmanna33a7d72006-03-23 00:00:11 +01001794 free_elements, tagstatus, ctx->tagwait);
1795
1796 return mask;
1797}
1798
Al Viro73b6af82006-06-25 16:42:33 -07001799static int spufs_mfc_flush(struct file *file, fl_owner_t id)
Arnd Bergmanna33a7d72006-03-23 00:00:11 +01001800{
1801 struct spu_context *ctx = file->private_data;
1802 int ret;
1803
Christoph Hellwigc9101bd2007-12-20 16:39:59 +09001804 ret = spu_acquire(ctx);
1805 if (ret)
Christoph Hellwigeebead52008-02-08 15:50:41 +11001806 goto out;
Arnd Bergmanna33a7d72006-03-23 00:00:11 +01001807#if 0
1808/* this currently hangs */
1809 ret = spufs_wait(ctx->mfc_wq,
1810 ctx->ops->set_mfc_query(ctx, ctx->tagwait, 2));
1811 if (ret)
1812 goto out;
1813 ret = spufs_wait(ctx->mfc_wq,
1814 ctx->ops->read_mfc_tagstatus(ctx) == ctx->tagwait);
Christoph Hellwigeebead52008-02-08 15:50:41 +11001815 if (ret)
1816 goto out;
Arnd Bergmanna33a7d72006-03-23 00:00:11 +01001817#else
1818 ret = 0;
1819#endif
1820 spu_release(ctx);
Christoph Hellwigeebead52008-02-08 15:50:41 +11001821out:
Arnd Bergmanna33a7d72006-03-23 00:00:11 +01001822 return ret;
1823}
1824
1825static int spufs_mfc_fsync(struct file *file, struct dentry *dentry,
1826 int datasync)
1827{
Al Viro73b6af82006-06-25 16:42:33 -07001828 return spufs_mfc_flush(file, NULL);
Arnd Bergmanna33a7d72006-03-23 00:00:11 +01001829}
1830
1831static int spufs_mfc_fasync(int fd, struct file *file, int on)
1832{
1833 struct spu_context *ctx = file->private_data;
1834
1835 return fasync_helper(fd, file, on, &ctx->mfc_fasync);
1836}
1837
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -08001838static const struct file_operations spufs_mfc_fops = {
Arnd Bergmanna33a7d72006-03-23 00:00:11 +01001839 .open = spufs_mfc_open,
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +02001840 .release = spufs_mfc_release,
Arnd Bergmanna33a7d72006-03-23 00:00:11 +01001841 .read = spufs_mfc_read,
1842 .write = spufs_mfc_write,
1843 .poll = spufs_mfc_poll,
1844 .flush = spufs_mfc_flush,
1845 .fsync = spufs_mfc_fsync,
1846 .fasync = spufs_mfc_fasync,
Mark Nutter6df10a82006-03-23 00:00:12 +01001847 .mmap = spufs_mfc_mmap,
Arnd Bergmanna33a7d72006-03-23 00:00:11 +01001848};
1849
Christoph Hellwig197b1a82007-12-20 16:39:59 +09001850static int spufs_npc_set(void *data, u64 val)
Arnd Bergmann67207b92005-11-15 15:53:48 -05001851{
1852 struct spu_context *ctx = data;
Christoph Hellwigc9101bd2007-12-20 16:39:59 +09001853 int ret;
1854
1855 ret = spu_acquire(ctx);
1856 if (ret)
1857 return ret;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001858 ctx->ops->npc_write(ctx, val);
1859 spu_release(ctx);
Christoph Hellwig197b1a82007-12-20 16:39:59 +09001860
1861 return 0;
Arnd Bergmann67207b92005-11-15 15:53:48 -05001862}
1863
Michael Ellerman104f0cc2007-09-19 14:38:12 +10001864static u64 spufs_npc_get(struct spu_context *ctx)
Michael Ellerman78810ff2007-09-19 14:38:12 +10001865{
1866 return ctx->ops->npc_read(ctx);
1867}
Michael Ellerman104f0cc2007-09-19 14:38:12 +10001868DEFINE_SPUFS_ATTRIBUTE(spufs_npc_ops, spufs_npc_get, spufs_npc_set,
1869 "0x%llx\n", SPU_ATTR_ACQUIRE);
Arnd Bergmann67207b92005-11-15 15:53:48 -05001870
Christoph Hellwig197b1a82007-12-20 16:39:59 +09001871static int spufs_decr_set(void *data, u64 val)
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001872{
1873 struct spu_context *ctx = data;
1874 struct spu_lscsa *lscsa = ctx->csa.lscsa;
Christoph Hellwigc9101bd2007-12-20 16:39:59 +09001875 int ret;
1876
1877 ret = spu_acquire_saved(ctx);
1878 if (ret)
1879 return ret;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001880 lscsa->decr.slot[0] = (u32) val;
Christoph Hellwig27b1ea02007-07-20 21:39:34 +02001881 spu_release_saved(ctx);
Christoph Hellwig197b1a82007-12-20 16:39:59 +09001882
1883 return 0;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001884}
1885
Michael Ellerman104f0cc2007-09-19 14:38:12 +10001886static u64 spufs_decr_get(struct spu_context *ctx)
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001887{
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001888 struct spu_lscsa *lscsa = ctx->csa.lscsa;
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001889 return lscsa->decr.slot[0];
1890}
Michael Ellerman104f0cc2007-09-19 14:38:12 +10001891DEFINE_SPUFS_ATTRIBUTE(spufs_decr_ops, spufs_decr_get, spufs_decr_set,
1892 "0x%llx\n", SPU_ATTR_ACQUIRE_SAVED);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001893
Christoph Hellwig197b1a82007-12-20 16:39:59 +09001894static int spufs_decr_status_set(void *data, u64 val)
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001895{
1896 struct spu_context *ctx = data;
Christoph Hellwigc9101bd2007-12-20 16:39:59 +09001897 int ret;
1898
1899 ret = spu_acquire_saved(ctx);
1900 if (ret)
1901 return ret;
Masato Noguchid40a01d2007-07-20 21:39:38 +02001902 if (val)
1903 ctx->csa.priv2.mfc_control_RW |= MFC_CNTL_DECREMENTER_RUNNING;
1904 else
1905 ctx->csa.priv2.mfc_control_RW &= ~MFC_CNTL_DECREMENTER_RUNNING;
Christoph Hellwig27b1ea02007-07-20 21:39:34 +02001906 spu_release_saved(ctx);
Christoph Hellwig197b1a82007-12-20 16:39:59 +09001907
1908 return 0;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001909}
1910
Michael Ellerman104f0cc2007-09-19 14:38:12 +10001911static u64 spufs_decr_status_get(struct spu_context *ctx)
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001912{
Masato Noguchid40a01d2007-07-20 21:39:38 +02001913 if (ctx->csa.priv2.mfc_control_RW & MFC_CNTL_DECREMENTER_RUNNING)
1914 return SPU_DECR_STATUS_RUNNING;
1915 else
1916 return 0;
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001917}
Michael Ellerman104f0cc2007-09-19 14:38:12 +10001918DEFINE_SPUFS_ATTRIBUTE(spufs_decr_status_ops, spufs_decr_status_get,
1919 spufs_decr_status_set, "0x%llx\n",
1920 SPU_ATTR_ACQUIRE_SAVED);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001921
Christoph Hellwig197b1a82007-12-20 16:39:59 +09001922static int spufs_event_mask_set(void *data, u64 val)
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001923{
1924 struct spu_context *ctx = data;
1925 struct spu_lscsa *lscsa = ctx->csa.lscsa;
Christoph Hellwigc9101bd2007-12-20 16:39:59 +09001926 int ret;
1927
1928 ret = spu_acquire_saved(ctx);
1929 if (ret)
1930 return ret;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001931 lscsa->event_mask.slot[0] = (u32) val;
Christoph Hellwig27b1ea02007-07-20 21:39:34 +02001932 spu_release_saved(ctx);
Christoph Hellwig197b1a82007-12-20 16:39:59 +09001933
1934 return 0;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001935}
1936
Michael Ellerman104f0cc2007-09-19 14:38:12 +10001937static u64 spufs_event_mask_get(struct spu_context *ctx)
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001938{
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001939 struct spu_lscsa *lscsa = ctx->csa.lscsa;
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001940 return lscsa->event_mask.slot[0];
1941}
1942
Michael Ellerman104f0cc2007-09-19 14:38:12 +10001943DEFINE_SPUFS_ATTRIBUTE(spufs_event_mask_ops, spufs_event_mask_get,
1944 spufs_event_mask_set, "0x%llx\n",
1945 SPU_ATTR_ACQUIRE_SAVED);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001946
Michael Ellerman104f0cc2007-09-19 14:38:12 +10001947static u64 spufs_event_status_get(struct spu_context *ctx)
Dwayne Grant McConnellb9e3bd72006-11-20 18:44:58 +01001948{
Dwayne Grant McConnellb9e3bd72006-11-20 18:44:58 +01001949 struct spu_state *state = &ctx->csa;
Dwayne Grant McConnellb9e3bd72006-11-20 18:44:58 +01001950 u64 stat;
Dwayne Grant McConnellb9e3bd72006-11-20 18:44:58 +01001951 stat = state->spu_chnlcnt_RW[0];
1952 if (stat)
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001953 return state->spu_chnldata_RW[0];
1954 return 0;
1955}
Michael Ellerman104f0cc2007-09-19 14:38:12 +10001956DEFINE_SPUFS_ATTRIBUTE(spufs_event_status_ops, spufs_event_status_get,
1957 NULL, "0x%llx\n", SPU_ATTR_ACQUIRE_SAVED)
Dwayne Grant McConnellb9e3bd72006-11-20 18:44:58 +01001958
Christoph Hellwig197b1a82007-12-20 16:39:59 +09001959static int spufs_srr0_set(void *data, u64 val)
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001960{
1961 struct spu_context *ctx = data;
1962 struct spu_lscsa *lscsa = ctx->csa.lscsa;
Christoph Hellwigc9101bd2007-12-20 16:39:59 +09001963 int ret;
1964
1965 ret = spu_acquire_saved(ctx);
1966 if (ret)
1967 return ret;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001968 lscsa->srr0.slot[0] = (u32) val;
Christoph Hellwig27b1ea02007-07-20 21:39:34 +02001969 spu_release_saved(ctx);
Christoph Hellwig197b1a82007-12-20 16:39:59 +09001970
1971 return 0;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001972}
1973
Michael Ellerman104f0cc2007-09-19 14:38:12 +10001974static u64 spufs_srr0_get(struct spu_context *ctx)
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001975{
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001976 struct spu_lscsa *lscsa = ctx->csa.lscsa;
Michael Ellerman104f0cc2007-09-19 14:38:12 +10001977 return lscsa->srr0.slot[0];
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001978}
Michael Ellerman104f0cc2007-09-19 14:38:12 +10001979DEFINE_SPUFS_ATTRIBUTE(spufs_srr0_ops, spufs_srr0_get, spufs_srr0_set,
1980 "0x%llx\n", SPU_ATTR_ACQUIRE_SAVED)
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05001981
Michael Ellerman104f0cc2007-09-19 14:38:12 +10001982static u64 spufs_id_get(struct spu_context *ctx)
arnd@arndb.de7b1a7012006-06-19 20:33:24 +02001983{
arnd@arndb.de7b1a7012006-06-19 20:33:24 +02001984 u64 num;
1985
arnd@arndb.de7b1a7012006-06-19 20:33:24 +02001986 if (ctx->state == SPU_STATE_RUNNABLE)
1987 num = ctx->spu->number;
1988 else
1989 num = (unsigned int)-1;
arnd@arndb.de7b1a7012006-06-19 20:33:24 +02001990
1991 return num;
1992}
Michael Ellerman104f0cc2007-09-19 14:38:12 +10001993DEFINE_SPUFS_ATTRIBUTE(spufs_id_ops, spufs_id_get, NULL, "0x%llx\n",
1994 SPU_ATTR_ACQUIRE)
arnd@arndb.de7b1a7012006-06-19 20:33:24 +02001995
Michael Ellerman104f0cc2007-09-19 14:38:12 +10001996static u64 spufs_object_id_get(struct spu_context *ctx)
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01001997{
1998 /* FIXME: Should there really be no locking here? */
Michael Ellerman104f0cc2007-09-19 14:38:12 +10001999 return ctx->object_id;
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01002000}
2001
Christoph Hellwig197b1a82007-12-20 16:39:59 +09002002static int spufs_object_id_set(void *data, u64 id)
Arnd Bergmann86767272006-10-04 17:26:21 +02002003{
2004 struct spu_context *ctx = data;
2005 ctx->object_id = id;
Christoph Hellwig197b1a82007-12-20 16:39:59 +09002006
2007 return 0;
Arnd Bergmann86767272006-10-04 17:26:21 +02002008}
2009
Michael Ellerman104f0cc2007-09-19 14:38:12 +10002010DEFINE_SPUFS_ATTRIBUTE(spufs_object_id_ops, spufs_object_id_get,
2011 spufs_object_id_set, "0x%llx\n", SPU_ATTR_NOACQUIRE);
Arnd Bergmann86767272006-10-04 17:26:21 +02002012
Michael Ellerman104f0cc2007-09-19 14:38:12 +10002013static u64 spufs_lslr_get(struct spu_context *ctx)
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01002014{
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01002015 return ctx->csa.priv2.spu_lslr_RW;
2016}
Michael Ellerman104f0cc2007-09-19 14:38:12 +10002017DEFINE_SPUFS_ATTRIBUTE(spufs_lslr_ops, spufs_lslr_get, NULL, "0x%llx\n",
2018 SPU_ATTR_ACQUIRE_SAVED);
Dwayne Grant McConnellb9e3bd72006-11-20 18:44:58 +01002019
2020static int spufs_info_open(struct inode *inode, struct file *file)
2021{
2022 struct spufs_inode_info *i = SPUFS_I(inode);
2023 struct spu_context *ctx = i->i_ctx;
2024 file->private_data = ctx;
2025 return 0;
2026}
2027
Benjamin Herrenschmidtcbe709c2007-06-04 15:15:38 +10002028static int spufs_caps_show(struct seq_file *s, void *private)
2029{
2030 struct spu_context *ctx = s->private;
2031
2032 if (!(ctx->flags & SPU_CREATE_NOSCHED))
2033 seq_puts(s, "sched\n");
2034 if (!(ctx->flags & SPU_CREATE_ISOLATE))
2035 seq_puts(s, "step\n");
2036 return 0;
2037}
2038
2039static int spufs_caps_open(struct inode *inode, struct file *file)
2040{
2041 return single_open(file, spufs_caps_show, SPUFS_I(inode)->i_ctx);
2042}
2043
2044static const struct file_operations spufs_caps_fops = {
2045 .open = spufs_caps_open,
2046 .read = seq_read,
2047 .llseek = seq_lseek,
2048 .release = single_release,
2049};
2050
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01002051static ssize_t __spufs_mbox_info_read(struct spu_context *ctx,
2052 char __user *buf, size_t len, loff_t *pos)
2053{
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01002054 u32 data;
2055
Jeremy Kerrcbea9232007-12-20 16:39:59 +09002056 /* EOF if there's no entry in the mbox */
2057 if (!(ctx->csa.prob.mb_stat_R & 0x0000ff))
2058 return 0;
2059
2060 data = ctx->csa.prob.pu_mb_R;
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01002061
2062 return simple_read_from_buffer(buf, len, pos, &data, sizeof data);
2063}
2064
Dwayne Grant McConnell69a2f002006-11-20 18:45:00 +01002065static ssize_t spufs_mbox_info_read(struct file *file, char __user *buf,
2066 size_t len, loff_t *pos)
2067{
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01002068 int ret;
Dwayne Grant McConnell69a2f002006-11-20 18:45:00 +01002069 struct spu_context *ctx = file->private_data;
Dwayne Grant McConnell69a2f002006-11-20 18:45:00 +01002070
2071 if (!access_ok(VERIFY_WRITE, buf, len))
2072 return -EFAULT;
2073
Christoph Hellwigc9101bd2007-12-20 16:39:59 +09002074 ret = spu_acquire_saved(ctx);
2075 if (ret)
2076 return ret;
Dwayne Grant McConnell69a2f002006-11-20 18:45:00 +01002077 spin_lock(&ctx->csa.register_lock);
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01002078 ret = __spufs_mbox_info_read(ctx, buf, len, pos);
Dwayne Grant McConnell69a2f002006-11-20 18:45:00 +01002079 spin_unlock(&ctx->csa.register_lock);
Christoph Hellwig27b1ea02007-07-20 21:39:34 +02002080 spu_release_saved(ctx);
Dwayne Grant McConnell69a2f002006-11-20 18:45:00 +01002081
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01002082 return ret;
Dwayne Grant McConnell69a2f002006-11-20 18:45:00 +01002083}
2084
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -08002085static const struct file_operations spufs_mbox_info_fops = {
Dwayne Grant McConnell69a2f002006-11-20 18:45:00 +01002086 .open = spufs_info_open,
2087 .read = spufs_mbox_info_read,
2088 .llseek = generic_file_llseek,
2089};
2090
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01002091static ssize_t __spufs_ibox_info_read(struct spu_context *ctx,
2092 char __user *buf, size_t len, loff_t *pos)
2093{
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01002094 u32 data;
2095
Jeremy Kerrcbea9232007-12-20 16:39:59 +09002096 /* EOF if there's no entry in the ibox */
2097 if (!(ctx->csa.prob.mb_stat_R & 0xff0000))
2098 return 0;
2099
2100 data = ctx->csa.priv2.puint_mb_R;
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01002101
2102 return simple_read_from_buffer(buf, len, pos, &data, sizeof data);
2103}
2104
Dwayne Grant McConnell69a2f002006-11-20 18:45:00 +01002105static ssize_t spufs_ibox_info_read(struct file *file, char __user *buf,
2106 size_t len, loff_t *pos)
2107{
2108 struct spu_context *ctx = file->private_data;
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01002109 int ret;
Dwayne Grant McConnell69a2f002006-11-20 18:45:00 +01002110
2111 if (!access_ok(VERIFY_WRITE, buf, len))
2112 return -EFAULT;
2113
Christoph Hellwigc9101bd2007-12-20 16:39:59 +09002114 ret = spu_acquire_saved(ctx);
2115 if (ret)
2116 return ret;
Dwayne Grant McConnell69a2f002006-11-20 18:45:00 +01002117 spin_lock(&ctx->csa.register_lock);
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01002118 ret = __spufs_ibox_info_read(ctx, buf, len, pos);
Dwayne Grant McConnell69a2f002006-11-20 18:45:00 +01002119 spin_unlock(&ctx->csa.register_lock);
Christoph Hellwig27b1ea02007-07-20 21:39:34 +02002120 spu_release_saved(ctx);
Dwayne Grant McConnell69a2f002006-11-20 18:45:00 +01002121
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01002122 return ret;
Dwayne Grant McConnell69a2f002006-11-20 18:45:00 +01002123}
2124
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -08002125static const struct file_operations spufs_ibox_info_fops = {
Dwayne Grant McConnell69a2f002006-11-20 18:45:00 +01002126 .open = spufs_info_open,
2127 .read = spufs_ibox_info_read,
2128 .llseek = generic_file_llseek,
2129};
2130
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01002131static ssize_t __spufs_wbox_info_read(struct spu_context *ctx,
2132 char __user *buf, size_t len, loff_t *pos)
2133{
2134 int i, cnt;
2135 u32 data[4];
2136 u32 wbox_stat;
2137
2138 wbox_stat = ctx->csa.prob.mb_stat_R;
2139 cnt = 4 - ((wbox_stat & 0x00ff00) >> 8);
2140 for (i = 0; i < cnt; i++) {
2141 data[i] = ctx->csa.spu_mailbox_data[i];
2142 }
2143
2144 return simple_read_from_buffer(buf, len, pos, &data,
2145 cnt * sizeof(u32));
2146}
2147
Dwayne Grant McConnell69a2f002006-11-20 18:45:00 +01002148static ssize_t spufs_wbox_info_read(struct file *file, char __user *buf,
2149 size_t len, loff_t *pos)
2150{
2151 struct spu_context *ctx = file->private_data;
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01002152 int ret;
Dwayne Grant McConnell69a2f002006-11-20 18:45:00 +01002153
2154 if (!access_ok(VERIFY_WRITE, buf, len))
2155 return -EFAULT;
2156
Christoph Hellwigc9101bd2007-12-20 16:39:59 +09002157 ret = spu_acquire_saved(ctx);
2158 if (ret)
2159 return ret;
Dwayne Grant McConnell69a2f002006-11-20 18:45:00 +01002160 spin_lock(&ctx->csa.register_lock);
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01002161 ret = __spufs_wbox_info_read(ctx, buf, len, pos);
Dwayne Grant McConnell69a2f002006-11-20 18:45:00 +01002162 spin_unlock(&ctx->csa.register_lock);
Christoph Hellwig27b1ea02007-07-20 21:39:34 +02002163 spu_release_saved(ctx);
Dwayne Grant McConnell69a2f002006-11-20 18:45:00 +01002164
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01002165 return ret;
Dwayne Grant McConnell69a2f002006-11-20 18:45:00 +01002166}
2167
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -08002168static const struct file_operations spufs_wbox_info_fops = {
Dwayne Grant McConnell69a2f002006-11-20 18:45:00 +01002169 .open = spufs_info_open,
2170 .read = spufs_wbox_info_read,
2171 .llseek = generic_file_llseek,
2172};
2173
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01002174static ssize_t __spufs_dma_info_read(struct spu_context *ctx,
2175 char __user *buf, size_t len, loff_t *pos)
Dwayne Grant McConnellb9e3bd72006-11-20 18:44:58 +01002176{
Dwayne Grant McConnellb9e3bd72006-11-20 18:44:58 +01002177 struct spu_dma_info info;
2178 struct mfc_cq_sr *qp, *spuqp;
2179 int i;
2180
Dwayne Grant McConnellb9e3bd72006-11-20 18:44:58 +01002181 info.dma_info_type = ctx->csa.priv2.spu_tag_status_query_RW;
2182 info.dma_info_mask = ctx->csa.lscsa->tag_mask.slot[0];
2183 info.dma_info_status = ctx->csa.spu_chnldata_RW[24];
2184 info.dma_info_stall_and_notify = ctx->csa.spu_chnldata_RW[25];
2185 info.dma_info_atomic_command_status = ctx->csa.spu_chnldata_RW[27];
2186 for (i = 0; i < 16; i++) {
2187 qp = &info.dma_info_command_data[i];
2188 spuqp = &ctx->csa.priv2.spuq[i];
2189
2190 qp->mfc_cq_data0_RW = spuqp->mfc_cq_data0_RW;
2191 qp->mfc_cq_data1_RW = spuqp->mfc_cq_data1_RW;
2192 qp->mfc_cq_data2_RW = spuqp->mfc_cq_data2_RW;
2193 qp->mfc_cq_data3_RW = spuqp->mfc_cq_data3_RW;
2194 }
Dwayne Grant McConnellb9e3bd72006-11-20 18:44:58 +01002195
2196 return simple_read_from_buffer(buf, len, pos, &info,
2197 sizeof info);
2198}
2199
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01002200static ssize_t spufs_dma_info_read(struct file *file, char __user *buf,
2201 size_t len, loff_t *pos)
2202{
2203 struct spu_context *ctx = file->private_data;
2204 int ret;
2205
2206 if (!access_ok(VERIFY_WRITE, buf, len))
2207 return -EFAULT;
2208
Christoph Hellwigc9101bd2007-12-20 16:39:59 +09002209 ret = spu_acquire_saved(ctx);
2210 if (ret)
2211 return ret;
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01002212 spin_lock(&ctx->csa.register_lock);
2213 ret = __spufs_dma_info_read(ctx, buf, len, pos);
2214 spin_unlock(&ctx->csa.register_lock);
Christoph Hellwig27b1ea02007-07-20 21:39:34 +02002215 spu_release_saved(ctx);
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01002216
2217 return ret;
2218}
2219
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -08002220static const struct file_operations spufs_dma_info_fops = {
Dwayne Grant McConnellb9e3bd72006-11-20 18:44:58 +01002221 .open = spufs_info_open,
2222 .read = spufs_dma_info_read,
2223};
2224
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01002225static ssize_t __spufs_proxydma_info_read(struct spu_context *ctx,
2226 char __user *buf, size_t len, loff_t *pos)
Dwayne Grant McConnellb9e3bd72006-11-20 18:44:58 +01002227{
Dwayne Grant McConnellb9e3bd72006-11-20 18:44:58 +01002228 struct spu_proxydma_info info;
Dwayne Grant McConnellb9e3bd72006-11-20 18:44:58 +01002229 struct mfc_cq_sr *qp, *puqp;
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01002230 int ret = sizeof info;
Dwayne Grant McConnellb9e3bd72006-11-20 18:44:58 +01002231 int i;
2232
2233 if (len < ret)
2234 return -EINVAL;
2235
2236 if (!access_ok(VERIFY_WRITE, buf, len))
2237 return -EFAULT;
2238
Dwayne Grant McConnellb9e3bd72006-11-20 18:44:58 +01002239 info.proxydma_info_type = ctx->csa.prob.dma_querytype_RW;
2240 info.proxydma_info_mask = ctx->csa.prob.dma_querymask_RW;
2241 info.proxydma_info_status = ctx->csa.prob.dma_tagstatus_R;
2242 for (i = 0; i < 8; i++) {
2243 qp = &info.proxydma_info_command_data[i];
2244 puqp = &ctx->csa.priv2.puq[i];
2245
2246 qp->mfc_cq_data0_RW = puqp->mfc_cq_data0_RW;
2247 qp->mfc_cq_data1_RW = puqp->mfc_cq_data1_RW;
2248 qp->mfc_cq_data2_RW = puqp->mfc_cq_data2_RW;
2249 qp->mfc_cq_data3_RW = puqp->mfc_cq_data3_RW;
2250 }
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01002251
2252 return simple_read_from_buffer(buf, len, pos, &info,
2253 sizeof info);
2254}
2255
2256static ssize_t spufs_proxydma_info_read(struct file *file, char __user *buf,
2257 size_t len, loff_t *pos)
2258{
2259 struct spu_context *ctx = file->private_data;
2260 int ret;
2261
Christoph Hellwigc9101bd2007-12-20 16:39:59 +09002262 ret = spu_acquire_saved(ctx);
2263 if (ret)
2264 return ret;
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01002265 spin_lock(&ctx->csa.register_lock);
2266 ret = __spufs_proxydma_info_read(ctx, buf, len, pos);
Dwayne Grant McConnellb9e3bd72006-11-20 18:44:58 +01002267 spin_unlock(&ctx->csa.register_lock);
Christoph Hellwig27b1ea02007-07-20 21:39:34 +02002268 spu_release_saved(ctx);
Dwayne Grant McConnellb9e3bd72006-11-20 18:44:58 +01002269
Dwayne Grant McConnellb9e3bd72006-11-20 18:44:58 +01002270 return ret;
2271}
2272
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -08002273static const struct file_operations spufs_proxydma_info_fops = {
Dwayne Grant McConnellb9e3bd72006-11-20 18:44:58 +01002274 .open = spufs_info_open,
2275 .read = spufs_proxydma_info_read,
2276};
2277
Christoph Hellwig476273a2007-06-29 10:58:01 +10002278static int spufs_show_tid(struct seq_file *s, void *private)
2279{
2280 struct spu_context *ctx = s->private;
2281
2282 seq_printf(s, "%d\n", ctx->tid);
2283 return 0;
2284}
2285
2286static int spufs_tid_open(struct inode *inode, struct file *file)
2287{
2288 return single_open(file, spufs_show_tid, SPUFS_I(inode)->i_ctx);
2289}
2290
2291static const struct file_operations spufs_tid_fops = {
2292 .open = spufs_tid_open,
2293 .read = seq_read,
2294 .llseek = seq_lseek,
2295 .release = single_release,
2296};
2297
Christoph Hellwige9f8a0b2007-06-29 10:58:03 +10002298static const char *ctx_state_names[] = {
2299 "user", "system", "iowait", "loaded"
2300};
2301
2302static unsigned long long spufs_acct_time(struct spu_context *ctx,
Andre Detsch27ec41d2007-07-20 21:39:33 +02002303 enum spu_utilization_state state)
Christoph Hellwige9f8a0b2007-06-29 10:58:03 +10002304{
Andre Detsch27ec41d2007-07-20 21:39:33 +02002305 struct timespec ts;
2306 unsigned long long time = ctx->stats.times[state];
Christoph Hellwige9f8a0b2007-06-29 10:58:03 +10002307
Andre Detsch27ec41d2007-07-20 21:39:33 +02002308 /*
2309 * In general, utilization statistics are updated by the controlling
2310 * thread as the spu context moves through various well defined
2311 * state transitions, but if the context is lazily loaded its
2312 * utilization statistics are not updated as the controlling thread
2313 * is not tightly coupled with the execution of the spu context. We
2314 * calculate and apply the time delta from the last recorded state
2315 * of the spu context.
2316 */
2317 if (ctx->spu && ctx->stats.util_state == state) {
2318 ktime_get_ts(&ts);
2319 time += timespec_to_ns(&ts) - ctx->stats.tstamp;
2320 }
Christoph Hellwige9f8a0b2007-06-29 10:58:03 +10002321
Andre Detsch27ec41d2007-07-20 21:39:33 +02002322 return time / NSEC_PER_MSEC;
Christoph Hellwige9f8a0b2007-06-29 10:58:03 +10002323}
2324
2325static unsigned long long spufs_slb_flts(struct spu_context *ctx)
2326{
2327 unsigned long long slb_flts = ctx->stats.slb_flt;
2328
2329 if (ctx->state == SPU_STATE_RUNNABLE) {
2330 slb_flts += (ctx->spu->stats.slb_flt -
2331 ctx->stats.slb_flt_base);
2332 }
2333
2334 return slb_flts;
2335}
2336
2337static unsigned long long spufs_class2_intrs(struct spu_context *ctx)
2338{
2339 unsigned long long class2_intrs = ctx->stats.class2_intr;
2340
2341 if (ctx->state == SPU_STATE_RUNNABLE) {
2342 class2_intrs += (ctx->spu->stats.class2_intr -
2343 ctx->stats.class2_intr_base);
2344 }
2345
2346 return class2_intrs;
2347}
2348
2349
2350static int spufs_show_stat(struct seq_file *s, void *private)
2351{
2352 struct spu_context *ctx = s->private;
Christoph Hellwigc9101bd2007-12-20 16:39:59 +09002353 int ret;
Christoph Hellwige9f8a0b2007-06-29 10:58:03 +10002354
Christoph Hellwigc9101bd2007-12-20 16:39:59 +09002355 ret = spu_acquire(ctx);
2356 if (ret)
2357 return ret;
2358
Christoph Hellwige9f8a0b2007-06-29 10:58:03 +10002359 seq_printf(s, "%s %llu %llu %llu %llu "
2360 "%llu %llu %llu %llu %llu %llu %llu %llu\n",
Andre Detsch27ec41d2007-07-20 21:39:33 +02002361 ctx_state_names[ctx->stats.util_state],
2362 spufs_acct_time(ctx, SPU_UTIL_USER),
2363 spufs_acct_time(ctx, SPU_UTIL_SYSTEM),
2364 spufs_acct_time(ctx, SPU_UTIL_IOWAIT),
2365 spufs_acct_time(ctx, SPU_UTIL_IDLE_LOADED),
Christoph Hellwige9f8a0b2007-06-29 10:58:03 +10002366 ctx->stats.vol_ctx_switch,
2367 ctx->stats.invol_ctx_switch,
2368 spufs_slb_flts(ctx),
2369 ctx->stats.hash_flt,
2370 ctx->stats.min_flt,
2371 ctx->stats.maj_flt,
2372 spufs_class2_intrs(ctx),
2373 ctx->stats.libassist);
2374 spu_release(ctx);
2375 return 0;
2376}
2377
2378static int spufs_stat_open(struct inode *inode, struct file *file)
2379{
2380 return single_open(file, spufs_show_stat, SPUFS_I(inode)->i_ctx);
2381}
2382
2383static const struct file_operations spufs_stat_fops = {
2384 .open = spufs_stat_open,
2385 .read = seq_read,
2386 .llseek = seq_lseek,
2387 .release = single_release,
2388};
2389
2390
Arnd Bergmann67207b92005-11-15 15:53:48 -05002391struct tree_descr spufs_dir_contents[] = {
Benjamin Herrenschmidtcbe709c2007-06-04 15:15:38 +10002392 { "capabilities", &spufs_caps_fops, 0444, },
Arnd Bergmann67207b92005-11-15 15:53:48 -05002393 { "mem", &spufs_mem_fops, 0666, },
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05002394 { "regs", &spufs_regs_fops, 0666, },
Arnd Bergmann67207b92005-11-15 15:53:48 -05002395 { "mbox", &spufs_mbox_fops, 0444, },
2396 { "ibox", &spufs_ibox_fops, 0444, },
2397 { "wbox", &spufs_wbox_fops, 0222, },
2398 { "mbox_stat", &spufs_mbox_stat_fops, 0444, },
2399 { "ibox_stat", &spufs_ibox_stat_fops, 0444, },
2400 { "wbox_stat", &spufs_wbox_stat_fops, 0444, },
Jeremy Kerr603c4612007-09-26 10:53:45 +10002401 { "signal1", &spufs_signal1_fops, 0666, },
2402 { "signal2", &spufs_signal2_fops, 0666, },
Arnd Bergmann67207b92005-11-15 15:53:48 -05002403 { "signal1_type", &spufs_signal1_type, 0666, },
2404 { "signal2_type", &spufs_signal2_type, 0666, },
Mark Nutter6df10a82006-03-23 00:00:12 +01002405 { "cntl", &spufs_cntl_fops, 0666, },
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05002406 { "fpcr", &spufs_fpcr_fops, 0666, },
Dwayne Grant McConnellb9e3bd72006-11-20 18:44:58 +01002407 { "lslr", &spufs_lslr_ops, 0444, },
2408 { "mfc", &spufs_mfc_fops, 0666, },
2409 { "mss", &spufs_mss_fops, 0666, },
2410 { "npc", &spufs_npc_ops, 0666, },
2411 { "srr0", &spufs_srr0_ops, 0666, },
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05002412 { "decr", &spufs_decr_ops, 0666, },
2413 { "decr_status", &spufs_decr_status_ops, 0666, },
Arnd Bergmann8b3d6662005-11-15 15:53:52 -05002414 { "event_mask", &spufs_event_mask_ops, 0666, },
Dwayne Grant McConnellb9e3bd72006-11-20 18:44:58 +01002415 { "event_status", &spufs_event_status_ops, 0444, },
Benjamin Herrenschmidt27d5bf22006-10-04 17:26:11 +02002416 { "psmap", &spufs_psmap_fops, 0666, },
Arnd Bergmann86767272006-10-04 17:26:21 +02002417 { "phys-id", &spufs_id_ops, 0666, },
2418 { "object-id", &spufs_object_id_ops, 0666, },
Dwayne Grant McConnell69a2f002006-11-20 18:45:00 +01002419 { "mbox_info", &spufs_mbox_info_fops, 0444, },
2420 { "ibox_info", &spufs_ibox_info_fops, 0444, },
2421 { "wbox_info", &spufs_wbox_info_fops, 0444, },
Dwayne Grant McConnellb9e3bd72006-11-20 18:44:58 +01002422 { "dma_info", &spufs_dma_info_fops, 0444, },
2423 { "proxydma_info", &spufs_proxydma_info_fops, 0444, },
Christoph Hellwig476273a2007-06-29 10:58:01 +10002424 { "tid", &spufs_tid_fops, 0444, },
Christoph Hellwige9f8a0b2007-06-29 10:58:03 +10002425 { "stat", &spufs_stat_fops, 0444, },
Arnd Bergmann67207b92005-11-15 15:53:48 -05002426 {},
2427};
Mark Nutter5737edd2006-10-24 18:31:16 +02002428
2429struct tree_descr spufs_dir_nosched_contents[] = {
Benjamin Herrenschmidtcbe709c2007-06-04 15:15:38 +10002430 { "capabilities", &spufs_caps_fops, 0444, },
Mark Nutter5737edd2006-10-24 18:31:16 +02002431 { "mem", &spufs_mem_fops, 0666, },
2432 { "mbox", &spufs_mbox_fops, 0444, },
2433 { "ibox", &spufs_ibox_fops, 0444, },
2434 { "wbox", &spufs_wbox_fops, 0222, },
2435 { "mbox_stat", &spufs_mbox_stat_fops, 0444, },
2436 { "ibox_stat", &spufs_ibox_stat_fops, 0444, },
2437 { "wbox_stat", &spufs_wbox_stat_fops, 0444, },
Jeremy Kerrd054b362007-07-20 21:39:31 +02002438 { "signal1", &spufs_signal1_nosched_fops, 0222, },
2439 { "signal2", &spufs_signal2_nosched_fops, 0222, },
Mark Nutter5737edd2006-10-24 18:31:16 +02002440 { "signal1_type", &spufs_signal1_type, 0666, },
2441 { "signal2_type", &spufs_signal2_type, 0666, },
2442 { "mss", &spufs_mss_fops, 0666, },
2443 { "mfc", &spufs_mfc_fops, 0666, },
2444 { "cntl", &spufs_cntl_fops, 0666, },
2445 { "npc", &spufs_npc_ops, 0666, },
2446 { "psmap", &spufs_psmap_fops, 0666, },
2447 { "phys-id", &spufs_id_ops, 0666, },
2448 { "object-id", &spufs_object_id_ops, 0666, },
Christoph Hellwig476273a2007-06-29 10:58:01 +10002449 { "tid", &spufs_tid_fops, 0444, },
Christoph Hellwige9f8a0b2007-06-29 10:58:03 +10002450 { "stat", &spufs_stat_fops, 0444, },
Mark Nutter5737edd2006-10-24 18:31:16 +02002451 {},
2452};
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01002453
2454struct spufs_coredump_reader spufs_coredump_read[] = {
Michael Ellerman4fca9c42007-09-19 14:38:12 +10002455 { "regs", __spufs_regs_read, NULL, sizeof(struct spu_reg128[128])},
2456 { "fpcr", __spufs_fpcr_read, NULL, sizeof(struct spu_reg128) },
Michael Ellerman104f0cc2007-09-19 14:38:12 +10002457 { "lslr", NULL, spufs_lslr_get, 19 },
2458 { "decr", NULL, spufs_decr_get, 19 },
2459 { "decr_status", NULL, spufs_decr_status_get, 19 },
Michael Ellerman4fca9c42007-09-19 14:38:12 +10002460 { "mem", __spufs_mem_read, NULL, LS_SIZE, },
2461 { "signal1", __spufs_signal1_read, NULL, sizeof(u32) },
Michael Ellerman104f0cc2007-09-19 14:38:12 +10002462 { "signal1_type", NULL, spufs_signal1_type_get, 19 },
Michael Ellerman4fca9c42007-09-19 14:38:12 +10002463 { "signal2", __spufs_signal2_read, NULL, sizeof(u32) },
Michael Ellerman104f0cc2007-09-19 14:38:12 +10002464 { "signal2_type", NULL, spufs_signal2_type_get, 19 },
2465 { "event_mask", NULL, spufs_event_mask_get, 19 },
2466 { "event_status", NULL, spufs_event_status_get, 19 },
Michael Ellerman4fca9c42007-09-19 14:38:12 +10002467 { "mbox_info", __spufs_mbox_info_read, NULL, sizeof(u32) },
2468 { "ibox_info", __spufs_ibox_info_read, NULL, sizeof(u32) },
2469 { "wbox_info", __spufs_wbox_info_read, NULL, 4 * sizeof(u32)},
2470 { "dma_info", __spufs_dma_info_read, NULL, sizeof(struct spu_dma_info)},
2471 { "proxydma_info", __spufs_proxydma_info_read,
2472 NULL, sizeof(struct spu_proxydma_info)},
Michael Ellerman104f0cc2007-09-19 14:38:12 +10002473 { "object-id", NULL, spufs_object_id_get, 19 },
2474 { "npc", NULL, spufs_npc_get, 19 },
Michael Ellerman936d5bf2007-09-19 14:38:12 +10002475 { NULL },
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +01002476};