helper.c 93.3 KB
Newer Older
B
bellard 已提交
1
/*
2
 *  PowerPC emulation helpers for qemu.
3
 *
4
 *  Copyright (c) 2003-2007 Jocelyn Mayer
B
bellard 已提交
5 6 7 8 9 10 11 12 13 14 15 16
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
17
 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
B
bellard 已提交
18
 */
19 20 21 22 23 24 25 26 27
#include <stdarg.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <inttypes.h>
#include <signal.h>

#include "cpu.h"
#include "exec-all.h"
28
#include "helper_regs.h"
29
#include "qemu-common.h"
A
aurel32 已提交
30
#include "kvm.h"
31 32 33

//#define DEBUG_MMU
//#define DEBUG_BATS
34
//#define DEBUG_SLB
35
//#define DEBUG_SOFTWARE_TLB
36
//#define DUMP_PAGE_TABLES
37
//#define DEBUG_EXCEPTIONS
38
//#define FLUSH_ALL_TLBS
39

40
#ifdef DEBUG_MMU
41 42
#  define LOG_MMU(...) qemu_log(__VA_ARGS__)
#  define LOG_MMU_STATE(env) log_cpu_state((env), 0)
43 44 45 46 47 48 49
#else
#  define LOG_MMU(...) do { } while (0)
#  define LOG_MMU_STATE(...) do { } while (0)
#endif


#ifdef DEBUG_SOFTWARE_TLB
50
#  define LOG_SWTLB(...) qemu_log(__VA_ARGS__)
51 52 53 54 55
#else
#  define LOG_SWTLB(...) do { } while (0)
#endif

#ifdef DEBUG_BATS
56
#  define LOG_BATS(...) qemu_log(__VA_ARGS__)
57 58 59 60 61
#else
#  define LOG_BATS(...) do { } while (0)
#endif

#ifdef DEBUG_SLB
62
#  define LOG_SLB(...) qemu_log(__VA_ARGS__)
63 64 65 66 67
#else
#  define LOG_SLB(...) do { } while (0)
#endif

#ifdef DEBUG_EXCEPTIONS
68
#  define LOG_EXCP(...) qemu_log(__VA_ARGS__)
69 70 71 72 73
#else
#  define LOG_EXCP(...) do { } while (0)
#endif


74
/*****************************************************************************/
75
/* PowerPC MMU emulation */
76

77
#if defined(CONFIG_USER_ONLY)
78
int cpu_ppc_handle_mmu_fault (CPUState *env, target_ulong address, int rw,
79
                              int mmu_idx, int is_softmmu)
80 81
{
    int exception, error_code;
82

83
    if (rw == 2) {
84
        exception = POWERPC_EXCP_ISI;
85
        error_code = 0x40000000;
86
    } else {
87
        exception = POWERPC_EXCP_DSI;
88
        error_code = 0x40000000;
89 90 91 92 93 94 95
        if (rw)
            error_code |= 0x02000000;
        env->spr[SPR_DAR] = address;
        env->spr[SPR_DSISR] = error_code;
    }
    env->exception_index = exception;
    env->error_code = error_code;
96

97 98
    return 1;
}
99

A
Anthony Liguori 已提交
100
target_phys_addr_t cpu_get_phys_page_debug (CPUState *env, target_ulong addr)
101 102 103
{
    return addr;
}
104

105
#else
106
/* Common routines used by software and hardware TLBs emulation */
B
Blue Swirl 已提交
107
static inline int pte_is_valid(target_ulong pte0)
108 109 110 111
{
    return pte0 & 0x80000000 ? 1 : 0;
}

B
Blue Swirl 已提交
112
static inline void pte_invalidate(target_ulong *pte0)
113 114 115 116
{
    *pte0 &= ~0x80000000;
}

117
#if defined(TARGET_PPC64)
B
Blue Swirl 已提交
118
static inline int pte64_is_valid(target_ulong pte0)
119 120 121 122
{
    return pte0 & 0x0000000000000001ULL ? 1 : 0;
}

B
Blue Swirl 已提交
123
static inline void pte64_invalidate(target_ulong *pte0)
124 125 126 127 128
{
    *pte0 &= ~0x0000000000000001ULL;
}
#endif

129 130
#define PTE_PTEM_MASK 0x7FFFFFBF
#define PTE_CHECK_MASK (TARGET_PAGE_MASK | 0x7B)
131 132 133 134
#if defined(TARGET_PPC64)
#define PTE64_PTEM_MASK 0xFFFFFFFFFFFFFF80ULL
#define PTE64_CHECK_MASK (TARGET_PAGE_MASK | 0x7F)
#endif
135

B
Blue Swirl 已提交
136
static inline int pp_check(int key, int pp, int nx)
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
{
    int access;

    /* Compute access rights */
    /* When pp is 3/7, the result is undefined. Set it to noaccess */
    access = 0;
    if (key == 0) {
        switch (pp) {
        case 0x0:
        case 0x1:
        case 0x2:
            access |= PAGE_WRITE;
            /* No break here */
        case 0x3:
        case 0x6:
            access |= PAGE_READ;
            break;
        }
    } else {
        switch (pp) {
        case 0x0:
        case 0x6:
            access = 0;
            break;
        case 0x1:
        case 0x3:
            access = PAGE_READ;
            break;
        case 0x2:
            access = PAGE_READ | PAGE_WRITE;
            break;
        }
    }
    if (nx == 0)
        access |= PAGE_EXEC;

    return access;
}

B
Blue Swirl 已提交
176
static inline int check_prot(int prot, int rw, int access_type)
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
{
    int ret;

    if (access_type == ACCESS_CODE) {
        if (prot & PAGE_EXEC)
            ret = 0;
        else
            ret = -2;
    } else if (rw) {
        if (prot & PAGE_WRITE)
            ret = 0;
        else
            ret = -2;
    } else {
        if (prot & PAGE_READ)
            ret = 0;
        else
            ret = -2;
    }

    return ret;
}

A
Anthony Liguori 已提交
200
static inline int _pte_check(mmu_ctx_t *ctx, int is_64b, target_ulong pte0,
B
Blue Swirl 已提交
201
                             target_ulong pte1, int h, int rw, int type)
202
{
203
    target_ulong ptem, mmask;
204
    int access, ret, pteh, ptev, pp;
205 206 207 208

    access = 0;
    ret = -1;
    /* Check validity and table match */
209 210 211 212 213 214 215 216 217 218 219
#if defined(TARGET_PPC64)
    if (is_64b) {
        ptev = pte64_is_valid(pte0);
        pteh = (pte0 >> 1) & 1;
    } else
#endif
    {
        ptev = pte_is_valid(pte0);
        pteh = (pte0 >> 6) & 1;
    }
    if (ptev && h == pteh) {
220
        /* Check vsid & api */
221 222 223 224
#if defined(TARGET_PPC64)
        if (is_64b) {
            ptem = pte0 & PTE64_PTEM_MASK;
            mmask = PTE64_CHECK_MASK;
225
            pp = (pte1 & 0x00000003) | ((pte1 >> 61) & 0x00000004);
B
blueswir1 已提交
226
            ctx->nx  = (pte1 >> 2) & 1; /* No execute bit */
227
            ctx->nx |= (pte1 >> 3) & 1; /* Guarded bit    */
228 229 230 231 232
        } else
#endif
        {
            ptem = pte0 & PTE_PTEM_MASK;
            mmask = PTE_CHECK_MASK;
233
            pp = pte1 & 0x00000003;
234 235
        }
        if (ptem == ctx->ptem) {
A
Anthony Liguori 已提交
236
            if (ctx->raddr != (target_phys_addr_t)-1ULL) {
237
                /* all matches should have equal RPN, WIMG & PP */
238
                if ((ctx->raddr & mmask) != (pte1 & mmask)) {
239
                    qemu_log("Bad RPN/WIMG/PP\n");
240 241 242 243
                    return -3;
                }
            }
            /* Compute access rights */
244
            access = pp_check(ctx->key, pp, ctx->nx);
245 246 247
            /* Keep the matching PTE informations */
            ctx->raddr = pte1;
            ctx->prot = access;
248 249
            ret = check_prot(ctx->prot, rw, type);
            if (ret == 0) {
250
                /* Access granted */
251
                LOG_MMU("PTE access granted !\n");
252 253
            } else {
                /* Access right violation */
254
                LOG_MMU("PTE access rejected\n");
255 256 257 258 259 260 261
            }
        }
    }

    return ret;
}

A
Anthony Liguori 已提交
262
static inline int pte32_check(mmu_ctx_t *ctx, target_ulong pte0,
B
Blue Swirl 已提交
263
                              target_ulong pte1, int h, int rw, int type)
264
{
265
    return _pte_check(ctx, 0, pte0, pte1, h, rw, type);
266 267 268
}

#if defined(TARGET_PPC64)
A
Anthony Liguori 已提交
269
static inline int pte64_check(mmu_ctx_t *ctx, target_ulong pte0,
B
Blue Swirl 已提交
270
                              target_ulong pte1, int h, int rw, int type)
271
{
272
    return _pte_check(ctx, 1, pte0, pte1, h, rw, type);
273 274 275
}
#endif

A
Anthony Liguori 已提交
276
static inline int pte_update_flags(mmu_ctx_t *ctx, target_ulong *pte1p,
B
Blue Swirl 已提交
277
                                   int ret, int rw)
278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301
{
    int store = 0;

    /* Update page flags */
    if (!(*pte1p & 0x00000100)) {
        /* Update accessed flag */
        *pte1p |= 0x00000100;
        store = 1;
    }
    if (!(*pte1p & 0x00000080)) {
        if (rw == 1 && ret == 0) {
            /* Update changed flag */
            *pte1p |= 0x00000080;
            store = 1;
        } else {
            /* Force page fault for first write access */
            ctx->prot &= ~PAGE_WRITE;
        }
    }

    return store;
}

/* Software driven TLB helpers */
B
Blue Swirl 已提交
302 303
static inline int ppc6xx_tlb_getnum(CPUState *env, target_ulong eaddr, int way,
                                    int is_code)
304 305 306 307 308 309 310 311 312 313 314 315 316 317
{
    int nr;

    /* Select TLB num in a way from address */
    nr = (eaddr >> TARGET_PAGE_BITS) & (env->tlb_per_way - 1);
    /* Select TLB way */
    nr += env->tlb_per_way * way;
    /* 6xx have separate TLBs for instructions and data */
    if (is_code && env->id_tlbs == 1)
        nr += env->nb_tlb;

    return nr;
}

B
Blue Swirl 已提交
318
static inline void ppc6xx_tlb_invalidate_all(CPUState *env)
319
{
A
Anthony Liguori 已提交
320
    ppc6xx_tlb_t *tlb;
321 322
    int nr, max;

323
    //LOG_SWTLB("Invalidate all TLBs\n");
324 325 326 327 328
    /* Invalidate all defined software TLB */
    max = env->nb_tlb;
    if (env->id_tlbs == 1)
        max *= 2;
    for (nr = 0; nr < max; nr++) {
329
        tlb = &env->tlb[nr].tlb6;
330 331 332 333 334
        pte_invalidate(&tlb->pte0);
    }
    tlb_flush(env, 1);
}

B
Blue Swirl 已提交
335 336 337
static inline void __ppc6xx_tlb_invalidate_virt(CPUState *env,
                                                target_ulong eaddr,
                                                int is_code, int match_epn)
338
{
J
j_mayer 已提交
339
#if !defined(FLUSH_ALL_TLBS)
A
Anthony Liguori 已提交
340
    ppc6xx_tlb_t *tlb;
341 342 343 344 345
    int way, nr;

    /* Invalidate ITLB + DTLB, all ways */
    for (way = 0; way < env->nb_ways; way++) {
        nr = ppc6xx_tlb_getnum(env, eaddr, way, is_code);
346
        tlb = &env->tlb[nr].tlb6;
347
        if (pte_is_valid(tlb->pte0) && (match_epn == 0 || eaddr == tlb->EPN)) {
348 349
            LOG_SWTLB("TLB invalidate %d/%d " TARGET_FMT_lx "\n", nr,
                      env->nb_tlb, eaddr);
350 351 352 353 354 355 356 357 358 359
            pte_invalidate(&tlb->pte0);
            tlb_flush_page(env, tlb->EPN);
        }
    }
#else
    /* XXX: PowerPC specification say this is valid as well */
    ppc6xx_tlb_invalidate_all(env);
#endif
}

B
Blue Swirl 已提交
360 361
static inline void ppc6xx_tlb_invalidate_virt(CPUState *env,
                                              target_ulong eaddr, int is_code)
362 363 364 365 366 367 368
{
    __ppc6xx_tlb_invalidate_virt(env, eaddr, is_code, 0);
}

void ppc6xx_tlb_store (CPUState *env, target_ulong EPN, int way, int is_code,
                       target_ulong pte0, target_ulong pte1)
{
A
Anthony Liguori 已提交
369
    ppc6xx_tlb_t *tlb;
370 371 372
    int nr;

    nr = ppc6xx_tlb_getnum(env, EPN, way, is_code);
373
    tlb = &env->tlb[nr].tlb6;
374 375
    LOG_SWTLB("Set TLB %d/%d EPN " TARGET_FMT_lx " PTE0 " TARGET_FMT_lx
              " PTE1 " TARGET_FMT_lx "\n", nr, env->nb_tlb, EPN, pte0, pte1);
376 377 378 379 380 381 382 383 384
    /* Invalidate any pending reference in Qemu for this virtual address */
    __ppc6xx_tlb_invalidate_virt(env, EPN, is_code, 1);
    tlb->pte0 = pte0;
    tlb->pte1 = pte1;
    tlb->EPN = EPN;
    /* Store last way for LRU mechanism */
    env->last_way = way;
}

A
Anthony Liguori 已提交
385
static inline int ppc6xx_tlb_check(CPUState *env, mmu_ctx_t *ctx,
B
Blue Swirl 已提交
386
                                   target_ulong eaddr, int rw, int access_type)
387
{
A
Anthony Liguori 已提交
388
    ppc6xx_tlb_t *tlb;
389 390
    int nr, best, way;
    int ret;
391

392 393 394 395 396
    best = -1;
    ret = -1; /* No TLB found */
    for (way = 0; way < env->nb_ways; way++) {
        nr = ppc6xx_tlb_getnum(env, eaddr, way,
                               access_type == ACCESS_CODE ? 1 : 0);
397
        tlb = &env->tlb[nr].tlb6;
398 399
        /* This test "emulates" the PTE index match for hardware TLBs */
        if ((eaddr & TARGET_PAGE_MASK) != tlb->EPN) {
400 401 402 403
            LOG_SWTLB("TLB %d/%d %s [" TARGET_FMT_lx " " TARGET_FMT_lx
                      "] <> " TARGET_FMT_lx "\n", nr, env->nb_tlb,
                      pte_is_valid(tlb->pte0) ? "valid" : "inval",
                      tlb->EPN, tlb->EPN + TARGET_PAGE_SIZE, eaddr);
404 405
            continue;
        }
406 407 408 409 410
        LOG_SWTLB("TLB %d/%d %s " TARGET_FMT_lx " <> " TARGET_FMT_lx " "
                  TARGET_FMT_lx " %c %c\n", nr, env->nb_tlb,
                  pte_is_valid(tlb->pte0) ? "valid" : "inval",
                  tlb->EPN, eaddr, tlb->pte1,
                  rw ? 'S' : 'L', access_type == ACCESS_CODE ? 'I' : 'D');
411
        switch (pte32_check(ctx, tlb->pte0, tlb->pte1, 0, rw, access_type)) {
412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436
        case -3:
            /* TLB inconsistency */
            return -1;
        case -2:
            /* Access violation */
            ret = -2;
            best = nr;
            break;
        case -1:
        default:
            /* No match */
            break;
        case 0:
            /* access granted */
            /* XXX: we should go on looping to check all TLBs consistency
             *      but we can speed-up the whole thing as the
             *      result would be undefined if TLBs are not consistent.
             */
            ret = 0;
            best = nr;
            goto done;
        }
    }
    if (best != -1) {
    done:
437 438
        LOG_SWTLB("found TLB at addr " TARGET_FMT_plx " prot=%01x ret=%d\n",
                  ctx->raddr & TARGET_PAGE_MASK, ctx->prot, ret);
439
        /* Update page flags */
440
        pte_update_flags(ctx, &env->tlb[best].tlb6.pte1, ret, rw);
441 442 443 444 445
    }

    return ret;
}

