KVM: PPC: Implement MMIO emulation support for Book3S HV guests
[pandora-kernel.git] / arch / powerpc / include / asm / kvm_book3s_64.h
1 /*
2  * This program is free software; you can redistribute it and/or modify
3  * it under the terms of the GNU General Public License, version 2, as
4  * published by the Free Software Foundation.
5  *
6  * This program is distributed in the hope that it will be useful,
7  * but WITHOUT ANY WARRANTY; without even the implied warranty of
8  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
9  * GNU General Public License for more details.
10  *
11  * You should have received a copy of the GNU General Public License
12  * along with this program; if not, write to the Free Software
13  * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
14  *
15  * Copyright SUSE Linux Products GmbH 2010
16  *
17  * Authors: Alexander Graf <agraf@suse.de>
18  */
19
20 #ifndef __ASM_KVM_BOOK3S_64_H__
21 #define __ASM_KVM_BOOK3S_64_H__
22
23 #ifdef CONFIG_KVM_BOOK3S_PR
24 static inline struct kvmppc_book3s_shadow_vcpu *svcpu_get(struct kvm_vcpu *vcpu)
25 {
26         preempt_disable();
27         return &get_paca()->shadow_vcpu;
28 }
29
30 static inline void svcpu_put(struct kvmppc_book3s_shadow_vcpu *svcpu)
31 {
32         preempt_enable();
33 }
34 #endif
35
36 #define SPAPR_TCE_SHIFT         12
37
38 #ifdef CONFIG_KVM_BOOK3S_64_HV
39 /* For now use fixed-size 16MB page table */
40 #define HPT_ORDER       24
41 #define HPT_NPTEG       (1ul << (HPT_ORDER - 7))        /* 128B per pteg */
42 #define HPT_NPTE        (HPT_NPTEG << 3)                /* 8 PTEs per PTEG */
43 #define HPT_HASH_MASK   (HPT_NPTEG - 1)
44 #endif
45
46 #define VRMA_VSID       0x1ffffffUL     /* 1TB VSID reserved for VRMA */
47
48 /*
49  * We use a lock bit in HPTE dword 0 to synchronize updates and
50  * accesses to each HPTE, and another bit to indicate non-present
51  * HPTEs.
52  */
53 #define HPTE_V_HVLOCK   0x40UL
54 #define HPTE_V_ABSENT   0x20UL
55
56 static inline long try_lock_hpte(unsigned long *hpte, unsigned long bits)
57 {
58         unsigned long tmp, old;
59
60         asm volatile("  ldarx   %0,0,%2\n"
61                      "  and.    %1,%0,%3\n"
62                      "  bne     2f\n"
63                      "  ori     %0,%0,%4\n"
64                      "  stdcx.  %0,0,%2\n"
65                      "  beq+    2f\n"
66                      "  li      %1,%3\n"
67                      "2:        isync"
68                      : "=&r" (tmp), "=&r" (old)
69                      : "r" (hpte), "r" (bits), "i" (HPTE_V_HVLOCK)
70                      : "cc", "memory");
71         return old == 0;
72 }
73
74 static inline unsigned long compute_tlbie_rb(unsigned long v, unsigned long r,
75                                              unsigned long pte_index)
76 {
77         unsigned long rb, va_low;
78
79         rb = (v & ~0x7fUL) << 16;               /* AVA field */
80         va_low = pte_index >> 3;
81         if (v & HPTE_V_SECONDARY)
82                 va_low = ~va_low;
83         /* xor vsid from AVA */
84         if (!(v & HPTE_V_1TB_SEG))
85                 va_low ^= v >> 12;
86         else
87                 va_low ^= v >> 24;
88         va_low &= 0x7ff;
89         if (v & HPTE_V_LARGE) {
90                 rb |= 1;                        /* L field */
91                 if (cpu_has_feature(CPU_FTR_ARCH_206) &&
92                     (r & 0xff000)) {
93                         /* non-16MB large page, must be 64k */
94                         /* (masks depend on page size) */
95                         rb |= 0x1000;           /* page encoding in LP field */
96                         rb |= (va_low & 0x7f) << 16; /* 7b of VA in AVA/LP field */
97                         rb |= (va_low & 0xfe);  /* AVAL field (P7 doesn't seem to care) */
98                 }
99         } else {
100                 /* 4kB page */
101                 rb |= (va_low & 0x7ff) << 12;   /* remaining 11b of VA */
102         }
103         rb |= (v >> 54) & 0x300;                /* B field */
104         return rb;
105 }
106
107 static inline unsigned long hpte_page_size(unsigned long h, unsigned long l)
108 {
109         /* only handle 4k, 64k and 16M pages for now */
110         if (!(h & HPTE_V_LARGE))
111                 return 1ul << 12;               /* 4k page */
112         if ((l & 0xf000) == 0x1000 && cpu_has_feature(CPU_FTR_ARCH_206))
113                 return 1ul << 16;               /* 64k page */
114         if ((l & 0xff000) == 0)
115                 return 1ul << 24;               /* 16M page */
116         return 0;                               /* error */
117 }
118
119 static inline unsigned long hpte_rpn(unsigned long ptel, unsigned long psize)
120 {
121         return ((ptel & HPTE_R_RPN) & ~(psize - 1)) >> PAGE_SHIFT;
122 }
123
124 static inline int hpte_cache_flags_ok(unsigned long ptel, unsigned long io_type)
125 {
126         unsigned int wimg = ptel & HPTE_R_WIMG;
127
128         /* Handle SAO */
129         if (wimg == (HPTE_R_W | HPTE_R_I | HPTE_R_M) &&
130             cpu_has_feature(CPU_FTR_ARCH_206))
131                 wimg = HPTE_R_M;
132
133         if (!io_type)
134                 return wimg == HPTE_R_M;
135
136         return (wimg & (HPTE_R_W | HPTE_R_I)) == io_type;
137 }
138
139 /* Return HPTE cache control bits corresponding to Linux pte bits */
140 static inline unsigned long hpte_cache_bits(unsigned long pte_val)
141 {
142 #if _PAGE_NO_CACHE == HPTE_R_I && _PAGE_WRITETHRU == HPTE_R_W
143         return pte_val & (HPTE_R_W | HPTE_R_I);
144 #else
145         return ((pte_val & _PAGE_NO_CACHE) ? HPTE_R_I : 0) +
146                 ((pte_val & _PAGE_WRITETHRU) ? HPTE_R_W : 0);
147 #endif
148 }
149
150 static inline bool hpte_read_permission(unsigned long pp, unsigned long key)
151 {
152         if (key)
153                 return PP_RWRX <= pp && pp <= PP_RXRX;
154         return 1;
155 }
156
157 static inline bool hpte_write_permission(unsigned long pp, unsigned long key)
158 {
159         if (key)
160                 return pp == PP_RWRW;
161         return pp <= PP_RWRW;
162 }
163
164 static inline int hpte_get_skey_perm(unsigned long hpte_r, unsigned long amr)
165 {
166         unsigned long skey;
167
168         skey = ((hpte_r & HPTE_R_KEY_HI) >> 57) |
169                 ((hpte_r & HPTE_R_KEY_LO) >> 9);
170         return (amr >> (62 - 2 * skey)) & 3;
171 }
172
173 static inline void lock_rmap(unsigned long *rmap)
174 {
175         do {
176                 while (test_bit(KVMPPC_RMAP_LOCK_BIT, rmap))
177                         cpu_relax();
178         } while (test_and_set_bit_lock(KVMPPC_RMAP_LOCK_BIT, rmap));
179 }
180
181 static inline void unlock_rmap(unsigned long *rmap)
182 {
183         __clear_bit_unlock(KVMPPC_RMAP_LOCK_BIT, rmap);
184 }
185
186 static inline bool slot_is_aligned(struct kvm_memory_slot *memslot,
187                                    unsigned long pagesize)
188 {
189         unsigned long mask = (pagesize >> PAGE_SHIFT) - 1;
190
191         if (pagesize <= PAGE_SIZE)
192                 return 1;
193         return !(memslot->base_gfn & mask) && !(memslot->npages & mask);
194 }
195
196 #endif /* __ASM_KVM_BOOK3S_64_H__ */