helper.c 95.7 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 17 18 19
 *
 * 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
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
20 21 22 23 24 25 26 27 28 29
#include <stdarg.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <inttypes.h>
#include <signal.h>
#include <assert.h>

#include "cpu.h"
#include "exec-all.h"
30
#include "helper_regs.h"
31
#include "qemu-common.h"
P
pbrook 已提交
32
#include "helper.h"
33 34 35

//#define DEBUG_MMU
//#define DEBUG_BATS
36
//#define DEBUG_SLB
37
//#define DEBUG_SOFTWARE_TLB
38
//#define DUMP_PAGE_TABLES
39
//#define DEBUG_EXCEPTIONS
40
//#define FLUSH_ALL_TLBS
41

42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
/*****************************************************************************/
/* Exceptions processing */

void raise_exception_err (CPUState *env, int exception, int error_code)
{
#if 0
    printf("Raise exception %3x code : %d\n", exception, error_code);
#endif
    env->exception_index = exception;
    env->error_code = error_code;
    cpu_loop_exit();
}

void raise_exception (CPUState *env, int exception)
{
    helper_raise_exception_err(exception, 0);
}

60
/*****************************************************************************/
61
/* PowerPC MMU emulation */
62

63
#if defined(CONFIG_USER_ONLY)
64
int cpu_ppc_handle_mmu_fault (CPUState *env, target_ulong address, int rw,
65
                              int mmu_idx, int is_softmmu)
66 67
{
    int exception, error_code;
68

69
    if (rw == 2) {
70
        exception = POWERPC_EXCP_ISI;
71
        error_code = 0x40000000;
72
    } else {
73
        exception = POWERPC_EXCP_DSI;
74
        error_code = 0x40000000;
75 76 77 78 79 80 81
        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;
82

83 84
    return 1;
}
85

86
target_phys_addr_t cpu_get_phys_page_debug (CPUState *env, target_ulong addr)
87 88 89
{
    return addr;
}
90

91
#else
92
/* Common routines used by software and hardware TLBs emulation */
93
static always_inline int pte_is_valid (target_ulong pte0)
94 95 96 97
{
    return pte0 & 0x80000000 ? 1 : 0;
}

98
static always_inline void pte_invalidate (target_ulong *pte0)
99 100 101 102
{
    *pte0 &= ~0x80000000;
}

103
#if defined(TARGET_PPC64)
104
static always_inline int pte64_is_valid (target_ulong pte0)
105 106 107 108
{
    return pte0 & 0x0000000000000001ULL ? 1 : 0;
}

109
static always_inline void pte64_invalidate (target_ulong *pte0)
110 111 112 113 114
{
    *pte0 &= ~0x0000000000000001ULL;
}
#endif

115 116
#define PTE_PTEM_MASK 0x7FFFFFBF
#define PTE_CHECK_MASK (TARGET_PAGE_MASK | 0x7B)
117 118 119 120
#if defined(TARGET_PPC64)
#define PTE64_PTEM_MASK 0xFFFFFFFFFFFFFF80ULL
#define PTE64_CHECK_MASK (TARGET_PAGE_MASK | 0x7F)
#endif
121

122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 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 176 177 178 179 180 181 182 183 184 185
static always_inline int pp_check (int key, int pp, int nx)
{
    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;
}

static always_inline int check_prot (int prot, int rw, int access_type)
{
    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;
}

186 187
static always_inline int _pte_check (mmu_ctx_t *ctx, int is_64b,
                                     target_ulong pte0, target_ulong pte1,
188
                                     int h, int rw, int type)
189
{
190
    target_ulong ptem, mmask;
191
    int access, ret, pteh, ptev, pp;
192 193 194 195

    access = 0;
    ret = -1;
    /* Check validity and table match */
196 197 198 199 200 201 202 203 204 205 206
#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) {
207
        /* Check vsid & api */
208 209 210 211
#if defined(TARGET_PPC64)
        if (is_64b) {
            ptem = pte0 & PTE64_PTEM_MASK;
            mmask = PTE64_CHECK_MASK;
212 213 214
            pp = (pte1 & 0x00000003) | ((pte1 >> 61) & 0x00000004);
            ctx->nx |= (pte1 >> 2) & 1; /* No execute bit */
            ctx->nx |= (pte1 >> 3) & 1; /* Guarded bit    */
215 216 217 218 219
        } else
#endif
        {
            ptem = pte0 & PTE_PTEM_MASK;
            mmask = PTE_CHECK_MASK;
220
            pp = pte1 & 0x00000003;
221 222
        }
        if (ptem == ctx->ptem) {
223
            if (ctx->raddr != (target_phys_addr_t)-1ULL) {
224
                /* all matches should have equal RPN, WIMG & PP */
225 226
                if ((ctx->raddr & mmask) != (pte1 & mmask)) {
                    if (loglevel != 0)
227 228 229 230 231
                        fprintf(logfile, "Bad RPN/WIMG/PP\n");
                    return -3;
                }
            }
            /* Compute access rights */
232
            access = pp_check(ctx->key, pp, ctx->nx);
233 234 235
            /* Keep the matching PTE informations */
            ctx->raddr = pte1;
            ctx->prot = access;
236 237
            ret = check_prot(ctx->prot, rw, type);
            if (ret == 0) {
238 239
                /* Access granted */
#if defined (DEBUG_MMU)
J
j_mayer 已提交
240
                if (loglevel != 0)
241 242 243 244 245
                    fprintf(logfile, "PTE access granted !\n");
#endif
            } else {
                /* Access right violation */
#if defined (DEBUG_MMU)
J
j_mayer 已提交
246
                if (loglevel != 0)
247 248 249 250 251 252 253 254 255
                    fprintf(logfile, "PTE access rejected\n");
#endif
            }
        }
    }

    return ret;
}

J
j_mayer 已提交
256 257 258
static always_inline int pte32_check (mmu_ctx_t *ctx,
                                      target_ulong pte0, target_ulong pte1,
                                      int h, int rw, int type)
259
{
260
    return _pte_check(ctx, 0, pte0, pte1, h, rw, type);
261 262 263
}

#if defined(TARGET_PPC64)
J
j_mayer 已提交
264 265 266
static always_inline int pte64_check (mmu_ctx_t *ctx,
                                      target_ulong pte0, target_ulong pte1,
                                      int h, int rw, int type)
267
{
268
    return _pte_check(ctx, 1, pte0, pte1, h, rw, type);
269 270 271
}
#endif

J
j_mayer 已提交
272 273
static always_inline int pte_update_flags (mmu_ctx_t *ctx, target_ulong *pte1p,
                                           int ret, int rw)
274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297
{
    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 */
J
j_mayer 已提交
298 299
static always_inline int ppc6xx_tlb_getnum (CPUState *env, target_ulong eaddr,
                                            int way, int is_code)
300 301 302 303 304 305 306 307 308 309 310 311 312 313
{
    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;
}

J
j_mayer 已提交
314
static always_inline void ppc6xx_tlb_invalidate_all (CPUState *env)
315
{
316
    ppc6xx_tlb_t *tlb;
317 318 319 320 321 322 323 324 325 326 327 328
    int nr, max;

#if defined (DEBUG_SOFTWARE_TLB) && 0
    if (loglevel != 0) {
        fprintf(logfile, "Invalidate all TLBs\n");
    }
#endif
    /* 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);
}

335 336 337 338
static always_inline void __ppc6xx_tlb_invalidate_virt (CPUState *env,
                                                        target_ulong eaddr,
                                                        int is_code,
                                                        int match_epn)
339
{
J
j_mayer 已提交
340
#if !defined(FLUSH_ALL_TLBS)
341
    ppc6xx_tlb_t *tlb;
342 343 344 345 346
    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);
347
        tlb = &env->tlb[nr].tlb6;
348 349 350
        if (pte_is_valid(tlb->pte0) && (match_epn == 0 || eaddr == tlb->EPN)) {
#if defined (DEBUG_SOFTWARE_TLB)
            if (loglevel != 0) {
351
                fprintf(logfile, "TLB invalidate %d/%d " ADDRX "\n",
352 353 354 355 356 357 358 359 360 361 362 363 364
                        nr, env->nb_tlb, eaddr);
            }
#endif
            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
}

J
j_mayer 已提交
365 366 367
static always_inline void ppc6xx_tlb_invalidate_virt (CPUState *env,
                                                      target_ulong eaddr,
                                                      int is_code)
368 369 370 371 372 373 374
{
    __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)
{
375
    ppc6xx_tlb_t *tlb;
376 377 378
    int nr;

    nr = ppc6xx_tlb_getnum(env, EPN, way, is_code);
379
    tlb = &env->tlb[nr].tlb6;
380 381
#if defined (DEBUG_SOFTWARE_TLB)
    if (loglevel != 0) {
382
        fprintf(logfile, "Set TLB %d/%d EPN " ADDRX " PTE0 " ADDRX
383
                " PTE1 " ADDRX "\n", nr, env->nb_tlb, EPN, pte0, pte1);
384 385 386 387 388 389 390 391 392 393 394
    }
#endif
    /* 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;
}

J
j_mayer 已提交
395 396 397
static always_inline int ppc6xx_tlb_check (CPUState *env, mmu_ctx_t *ctx,
                                           target_ulong eaddr, int rw,
                                           int access_type)
398
{
399
    ppc6xx_tlb_t *tlb;
400 401
    int nr, best, way;
    int ret;
402

403 404 405 406 407
    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);
408
        tlb = &env->tlb[nr].tlb6;
409 410 411 412
        /* This test "emulates" the PTE index match for hardware TLBs */
        if ((eaddr & TARGET_PAGE_MASK) != tlb->EPN) {
#if defined (DEBUG_SOFTWARE_TLB)
            if (loglevel != 0) {
413 414
                fprintf(logfile, "TLB %d/%d %s [" ADDRX " " ADDRX
                        "] <> " ADDRX "\n",
415 416 417 418 419 420 421 422 423
                        nr, env->nb_tlb,
                        pte_is_valid(tlb->pte0) ? "valid" : "inval",
                        tlb->EPN, tlb->EPN + TARGET_PAGE_SIZE, eaddr);
            }
#endif
            continue;
        }
#if defined (DEBUG_SOFTWARE_TLB)
        if (loglevel != 0) {
424 425
            fprintf(logfile, "TLB %d/%d %s " ADDRX " <> " ADDRX " " ADDRX
                    " %c %c\n",
426 427 428 429 430 431
                    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');
        }
#endif
432
        switch (pte32_check(ctx, tlb->pte0, tlb->pte1, 0, rw, access_type)) {
433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458
        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:
#if defined (DEBUG_SOFTWARE_TLB)
J
j_mayer 已提交
459
        if (loglevel != 0) {
460
            fprintf(logfile, "found TLB at addr " PADDRX " prot=%01x ret=%d\n",
461 462 463 464
                    ctx->raddr & TARGET_PAGE_MASK, ctx->prot, ret);
        }
#endif
        /* Update page flags */
465
        pte_update_flags(ctx, &env->tlb[best].tlb6.pte1, ret, rw);
466 467 468 469 470
    }

    return ret;
}

471
/* Perform BAT hit & translation */
J
j_mayer 已提交
472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505
static always_inline void bat_size_prot (CPUState *env, target_ulong *blp,
                                         int *validp, int *protp,
                                         target_ulong *BATu, target_ulong *BATl)
{
    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;
}

static always_inline void bat_601_size_prot (CPUState *env,target_ulong *blp,
                                             int *validp, int *protp,
                                             target_ulong *BATu,
                                             target_ulong *BATl)
{
    target_ulong bl;
    int key, pp, valid, prot;

    bl = (*BATl & 0x0000003F) << 17;
506
#if defined (DEBUG_BATS)
J
j_mayer 已提交
507
    if (loglevel != 0) {
508 509
        fprintf(logfile, "b %02x ==> bl " ADDRX " msk " ADDRX "\n",
                (uint8_t)(*BATl & 0x0000003F), bl, ~bl);
J
j_mayer 已提交
510
    }
511
#endif
J
j_mayer 已提交
512 513 514 515 516 517 518 519 520 521 522 523 524 525 526
    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;
}

J
j_mayer 已提交
527 528
static always_inline int get_bat (CPUState *env, mmu_ctx_t *ctx,
                                  target_ulong virtual, int rw, int type)
529
{
530 531
    target_ulong *BATlt, *BATut, *BATu, *BATl;
    target_ulong base, BEPIl, BEPIu, bl;
J
j_mayer 已提交
532
    int i, valid, prot;
533 534 535
    int ret = -1;

#if defined (DEBUG_BATS)
J
j_mayer 已提交
536
    if (loglevel != 0) {
537
        fprintf(logfile, "%s: %cBAT v " ADDRX "\n", __func__,
538
                type == ACCESS_CODE ? 'I' : 'D', virtual);
539 540 541 542 543 544 545 546 547 548 549 550 551
    }
#endif
    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 已提交
552
    for (i = 0; i < env->nb_BATs; i++) {
553 554 555 556
        BATu = &BATut[i];
        BATl = &BATlt[i];
        BEPIu = *BATu & 0xF0000000;
        BEPIl = *BATu & 0x0FFE0000;
J
j_mayer 已提交
557 558 559 560 561
        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);
        }
562
#if defined (DEBUG_BATS)
J
j_mayer 已提交
563
        if (loglevel != 0) {
564 565 566
            fprintf(logfile, "%s: %cBAT%d v " ADDRX " BATu " ADDRX
                    " BATl " ADDRX "\n", __func__,
                    type == ACCESS_CODE ? 'I' : 'D', i, virtual, *BATu, *BATl);
567 568 569 570 571
        }
#endif
        if ((virtual & 0xF0000000) == BEPIu &&
            ((virtual & 0x0FFE0000) & ~bl) == BEPIl) {
            /* BAT matches */
J
j_mayer 已提交
572
            if (valid != 0) {
573
                /* Get physical address */
574
                ctx->raddr = (*BATl & 0xF0000000) |
575
                    ((virtual & 0x0FFE0000 & bl) | (*BATl & 0x0FFE0000)) |
576
                    (virtual & 0x0001F000);
577
                /* Compute access rights */
J
j_mayer 已提交
578
                ctx->prot = prot;
579
                ret = check_prot(ctx->prot, rw, type);
580
#if defined (DEBUG_BATS)
581
                if (ret == 0 && loglevel != 0) {
582
                    fprintf(logfile, "BAT %d match: r " PADDRX " prot=%c%c\n",
583 584
                            i, ctx->raddr, ctx->prot & PAGE_READ ? 'R' : '-',
                            ctx->prot & PAGE_WRITE ? 'W' : '-');
585 586 587 588 589 590 591 592
                }
#endif
                break;
            }
        }
    }
    if (ret < 0) {
#if defined (DEBUG_BATS)
J
j_mayer 已提交
593
        if (loglevel != 0) {
594
            fprintf(logfile, "no BAT match for " ADDRX ":\n", virtual);
J
j_mayer 已提交
595 596 597 598 599 600
            for (i = 0; i < 4; i++) {
                BATu = &BATut[i];
                BATl = &BATlt[i];
                BEPIu = *BATu & 0xF0000000;
                BEPIl = *BATu & 0x0FFE0000;
                bl = (*BATu & 0x00001FFC) << 15;
601 602
                fprintf(logfile, "%s: %cBAT%d v " ADDRX " BATu " ADDRX
                        " BATl " ADDRX " \n\t" ADDRX " " ADDRX " " ADDRX "\n",
J
j_mayer 已提交
603 604 605
                        __func__, type == ACCESS_CODE ? 'I' : 'D', i, virtual,
                        *BATu, *BATl, BEPIu, BEPIl, bl);
            }
606 607 608
        }
#endif
    }
609

610 611 612 613 614
    /* No hit */
    return ret;
}