446
/* Perform BAT hit & translation */
B
Blue Swirl 已提交
447 448 449
static inline void bat_size_prot(CPUState *env, target_ulong *blp, int *validp,
                                 int *protp, target_ulong *BATu,
                                 target_ulong *BATl)
J
j_mayer 已提交
450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471
{
    target_ulong bl;
    int pp, valid, prot;

    bl = (*BATu & 0x00001FFC) << 15;
    valid = 0;
    prot = 0;
    if (((msr_pr == 0) && (*BATu & 0x00000002)) ||
        ((msr_pr != 0) && (*BATu & 0x00000001))) {
        valid = 1;
        pp = *BATl & 0x00000003;
        if (pp != 0) {
            prot = PAGE_READ | PAGE_EXEC;
            if (pp == 0x2)
                prot |= PAGE_WRITE;
        }
    }
    *blp = bl;
    *validp = valid;
    *protp = prot;
}

B
Blue Swirl 已提交
472 473 474
static inline void bat_601_size_prot(CPUState *env, target_ulong *blp,
                                     int *validp, int *protp,
                                     target_ulong *BATu, target_ulong *BATl)
J
j_mayer 已提交
475 476 477 478 479
{
    target_ulong bl;
    int key, pp, valid, prot;

    bl = (*BATl & 0x0000003F) << 17;
480 481
    LOG_BATS("b %02x ==> bl " TARGET_FMT_lx " msk " TARGET_FMT_lx "\n",
             (uint8_t)(*BATl & 0x0000003F), bl, ~bl);
J
j_mayer 已提交
482 483 484 485 486 487 488 489 490 491 492 493 494 495 496
    prot = 0;
    valid = (*BATl >> 6) & 1;
    if (valid) {
        pp = *BATu & 0x00000003;
        if (msr_pr == 0)
            key = (*BATu >> 3) & 1;
        else
            key = (*BATu >> 2) & 1;
        prot = pp_check(key, pp, 0);
    }
    *blp = bl;
    *validp = valid;
    *protp = prot;
}

A
Anthony Liguori 已提交
497
static inline int get_bat(CPUState *env, mmu_ctx_t *ctx, target_ulong virtual,
B
Blue Swirl 已提交
498
                          int rw, int type)
499
{
500 501
    target_ulong *BATlt, *BATut, *BATu, *BATl;
    target_ulong base, BEPIl, BEPIu, bl;
J
j_mayer 已提交
502
    int i, valid, prot;
503 504
    int ret = -1;

505 506
    LOG_BATS("%s: %cBAT v " TARGET_FMT_lx "\n", __func__,
             type == ACCESS_CODE ? 'I' : 'D', virtual);
507 508 509 510 511 512 513 514 515 516 517
    switch (type) {
    case ACCESS_CODE:
        BATlt = env->IBAT[1];
        BATut = env->IBAT[0];
        break;
    default:
        BATlt = env->DBAT[1];
        BATut = env->DBAT[0];
        break;
    }
    base = virtual & 0xFFFC0000;
J
j_mayer 已提交
518
    for (i = 0; i < env->nb_BATs; i++) {
519 520 521 522
        BATu = &BATut[i];
        BATl = &BATlt[i];
        BEPIu = *BATu & 0xF0000000;
        BEPIl = *BATu & 0x0FFE0000;
J
j_mayer 已提交
523 524 525 526 527
        if (unlikely(env->mmu_model == POWERPC_MMU_601)) {
            bat_601_size_prot(env, &bl, &valid, &prot, BATu, BATl);
        } else {
            bat_size_prot(env, &bl, &valid, &prot, BATu, BATl);
        }
528 529 530
        LOG_BATS("%s: %cBAT%d v " TARGET_FMT_lx " BATu " TARGET_FMT_lx
                 " BATl " TARGET_FMT_lx "\n", __func__,
                 type == ACCESS_CODE ? 'I' : 'D', i, virtual, *BATu, *BATl);
531 532 533
        if ((virtual & 0xF0000000) == BEPIu &&
            ((virtual & 0x0FFE0000) & ~bl) == BEPIl) {
            /* BAT matches */
J
j_mayer 已提交
534
            if (valid != 0) {
535
                /* Get physical address */
536
                ctx->raddr = (*BATl & 0xF0000000) |
537
                    ((virtual & 0x0FFE0000 & bl) | (*BATl & 0x0FFE0000)) |
538
                    (virtual & 0x0001F000);
539
                /* Compute access rights */
J
j_mayer 已提交
540
                ctx->prot = prot;
541
                ret = check_prot(ctx->prot, rw, type);
542
                if (ret == 0)
543
                    LOG_BATS("BAT %d match: r " TARGET_FMT_plx " prot=%c%c\n",
544 545
                             i, ctx->raddr, ctx->prot & PAGE_READ ? 'R' : '-',
                             ctx->prot & PAGE_WRITE ? 'W' : '-');
546 547 548 549 550
                break;
            }
        }
    }
    if (ret < 0) {
551
#if defined(DEBUG_BATS)
552
        if (qemu_log_enabled()) {
553
            LOG_BATS("no BAT match for " TARGET_FMT_lx ":\n", virtual);
J
j_mayer 已提交
554 555 556 557 558 559
            for (i = 0; i < 4; i++) {
                BATu = &BATut[i];
                BATl = &BATlt[i];
                BEPIu = *BATu & 0xF0000000;
                BEPIl = *BATu & 0x0FFE0000;
                bl = (*BATu & 0x00001FFC) << 15;
560 561 562
                LOG_BATS("%s: %cBAT%d v " TARGET_FMT_lx " BATu " TARGET_FMT_lx
                         " BATl " TARGET_FMT_lx " \n\t" TARGET_FMT_lx " "
                         TARGET_FMT_lx " " TARGET_FMT_lx "\n",
563 564
                         __func__, type == ACCESS_CODE ? 'I' : 'D', i, virtual,
                         *BATu, *BATl, BEPIu, BEPIl, bl);
J
j_mayer 已提交
565
            }
566 567 568 569 570 571 572 573
        }
#endif
    }
    /* No hit */
    return ret;
}

/* PTE table lookup */
A
Anthony Liguori 已提交
574
static inline int _find_pte(mmu_ctx_t *ctx, int is_64b, int h, int rw,
B
Blue Swirl 已提交
575
                            int type, int target_page_bits)
576
{
577 578
    target_ulong base, pte0, pte1;
    int i, good = -1;
579
    int ret, r;
580

581 582
    ret = -1; /* No entry found */
    base = ctx->pg_addr[h];
583
    for (i = 0; i < 8; i++) {
584 585 586
#if defined(TARGET_PPC64)
        if (is_64b) {
            pte0 = ldq_phys(base + (i * 16));
B
blueswir1 已提交
587 588 589 590 591 592 593 594
            pte1 = ldq_phys(base + (i * 16) + 8);

            /* We have a TLB that saves 4K pages, so let's
             * split a huge page to 4k chunks */
            if (target_page_bits != TARGET_PAGE_BITS)
                pte1 |= (ctx->eaddr & (( 1 << target_page_bits ) - 1))
                        & TARGET_PAGE_MASK;

595
            r = pte64_check(ctx, pte0, pte1, h, rw, type);
596 597 598 599
            LOG_MMU("Load pte from " TARGET_FMT_lx " => " TARGET_FMT_lx " "
                    TARGET_FMT_lx " %d %d %d " TARGET_FMT_lx "\n",
                    base + (i * 16), pte0, pte1, (int)(pte0 & 1), h,
                    (int)((pte0 >> 1) & 1), ctx->ptem);
600 601 602 603 604
        } else
#endif
        {
            pte0 = ldl_phys(base + (i * 8));
            pte1 =  ldl_phys(base + (i * 8) + 4);
605
            r = pte32_check(ctx, pte0, pte1, h, rw, type);
606 607 608 609
            LOG_MMU("Load pte from " TARGET_FMT_lx " => " TARGET_FMT_lx " "
                    TARGET_FMT_lx " %d %d %d " TARGET_FMT_lx "\n",
                    base + (i * 8), pte0, pte1, (int)(pte0 >> 31), h,
                    (int)((pte0 >> 6) & 1), ctx->ptem);
610
        }
611
        switch (r) {
612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632
        case -3:
            /* PTE inconsistency */
            return -1;
        case -2:
            /* Access violation */
            ret = -2;
            good = i;
            break;
        case -1:
        default:
            /* No PTE match */
            break;
        case 0:
            /* access granted */
            /* XXX: we should go on looping to check all PTEs consistency
             *      but if we can speed-up the whole thing as the
             *      result would be undefined if PTEs are not consistent.
             */
            ret = 0;
            good = i;
            goto done;
633 634 635
        }
    }
    if (good != -1) {
636
    done:
637 638
        LOG_MMU("found PTE at addr " TARGET_FMT_lx " prot=%01x ret=%d\n",
                ctx->raddr, ctx->prot, ret);
639
        /* Update page flags */
640
        pte1 = ctx->raddr;
641 642 643 644 645 646 647 648 649 650
        if (pte_update_flags(ctx, &pte1, ret, rw) == 1) {
#if defined(TARGET_PPC64)
            if (is_64b) {
                stq_phys_notdirty(base + (good * 16) + 8, pte1);
            } else
#endif
            {
                stl_phys_notdirty(base + (good * 8) + 4, pte1);
            }
        }
651 652 653
    }

    return ret;
B
bellard 已提交
654 655
}

A
Anthony Liguori 已提交
656
static inline int find_pte32(mmu_ctx_t *ctx, int h, int rw, int type,
B
Blue Swirl 已提交
657
                             int target_page_bits)
658
{
B
blueswir1 已提交
659
    return _find_pte(ctx, 0, h, rw, type, target_page_bits);
660 661 662
}

#if defined(TARGET_PPC64)
A
Anthony Liguori 已提交
663
static inline int find_pte64(mmu_ctx_t *ctx, int h, int rw, int type,
B
Blue Swirl 已提交
664
                             int target_page_bits)
665
{
B
blueswir1 已提交
666
    return _find_pte(ctx, 1, h, rw, type, target_page_bits);
667 668 669
}
#endif

A
Anthony Liguori 已提交
670
static inline int find_pte(CPUState *env, mmu_ctx_t *ctx, int h, int rw,
B
Blue Swirl 已提交
671
                           int type, int target_page_bits)
672 673
{
#if defined(TARGET_PPC64)
674
    if (env->mmu_model & POWERPC_MMU_64)
B
blueswir1 已提交
675
        return find_pte64(ctx, h, rw, type, target_page_bits);
676 677
#endif

B
blueswir1 已提交
678
    return find_pte32(ctx, h, rw, type, target_page_bits);
679 680 681
}

#if defined(TARGET_PPC64)
A
Anthony Liguori 已提交
682
static ppc_slb_t *slb_get_entry(CPUPPCState *env, int nr)
683
{
A
Anthony Liguori 已提交
684
    ppc_slb_t *retval = &env->slb[nr];
B
blueswir1 已提交
685 686 687

#if 0 // XXX implement bridge mode?
    if (env->spr[SPR_ASR] & 1) {
A
Anthony Liguori 已提交
688
        target_phys_addr_t sr_base;
B
blueswir1 已提交
689 690 691 692 693 694 695 696 697 698

        sr_base = env->spr[SPR_ASR] & 0xfffffffffffff000;
        sr_base += (12 * nr);

        retval->tmp64 = ldq_phys(sr_base);
        retval->tmp = ldl_phys(sr_base + 8);
    }
#endif

    return retval;
699 700
}

A
Anthony Liguori 已提交
701
static void slb_set_entry(CPUPPCState *env, int nr, ppc_slb_t *slb)
702
{
A
Anthony Liguori 已提交
703
    ppc_slb_t *entry = &env->slb[nr];
B
blueswir1 已提交
704 705 706 707 708 709 710 711

    if (slb == entry)
        return;

    entry->tmp64 = slb->tmp64;
    entry->tmp = slb->tmp;
}

A
Anthony Liguori 已提交
712
static inline int slb_is_valid(ppc_slb_t *slb)
B
blueswir1 已提交
713 714 715 716
{
    return (int)(slb->tmp64 & 0x0000000008000000ULL);
}

A
Anthony Liguori 已提交
717
static inline void slb_invalidate(ppc_slb_t *slb)
B
blueswir1 已提交
718 719
{
    slb->tmp64 &= ~0x0000000008000000ULL;
720 721
}

B
Blue Swirl 已提交
722 723 724
static inline int slb_lookup(CPUPPCState *env, target_ulong eaddr,
                             target_ulong *vsid, target_ulong *page_mask,
                             int *attr, int *target_page_bits)
725 726 727 728 729
{
    target_ulong mask;
    int n, ret;

    ret = -5;
730
    LOG_SLB("%s: eaddr " TARGET_FMT_lx "\n", __func__, eaddr);
731
    mask = 0x0000000000000000ULL; /* Avoid gcc warning */
732
    for (n = 0; n < env->slb_nr; n++) {
A
Anthony Liguori 已提交
733
        ppc_slb_t *slb = slb_get_entry(env, n);
B
blueswir1 已提交
734 735 736 737

        LOG_SLB("%s: seg %d %016" PRIx64 " %08"
                    PRIx32 "\n", __func__, n, slb->tmp64, slb->tmp);
        if (slb_is_valid(slb)) {
738
            /* SLB entry is valid */
B
blueswir1 已提交
739
            if (slb->tmp & 0x8) {
B
blueswir1 已提交
740
                /* 1 TB Segment */
741
                mask = 0xFFFF000000000000ULL;
B
blueswir1 已提交
742 743 744 745 746 747 748
                if (target_page_bits)
                    *target_page_bits = 24; // XXX 16M pages?
            } else {
                /* 256MB Segment */
                mask = 0xFFFFFFFFF0000000ULL;
                if (target_page_bits)
                    *target_page_bits = TARGET_PAGE_BITS;
749
            }
B
blueswir1 已提交
750
            if ((eaddr & mask) == (slb->tmp64 & mask)) {
751
                /* SLB match */
B
blueswir1 已提交
752
                *vsid = ((slb->tmp64 << 24) | (slb->tmp >> 8)) & 0x0003FFFFFFFFFFFFULL;
753
                *page_mask = ~mask;
B
blueswir1 已提交
754
                *attr = slb->tmp & 0xFF;
755
                ret = n;
756 757 758 759 760 761
                break;
            }
        }
    }

    return ret;
B
bellard 已提交
762
}
763

764 765 766 767 768
void ppc_slb_invalidate_all (CPUPPCState *env)
{
    int n, do_invalidate;

    do_invalidate = 0;
769 770
    /* XXX: Warning: slbia never invalidates the first segment */
    for (n = 1; n < env->slb_nr; n++) {
A
Anthony Liguori 已提交
771
        ppc_slb_t *slb = slb_get_entry(env, n);
B
blueswir1 已提交
772 773 774 775

        if (slb_is_valid(slb)) {
            slb_invalidate(slb);
            slb_set_entry(env, n, slb);
776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792
            /* XXX: given the fact that segment size is 256 MB or 1TB,
             *      and we still don't have a tlb_flush_mask(env, n, mask)
             *      in Qemu, we just invalidate all TLBs
             */
            do_invalidate = 1;
        }
    }
    if (do_invalidate)
        tlb_flush(env, 1);
}

