blob: bcfd6f063efa7e64d4e361af002f6e858ff10620 [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>
Christoph Hellwig650f8b02007-02-13 21:36:50 +010026#include <linux/mutex.h>
Arnd Bergmann67207b92005-11-15 15:53:48 -050027#include <linux/spinlock.h>
28#include <linux/fs.h>
Christoph Hellwigea1ae592007-06-29 10:57:56 +100029#include <linux/cpumask.h>
Arnd Bergmann67207b92005-11-15 15:53:48 -050030
31#include <asm/spu.h>
Mark Nutter5473af02005-11-15 15:53:49 -050032#include <asm/spu_csa.h>
Dwayne Grant McConnellb9e3bd72006-11-20 18:44:58 +010033#include <asm/spu_info.h>
Arnd Bergmann67207b92005-11-15 15:53:48 -050034
Jeremy Kerr87ff6092008-07-01 10:22:50 +100035#define SPUFS_PS_MAP_SIZE 0x20000
36#define SPUFS_MFC_MAP_SIZE 0x1000
37#define SPUFS_CNTL_MAP_SIZE 0x1000
Jeremy Kerr87ff6092008-07-01 10:22:50 +100038#define SPUFS_SIGNAL_MAP_SIZE PAGE_SIZE
39#define SPUFS_MSS_MAP_SIZE 0x1000
40
Arnd Bergmann67207b92005-11-15 15:53:48 -050041/* The magic number for our file system */
42enum {
43 SPUFS_MAGIC = 0x23c9b64e,
44};
45
Arnd Bergmann8b3d6662005-11-15 15:53:52 -050046struct spu_context_ops;
Arnd Bergmann62632032006-10-04 17:26:15 +020047struct spu_gang;
48
Bob Nelson36aaccc2007-07-20 21:39:52 +020049/* ctx->sched_flags */
50enum {
51 SPU_SCHED_NOTIFY_ACTIVE,
Christoph Hellwigb2c863b2007-07-23 18:43:53 -070052 SPU_SCHED_WAS_ACTIVE, /* was active upon spu_acquire_saved() */
Jeremy Kerrce7c1912008-03-04 20:17:02 +110053 SPU_SCHED_SPU_RUN, /* context is within spu_run */
Bob Nelson36aaccc2007-07-20 21:39:52 +020054};
55
Christoph Hellwig5158e9b2008-04-29 17:08:38 +100056enum {
57 SWITCH_LOG_BUFSIZE = 4096,
58};
59
60enum {
61 SWITCH_LOG_START,
62 SWITCH_LOG_STOP,
63 SWITCH_LOG_EXIT,
64};
65
66struct switch_log {
Christoph Hellwig5158e9b2008-04-29 17:08:38 +100067 wait_queue_head_t wait;
68 unsigned long head;
69 unsigned long tail;
70 struct switch_log_entry {
71 struct timespec tstamp;
72 s32 spu_id;
73 u32 type;
74 u32 val;
75 u64 timebase;
76 } log[];
77};
78
Arnd Bergmann67207b92005-11-15 15:53:48 -050079struct spu_context {
80 struct spu *spu; /* pointer to a physical SPU */
Mark Nutter5473af02005-11-15 15:53:49 -050081 struct spu_state csa; /* SPU context save area. */
Arnd Bergmann67207b92005-11-15 15:53:48 -050082 spinlock_t mmio_lock; /* protects mmio access */
Mark Nutter6df10a82006-03-23 00:00:12 +010083 struct address_space *local_store; /* local store mapping. */
84 struct address_space *mfc; /* 'mfc' area mappings. */
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +020085 struct address_space *cntl; /* 'control' area mappings. */
86 struct address_space *signal1; /* 'signal1' area mappings. */
87 struct address_space *signal2; /* 'signal2' area mappings. */
88 struct address_space *mss; /* 'mss' area mappings. */
89 struct address_space *psmap; /* 'psmap' area mappings. */
Christoph Hellwig47d3a5f2007-06-04 23:26:51 +100090 struct mutex mapping_lock;
Arnd Bergmann86767272006-10-04 17:26:21 +020091 u64 object_id; /* user space pointer for oprofile */
Arnd Bergmann8b3d6662005-11-15 15:53:52 -050092
93 enum { SPU_STATE_RUNNABLE, SPU_STATE_SAVED } state;
Christoph Hellwig650f8b02007-02-13 21:36:50 +010094 struct mutex state_mutex;
Christoph Hellwige45d48a32007-04-23 21:08:17 +020095 struct mutex run_mutex;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -050096
97 struct mm_struct *owner;
Arnd Bergmann67207b92005-11-15 15:53:48 -050098
99 struct kref kref;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500100 wait_queue_head_t ibox_wq;
101 wait_queue_head_t wbox_wq;
Arnd Bergmann51104592005-12-05 22:52:25 -0500102 wait_queue_head_t stop_wq;
Arnd Bergmanna33a7d72006-03-23 00:00:11 +0100103 wait_queue_head_t mfc_wq;
Arnd Bergmann33bfd7a2007-12-20 16:39:59 +0900104 wait_queue_head_t run_wq;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500105 struct fasync_struct *ibox_fasync;
106 struct fasync_struct *wbox_fasync;
Arnd Bergmanna33a7d72006-03-23 00:00:11 +0100107 struct fasync_struct *mfc_fasync;
108 u32 tagwait;
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500109 struct spu_context_ops *ops;
Arnd Bergmann2a911f02005-12-05 22:52:26 -0500110 struct work_struct reap_work;
Arnd Bergmann9add11d2006-10-04 17:26:14 +0200111 unsigned long flags;
112 unsigned long event_return;
Arnd Bergmann62632032006-10-04 17:26:15 +0200113
114 struct list_head gang_list;
115 struct spu_gang *gang;
Bob Nelson14748552007-07-20 21:39:53 +0200116 struct kref *prof_priv_kref;
117 void ( * prof_priv_release) (struct kref *kref);
Christoph Hellwig83899982007-02-13 21:54:22 +0100118
Christoph Hellwig476273a2007-06-29 10:58:01 +1000119 /* owner thread */
120 pid_t tid;
121
Christoph Hellwig83899982007-02-13 21:54:22 +0100122 /* scheduler fields */
Jeremy Kerr70225432007-06-29 10:58:00 +1000123 struct list_head rq;
Christoph Hellwig37901802007-06-29 10:57:51 +1000124 unsigned int time_slice;
Christoph Hellwig26bec672007-02-13 21:54:24 +0100125 unsigned long sched_flags;
Christoph Hellwigea1ae592007-06-29 10:57:56 +1000126 cpumask_t cpus_allowed;
Christoph Hellwig2eb1b122007-02-13 21:54:29 +0100127 int policy;
Christoph Hellwig83899982007-02-13 21:54:22 +0100128 int prio;
Luke Browning7a214202008-04-28 14:32:34 +1000129 int last_ran;
Christoph Hellwige9f8a0b2007-06-29 10:58:03 +1000130
131 /* statistics */
132 struct {
133 /* updates protected by ctx->state_mutex */
Andre Detsch27ec41d2007-07-20 21:39:33 +0200134 enum spu_utilization_state util_state;
135 unsigned long long tstamp; /* time of last state switch */
136 unsigned long long times[SPU_UTIL_MAX];
Christoph Hellwige9f8a0b2007-06-29 10:58:03 +1000137 unsigned long long vol_ctx_switch;
138 unsigned long long invol_ctx_switch;
139 unsigned long long min_flt;
140 unsigned long long maj_flt;
141 unsigned long long hash_flt;
142 unsigned long long slb_flt;
143 unsigned long long slb_flt_base; /* # at last ctx switch */
144 unsigned long long class2_intr;
145 unsigned long long class2_intr_base; /* # at last ctx switch */
146 unsigned long long libassist;
147 } stats;
Arnd Bergmann8e68e2f2007-07-20 21:39:47 +0200148
Christoph Hellwig5158e9b2008-04-29 17:08:38 +1000149 /* context switch log */
150 struct switch_log *switch_log;
151
Arnd Bergmann8e68e2f2007-07-20 21:39:47 +0200152 struct list_head aff_list;
153 int aff_head;
Arnd Bergmannc5fc8d22007-07-20 21:39:48 +0200154 int aff_offset;
Arnd Bergmann62632032006-10-04 17:26:15 +0200155};
156
157struct spu_gang {
158 struct list_head list;
159 struct mutex mutex;
160 struct kref kref;
161 int contexts;
Arnd Bergmann8e68e2f2007-07-20 21:39:47 +0200162
163 struct spu_context *aff_ref_ctx;
164 struct list_head aff_list_head;
165 struct mutex aff_mutex;
166 int aff_flags;
Arnd Bergmannc5fc8d22007-07-20 21:39:48 +0200167 struct spu *aff_ref_spu;
168 atomic_t aff_sched_count;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500169};
170
Arnd Bergmann8e68e2f2007-07-20 21:39:47 +0200171/* Flag bits for spu_gang aff_flags */
172#define AFF_OFFSETS_SET 1
173#define AFF_MERGED 2
174
Arnd Bergmanna33a7d72006-03-23 00:00:11 +0100175struct mfc_dma_command {
176 int32_t pad; /* reserved */
177 uint32_t lsa; /* local storage address */
178 uint64_t ea; /* effective address */
179 uint16_t size; /* transfer size */
180 uint16_t tag; /* command tag */
181 uint16_t class; /* class ID */
182 uint16_t cmd; /* command opcode */
183};
184
185
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500186/* SPU context query/set operations. */
187struct spu_context_ops {
188 int (*mbox_read) (struct spu_context * ctx, u32 * data);
189 u32(*mbox_stat_read) (struct spu_context * ctx);
Arnd Bergmann3a843d72005-12-05 22:52:27 -0500190 unsigned int (*mbox_stat_poll)(struct spu_context *ctx,
191 unsigned int events);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500192 int (*ibox_read) (struct spu_context * ctx, u32 * data);
193 int (*wbox_write) (struct spu_context * ctx, u32 data);
194 u32(*signal1_read) (struct spu_context * ctx);
195 void (*signal1_write) (struct spu_context * ctx, u32 data);
196 u32(*signal2_read) (struct spu_context * ctx);
197 void (*signal2_write) (struct spu_context * ctx, u32 data);
198 void (*signal1_type_set) (struct spu_context * ctx, u64 val);
199 u64(*signal1_type_get) (struct spu_context * ctx);
200 void (*signal2_type_set) (struct spu_context * ctx, u64 val);
201 u64(*signal2_type_get) (struct spu_context * ctx);
202 u32(*npc_read) (struct spu_context * ctx);
203 void (*npc_write) (struct spu_context * ctx, u32 data);
204 u32(*status_read) (struct spu_context * ctx);
205 char*(*get_ls) (struct spu_context * ctx);
Luke Browningcc210b32007-12-20 16:39:59 +0900206 void (*privcntl_write) (struct spu_context *ctx, u64 data);
Jeremy Kerr3960c262006-11-20 18:45:09 +0100207 u32 (*runcntl_read) (struct spu_context * ctx);
Arnd Bergmann51104592005-12-05 22:52:25 -0500208 void (*runcntl_write) (struct spu_context * ctx, u32 data);
Masato Noguchic25620d2007-12-05 13:49:31 +1100209 void (*runcntl_stop) (struct spu_context * ctx);
Arnd Bergmannee2d7342006-11-20 18:45:08 +0100210 void (*master_start) (struct spu_context * ctx);
211 void (*master_stop) (struct spu_context * ctx);
Arnd Bergmanna33a7d72006-03-23 00:00:11 +0100212 int (*set_mfc_query)(struct spu_context * ctx, u32 mask, u32 mode);
213 u32 (*read_mfc_tagstatus)(struct spu_context * ctx);
214 u32 (*get_mfc_free_elements)(struct spu_context *ctx);
Dwayne Grant McConnellb9e3bd72006-11-20 18:44:58 +0100215 int (*send_mfc_command)(struct spu_context * ctx,
216 struct mfc_dma_command * cmd);
217 void (*dma_info_read) (struct spu_context * ctx,
218 struct spu_dma_info * info);
219 void (*proxydma_info_read) (struct spu_context * ctx,
220 struct spu_proxydma_info * info);
Arnd Bergmann57dace22007-04-23 21:08:15 +0200221 void (*restart_dma)(struct spu_context *ctx);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500222};
223
224extern struct spu_context_ops spu_hw_ops;
225extern struct spu_context_ops spu_backing_ops;
226
Arnd Bergmann67207b92005-11-15 15:53:48 -0500227struct spufs_inode_info {
228 struct spu_context *i_ctx;
Arnd Bergmann62632032006-10-04 17:26:15 +0200229 struct spu_gang *i_gang;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500230 struct inode vfs_inode;
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +0200231 int i_openers;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500232};
233#define SPUFS_I(inode) \
234 container_of(inode, struct spufs_inode_info, vfs_inode)
235
Jeremy Kerr23d893f2008-06-30 12:17:28 +1000236struct spufs_tree_descr {
237 const char *name;
238 const struct file_operations *ops;
Al Viroc6684b22011-07-26 04:47:14 -0400239 umode_t mode;
Jeremy Kerr23d893f2008-06-30 12:17:28 +1000240 size_t size;
241};
242
Jeremy Kerr74254642009-02-17 11:44:14 +1100243extern const struct spufs_tree_descr spufs_dir_contents[];
244extern const struct spufs_tree_descr spufs_dir_nosched_contents[];
245extern const struct spufs_tree_descr spufs_dir_debug_contents[];
Arnd Bergmann67207b92005-11-15 15:53:48 -0500246
247/* system call implementation */
Jeremy Kerr98f06972007-09-19 14:38:12 +1000248extern struct spufs_calls spufs_calls;
Al Virocdc3d562013-10-05 22:24:29 -0400249struct coredump_params;
Jeremy Kerr50af32a2007-07-20 21:39:42 +0200250long spufs_run_spu(struct spu_context *ctx, u32 *npc, u32 *status);
Al Viro1ba10682011-06-26 11:54:58 -0400251long spufs_create(struct path *nd, struct dentry *dentry, unsigned int flags,
Al Viroc6684b22011-07-26 04:47:14 -0400252 umode_t mode, struct file *filp);
Michael Ellerman48cad412007-09-19 14:38:12 +1000253/* ELF coredump callbacks for writing SPU ELF notes */
254extern int spufs_coredump_extra_notes_size(void);
Al Virocdc3d562013-10-05 22:24:29 -0400255extern int spufs_coredump_extra_notes_write(struct coredump_params *cprm);
Michael Ellerman48cad412007-09-19 14:38:12 +1000256
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -0800257extern const struct file_operations spufs_context_fops;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500258
Arnd Bergmann62632032006-10-04 17:26:15 +0200259/* gang management */
260struct spu_gang *alloc_spu_gang(void);
261struct spu_gang *get_spu_gang(struct spu_gang *gang);
262int put_spu_gang(struct spu_gang *gang);
263void spu_gang_remove_ctx(struct spu_gang *gang, struct spu_context *ctx);
264void spu_gang_add_ctx(struct spu_gang *gang, struct spu_context *ctx);
265
Arnd Bergmann57dace22007-04-23 21:08:15 +0200266/* fault handling */
267int spufs_handle_class1(struct spu_context *ctx);
Jeremy Kerrd6ad39b2007-12-20 16:39:59 +0900268int spufs_handle_class0(struct spu_context *ctx);
Arnd Bergmann57dace22007-04-23 21:08:15 +0200269
Arnd Bergmannc5fc8d22007-07-20 21:39:48 +0200270/* affinity */
271struct spu *affinity_check(struct spu_context *ctx);
272
Arnd Bergmann67207b92005-11-15 15:53:48 -0500273/* context management */
Christoph Hellwig65de66f2007-06-29 10:58:02 +1000274extern atomic_t nr_spu_contexts;
Christoph Hellwigc9101bd2007-12-20 16:39:59 +0900275static inline int __must_check spu_acquire(struct spu_context *ctx)
Christoph Hellwig6a0641e52007-02-13 21:54:21 +0100276{
Christoph Hellwigc9101bd2007-12-20 16:39:59 +0900277 return mutex_lock_interruptible(&ctx->state_mutex);
Christoph Hellwig6a0641e52007-02-13 21:54:21 +0100278}
279
280static inline void spu_release(struct spu_context *ctx)
281{
282 mutex_unlock(&ctx->state_mutex);
283}
284
Arnd Bergmann62632032006-10-04 17:26:15 +0200285struct spu_context * alloc_spu_context(struct spu_gang *gang);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500286void destroy_spu_context(struct kref *kref);
287struct spu_context * get_spu_context(struct spu_context *ctx);
288int put_spu_context(struct spu_context *ctx);
Arnd Bergmann51104592005-12-05 22:52:25 -0500289void spu_unmap_mappings(struct spu_context *ctx);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500290
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500291void spu_forget(struct spu_context *ctx);
Christoph Hellwigc9101bd2007-12-20 16:39:59 +0900292int __must_check spu_acquire_saved(struct spu_context *ctx);
Christoph Hellwig27b1ea02007-07-20 21:39:34 +0200293void spu_release_saved(struct spu_context *ctx);
Christoph Hellwig50b520d2007-03-10 00:05:36 +0100294
Luke Browninge65c2f62007-12-20 16:39:59 +0900295int spu_stopped(struct spu_context *ctx, u32 * stat);
296void spu_del_from_rq(struct spu_context *ctx);
Christoph Hellwig26bec672007-02-13 21:54:24 +0100297int spu_activate(struct spu_context *ctx, unsigned long flags);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500298void spu_deactivate(struct spu_context *ctx);
299void spu_yield(struct spu_context *ctx);
Bob Nelson36aaccc2007-07-20 21:39:52 +0200300void spu_switch_notify(struct spu *spu, struct spu_context *ctx);
Christoph Hellwig5158e9b2008-04-29 17:08:38 +1000301void spu_switch_log_notify(struct spu *spu, struct spu_context *ctx,
302 u32 type, u32 val);
Christoph Hellwigfe443ef2007-06-29 10:57:52 +1000303void spu_set_timeslice(struct spu_context *ctx);
Christoph Hellwig2cf2b3b2007-06-29 10:57:55 +1000304void spu_update_sched_info(struct spu_context *ctx);
305void __spu_update_sched_info(struct spu_context *ctx);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500306int __init spu_sched_init(void);
Sebastian Siewiord1450312007-07-20 21:39:29 +0200307void spu_sched_exit(void);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500308
Jeremy Kerrc6730ed2006-11-20 18:45:10 +0100309extern char *isolated_loader;
310
Arnd Bergmannce8ab852006-01-04 20:31:29 +0100311/*
312 * spufs_wait
Jeremy Kerr70225432007-06-29 10:58:00 +1000313 * Same as wait_event_interruptible(), except that here
Arnd Bergmannce8ab852006-01-04 20:31:29 +0100314 * we need to call spu_release(ctx) before sleeping, and
315 * then spu_acquire(ctx) when awoken.
Christoph Hellwigeebead52008-02-08 15:50:41 +1100316 *
Coly Li73ac36e2009-01-07 18:09:16 -0800317 * Returns with state_mutex re-acquired when successful or
Christoph Hellwigeebead52008-02-08 15:50:41 +1100318 * with -ERESTARTSYS and the state_mutex dropped when interrupted.
Arnd Bergmannce8ab852006-01-04 20:31:29 +0100319 */
320
321#define spufs_wait(wq, condition) \
322({ \
323 int __ret = 0; \
324 DEFINE_WAIT(__wait); \
325 for (;;) { \
326 prepare_to_wait(&(wq), &__wait, TASK_INTERRUPTIBLE); \
327 if (condition) \
328 break; \
Christoph Hellwigeebead52008-02-08 15:50:41 +1100329 spu_release(ctx); \
Jeremy Kerrd3764392007-04-23 21:08:24 +0200330 if (signal_pending(current)) { \
331 __ret = -ERESTARTSYS; \
332 break; \
Arnd Bergmannce8ab852006-01-04 20:31:29 +0100333 } \
Jeremy Kerrd3764392007-04-23 21:08:24 +0200334 schedule(); \
Christoph Hellwigc9101bd2007-12-20 16:39:59 +0900335 __ret = spu_acquire(ctx); \
336 if (__ret) \
337 break; \
Arnd Bergmannce8ab852006-01-04 20:31:29 +0100338 } \
339 finish_wait(&(wq), &__wait); \
340 __ret; \
341})
342
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500343size_t spu_wbox_write(struct spu_context *ctx, u32 data);
344size_t spu_ibox_read(struct spu_context *ctx, u32 *data);
345
346/* irq callback funcs. */
347void spufs_ibox_callback(struct spu *spu);
348void spufs_wbox_callback(struct spu *spu);
Luke Browningf3d69e02008-04-27 18:41:55 +0000349void spufs_stop_callback(struct spu *spu, int irq);
Arnd Bergmanna33a7d72006-03-23 00:00:11 +0100350void spufs_mfc_callback(struct spu *spu);
Arnd Bergmann9add11d2006-10-04 17:26:14 +0200351void spufs_dma_callback(struct spu *spu, int type);
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500352
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +0100353extern struct spu_coredump_calls spufs_coredump_calls;
354struct spufs_coredump_reader {
355 char *name;
356 ssize_t (*read)(struct spu_context *ctx,
357 char __user *buffer, size_t size, loff_t *pos);
Michael Ellerman74de08b2007-09-19 14:38:12 +1000358 u64 (*get)(struct spu_context *ctx);
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +0100359 size_t size;
360};
Jeremy Kerr74254642009-02-17 11:44:14 +1100361extern const struct spufs_coredump_reader spufs_coredump_read[];
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +0100362extern int spufs_coredump_num_notes;
363
Jeremy Kerr7cd58e42007-12-20 16:39:59 +0900364extern int spu_init_csa(struct spu_state *csa);
365extern void spu_fini_csa(struct spu_state *csa);
366extern int spu_save(struct spu_state *prev, struct spu *spu);
367extern int spu_restore(struct spu_state *new, struct spu *spu);
368extern int spu_switch(struct spu_state *prev, struct spu_state *new,
369 struct spu *spu);
370extern int spu_alloc_lscsa(struct spu_state *csa);
371extern void spu_free_lscsa(struct spu_state *csa);
Andre Detsch27ec41d2007-07-20 21:39:33 +0200372
Jeremy Kerr7cd58e42007-12-20 16:39:59 +0900373extern void spuctx_switch_state(struct spu_context *ctx,
374 enum spu_utilization_state new_state);
Christoph Hellwigfe2f8962007-06-29 10:58:07 +1000375
Arnd Bergmann67207b92005-11-15 15:53:48 -0500376#endif