/* PTE table lookup */
615 616
static always_inline int _find_pte (mmu_ctx_t *ctx, int is_64b, int h,
                                    int rw, int type)
617
{
618 619
    target_ulong base, pte0, pte1;
    int i, good = -1;
620
    int ret, r;
621

622 623
    ret = -1; /* No entry found */
    base = ctx->pg_addr[h];
624
    for (i = 0; i < 8; i++) {
625 626 627 628
#if defined(TARGET_PPC64)
        if (is_64b) {
            pte0 = ldq_phys(base + (i * 16));
            pte1 =  ldq_phys(base + (i * 16) + 8);
629
            r = pte64_check(ctx, pte0, pte1, h, rw, type);
630 631
#if defined (DEBUG_MMU)
            if (loglevel != 0) {
632 633
                fprintf(logfile, "Load pte from " ADDRX " => " ADDRX " " ADDRX
                        " %d %d %d " ADDRX "\n",
634 635 636 637 638
                        base + (i * 16), pte0, pte1,
                        (int)(pte0 & 1), h, (int)((pte0 >> 1) & 1),
                        ctx->ptem);
            }
#endif
639 640 641 642 643
        } else
#endif
        {
            pte0 = ldl_phys(base + (i * 8));
            pte1 =  ldl_phys(base + (i * 8) + 4);
644
            r = pte32_check(ctx, pte0, pte1, h, rw, type);
645
#if defined (DEBUG_MMU)
646
            if (loglevel != 0) {
647 648
                fprintf(logfile, "Load pte from " ADDRX " => " ADDRX " " ADDRX
                        " %d %d %d " ADDRX "\n",
649 650 651 652
                        base + (i * 8), pte0, pte1,
                        (int)(pte0 >> 31), h, (int)((pte0 >> 6) & 1),
                        ctx->ptem);
            }
653
#endif
654
        }
655
        switch (r) {
656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676
        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;
677 678 679
        }
    }
    if (good != -1) {
680
    done:
681
#if defined (DEBUG_MMU)
J
j_mayer 已提交
682
        if (loglevel != 0) {
683
            fprintf(logfile, "found PTE at addr " PADDRX " prot=%01x ret=%d\n",
684 685
                    ctx->raddr, ctx->prot, ret);
        }
686 687
#endif
        /* Update page flags */
688
        pte1 = ctx->raddr;
689 690 691 692 693 694 695 696 697 698
        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);
            }
        }
699 700 701
    }

    return ret;
B
bellard 已提交
702 703
}

J
j_mayer 已提交
704
static always_inline int find_pte32 (mmu_ctx_t *ctx, int h, int rw, int type)
705
{
706
    return _find_pte(ctx, 0, h, rw, type);
707 708 709
}

#if defined(TARGET_PPC64)
J
j_mayer 已提交
710
static always_inline int find_pte64 (mmu_ctx_t *ctx, int h, int rw, int type)
711
{
712
    return _find_pte(ctx, 1, h, rw, type);
713 714 715
}
#endif

716
static always_inline int find_pte (CPUState *env, mmu_ctx_t *ctx,
717
                                   int h, int rw, int type)
718 719
{
#if defined(TARGET_PPC64)
720
    if (env->mmu_model & POWERPC_MMU_64)
721
        return find_pte64(ctx, h, rw, type);
722 723
#endif

724
    return find_pte32(ctx, h, rw, type);
725 726 727
}

#if defined(TARGET_PPC64)
J
j_mayer 已提交
728
static always_inline int slb_is_valid (uint64_t slb64)
729 730 731 732
{
    return slb64 & 0x0000000008000000ULL ? 1 : 0;
}

J
j_mayer 已提交
733
static always_inline void slb_invalidate (uint64_t *slb64)
734 735 736 737
{
    *slb64 &= ~0x0000000008000000ULL;
}

J
j_mayer 已提交
738 739 740
static always_inline int slb_lookup (CPUPPCState *env, target_ulong eaddr,
                                     target_ulong *vsid,
                                     target_ulong *page_mask, int *attr)
741 742 743 744 745 746 747 748 749
{
    target_phys_addr_t sr_base;
    target_ulong mask;
    uint64_t tmp64;
    uint32_t tmp;
    int n, ret;

    ret = -5;
    sr_base = env->spr[SPR_ASR];
750 751 752 753 754 755
#if defined(DEBUG_SLB)
    if (loglevel != 0) {
        fprintf(logfile, "%s: eaddr " ADDRX " base " PADDRX "\n",
                __func__, eaddr, sr_base);
    }
#endif
756
    mask = 0x0000000000000000ULL; /* Avoid gcc warning */
757
    for (n = 0; n < env->slb_nr; n++) {
758
        tmp64 = ldq_phys(sr_base);
759 760 761
        tmp = ldl_phys(sr_base + 8);
#if defined(DEBUG_SLB)
        if (loglevel != 0) {
J
j_mayer 已提交
762 763
            fprintf(logfile, "%s: seg %d " PADDRX " %016" PRIx64 " %08"
                    PRIx32 "\n", __func__, n, sr_base, tmp64, tmp);
764 765
        }
#endif
766
        if (slb_is_valid(tmp64)) {
767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786
            /* SLB entry is valid */
            switch (tmp64 & 0x0000000006000000ULL) {
            case 0x0000000000000000ULL:
                /* 256 MB segment */
                mask = 0xFFFFFFFFF0000000ULL;
                break;
            case 0x0000000002000000ULL:
                /* 1 TB segment */
                mask = 0xFFFF000000000000ULL;
                break;
            case 0x0000000004000000ULL:
            case 0x0000000006000000ULL:
                /* Reserved => segment is invalid */
                continue;
            }
            if ((eaddr & mask) == (tmp64 & mask)) {
                /* SLB match */
                *vsid = ((tmp64 << 24) | (tmp >> 8)) & 0x0003FFFFFFFFFFFFULL;
                *page_mask = ~mask;
                *attr = tmp & 0xFF;
787
                ret = n;
788 789 790 791 792 793 794
                break;
            }
        }
        sr_base += 12;
    }

    return ret;
B
bellard 已提交
795
}
796