void ppc_slb_invalidate_one (CPUPPCState *env, uint64_t T0)
{
    target_ulong vsid, page_mask;
    int attr;
    int n;

B
blueswir1 已提交
793
    n = slb_lookup(env, T0, &vsid, &page_mask, &attr, NULL);
794
    if (n >= 0) {
A
Anthony Liguori 已提交
795
        ppc_slb_t *slb = slb_get_entry(env, n);
B
blueswir1 已提交
796 797 798 799

        if (slb_is_valid(slb)) {
            slb_invalidate(slb);
            slb_set_entry(env, n, slb);
800 801 802 803 804 805 806 807 808
            /* XXX: given the fact that segment size is 256 MB or 1TB,
             *      and we still don't have a tlb_flush_mask(env, n, mask)
             *      in Qemu, we just invalidate all TLBs
             */
            tlb_flush(env, 1);
        }
    }
}

809 810 811
target_ulong ppc_load_slb (CPUPPCState *env, int slb_nr)
{
    target_ulong rt;
A
Anthony Liguori 已提交
812
    ppc_slb_t *slb = slb_get_entry(env, slb_nr);
B
blueswir1 已提交
813 814

    if (slb_is_valid(slb)) {
815 816
        /* SLB entry is valid */
        /* Copy SLB bits 62:88 to Rt 37:63 (VSID 23:49) */
B
blueswir1 已提交
817 818
        rt = slb->tmp >> 8;             /* 65:88 => 40:63 */
        rt |= (slb->tmp64 & 0x7) << 24; /* 62:64 => 37:39 */
819
        /* Copy SLB bits 89:92 to Rt 33:36 (KsKpNL) */
B
blueswir1 已提交
820
        rt |= ((slb->tmp >> 4) & 0xF) << 27;
821 822 823
    } else {
        rt = 0;
    }
B
blueswir1 已提交
824
    LOG_SLB("%s: %016" PRIx64 " %08" PRIx32 " => %d "
825
            TARGET_FMT_lx "\n", __func__, slb->tmp64, slb->tmp, slb_nr, rt);
826 827 828 829

    return rt;
}

B
blueswir1 已提交
830
void ppc_store_slb (CPUPPCState *env, target_ulong rb, target_ulong rs)
831
{
A
Anthony Liguori 已提交
832
    ppc_slb_t *slb;
833

B
blueswir1 已提交
834 835 836 837 838 839 840 841 842 843 844
    uint64_t vsid;
    uint64_t esid;
    int flags, valid, slb_nr;

    vsid = rs >> 12;
    flags = ((rs >> 8) & 0xf);

    esid = rb >> 28;
    valid = (rb & (1 << 27));
    slb_nr = rb & 0xfff;

B
blueswir1 已提交
845 846 847
    slb = slb_get_entry(env, slb_nr);
    slb->tmp64 = (esid << 28) | valid | (vsid >> 24);
    slb->tmp = (vsid << 8) | (flags << 3);
B
blueswir1 已提交
848

849 850 851
    LOG_SLB("%s: %d " TARGET_FMT_lx " - " TARGET_FMT_lx " => %016" PRIx64
            " %08" PRIx32 "\n", __func__, slb_nr, rb, rs, slb->tmp64,
            slb->tmp);
B
blueswir1 已提交
852

B
blueswir1 已提交
853
    slb_set_entry(env, slb_nr, slb);
854
}
855
#endif /* defined(TARGET_PPC64) */
B
bellard 已提交
856

857
/* Perform segment based translation */
A
Anthony Liguori 已提交
858
static inline target_phys_addr_t get_pgaddr(target_phys_addr_t sdr1,
B
Blue Swirl 已提交
859
                                            int sdr_sh,
A
Anthony Liguori 已提交
860 861
                                            target_phys_addr_t hash,
                                            target_phys_addr_t mask)
862
{
A
Anthony Liguori 已提交
863
    return (sdr1 & ((target_phys_addr_t)(-1ULL) << sdr_sh)) | (hash & mask);
864 865
}

A
Anthony Liguori 已提交
866
static inline int get_segment(CPUState *env, mmu_ctx_t *ctx,
B
Blue Swirl 已提交
867
                              target_ulong eaddr, int rw, int type)
B
bellard 已提交
868
{
A
Anthony Liguori 已提交
869
    target_phys_addr_t sdr, hash, mask, sdr_mask, htab_mask;
870 871 872
    target_ulong sr, vsid, vsid_mask, pgidx, page_mask;
#if defined(TARGET_PPC64)
    int attr;
873
#endif
B
blueswir1 已提交
874
    int ds, vsid_sh, sdr_sh, pr, target_page_bits;
875 876
    int ret, ret2;

877
    pr = msr_pr;
878
#if defined(TARGET_PPC64)
879
    if (env->mmu_model & POWERPC_MMU_64) {
880
        LOG_MMU("Check SLBs\n");
B
blueswir1 已提交
881 882
        ret = slb_lookup(env, eaddr, &vsid, &page_mask, &attr,
                         &target_page_bits);
883 884
        if (ret < 0)
            return ret;
885 886
        ctx->key = ((attr & 0x40) && (pr != 0)) ||
            ((attr & 0x80) && (pr == 0)) ? 1 : 0;
887
        ds = 0;
B
blueswir1 已提交
888 889
        ctx->nx = attr & 0x10 ? 1 : 0;
        ctx->eaddr = eaddr;
890 891 892 893 894 895 896 897 898
        vsid_mask = 0x00003FFFFFFFFF80ULL;
        vsid_sh = 7;
        sdr_sh = 18;
        sdr_mask = 0x3FF80;
    } else
#endif /* defined(TARGET_PPC64) */
    {
        sr = env->sr[eaddr >> 28];
        page_mask = 0x0FFFFFFF;
899 900
        ctx->key = (((sr & 0x20000000) && (pr != 0)) ||
                    ((sr & 0x40000000) && (pr == 0))) ? 1 : 0;
901
        ds = sr & 0x80000000 ? 1 : 0;
902
        ctx->nx = sr & 0x10000000 ? 1 : 0;
903 904 905 906 907
        vsid = sr & 0x00FFFFFF;
        vsid_mask = 0x01FFFFC0;
        vsid_sh = 6;
        sdr_sh = 16;
        sdr_mask = 0xFFC0;
B
blueswir1 已提交
908
        target_page_bits = TARGET_PAGE_BITS;
909 910 911 912 913
        LOG_MMU("Check segment v=" TARGET_FMT_lx " %d " TARGET_FMT_lx " nip="
                TARGET_FMT_lx " lr=" TARGET_FMT_lx
                " ir=%d dr=%d pr=%d %d t=%d\n",
                eaddr, (int)(eaddr >> 28), sr, env->nip, env->lr, (int)msr_ir,
                (int)msr_dr, pr != 0 ? 1 : 0, rw, type);
914
    }
915 916
    LOG_MMU("pte segment: key=%d ds %d nx %d vsid " TARGET_FMT_lx "\n",
            ctx->key, ds, ctx->nx, vsid);
917 918
    ret = -1;
    if (!ds) {
919
        /* Check if instruction fetch is allowed, if needed */
920
        if (type != ACCESS_CODE || ctx->nx == 0) {
921
            /* Page address translation */
922 923
            /* Primary table address */
            sdr = env->sdr1;
B
blueswir1 已提交
924
            pgidx = (eaddr & page_mask) >> target_page_bits;
925
#if defined(TARGET_PPC64)
926
            if (env->mmu_model & POWERPC_MMU_64) {
927 928 929 930 931 932 933 934 935 936
                htab_mask = 0x0FFFFFFF >> (28 - (sdr & 0x1F));
                /* XXX: this is false for 1 TB segments */
                hash = ((vsid ^ pgidx) << vsid_sh) & vsid_mask;
            } else
#endif
            {
                htab_mask = sdr & 0x000001FF;
                hash = ((vsid ^ pgidx) << vsid_sh) & vsid_mask;
            }
            mask = (htab_mask << sdr_sh) | sdr_mask;
937 938 939
            LOG_MMU("sdr " TARGET_FMT_plx " sh %d hash " TARGET_FMT_plx
                    " mask " TARGET_FMT_plx " " TARGET_FMT_lx "\n",
                    sdr, sdr_sh, hash, mask, page_mask);
940
            ctx->pg_addr[0] = get_pgaddr(sdr, sdr_sh, hash, mask);
941
            /* Secondary table address */
942
            hash = (~hash) & vsid_mask;
943 944
            LOG_MMU("sdr " TARGET_FMT_plx " sh %d hash " TARGET_FMT_plx
                    " mask " TARGET_FMT_plx "\n", sdr, sdr_sh, hash, mask);
945 946
            ctx->pg_addr[1] = get_pgaddr(sdr, sdr_sh, hash, mask);
#if defined(TARGET_PPC64)
947
            if (env->mmu_model & POWERPC_MMU_64) {
948
                /* Only 5 bits of the page index are used in the AVPN */
B
blueswir1 已提交
949 950 951 952 953 954
                if (target_page_bits > 23) {
                    ctx->ptem = (vsid << 12) |
                                ((pgidx << (target_page_bits - 16)) & 0xF80);
                } else {
                    ctx->ptem = (vsid << 12) | ((pgidx >> 4) & 0x0F80);
                }
955 956 957 958 959
            } else
#endif
            {
                ctx->ptem = (vsid << 7) | (pgidx >> 10);
            }
960
            /* Initialize real address with an invalid value */
A
Anthony Liguori 已提交
961
            ctx->raddr = (target_phys_addr_t)-1ULL;
962 963
            if (unlikely(env->mmu_model == POWERPC_MMU_SOFT_6xx ||
                         env->mmu_model == POWERPC_MMU_SOFT_74xx)) {
964 965 966
                /* Software TLB search */
                ret = ppc6xx_tlb_check(env, ctx, eaddr, rw, type);
            } else {
967 968 969 970
                LOG_MMU("0 sdr1=" TARGET_FMT_plx " vsid=" TARGET_FMT_lx " "
                        "api=" TARGET_FMT_lx " hash=" TARGET_FMT_plx
                        " pg_addr=" TARGET_FMT_plx "\n",
                        sdr, vsid, pgidx, hash, ctx->pg_addr[0]);
971
                /* Primary table lookup */
B
blueswir1 已提交
972
                ret = find_pte(env, ctx, 0, rw, type, target_page_bits);
973 974
                if (ret < 0) {
                    /* Secondary table lookup */
975
                    if (eaddr != 0xEFFFFFFF)
976 977 978 979
                        LOG_MMU("1 sdr1=" TARGET_FMT_plx " vsid=" TARGET_FMT_lx " "
                                "api=" TARGET_FMT_lx " hash=" TARGET_FMT_plx
                                " pg_addr=" TARGET_FMT_plx "\n", sdr, vsid,
                                pgidx, hash, ctx->pg_addr[1]);
B
blueswir1 已提交
980 981
                    ret2 = find_pte(env, ctx, 1, rw, type,
                                    target_page_bits);
982 983 984
                    if (ret2 != -1)
                        ret = ret2;
                }
985
            }
986
#if defined (DUMP_PAGE_TABLES)
987
            if (qemu_log_enabled()) {
A
Anthony Liguori 已提交
988
                target_phys_addr_t curaddr;
J
j_mayer 已提交
989
                uint32_t a0, a1, a2, a3;
990 991
                qemu_log("Page table: " TARGET_FMT_plx " len " TARGET_FMT_plx
                         "\n", sdr, mask + 0x80);
J
j_mayer 已提交
992 993 994 995 996 997 998
                for (curaddr = sdr; curaddr < (sdr + mask + 0x80);
                     curaddr += 16) {
                    a0 = ldl_phys(curaddr);
                    a1 = ldl_phys(curaddr + 4);
                    a2 = ldl_phys(curaddr + 8);
                    a3 = ldl_phys(curaddr + 12);
                    if (a0 != 0 || a1 != 0 || a2 != 0 || a3 != 0) {
999 1000
                        qemu_log(TARGET_FMT_plx ": %08x %08x %08x %08x\n",
                                 curaddr, a0, a1, a2, a3);
1001
                    }
J
j_mayer 已提交
1002 1003
                }
            }
1004
#endif
1005
        } else {
1006
            LOG_MMU("No access allowed\n");
1007
            ret = -3;
1008 1009
        }
    } else {
1010
        LOG_MMU("direct store...\n");
1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029
        /* Direct-store segment : absolutely *BUGGY* for now */
        switch (type) {
        case ACCESS_INT:
            /* Integer load/store : only access allowed */
            break;
        case ACCESS_CODE:
            /* No code fetch is allowed in direct-store areas */
            return -4;
        case ACCESS_FLOAT:
            /* Floating point load/store */
            return -4;
        case ACCESS_RES:
            /* lwarx, ldarx or srwcx. */
            return -4;
        case ACCESS_CACHE:
            /* dcba, dcbt, dcbtst, dcbf, dcbi, dcbst, dcbz, or icbi */
            /* Should make the instruction do no-op.
             * As it already do no-op, it's quite easy :-)
             */
1030
            ctx->raddr = eaddr;
1031 1032 1033 1034 1035
            return 0;
        case ACCESS_EXT:
            /* eciwx or ecowx */
            return -4;
        default:
1036
            qemu_log("ERROR: instruction should not need "
1037 1038 1039
                        "address translation\n");
            return -4;
        }
1040 1041
        if ((rw == 1 || ctx->key != 1) && (rw == 0 || ctx->key != 0)) {
            ctx->raddr = eaddr;
1042 1043 1044 1045
            ret = 2;
        } else {
            ret = -2;
        }
B
bellard 已提交
1046
    }
1047 1048

    return ret;
B
bellard 已提交
1049 1050
}

1051
/* Generic TLB check function for embedded PowerPC implementations */
A
Anthony Liguori 已提交
1052 1053
static inline int ppcemb_tlb_check(CPUState *env, ppcemb_tlb_t *tlb,
                                   target_phys_addr_t *raddrp,
B
Blue Swirl 已提交
1054 1055
                                   target_ulong address, uint32_t pid, int ext,
                                   int i)
1056 1057 1058 1059 1060
{
    target_ulong mask;

    /* Check valid flag */
    if (!(tlb->prot & PAGE_VALID)) {
1061
        qemu_log("%s: TLB %d not valid\n", __func__, i);
1062 1063 1064
        return -1;
    }
    mask = ~(tlb->size - 1);
1065 1066 1067
    LOG_SWTLB("%s: TLB %d address " TARGET_FMT_lx " PID %u <=> " TARGET_FMT_lx
              " " TARGET_FMT_lx " %u\n", __func__, i, address, pid, tlb->EPN,
              mask, (uint32_t)tlb->PID);
1068
    /* Check PID */
1069
    if (tlb->PID != 0 && tlb->PID != pid)
1070 1071 1072 1073 1074
        return -1;
    /* Check effective address */
    if ((address & mask) != tlb->EPN)
        return -1;
    *raddrp = (tlb->RPN & mask) | (address & ~mask);
1075
#if (TARGET_PHYS_ADDR_BITS >= 36)
1076 1077
    if (ext) {
        /* Extend the physical address to 36 bits */
A
Anthony Liguori 已提交
1078
        *raddrp |= (target_phys_addr_t)(tlb->RPN & 0xF) << 32;
1079
    }
1080
#endif
1081 1082 1083 1084 1085

    return 0;
}

/* Generic TLB search function for PowerPC embedded implementations */
1086
int ppcemb_tlb_search (CPUPPCState *env, target_ulong address, uint32_t pid)
1087
{
A
Anthony Liguori 已提交
1088 1089
    ppcemb_tlb_t *tlb;
    target_phys_addr_t raddr;
1090 1091 1092 1093
    int i, ret;

    /* Default return value is no match */
    ret = -1;
1094
    for (i = 0; i < env->nb_tlb; i++) {
1095
        tlb = &env->tlb[i].tlbe;
1096
        if (ppcemb_tlb_check(env, tlb, &raddr, address, pid, 0, i) == 0) {
1097 1098 1099 1100 1101 1102 1103 1104
            ret = i;
            break;
        }
    }

    return ret;
}

1105
/* Helpers specific to PowerPC 40x implementations */
B
Blue Swirl 已提交
1106
static inline void ppc4xx_tlb_invalidate_all(CPUState *env)
1107
{
A
Anthony Liguori 已提交
1108
    ppcemb_tlb_t *tlb;
1109 1110 1111 1112
    int i;

    for (i = 0; i < env->nb_tlb; i++) {
        tlb = &env->tlb[i].tlbe;
1113
        tlb->prot &= ~PAGE_VALID;
1114
    }
1115
    tlb_flush(env, 1);
1116 1117
}

