1
0
Fork 0

[POWERPC] 4xx: Add mfspr/mtspr inline macros to 4xx bootwrapper

The 4xx bootwrapper occasionally needs to access SPR registers,
this adds mfspr/mtspr wrappers to it.

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Josh Boyer <jwboyer@linux.vnet.ibm.com>
hifive-unleashed-5.1
Benjamin Herrenschmidt 2007-12-21 15:39:32 +11:00 committed by Josh Boyer
parent d23f509929
commit ee41eea947
1 changed files with 8 additions and 0 deletions

View File

@ -16,6 +16,14 @@ static inline u32 mfpvr(void)
return pvr;
}
#define __stringify_1(x) #x
#define __stringify(x) __stringify_1(x)
#define mfspr(rn) ({unsigned long rval; \
asm volatile("mfspr %0," __stringify(rn) \
: "=r" (rval)); rval; })
#define mtspr(rn, v) asm volatile("mtspr " __stringify(rn) ",%0" : : "r" (v))
register void *__stack_pointer asm("r1");
#define get_sp() (__stack_pointer)