797 798 799 800 801 802 803 804
void ppc_slb_invalidate_all (CPUPPCState *env)
{
    target_phys_addr_t sr_base;
    uint64_t tmp64;
    int n, do_invalidate;

    do_invalidate = 0;
    sr_base = env->spr[SPR_ASR];
805 806
    /* XXX: Warning: slbia never invalidates the first segment */
    for (n = 1; n < env->slb_nr; n++) {
807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847
        tmp64 = ldq_phys(sr_base);
        if (slb_is_valid(tmp64)) {
            slb_invalidate(&tmp64);
            stq_phys(sr_base, tmp64);
            /* 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;
        }
        sr_base += 12;
    }
    if (do_invalidate)
        tlb_flush(env, 1);
}

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

    n = slb_lookup(env, T0, &vsid, &page_mask, &attr);
    if (n >= 0) {
        sr_base = env->spr[SPR_ASR];
        sr_base += 12 * n;
        tmp64 = ldq_phys(sr_base);
        if (slb_is_valid(tmp64)) {
            slb_invalidate(&tmp64);
            stq_phys(sr_base, tmp64);
            /* 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);
        }
    }
}

848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897
target_ulong ppc_load_slb (CPUPPCState *env, int slb_nr)
{
    target_phys_addr_t sr_base;
    target_ulong rt;
    uint64_t tmp64;
    uint32_t tmp;

    sr_base = env->spr[SPR_ASR];
    sr_base += 12 * slb_nr;
    tmp64 = ldq_phys(sr_base);
    tmp = ldl_phys(sr_base + 8);
    if (tmp64 & 0x0000000008000000ULL) {
        /* SLB entry is valid */
        /* Copy SLB bits 62:88 to Rt 37:63 (VSID 23:49) */
        rt = tmp >> 8;             /* 65:88 => 40:63 */
        rt |= (tmp64 & 0x7) << 24; /* 62:64 => 37:39 */
        /* Copy SLB bits 89:92 to Rt 33:36 (KsKpNL) */
        rt |= ((tmp >> 4) & 0xF) << 27;
    } else {
        rt = 0;
    }
#if defined(DEBUG_SLB)
    if (loglevel != 0) {
        fprintf(logfile, "%s: " PADDRX " %016" PRIx64 " %08" PRIx32 " => %d "
                ADDRX "\n", __func__, sr_base, tmp64, tmp, slb_nr, rt);
    }
#endif

    return rt;
}

void ppc_store_slb (CPUPPCState *env, int slb_nr, target_ulong rs)
{
    target_phys_addr_t sr_base;
    uint64_t tmp64;
    uint32_t tmp;

    sr_base = env->spr[SPR_ASR];
    sr_base += 12 * slb_nr;
    /* Copy Rs bits 37:63 to SLB 62:88 */
    tmp = rs << 8;
    tmp64 = (rs >> 24) & 0x7;
    /* Copy Rs bits 33:36 to SLB 89:92 */
    tmp |= ((rs >> 27) & 0xF) << 4;
    /* Set the valid bit */
    tmp64 |= 1 << 27;
    /* Set ESID */
    tmp64 |= (uint32_t)slb_nr << 28;
#if defined(DEBUG_SLB)
    if (loglevel != 0) {
898 899 900
        fprintf(logfile, "%s: %d " ADDRX " => " PADDRX " %016" PRIx64
                " %08" PRIx32 "\n", __func__,
                slb_nr, rs, sr_base, tmp64, tmp);
901 902 903 904 905 906
    }
#endif
    /* Write SLB entry to memory */
    stq_phys(sr_base, tmp64);
    stl_phys(sr_base + 8, tmp);
}
907
#endif /* defined(TARGET_PPC64) */
B
bellard 已提交
908

909
/* Perform segment based translation */
910 911 912 913
static always_inline target_phys_addr_t get_pgaddr (target_phys_addr_t sdr1,
                                                    int sdr_sh,
                                                    target_phys_addr_t hash,
                                                    target_phys_addr_t mask)
914
{
915
    return (sdr1 & ((target_phys_addr_t)(-1ULL) << sdr_sh)) | (hash & mask);
916 917
}

J
j_mayer 已提交
918 919
static always_inline int get_segment (CPUState *env, mmu_ctx_t *ctx,
                                      target_ulong eaddr, int rw, int type)
B
bellard 已提交
920
{
921
    target_phys_addr_t sdr, hash, mask, sdr_mask, htab_mask;
922 923 924
    target_ulong sr, vsid, vsid_mask, pgidx, page_mask;
#if defined(TARGET_PPC64)
    int attr;
925
#endif
926
    int ds, vsid_sh, sdr_sh, pr;
927 928
    int ret, ret2;

929
    pr = msr_pr;
930
#if defined(TARGET_PPC64)
931
    if (env->mmu_model & POWERPC_MMU_64) {
932 933 934 935 936
#if defined (DEBUG_MMU)
        if (loglevel != 0) {
            fprintf(logfile, "Check SLBs\n");
        }
#endif
937 938 939
        ret = slb_lookup(env, eaddr, &vsid, &page_mask, &attr);
        if (ret < 0)
            return ret;
940 941
        ctx->key = ((attr & 0x40) && (pr != 0)) ||
            ((attr & 0x80) && (pr == 0)) ? 1 : 0;
942
        ds = 0;
943
        ctx->nx = attr & 0x20 ? 1 : 0;
944 945 946 947 948 949 950 951 952
        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;
953 954
        ctx->key = (((sr & 0x20000000) && (pr != 0)) ||
                    ((sr & 0x40000000) && (pr == 0))) ? 1 : 0;
955
        ds = sr & 0x80000000 ? 1 : 0;
956
        ctx->nx = sr & 0x10000000 ? 1 : 0;
957 958 959 960 961
        vsid = sr & 0x00FFFFFF;
        vsid_mask = 0x01FFFFC0;
        vsid_sh = 6;
        sdr_sh = 16;
        sdr_mask = 0xFFC0;
962
#if defined (DEBUG_MMU)
963
        if (loglevel != 0) {
964 965
            fprintf(logfile, "Check segment v=" ADDRX " %d " ADDRX
                    " nip=" ADDRX " lr=" ADDRX " ir=%d dr=%d pr=%d %d t=%d\n",
966
                    eaddr, (int)(eaddr >> 28), sr, env->nip,
967 968
                    env->lr, (int)msr_ir, (int)msr_dr, pr != 0 ? 1 : 0,
                    rw, type);
969
        }
970
#endif
971
    }
972 973 974
#if defined (DEBUG_MMU)
    if (loglevel != 0) {
        fprintf(logfile, "pte segment: key=%d ds %d nx %d vsid " ADDRX "\n",
975
                ctx->key, ds, ctx->nx, vsid);
976 977
    }
#endif
978 979
    ret = -1;
    if (!ds) {
980
        /* Check if instruction fetch is allowed, if needed */
981
        if (type != ACCESS_CODE || ctx->nx == 0) {
982
            /* Page address translation */
983 984
            /* Primary table address */
            sdr = env->sdr1;
985 986
            pgidx = (eaddr & page_mask) >> TARGET_PAGE_BITS;
#if defined(TARGET_PPC64)
987
            if (env->mmu_model & POWERPC_MMU_64) {
988 989 990 991 992 993 994 995 996 997 998 999
                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;
#if defined (DEBUG_MMU)
            if (loglevel != 0) {
1000 1001 1002
                fprintf(logfile, "sdr " PADDRX " sh %d hash " PADDRX
                        " mask " PADDRX " " ADDRX "\n",
                        sdr, sdr_sh, hash, mask, page_mask);
1003 1004
            }
#endif
1005
            ctx->pg_addr[0] = get_pgaddr(sdr, sdr_sh, hash, mask);
1006
            /* Secondary table address */
1007
            hash = (~hash) & vsid_mask;
1008 1009
#if defined (DEBUG_MMU)
            if (loglevel != 0) {
1010 1011 1012
                fprintf(logfile, "sdr " PADDRX " sh %d hash " PADDRX
                        " mask " PADDRX "\n",
                        sdr, sdr_sh, hash, mask);
1013 1014
            }
#endif
1015 1016
            ctx->pg_addr[1] = get_pgaddr(sdr, sdr_sh, hash, mask);
#if defined(TARGET_PPC64)
1017
            if (env->mmu_model & POWERPC_MMU_64) {
1018 1019 1020 1021 1022 1023 1024
                /* Only 5 bits of the page index are used in the AVPN */
                ctx->ptem = (vsid << 12) | ((pgidx >> 4) & 0x0F80);
            } else
#endif
            {
                ctx->ptem = (vsid << 7) | (pgidx >> 10);
            }
1025
            /* Initialize real address with an invalid value */
1026
            ctx->raddr = (target_phys_addr_t)-1ULL;
1027 1028
            if (unlikely(env->mmu_model == POWERPC_MMU_SOFT_6xx ||
                         env->mmu_model == POWERPC_MMU_SOFT_74xx)) {
1029 1030 1031
                /* Software TLB search */
                ret = ppc6xx_tlb_check(env, ctx, eaddr, rw, type);
            } else {
1032
#if defined (DEBUG_MMU)
J
j_mayer 已提交
1033
                if (loglevel != 0) {
1034 1035 1036 1037
                    fprintf(logfile, "0 sdr1=" PADDRX " vsid=" ADDRX " "
                            "api=" ADDRX " hash=" PADDRX
                            " pg_addr=" PADDRX "\n",
                            sdr, vsid, pgidx, hash, ctx->pg_addr[0]);
1038
                }
1039
#endif
1040
                /* Primary table lookup */
1041
                ret = find_pte(env, ctx, 0, rw, type);
1042 1043
                if (ret < 0) {
                    /* Secondary table lookup */
1044
#if defined (DEBUG_MMU)
J
j_mayer 已提交
1045
                    if (eaddr != 0xEFFFFFFF && loglevel != 0) {
1046 1047 1048 1049
                        fprintf(logfile, "1 sdr1=" PADDRX " vsid=" ADDRX " "
                                "api=" ADDRX " hash=" PADDRX
                                " pg_addr=" PADDRX "\n",
                                sdr, vsid, pgidx, hash, ctx->pg_addr[1]);
1050
                    }
1051
#endif
1052
                    ret2 = find_pte(env, ctx, 1, rw, type);
1053 1054 1055
                    if (ret2 != -1)
                        ret = ret2;
                }
1056
            }
1057
#if defined (DUMP_PAGE_TABLES)
J
j_mayer 已提交
1058 1059 1060
            if (loglevel != 0) {
                target_phys_addr_t curaddr;
                uint32_t a0, a1, a2, a3;
1061
                fprintf(logfile, "Page table: " PADDRX " len " PADDRX "\n",
J
j_mayer 已提交
1062 1063 1064 1065 1066 1067 1068 1069
                        sdr, mask + 0x80);
                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) {
1070
                        fprintf(logfile, PADDRX ": %08x %08x %08x %08x\n",
J
j_mayer 已提交
1071
                                curaddr, a0, a1, a2, a3);
1072
                    }
J
j_mayer 已提交
1073 1074
                }
            }
1075
#endif
1076 1077
        } else {
#if defined (DEBUG_MMU)
J
j_mayer 已提交
1078
            if (loglevel != 0)
1079
                fprintf(logfile, "No access allowed\n");
1080
#endif
1081
            ret = -3;
1082 1083 1084
        }
    } else {
#if defined (DEBUG_MMU)
J
j_mayer 已提交
1085
        if (loglevel != 0)
1086
            fprintf(logfile, "direct store...\n");
1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106
#endif
        /* 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 :-)
             */
1107
            ctx->raddr = eaddr;
1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118
            return 0;
        case ACCESS_EXT:
            /* eciwx or ecowx */
            return -4;
        default:
            if (logfile) {
                fprintf(logfile, "ERROR: instruction should not need "
                        "address translation\n");
            }
            return -4;
        }
1119 1120
        if ((rw == 1 || ctx->key != 1) && (rw == 0 || ctx->key != 0)) {
            ctx->raddr = eaddr;
1121 1122 1123 1124
            ret = 2;
        } else {
            ret = -2;
        }
B
bellard 已提交
1125
    }
1126 1127

    return ret;
B
bellard 已提交
1128 1129
}

1130
/* Generic TLB check function for embedded PowerPC implementations */
J
j_mayer 已提交
1131 1132 1133 1134
static always_inline int ppcemb_tlb_check (CPUState *env, ppcemb_tlb_t *tlb,
                                           target_phys_addr_t *raddrp,
                                           target_ulong address,
                                           uint32_t pid, int ext, int i)
1135 1136 1137 1138 1139 1140 1141 1142 1143 1144
{
    target_ulong mask;

    /* Check valid flag */
    if (!(tlb->prot & PAGE_VALID)) {
        if (loglevel != 0)
            fprintf(logfile, "%s: TLB %d not valid\n", __func__, i);
        return -1;
    }
    mask = ~(tlb->size - 1);
1145
#if defined (DEBUG_SOFTWARE_TLB)
1146
    if (loglevel != 0) {
1147 1148 1149
        fprintf(logfile, "%s: TLB %d address " ADDRX " PID %u <=> " ADDRX
                " " ADDRX " %u\n",
                __func__, i, address, pid, tlb->EPN, mask, (uint32_t)tlb->PID);
1150
    }
1151
#endif
1152
    /* Check PID */
1153
    if (tlb->PID != 0 && tlb->PID != pid)
1154 1155 1156 1157 1158
        return -1;
    /* Check effective address */
    if ((address & mask) != tlb->EPN)
        return -1;
    *raddrp = (tlb->RPN & mask) | (address & ~mask);
1159
#if (TARGET_PHYS_ADDR_BITS >= 36)
1160 1161 1162 1163
    if (ext) {
        /* Extend the physical address to 36 bits */
        *raddrp |= (target_phys_addr_t)(tlb->RPN & 0xF) << 32;
    }
1164
#endif
1165 1166 1167 1168 1169

    return 0;
}

/* Generic TLB search function for PowerPC embedded implementations */
1170
int ppcemb_tlb_search (CPUPPCState *env, target_ulong address, uint32_t pid)
1171 1172 1173 1174 1175 1176 1177
{
    ppcemb_tlb_t *tlb;
    target_phys_addr_t raddr;
    int i, ret;

    /* Default return value is no match */
    ret = -1;
1178
    for (i = 0; i < env->nb_tlb; i++) {
1179
        tlb = &env->tlb[i].tlbe;
1180
        if (ppcemb_tlb_check(env, tlb, &raddr, address, pid, 0, i) == 0) {
1181 1182 1183 1184 1185 1186 1187 1188
            ret = i;
            break;
        }
    }

    return ret;
}