B
Blue Swirl 已提交
1118 1119
static inline void ppc4xx_tlb_invalidate_virt(CPUState *env,
                                              target_ulong eaddr, uint32_t pid)
J
j_mayer 已提交
1120
{
1121
#if !defined(FLUSH_ALL_TLBS)
A
Anthony Liguori 已提交
1122 1123
    ppcemb_tlb_t *tlb;
    target_phys_addr_t raddr;
1124
    target_ulong page, end;
J
j_mayer 已提交
1125 1126 1127 1128
    int i;

    for (i = 0; i < env->nb_tlb; i++) {
        tlb = &env->tlb[i].tlbe;
1129
        if (ppcemb_tlb_check(env, tlb, &raddr, eaddr, pid, 0, i) == 0) {
J
j_mayer 已提交
1130 1131 1132 1133
            end = tlb->EPN + tlb->size;
            for (page = tlb->EPN; page < end; page += TARGET_PAGE_SIZE)
                tlb_flush_page(env, page);
            tlb->prot &= ~PAGE_VALID;
1134
            break;
J
j_mayer 已提交
1135 1136
        }
    }
1137 1138 1139
#else
    ppc4xx_tlb_invalidate_all(env);
#endif
J
j_mayer 已提交
1140 1141
}

A
Anthony Liguori 已提交
1142
static int mmu40x_get_physical_address (CPUState *env, mmu_ctx_t *ctx,
1143
                                 target_ulong address, int rw, int access_type)
J
j_mayer 已提交
1144
{
A
Anthony Liguori 已提交
1145 1146
    ppcemb_tlb_t *tlb;
    target_phys_addr_t raddr;
1147
    int i, ret, zsel, zpr, pr;
1148

1149
    ret = -1;
A
Anthony Liguori 已提交
1150
    raddr = (target_phys_addr_t)-1ULL;
1151
    pr = msr_pr;
J
j_mayer 已提交
1152 1153
    for (i = 0; i < env->nb_tlb; i++) {
        tlb = &env->tlb[i].tlbe;
1154 1155
        if (ppcemb_tlb_check(env, tlb, &raddr, address,
                             env->spr[SPR_40x_PID], 0, i) < 0)
J
j_mayer 已提交
1156 1157 1158
            continue;
        zsel = (tlb->attr >> 4) & 0xF;
        zpr = (env->spr[SPR_40x_ZPR] >> (28 - (2 * zsel))) & 0x3;
1159
        LOG_SWTLB("%s: TLB %d zsel %d zpr %d rw %d attr %08x\n",
J
j_mayer 已提交
1160
                    __func__, i, zsel, zpr, rw, tlb->attr);
1161 1162 1163
        /* Check execute enable bit */
        switch (zpr) {
        case 0x2:
1164
            if (pr != 0)
1165 1166 1167 1168 1169 1170 1171 1172
                goto check_perms;
            /* No break here */
        case 0x3:
            /* All accesses granted */
            ctx->prot = PAGE_READ | PAGE_WRITE | PAGE_EXEC;
            ret = 0;
            break;
        case 0x0:
1173
            if (pr != 0) {
1174 1175
                ctx->prot = 0;
                ret = -2;
J
j_mayer 已提交
1176 1177
                break;
            }
1178 1179 1180 1181 1182 1183 1184 1185 1186
            /* No break here */
        case 0x1:
        check_perms:
            /* Check from TLB entry */
            /* XXX: there is a problem here or in the TLB fill code... */
            ctx->prot = tlb->prot;
            ctx->prot |= PAGE_EXEC;
            ret = check_prot(ctx->prot, rw, access_type);
            break;
J
j_mayer 已提交
1187 1188 1189
        }
        if (ret >= 0) {
            ctx->raddr = raddr;
1190 1191 1192
            LOG_SWTLB("%s: access granted " TARGET_FMT_lx " => " TARGET_FMT_plx
                      " %d %d\n", __func__, address, ctx->raddr, ctx->prot,
                      ret);
1193
            return 0;
J
j_mayer 已提交
1194 1195
        }
    }
1196 1197
    LOG_SWTLB("%s: access refused " TARGET_FMT_lx " => " TARGET_FMT_plx
              " %d %d\n", __func__, address, raddr, ctx->prot, ret);
1198

J
j_mayer 已提交
1199 1200 1201
    return ret;
}

1202 1203 1204 1205 1206 1207 1208 1209 1210
void store_40x_sler (CPUPPCState *env, uint32_t val)
{
    /* XXX: TO BE FIXED */
    if (val != 0x00000000) {
        cpu_abort(env, "Little-endian regions are not supported by now\n");
    }
    env->spr[SPR_405_SLER] = val;
}

A
Anthony Liguori 已提交
1211
static int mmubooke_get_physical_address (CPUState *env, mmu_ctx_t *ctx,
A
aurel32 已提交
1212 1213
                                          target_ulong address, int rw,
                                          int access_type)
1214
{
A
Anthony Liguori 已提交
1215 1216
    ppcemb_tlb_t *tlb;
    target_phys_addr_t raddr;
1217 1218 1219
    int i, prot, ret;

    ret = -1;
A
Anthony Liguori 已提交
1220
    raddr = (target_phys_addr_t)-1ULL;
1221 1222 1223 1224 1225
    for (i = 0; i < env->nb_tlb; i++) {
        tlb = &env->tlb[i].tlbe;
        if (ppcemb_tlb_check(env, tlb, &raddr, address,
                             env->spr[SPR_BOOKE_PID], 1, i) < 0)
            continue;
1226
        if (msr_pr != 0)
1227 1228 1229 1230 1231
            prot = tlb->prot & 0xF;
        else
            prot = (tlb->prot >> 4) & 0xF;
        /* Check the address space */
        if (access_type == ACCESS_CODE) {
1232
            if (msr_ir != (tlb->attr & 1))
1233 1234 1235 1236 1237 1238 1239 1240
                continue;
            ctx->prot = prot;
            if (prot & PAGE_EXEC) {
                ret = 0;
                break;
            }
            ret = -3;
        } else {
1241
            if (msr_dr != (tlb->attr & 1))
1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256
                continue;
            ctx->prot = prot;
            if ((!rw && prot & PAGE_READ) || (rw && (prot & PAGE_WRITE))) {
                ret = 0;
                break;
            }
            ret = -2;
        }
    }
    if (ret >= 0)
        ctx->raddr = raddr;

    return ret;
}

A
Anthony Liguori 已提交
1257
static inline int check_physical(CPUState *env, mmu_ctx_t *ctx,
B
Blue Swirl 已提交
1258
                                 target_ulong eaddr, int rw)
1259 1260
{
    int in_plb, ret;
1261

1262
    ctx->raddr = eaddr;
1263
    ctx->prot = PAGE_READ | PAGE_EXEC;
1264
    ret = 0;
1265 1266
    switch (env->mmu_model) {
    case POWERPC_MMU_32B:
J
j_mayer 已提交
1267
    case POWERPC_MMU_601:
1268
    case POWERPC_MMU_SOFT_6xx:
1269
    case POWERPC_MMU_SOFT_74xx:
1270
    case POWERPC_MMU_SOFT_4xx:
1271
    case POWERPC_MMU_REAL:
1272
    case POWERPC_MMU_BOOKE:
1273 1274 1275
        ctx->prot |= PAGE_WRITE;
        break;
#if defined(TARGET_PPC64)
1276
    case POWERPC_MMU_620:
1277
    case POWERPC_MMU_64B:
1278
        /* Real address are 60 bits long */
1279
        ctx->raddr &= 0x0FFFFFFFFFFFFFFFULL;
1280 1281
        ctx->prot |= PAGE_WRITE;
        break;
1282
#endif
1283
    case POWERPC_MMU_SOFT_4xx_Z:
1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303
        if (unlikely(msr_pe != 0)) {
            /* 403 family add some particular protections,
             * using PBL/PBU registers for accesses with no translation.
             */
            in_plb =
                /* Check PLB validity */
                (env->pb[0] < env->pb[1] &&
                 /* and address in plb area */
                 eaddr >= env->pb[0] && eaddr < env->pb[1]) ||
                (env->pb[2] < env->pb[3] &&
                 eaddr >= env->pb[2] && eaddr < env->pb[3]) ? 1 : 0;
            if (in_plb ^ msr_px) {
                /* Access in protected area */
                if (rw == 1) {
                    /* Access is not allowed */
                    ret = -2;
                }
            } else {
                /* Read-write access is allowed */
                ctx->prot |= PAGE_WRITE;
1304 1305
            }
        }
1306
        break;
1307 1308 1309 1310
    case POWERPC_MMU_MPC8xx:
        /* XXX: TODO */
        cpu_abort(env, "MPC8xx MMU model is not implemented\n");
        break;
1311
    case POWERPC_MMU_BOOKE_FSL:
1312 1313 1314 1315 1316 1317
        /* XXX: TODO */
        cpu_abort(env, "BookE FSL MMU model not implemented\n");
        break;
    default:
        cpu_abort(env, "Unknown or invalid MMU model\n");
        return -1;
1318 1319 1320 1321 1322
    }

    return ret;
}

A
Anthony Liguori 已提交
1323
int get_physical_address (CPUState *env, mmu_ctx_t *ctx, target_ulong eaddr,
J
j_mayer 已提交
1324
                          int rw, int access_type)
1325 1326
{
    int ret;
1327

B
bellard 已提交
1328
#if 0
1329
    qemu_log("%s\n", __func__);
1330
#endif
B
bellard 已提交
1331 1332
    if ((access_type == ACCESS_CODE && msr_ir == 0) ||
        (access_type != ACCESS_CODE && msr_dr == 0)) {
1333
        /* No address translation */
1334
        ret = check_physical(env, ctx, eaddr, rw);
1335
    } else {
1336
        ret = -1;
1337 1338
        switch (env->mmu_model) {
        case POWERPC_MMU_32B:
J
j_mayer 已提交
1339
        case POWERPC_MMU_601:
1340
        case POWERPC_MMU_SOFT_6xx:
1341
        case POWERPC_MMU_SOFT_74xx:
B
blueswir1 已提交
1342 1343 1344
            /* Try to find a BAT */
            if (env->nb_BATs != 0)
                ret = get_bat(env, ctx, eaddr, rw, access_type);
1345
#if defined(TARGET_PPC64)
1346
        case POWERPC_MMU_620:
1347
        case POWERPC_MMU_64B:
1348
#endif
J
j_mayer 已提交
1349
            if (ret < 0) {
1350
                /* We didn't match any BAT entry or don't have BATs */
J
j_mayer 已提交
1351 1352 1353
                ret = get_segment(env, ctx, eaddr, rw, access_type);
            }
            break;
1354 1355
        case POWERPC_MMU_SOFT_4xx:
        case POWERPC_MMU_SOFT_4xx_Z:
1356
            ret = mmu40x_get_physical_address(env, ctx, eaddr,
J
j_mayer 已提交
1357 1358
                                              rw, access_type);
            break;
1359
        case POWERPC_MMU_BOOKE:
1360 1361 1362
            ret = mmubooke_get_physical_address(env, ctx, eaddr,
                                                rw, access_type);
            break;
1363 1364 1365 1366
        case POWERPC_MMU_MPC8xx:
            /* XXX: TODO */
            cpu_abort(env, "MPC8xx MMU model is not implemented\n");
            break;
1367
        case POWERPC_MMU_BOOKE_FSL:
1368 1369 1370
            /* XXX: TODO */
            cpu_abort(env, "BookE FSL MMU model not implemented\n");
            return -1;
1371 1372
        case POWERPC_MMU_REAL:
            cpu_abort(env, "PowerPC in real mode do not do any translation\n");
1373
            return -1;
1374 1375
        default:
            cpu_abort(env, "Unknown or invalid MMU model\n");
J
j_mayer 已提交
1376
            return -1;
1377 1378
        }
    }
B
bellard 已提交
1379
#if 0
1380 1381
    qemu_log("%s address " TARGET_FMT_lx " => %d " TARGET_FMT_plx "\n",
             __func__, eaddr, ret, ctx->raddr);
1382
#endif
1383

1384 1385 1386
    return ret;
}

A
Anthony Liguori 已提交
1387
target_phys_addr_t cpu_get_phys_page_debug (CPUState *env, target_ulong addr)
B
bellard 已提交
1388
{
A
Anthony Liguori 已提交
1389
    mmu_ctx_t ctx;
B
bellard 已提交
1390

J
j_mayer 已提交
1391
    if (unlikely(get_physical_address(env, &ctx, addr, 0, ACCESS_INT) != 0))
B
bellard 已提交
1392
        return -1;
1393 1394

    return ctx.raddr & TARGET_PAGE_MASK;
B
bellard 已提交
1395
}
1396 1397

/* Perform address translation */
1398
int cpu_ppc_handle_mmu_fault (CPUState *env, target_ulong address, int rw,
1399
                              int mmu_idx, int is_softmmu)
