Merge branch 'master'
[linux-2.6/suspend2-2.6.18.git] / include / asm-mips / dsp.h
blob50f556bb49783d871d479366422ea2f59dd56d67
1 /*
2 * Copyright (C) 2005 Mips Technologies
3 * Author: Chris Dearman, chris@mips.com derived from fpu.h
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version.
9 */
10 #ifndef _ASM_DSP_H
11 #define _ASM_DSP_H
13 #include <asm/cpu.h>
14 #include <asm/cpu-features.h>
15 #include <asm/hazards.h>
16 #include <asm/mipsregs.h>
18 #define DSP_DEFAULT 0x00000000
19 #define DSP_MASK 0x1f
21 #define __enable_dsp_hazard() \
22 do { \
23 asm("_ehb"); \
24 } while (0)
26 static inline void __init_dsp(void)
28 mthi1(0);
29 mtlo1(0);
30 mthi2(0);
31 mtlo2(0);
32 mthi3(0);
33 mtlo3(0);
34 wrdsp(DSP_DEFAULT, DSP_MASK);
37 static inline void init_dsp(void)
39 if (cpu_has_dsp)
40 __init_dsp();
43 #define __save_dsp(tsk) \
44 do { \
45 tsk->thread.dsp.dspr[0] = mfhi1(); \
46 tsk->thread.dsp.dspr[1] = mflo1(); \
47 tsk->thread.dsp.dspr[2] = mfhi2(); \
48 tsk->thread.dsp.dspr[3] = mflo2(); \
49 tsk->thread.dsp.dspr[4] = mfhi3(); \
50 tsk->thread.dsp.dspr[5] = mflo3(); \
51 } while (0)
53 #define save_dsp(tsk) \
54 do { \
55 if (cpu_has_dsp) \
56 __save_dsp(tsk); \
57 } while (0)
59 #define __restore_dsp(tsk) \
60 do { \
61 mthi1(tsk->thread.dsp.dspr[0]); \
62 mtlo1(tsk->thread.dsp.dspr[1]); \
63 mthi2(tsk->thread.dsp.dspr[2]); \
64 mtlo2(tsk->thread.dsp.dspr[3]); \
65 mthi3(tsk->thread.dsp.dspr[4]); \
66 mtlo3(tsk->thread.dsp.dspr[5]); \
67 } while (0)
69 #define restore_dsp(tsk) \
70 do { \
71 if (cpu_has_dsp) \
72 __restore_dsp(tsk); \
73 } while (0)
75 #define __get_dsp_regs(tsk) \
76 ({ \
77 if (tsk == current) \
78 __save_dsp(current); \
80 tsk->thread.dsp.dspr; \
83 #endif /* _ASM_DSP_H */