Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 1 | /* |
Scott Wood | 49ea069 | 2011-03-28 15:01:24 -0500 | [diff] [blame] | 2 | * Copyright (C) 2008-2011 Freescale Semiconductor, Inc. All rights reserved. |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 3 | * |
| 4 | * Author: Yu Liu, yu.liu@freescale.com |
| 5 | * |
| 6 | * Description: |
| 7 | * This file is based on arch/powerpc/kvm/44x_tlb.c, |
| 8 | * by Hollis Blanchard <hollisb@us.ibm.com>. |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or modify |
| 11 | * it under the terms of the GNU General Public License, version 2, as |
| 12 | * published by the Free Software Foundation. |
| 13 | */ |
| 14 | |
| 15 | #include <linux/types.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 16 | #include <linux/slab.h> |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 17 | #include <linux/string.h> |
| 18 | #include <linux/kvm.h> |
| 19 | #include <linux/kvm_host.h> |
| 20 | #include <linux/highmem.h> |
| 21 | #include <asm/kvm_ppc.h> |
| 22 | #include <asm/kvm_e500.h> |
| 23 | |
Liu Yu | 9aa4dd5 | 2009-01-14 10:47:38 -0600 | [diff] [blame] | 24 | #include "../mm/mmu_decl.h" |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 25 | #include "e500_tlb.h" |
Marcelo Tosatti | 46f43c6 | 2009-06-18 11:47:27 -0300 | [diff] [blame] | 26 | #include "trace.h" |
Scott Wood | 49ea069 | 2011-03-28 15:01:24 -0500 | [diff] [blame] | 27 | #include "timing.h" |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 28 | |
| 29 | #define to_htlb1_esel(esel) (tlb1_entry_num - (esel) - 1) |
| 30 | |
Liu Yu | dd9ebf1f | 2011-06-14 18:35:14 -0500 | [diff] [blame] | 31 | struct id { |
| 32 | unsigned long val; |
| 33 | struct id **pentry; |
| 34 | }; |
| 35 | |
| 36 | #define NUM_TIDS 256 |
| 37 | |
| 38 | /* |
| 39 | * This table provide mappings from: |
| 40 | * (guestAS,guestTID,guestPR) --> ID of physical cpu |
| 41 | * guestAS [0..1] |
| 42 | * guestTID [0..255] |
| 43 | * guestPR [0..1] |
| 44 | * ID [1..255] |
| 45 | * Each vcpu keeps one vcpu_id_table. |
| 46 | */ |
| 47 | struct vcpu_id_table { |
| 48 | struct id id[2][NUM_TIDS][2]; |
| 49 | }; |
| 50 | |
| 51 | /* |
| 52 | * This table provide reversed mappings of vcpu_id_table: |
| 53 | * ID --> address of vcpu_id_table item. |
| 54 | * Each physical core has one pcpu_id_table. |
| 55 | */ |
| 56 | struct pcpu_id_table { |
| 57 | struct id *entry[NUM_TIDS]; |
| 58 | }; |
| 59 | |
| 60 | static DEFINE_PER_CPU(struct pcpu_id_table, pcpu_sids); |
| 61 | |
| 62 | /* This variable keeps last used shadow ID on local core. |
| 63 | * The valid range of shadow ID is [1..255] */ |
| 64 | static DEFINE_PER_CPU(unsigned long, pcpu_last_used_sid); |
| 65 | |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 66 | static unsigned int tlb1_entry_num; |
| 67 | |
Liu Yu | dd9ebf1f | 2011-06-14 18:35:14 -0500 | [diff] [blame] | 68 | /* |
| 69 | * Allocate a free shadow id and setup a valid sid mapping in given entry. |
| 70 | * A mapping is only valid when vcpu_id_table and pcpu_id_table are match. |
| 71 | * |
| 72 | * The caller must have preemption disabled, and keep it that way until |
| 73 | * it has finished with the returned shadow id (either written into the |
| 74 | * TLB or arch.shadow_pid, or discarded). |
| 75 | */ |
| 76 | static inline int local_sid_setup_one(struct id *entry) |
| 77 | { |
| 78 | unsigned long sid; |
| 79 | int ret = -1; |
| 80 | |
| 81 | sid = ++(__get_cpu_var(pcpu_last_used_sid)); |
| 82 | if (sid < NUM_TIDS) { |
| 83 | __get_cpu_var(pcpu_sids).entry[sid] = entry; |
| 84 | entry->val = sid; |
| 85 | entry->pentry = &__get_cpu_var(pcpu_sids).entry[sid]; |
| 86 | ret = sid; |
| 87 | } |
| 88 | |
| 89 | /* |
| 90 | * If sid == NUM_TIDS, we've run out of sids. We return -1, and |
| 91 | * the caller will invalidate everything and start over. |
| 92 | * |
| 93 | * sid > NUM_TIDS indicates a race, which we disable preemption to |
| 94 | * avoid. |
| 95 | */ |
| 96 | WARN_ON(sid > NUM_TIDS); |
| 97 | |
| 98 | return ret; |
| 99 | } |
| 100 | |
| 101 | /* |
| 102 | * Check if given entry contain a valid shadow id mapping. |
| 103 | * An ID mapping is considered valid only if |
| 104 | * both vcpu and pcpu know this mapping. |
| 105 | * |
| 106 | * The caller must have preemption disabled, and keep it that way until |
| 107 | * it has finished with the returned shadow id (either written into the |
| 108 | * TLB or arch.shadow_pid, or discarded). |
| 109 | */ |
| 110 | static inline int local_sid_lookup(struct id *entry) |
| 111 | { |
| 112 | if (entry && entry->val != 0 && |
| 113 | __get_cpu_var(pcpu_sids).entry[entry->val] == entry && |
| 114 | entry->pentry == &__get_cpu_var(pcpu_sids).entry[entry->val]) |
| 115 | return entry->val; |
| 116 | return -1; |
| 117 | } |
| 118 | |
| 119 | /* Invalidate all id mappings on local core */ |
| 120 | static inline void local_sid_destroy_all(void) |
| 121 | { |
| 122 | preempt_disable(); |
| 123 | __get_cpu_var(pcpu_last_used_sid) = 0; |
| 124 | memset(&__get_cpu_var(pcpu_sids), 0, sizeof(__get_cpu_var(pcpu_sids))); |
| 125 | preempt_enable(); |
| 126 | } |
| 127 | |
| 128 | static void *kvmppc_e500_id_table_alloc(struct kvmppc_vcpu_e500 *vcpu_e500) |
| 129 | { |
| 130 | vcpu_e500->idt = kzalloc(sizeof(struct vcpu_id_table), GFP_KERNEL); |
| 131 | return vcpu_e500->idt; |
| 132 | } |
| 133 | |
| 134 | static void kvmppc_e500_id_table_free(struct kvmppc_vcpu_e500 *vcpu_e500) |
| 135 | { |
| 136 | kfree(vcpu_e500->idt); |
| 137 | } |
| 138 | |
| 139 | /* Invalidate all mappings on vcpu */ |
| 140 | static void kvmppc_e500_id_table_reset_all(struct kvmppc_vcpu_e500 *vcpu_e500) |
| 141 | { |
| 142 | memset(vcpu_e500->idt, 0, sizeof(struct vcpu_id_table)); |
| 143 | |
| 144 | /* Update shadow pid when mappings are changed */ |
| 145 | kvmppc_e500_recalc_shadow_pid(vcpu_e500); |
| 146 | } |
| 147 | |
| 148 | /* Invalidate one ID mapping on vcpu */ |
| 149 | static inline void kvmppc_e500_id_table_reset_one( |
| 150 | struct kvmppc_vcpu_e500 *vcpu_e500, |
| 151 | int as, int pid, int pr) |
| 152 | { |
| 153 | struct vcpu_id_table *idt = vcpu_e500->idt; |
| 154 | |
| 155 | BUG_ON(as >= 2); |
| 156 | BUG_ON(pid >= NUM_TIDS); |
| 157 | BUG_ON(pr >= 2); |
| 158 | |
| 159 | idt->id[as][pid][pr].val = 0; |
| 160 | idt->id[as][pid][pr].pentry = NULL; |
| 161 | |
| 162 | /* Update shadow pid when mappings are changed */ |
| 163 | kvmppc_e500_recalc_shadow_pid(vcpu_e500); |
| 164 | } |
| 165 | |
| 166 | /* |
| 167 | * Map guest (vcpu,AS,ID,PR) to physical core shadow id. |
| 168 | * This function first lookup if a valid mapping exists, |
| 169 | * if not, then creates a new one. |
| 170 | * |
| 171 | * The caller must have preemption disabled, and keep it that way until |
| 172 | * it has finished with the returned shadow id (either written into the |
| 173 | * TLB or arch.shadow_pid, or discarded). |
| 174 | */ |
| 175 | static unsigned int kvmppc_e500_get_sid(struct kvmppc_vcpu_e500 *vcpu_e500, |
| 176 | unsigned int as, unsigned int gid, |
| 177 | unsigned int pr, int avoid_recursion) |
| 178 | { |
| 179 | struct vcpu_id_table *idt = vcpu_e500->idt; |
| 180 | int sid; |
| 181 | |
| 182 | BUG_ON(as >= 2); |
| 183 | BUG_ON(gid >= NUM_TIDS); |
| 184 | BUG_ON(pr >= 2); |
| 185 | |
| 186 | sid = local_sid_lookup(&idt->id[as][gid][pr]); |
| 187 | |
| 188 | while (sid <= 0) { |
| 189 | /* No mapping yet */ |
| 190 | sid = local_sid_setup_one(&idt->id[as][gid][pr]); |
| 191 | if (sid <= 0) { |
| 192 | _tlbil_all(); |
| 193 | local_sid_destroy_all(); |
| 194 | } |
| 195 | |
| 196 | /* Update shadow pid when mappings are changed */ |
| 197 | if (!avoid_recursion) |
| 198 | kvmppc_e500_recalc_shadow_pid(vcpu_e500); |
| 199 | } |
| 200 | |
| 201 | return sid; |
| 202 | } |
| 203 | |
| 204 | /* Map guest pid to shadow. |
| 205 | * We use PID to keep shadow of current guest non-zero PID, |
| 206 | * and use PID1 to keep shadow of guest zero PID. |
| 207 | * So that guest tlbe with TID=0 can be accessed at any time */ |
| 208 | void kvmppc_e500_recalc_shadow_pid(struct kvmppc_vcpu_e500 *vcpu_e500) |
| 209 | { |
| 210 | preempt_disable(); |
| 211 | vcpu_e500->vcpu.arch.shadow_pid = kvmppc_e500_get_sid(vcpu_e500, |
| 212 | get_cur_as(&vcpu_e500->vcpu), |
| 213 | get_cur_pid(&vcpu_e500->vcpu), |
| 214 | get_cur_pr(&vcpu_e500->vcpu), 1); |
| 215 | vcpu_e500->vcpu.arch.shadow_pid1 = kvmppc_e500_get_sid(vcpu_e500, |
| 216 | get_cur_as(&vcpu_e500->vcpu), 0, |
| 217 | get_cur_pr(&vcpu_e500->vcpu), 1); |
| 218 | preempt_enable(); |
| 219 | } |
| 220 | |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 221 | void kvmppc_dump_tlbs(struct kvm_vcpu *vcpu) |
| 222 | { |
| 223 | struct kvmppc_vcpu_e500 *vcpu_e500 = to_e500(vcpu); |
| 224 | struct tlbe *tlbe; |
| 225 | int i, tlbsel; |
| 226 | |
| 227 | printk("| %8s | %8s | %8s | %8s | %8s |\n", |
| 228 | "nr", "mas1", "mas2", "mas3", "mas7"); |
| 229 | |
| 230 | for (tlbsel = 0; tlbsel < 2; tlbsel++) { |
| 231 | printk("Guest TLB%d:\n", tlbsel); |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 232 | for (i = 0; i < vcpu_e500->gtlb_size[tlbsel]; i++) { |
| 233 | tlbe = &vcpu_e500->gtlb_arch[tlbsel][i]; |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 234 | if (tlbe->mas1 & MAS1_VALID) |
| 235 | printk(" G[%d][%3d] | %08X | %08X | %08X | %08X |\n", |
| 236 | tlbsel, i, tlbe->mas1, tlbe->mas2, |
| 237 | tlbe->mas3, tlbe->mas7); |
| 238 | } |
| 239 | } |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 240 | } |
| 241 | |
| 242 | static inline unsigned int tlb0_get_next_victim( |
| 243 | struct kvmppc_vcpu_e500 *vcpu_e500) |
| 244 | { |
| 245 | unsigned int victim; |
| 246 | |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 247 | victim = vcpu_e500->gtlb_nv[0]++; |
| 248 | if (unlikely(vcpu_e500->gtlb_nv[0] >= KVM_E500_TLB0_WAY_NUM)) |
| 249 | vcpu_e500->gtlb_nv[0] = 0; |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 250 | |
| 251 | return victim; |
| 252 | } |
| 253 | |
| 254 | static inline unsigned int tlb1_max_shadow_size(void) |
| 255 | { |
Scott Wood | a4cd8b2 | 2011-06-14 18:34:41 -0500 | [diff] [blame] | 256 | /* reserve one entry for magic page */ |
| 257 | return tlb1_entry_num - tlbcam_index - 1; |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 258 | } |
| 259 | |
| 260 | static inline int tlbe_is_writable(struct tlbe *tlbe) |
| 261 | { |
| 262 | return tlbe->mas3 & (MAS3_SW|MAS3_UW); |
| 263 | } |
| 264 | |
| 265 | static inline u32 e500_shadow_mas3_attrib(u32 mas3, int usermode) |
| 266 | { |
| 267 | /* Mask off reserved bits. */ |
| 268 | mas3 &= MAS3_ATTRIB_MASK; |
| 269 | |
| 270 | if (!usermode) { |
| 271 | /* Guest is in supervisor mode, |
| 272 | * so we need to translate guest |
| 273 | * supervisor permissions into user permissions. */ |
| 274 | mas3 &= ~E500_TLB_USER_PERM_MASK; |
| 275 | mas3 |= (mas3 & E500_TLB_SUPER_PERM_MASK) << 1; |
| 276 | } |
| 277 | |
| 278 | return mas3 | E500_TLB_SUPER_PERM_MASK; |
| 279 | } |
| 280 | |
| 281 | static inline u32 e500_shadow_mas2_attrib(u32 mas2, int usermode) |
| 282 | { |
Liu Yu | 046a48b | 2009-03-17 16:57:46 +0800 | [diff] [blame] | 283 | #ifdef CONFIG_SMP |
| 284 | return (mas2 & MAS2_ATTRIB_MASK) | MAS2_M; |
| 285 | #else |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 286 | return mas2 & MAS2_ATTRIB_MASK; |
Liu Yu | 046a48b | 2009-03-17 16:57:46 +0800 | [diff] [blame] | 287 | #endif |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 288 | } |
| 289 | |
| 290 | /* |
| 291 | * writing shadow tlb entry to host TLB |
| 292 | */ |
Scott Wood | 0ef3099 | 2011-06-14 18:34:35 -0500 | [diff] [blame] | 293 | static inline void __write_host_tlbe(struct tlbe *stlbe, uint32_t mas0) |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 294 | { |
Scott Wood | 0ef3099 | 2011-06-14 18:34:35 -0500 | [diff] [blame] | 295 | unsigned long flags; |
| 296 | |
| 297 | local_irq_save(flags); |
| 298 | mtspr(SPRN_MAS0, mas0); |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 299 | mtspr(SPRN_MAS1, stlbe->mas1); |
| 300 | mtspr(SPRN_MAS2, stlbe->mas2); |
| 301 | mtspr(SPRN_MAS3, stlbe->mas3); |
| 302 | mtspr(SPRN_MAS7, stlbe->mas7); |
Scott Wood | 0ef3099 | 2011-06-14 18:34:35 -0500 | [diff] [blame] | 303 | asm volatile("isync; tlbwe" : : : "memory"); |
| 304 | local_irq_restore(flags); |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 305 | } |
| 306 | |
| 307 | static inline void write_host_tlbe(struct kvmppc_vcpu_e500 *vcpu_e500, |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 308 | int tlbsel, int esel, struct tlbe *stlbe) |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 309 | { |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 310 | if (tlbsel == 0) { |
Scott Wood | 0ef3099 | 2011-06-14 18:34:35 -0500 | [diff] [blame] | 311 | __write_host_tlbe(stlbe, |
| 312 | MAS0_TLBSEL(0) | |
| 313 | MAS0_ESEL(esel & (KVM_E500_TLB0_WAY_NUM - 1))); |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 314 | } else { |
Scott Wood | 0ef3099 | 2011-06-14 18:34:35 -0500 | [diff] [blame] | 315 | __write_host_tlbe(stlbe, |
| 316 | MAS0_TLBSEL(1) | |
| 317 | MAS0_ESEL(to_htlb1_esel(esel))); |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 318 | } |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 319 | trace_kvm_stlb_write(index_of(tlbsel, esel), stlbe->mas1, stlbe->mas2, |
| 320 | stlbe->mas3, stlbe->mas7); |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 321 | } |
| 322 | |
Scott Wood | a4cd8b2 | 2011-06-14 18:34:41 -0500 | [diff] [blame] | 323 | void kvmppc_map_magic(struct kvm_vcpu *vcpu) |
| 324 | { |
Liu Yu | dd9ebf1f | 2011-06-14 18:35:14 -0500 | [diff] [blame] | 325 | struct kvmppc_vcpu_e500 *vcpu_e500 = to_e500(vcpu); |
Scott Wood | a4cd8b2 | 2011-06-14 18:34:41 -0500 | [diff] [blame] | 326 | struct tlbe magic; |
| 327 | ulong shared_page = ((ulong)vcpu->arch.shared) & PAGE_MASK; |
Liu Yu | dd9ebf1f | 2011-06-14 18:35:14 -0500 | [diff] [blame] | 328 | unsigned int stid; |
Scott Wood | a4cd8b2 | 2011-06-14 18:34:41 -0500 | [diff] [blame] | 329 | pfn_t pfn; |
| 330 | |
| 331 | pfn = (pfn_t)virt_to_phys((void *)shared_page) >> PAGE_SHIFT; |
| 332 | get_page(pfn_to_page(pfn)); |
| 333 | |
Liu Yu | dd9ebf1f | 2011-06-14 18:35:14 -0500 | [diff] [blame] | 334 | preempt_disable(); |
| 335 | stid = kvmppc_e500_get_sid(vcpu_e500, 0, 0, 0, 0); |
| 336 | |
| 337 | magic.mas1 = MAS1_VALID | MAS1_TS | MAS1_TID(stid) | |
Scott Wood | a4cd8b2 | 2011-06-14 18:34:41 -0500 | [diff] [blame] | 338 | MAS1_TSIZE(BOOK3E_PAGESZ_4K); |
| 339 | magic.mas2 = vcpu->arch.magic_page_ea | MAS2_M; |
| 340 | magic.mas3 = (pfn << PAGE_SHIFT) | |
| 341 | MAS3_SW | MAS3_SR | MAS3_UW | MAS3_UR; |
| 342 | magic.mas7 = pfn >> (32 - PAGE_SHIFT); |
| 343 | |
| 344 | __write_host_tlbe(&magic, MAS0_TLBSEL(1) | MAS0_ESEL(tlbcam_index)); |
Liu Yu | dd9ebf1f | 2011-06-14 18:35:14 -0500 | [diff] [blame] | 345 | preempt_enable(); |
Scott Wood | a4cd8b2 | 2011-06-14 18:34:41 -0500 | [diff] [blame] | 346 | } |
| 347 | |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 348 | void kvmppc_e500_tlb_load(struct kvm_vcpu *vcpu, int cpu) |
| 349 | { |
Liu Yu | dd9ebf1f | 2011-06-14 18:35:14 -0500 | [diff] [blame] | 350 | struct kvmppc_vcpu_e500 *vcpu_e500 = to_e500(vcpu); |
| 351 | |
| 352 | /* Shadow PID may be expired on local core */ |
| 353 | kvmppc_e500_recalc_shadow_pid(vcpu_e500); |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 354 | } |
| 355 | |
| 356 | void kvmppc_e500_tlb_put(struct kvm_vcpu *vcpu) |
| 357 | { |
Liu Yu | dd9ebf1f | 2011-06-14 18:35:14 -0500 | [diff] [blame] | 358 | } |
| 359 | |
| 360 | static void kvmppc_e500_stlbe_invalidate(struct kvmppc_vcpu_e500 *vcpu_e500, |
| 361 | int tlbsel, int esel) |
| 362 | { |
| 363 | struct tlbe *gtlbe = &vcpu_e500->gtlb_arch[tlbsel][esel]; |
| 364 | struct vcpu_id_table *idt = vcpu_e500->idt; |
| 365 | unsigned int pr, tid, ts, pid; |
| 366 | u32 val, eaddr; |
| 367 | unsigned long flags; |
| 368 | |
| 369 | ts = get_tlb_ts(gtlbe); |
| 370 | tid = get_tlb_tid(gtlbe); |
| 371 | |
| 372 | preempt_disable(); |
| 373 | |
| 374 | /* One guest ID may be mapped to two shadow IDs */ |
| 375 | for (pr = 0; pr < 2; pr++) { |
| 376 | /* |
| 377 | * The shadow PID can have a valid mapping on at most one |
| 378 | * host CPU. In the common case, it will be valid on this |
| 379 | * CPU, in which case (for TLB0) we do a local invalidation |
| 380 | * of the specific address. |
| 381 | * |
| 382 | * If the shadow PID is not valid on the current host CPU, or |
| 383 | * if we're invalidating a TLB1 entry, we invalidate the |
| 384 | * entire shadow PID. |
| 385 | */ |
| 386 | if (tlbsel == 1 || |
| 387 | (pid = local_sid_lookup(&idt->id[ts][tid][pr])) <= 0) { |
| 388 | kvmppc_e500_id_table_reset_one(vcpu_e500, ts, tid, pr); |
| 389 | continue; |
| 390 | } |
| 391 | |
| 392 | /* |
| 393 | * The guest is invalidating a TLB0 entry which is in a PID |
| 394 | * that has a valid shadow mapping on this host CPU. We |
| 395 | * search host TLB0 to invalidate it's shadow TLB entry, |
| 396 | * similar to __tlbil_va except that we need to look in AS1. |
| 397 | */ |
| 398 | val = (pid << MAS6_SPID_SHIFT) | MAS6_SAS; |
| 399 | eaddr = get_tlb_eaddr(gtlbe); |
| 400 | |
| 401 | local_irq_save(flags); |
| 402 | |
| 403 | mtspr(SPRN_MAS6, val); |
| 404 | asm volatile("tlbsx 0, %[eaddr]" : : [eaddr] "r" (eaddr)); |
| 405 | val = mfspr(SPRN_MAS1); |
| 406 | if (val & MAS1_VALID) { |
| 407 | mtspr(SPRN_MAS1, val & ~MAS1_VALID); |
| 408 | asm volatile("tlbwe"); |
| 409 | } |
| 410 | |
| 411 | local_irq_restore(flags); |
| 412 | } |
| 413 | |
| 414 | preempt_enable(); |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 415 | } |
| 416 | |
| 417 | /* Search the guest TLB for a matching entry. */ |
| 418 | static int kvmppc_e500_tlb_index(struct kvmppc_vcpu_e500 *vcpu_e500, |
| 419 | gva_t eaddr, int tlbsel, unsigned int pid, int as) |
| 420 | { |
Scott Wood | 1aee47a | 2011-06-14 18:35:20 -0500 | [diff] [blame] | 421 | int size = vcpu_e500->gtlb_size[tlbsel]; |
| 422 | int set_base; |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 423 | int i; |
| 424 | |
Scott Wood | 1aee47a | 2011-06-14 18:35:20 -0500 | [diff] [blame] | 425 | if (tlbsel == 0) { |
| 426 | int mask = size / KVM_E500_TLB0_WAY_NUM - 1; |
| 427 | set_base = (eaddr >> PAGE_SHIFT) & mask; |
| 428 | set_base *= KVM_E500_TLB0_WAY_NUM; |
| 429 | size = KVM_E500_TLB0_WAY_NUM; |
| 430 | } else { |
| 431 | set_base = 0; |
| 432 | } |
| 433 | |
| 434 | for (i = 0; i < size; i++) { |
| 435 | struct tlbe *tlbe = &vcpu_e500->gtlb_arch[tlbsel][set_base + i]; |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 436 | unsigned int tid; |
| 437 | |
| 438 | if (eaddr < get_tlb_eaddr(tlbe)) |
| 439 | continue; |
| 440 | |
| 441 | if (eaddr > get_tlb_end(tlbe)) |
| 442 | continue; |
| 443 | |
| 444 | tid = get_tlb_tid(tlbe); |
| 445 | if (tid && (tid != pid)) |
| 446 | continue; |
| 447 | |
| 448 | if (!get_tlb_v(tlbe)) |
| 449 | continue; |
| 450 | |
| 451 | if (get_tlb_ts(tlbe) != as && as != -1) |
| 452 | continue; |
| 453 | |
Scott Wood | 1aee47a | 2011-06-14 18:35:20 -0500 | [diff] [blame] | 454 | return set_base + i; |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 455 | } |
| 456 | |
| 457 | return -1; |
| 458 | } |
| 459 | |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 460 | static inline void kvmppc_e500_priv_setup(struct tlbe_priv *priv, |
| 461 | struct tlbe *gtlbe, |
| 462 | pfn_t pfn) |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 463 | { |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 464 | priv->pfn = pfn; |
| 465 | priv->flags = E500_TLB_VALID; |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 466 | |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 467 | if (tlbe_is_writable(gtlbe)) |
| 468 | priv->flags |= E500_TLB_DIRTY; |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 469 | } |
| 470 | |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 471 | static inline void kvmppc_e500_priv_release(struct tlbe_priv *priv) |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 472 | { |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 473 | if (priv->flags & E500_TLB_VALID) { |
| 474 | if (priv->flags & E500_TLB_DIRTY) |
| 475 | kvm_release_pfn_dirty(priv->pfn); |
| 476 | else |
| 477 | kvm_release_pfn_clean(priv->pfn); |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 478 | |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 479 | priv->flags = 0; |
| 480 | } |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 481 | } |
| 482 | |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 483 | static inline void kvmppc_e500_deliver_tlb_miss(struct kvm_vcpu *vcpu, |
| 484 | unsigned int eaddr, int as) |
| 485 | { |
| 486 | struct kvmppc_vcpu_e500 *vcpu_e500 = to_e500(vcpu); |
| 487 | unsigned int victim, pidsel, tsized; |
| 488 | int tlbsel; |
| 489 | |
Liu Yu | fb2838d | 2009-01-14 10:47:37 -0600 | [diff] [blame] | 490 | /* since we only have two TLBs, only lower bit is used. */ |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 491 | tlbsel = (vcpu_e500->mas4 >> 28) & 0x1; |
| 492 | victim = (tlbsel == 0) ? tlb0_get_next_victim(vcpu_e500) : 0; |
| 493 | pidsel = (vcpu_e500->mas4 >> 16) & 0xf; |
Liu Yu | 0cfb50e | 2009-06-05 14:54:29 +0800 | [diff] [blame] | 494 | tsized = (vcpu_e500->mas4 >> 7) & 0x1f; |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 495 | |
| 496 | vcpu_e500->mas0 = MAS0_TLBSEL(tlbsel) | MAS0_ESEL(victim) |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 497 | | MAS0_NV(vcpu_e500->gtlb_nv[tlbsel]); |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 498 | vcpu_e500->mas1 = MAS1_VALID | (as ? MAS1_TS : 0) |
| 499 | | MAS1_TID(vcpu_e500->pid[pidsel]) |
| 500 | | MAS1_TSIZE(tsized); |
| 501 | vcpu_e500->mas2 = (eaddr & MAS2_EPN) |
| 502 | | (vcpu_e500->mas4 & MAS2_ATTRIB_MASK); |
| 503 | vcpu_e500->mas3 &= MAS3_U0 | MAS3_U1 | MAS3_U2 | MAS3_U3; |
| 504 | vcpu_e500->mas6 = (vcpu_e500->mas6 & MAS6_SPID1) |
| 505 | | (get_cur_pid(vcpu) << 16) |
| 506 | | (as ? MAS6_SAS : 0); |
| 507 | vcpu_e500->mas7 = 0; |
| 508 | } |
| 509 | |
Scott Wood | 3bf3cdc | 2011-08-18 15:25:14 -0500 | [diff] [blame^] | 510 | /* TID must be supplied by the caller */ |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 511 | static inline void kvmppc_e500_setup_stlbe(struct kvmppc_vcpu_e500 *vcpu_e500, |
| 512 | struct tlbe *gtlbe, int tsize, |
| 513 | struct tlbe_priv *priv, |
| 514 | u64 gvaddr, struct tlbe *stlbe) |
| 515 | { |
| 516 | pfn_t pfn = priv->pfn; |
| 517 | |
| 518 | /* Force TS=1 IPROT=0 for all guest mappings. */ |
Scott Wood | 3bf3cdc | 2011-08-18 15:25:14 -0500 | [diff] [blame^] | 519 | stlbe->mas1 = MAS1_TSIZE(tsize) | MAS1_TS | MAS1_VALID; |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 520 | stlbe->mas2 = (gvaddr & MAS2_EPN) |
| 521 | | e500_shadow_mas2_attrib(gtlbe->mas2, |
| 522 | vcpu_e500->vcpu.arch.shared->msr & MSR_PR); |
| 523 | stlbe->mas3 = ((pfn << PAGE_SHIFT) & MAS3_RPN) |
| 524 | | e500_shadow_mas3_attrib(gtlbe->mas3, |
| 525 | vcpu_e500->vcpu.arch.shared->msr & MSR_PR); |
| 526 | stlbe->mas7 = (pfn >> (32 - PAGE_SHIFT)) & MAS7_RPN; |
| 527 | } |
| 528 | |
| 529 | |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 530 | static inline void kvmppc_e500_shadow_map(struct kvmppc_vcpu_e500 *vcpu_e500, |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 531 | u64 gvaddr, gfn_t gfn, struct tlbe *gtlbe, int tlbsel, int esel, |
| 532 | struct tlbe *stlbe) |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 533 | { |
Scott Wood | 9973d54 | 2011-06-14 18:34:39 -0500 | [diff] [blame] | 534 | struct kvm_memory_slot *slot; |
Scott Wood | 9973d54 | 2011-06-14 18:34:39 -0500 | [diff] [blame] | 535 | unsigned long pfn, hva; |
| 536 | int pfnmap = 0; |
| 537 | int tsize = BOOK3E_PAGESZ_4K; |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 538 | struct tlbe_priv *priv; |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 539 | |
Scott Wood | 59c1f4e | 2011-06-14 18:34:37 -0500 | [diff] [blame] | 540 | /* |
| 541 | * Translate guest physical to true physical, acquiring |
| 542 | * a page reference if it is normal, non-reserved memory. |
Scott Wood | 9973d54 | 2011-06-14 18:34:39 -0500 | [diff] [blame] | 543 | * |
| 544 | * gfn_to_memslot() must succeed because otherwise we wouldn't |
| 545 | * have gotten this far. Eventually we should just pass the slot |
| 546 | * pointer through from the first lookup. |
Scott Wood | 59c1f4e | 2011-06-14 18:34:37 -0500 | [diff] [blame] | 547 | */ |
Scott Wood | 9973d54 | 2011-06-14 18:34:39 -0500 | [diff] [blame] | 548 | slot = gfn_to_memslot(vcpu_e500->vcpu.kvm, gfn); |
| 549 | hva = gfn_to_hva_memslot(slot, gfn); |
| 550 | |
| 551 | if (tlbsel == 1) { |
| 552 | struct vm_area_struct *vma; |
| 553 | down_read(¤t->mm->mmap_sem); |
| 554 | |
| 555 | vma = find_vma(current->mm, hva); |
| 556 | if (vma && hva >= vma->vm_start && |
| 557 | (vma->vm_flags & VM_PFNMAP)) { |
| 558 | /* |
| 559 | * This VMA is a physically contiguous region (e.g. |
| 560 | * /dev/mem) that bypasses normal Linux page |
| 561 | * management. Find the overlap between the |
| 562 | * vma and the memslot. |
| 563 | */ |
| 564 | |
| 565 | unsigned long start, end; |
| 566 | unsigned long slot_start, slot_end; |
| 567 | |
| 568 | pfnmap = 1; |
| 569 | |
| 570 | start = vma->vm_pgoff; |
| 571 | end = start + |
| 572 | ((vma->vm_end - vma->vm_start) >> PAGE_SHIFT); |
| 573 | |
| 574 | pfn = start + ((hva - vma->vm_start) >> PAGE_SHIFT); |
| 575 | |
| 576 | slot_start = pfn - (gfn - slot->base_gfn); |
| 577 | slot_end = slot_start + slot->npages; |
| 578 | |
| 579 | if (start < slot_start) |
| 580 | start = slot_start; |
| 581 | if (end > slot_end) |
| 582 | end = slot_end; |
| 583 | |
| 584 | tsize = (gtlbe->mas1 & MAS1_TSIZE_MASK) >> |
| 585 | MAS1_TSIZE_SHIFT; |
| 586 | |
| 587 | /* |
| 588 | * e500 doesn't implement the lowest tsize bit, |
| 589 | * or 1K pages. |
| 590 | */ |
| 591 | tsize = max(BOOK3E_PAGESZ_4K, tsize & ~1); |
| 592 | |
| 593 | /* |
| 594 | * Now find the largest tsize (up to what the guest |
| 595 | * requested) that will cover gfn, stay within the |
| 596 | * range, and for which gfn and pfn are mutually |
| 597 | * aligned. |
| 598 | */ |
| 599 | |
| 600 | for (; tsize > BOOK3E_PAGESZ_4K; tsize -= 2) { |
| 601 | unsigned long gfn_start, gfn_end, tsize_pages; |
| 602 | tsize_pages = 1 << (tsize - 2); |
| 603 | |
| 604 | gfn_start = gfn & ~(tsize_pages - 1); |
| 605 | gfn_end = gfn_start + tsize_pages; |
| 606 | |
| 607 | if (gfn_start + pfn - gfn < start) |
| 608 | continue; |
| 609 | if (gfn_end + pfn - gfn > end) |
| 610 | continue; |
| 611 | if ((gfn & (tsize_pages - 1)) != |
| 612 | (pfn & (tsize_pages - 1))) |
| 613 | continue; |
| 614 | |
| 615 | gvaddr &= ~((tsize_pages << PAGE_SHIFT) - 1); |
| 616 | pfn &= ~(tsize_pages - 1); |
| 617 | break; |
| 618 | } |
| 619 | } |
| 620 | |
| 621 | up_read(¤t->mm->mmap_sem); |
| 622 | } |
| 623 | |
| 624 | if (likely(!pfnmap)) { |
| 625 | pfn = gfn_to_pfn_memslot(vcpu_e500->vcpu.kvm, slot, gfn); |
| 626 | if (is_error_pfn(pfn)) { |
| 627 | printk(KERN_ERR "Couldn't get real page for gfn %lx!\n", |
| 628 | (long)gfn); |
| 629 | kvm_release_pfn_clean(pfn); |
| 630 | return; |
| 631 | } |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 632 | } |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 633 | |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 634 | /* Drop old priv and setup new one. */ |
| 635 | priv = &vcpu_e500->gtlb_priv[tlbsel][esel]; |
| 636 | kvmppc_e500_priv_release(priv); |
| 637 | kvmppc_e500_priv_setup(priv, gtlbe, pfn); |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 638 | |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 639 | kvmppc_e500_setup_stlbe(vcpu_e500, gtlbe, tsize, priv, gvaddr, stlbe); |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 640 | } |
| 641 | |
| 642 | /* XXX only map the one-one case, for now use TLB0 */ |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 643 | static int kvmppc_e500_tlb0_map(struct kvmppc_vcpu_e500 *vcpu_e500, |
| 644 | int esel, struct tlbe *stlbe) |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 645 | { |
| 646 | struct tlbe *gtlbe; |
| 647 | |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 648 | gtlbe = &vcpu_e500->gtlb_arch[0][esel]; |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 649 | |
| 650 | kvmppc_e500_shadow_map(vcpu_e500, get_tlb_eaddr(gtlbe), |
| 651 | get_tlb_raddr(gtlbe) >> PAGE_SHIFT, |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 652 | gtlbe, 0, esel, stlbe); |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 653 | |
| 654 | return esel; |
| 655 | } |
| 656 | |
| 657 | /* Caller must ensure that the specified guest TLB entry is safe to insert into |
| 658 | * the shadow TLB. */ |
| 659 | /* XXX for both one-one and one-to-many , for now use TLB1 */ |
| 660 | static int kvmppc_e500_tlb1_map(struct kvmppc_vcpu_e500 *vcpu_e500, |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 661 | u64 gvaddr, gfn_t gfn, struct tlbe *gtlbe, struct tlbe *stlbe) |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 662 | { |
| 663 | unsigned int victim; |
| 664 | |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 665 | victim = vcpu_e500->gtlb_nv[1]++; |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 666 | |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 667 | if (unlikely(vcpu_e500->gtlb_nv[1] >= tlb1_max_shadow_size())) |
| 668 | vcpu_e500->gtlb_nv[1] = 0; |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 669 | |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 670 | kvmppc_e500_shadow_map(vcpu_e500, gvaddr, gfn, gtlbe, 1, victim, stlbe); |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 671 | |
| 672 | return victim; |
| 673 | } |
| 674 | |
Liu Yu | dd9ebf1f | 2011-06-14 18:35:14 -0500 | [diff] [blame] | 675 | void kvmppc_mmu_msr_notify(struct kvm_vcpu *vcpu, u32 old_msr) |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 676 | { |
Liu Yu | dd9ebf1f | 2011-06-14 18:35:14 -0500 | [diff] [blame] | 677 | struct kvmppc_vcpu_e500 *vcpu_e500 = to_e500(vcpu); |
| 678 | |
| 679 | /* Recalc shadow pid since MSR changes */ |
| 680 | kvmppc_e500_recalc_shadow_pid(vcpu_e500); |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 681 | } |
| 682 | |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 683 | static inline int kvmppc_e500_gtlbe_invalidate( |
| 684 | struct kvmppc_vcpu_e500 *vcpu_e500, |
| 685 | int tlbsel, int esel) |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 686 | { |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 687 | struct tlbe *gtlbe = &vcpu_e500->gtlb_arch[tlbsel][esel]; |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 688 | |
| 689 | if (unlikely(get_tlb_iprot(gtlbe))) |
| 690 | return -1; |
| 691 | |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 692 | gtlbe->mas1 = 0; |
| 693 | |
| 694 | return 0; |
| 695 | } |
| 696 | |
Liu Yu | b0a1835 | 2009-02-17 16:52:08 +0800 | [diff] [blame] | 697 | int kvmppc_e500_emul_mt_mmucsr0(struct kvmppc_vcpu_e500 *vcpu_e500, ulong value) |
| 698 | { |
| 699 | int esel; |
| 700 | |
| 701 | if (value & MMUCSR0_TLB0FI) |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 702 | for (esel = 0; esel < vcpu_e500->gtlb_size[0]; esel++) |
Liu Yu | b0a1835 | 2009-02-17 16:52:08 +0800 | [diff] [blame] | 703 | kvmppc_e500_gtlbe_invalidate(vcpu_e500, 0, esel); |
| 704 | if (value & MMUCSR0_TLB1FI) |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 705 | for (esel = 0; esel < vcpu_e500->gtlb_size[1]; esel++) |
Liu Yu | b0a1835 | 2009-02-17 16:52:08 +0800 | [diff] [blame] | 706 | kvmppc_e500_gtlbe_invalidate(vcpu_e500, 1, esel); |
| 707 | |
Liu Yu | dd9ebf1f | 2011-06-14 18:35:14 -0500 | [diff] [blame] | 708 | /* Invalidate all vcpu id mappings */ |
| 709 | kvmppc_e500_id_table_reset_all(vcpu_e500); |
Liu Yu | b0a1835 | 2009-02-17 16:52:08 +0800 | [diff] [blame] | 710 | |
| 711 | return EMULATE_DONE; |
| 712 | } |
| 713 | |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 714 | int kvmppc_e500_emul_tlbivax(struct kvm_vcpu *vcpu, int ra, int rb) |
| 715 | { |
| 716 | struct kvmppc_vcpu_e500 *vcpu_e500 = to_e500(vcpu); |
| 717 | unsigned int ia; |
| 718 | int esel, tlbsel; |
| 719 | gva_t ea; |
| 720 | |
Alexander Graf | 8e5b26b | 2010-01-08 02:58:01 +0100 | [diff] [blame] | 721 | ea = ((ra) ? kvmppc_get_gpr(vcpu, ra) : 0) + kvmppc_get_gpr(vcpu, rb); |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 722 | |
| 723 | ia = (ea >> 2) & 0x1; |
| 724 | |
Liu Yu | fb2838d | 2009-01-14 10:47:37 -0600 | [diff] [blame] | 725 | /* since we only have two TLBs, only lower bit is used. */ |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 726 | tlbsel = (ea >> 3) & 0x1; |
| 727 | |
| 728 | if (ia) { |
| 729 | /* invalidate all entries */ |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 730 | for (esel = 0; esel < vcpu_e500->gtlb_size[tlbsel]; esel++) |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 731 | kvmppc_e500_gtlbe_invalidate(vcpu_e500, tlbsel, esel); |
| 732 | } else { |
| 733 | ea &= 0xfffff000; |
| 734 | esel = kvmppc_e500_tlb_index(vcpu_e500, ea, tlbsel, |
| 735 | get_cur_pid(vcpu), -1); |
| 736 | if (esel >= 0) |
| 737 | kvmppc_e500_gtlbe_invalidate(vcpu_e500, tlbsel, esel); |
| 738 | } |
| 739 | |
Liu Yu | dd9ebf1f | 2011-06-14 18:35:14 -0500 | [diff] [blame] | 740 | /* Invalidate all vcpu id mappings */ |
| 741 | kvmppc_e500_id_table_reset_all(vcpu_e500); |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 742 | |
| 743 | return EMULATE_DONE; |
| 744 | } |
| 745 | |
| 746 | int kvmppc_e500_emul_tlbre(struct kvm_vcpu *vcpu) |
| 747 | { |
| 748 | struct kvmppc_vcpu_e500 *vcpu_e500 = to_e500(vcpu); |
| 749 | int tlbsel, esel; |
| 750 | struct tlbe *gtlbe; |
| 751 | |
| 752 | tlbsel = get_tlb_tlbsel(vcpu_e500); |
| 753 | esel = get_tlb_esel(vcpu_e500, tlbsel); |
| 754 | |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 755 | gtlbe = &vcpu_e500->gtlb_arch[tlbsel][esel]; |
Liu Yu | bc35cbc | 2009-03-17 16:57:45 +0800 | [diff] [blame] | 756 | vcpu_e500->mas0 &= ~MAS0_NV(~0); |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 757 | vcpu_e500->mas0 |= MAS0_NV(vcpu_e500->gtlb_nv[tlbsel]); |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 758 | vcpu_e500->mas1 = gtlbe->mas1; |
| 759 | vcpu_e500->mas2 = gtlbe->mas2; |
| 760 | vcpu_e500->mas3 = gtlbe->mas3; |
| 761 | vcpu_e500->mas7 = gtlbe->mas7; |
| 762 | |
| 763 | return EMULATE_DONE; |
| 764 | } |
| 765 | |
| 766 | int kvmppc_e500_emul_tlbsx(struct kvm_vcpu *vcpu, int rb) |
| 767 | { |
| 768 | struct kvmppc_vcpu_e500 *vcpu_e500 = to_e500(vcpu); |
| 769 | int as = !!get_cur_sas(vcpu_e500); |
| 770 | unsigned int pid = get_cur_spid(vcpu_e500); |
| 771 | int esel, tlbsel; |
| 772 | struct tlbe *gtlbe = NULL; |
| 773 | gva_t ea; |
| 774 | |
Alexander Graf | 8e5b26b | 2010-01-08 02:58:01 +0100 | [diff] [blame] | 775 | ea = kvmppc_get_gpr(vcpu, rb); |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 776 | |
| 777 | for (tlbsel = 0; tlbsel < 2; tlbsel++) { |
| 778 | esel = kvmppc_e500_tlb_index(vcpu_e500, ea, tlbsel, pid, as); |
| 779 | if (esel >= 0) { |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 780 | gtlbe = &vcpu_e500->gtlb_arch[tlbsel][esel]; |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 781 | break; |
| 782 | } |
| 783 | } |
| 784 | |
| 785 | if (gtlbe) { |
| 786 | vcpu_e500->mas0 = MAS0_TLBSEL(tlbsel) | MAS0_ESEL(esel) |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 787 | | MAS0_NV(vcpu_e500->gtlb_nv[tlbsel]); |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 788 | vcpu_e500->mas1 = gtlbe->mas1; |
| 789 | vcpu_e500->mas2 = gtlbe->mas2; |
| 790 | vcpu_e500->mas3 = gtlbe->mas3; |
| 791 | vcpu_e500->mas7 = gtlbe->mas7; |
| 792 | } else { |
| 793 | int victim; |
| 794 | |
Liu Yu | fb2838d | 2009-01-14 10:47:37 -0600 | [diff] [blame] | 795 | /* since we only have two TLBs, only lower bit is used. */ |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 796 | tlbsel = vcpu_e500->mas4 >> 28 & 0x1; |
| 797 | victim = (tlbsel == 0) ? tlb0_get_next_victim(vcpu_e500) : 0; |
| 798 | |
| 799 | vcpu_e500->mas0 = MAS0_TLBSEL(tlbsel) | MAS0_ESEL(victim) |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 800 | | MAS0_NV(vcpu_e500->gtlb_nv[tlbsel]); |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 801 | vcpu_e500->mas1 = (vcpu_e500->mas6 & MAS6_SPID0) |
| 802 | | (vcpu_e500->mas6 & (MAS6_SAS ? MAS1_TS : 0)) |
| 803 | | (vcpu_e500->mas4 & MAS4_TSIZED(~0)); |
| 804 | vcpu_e500->mas2 &= MAS2_EPN; |
| 805 | vcpu_e500->mas2 |= vcpu_e500->mas4 & MAS2_ATTRIB_MASK; |
| 806 | vcpu_e500->mas3 &= MAS3_U0 | MAS3_U1 | MAS3_U2 | MAS3_U3; |
| 807 | vcpu_e500->mas7 = 0; |
| 808 | } |
| 809 | |
Scott Wood | 49ea069 | 2011-03-28 15:01:24 -0500 | [diff] [blame] | 810 | kvmppc_set_exit_type(vcpu, EMULATED_TLBSX_EXITS); |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 811 | return EMULATE_DONE; |
| 812 | } |
| 813 | |
Scott Wood | 3bf3cdc | 2011-08-18 15:25:14 -0500 | [diff] [blame^] | 814 | /* sesel is index into the set, not the whole array */ |
| 815 | static void write_stlbe(struct kvmppc_vcpu_e500 *vcpu_e500, |
| 816 | struct tlbe *gtlbe, |
| 817 | struct tlbe *stlbe, |
| 818 | int stlbsel, int sesel) |
| 819 | { |
| 820 | int stid; |
| 821 | |
| 822 | preempt_disable(); |
| 823 | stid = kvmppc_e500_get_sid(vcpu_e500, get_tlb_ts(gtlbe), |
| 824 | get_tlb_tid(gtlbe), |
| 825 | get_cur_pr(&vcpu_e500->vcpu), 0); |
| 826 | |
| 827 | stlbe->mas1 |= MAS1_TID(stid); |
| 828 | write_host_tlbe(vcpu_e500, stlbsel, sesel, stlbe); |
| 829 | preempt_enable(); |
| 830 | } |
| 831 | |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 832 | int kvmppc_e500_emul_tlbwe(struct kvm_vcpu *vcpu) |
| 833 | { |
| 834 | struct kvmppc_vcpu_e500 *vcpu_e500 = to_e500(vcpu); |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 835 | struct tlbe *gtlbe; |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 836 | int tlbsel, esel; |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 837 | |
| 838 | tlbsel = get_tlb_tlbsel(vcpu_e500); |
| 839 | esel = get_tlb_esel(vcpu_e500, tlbsel); |
| 840 | |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 841 | gtlbe = &vcpu_e500->gtlb_arch[tlbsel][esel]; |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 842 | |
Liu Yu | dd9ebf1f | 2011-06-14 18:35:14 -0500 | [diff] [blame] | 843 | if (get_tlb_v(gtlbe)) |
| 844 | kvmppc_e500_stlbe_invalidate(vcpu_e500, tlbsel, esel); |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 845 | |
| 846 | gtlbe->mas1 = vcpu_e500->mas1; |
| 847 | gtlbe->mas2 = vcpu_e500->mas2; |
| 848 | gtlbe->mas3 = vcpu_e500->mas3; |
| 849 | gtlbe->mas7 = vcpu_e500->mas7; |
| 850 | |
Marcelo Tosatti | 46f43c6 | 2009-06-18 11:47:27 -0300 | [diff] [blame] | 851 | trace_kvm_gtlb_write(vcpu_e500->mas0, gtlbe->mas1, gtlbe->mas2, |
| 852 | gtlbe->mas3, gtlbe->mas7); |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 853 | |
| 854 | /* Invalidate shadow mappings for the about-to-be-clobbered TLBE. */ |
| 855 | if (tlbe_is_host_safe(vcpu, gtlbe)) { |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 856 | struct tlbe stlbe; |
| 857 | int stlbsel, sesel; |
| 858 | u64 eaddr; |
| 859 | u64 raddr; |
| 860 | |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 861 | switch (tlbsel) { |
| 862 | case 0: |
| 863 | /* TLB0 */ |
| 864 | gtlbe->mas1 &= ~MAS1_TSIZE(~0); |
Liu Yu | 0cfb50e | 2009-06-05 14:54:29 +0800 | [diff] [blame] | 865 | gtlbe->mas1 |= MAS1_TSIZE(BOOK3E_PAGESZ_4K); |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 866 | |
| 867 | stlbsel = 0; |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 868 | sesel = kvmppc_e500_tlb0_map(vcpu_e500, esel, &stlbe); |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 869 | |
| 870 | break; |
| 871 | |
| 872 | case 1: |
| 873 | /* TLB1 */ |
| 874 | eaddr = get_tlb_eaddr(gtlbe); |
| 875 | raddr = get_tlb_raddr(gtlbe); |
| 876 | |
| 877 | /* Create a 4KB mapping on the host. |
| 878 | * If the guest wanted a large page, |
| 879 | * only the first 4KB is mapped here and the rest |
| 880 | * are mapped on the fly. */ |
| 881 | stlbsel = 1; |
| 882 | sesel = kvmppc_e500_tlb1_map(vcpu_e500, eaddr, |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 883 | raddr >> PAGE_SHIFT, gtlbe, &stlbe); |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 884 | break; |
| 885 | |
| 886 | default: |
| 887 | BUG(); |
| 888 | } |
Scott Wood | 3bf3cdc | 2011-08-18 15:25:14 -0500 | [diff] [blame^] | 889 | |
| 890 | write_stlbe(vcpu_e500, gtlbe, &stlbe, stlbsel, sesel); |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 891 | } |
| 892 | |
Scott Wood | 49ea069 | 2011-03-28 15:01:24 -0500 | [diff] [blame] | 893 | kvmppc_set_exit_type(vcpu, EMULATED_TLBWE_EXITS); |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 894 | return EMULATE_DONE; |
| 895 | } |
| 896 | |
| 897 | int kvmppc_mmu_itlb_index(struct kvm_vcpu *vcpu, gva_t eaddr) |
| 898 | { |
Alexander Graf | 666e725 | 2010-07-29 14:47:43 +0200 | [diff] [blame] | 899 | unsigned int as = !!(vcpu->arch.shared->msr & MSR_IS); |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 900 | |
| 901 | return kvmppc_e500_tlb_search(vcpu, eaddr, get_cur_pid(vcpu), as); |
| 902 | } |
| 903 | |
| 904 | int kvmppc_mmu_dtlb_index(struct kvm_vcpu *vcpu, gva_t eaddr) |
| 905 | { |
Alexander Graf | 666e725 | 2010-07-29 14:47:43 +0200 | [diff] [blame] | 906 | unsigned int as = !!(vcpu->arch.shared->msr & MSR_DS); |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 907 | |
| 908 | return kvmppc_e500_tlb_search(vcpu, eaddr, get_cur_pid(vcpu), as); |
| 909 | } |
| 910 | |
| 911 | void kvmppc_mmu_itlb_miss(struct kvm_vcpu *vcpu) |
| 912 | { |
Alexander Graf | 666e725 | 2010-07-29 14:47:43 +0200 | [diff] [blame] | 913 | unsigned int as = !!(vcpu->arch.shared->msr & MSR_IS); |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 914 | |
| 915 | kvmppc_e500_deliver_tlb_miss(vcpu, vcpu->arch.pc, as); |
| 916 | } |
| 917 | |
| 918 | void kvmppc_mmu_dtlb_miss(struct kvm_vcpu *vcpu) |
| 919 | { |
Alexander Graf | 666e725 | 2010-07-29 14:47:43 +0200 | [diff] [blame] | 920 | unsigned int as = !!(vcpu->arch.shared->msr & MSR_DS); |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 921 | |
| 922 | kvmppc_e500_deliver_tlb_miss(vcpu, vcpu->arch.fault_dear, as); |
| 923 | } |
| 924 | |
| 925 | gpa_t kvmppc_mmu_xlate(struct kvm_vcpu *vcpu, unsigned int index, |
| 926 | gva_t eaddr) |
| 927 | { |
| 928 | struct kvmppc_vcpu_e500 *vcpu_e500 = to_e500(vcpu); |
| 929 | struct tlbe *gtlbe = |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 930 | &vcpu_e500->gtlb_arch[tlbsel_of(index)][esel_of(index)]; |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 931 | u64 pgmask = get_tlb_bytes(gtlbe) - 1; |
| 932 | |
| 933 | return get_tlb_raddr(gtlbe) | (eaddr & pgmask); |
| 934 | } |
| 935 | |
| 936 | void kvmppc_mmu_destroy(struct kvm_vcpu *vcpu) |
| 937 | { |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 938 | } |
| 939 | |
| 940 | void kvmppc_mmu_map(struct kvm_vcpu *vcpu, u64 eaddr, gpa_t gpaddr, |
| 941 | unsigned int index) |
| 942 | { |
| 943 | struct kvmppc_vcpu_e500 *vcpu_e500 = to_e500(vcpu); |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 944 | struct tlbe_priv *priv; |
| 945 | struct tlbe *gtlbe, stlbe; |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 946 | int tlbsel = tlbsel_of(index); |
| 947 | int esel = esel_of(index); |
| 948 | int stlbsel, sesel; |
| 949 | |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 950 | gtlbe = &vcpu_e500->gtlb_arch[tlbsel][esel]; |
| 951 | |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 952 | switch (tlbsel) { |
| 953 | case 0: |
| 954 | stlbsel = 0; |
| 955 | sesel = esel; |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 956 | priv = &vcpu_e500->gtlb_priv[stlbsel][sesel]; |
| 957 | |
| 958 | kvmppc_e500_setup_stlbe(vcpu_e500, gtlbe, BOOK3E_PAGESZ_4K, |
| 959 | priv, eaddr, &stlbe); |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 960 | break; |
| 961 | |
| 962 | case 1: { |
| 963 | gfn_t gfn = gpaddr >> PAGE_SHIFT; |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 964 | |
| 965 | stlbsel = 1; |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 966 | sesel = kvmppc_e500_tlb1_map(vcpu_e500, eaddr, gfn, |
| 967 | gtlbe, &stlbe); |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 968 | break; |
| 969 | } |
| 970 | |
| 971 | default: |
| 972 | BUG(); |
| 973 | break; |
| 974 | } |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 975 | |
Scott Wood | 3bf3cdc | 2011-08-18 15:25:14 -0500 | [diff] [blame^] | 976 | write_stlbe(vcpu_e500, gtlbe, &stlbe, stlbsel, sesel); |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 977 | } |
| 978 | |
| 979 | int kvmppc_e500_tlb_search(struct kvm_vcpu *vcpu, |
| 980 | gva_t eaddr, unsigned int pid, int as) |
| 981 | { |
| 982 | struct kvmppc_vcpu_e500 *vcpu_e500 = to_e500(vcpu); |
| 983 | int esel, tlbsel; |
| 984 | |
| 985 | for (tlbsel = 0; tlbsel < 2; tlbsel++) { |
| 986 | esel = kvmppc_e500_tlb_index(vcpu_e500, eaddr, tlbsel, pid, as); |
| 987 | if (esel >= 0) |
| 988 | return index_of(tlbsel, esel); |
| 989 | } |
| 990 | |
| 991 | return -1; |
| 992 | } |
| 993 | |
Scott Wood | 5ce941e | 2011-04-27 17:24:21 -0500 | [diff] [blame] | 994 | void kvmppc_set_pid(struct kvm_vcpu *vcpu, u32 pid) |
| 995 | { |
| 996 | struct kvmppc_vcpu_e500 *vcpu_e500 = to_e500(vcpu); |
| 997 | |
Liu Yu | dd9ebf1f | 2011-06-14 18:35:14 -0500 | [diff] [blame] | 998 | if (vcpu->arch.pid != pid) { |
| 999 | vcpu_e500->pid[0] = vcpu->arch.pid = pid; |
| 1000 | kvmppc_e500_recalc_shadow_pid(vcpu_e500); |
| 1001 | } |
Scott Wood | 5ce941e | 2011-04-27 17:24:21 -0500 | [diff] [blame] | 1002 | } |
| 1003 | |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 1004 | void kvmppc_e500_tlb_setup(struct kvmppc_vcpu_e500 *vcpu_e500) |
| 1005 | { |
| 1006 | struct tlbe *tlbe; |
| 1007 | |
| 1008 | /* Insert large initial mapping for guest. */ |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 1009 | tlbe = &vcpu_e500->gtlb_arch[1][0]; |
Liu Yu | 0cfb50e | 2009-06-05 14:54:29 +0800 | [diff] [blame] | 1010 | tlbe->mas1 = MAS1_VALID | MAS1_TSIZE(BOOK3E_PAGESZ_256M); |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 1011 | tlbe->mas2 = 0; |
| 1012 | tlbe->mas3 = E500_TLB_SUPER_PERM_MASK; |
| 1013 | tlbe->mas7 = 0; |
| 1014 | |
| 1015 | /* 4K map for serial output. Used by kernel wrapper. */ |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 1016 | tlbe = &vcpu_e500->gtlb_arch[1][1]; |
Liu Yu | 0cfb50e | 2009-06-05 14:54:29 +0800 | [diff] [blame] | 1017 | tlbe->mas1 = MAS1_VALID | MAS1_TSIZE(BOOK3E_PAGESZ_4K); |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 1018 | tlbe->mas2 = (0xe0004500 & 0xFFFFF000) | MAS2_I | MAS2_G; |
| 1019 | tlbe->mas3 = (0xe0004500 & 0xFFFFF000) | E500_TLB_SUPER_PERM_MASK; |
| 1020 | tlbe->mas7 = 0; |
| 1021 | } |
| 1022 | |
| 1023 | int kvmppc_e500_tlb_init(struct kvmppc_vcpu_e500 *vcpu_e500) |
| 1024 | { |
| 1025 | tlb1_entry_num = mfspr(SPRN_TLB1CFG) & 0xFFF; |
| 1026 | |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 1027 | vcpu_e500->gtlb_size[0] = KVM_E500_TLB0_SIZE; |
| 1028 | vcpu_e500->gtlb_arch[0] = |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 1029 | kzalloc(sizeof(struct tlbe) * KVM_E500_TLB0_SIZE, GFP_KERNEL); |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 1030 | if (vcpu_e500->gtlb_arch[0] == NULL) |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 1031 | goto err_out; |
| 1032 | |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 1033 | vcpu_e500->gtlb_size[1] = KVM_E500_TLB1_SIZE; |
| 1034 | vcpu_e500->gtlb_arch[1] = |
| 1035 | kzalloc(sizeof(struct tlbe) * KVM_E500_TLB1_SIZE, GFP_KERNEL); |
| 1036 | if (vcpu_e500->gtlb_arch[1] == NULL) |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 1037 | goto err_out_guest0; |
| 1038 | |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 1039 | vcpu_e500->gtlb_priv[0] = (struct tlbe_priv *) |
| 1040 | kzalloc(sizeof(struct tlbe_priv) * KVM_E500_TLB0_SIZE, GFP_KERNEL); |
| 1041 | if (vcpu_e500->gtlb_priv[0] == NULL) |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 1042 | goto err_out_guest1; |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 1043 | vcpu_e500->gtlb_priv[1] = (struct tlbe_priv *) |
| 1044 | kzalloc(sizeof(struct tlbe_priv) * KVM_E500_TLB1_SIZE, GFP_KERNEL); |
| 1045 | |
| 1046 | if (vcpu_e500->gtlb_priv[1] == NULL) |
| 1047 | goto err_out_priv0; |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 1048 | |
Liu Yu | dd9ebf1f | 2011-06-14 18:35:14 -0500 | [diff] [blame] | 1049 | if (kvmppc_e500_id_table_alloc(vcpu_e500) == NULL) |
| 1050 | goto err_out_priv1; |
| 1051 | |
Liu Yu | da15bf4 | 2010-01-22 19:36:53 +0800 | [diff] [blame] | 1052 | /* Init TLB configuration register */ |
| 1053 | vcpu_e500->tlb0cfg = mfspr(SPRN_TLB0CFG) & ~0xfffUL; |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 1054 | vcpu_e500->tlb0cfg |= vcpu_e500->gtlb_size[0]; |
Liu Yu | da15bf4 | 2010-01-22 19:36:53 +0800 | [diff] [blame] | 1055 | vcpu_e500->tlb1cfg = mfspr(SPRN_TLB1CFG) & ~0xfffUL; |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 1056 | vcpu_e500->tlb1cfg |= vcpu_e500->gtlb_size[1]; |
Liu Yu | da15bf4 | 2010-01-22 19:36:53 +0800 | [diff] [blame] | 1057 | |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 1058 | return 0; |
| 1059 | |
Liu Yu | dd9ebf1f | 2011-06-14 18:35:14 -0500 | [diff] [blame] | 1060 | err_out_priv1: |
| 1061 | kfree(vcpu_e500->gtlb_priv[1]); |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 1062 | err_out_priv0: |
| 1063 | kfree(vcpu_e500->gtlb_priv[0]); |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 1064 | err_out_guest1: |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 1065 | kfree(vcpu_e500->gtlb_arch[1]); |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 1066 | err_out_guest0: |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 1067 | kfree(vcpu_e500->gtlb_arch[0]); |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 1068 | err_out: |
| 1069 | return -1; |
| 1070 | } |
| 1071 | |
| 1072 | void kvmppc_e500_tlb_uninit(struct kvmppc_vcpu_e500 *vcpu_e500) |
| 1073 | { |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 1074 | int stlbsel, i; |
| 1075 | |
| 1076 | /* release all privs */ |
| 1077 | for (stlbsel = 0; stlbsel < 2; stlbsel++) |
| 1078 | for (i = 0; i < vcpu_e500->gtlb_size[stlbsel]; i++) { |
| 1079 | struct tlbe_priv *priv = |
| 1080 | &vcpu_e500->gtlb_priv[stlbsel][i]; |
| 1081 | kvmppc_e500_priv_release(priv); |
| 1082 | } |
| 1083 | |
Liu Yu | dd9ebf1f | 2011-06-14 18:35:14 -0500 | [diff] [blame] | 1084 | kvmppc_e500_id_table_free(vcpu_e500); |
Liu Yu | 08b7fa9 | 2011-06-14 18:34:59 -0500 | [diff] [blame] | 1085 | kfree(vcpu_e500->gtlb_arch[1]); |
| 1086 | kfree(vcpu_e500->gtlb_arch[0]); |
Hollis Blanchard | bc8080c | 2009-01-03 16:23:10 -0600 | [diff] [blame] | 1087 | } |