1400
{
A
Anthony Liguori 已提交
1401
    mmu_ctx_t ctx;
1402
    int access_type;
1403
    int ret = 0;
1404

B
bellard 已提交
1405 1406 1407 1408 1409 1410
    if (rw == 2) {
        /* code access */
        rw = 0;
        access_type = ACCESS_CODE;
    } else {
        /* data access */
A
aurel32 已提交
1411
        access_type = env->access_type;
B
bellard 已提交
1412
    }
J
j_mayer 已提交
1413
    ret = get_physical_address(env, &ctx, address, rw, access_type);
1414
    if (ret == 0) {
1415 1416 1417
        ret = tlb_set_page_exec(env, address & TARGET_PAGE_MASK,
                                ctx.raddr & TARGET_PAGE_MASK, ctx.prot,
                                mmu_idx, is_softmmu);
1418
    } else if (ret < 0) {
1419
        LOG_MMU_STATE(env);
1420 1421 1422
        if (access_type == ACCESS_CODE) {
            switch (ret) {
            case -1:
1423
                /* No matches in page tables or TLB */
1424 1425
                switch (env->mmu_model) {
                case POWERPC_MMU_SOFT_6xx:
1426 1427
                    env->exception_index = POWERPC_EXCP_IFTLB;
                    env->error_code = 1 << 18;
1428 1429 1430
                    env->spr[SPR_IMISS] = address;
                    env->spr[SPR_ICMP] = 0x80000000 | ctx.ptem;
                    goto tlb_miss;
1431
                case POWERPC_MMU_SOFT_74xx:
1432
                    env->exception_index = POWERPC_EXCP_IFTLB;
1433
                    goto tlb_miss_74xx;
1434 1435
                case POWERPC_MMU_SOFT_4xx:
                case POWERPC_MMU_SOFT_4xx_Z:
1436 1437
                    env->exception_index = POWERPC_EXCP_ITLB;
                    env->error_code = 0;
J
j_mayer 已提交
1438 1439
                    env->spr[SPR_40x_DEAR] = address;
                    env->spr[SPR_40x_ESR] = 0x00000000;
1440
                    break;
1441
                case POWERPC_MMU_32B:
J
j_mayer 已提交
1442
                case POWERPC_MMU_601:
1443
#if defined(TARGET_PPC64)
1444
                case POWERPC_MMU_620:
1445
                case POWERPC_MMU_64B:
1446
#endif
1447 1448 1449
                    env->exception_index = POWERPC_EXCP_ISI;
                    env->error_code = 0x40000000;
                    break;
1450
                case POWERPC_MMU_BOOKE:
1451
                    /* XXX: TODO */
1452
                    cpu_abort(env, "BookE MMU model is not implemented\n");
1453
                    return -1;
1454
                case POWERPC_MMU_BOOKE_FSL:
1455
                    /* XXX: TODO */
1456
                    cpu_abort(env, "BookE FSL MMU model is not implemented\n");
1457
                    return -1;
1458 1459 1460 1461 1462 1463 1464
                case POWERPC_MMU_MPC8xx:
                    /* XXX: TODO */
                    cpu_abort(env, "MPC8xx MMU model is not implemented\n");
                    break;
                case POWERPC_MMU_REAL:
                    cpu_abort(env, "PowerPC in real mode should never raise "
                              "any MMU exceptions\n");
1465
                    return -1;
1466 1467 1468
                default:
                    cpu_abort(env, "Unknown or invalid MMU model\n");
                    return -1;
1469
                }
1470 1471 1472
                break;
            case -2:
                /* Access rights violation */
1473 1474
                env->exception_index = POWERPC_EXCP_ISI;
                env->error_code = 0x08000000;
1475 1476
                break;
            case -3:
1477
                /* No execute protection violation */
1478 1479
                env->exception_index = POWERPC_EXCP_ISI;
                env->error_code = 0x10000000;
1480 1481 1482 1483
                break;
            case -4:
                /* Direct store exception */
                /* No code fetch is allowed in direct-store areas */
1484 1485
                env->exception_index = POWERPC_EXCP_ISI;
                env->error_code = 0x10000000;
1486
                break;
1487
#if defined(TARGET_PPC64)
1488 1489
            case -5:
                /* No match in segment table */
1490 1491 1492 1493 1494 1495 1496 1497
                if (env->mmu_model == POWERPC_MMU_620) {
                    env->exception_index = POWERPC_EXCP_ISI;
                    /* XXX: this might be incorrect */
                    env->error_code = 0x40000000;
                } else {
                    env->exception_index = POWERPC_EXCP_ISEG;
                    env->error_code = 0;
                }
1498
                break;
1499
#endif
1500 1501 1502 1503
            }
        } else {
            switch (ret) {
            case -1:
1504
                /* No matches in page tables or TLB */
1505 1506
                switch (env->mmu_model) {
                case POWERPC_MMU_SOFT_6xx:
1507
                    if (rw == 1) {
1508 1509
                        env->exception_index = POWERPC_EXCP_DSTLB;
                        env->error_code = 1 << 16;
1510
                    } else {
1511 1512
                        env->exception_index = POWERPC_EXCP_DLTLB;
                        env->error_code = 0;
1513 1514 1515 1516
                    }
                    env->spr[SPR_DMISS] = address;
                    env->spr[SPR_DCMP] = 0x80000000 | ctx.ptem;
                tlb_miss:
1517
                    env->error_code |= ctx.key << 19;
1518 1519
                    env->spr[SPR_HASH1] = ctx.pg_addr[0];
                    env->spr[SPR_HASH2] = ctx.pg_addr[1];
1520
                    break;
1521 1522
                case POWERPC_MMU_SOFT_74xx:
                    if (rw == 1) {
1523
                        env->exception_index = POWERPC_EXCP_DSTLB;
1524
                    } else {
1525
                        env->exception_index = POWERPC_EXCP_DLTLB;
1526 1527 1528
                    }
                tlb_miss_74xx:
                    /* Implement LRU algorithm */
1529
                    env->error_code = ctx.key << 19;
1530 1531 1532 1533
                    env->spr[SPR_TLBMISS] = (address & ~((target_ulong)0x3)) |
                        ((env->last_way + 1) & (env->nb_ways - 1));
                    env->spr[SPR_PTEHI] = 0x80000000 | ctx.ptem;
                    break;
1534 1535
                case POWERPC_MMU_SOFT_4xx:
                case POWERPC_MMU_SOFT_4xx_Z:
1536 1537
                    env->exception_index = POWERPC_EXCP_DTLB;
                    env->error_code = 0;
J
j_mayer 已提交
1538 1539 1540 1541 1542
                    env->spr[SPR_40x_DEAR] = address;
                    if (rw)
                        env->spr[SPR_40x_ESR] = 0x00800000;
                    else
                        env->spr[SPR_40x_ESR] = 0x00000000;
1543
                    break;
1544
                case POWERPC_MMU_32B:
J
j_mayer 已提交
1545
                case POWERPC_MMU_601:
1546
#if defined(TARGET_PPC64)
1547
                case POWERPC_MMU_620:
1548
                case POWERPC_MMU_64B:
1549
#endif
1550 1551 1552 1553 1554 1555 1556 1557
                    env->exception_index = POWERPC_EXCP_DSI;
                    env->error_code = 0;
                    env->spr[SPR_DAR] = address;
                    if (rw == 1)
                        env->spr[SPR_DSISR] = 0x42000000;
                    else
                        env->spr[SPR_DSISR] = 0x40000000;
                    break;
1558 1559 1560 1561
                case POWERPC_MMU_MPC8xx:
                    /* XXX: TODO */
                    cpu_abort(env, "MPC8xx MMU model is not implemented\n");
                    break;
1562
                case POWERPC_MMU_BOOKE:
1563
                    /* XXX: TODO */
1564
                    cpu_abort(env, "BookE MMU model is not implemented\n");
1565
                    return -1;
1566
                case POWERPC_MMU_BOOKE_FSL:
1567
                    /* XXX: TODO */
1568
                    cpu_abort(env, "BookE FSL MMU model is not implemented\n");
1569
                    return -1;
1570 1571 1572
                case POWERPC_MMU_REAL:
                    cpu_abort(env, "PowerPC in real mode should never raise "
                              "any MMU exceptions\n");
1573
                    return -1;
1574 1575 1576
                default:
                    cpu_abort(env, "Unknown or invalid MMU model\n");
                    return -1;
1577
                }
1578 1579 1580
                break;
            case -2:
                /* Access rights violation */
1581 1582 1583 1584 1585 1586 1587
                env->exception_index = POWERPC_EXCP_DSI;
                env->error_code = 0;
                env->spr[SPR_DAR] = address;
                if (rw == 1)
                    env->spr[SPR_DSISR] = 0x0A000000;
                else
                    env->spr[SPR_DSISR] = 0x08000000;
1588 1589 1590 1591 1592 1593
                break;
            case -4:
                /* Direct store exception */
                switch (access_type) {
                case ACCESS_FLOAT:
                    /* Floating point load/store */
1594 1595 1596
                    env->exception_index = POWERPC_EXCP_ALIGN;
                    env->error_code = POWERPC_EXCP_ALIGN_FP;
                    env->spr[SPR_DAR] = address;
1597 1598
                    break;
                case ACCESS_RES:
1599 1600 1601 1602 1603 1604 1605 1606
                    /* lwarx, ldarx or stwcx. */
                    env->exception_index = POWERPC_EXCP_DSI;
                    env->error_code = 0;
                    env->spr[SPR_DAR] = address;
                    if (rw == 1)
                        env->spr[SPR_DSISR] = 0x06000000;
                    else
                        env->spr[SPR_DSISR] = 0x04000000;
1607 1608 1609
                    break;
                case ACCESS_EXT:
                    /* eciwx or ecowx */
1610 1611 1612 1613 1614 1615 1616
                    env->exception_index = POWERPC_EXCP_DSI;
                    env->error_code = 0;
                    env->spr[SPR_DAR] = address;
                    if (rw == 1)
                        env->spr[SPR_DSISR] = 0x06100000;
                    else
                        env->spr[SPR_DSISR] = 0x04100000;
1617 1618
                    break;
                default:
1619
                    printf("DSI: invalid exception (%d)\n", ret);
1620 1621 1622 1623
                    env->exception_index = POWERPC_EXCP_PROGRAM;
                    env->error_code =
                        POWERPC_EXCP_INVAL | POWERPC_EXCP_INVAL_INVAL;
                    env->spr[SPR_DAR] = address;
1624 1625
                    break;
                }
1626
                break;
1627
#if defined(TARGET_PPC64)
1628 1629
            case -5:
                /* No match in segment table */
1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643
                if (env->mmu_model == POWERPC_MMU_620) {
                    env->exception_index = POWERPC_EXCP_DSI;
                    env->error_code = 0;
                    env->spr[SPR_DAR] = address;
                    /* XXX: this might be incorrect */
                    if (rw == 1)
                        env->spr[SPR_DSISR] = 0x42000000;
                    else
                        env->spr[SPR_DSISR] = 0x40000000;
                } else {
                    env->exception_index = POWERPC_EXCP_DSEG;
                    env->error_code = 0;
                    env->spr[SPR_DAR] = address;
                }
1644
                break;
1645
#endif
1646 1647 1648
            }
        }
#if 0
1649 1650
        printf("%s: set exception to %d %02x\n", __func__,
               env->exception, env->error_code);
1651 1652 1653
#endif
        ret = 1;
    }
1654

1655 1656 1657
    return ret;
}

1658 1659 1660
/*****************************************************************************/
/* BATs management */
#if !defined(FLUSH_ALL_TLBS)
B
Blue Swirl 已提交
1661 1662
static inline void do_invalidate_BAT(CPUPPCState *env, target_ulong BATu,
                                     target_ulong mask)
1663 1664
{
    target_ulong base, end, page;
1665

1666 1667
    base = BATu & ~0x0001FFFF;
    end = base + mask + 0x00020000;
1668 1669
    LOG_BATS("Flush BAT from " TARGET_FMT_lx " to " TARGET_FMT_lx " ("
             TARGET_FMT_lx ")\n", base, end, mask);
1670 1671
    for (page = base; page != end; page += TARGET_PAGE_SIZE)
        tlb_flush_page(env, page);
1672
    LOG_BATS("Flush done\n");
1673 1674 1675
}
#endif

B
Blue Swirl 已提交
1676 1677
static inline void dump_store_bat(CPUPPCState *env, char ID, int ul, int nr,
                                  target_ulong value)
1678
{
1679 1680
    LOG_BATS("Set %cBAT%d%c to " TARGET_FMT_lx " (" TARGET_FMT_lx ")\n", ID,
             nr, ul == 0 ? 'u' : 'l', value, env->nip);
1681 1682
}

A
aurel32 已提交
1683
void ppc_store_ibatu (CPUPPCState *env, int nr, target_ulong value)
1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702
{
    target_ulong mask;

    dump_store_bat(env, 'I', 0, nr, value);
    if (env->IBAT[0][nr] != value) {
        mask = (value << 15) & 0x0FFE0000UL;
#if !defined(FLUSH_ALL_TLBS)
        do_invalidate_BAT(env, env->IBAT[0][nr], mask);
#endif
        /* When storing valid upper BAT, mask BEPI and BRPN
         * and invalidate all TLBs covered by this BAT
         */
        mask = (value << 15) & 0x0FFE0000UL;
        env->IBAT[0][nr] = (value & 0x00001FFFUL) |
            (value & ~0x0001FFFFUL & ~mask);
        env->IBAT[1][nr] = (env->IBAT[1][nr] & 0x0000007B) |
            (env->IBAT[1][nr] & ~0x0001FFFF & ~mask);
#if !defined(FLUSH_ALL_TLBS)
        do_invalidate_BAT(env, env->IBAT[0][nr], mask);
1703
#else
1704 1705 1706 1707 1708
        tlb_flush(env, 1);
#endif
    }
}

A
aurel32 已提交
1709
void ppc_store_ibatl (CPUPPCState *env, int nr, target_ulong value)
1710 1711 1712 1713 1714
{
    dump_store_bat(env, 'I', 1, nr, value);
    env->IBAT[1][nr] = value;
}

A
aurel32 已提交
1715
void ppc_store_dbatu (CPUPPCState *env, int nr, target_ulong value)
1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740
{
    target_ulong mask;

    dump_store_bat(env, 'D', 0, nr, value);
    if (env->DBAT[0][nr] != value) {
        /* When storing valid upper BAT, mask BEPI and BRPN
         * and invalidate all TLBs covered by this BAT
         */
        mask = (value << 15) & 0x0FFE0000UL;
#if !defined(FLUSH_ALL_TLBS)
        do_invalidate_BAT(env, env->DBAT[0][nr], mask);
#endif
        mask = (value << 15) & 0x0FFE0000UL;
        env->DBAT[0][nr] = (value & 0x00001FFFUL) |
            (value & ~0x0001FFFFUL & ~mask);
        env->DBAT[1][nr] = (env->DBAT[1][nr] & 0x0000007B) |
            (env->DBAT[1][nr] & ~0x0001FFFF & ~mask);
#if !defined(FLUSH_ALL_TLBS)
        do_invalidate_BAT(env, env->DBAT[0][nr], mask);
#else
        tlb_flush(env, 1);
#endif
    }
}

A
aurel32 已提交
1741
void ppc_store_dbatl (CPUPPCState *env, int nr, target_ulong value)
1742 1743 1744 1745 1746
{
    dump_store_bat(env, 'D', 1, nr, value);
    env->DBAT[1][nr] = value;
}

A
aurel32 已提交
1747
void ppc_store_ibatu_601 (CPUPPCState *env, int nr, target_ulong value)
1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783
{
    target_ulong mask;
    int do_inval;

    dump_store_bat(env, 'I', 0, nr, value);
    if (env->IBAT[0][nr] != value) {
        do_inval = 0;
        mask = (env->IBAT[1][nr] << 17) & 0x0FFE0000UL;
        if (env->IBAT[1][nr] & 0x40) {
            /* Invalidate BAT only if it is valid */
#if !defined(FLUSH_ALL_TLBS)
            do_invalidate_BAT(env, env->IBAT[0][nr], mask);
#else
            do_inval = 1;
#endif
        }
        /* When storing valid upper BAT, mask BEPI and BRPN
         * and invalidate all TLBs covered by this BAT
         */
        env->IBAT[0][nr] = (value & 0x00001FFFUL) |
            (value & ~0x0001FFFFUL & ~mask);
        env->DBAT[0][nr] = env->IBAT[0][nr];
        if (env->IBAT[1][nr] & 0x40) {
#if !defined(FLUSH_ALL_TLBS)
            do_invalidate_BAT(env, env->IBAT[0][nr], mask);
#else
            do_inval = 1;
#endif
        }
#if defined(FLUSH_ALL_TLBS)
        if (do_inval)
            tlb_flush(env, 1);
#endif
    }
}

A
aurel32 已提交
1784
void ppc_store_ibatl_601 (CPUPPCState *env, int nr, target_ulong value)
1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816
{
    target_ulong mask;
    int do_inval;

    dump_store_bat(env, 'I', 1, nr, value);
    if (env->IBAT[1][nr] != value) {
        do_inval = 0;
        if (env->IBAT[1][nr] & 0x40) {
#if !defined(FLUSH_ALL_TLBS)
            mask = (env->IBAT[1][nr] << 17) & 0x0FFE0000UL;
            do_invalidate_BAT(env, env->IBAT[0][nr], mask);
#else
            do_inval = 1;
#endif
        }
        if (value & 0x40) {
#if !defined(FLUSH_ALL_TLBS)
            mask = (value << 17) & 0x0FFE0000UL;
            do_invalidate_BAT(env, env->IBAT[0][nr], mask);
#else
            do_inval = 1;
#endif
        }
        env->IBAT[1][nr] = value;
        env->DBAT[1][nr] = value;
#if defined(FLUSH_ALL_TLBS)
        if (do_inval)
            tlb_flush(env, 1);
#endif
    }
}

J
j_mayer 已提交
1817 1818 1819 1820
/*****************************************************************************/
/* TLB management */
void ppc_tlb_invalidate_all (CPUPPCState *env)
{
1821 1822
    switch (env->mmu_model) {
    case POWERPC_MMU_SOFT_6xx:
1823
    case POWERPC_MMU_SOFT_74xx:
J
j_mayer 已提交
1824
        ppc6xx_tlb_invalidate_all(env);
1825 1826 1827
        break;
    case POWERPC_MMU_SOFT_4xx:
    case POWERPC_MMU_SOFT_4xx_Z:
J
j_mayer 已提交
1828
        ppc4xx_tlb_invalidate_all(env);
1829
        break;
1830
    case POWERPC_MMU_REAL:
1831 1832
        cpu_abort(env, "No TLB for PowerPC 4xx in real mode\n");
        break;
1833 1834 1835 1836
    case POWERPC_MMU_MPC8xx:
        /* XXX: TODO */
        cpu_abort(env, "MPC8xx MMU model is not implemented\n");
        break;
1837 1838
    case POWERPC_MMU_BOOKE:
        /* XXX: TODO */
1839
        cpu_abort(env, "BookE MMU model is not implemented\n");
1840 1841 1842
        break;
    case POWERPC_MMU_BOOKE_FSL:
        /* XXX: TODO */
1843 1844
        if (!kvm_enabled())
            cpu_abort(env, "BookE MMU model is not implemented\n");
1845 1846
        break;
    case POWERPC_MMU_32B:
J
j_mayer 已提交
1847
    case POWERPC_MMU_601:
J
j_mayer 已提交
1848
#if defined(TARGET_PPC64)
1849
    case POWERPC_MMU_620:
1850
    case POWERPC_MMU_64B:
J
j_mayer 已提交
1851
#endif /* defined(TARGET_PPC64) */
J
j_mayer 已提交
1852
        tlb_flush(env, 1);
1853
        break;
J
j_mayer 已提交
1854 1855
    default:
        /* XXX: TODO */
1856
        cpu_abort(env, "Unknown MMU model\n");
J
j_mayer 已提交
1857
        break;
J
j_mayer 已提交
1858 1859 1860
    }
}

