summaryrefslogtreecommitdiffstats
path: root/target-sparc/cpu.h
diff options
context:
space:
mode:
authorBlue Swirl <blauwirbel@gmail.com>2009-12-05 11:14:55 +0000
committerBlue Swirl <blauwirbel@gmail.com>2009-12-05 11:14:55 +0000
commit2a90358f8ae950a22efbfcc69e6142e86a38064e (patch)
tree909be74b0ee523728034b0e011563b84f2437b6d /target-sparc/cpu.h
parentdd5121bd8a40fc8900ae3e741aea8eb2e3736839 (diff)
downloadhqemu-2a90358f8ae950a22efbfcc69e6142e86a38064e.zip
hqemu-2a90358f8ae950a22efbfcc69e6142e86a38064e.tar.gz
Sparc64: handle MMU global bit and nucleus context
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'target-sparc/cpu.h')
-rw-r--r--target-sparc/cpu.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/target-sparc/cpu.h b/target-sparc/cpu.h
index 63aead9..1fe4d0f 100644
--- a/target-sparc/cpu.h
+++ b/target-sparc/cpu.h
@@ -277,10 +277,12 @@ enum {
#define TTE_VALID_BIT (1ULL << 63)
#define TTE_USED_BIT (1ULL << 41)
#define TTE_LOCKED_BIT (1ULL << 6)
+#define TTE_GLOBAL_BIT (1ULL << 0)
#define TTE_IS_VALID(tte) ((tte) & TTE_VALID_BIT)
#define TTE_IS_USED(tte) ((tte) & TTE_USED_BIT)
#define TTE_IS_LOCKED(tte) ((tte) & TTE_LOCKED_BIT)
+#define TTE_IS_GLOBAL(tte) ((tte) & TTE_GLOBAL_BIT)
#define TTE_SET_USED(tte) ((tte) |= TTE_USED_BIT)
#define TTE_SET_UNUSED(tte) ((tte) &= ~TTE_USED_BIT)
OpenPOWER on IntegriCloud