blob: 93c6a053756299d7f58cb51b4257a59ec3f002b4 [file] [log] [blame]
Arnd Bergmann67207b92005-11-15 15:53:48 -05001/*
2 * SPU file system
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#ifndef SPUFS_H
23#define SPUFS_H
24
25#include <linux/kref.h>
26#include <linux/rwsem.h>
27#include <linux/spinlock.h>
28#include <linux/fs.h>
29
30#include <asm/spu.h>
Mark Nutter5473af02005-11-15 15:53:49 -050031#include <asm/spu_csa.h>
Arnd Bergmann67207b92005-11-15 15:53:48 -050032
33/* The magic number for our file system */
34enum {
35 SPUFS_MAGIC = 0x23c9b64e,
36};
37
Arnd Bergmann8b3d6662005-11-15 15:53:52 -050038struct spu_context_ops;
39
Arnd Bergmann67207b92005-11-15 15:53:48 -050040struct spu_context {
41 struct spu *spu; /* pointer to a physical SPU */
Mark Nutter5473af02005-11-15 15:53:49 -050042 struct spu_state csa; /* SPU context save area. */
Arnd Bergmann67207b92005-11-15 15:53:48 -050043 spinlock_t mmio_lock; /* protects mmio access */
Arnd Bergmann8b3d6662005-11-15 15:53:52 -050044 struct address_space *local_store;/* local store backing store */
45
46 enum { SPU_STATE_RUNNABLE, SPU_STATE_SAVED } state;
47 struct rw_semaphore state_sema;
48
49 struct mm_struct *owner;
Arnd Bergmann67207b92005-11-15 15:53:48 -050050
51 struct kref kref;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -050052 wait_queue_head_t ibox_wq;
53 wait_queue_head_t wbox_wq;
54 struct fasync_struct *ibox_fasync;
55 struct fasync_struct *wbox_fasync;
56 struct spu_context_ops *ops;
Arnd Bergmann67207b92005-11-15 15:53:48 -050057};
58
Arnd Bergmann8b3d6662005-11-15 15:53:52 -050059/* SPU context query/set operations. */
60struct spu_context_ops {
61 int (*mbox_read) (struct spu_context * ctx, u32 * data);
62 u32(*mbox_stat_read) (struct spu_context * ctx);
63 int (*ibox_read) (struct spu_context * ctx, u32 * data);
64 int (*wbox_write) (struct spu_context * ctx, u32 data);
65 u32(*signal1_read) (struct spu_context * ctx);
66 void (*signal1_write) (struct spu_context * ctx, u32 data);
67 u32(*signal2_read) (struct spu_context * ctx);
68 void (*signal2_write) (struct spu_context * ctx, u32 data);
69 void (*signal1_type_set) (struct spu_context * ctx, u64 val);
70 u64(*signal1_type_get) (struct spu_context * ctx);
71 void (*signal2_type_set) (struct spu_context * ctx, u64 val);
72 u64(*signal2_type_get) (struct spu_context * ctx);
73 u32(*npc_read) (struct spu_context * ctx);
74 void (*npc_write) (struct spu_context * ctx, u32 data);
75 u32(*status_read) (struct spu_context * ctx);
76 char*(*get_ls) (struct spu_context * ctx);
77};
78
79extern struct spu_context_ops spu_hw_ops;
80extern struct spu_context_ops spu_backing_ops;
81
Arnd Bergmann67207b92005-11-15 15:53:48 -050082struct spufs_inode_info {
83 struct spu_context *i_ctx;
84 struct inode vfs_inode;
85};
86#define SPUFS_I(inode) \
87 container_of(inode, struct spufs_inode_info, vfs_inode)
88
89extern struct tree_descr spufs_dir_contents[];
90
91/* system call implementation */
92long spufs_run_spu(struct file *file,
93 struct spu_context *ctx, u32 *npc, u32 *status);
94long spufs_create_thread(struct nameidata *nd, const char *name,
95 unsigned int flags, mode_t mode);
96
97/* context management */
Arnd Bergmann8b3d6662005-11-15 15:53:52 -050098struct spu_context * alloc_spu_context(struct address_space *local_store);
Arnd Bergmann67207b92005-11-15 15:53:48 -050099void destroy_spu_context(struct kref *kref);
100struct spu_context * get_spu_context(struct spu_context *ctx);
101int put_spu_context(struct spu_context *ctx);
102
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500103void spu_forget(struct spu_context *ctx);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500104void spu_acquire(struct spu_context *ctx);
105void spu_release(struct spu_context *ctx);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500106int spu_acquire_runnable(struct spu_context *ctx);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500107void spu_acquire_saved(struct spu_context *ctx);
108
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500109int spu_activate(struct spu_context *ctx, u64 flags);
110void spu_deactivate(struct spu_context *ctx);
111void spu_yield(struct spu_context *ctx);
112int __init spu_sched_init(void);
113void __exit spu_sched_exit(void);
114
115size_t spu_wbox_write(struct spu_context *ctx, u32 data);
116size_t spu_ibox_read(struct spu_context *ctx, u32 *data);
117
118/* irq callback funcs. */
119void spufs_ibox_callback(struct spu *spu);
120void spufs_wbox_callback(struct spu *spu);
121
Arnd Bergmann67207b92005-11-15 15:53:48 -0500122#endif