1861 1862 1863 1864 1865 1866
void ppc_tlb_invalidate_one (CPUPPCState *env, target_ulong addr)
{
#if !defined(FLUSH_ALL_TLBS)
    addr &= TARGET_PAGE_MASK;
    switch (env->mmu_model) {
    case POWERPC_MMU_SOFT_6xx:
1867
    case POWERPC_MMU_SOFT_74xx:
1868 1869 1870 1871 1872 1873 1874 1875
        ppc6xx_tlb_invalidate_virt(env, addr, 0);
        if (env->id_tlbs == 1)
            ppc6xx_tlb_invalidate_virt(env, addr, 1);
        break;
    case POWERPC_MMU_SOFT_4xx:
    case POWERPC_MMU_SOFT_4xx_Z:
        ppc4xx_tlb_invalidate_virt(env, addr, env->spr[SPR_40x_PID]);
        break;
1876
    case POWERPC_MMU_REAL:
1877 1878
        cpu_abort(env, "No TLB for PowerPC 4xx in real mode\n");
        break;
1879 1880 1881 1882
    case POWERPC_MMU_MPC8xx:
        /* XXX: TODO */
        cpu_abort(env, "MPC8xx MMU model is not implemented\n");
        break;
1883 1884
    case POWERPC_MMU_BOOKE:
        /* XXX: TODO */
1885
        cpu_abort(env, "BookE MMU model is not implemented\n");
1886 1887 1888
        break;
    case POWERPC_MMU_BOOKE_FSL:
        /* XXX: TODO */
1889
        cpu_abort(env, "BookE FSL MMU model is not implemented\n");
1890 1891
        break;
    case POWERPC_MMU_32B:
J
j_mayer 已提交
1892
    case POWERPC_MMU_601:
1893
        /* tlbie invalidate TLBs for all segments */
1894
        addr &= ~((target_ulong)-1ULL << 28);
1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913
        /* XXX: this case should be optimized,
         * giving a mask to tlb_flush_page
         */
        tlb_flush_page(env, addr | (0x0 << 28));
        tlb_flush_page(env, addr | (0x1 << 28));
        tlb_flush_page(env, addr | (0x2 << 28));
        tlb_flush_page(env, addr | (0x3 << 28));
        tlb_flush_page(env, addr | (0x4 << 28));
        tlb_flush_page(env, addr | (0x5 << 28));
        tlb_flush_page(env, addr | (0x6 << 28));
        tlb_flush_page(env, addr | (0x7 << 28));
        tlb_flush_page(env, addr | (0x8 << 28));
        tlb_flush_page(env, addr | (0x9 << 28));
        tlb_flush_page(env, addr | (0xA << 28));
        tlb_flush_page(env, addr | (0xB << 28));
        tlb_flush_page(env, addr | (0xC << 28));
        tlb_flush_page(env, addr | (0xD << 28));
        tlb_flush_page(env, addr | (0xE << 28));
        tlb_flush_page(env, addr | (0xF << 28));
1914
        break;
J
j_mayer 已提交
1915
#if defined(TARGET_PPC64)
1916
    case POWERPC_MMU_620:
1917 1918 1919
    case POWERPC_MMU_64B:
        /* tlbie invalidate TLBs for all segments */
        /* XXX: given the fact that there are too many segments to invalidate,
J
j_mayer 已提交
1920
         *      and we still don't have a tlb_flush_mask(env, n, mask) in Qemu,
1921 1922 1923 1924
         *      we just invalidate all TLBs
         */
        tlb_flush(env, 1);
        break;
J
j_mayer 已提交
1925 1926 1927
#endif /* defined(TARGET_PPC64) */
    default:
        /* XXX: TODO */
1928
        cpu_abort(env, "Unknown MMU model\n");
J
j_mayer 已提交
1929
        break;
1930 1931 1932 1933 1934 1935
    }
#else
    ppc_tlb_invalidate_all(env);
#endif
}

1936 1937
/*****************************************************************************/
/* Special registers manipulation */
1938 1939 1940 1941 1942 1943 1944 1945 1946 1947
#if defined(TARGET_PPC64)
void ppc_store_asr (CPUPPCState *env, target_ulong value)
{
    if (env->asr != value) {
        env->asr = value;
        tlb_flush(env, 1);
    }
}
#endif

A
aurel32 已提交
1948
void ppc_store_sdr1 (CPUPPCState *env, target_ulong value)
1949
{
1950
    LOG_MMU("%s: " TARGET_FMT_lx "\n", __func__, value);
1951
    if (env->sdr1 != value) {
1952 1953 1954
        /* XXX: for PowerPC 64, should check that the HTABSIZE value
         *      is <= 28
         */
1955
        env->sdr1 = value;
1956
        tlb_flush(env, 1);
1957 1958 1959
    }
}

B
blueswir1 已提交
1960 1961 1962 1963 1964 1965 1966 1967
#if defined(TARGET_PPC64)
target_ulong ppc_load_sr (CPUPPCState *env, int slb_nr)
{
    // XXX
    return 0;
}
#endif

A
aurel32 已提交
1968
void ppc_store_sr (CPUPPCState *env, int srnum, target_ulong value)
1969
{
1970 1971
    LOG_MMU("%s: reg=%d " TARGET_FMT_lx " " TARGET_FMT_lx "\n", __func__,
            srnum, value, env->sr[srnum]);
B
blueswir1 已提交
1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990
#if defined(TARGET_PPC64)
    if (env->mmu_model & POWERPC_MMU_64) {
        uint64_t rb = 0, rs = 0;

        /* ESID = srnum */
        rb |= ((uint32_t)srnum & 0xf) << 28;
        /* Set the valid bit */
        rb |= 1 << 27;
        /* Index = ESID */
        rb |= (uint32_t)srnum;

        /* VSID = VSID */
        rs |= (value & 0xfffffff) << 12;
        /* flags = flags */
        rs |= ((value >> 27) & 0xf) << 9;

        ppc_store_slb(env, rb, rs);
    } else
#endif
1991 1992
    if (env->sr[srnum] != value) {
        env->sr[srnum] = value;
1993 1994
/* Invalidating 256MB of virtual memory in 4kB pages is way longer than
   flusing the whole TLB. */
1995 1996 1997 1998 1999 2000 2001 2002 2003 2004
#if !defined(FLUSH_ALL_TLBS) && 0
        {
            target_ulong page, end;
            /* Invalidate 256 MB of virtual memory */
            page = (16 << 20) * srnum;
            end = page + (16 << 20);
            for (; page != end; page += TARGET_PAGE_SIZE)
                tlb_flush_page(env, page);
        }
#else
2005
        tlb_flush(env, 1);
2006 2007 2008
#endif
    }
}
2009
#endif /* !defined (CONFIG_USER_ONLY) */
2010

2011
/* GDBstub can read and write MSR... */
2012
void ppc_store_msr (CPUPPCState *env, target_ulong value)
2013
{
2014
    hreg_store_msr(env, value, 0);
2015 2016 2017 2018
}

/*****************************************************************************/
/* Exception processing */
2019
#if defined (CONFIG_USER_ONLY)
2020
void do_interrupt (CPUState *env)
B
bellard 已提交
2021
{
2022 2023
    env->exception_index = POWERPC_EXCP_NONE;
    env->error_code = 0;
2024
}
2025

2026
void ppc_hw_interrupt (CPUState *env)
2027
{
2028 2029
    env->exception_index = POWERPC_EXCP_NONE;
    env->error_code = 0;
2030
}
2031
#else /* defined (CONFIG_USER_ONLY) */
B
Blue Swirl 已提交
2032
static inline void dump_syscall(CPUState *env)
2033
{
B
Blue Swirl 已提交
2034 2035 2036
    qemu_log_mask(CPU_LOG_INT, "syscall r0=%016" PRIx64 " r3=%016" PRIx64
                  " r4=%016" PRIx64 " r5=%016" PRIx64 " r6=%016" PRIx64
                  " nip=" TARGET_FMT_lx "\n",
2037 2038 2039
                  ppc_dump_gpr(env, 0), ppc_dump_gpr(env, 3),
                  ppc_dump_gpr(env, 4), ppc_dump_gpr(env, 5),
                  ppc_dump_gpr(env, 6), env->nip);
2040 2041
}

2042 2043 2044
/* Note that this function should be greatly optimized
 * when called with a constant excp, from ppc_hw_interrupt
 */