1189
/* Helpers specific to PowerPC 40x implementations */
J
j_mayer 已提交
1190
static always_inline void ppc4xx_tlb_invalidate_all (CPUState *env)
1191 1192 1193 1194 1195 1196
{
    ppcemb_tlb_t *tlb;
    int i;

    for (i = 0; i < env->nb_tlb; i++) {
        tlb = &env->tlb[i].tlbe;
1197
        tlb->prot &= ~PAGE_VALID;
1198
    }
1199
    tlb_flush(env, 1);
1200 1201
}

J
j_mayer 已提交
1202 1203 1204
static always_inline void ppc4xx_tlb_invalidate_virt (CPUState *env,
                                                      target_ulong eaddr,
                                                      uint32_t pid)
J
j_mayer 已提交
1205
{
1206
#if !defined(FLUSH_ALL_TLBS)
J
j_mayer 已提交
1207
    ppcemb_tlb_t *tlb;
1208 1209
    target_phys_addr_t raddr;
    target_ulong page, end;
J
j_mayer 已提交
1210 1211 1212 1213
    int i;

    for (i = 0; i < env->nb_tlb; i++) {
        tlb = &env->tlb[i].tlbe;
1214
        if (ppcemb_tlb_check(env, tlb, &raddr, eaddr, pid, 0, i) == 0) {
J
j_mayer 已提交
1215 1216 1217 1218
            end = tlb->EPN + tlb->size;
            for (page = tlb->EPN; page < end; page += TARGET_PAGE_SIZE)
                tlb_flush_page(env, page);
            tlb->prot &= ~PAGE_VALID;
1219
            break;
J
j_mayer 已提交
1220 1221
        }
    }
1222 1223 1224
#else
    ppc4xx_tlb_invalidate_all(env);
#endif
J
j_mayer 已提交
1225 1226
}

1227
int mmu40x_get_physical_address (CPUState *env, mmu_ctx_t *ctx,
1228
                                 target_ulong address, int rw, int access_type)
J
j_mayer 已提交
1229 1230 1231
{
    ppcemb_tlb_t *tlb;
    target_phys_addr_t raddr;
1232
    int i, ret, zsel, zpr, pr;
1233

1234
    ret = -1;
1235
    raddr = (target_phys_addr_t)-1ULL;
1236
    pr = msr_pr;
J
j_mayer 已提交
1237 1238
    for (i = 0; i < env->nb_tlb; i++) {
        tlb = &env->tlb[i].tlbe;
1239 1240
        if (ppcemb_tlb_check(env, tlb, &raddr, address,
                             env->spr[SPR_40x_PID], 0, i) < 0)
J
j_mayer 已提交
1241 1242 1243
            continue;
        zsel = (tlb->attr >> 4) & 0xF;
        zpr = (env->spr[SPR_40x_ZPR] >> (28 - (2 * zsel))) & 0x3;
1244
#if defined (DEBUG_SOFTWARE_TLB)
J
j_mayer 已提交
1245
        if (loglevel != 0) {
J
j_mayer 已提交
1246 1247 1248
            fprintf(logfile, "%s: TLB %d zsel %d zpr %d rw %d attr %08x\n",
                    __func__, i, zsel, zpr, rw, tlb->attr);
        }
1249
#endif
1250 1251 1252
        /* Check execute enable bit */
        switch (zpr) {
        case 0x2:
1253
            if (pr != 0)
1254 1255 1256 1257 1258 1259 1260 1261
                goto check_perms;
            /* No break here */
        case 0x3:
            /* All accesses granted */
            ctx->prot = PAGE_READ | PAGE_WRITE | PAGE_EXEC;
            ret = 0;
            break;
        case 0x0:
1262
            if (pr != 0) {
1263 1264
                ctx->prot = 0;
                ret = -2;
J
j_mayer 已提交
1265 1266
                break;
            }
1267 1268 1269 1270 1271 1272 1273 1274 1275
            /* 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 已提交
1276 1277 1278
        }
        if (ret >= 0) {
            ctx->raddr = raddr;
1279
#if defined (DEBUG_SOFTWARE_TLB)
J
j_mayer 已提交
1280
            if (loglevel != 0) {
1281
                fprintf(logfile, "%s: access granted " ADDRX " => " PADDRX
1282 1283
                        " %d %d\n", __func__, address, ctx->raddr, ctx->prot,
                        ret);
J
j_mayer 已提交
1284
            }
1285
#endif
1286
            return 0;
J
j_mayer 已提交
1287 1288
        }
    }
1289
#if defined (DEBUG_SOFTWARE_TLB)
J
j_mayer 已提交
1290
    if (loglevel != 0) {
1291
        fprintf(logfile, "%s: access refused " ADDRX " => " PADDRX
1292 1293 1294
                " %d %d\n", __func__, address, raddr, ctx->prot,
                ret);
    }
1295
#endif
1296

J
j_mayer 已提交
1297 1298 1299
    return ret;
}

1300 1301 1302 1303 1304 1305 1306 1307 1308
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;
}

1309 1310 1311 1312 1313 1314 1315 1316 1317
int mmubooke_get_physical_address (CPUState *env, mmu_ctx_t *ctx,
                                   target_ulong address, int rw,
                                   int access_type)
{
    ppcemb_tlb_t *tlb;
    target_phys_addr_t raddr;
    int i, prot, ret;

    ret = -1;
1318
    raddr = (target_phys_addr_t)-1ULL;
1319 1320 1321 1322 1323
    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;
1324
        if (msr_pr != 0)
1325 1326 1327 1328 1329
            prot = tlb->prot & 0xF;
        else
            prot = (tlb->prot >> 4) & 0xF;
        /* Check the address space */
        if (access_type == ACCESS_CODE) {
1330
            if (msr_ir != (tlb->attr & 1))
1331 1332 1333 1334 1335 1336 1337 1338
                continue;
            ctx->prot = prot;
            if (prot & PAGE_EXEC) {
                ret = 0;
                break;
            }
            ret = -3;
        } else {
1339
            if (msr_dr != (tlb->attr & 1))
1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354
                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;
}

J
j_mayer 已提交
1355 1356
static always_inline int check_physical (CPUState *env, mmu_ctx_t *ctx,
                                         target_ulong eaddr, int rw)
1357 1358
{
    int in_plb, ret;
1359

1360
    ctx->raddr = eaddr;
1361
    ctx->prot = PAGE_READ | PAGE_EXEC;
1362
    ret = 0;
1363 1364
    switch (env->mmu_model) {
    case POWERPC_MMU_32B:
J
j_mayer 已提交
1365
    case POWERPC_MMU_601:
1366
    case POWERPC_MMU_SOFT_6xx:
1367
    case POWERPC_MMU_SOFT_74xx:
1368
    case POWERPC_MMU_SOFT_4xx:
1369
    case POWERPC_MMU_REAL:
1370
    case POWERPC_MMU_BOOKE:
1371 1372 1373
        ctx->prot |= PAGE_WRITE;
        break;
#if defined(TARGET_PPC64)
1374
    case POWERPC_MMU_620:
1375
    case POWERPC_MMU_64B:
1376
        /* Real address are 60 bits long */
1377
        ctx->raddr &= 0x0FFFFFFFFFFFFFFFULL;
1378 1379
        ctx->prot |= PAGE_WRITE;
        break;
1380
#endif
1381
    case POWERPC_MMU_SOFT_4xx_Z:
1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401
        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;
1402 1403
            }
        }
1404
        break;
1405 1406 1407 1408
    case POWERPC_MMU_MPC8xx:
        /* XXX: TODO */
        cpu_abort(env, "MPC8xx MMU model is not implemented\n");
        break;
1409
    case POWERPC_MMU_BOOKE_FSL:
1410 1411 1412 1413 1414 1415
        /* 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;
1416 1417 1418 1419 1420 1421
    }

    return ret;
}

int get_physical_address (CPUState *env, mmu_ctx_t *ctx, target_ulong eaddr,
J
j_mayer 已提交
1422
                          int rw, int access_type)
1423 1424
{
    int ret;
1425

B
bellard 已提交
1426
#if 0
J
j_mayer 已提交
1427
    if (loglevel != 0) {
1428 1429
        fprintf(logfile, "%s\n", __func__);
    }
1430
#endif
B
bellard 已提交
1431 1432
    if ((access_type == ACCESS_CODE && msr_ir == 0) ||
        (access_type != ACCESS_CODE && msr_dr == 0)) {
1433
        /* No address translation */
1434
        ret = check_physical(env, ctx, eaddr, rw);
1435
    } else {
1436
        ret = -1;
1437 1438
        switch (env->mmu_model) {
        case POWERPC_MMU_32B:
J
j_mayer 已提交
1439
        case POWERPC_MMU_601:
1440
        case POWERPC_MMU_SOFT_6xx:
1441
        case POWERPC_MMU_SOFT_74xx:
1442
#if defined(TARGET_PPC64)
1443
        case POWERPC_MMU_620:
1444
        case POWERPC_MMU_64B:
1445
#endif
J
j_mayer 已提交
1446 1447 1448
            /* Try to find a BAT */
            if (env->nb_BATs != 0)
                ret = get_bat(env, ctx, eaddr, rw, access_type);
J
j_mayer 已提交
1449
            if (ret < 0) {
1450
                /* We didn't match any BAT entry or don't have BATs */
J
j_mayer 已提交
1451 1452 1453
                ret = get_segment(env, ctx, eaddr, rw, access_type);
            }
            break;
1454 1455
        case POWERPC_MMU_SOFT_4xx:
        case POWERPC_MMU_SOFT_4xx_Z:
1456
            ret = mmu40x_get_physical_address(env, ctx, eaddr,
J
j_mayer 已提交
1457 1458
                                              rw, access_type);
            break;
1459
        case POWERPC_MMU_BOOKE:
1460 1461 1462
            ret = mmubooke_get_physical_address(env, ctx, eaddr,
                                                rw, access_type);
            break;
1463 1464 1465 1466
        case POWERPC_MMU_MPC8xx:
            /* XXX: TODO */
            cpu_abort(env, "MPC8xx MMU model is not implemented\n");
            break;
1467
        case POWERPC_MMU_BOOKE_FSL:
1468 1469 1470
            /* XXX: TODO */
            cpu_abort(env, "BookE FSL MMU model not implemented\n");
            return -1;
1471 1472
        case POWERPC_MMU_REAL:
            cpu_abort(env, "PowerPC in real mode do not do any translation\n");
1473
            return -1;
1474 1475
        default:
            cpu_abort(env, "Unknown or invalid MMU model\n");
J
j_mayer 已提交
1476
            return -1;
1477 1478
        }
    }
B
bellard 已提交
1479
#if 0
J
j_mayer 已提交
1480 1481
    if (loglevel != 0) {
        fprintf(logfile, "%s address " ADDRX " => %d " PADDRX "\n",
1482
                __func__, eaddr, ret, ctx->raddr);
1483
    }
1484
#endif
1485

1486 1487 1488
    return ret;
}

1489
target_phys_addr_t cpu_get_phys_page_debug (CPUState *env, target_ulong addr)
B
bellard 已提交
1490
{
1491
    mmu_ctx_t ctx;
B
bellard 已提交
1492

J
j_mayer 已提交
1493
    if (unlikely(get_physical_address(env, &ctx, addr, 0, ACCESS_INT) != 0))
B
bellard 已提交
1494
        return -1;
1495 1496

    return ctx.raddr & TARGET_PAGE_MASK;
B
bellard 已提交
1497
}
1498 1499

/* Perform address translation */
1500
int cpu_ppc_handle_mmu_fault (CPUState *env, target_ulong address, int rw,
1501
                              int mmu_idx, int is_softmmu)
1502
{
1503
    mmu_ctx_t ctx;
1504
    int access_type;
1505
    int ret = 0;
1506

B
bellard 已提交
1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517
    if (rw == 2) {
        /* code access */
        rw = 0;
        access_type = ACCESS_CODE;
    } else {
        /* data access */
        /* XXX: put correct access by using cpu_restore_state()
           correctly */
        access_type = ACCESS_INT;
        //        access_type = env->access_type;
    }
J
j_mayer 已提交
1518
    ret = get_physical_address(env, &ctx, address, rw, access_type);
1519
    if (ret == 0) {
1520 1521 1522
        ret = tlb_set_page_exec(env, address & TARGET_PAGE_MASK,
                                ctx.raddr & TARGET_PAGE_MASK, ctx.prot,
                                mmu_idx, is_softmmu);
1523 1524
    } else if (ret < 0) {
#if defined (DEBUG_MMU)
J
j_mayer 已提交
1525
        if (loglevel != 0)
1526
            cpu_dump_state(env, logfile, fprintf, 0);
1527 1528 1529 1530
#endif
        if (access_type == ACCESS_CODE) {
            switch (ret) {
            case -1:
1531
                /* No matches in page tables or TLB */
1532 1533
                switch (env->mmu_model) {
                case POWERPC_MMU_SOFT_6xx:
1534 1535
                    env->exception_index = POWERPC_EXCP_IFTLB;
                    env->error_code = 1 << 18;
1536 1537 1538
                    env->spr[SPR_IMISS] = address;
                    env->spr[SPR_ICMP] = 0x80000000 | ctx.ptem;
                    goto tlb_miss;
1539
                case POWERPC_MMU_SOFT_74xx:
1540
                    env->exception_index = POWERPC_EXCP_IFTLB;
1541
                    goto tlb_miss_74xx;
1542 1543
                case POWERPC_MMU_SOFT_4xx:
                case POWERPC_MMU_SOFT_4xx_Z:
1544 1545
                    env->exception_index = POWERPC_EXCP_ITLB;
                    env->error_code = 0;
J
j_mayer 已提交
1546 1547
                    env->spr[SPR_40x_DEAR] = address;
                    env->spr[SPR_40x_ESR] = 0x00000000;
1548
                    break;
1549
                case POWERPC_MMU_32B:
J
j_mayer 已提交
1550
                case POWERPC_MMU_601:
1551
#if defined(TARGET_PPC64)
1552
                case POWERPC_MMU_620:
1553
                case POWERPC_MMU_64B:
1554
#endif
1555 1556 1557
                    env->exception_index = POWERPC_EXCP_ISI;
                    env->error_code = 0x40000000;
                    break;
1558
                case POWERPC_MMU_BOOKE:
1559
                    /* XXX: TODO */
1560
                    cpu_abort(env, "BookE MMU model is not implemented\n");
1561
                    return -1;
1562
                case POWERPC_MMU_BOOKE_FSL:
1563
                    /* XXX: TODO */
1564
                    cpu_abort(env, "BookE FSL MMU model is not implemented\n");
1565
                    return -1;
1566 1567 1568 1569 1570 1571 1572
                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");
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
                env->exception_index = POWERPC_EXCP_ISI;
                env->error_code = 0x08000000;
1583 1584
                break;
            case -3:
1585
                /* No execute protection violation */
1586 1587
                env->exception_index = POWERPC_EXCP_ISI;
                env->error_code = 0x10000000;
1588 1589 1590 1591
                break;
            case -4:
                /* Direct store exception */
                /* No code fetch is allowed in direct-store areas */
1592 1593
                env->exception_index = POWERPC_EXCP_ISI;
                env->error_code = 0x10000000;
1594
                break;
1595
#if defined(TARGET_PPC64)
1596 1597
            case -5:
                /* No match in segment table */
1598 1599 1600 1601 1602 1603 1604 1605
                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;
                }
1606
                break;
1607
#endif
1608 1609 1610 1611
            }
        } else {
            switch (ret) {
            case -1:
1612
                /* No matches in page tables or TLB */
1613 1614
                switch (env->mmu_model) {
                case POWERPC_MMU_SOFT_6xx:
1615
                    if (rw == 1) {
1616 1617
                        env->exception_index = POWERPC_EXCP_DSTLB;
                        env->error_code = 1 << 16;
1618
                    } else {
1619 1620
                        env->exception_index = POWERPC_EXCP_DLTLB;
                        env->error_code = 0;
1621 1622 1623 1624
                    }
                    env->spr[SPR_DMISS] = address;
                    env->spr[SPR_DCMP] = 0x80000000 | ctx.ptem;
                tlb_miss:
1625
                    env->error_code |= ctx.key << 19;
1626 1627
                    env->spr[SPR_HASH1] = ctx.pg_addr[0];
                    env->spr[SPR_HASH2] = ctx.pg_addr[1];
1628
                    break;
1629 1630
                case POWERPC_MMU_SOFT_74xx:
                    if (rw == 1) {
1631
                        env->exception_index = POWERPC_EXCP_DSTLB;
1632
                    } else {
1633
                        env->exception_index = POWERPC_EXCP_DLTLB;
1634 1635 1636
                    }
                tlb_miss_74xx:
                    /* Implement LRU algorithm */
1637
                    env->error_code = ctx.key << 19;
1638 1639 1640 1641
                    env->spr[SPR_TLBMISS] = (address & ~((target_ulong)0x3)) |
                        ((env->last_way + 1) & (env->nb_ways - 1));
                    env->spr[SPR_PTEHI] = 0x80000000 | ctx.ptem;
                    break;
1642 1643
                case POWERPC_MMU_SOFT_4xx:
                case POWERPC_MMU_SOFT_4xx_Z:
1644 1645
                    env->exception_index = POWERPC_EXCP_DTLB;
                    env->error_code = 0;
J
j_mayer 已提交
1646 1647 1648 1649 1650
                    env->spr[SPR_40x_DEAR] = address;
                    if (rw)
                        env->spr[SPR_40x_ESR] = 0x00800000;
                    else
                        env->spr[SPR_40x_ESR] = 0x00000000;
1651
                    break;
1652
                case POWERPC_MMU_32B:
J
j_mayer 已提交
1653
                case POWERPC_MMU_601:
1654
#if defined(TARGET_PPC64)
1655
                case POWERPC_MMU_620:
1656
                case POWERPC_MMU_64B:
1657
#endif
1658 1659 1660 1661 1662 1663 1664 1665
                    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;
1666 1667 1668 1669
                case POWERPC_MMU_MPC8xx:
                    /* XXX: TODO */
                    cpu_abort(env, "MPC8xx MMU model is not implemented\n");
                    break;
1670
                case POWERPC_MMU_BOOKE:
1671
                    /* XXX: TODO */
1672
                    cpu_abort(env, "BookE MMU model is not implemented\n");
1673
                    return -1;
1674
                case POWERPC_MMU_BOOKE_FSL:
1675
                    /* XXX: TODO */
1676
                    cpu_abort(env, "BookE FSL MMU model is not implemented\n");
1677
                    return -1;
1678 1679 1680
                case POWERPC_MMU_REAL:
                    cpu_abort(env, "PowerPC in real mode should never raise "
                              "any MMU exceptions\n");
1681
                    return -1;
1682 1683 1684
                default:
                    cpu_abort(env, "Unknown or invalid MMU model\n");
                    return -1;
1685
                }
1686 1687 1688
                break;
            case -2:
                /* Access rights violation */
1689 1690 1691 1692 1693 1694 1695
                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;
1696 1697 1698 1699 1700 1701
                break;
            case -4:
                /* Direct store exception */
                switch (access_type) {
                case ACCESS_FLOAT:
                    /* Floating point load/store */
1702 1703 1704
                    env->exception_index = POWERPC_EXCP_ALIGN;
                    env->error_code = POWERPC_EXCP_ALIGN_FP;
                    env->spr[SPR_DAR] = address;
1705 1706
                    break;
                case ACCESS_RES:
1707 1708 1709 1710 1711 1712 1713 1714
                    /* 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;
1715 1716 1717
                    break;
                case ACCESS_EXT:
                    /* eciwx or ecowx */
1718 1719 1720 1721 1722 1723 1724
                    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;
1725 1726
                    break;
                default:
1727
                    printf("DSI: invalid exception (%d)\n", ret);
1728 1729 1730 1731
                    env->exception_index = POWERPC_EXCP_PROGRAM;
                    env->error_code =
                        POWERPC_EXCP_INVAL | POWERPC_EXCP_INVAL_INVAL;
                    env->spr[SPR_DAR] = address;
1732 1733
                    break;
                }
1734
                break;
1735
#if defined(TARGET_PPC64)
1736 1737
            case -5:
                /* No match in segment table */
1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751
                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;
                }
1752
                break;
1753
#endif
1754 1755 1756
            }
        }
#if 0
1757 1758
        printf("%s: set exception to %d %02x\n", __func__,
               env->exception, env->error_code);
1759 1760 1761
#endif
        ret = 1;
    }
1762

1763 1764 1765
    return ret;
}

