diff options
author | Jonas Bonn <jonas@southpole.se> | 2011-06-04 15:43:49 -0400 |
---|---|---|
committer | Jonas Bonn <jonas@southpole.se> | 2011-07-22 12:46:39 -0400 |
commit | 58e0166a4772aaeb10c9b0f6d59f19099d2047df (patch) | |
tree | 9b4407ee02d1364a98ddb1604143444ff2bf7631 /arch/openrisc/include/asm/spr.h | |
parent | 769a8a96229e6b2f1e3a2b3b38e27981f7fb9902 (diff) |
OpenRISC: Headers
Signed-off-by: Jonas Bonn <jonas@southpole.se>
Reviewed-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/openrisc/include/asm/spr.h')
-rw-r--r-- | arch/openrisc/include/asm/spr.h | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/arch/openrisc/include/asm/spr.h b/arch/openrisc/include/asm/spr.h new file mode 100644 index 000000000000..1cccb42dd477 --- /dev/null +++ b/arch/openrisc/include/asm/spr.h | |||
@@ -0,0 +1,42 @@ | |||
1 | /* | ||
2 | * OpenRISC Linux | ||
3 | * | ||
4 | * Linux architectural port borrowing liberally from similar works of | ||
5 | * others. All original copyrights apply as per the original source | ||
6 | * declaration. | ||
7 | * | ||
8 | * OpenRISC implementation: | ||
9 | * Copyright (C) 2010-2011 Jonas Bonn <jonas@southpole.se> | ||
10 | * | ||
11 | * This program is free software; you can redistribute it and/or modify | ||
12 | * it under the terms of the GNU General Public License as published by | ||
13 | * the Free Software Foundation; either version 2 of the License, or | ||
14 | * (at your option) any later version. | ||
15 | */ | ||
16 | |||
17 | #ifndef __ASM_OPENRISC_SPR_H | ||
18 | #define __ASM_OPENRISC_SPR_H | ||
19 | |||
20 | #define mtspr(_spr, _val) __asm__ __volatile__ ( \ | ||
21 | "l.mtspr r0,%1,%0" \ | ||
22 | : : "K" (_spr), "r" (_val)) | ||
23 | #define mtspr_off(_spr, _off, _val) __asm__ __volatile__ ( \ | ||
24 | "l.mtspr %0,%1,%2" \ | ||
25 | : : "r" (_off), "r" (_val), "K" (_spr)) | ||
26 | |||
27 | static inline unsigned long mfspr(unsigned long add) | ||
28 | { | ||
29 | unsigned long ret; | ||
30 | __asm__ __volatile__ ("l.mfspr %0,r0,%1" : "=r" (ret) : "K" (add)); | ||
31 | return ret; | ||
32 | } | ||
33 | |||
34 | static inline unsigned long mfspr_off(unsigned long add, unsigned long offset) | ||
35 | { | ||
36 | unsigned long ret; | ||
37 | __asm__ __volatile__ ("l.mfspr %0,%1,%2" : "=r" (ret) | ||
38 | : "r" (offset), "K" (add)); | ||
39 | return ret; | ||
40 | } | ||
41 | |||
42 | #endif | ||