B
Blue Swirl 已提交
2045
static inline void powerpc_excp(CPUState *env, int excp_model, int excp)
2046
{
2047
    target_ulong msr, new_msr, vector;
2048
    int srr0, srr1, asrr0, asrr1;
2049
    int lpes0, lpes1, lev;
B
bellard 已提交
2050

2051 2052 2053 2054 2055 2056 2057 2058 2059 2060
    if (0) {
        /* XXX: find a suitable condition to enable the hypervisor mode */
        lpes0 = (env->spr[SPR_LPCR] >> 1) & 1;
        lpes1 = (env->spr[SPR_LPCR] >> 2) & 1;
    } else {
        /* Those values ensure we won't enter the hypervisor mode */
        lpes0 = 0;
        lpes1 = 1;
    }

2061 2062
    qemu_log_mask(CPU_LOG_INT, "Raise exception at " TARGET_FMT_lx
                  " => %08x (%02x)\n", env->nip, excp, env->error_code);
2063 2064
    msr = env->msr;
    new_msr = msr;
2065 2066 2067 2068 2069
    srr0 = SPR_SRR0;
    srr1 = SPR_SRR1;
    asrr0 = -1;
    asrr1 = -1;
    msr &= ~((target_ulong)0x783F0000);
2070
    switch (excp) {
2071 2072 2073 2074
    case POWERPC_EXCP_NONE:
        /* Should never happen */
        return;
    case POWERPC_EXCP_CRITICAL:    /* Critical input                         */
2075
        new_msr &= ~((target_ulong)1 << MSR_RI); /* XXX: check this */
2076
        switch (excp_model) {
2077
        case POWERPC_EXCP_40x:
2078 2079
            srr0 = SPR_40x_SRR2;
            srr1 = SPR_40x_SRR3;
2080
            break;
2081
        case POWERPC_EXCP_BOOKE:
2082 2083
            srr0 = SPR_BOOKE_CSRR0;
            srr1 = SPR_BOOKE_CSRR1;
2084
            break;
2085
        case POWERPC_EXCP_G2:
2086
            break;
2087 2088
        default:
            goto excp_invalid;
2089
        }
2090
        goto store_next;
2091 2092
    case POWERPC_EXCP_MCHECK:    /* Machine check exception                  */
        if (msr_me == 0) {
2093 2094 2095
            /* Machine check exception is not enabled.
             * Enter checkstop state.
             */
2096 2097
            if (qemu_log_enabled()) {
                qemu_log("Machine check while not allowed. "
2098 2099 2100 2101 2102 2103 2104
                        "Entering checkstop state\n");
            } else {
                fprintf(stderr, "Machine check while not allowed. "
                        "Entering checkstop state\n");
            }
            env->halted = 1;
            env->interrupt_request |= CPU_INTERRUPT_EXITTB;
2105
        }
2106 2107
        new_msr &= ~((target_ulong)1 << MSR_RI);
        new_msr &= ~((target_ulong)1 << MSR_ME);
2108 2109
        if (0) {
            /* XXX: find a suitable condition to enable the hypervisor mode */
2110
            new_msr |= (target_ulong)MSR_HVB;
2111
        }
2112 2113
        /* XXX: should also have something loaded in DAR / DSISR */
        switch (excp_model) {
2114
        case POWERPC_EXCP_40x:
2115 2116
            srr0 = SPR_40x_SRR2;
            srr1 = SPR_40x_SRR3;
2117
            break;
2118
        case POWERPC_EXCP_BOOKE:
2119 2120 2121 2122
            srr0 = SPR_BOOKE_MCSRR0;
            srr1 = SPR_BOOKE_MCSRR1;
            asrr0 = SPR_BOOKE_CSRR0;
            asrr1 = SPR_BOOKE_CSRR1;
2123 2124 2125
            break;
        default:
            break;
2126
        }
2127 2128
        goto store_next;
    case POWERPC_EXCP_DSI:       /* Data storage exception                   */
2129 2130
        LOG_EXCP("DSI exception: DSISR=" TARGET_FMT_lx" DAR=" TARGET_FMT_lx
                 "\n", env->spr[SPR_DSISR], env->spr[SPR_DAR]);
2131
        new_msr &= ~((target_ulong)1 << MSR_RI);
2132
        if (lpes1 == 0)
2133
            new_msr |= (target_ulong)MSR_HVB;
2134
        goto store_next;
2135
    case POWERPC_EXCP_ISI:       /* Instruction storage exception            */
2136 2137
        LOG_EXCP("ISI exception: msr=" TARGET_FMT_lx ", nip=" TARGET_FMT_lx
                 "\n", msr, env->nip);
2138
        new_msr &= ~((target_ulong)1 << MSR_RI);
2139
        if (lpes1 == 0)
2140
            new_msr |= (target_ulong)MSR_HVB;
2141
        msr |= env->error_code;
2142
        goto store_next;
2143
    case POWERPC_EXCP_EXTERNAL:  /* External input                           */
2144
        new_msr &= ~((target_ulong)1 << MSR_RI);
2145
        if (lpes0 == 1)
2146
            new_msr |= (target_ulong)MSR_HVB;
2147
        goto store_next;
2148
    case POWERPC_EXCP_ALIGN:     /* Alignment exception                      */
2149
        new_msr &= ~((target_ulong)1 << MSR_RI);
2150
        if (lpes1 == 0)
2151
            new_msr |= (target_ulong)MSR_HVB;
2152 2153 2154
        /* XXX: this is false */
        /* Get rS/rD and rA from faulting opcode */
        env->spr[SPR_DSISR] |= (ldl_code((env->nip - 4)) & 0x03FF0000) >> 16;
2155
        goto store_current;
2156
    case POWERPC_EXCP_PROGRAM:   /* Program exception                        */
2157
        switch (env->error_code & ~0xF) {
2158 2159
        case POWERPC_EXCP_FP:
            if ((msr_fe0 == 0 && msr_fe1 == 0) || msr_fp == 0) {
2160
                LOG_EXCP("Ignore floating point exception\n");
2161 2162
                env->exception_index = POWERPC_EXCP_NONE;
                env->error_code = 0;
2163
                return;
2164
            }
2165
            new_msr &= ~((target_ulong)1 << MSR_RI);
2166
            if (lpes1 == 0)
2167
                new_msr |= (target_ulong)MSR_HVB;
2168
            msr |= 0x00100000;
2169 2170 2171
            if (msr_fe0 == msr_fe1)
                goto store_next;
            msr |= 0x00010000;
2172
            break;
2173
        case POWERPC_EXCP_INVAL:
2174
            LOG_EXCP("Invalid instruction at " TARGET_FMT_lx "\n", env->nip);
2175
            new_msr &= ~((target_ulong)1 << MSR_RI);
2176
            if (lpes1 == 0)
2177
                new_msr |= (target_ulong)MSR_HVB;
2178
            msr |= 0x00080000;
2179
            break;
2180
        case POWERPC_EXCP_PRIV:
2181
            new_msr &= ~((target_ulong)1 << MSR_RI);
2182
            if (lpes1 == 0)
2183
                new_msr |= (target_ulong)MSR_HVB;
2184
            msr |= 0x00040000;
2185
            break;
2186
        case POWERPC_EXCP_TRAP:
2187
            new_msr &= ~((target_ulong)1 << MSR_RI);
2188
            if (lpes1 == 0)
2189
                new_msr |= (target_ulong)MSR_HVB;
2190 2191 2192 2193
            msr |= 0x00020000;
            break;
        default:
            /* Should never occur */
2194 2195
            cpu_abort(env, "Invalid program exception %d. Aborting\n",
                      env->error_code);
2196 2197
            break;
        }
2198
        goto store_current;
2199
    case POWERPC_EXCP_FPU:       /* Floating-point unavailable exception     */
2200
        new_msr &= ~((target_ulong)1 << MSR_RI);
2201
        if (lpes1 == 0)
2202
            new_msr |= (target_ulong)MSR_HVB;
2203 2204
        goto store_current;
    case POWERPC_EXCP_SYSCALL:   /* System call exception                    */
2205 2206
        /* NOTE: this is a temporary hack to support graphics OSI
           calls from the MOL driver */
2207
        /* XXX: To be removed */
2208 2209
        if (env->gpr[3] == 0x113724fa && env->gpr[4] == 0x77810f9b &&
            env->osi_call) {
2210 2211 2212
            if (env->osi_call(env) != 0) {
                env->exception_index = POWERPC_EXCP_NONE;
                env->error_code = 0;
2213
                return;
2214
            }
2215
        }
2216
        dump_syscall(env);
2217
        new_msr &= ~((target_ulong)1 << MSR_RI);
2218
        lev = env->error_code;
2219
        if (lev == 1 || (lpes0 == 0 && lpes1 == 0))
2220
            new_msr |= (target_ulong)MSR_HVB;
2221 2222
        goto store_next;
    case POWERPC_EXCP_APU:       /* Auxiliary processor unavailable          */
2223
        new_msr &= ~((target_ulong)1 << MSR_RI);
2224 2225
        goto store_current;
    case POWERPC_EXCP_DECR:      /* Decrementer exception                    */
2226
        new_msr &= ~((target_ulong)1 << MSR_RI);
2227
        if (lpes1 == 0)
2228
            new_msr |= (target_ulong)MSR_HVB;
2229 2230 2231
        goto store_next;
    case POWERPC_EXCP_FIT:       /* Fixed-interval timer interrupt           */
        /* FIT on 4xx */
2232
        LOG_EXCP("FIT exception\n");
2233
        new_msr &= ~((target_ulong)1 << MSR_RI); /* XXX: check this */
2234
        goto store_next;
2235
    case POWERPC_EXCP_WDT:       /* Watchdog timer interrupt                 */
2236
        LOG_EXCP("WDT exception\n");
2237 2238 2239 2240 2241 2242 2243 2244
        switch (excp_model) {
        case POWERPC_EXCP_BOOKE:
            srr0 = SPR_BOOKE_CSRR0;
            srr1 = SPR_BOOKE_CSRR1;
            break;
        default:
            break;
        }
2245
        new_msr &= ~((target_ulong)1 << MSR_RI); /* XXX: check this */
2246
        goto store_next;
2247
    case POWERPC_EXCP_DTLB:      /* Data TLB error                           */
2248
        new_msr &= ~((target_ulong)1 << MSR_RI); /* XXX: check this */
2249 2250
        goto store_next;
    case POWERPC_EXCP_ITLB:      /* Instruction TLB error                    */
2251
        new_msr &= ~((target_ulong)1 << MSR_RI); /* XXX: check this */
2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263
        goto store_next;
    case POWERPC_EXCP_DEBUG:     /* Debug interrupt                          */
        switch (excp_model) {
        case POWERPC_EXCP_BOOKE:
            srr0 = SPR_BOOKE_DSRR0;
            srr1 = SPR_BOOKE_DSRR1;
            asrr0 = SPR_BOOKE_CSRR0;
            asrr1 = SPR_BOOKE_CSRR1;
            break;
        default:
            break;
        }
2264
        /* XXX: TODO */
2265
        cpu_abort(env, "Debug exception is not implemented yet !\n");
2266
        goto store_next;
2267
    case POWERPC_EXCP_SPEU:      /* SPE/embedded floating-point unavailable  */
2268
        new_msr &= ~((target_ulong)1 << MSR_RI); /* XXX: check this */
2269 2270
        goto store_current;
    case POWERPC_EXCP_EFPDI:     /* Embedded floating-point data interrupt   */
2271
        /* XXX: TODO */
2272
        cpu_abort(env, "Embedded floating point data exception "
2273 2274
                  "is not implemented yet !\n");
        goto store_next;
2275
    case POWERPC_EXCP_EFPRI:     /* Embedded floating-point round interrupt  */
2276
        /* XXX: TODO */
2277 2278
        cpu_abort(env, "Embedded floating point round exception "
                  "is not implemented yet !\n");
2279
        goto store_next;
2280
    case POWERPC_EXCP_EPERFM:    /* Embedded performance monitor interrupt   */
2281
        new_msr &= ~((target_ulong)1 << MSR_RI);
2282 2283
        /* XXX: TODO */
        cpu_abort(env,
2284
                  "Performance counter exception is not implemented yet !\n");
2285
        goto store_next;
2286
    case POWERPC_EXCP_DOORI:     /* Embedded doorbell interrupt              */
2287
        /* XXX: TODO */
2288 2289
        cpu_abort(env,
                  "Embedded doorbell interrupt is not implemented yet !\n");
2290
        goto store_next;
2291 2292 2293 2294 2295
    case POWERPC_EXCP_DOORCI:    /* Embedded doorbell critical interrupt     */
        switch (excp_model) {
        case POWERPC_EXCP_BOOKE:
            srr0 = SPR_BOOKE_CSRR0;
            srr1 = SPR_BOOKE_CSRR1;
2296
            break;
2297 2298 2299
        default:
            break;
        }
2300 2301 2302 2303 2304
        /* XXX: TODO */
        cpu_abort(env, "Embedded doorbell critical interrupt "
                  "is not implemented yet !\n");
        goto store_next;
    case POWERPC_EXCP_RESET:     /* System reset exception                   */
2305
        new_msr &= ~((target_ulong)1 << MSR_RI);
2306 2307 2308 2309
        if (0) {
            /* XXX: find a suitable condition to enable the hypervisor mode */
            new_msr |= (target_ulong)MSR_HVB;
        }
2310 2311
        goto store_next;
    case POWERPC_EXCP_DSEG:      /* Data segment exception                   */
2312
        new_msr &= ~((target_ulong)1 << MSR_RI);
2313
        if (lpes1 == 0)
2314
            new_msr |= (target_ulong)MSR_HVB;
2315 2316
        goto store_next;
    case POWERPC_EXCP_ISEG:      /* Instruction segment exception            */
2317
        new_msr &= ~((target_ulong)1 << MSR_RI);
2318
        if (lpes1 == 0)
2319
            new_msr |= (target_ulong)MSR_HVB;
2320 2321 2322
        goto store_next;
    case POWERPC_EXCP_HDECR:     /* Hypervisor decrementer exception         */
        srr0 = SPR_HSRR0;
2323
        srr1 = SPR_HSRR1;
2324
        new_msr |= (target_ulong)MSR_HVB;
2325
        goto store_next;
2326
    case POWERPC_EXCP_TRACE:     /* Trace exception                          */
2327
        new_msr &= ~((target_ulong)1 << MSR_RI);
2328
        if (lpes1 == 0)
2329
            new_msr |= (target_ulong)MSR_HVB;
2330 2331 2332
        goto store_next;
    case POWERPC_EXCP_HDSI:      /* Hypervisor data storage exception        */
        srr0 = SPR_HSRR0;
2333
        srr1 = SPR_HSRR1;
2334
        new_msr |= (target_ulong)MSR_HVB;
2335 2336 2337
        goto store_next;
    case POWERPC_EXCP_HISI:      /* Hypervisor instruction storage exception */
        srr0 = SPR_HSRR0;
2338
        srr1 = SPR_HSRR1;
2339
        new_msr |= (target_ulong)MSR_HVB;
2340 2341 2342
        goto store_next;
    case POWERPC_EXCP_HDSEG:     /* Hypervisor data segment exception        */
        srr0 = SPR_HSRR0;
2343
        srr1 = SPR_HSRR1;
2344
        new_msr |= (target_ulong)MSR_HVB;
2345 2346 2347
        goto store_next;
    case POWERPC_EXCP_HISEG:     /* Hypervisor instruction segment exception */
        srr0 = SPR_HSRR0;
2348
        srr1 = SPR_HSRR1;
2349
        new_msr |= (target_ulong)MSR_HVB;
2350 2351
        goto store_next;
    case POWERPC_EXCP_VPU:       /* Vector unavailable exception             */
2352
        new_msr &= ~((target_ulong)1 << MSR_RI);
2353
        if (lpes1 == 0)
2354
            new_msr |= (target_ulong)MSR_HVB;
2355 2356
        goto store_current;
    case POWERPC_EXCP_PIT:       /* Programmable interval timer interrupt    */
2357
        LOG_EXCP("PIT exception\n");
2358
        new_msr &= ~((target_ulong)1 << MSR_RI); /* XXX: check this */
2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373
        goto store_next;
    case POWERPC_EXCP_IO:        /* IO error exception                       */
        /* XXX: TODO */
        cpu_abort(env, "601 IO error exception is not implemented yet !\n");
        goto store_next;
    case POWERPC_EXCP_RUNM:      /* Run mode exception                       */
        /* XXX: TODO */
        cpu_abort(env, "601 run mode exception is not implemented yet !\n");
        goto store_next;
    case POWERPC_EXCP_EMUL:      /* Emulation trap exception                 */
        /* XXX: TODO */
        cpu_abort(env, "602 emulation trap exception "
                  "is not implemented yet !\n");
        goto store_next;
    case POWERPC_EXCP_IFTLB:     /* Instruction fetch TLB error              */
2374
        new_msr &= ~((target_ulong)1 << MSR_RI); /* XXX: check this */
2375 2376
        if (lpes1 == 0) /* XXX: check this */
            new_msr |= (target_ulong)MSR_HVB;
2377
        switch (excp_model) {
2378 2379 2380 2381
        case POWERPC_EXCP_602:
        case POWERPC_EXCP_603:
        case POWERPC_EXCP_603E:
        case POWERPC_EXCP_G2:
2382
            goto tlb_miss_tgpr;
2383
        case POWERPC_EXCP_7x5:
2384
            goto tlb_miss;
2385 2386
        case POWERPC_EXCP_74xx:
            goto tlb_miss_74xx;
2387
        default:
2388
            cpu_abort(env, "Invalid instruction TLB miss exception\n");
2389 2390
            break;
        }
2391 2392
        break;
    case POWERPC_EXCP_DLTLB:     /* Data load TLB miss                       */
2393
        new_msr &= ~((target_ulong)1 << MSR_RI); /* XXX: check this */
2394 2395
        if (lpes1 == 0) /* XXX: check this */
            new_msr |= (target_ulong)MSR_HVB;
2396
        switch (excp_model) {
2397 2398 2399 2400
        case POWERPC_EXCP_602:
        case POWERPC_EXCP_603:
        case POWERPC_EXCP_603E:
        case POWERPC_EXCP_G2:
2401
            goto tlb_miss_tgpr;
2402
        case POWERPC_EXCP_7x5:
2403
            goto tlb_miss;
2404 2405
        case POWERPC_EXCP_74xx:
            goto tlb_miss_74xx;
2406
        default:
2407
            cpu_abort(env, "Invalid data load TLB miss exception\n");
2408 2409
            break;
        }
2410 2411
        break;
    case POWERPC_EXCP_DSTLB:     /* Data store TLB miss                      */
2412
        new_msr &= ~((target_ulong)1 << MSR_RI); /* XXX: check this */
2413 2414
        if (lpes1 == 0) /* XXX: check this */
            new_msr |= (target_ulong)MSR_HVB;
2415
        switch (excp_model) {
2416 2417 2418 2419
        case POWERPC_EXCP_602:
        case POWERPC_EXCP_603:
        case POWERPC_EXCP_603E:
        case POWERPC_EXCP_G2:
2420
        tlb_miss_tgpr:
2421
            /* Swap temporary saved registers with GPRs */
2422 2423 2424 2425
            if (!(new_msr & ((target_ulong)1 << MSR_TGPR))) {
                new_msr |= (target_ulong)1 << MSR_TGPR;
                hreg_swap_gpr_tgpr(env);
            }
2426 2427 2428
            goto tlb_miss;
        case POWERPC_EXCP_7x5:
        tlb_miss:
2429
#if defined (DEBUG_SOFTWARE_TLB)
2430
            if (qemu_log_enabled()) {
2431
                const char *es;
2432 2433
                target_ulong *miss, *cmp;
                int en;
J
j_mayer 已提交
2434
                if (excp == POWERPC_EXCP_IFTLB) {
2435 2436 2437 2438 2439
                    es = "I";
                    en = 'I';
                    miss = &env->spr[SPR_IMISS];
                    cmp = &env->spr[SPR_ICMP];
                } else {
J
j_mayer 已提交
2440
                    if (excp == POWERPC_EXCP_DLTLB)
2441 2442 2443 2444 2445 2446 2447
                        es = "DL";
                    else
                        es = "DS";
                    en = 'D';
                    miss = &env->spr[SPR_DMISS];
                    cmp = &env->spr[SPR_DCMP];
                }
2448 2449 2450 2451 2452
                qemu_log("6xx %sTLB miss: %cM " TARGET_FMT_lx " %cC "
                         TARGET_FMT_lx " H1 " TARGET_FMT_lx " H2 "
                         TARGET_FMT_lx " %08x\n", es, en, *miss, en, *cmp,
                         env->spr[SPR_HASH1], env->spr[SPR_HASH2],
                         env->error_code);
2453
            }
2454
#endif
2455 2456 2457
            msr |= env->crf[0] << 28;
            msr |= env->error_code; /* key, D/I, S/L bits */
            /* Set way using a LRU mechanism */
2458
            msr |= ((env->last_way + 1) & (env->nb_ways - 1)) << 17;
2459
            break;
2460 2461 2462
        case POWERPC_EXCP_74xx:
        tlb_miss_74xx:
#if defined (DEBUG_SOFTWARE_TLB)
2463
            if (qemu_log_enabled()) {
2464
                const char *es;
2465 2466 2467 2468 2469
                target_ulong *miss, *cmp;
                int en;
                if (excp == POWERPC_EXCP_IFTLB) {
                    es = "I";
                    en = 'I';
2470 2471
                    miss = &env->spr[SPR_TLBMISS];
                    cmp = &env->spr[SPR_PTEHI];
2472 2473 2474 2475 2476 2477 2478 2479 2480
                } else {
                    if (excp == POWERPC_EXCP_DLTLB)
                        es = "DL";
                    else
                        es = "DS";
                    en = 'D';
                    miss = &env->spr[SPR_TLBMISS];
                    cmp = &env->spr[SPR_PTEHI];
                }
2481 2482 2483
                qemu_log("74xx %sTLB miss: %cM " TARGET_FMT_lx " %cC "
                         TARGET_FMT_lx " %08x\n", es, en, *miss, en, *cmp,
                         env->error_code);
2484 2485 2486 2487
            }
#endif
            msr |= env->error_code; /* key bit */
            break;
2488
        default:
2489
            cpu_abort(env, "Invalid data store TLB miss exception\n");
2490 2491
            break;
        }
2492 2493 2494 2495 2496 2497
        goto store_next;
    case POWERPC_EXCP_FPA:       /* Floating-point assist exception          */
        /* XXX: TODO */
        cpu_abort(env, "Floating point assist exception "
                  "is not implemented yet !\n");
        goto store_next;
2498 2499 2500 2501
    case POWERPC_EXCP_DABR:      /* Data address breakpoint                  */
        /* XXX: TODO */
        cpu_abort(env, "DABR exception is not implemented yet !\n");
        goto store_next;
2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515
    case POWERPC_EXCP_IABR:      /* Instruction address breakpoint           */
        /* XXX: TODO */
        cpu_abort(env, "IABR exception is not implemented yet !\n");
        goto store_next;
    case POWERPC_EXCP_SMI:       /* System management interrupt              */
        /* XXX: TODO */
        cpu_abort(env, "SMI exception is not implemented yet !\n");
        goto store_next;
    case POWERPC_EXCP_THERM:     /* Thermal interrupt                        */
        /* XXX: TODO */
        cpu_abort(env, "Thermal management exception "
                  "is not implemented yet !\n");
        goto store_next;
    case POWERPC_EXCP_PERFM:     /* Embedded performance monitor interrupt   */
2516
        new_msr &= ~((target_ulong)1 << MSR_RI);
2517
        if (lpes1 == 0)
2518
            new_msr |= (target_ulong)MSR_HVB;
2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536
        /* XXX: TODO */
        cpu_abort(env,
                  "Performance counter exception is not implemented yet !\n");
        goto store_next;
    case POWERPC_EXCP_VPUA:      /* Vector assist exception                  */
        /* XXX: TODO */
        cpu_abort(env, "VPU assist exception is not implemented yet !\n");
        goto store_next;
    case POWERPC_EXCP_SOFTP:     /* Soft patch exception                     */
        /* XXX: TODO */
        cpu_abort(env,
                  "970 soft-patch exception is not implemented yet !\n");
        goto store_next;
    case POWERPC_EXCP_MAINT:     /* Maintenance exception                    */
        /* XXX: TODO */
        cpu_abort(env,
                  "970 maintenance exception is not implemented yet !\n");
        goto store_next;
2537 2538 2539 2540 2541 2542 2543 2544 2545 2546
    case POWERPC_EXCP_MEXTBR:    /* Maskable external breakpoint             */
        /* XXX: TODO */
        cpu_abort(env, "Maskable external exception "
                  "is not implemented yet !\n");
        goto store_next;
    case POWERPC_EXCP_NMEXTBR:   /* Non maskable external breakpoint         */
        /* XXX: TODO */
        cpu_abort(env, "Non maskable external exception "
                  "is not implemented yet !\n");
        goto store_next;
2547
    default:
2548 2549 2550
    excp_invalid:
        cpu_abort(env, "Invalid PowerPC exception %d. Aborting\n", excp);
        break;
2551
    store_current:
2552
        /* save current instruction location */
2553
        env->spr[srr0] = env->nip - 4;
2554 2555
        break;
    store_next:
2556
        /* save next instruction location */
2557
        env->spr[srr0] = env->nip;
2558 2559
        break;
    }
2560 2561 2562 2563 2564 2565 2566
    /* Save MSR */
    env->spr[srr1] = msr;
    /* If any alternate SRR register are defined, duplicate saved values */
    if (asrr0 != -1)
        env->spr[asrr0] = env->spr[srr0];
    if (asrr1 != -1)
        env->spr[asrr1] = env->spr[srr1];
2567
    /* If we disactivated any translation, flush TLBs */
2568
    if (new_msr & ((1 << MSR_IR) | (1 << MSR_DR)))
2569
        tlb_flush(env, 1);
2570
    /* reload MSR with correct bits */
2571 2572 2573 2574 2575 2576 2577 2578 2579
    new_msr &= ~((target_ulong)1 << MSR_EE);
    new_msr &= ~((target_ulong)1 << MSR_PR);
    new_msr &= ~((target_ulong)1 << MSR_FP);
    new_msr &= ~((target_ulong)1 << MSR_FE0);
    new_msr &= ~((target_ulong)1 << MSR_SE);
    new_msr &= ~((target_ulong)1 << MSR_BE);
    new_msr &= ~((target_ulong)1 << MSR_FE1);
    new_msr &= ~((target_ulong)1 << MSR_IR);
    new_msr &= ~((target_ulong)1 << MSR_DR);
2580
#if 0 /* Fix this: not on all targets */
2581
    new_msr &= ~((target_ulong)1 << MSR_PMM);
2582
#endif
2583 2584 2585 2586 2587
    new_msr &= ~((target_ulong)1 << MSR_LE);
    if (msr_ile)
        new_msr |= (target_ulong)1 << MSR_LE;
    else
        new_msr &= ~((target_ulong)1 << MSR_LE);
2588 2589
    /* Jump to handler */
    vector = env->excp_vectors[excp];
2590
    if (vector == (target_ulong)-1ULL) {
2591 2592 2593 2594
        cpu_abort(env, "Raised an exception without defined vector %d\n",
                  excp);
    }
    vector |= env->excp_prefix;
2595
#if defined(TARGET_PPC64)
2596
    if (excp_model == POWERPC_EXCP_BOOKE) {
2597 2598
        if (!msr_icm) {
            new_msr &= ~((target_ulong)1 << MSR_CM);
2599
            vector = (uint32_t)vector;
2600 2601 2602
        } else {
            new_msr |= (target_ulong)1 << MSR_CM;
        }
2603
    } else {
B
blueswir1 已提交
2604
        if (!msr_isf && !(env->mmu_model & POWERPC_MMU_64)) {
2605
            new_msr &= ~((target_ulong)1 << MSR_SF);
2606
            vector = (uint32_t)vector;
2607 2608 2609
        } else {
            new_msr |= (target_ulong)1 << MSR_SF;
        }
2610
    }
2611
#endif
2612 2613 2614
    /* XXX: we don't use hreg_store_msr here as already have treated
     *      any special case that could occur. Just store MSR and update hflags
     */
2615
    env->msr = new_msr & env->msr_mask;
2616
    hreg_compute_hflags(env);
2617 2618 2619 2620
    env->nip = vector;
    /* Reset exception state */
    env->exception_index = POWERPC_EXCP_NONE;
    env->error_code = 0;
B
bellard 已提交
2621
}
2622