1766 1767 1768
/*****************************************************************************/
/* BATs management */
#if !defined(FLUSH_ALL_TLBS)
1769 1770 1771
static always_inline void do_invalidate_BAT (CPUPPCState *env,
                                             target_ulong BATu,
                                             target_ulong mask)
1772 1773
{
    target_ulong base, end, page;
1774

1775 1776 1777
    base = BATu & ~0x0001FFFF;
    end = base + mask + 0x00020000;
#if defined (DEBUG_BATS)
1778
    if (loglevel != 0) {
1779
        fprintf(logfile, "Flush BAT from " ADDRX " to " ADDRX " (" ADDRX ")\n",
1780 1781
                base, end, mask);
    }
1782 1783 1784 1785 1786 1787 1788 1789 1790 1791
#endif
    for (page = base; page != end; page += TARGET_PAGE_SIZE)
        tlb_flush_page(env, page);
#if defined (DEBUG_BATS)
    if (loglevel != 0)
        fprintf(logfile, "Flush done\n");
#endif
}
#endif

1792 1793
static always_inline void dump_store_bat (CPUPPCState *env, char ID,
                                          int ul, int nr, target_ulong value)
1794 1795 1796
{
#if defined (DEBUG_BATS)
    if (loglevel != 0) {
1797
        fprintf(logfile, "Set %cBAT%d%c to " ADDRX " (" ADDRX ")\n",
1798
                ID, nr, ul == 0 ? 'u' : 'l', value, env->nip);
1799 1800 1801 1802
    }
#endif
}

A
aurel32 已提交
1803
void ppc_store_ibatu (CPUPPCState *env, int nr, target_ulong value)
1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822
{
    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);
1823
#else
1824 1825 1826 1827 1828
        tlb_flush(env, 1);
#endif
    }
}

A
aurel32 已提交
1829
void ppc_store_ibatl (CPUPPCState *env, int nr, target_ulong value)
1830 1831 1832 1833 1834
{
    dump_store_bat(env, 'I', 1, nr, value);
    env->IBAT[1][nr] = value;
}

A
aurel32 已提交
1835
void ppc_store_dbatu (CPUPPCState *env, int nr, target_ulong value)
1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860
{
    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 已提交
1861
void ppc_store_dbatl (CPUPPCState *env, int nr, target_ulong value)
1862 1863 1864 1865 1866
{
    dump_store_bat(env, 'D', 1, nr, value);
    env->DBAT[1][nr] = value;
}

A
aurel32 已提交
1867
void ppc_store_ibatu_601 (CPUPPCState *env, int nr, target_ulong value)
1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903
{
    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 已提交
1904
void ppc_store_ibatl_601 (CPUPPCState *env, int nr, target_ulong value)
1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936
{
    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 已提交
1937 1938 1939 1940
/*****************************************************************************/
/* TLB management */
void ppc_tlb_invalidate_all (CPUPPCState *env)
{
1941 1942
    switch (env->mmu_model) {
    case POWERPC_MMU_SOFT_6xx:
1943
    case POWERPC_MMU_SOFT_74xx:
J
j_mayer 已提交
1944
        ppc6xx_tlb_invalidate_all(env);
1945 1946 1947
        break;
    case POWERPC_MMU_SOFT_4xx:
    case POWERPC_MMU_SOFT_4xx_Z:
J
j_mayer 已提交
1948
        ppc4xx_tlb_invalidate_all(env);
1949
        break;
1950
    case POWERPC_MMU_REAL:
1951 1952
        cpu_abort(env, "No TLB for PowerPC 4xx in real mode\n");
        break;
1953 1954 1955 1956
    case POWERPC_MMU_MPC8xx:
        /* XXX: TODO */
        cpu_abort(env, "MPC8xx MMU model is not implemented\n");
        break;
1957 1958
    case POWERPC_MMU_BOOKE:
        /* XXX: TODO */
1959
        cpu_abort(env, "BookE MMU model is not implemented\n");
1960 1961 1962
        break;
    case POWERPC_MMU_BOOKE_FSL:
        /* XXX: TODO */
1963
        cpu_abort(env, "BookE MMU model is not implemented\n");
1964 1965
        break;
    case POWERPC_MMU_32B:
J
j_mayer 已提交
1966
    case POWERPC_MMU_601:
J
j_mayer 已提交
1967
#if defined(TARGET_PPC64)
1968
    case POWERPC_MMU_620:
1969
    case POWERPC_MMU_64B:
J
j_mayer 已提交
1970
#endif /* defined(TARGET_PPC64) */
J
j_mayer 已提交
1971
        tlb_flush(env, 1);
1972
        break;
J
j_mayer 已提交
1973 1974
    default:
        /* XXX: TODO */
1975
        cpu_abort(env, "Unknown MMU model\n");
J
j_mayer 已提交
1976
        break;
J
j_mayer 已提交
1977 1978 1979
    }
}

1980 1981 1982 1983 1984 1985
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:
1986
    case POWERPC_MMU_SOFT_74xx:
1987 1988 1989 1990 1991 1992 1993 1994
        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;
1995
    case POWERPC_MMU_REAL:
1996 1997
        cpu_abort(env, "No TLB for PowerPC 4xx in real mode\n");
        break;
1998 1999 2000 2001
    case POWERPC_MMU_MPC8xx:
        /* XXX: TODO */
        cpu_abort(env, "MPC8xx MMU model is not implemented\n");
        break;
2002 2003
    case POWERPC_MMU_BOOKE:
        /* XXX: TODO */
2004
        cpu_abort(env, "BookE MMU model is not implemented\n");
2005 2006 2007
        break;
    case POWERPC_MMU_BOOKE_FSL:
        /* XXX: TODO */
2008
        cpu_abort(env, "BookE FSL MMU model is not implemented\n");
2009 2010
        break;
    case POWERPC_MMU_32B:
J
j_mayer 已提交
2011
    case POWERPC_MMU_601:
2012
        /* tlbie invalidate TLBs for all segments */
2013
        addr &= ~((target_ulong)-1ULL << 28);
2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032
        /* 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));
2033
        break;
J
j_mayer 已提交
2034
#if defined(TARGET_PPC64)
2035
    case POWERPC_MMU_620:
2036 2037 2038
    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 已提交
2039
         *      and we still don't have a tlb_flush_mask(env, n, mask) in Qemu,
2040 2041 2042 2043
         *      we just invalidate all TLBs
         */
        tlb_flush(env, 1);
        break;
J
j_mayer 已提交
2044 2045 2046
#endif /* defined(TARGET_PPC64) */
    default:
        /* XXX: TODO */
2047
        cpu_abort(env, "Unknown MMU model\n");
J
j_mayer 已提交
2048
        break;
2049 2050 2051 2052 2053 2054
    }
#else
    ppc_tlb_invalidate_all(env);
#endif
}

2055 2056
/*****************************************************************************/
/* Special registers manipulation */
2057 2058 2059 2060 2061 2062 2063 2064 2065 2066
#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 已提交
2067
void ppc_store_sdr1 (CPUPPCState *env, target_ulong value)
2068 2069 2070
{
#if defined (DEBUG_MMU)
    if (loglevel != 0) {
2071
        fprintf(logfile, "%s: " ADDRX "\n", __func__, value);
2072 2073 2074
    }
#endif
    if (env->sdr1 != value) {
2075 2076 2077
        /* XXX: for PowerPC 64, should check that the HTABSIZE value
         *      is <= 28
         */
2078
        env->sdr1 = value;
2079
        tlb_flush(env, 1);
2080 2081 2082
    }
}

A
aurel32 已提交
2083
void ppc_store_sr (CPUPPCState *env, int srnum, target_ulong value)
2084 2085 2086
{
#if defined (DEBUG_MMU)
    if (loglevel != 0) {
2087
        fprintf(logfile, "%s: reg=%d " ADDRX " " ADDRX "\n",
2088
                __func__, srnum, value, env->sr[srnum]);
2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102
    }
#endif
    if (env->sr[srnum] != value) {
        env->sr[srnum] = value;
#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
2103
        tlb_flush(env, 1);
2104 2105 2106
#endif
    }
}
2107
#endif /* !defined (CONFIG_USER_ONLY) */
2108

2109
/* GDBstub can read and write MSR... */
2110
void ppc_store_msr (CPUPPCState *env, target_ulong value)
2111
{
2112
    hreg_store_msr(env, value, 0);
2113 2114 2115 2116
}

/*****************************************************************************/
/* Exception processing */
2117
#if defined (CONFIG_USER_ONLY)
2118
void do_interrupt (CPUState *env)
B
bellard 已提交
2119
{
2120 2121
    env->exception_index = POWERPC_EXCP_NONE;
    env->error_code = 0;
2122
}
2123

2124
void ppc_hw_interrupt (CPUState *env)
2125
{
2126 2127
    env->exception_index = POWERPC_EXCP_NONE;
    env->error_code = 0;
2128
}
2129
#else /* defined (CONFIG_USER_ONLY) */
J
j_mayer 已提交
2130
static always_inline void dump_syscall (CPUState *env)
2131
{
2132 2133 2134 2135
    fprintf(logfile, "syscall r0=" REGX " r3=" REGX " r4=" REGX
            " r5=" REGX " r6=" REGX " nip=" ADDRX "\n",
            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);
2136 2137
}

2138 2139 2140 2141 2142
/* Note that this function should be greatly optimized
 * when called with a constant excp, from ppc_hw_interrupt
 */
static always_inline void powerpc_excp (CPUState *env,
                                        int excp_model, int excp)
2143
{
2144
    target_ulong msr, new_msr, vector;
2145
    int srr0, srr1, asrr0, asrr1;
2146
    int lpes0, lpes1, lev;
B
bellard 已提交
2147

2148 2149 2150 2151 2152 2153 2154 2155 2156 2157
    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;
    }

B
bellard 已提交
2158
    if (loglevel & CPU_LOG_INT) {
2159
        fprintf(logfile, "Raise exception at " ADDRX " => %08x (%02x)\n",
2160
                env->nip, excp, env->error_code);
B
bellard 已提交
2161
    }
2162 2163
    msr = env->msr;
    new_msr = msr;
2164 2165 2166 2167 2168
    srr0 = SPR_SRR0;
    srr1 = SPR_SRR1;
    asrr0 = -1;
    asrr1 = -1;
    msr &= ~((target_ulong)0x783F0000);
2169
    switch (excp) {
2170 2171 2172 2173
    case POWERPC_EXCP_NONE:
        /* Should never happen */
        return;
    case POWERPC_EXCP_CRITICAL:    /* Critical input                         */
2174
        new_msr &= ~((target_ulong)1 << MSR_RI); /* XXX: check this */
2175
        switch (excp_model) {
2176
        case POWERPC_EXCP_40x:
2177 2178
            srr0 = SPR_40x_SRR2;
            srr1 = SPR_40x_SRR3;
2179
            break;
2180
        case POWERPC_EXCP_BOOKE:
2181 2182
            srr0 = SPR_BOOKE_CSRR0;
            srr1 = SPR_BOOKE_CSRR1;
2183
            break;
2184
        case POWERPC_EXCP_G2:
2185
            break;
2186 2187
        default:
            goto excp_invalid;
2188
        }
2189
        goto store_next;
2190 2191
    case POWERPC_EXCP_MCHECK:    /* Machine check exception                  */
        if (msr_me == 0) {
2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203
            /* Machine check exception is not enabled.
             * Enter checkstop state.
             */
            if (loglevel != 0) {
                fprintf(logfile, "Machine check while not allowed. "
                        "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;
2204
        }
2205 2206
        new_msr &= ~((target_ulong)1 << MSR_RI);
        new_msr &= ~((target_ulong)1 << MSR_ME);
2207 2208
        if (0) {
            /* XXX: find a suitable condition to enable the hypervisor mode */
2209
            new_msr |= (target_ulong)MSR_HVB;
2210
        }
2211 2212
        /* XXX: should also have something loaded in DAR / DSISR */
        switch (excp_model) {
2213
        case POWERPC_EXCP_40x:
2214 2215
            srr0 = SPR_40x_SRR2;
            srr1 = SPR_40x_SRR3;
2216
            break;
2217
        case POWERPC_EXCP_BOOKE:
2218 2219 2220 2221
            srr0 = SPR_BOOKE_MCSRR0;
            srr1 = SPR_BOOKE_MCSRR1;
            asrr0 = SPR_BOOKE_CSRR0;
            asrr1 = SPR_BOOKE_CSRR1;
2222 2223 2224
            break;
        default:
            break;
2225
        }
2226 2227
        goto store_next;
    case POWERPC_EXCP_DSI:       /* Data storage exception                   */
2228
#if defined (DEBUG_EXCEPTIONS)
J
j_mayer 已提交
2229
        if (loglevel != 0) {
2230 2231
            fprintf(logfile, "DSI exception: DSISR=" ADDRX" DAR=" ADDRX "\n",
                    env->spr[SPR_DSISR], env->spr[SPR_DAR]);
2232
        }
2233
#endif
2234
        new_msr &= ~((target_ulong)1 << MSR_RI);
2235
        if (lpes1 == 0)
2236
            new_msr |= (target_ulong)MSR_HVB;
2237
        goto store_next;
2238
    case POWERPC_EXCP_ISI:       /* Instruction storage exception            */
2239
#if defined (DEBUG_EXCEPTIONS)
2240
        if (loglevel != 0) {
2241 2242
            fprintf(logfile, "ISI exception: msr=" ADDRX ", nip=" ADDRX "\n",
                    msr, env->nip);
2243
        }
2244
#endif
2245
        new_msr &= ~((target_ulong)1 << MSR_RI);
2246
        if (lpes1 == 0)
2247
            new_msr |= (target_ulong)MSR_HVB;
2248
        msr |= env->error_code;
2249
        goto store_next;
2250
    case POWERPC_EXCP_EXTERNAL:  /* External input                           */
2251
        new_msr &= ~((target_ulong)1 << MSR_RI);
2252
        if (lpes0 == 1)
2253
            new_msr |= (target_ulong)MSR_HVB;
2254
        goto store_next;
2255
    case POWERPC_EXCP_ALIGN:     /* Alignment exception                      */
2256
        new_msr &= ~((target_ulong)1 << MSR_RI);
2257
        if (lpes1 == 0)
2258
            new_msr |= (target_ulong)MSR_HVB;
2259 2260 2261
        /* XXX: this is false */
        /* Get rS/rD and rA from faulting opcode */
        env->spr[SPR_DSISR] |= (ldl_code((env->nip - 4)) & 0x03FF0000) >> 16;
2262
        goto store_current;
2263
    case POWERPC_EXCP_PROGRAM:   /* Program exception                        */
2264
        switch (env->error_code & ~0xF) {
2265 2266
        case POWERPC_EXCP_FP:
            if ((msr_fe0 == 0 && msr_fe1 == 0) || msr_fp == 0) {
2267
#if defined (DEBUG_EXCEPTIONS)
J
j_mayer 已提交
2268
                if (loglevel != 0) {
2269 2270
                    fprintf(logfile, "Ignore floating point exception\n");
                }
2271
#endif
2272 2273
                env->exception_index = POWERPC_EXCP_NONE;
                env->error_code = 0;
2274
                return;
2275
            }
2276
            new_msr &= ~((target_ulong)1 << MSR_RI);
2277
            if (lpes1 == 0)
2278
                new_msr |= (target_ulong)MSR_HVB;
2279
            msr |= 0x00100000;
2280 2281 2282
            if (msr_fe0 == msr_fe1)
                goto store_next;
            msr |= 0x00010000;
2283
            break;
2284
        case POWERPC_EXCP_INVAL:
2285
#if defined (DEBUG_EXCEPTIONS)
J
j_mayer 已提交
2286
            if (loglevel != 0) {
2287
                fprintf(logfile, "Invalid instruction at " ADDRX "\n",
2288 2289
                        env->nip);
            }
2290
#endif
2291
            new_msr &= ~((target_ulong)1 << MSR_RI);
2292
            if (lpes1 == 0)
2293
                new_msr |= (target_ulong)MSR_HVB;
2294
            msr |= 0x00080000;
2295
            break;
2296
        case POWERPC_EXCP_PRIV:
2297
            new_msr &= ~((target_ulong)1 << MSR_RI);
2298
            if (lpes1 == 0)
2299
                new_msr |= (target_ulong)MSR_HVB;
2300
            msr |= 0x00040000;
2301
            break;
2302
        case POWERPC_EXCP_TRAP:
2303
            new_msr &= ~((target_ulong)1 << MSR_RI);
2304
            if (lpes1 == 0)
2305
                new_msr |= (target_ulong)MSR_HVB;
2306 2307 2308 2309
            msr |= 0x00020000;
            break;
        default:
            /* Should never occur */
2310 2311
            cpu_abort(env, "Invalid program exception %d. Aborting\n",
                      env->error_code);
2312 2313
            break;
        }
2314
        goto store_current;
2315
    case POWERPC_EXCP_FPU:       /* Floating-point unavailable exception     */
2316
        new_msr &= ~((target_ulong)1 << MSR_RI);
2317
        if (lpes1 == 0)
2318
            new_msr |= (target_ulong)MSR_HVB;
2319 2320
        goto store_current;
    case POWERPC_EXCP_SYSCALL:   /* System call exception                    */
2321 2322
        /* NOTE: this is a temporary hack to support graphics OSI
           calls from the MOL driver */
2323
        /* XXX: To be removed */
2324 2325
        if (env->gpr[3] == 0x113724fa && env->gpr[4] == 0x77810f9b &&
            env->osi_call) {
2326 2327 2328
            if (env->osi_call(env) != 0) {
                env->exception_index = POWERPC_EXCP_NONE;
                env->error_code = 0;
2329
                return;
2330
            }
2331
        }
B
bellard 已提交
2332
        if (loglevel & CPU_LOG_INT) {
2333
            dump_syscall(env);
B
bellard 已提交
2334
        }
2335
        new_msr &= ~((target_ulong)1 << MSR_RI);
2336
        lev = env->error_code;
2337
        if (lev == 1 || (lpes0 == 0 && lpes1 == 0))
2338
            new_msr |= (target_ulong)MSR_HVB;
2339 2340
        goto store_next;
    case POWERPC_EXCP_APU:       /* Auxiliary processor unavailable          */
2341
        new_msr &= ~((target_ulong)1 << MSR_RI);
2342 2343
        goto store_current;
    case POWERPC_EXCP_DECR:      /* Decrementer exception                    */
2344
        new_msr &= ~((target_ulong)1 << MSR_RI);
2345
        if (lpes1 == 0)
2346
            new_msr |= (target_ulong)MSR_HVB;
2347 2348 2349 2350 2351 2352 2353
        goto store_next;
    case POWERPC_EXCP_FIT:       /* Fixed-interval timer interrupt           */
        /* FIT on 4xx */
#if defined (DEBUG_EXCEPTIONS)
        if (loglevel != 0)
            fprintf(logfile, "FIT exception\n");
#endif
2354
        new_msr &= ~((target_ulong)1 << MSR_RI); /* XXX: check this */
2355
        goto store_next;
2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368
    case POWERPC_EXCP_WDT:       /* Watchdog timer interrupt                 */
#if defined (DEBUG_EXCEPTIONS)
        if (loglevel != 0)
            fprintf(logfile, "WDT exception\n");
#endif
        switch (excp_model) {
        case POWERPC_EXCP_BOOKE:
            srr0 = SPR_BOOKE_CSRR0;
            srr1 = SPR_BOOKE_CSRR1;
            break;
        default:
            break;
        }
2369
        new_msr &= ~((target_ulong)1 << MSR_RI); /* XXX: check this */
2370
        goto store_next;
2371
    case POWERPC_EXCP_DTLB:      /* Data TLB error                           */
2372
        new_msr &= ~((target_ulong)1 << MSR_RI); /* XXX: check this */
2373 2374
        goto store_next;
    case POWERPC_EXCP_ITLB:      /* Instruction TLB error                    */
2375
        new_msr &= ~((target_ulong)1 << MSR_RI); /* XXX: check this */
2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387
        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;
        }
2388
        /* XXX: TODO */
2389
        cpu_abort(env, "Debug exception is not implemented yet !\n");
2390
        goto store_next;
2391
    case POWERPC_EXCP_SPEU:      /* SPE/embedded floating-point unavailable  */
2392
        new_msr &= ~((target_ulong)1 << MSR_RI); /* XXX: check this */
2393 2394
        goto store_current;
    case POWERPC_EXCP_EFPDI:     /* Embedded floating-point data interrupt   */
2395
        /* XXX: TODO */
2396
        cpu_abort(env, "Embedded floating point data exception "
2397 2398
                  "is not implemented yet !\n");
        goto store_next;
2399
    case POWERPC_EXCP_EFPRI:     /* Embedded floating-point round interrupt  */
2400
        /* XXX: TODO */
2401 2402
        cpu_abort(env, "Embedded floating point round exception "
                  "is not implemented yet !\n");
2403
        goto store_next;
2404
    case POWERPC_EXCP_EPERFM:    /* Embedded performance monitor interrupt   */
2405
        new_msr &= ~((target_ulong)1 << MSR_RI);
2406 2407
        /* XXX: TODO */
        cpu_abort(env,
2408
                  "Performance counter exception is not implemented yet !\n");
2409
        goto store_next;
2410
    case POWERPC_EXCP_DOORI:     /* Embedded doorbell interrupt              */
2411
        /* XXX: TODO */
2412 2413
        cpu_abort(env,
                  "Embedded doorbell interrupt is not implemented yet !\n");
2414
        goto store_next;
2415 2416 2417 2418 2419
    case POWERPC_EXCP_DOORCI:    /* Embedded doorbell critical interrupt     */
        switch (excp_model) {
        case POWERPC_EXCP_BOOKE:
            srr0 = SPR_BOOKE_CSRR0;
            srr1 = SPR_BOOKE_CSRR1;
2420
            break;
2421 2422 2423
        default:
            break;
        }
2424 2425 2426 2427 2428
        /* XXX: TODO */
        cpu_abort(env, "Embedded doorbell critical interrupt "
                  "is not implemented yet !\n");
        goto store_next;
    case POWERPC_EXCP_RESET:     /* System reset exception                   */
2429
        new_msr &= ~((target_ulong)1 << MSR_RI);
2430 2431 2432 2433
        if (0) {
            /* XXX: find a suitable condition to enable the hypervisor mode */
            new_msr |= (target_ulong)MSR_HVB;
        }
2434 2435
        goto store_next;
    case POWERPC_EXCP_DSEG:      /* Data segment exception                   */
2436
        new_msr &= ~((target_ulong)1 << MSR_RI);
2437
        if (lpes1 == 0)
2438
            new_msr |= (target_ulong)MSR_HVB;
2439 2440
        goto store_next;
    case POWERPC_EXCP_ISEG:      /* Instruction segment exception            */
2441
        new_msr &= ~((target_ulong)1 << MSR_RI);
2442
        if (lpes1 == 0)
2443
            new_msr |= (target_ulong)MSR_HVB;
2444 2445 2446
        goto store_next;
    case POWERPC_EXCP_HDECR:     /* Hypervisor decrementer exception         */
        srr0 = SPR_HSRR0;
2447
        srr1 = SPR_HSRR1;
2448
        new_msr |= (target_ulong)MSR_HVB;
2449
        goto store_next;
2450
    case POWERPC_EXCP_TRACE:     /* Trace exception                          */
2451
        new_msr &= ~((target_ulong)1 << MSR_RI);
2452
        if (lpes1 == 0)
2453
            new_msr |= (target_ulong)MSR_HVB;
2454 2455 2456
        goto store_next;
    case POWERPC_EXCP_HDSI:      /* Hypervisor data storage exception        */
        srr0 = SPR_HSRR0;
2457
        srr1 = SPR_HSRR1;
2458
        new_msr |= (target_ulong)MSR_HVB;
2459 2460 2461
        goto store_next;
    case POWERPC_EXCP_HISI:      /* Hypervisor instruction storage exception */
        srr0 = SPR_HSRR0;
2462
        srr1 = SPR_HSRR1;
2463
        new_msr |= (target_ulong)MSR_HVB;
2464 2465 2466
        goto store_next;
    case POWERPC_EXCP_HDSEG:     /* Hypervisor data segment exception        */
        srr0 = SPR_HSRR0;
2467
        srr1 = SPR_HSRR1;
2468
        new_msr |= (target_ulong)MSR_HVB;
2469 2470 2471
        goto store_next;
    case POWERPC_EXCP_HISEG:     /* Hypervisor instruction segment exception */
        srr0 = SPR_HSRR0;
2472
        srr1 = SPR_HSRR1;
2473
        new_msr |= (target_ulong)MSR_HVB;
2474 2475
        goto store_next;
    case POWERPC_EXCP_VPU:       /* Vector unavailable exception             */
2476
        new_msr &= ~((target_ulong)1 << MSR_RI);
2477
        if (lpes1 == 0)
2478
            new_msr |= (target_ulong)MSR_HVB;
2479 2480
        goto store_current;
    case POWERPC_EXCP_PIT:       /* Programmable interval timer interrupt    */
2481
#if defined (DEBUG_EXCEPTIONS)
2482 2483 2484
        if (loglevel != 0)
            fprintf(logfile, "PIT exception\n");
#endif
2485
        new_msr &= ~((target_ulong)1 << MSR_RI); /* XXX: check this */
2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500
        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              */
2501
        new_msr &= ~((target_ulong)1 << MSR_RI); /* XXX: check this */
2502 2503
        if (lpes1 == 0) /* XXX: check this */
            new_msr |= (target_ulong)MSR_HVB;
2504
        switch (excp_model) {
2505 2506 2507 2508
        case POWERPC_EXCP_602:
        case POWERPC_EXCP_603:
        case POWERPC_EXCP_603E:
        case POWERPC_EXCP_G2:
2509
            goto tlb_miss_tgpr;
2510
        case POWERPC_EXCP_7x5:
2511
            goto tlb_miss;
2512 2513
        case POWERPC_EXCP_74xx:
            goto tlb_miss_74xx;
2514
        default:
2515
            cpu_abort(env, "Invalid instruction TLB miss exception\n");
2516 2517
            break;
        }
2518 2519
        break;
    case POWERPC_EXCP_DLTLB:     /* Data load TLB miss                       */
2520
        new_msr &= ~((target_ulong)1 << MSR_RI); /* XXX: check this */
2521 2522
        if (lpes1 == 0) /* XXX: check this */
            new_msr |= (target_ulong)MSR_HVB;
2523
        switch (excp_model) {
2524 2525 2526 2527
        case POWERPC_EXCP_602:
        case POWERPC_EXCP_603:
        case POWERPC_EXCP_603E:
        case POWERPC_EXCP_G2:
2528
            goto tlb_miss_tgpr;
2529
        case POWERPC_EXCP_7x5:
2530
            goto tlb_miss;
2531 2532
        case POWERPC_EXCP_74xx:
            goto tlb_miss_74xx;
2533
        default:
2534
            cpu_abort(env, "Invalid data load TLB miss exception\n");
2535 2536
            break;
        }
2537 2538
        break;
    case POWERPC_EXCP_DSTLB:     /* Data store TLB miss                      */
2539
        new_msr &= ~((target_ulong)1 << MSR_RI); /* XXX: check this */
2540 2541
        if (lpes1 == 0) /* XXX: check this */
            new_msr |= (target_ulong)MSR_HVB;
2542
        switch (excp_model) {
2543 2544 2545 2546
        case POWERPC_EXCP_602:
        case POWERPC_EXCP_603:
        case POWERPC_EXCP_603E:
        case POWERPC_EXCP_G2:
2547
        tlb_miss_tgpr:
2548
            /* Swap temporary saved registers with GPRs */
2549 2550 2551 2552
            if (!(new_msr & ((target_ulong)1 << MSR_TGPR))) {
                new_msr |= (target_ulong)1 << MSR_TGPR;
                hreg_swap_gpr_tgpr(env);
            }
2553 2554 2555
            goto tlb_miss;
        case POWERPC_EXCP_7x5:
        tlb_miss:
2556 2557
#if defined (DEBUG_SOFTWARE_TLB)
            if (loglevel != 0) {
2558 2559 2560
                const unsigned char *es;
                target_ulong *miss, *cmp;
                int en;
J
j_mayer 已提交
2561
                if (excp == POWERPC_EXCP_IFTLB) {
2562 2563 2564 2565 2566
                    es = "I";
                    en = 'I';
                    miss = &env->spr[SPR_IMISS];
                    cmp = &env->spr[SPR_ICMP];
                } else {
J
j_mayer 已提交
2567
                    if (excp == POWERPC_EXCP_DLTLB)
2568 2569 2570 2571 2572 2573 2574
                        es = "DL";
                    else
                        es = "DS";
                    en = 'D';
                    miss = &env->spr[SPR_DMISS];
                    cmp = &env->spr[SPR_DCMP];
                }
2575
                fprintf(logfile, "6xx %sTLB miss: %cM " ADDRX " %cC " ADDRX
J
j_mayer 已提交
2576
                        " H1 " ADDRX " H2 " ADDRX " %08x\n",
2577
                        es, en, *miss, en, *cmp,
2578
                        env->spr[SPR_HASH1], env->spr[SPR_HASH2],
2579 2580
                        env->error_code);
            }
2581
#endif
2582 2583 2584
            msr |= env->crf[0] << 28;
            msr |= env->error_code; /* key, D/I, S/L bits */
            /* Set way using a LRU mechanism */
2585
            msr |= ((env->last_way + 1) & (env->nb_ways - 1)) << 17;
2586
            break;
2587 2588 2589 2590 2591 2592 2593 2594 2595 2596
        case POWERPC_EXCP_74xx:
        tlb_miss_74xx:
#if defined (DEBUG_SOFTWARE_TLB)
            if (loglevel != 0) {
                const unsigned char *es;
                target_ulong *miss, *cmp;
                int en;
                if (excp == POWERPC_EXCP_IFTLB) {
                    es = "I";
                    en = 'I';
2597 2598
                    miss = &env->spr[SPR_TLBMISS];
                    cmp = &env->spr[SPR_PTEHI];
2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614
                } else {
                    if (excp == POWERPC_EXCP_DLTLB)
                        es = "DL";
                    else
                        es = "DS";
                    en = 'D';
                    miss = &env->spr[SPR_TLBMISS];
                    cmp = &env->spr[SPR_PTEHI];
                }
                fprintf(logfile, "74xx %sTLB miss: %cM " ADDRX " %cC " ADDRX
                        " %08x\n",
                        es, en, *miss, en, *cmp, env->error_code);
            }
#endif
            msr |= env->error_code; /* key bit */
            break;
2615
        default:
2616
            cpu_abort(env, "Invalid data store TLB miss exception\n");
2617 2618
            break;
        }
2619 2620 2621 2622 2623 2624
        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;
2625 2626 2627 2628
    case POWERPC_EXCP_DABR:      /* Data address breakpoint                  */
        /* XXX: TODO */
        cpu_abort(env, "DABR exception is not implemented yet !\n");
        goto store_next;
2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642
    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   */
2643
        new_msr &= ~((target_ulong)1 << MSR_RI);
2644
        if (lpes1 == 0)
2645
            new_msr |= (target_ulong)MSR_HVB;
2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663
        /* 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;
2664 2665 2666 2667 2668 2669 2670 2671 2672 2673
    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;
2674
    default:
2675 2676 2677
    excp_invalid:
        cpu_abort(env, "Invalid PowerPC exception %d. Aborting\n", excp);
        break;
2678
    store_current:
2679
        /* save current instruction location */
2680
        env->spr[srr0] = env->nip - 4;
2681 2682
        break;
    store_next:
2683
        /* save next instruction location */
2684
        env->spr[srr0] = env->nip;
2685 2686
        break;
    }
2687 2688 2689 2690 2691 2692 2693
    /* 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];
2694
    /* If we disactivated any translation, flush TLBs */
2695
    if (new_msr & ((1 << MSR_IR) | (1 << MSR_DR)))
2696
        tlb_flush(env, 1);
2697
    /* reload MSR with correct bits */
2698 2699 2700 2701 2702 2703 2704 2705 2706
    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);
2707
#if 0 /* Fix this: not on all targets */
2708
    new_msr &= ~((target_ulong)1 << MSR_PMM);
2709
#endif
2710 2711 2712 2713 2714
    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);