2623
void do_interrupt (CPUState *env)
2624
{
2625 2626
    powerpc_excp(env, env->excp_model, env->exception_index);
}
2627

2628 2629
void ppc_hw_interrupt (CPUPPCState *env)
{
2630 2631
    int hdice;

2632
#if 0
2633
    qemu_log_mask(CPU_LOG_INT, "%s: %p pending %08x req %08x me %d ee %d\n",
2634
                __func__, env, env->pending_interrupts,
2635
                env->interrupt_request, (int)msr_me, (int)msr_ee);
2636
#endif
2637
    /* External reset */
2638 2639
    if (env->pending_interrupts & (1 << PPC_INTERRUPT_RESET)) {
        env->pending_interrupts &= ~(1 << PPC_INTERRUPT_RESET);
2640 2641 2642 2643 2644 2645 2646 2647
        powerpc_excp(env, env->excp_model, POWERPC_EXCP_RESET);
        return;
    }
    /* Machine check exception */
    if (env->pending_interrupts & (1 << PPC_INTERRUPT_MCK)) {
        env->pending_interrupts &= ~(1 << PPC_INTERRUPT_MCK);
        powerpc_excp(env, env->excp_model, POWERPC_EXCP_MCHECK);
        return;
2648
    }
2649 2650 2651 2652 2653 2654 2655 2656
#if 0 /* TODO */
    /* External debug exception */
    if (env->pending_interrupts & (1 << PPC_INTERRUPT_DEBUG)) {
        env->pending_interrupts &= ~(1 << PPC_INTERRUPT_DEBUG);
        powerpc_excp(env, env->excp_model, POWERPC_EXCP_DEBUG);
        return;
    }
#endif
2657 2658 2659 2660 2661 2662
    if (0) {
        /* XXX: find a suitable condition to enable the hypervisor mode */
        hdice = env->spr[SPR_LPCR] & 1;
    } else {
        hdice = 0;
    }
2663
    if ((msr_ee != 0 || msr_hv == 0 || msr_pr != 0) && hdice != 0) {
2664 2665 2666
        /* Hypervisor decrementer exception */
        if (env->pending_interrupts & (1 << PPC_INTERRUPT_HDECR)) {
            env->pending_interrupts &= ~(1 << PPC_INTERRUPT_HDECR);
2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678
            powerpc_excp(env, env->excp_model, POWERPC_EXCP_HDECR);
            return;
        }
    }
    if (msr_ce != 0) {
        /* External critical interrupt */
        if (env->pending_interrupts & (1 << PPC_INTERRUPT_CEXT)) {
            /* Taking a critical external interrupt does not clear the external
             * critical interrupt status
             */
#if 0
            env->pending_interrupts &= ~(1 << PPC_INTERRUPT_CEXT);
2679
#endif
2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707
            powerpc_excp(env, env->excp_model, POWERPC_EXCP_CRITICAL);
            return;
        }
    }
    if (msr_ee != 0) {
        /* Watchdog timer on embedded PowerPC */
        if (env->pending_interrupts & (1 << PPC_INTERRUPT_WDT)) {
            env->pending_interrupts &= ~(1 << PPC_INTERRUPT_WDT);
            powerpc_excp(env, env->excp_model, POWERPC_EXCP_WDT);
            return;
        }
        if (env->pending_interrupts & (1 << PPC_INTERRUPT_CDOORBELL)) {
            env->pending_interrupts &= ~(1 << PPC_INTERRUPT_CDOORBELL);
            powerpc_excp(env, env->excp_model, POWERPC_EXCP_DOORCI);
            return;
        }
        /* Fixed interval timer on embedded PowerPC */
        if (env->pending_interrupts & (1 << PPC_INTERRUPT_FIT)) {
            env->pending_interrupts &= ~(1 << PPC_INTERRUPT_FIT);
            powerpc_excp(env, env->excp_model, POWERPC_EXCP_FIT);
            return;
        }
        /* Programmable interval timer on embedded PowerPC */
        if (env->pending_interrupts & (1 << PPC_INTERRUPT_PIT)) {
            env->pending_interrupts &= ~(1 << PPC_INTERRUPT_PIT);
            powerpc_excp(env, env->excp_model, POWERPC_EXCP_PIT);
            return;
        }
2708 2709 2710
        /* Decrementer exception */
        if (env->pending_interrupts & (1 << PPC_INTERRUPT_DECR)) {
            env->pending_interrupts &= ~(1 << PPC_INTERRUPT_DECR);
2711 2712 2713
            powerpc_excp(env, env->excp_model, POWERPC_EXCP_DECR);
            return;
        }
2714
        /* External interrupt */
2715
        if (env->pending_interrupts & (1 << PPC_INTERRUPT_EXT)) {
2716 2717 2718 2719
            /* Taking an external interrupt does not clear the external
             * interrupt status
             */
#if 0
2720
            env->pending_interrupts &= ~(1 << PPC_INTERRUPT_EXT);
2721
#endif
2722 2723 2724 2725 2726 2727 2728
            powerpc_excp(env, env->excp_model, POWERPC_EXCP_EXTERNAL);
            return;
        }
        if (env->pending_interrupts & (1 << PPC_INTERRUPT_DOORBELL)) {
            env->pending_interrupts &= ~(1 << PPC_INTERRUPT_DOORBELL);
            powerpc_excp(env, env->excp_model, POWERPC_EXCP_DOORI);
            return;
2729
        }
2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740
        if (env->pending_interrupts & (1 << PPC_INTERRUPT_PERFM)) {
            env->pending_interrupts &= ~(1 << PPC_INTERRUPT_PERFM);
            powerpc_excp(env, env->excp_model, POWERPC_EXCP_PERFM);
            return;
        }
        /* Thermal interrupt */
        if (env->pending_interrupts & (1 << PPC_INTERRUPT_THERM)) {
            env->pending_interrupts &= ~(1 << PPC_INTERRUPT_THERM);
            powerpc_excp(env, env->excp_model, POWERPC_EXCP_THERM);
            return;
        }
2741 2742
    }
}
2743
#endif /* !CONFIG_USER_ONLY */
2744

J
j_mayer 已提交
2745 2746
void cpu_dump_rfi (target_ulong RA, target_ulong msr)
{
2747 2748
    qemu_log("Return from exception at " TARGET_FMT_lx " with flags "
             TARGET_FMT_lx "\n", RA, msr);
2749 2750
}

2751
void cpu_reset(CPUPPCState *env)
J
j_mayer 已提交
2752
{
2753
    target_ulong msr;
J
j_mayer 已提交
2754

A
aliguori 已提交
2755 2756 2757 2758 2759
    if (qemu_loglevel_mask(CPU_LOG_RESET)) {
        qemu_log("CPU Reset (CPU %d)\n", env->cpu_index);
        log_cpu_state(env, 0);
    }

2760
    msr = (target_ulong)0;
2761 2762 2763 2764
    if (0) {
        /* XXX: find a suitable condition to enable the hypervisor mode */
        msr |= (target_ulong)MSR_HVB;
    }
2765 2766 2767
    msr |= (target_ulong)0 << MSR_AP; /* TO BE CHECKED */
    msr |= (target_ulong)0 << MSR_SA; /* TO BE CHECKED */
    msr |= (target_ulong)1 << MSR_EP;
J
j_mayer 已提交
2768 2769
#if defined (DO_SINGLE_STEP) && 0
    /* Single step trace mode */
2770 2771
    msr |= (target_ulong)1 << MSR_SE;
    msr |= (target_ulong)1 << MSR_BE;
J
j_mayer 已提交
2772 2773
#endif
#if defined(CONFIG_USER_ONLY)
2774
    msr |= (target_ulong)1 << MSR_FP; /* Allow floating point usage */
2775 2776
    msr |= (target_ulong)1 << MSR_VR; /* Allow altivec usage */
    msr |= (target_ulong)1 << MSR_SPE; /* Allow SPE usage */
2777
    msr |= (target_ulong)1 << MSR_PR;
2778
#else
B
Blue Swirl 已提交
2779
    env->excp_prefix = env->hreset_excp_prefix;
2780
    env->nip = env->hreset_vector | env->excp_prefix;
2781
    if (env->mmu_model != POWERPC_MMU_REAL)
2782
        ppc_tlb_invalidate_all(env);
J
j_mayer 已提交
2783
#endif
B
blueswir1 已提交
2784
    env->msr = msr & env->msr_mask;
B
blueswir1 已提交
2785 2786 2787 2788
#if defined(TARGET_PPC64)
    if (env->mmu_model & POWERPC_MMU_64)
        env->msr |= (1ULL << MSR_SF);
#endif
2789
    hreg_compute_hflags(env);
2790
    env->reserve_addr = (target_ulong)-1ULL;
2791 2792
    /* Be sure no exception or interrupt is pending */
    env->pending_interrupts = 0;
2793 2794
    env->exception_index = POWERPC_EXCP_NONE;
    env->error_code = 0;
2795 2796
    /* Flush all TLBs */
    tlb_flush(env, 1);
J
j_mayer 已提交
2797 2798
}

B
bellard 已提交
2799
CPUPPCState *cpu_ppc_init (const char *cpu_model)
J
j_mayer 已提交
2800 2801
{
    CPUPPCState *env;
A
Anthony Liguori 已提交
2802
    const ppc_def_t *def;
B
bellard 已提交
2803 2804 2805 2806

    def = cpu_ppc_find_by_name(cpu_model);
    if (!def)
        return NULL;
J
j_mayer 已提交
2807 2808 2809

    env = qemu_mallocz(sizeof(CPUPPCState));
    cpu_exec_init(env);
P
pbrook 已提交
2810
    ppc_translate_init();
2811
    env->cpu_model_str = cpu_model;
B
bellard 已提交
2812
    cpu_ppc_register_internal(env, def);
2813
#if defined(CONFIG_USER_ONLY)
2814
    cpu_reset(env);
2815
#endif
A
aurel32 已提交
2816

2817
    qemu_init_vcpu(env);
A
aurel32 已提交
2818

J
j_mayer 已提交
2819 2820 2821 2822 2823 2824
    return env;
}

void cpu_ppc_close (CPUPPCState *env)
{
    /* Should also remove all opcode tables... */
B
bellard 已提交
2825
    qemu_free(env);
J
j_mayer 已提交
2826
}