2715 2716
    /* Jump to handler */
    vector = env->excp_vectors[excp];
2717
    if (vector == (target_ulong)-1ULL) {
2718 2719 2720 2721
        cpu_abort(env, "Raised an exception without defined vector %d\n",
                  excp);
    }
    vector |= env->excp_prefix;
2722
#if defined(TARGET_PPC64)
2723
    if (excp_model == POWERPC_EXCP_BOOKE) {
2724 2725
        if (!msr_icm) {
            new_msr &= ~((target_ulong)1 << MSR_CM);
2726
            vector = (uint32_t)vector;
2727 2728 2729
        } else {
            new_msr |= (target_ulong)1 << MSR_CM;
        }
2730
    } else {
2731 2732
        if (!msr_isf) {
            new_msr &= ~((target_ulong)1 << MSR_SF);
2733
            vector = (uint32_t)vector;
2734 2735 2736
        } else {
            new_msr |= (target_ulong)1 << MSR_SF;
        }
2737
    }
2738
#endif
2739 2740 2741
    /* 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
     */
2742
    env->msr = new_msr & env->msr_mask;
2743
    hreg_compute_hflags(env);
2744 2745 2746 2747
    env->nip = vector;
    /* Reset exception state */
    env->exception_index = POWERPC_EXCP_NONE;
    env->error_code = 0;
B
bellard 已提交
2748
}
2749

2750
void do_interrupt (CPUState *env)
2751
{
2752 2753
    powerpc_excp(env, env->excp_model, env->exception_index);
}
2754

2755 2756
void ppc_hw_interrupt (CPUPPCState *env)
{
2757 2758
    int hdice;

2759
#if 0
2760 2761 2762
    if (loglevel & CPU_LOG_INT) {
        fprintf(logfile, "%s: %p pending %08x req %08x me %d ee %d\n",
                __func__, env, env->pending_interrupts,
2763
                env->interrupt_request, (int)msr_me, (int)msr_ee);
2764
    }
2765
#endif
2766
    /* External reset */
2767 2768
    if (env->pending_interrupts & (1 << PPC_INTERRUPT_RESET)) {
        env->pending_interrupts &= ~(1 << PPC_INTERRUPT_RESET);
2769 2770 2771 2772 2773 2774 2775 2776
        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;
2777
    }
2778 2779 2780 2781 2782 2783 2784 2785
#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
2786 2787 2788 2789 2790 2791
    if (0) {
        /* XXX: find a suitable condition to enable the hypervisor mode */
        hdice = env->spr[SPR_LPCR] & 1;
    } else {
        hdice = 0;
    }
2792
    if ((msr_ee != 0 || msr_hv == 0 || msr_pr != 0) && hdice != 0) {
2793 2794 2795
        /* Hypervisor decrementer exception */
        if (env->pending_interrupts & (1 << PPC_INTERRUPT_HDECR)) {
            env->pending_interrupts &= ~(1 << PPC_INTERRUPT_HDECR);
2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807
            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);
2808
#endif
2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836
            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;
        }
2837 2838 2839
        /* Decrementer exception */
        if (env->pending_interrupts & (1 << PPC_INTERRUPT_DECR)) {
            env->pending_interrupts &= ~(1 << PPC_INTERRUPT_DECR);
2840 2841 2842
            powerpc_excp(env, env->excp_model, POWERPC_EXCP_DECR);
            return;
        }
2843
        /* External interrupt */
2844
        if (env->pending_interrupts & (1 << PPC_INTERRUPT_EXT)) {
2845 2846 2847 2848
            /* Taking an external interrupt does not clear the external
             * interrupt status
             */
#if 0
2849
            env->pending_interrupts &= ~(1 << PPC_INTERRUPT_EXT);
2850
#endif
2851 2852 2853 2854 2855 2856 2857
            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;
2858
        }
2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869
        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;
        }
2870 2871
    }
}
2872
#endif /* !CONFIG_USER_ONLY */
2873

J
j_mayer 已提交
2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885
void cpu_dump_rfi (target_ulong RA, target_ulong msr)
{
    FILE *f;

    if (logfile) {
        f = logfile;
    } else {
        f = stdout;
        return;
    }
    fprintf(f, "Return from exception at " ADDRX " with flags " ADDRX "\n",
            RA, msr);
2886 2887
}

J
j_mayer 已提交
2888 2889 2890
void cpu_ppc_reset (void *opaque)
{
    CPUPPCState *env;
2891
    target_ulong msr;
J
j_mayer 已提交
2892 2893

    env = opaque;
2894
    msr = (target_ulong)0;
2895 2896 2897 2898
    if (0) {
        /* XXX: find a suitable condition to enable the hypervisor mode */
        msr |= (target_ulong)MSR_HVB;
    }
2899 2900 2901
    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 已提交
2902 2903
#if defined (DO_SINGLE_STEP) && 0
    /* Single step trace mode */
2904 2905
    msr |= (target_ulong)1 << MSR_SE;
    msr |= (target_ulong)1 << MSR_BE;
J
j_mayer 已提交
2906 2907
#endif
#if defined(CONFIG_USER_ONLY)
2908 2909
    msr |= (target_ulong)1 << MSR_FP; /* Allow floating point usage */
    msr |= (target_ulong)1 << MSR_PR;
2910
#else
2911
    env->nip = env->hreset_vector | env->excp_prefix;
2912
    if (env->mmu_model != POWERPC_MMU_REAL)
2913
        ppc_tlb_invalidate_all(env);
J
j_mayer 已提交
2914
#endif
2915 2916
    env->msr = msr;
    hreg_compute_hflags(env);
2917
    env->reserve = (target_ulong)-1ULL;
2918 2919
    /* Be sure no exception or interrupt is pending */
    env->pending_interrupts = 0;
2920 2921
    env->exception_index = POWERPC_EXCP_NONE;
    env->error_code = 0;
2922 2923
    /* Flush all TLBs */
    tlb_flush(env, 1);
J
j_mayer 已提交
2924 2925
}

B
bellard 已提交
2926
CPUPPCState *cpu_ppc_init (const char *cpu_model)
J
j_mayer 已提交
2927 2928
{
    CPUPPCState *env;
B
bellard 已提交
2929 2930 2931 2932 2933
    const ppc_def_t *def;

    def = cpu_ppc_find_by_name(cpu_model);
    if (!def)
        return NULL;
J
j_mayer 已提交
2934 2935 2936 2937 2938

    env = qemu_mallocz(sizeof(CPUPPCState));
    if (!env)
        return NULL;
    cpu_exec_init(env);
P
pbrook 已提交
2939
    ppc_translate_init();
2940
    env->cpu_model_str = cpu_model;
B
bellard 已提交
2941 2942
    cpu_ppc_register_internal(env, def);
    cpu_ppc_reset(env);
J
j_mayer 已提交
2943 2944 2945 2946 2947 2948
    return env;
}

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