helper.c 82.6 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 31 32

//#define DEBUG_MMU
//#define DEBUG_BATS
33
//#define DEBUG_SOFTWARE_TLB
34
//#define DEBUG_EXCEPTIONS
35
//#define FLUSH_ALL_TLBS
36 37

/*****************************************************************************/
38
/* PowerPC MMU emulation */
39

40
#if defined(CONFIG_USER_ONLY)
41
int cpu_ppc_handle_mmu_fault (CPUState *env, target_ulong address, int rw,
42 43 44
                              int is_user, int is_softmmu)
{
    int exception, error_code;
45

46
    if (rw == 2) {
47
        exception = POWERPC_EXCP_ISI;
48 49
        error_code = 0;
    } else {
50
        exception = POWERPC_EXCP_DSI;
51 52 53 54 55 56 57 58
        error_code = 0;
        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;
59

60 61
    return 1;
}
62

63
target_phys_addr_t cpu_get_phys_page_debug (CPUState *env, target_ulong addr)
64 65 66
{
    return addr;
}
67

68
#else
69 70 71 72 73 74 75 76 77 78 79
/* Common routines used by software and hardware TLBs emulation */
static inline int pte_is_valid (target_ulong pte0)
{
    return pte0 & 0x80000000 ? 1 : 0;
}

static inline void pte_invalidate (target_ulong *pte0)
{
    *pte0 &= ~0x80000000;
}

80 81 82 83 84 85 86 87 88 89 90 91
#if defined(TARGET_PPC64)
static inline int pte64_is_valid (target_ulong pte0)
{
    return pte0 & 0x0000000000000001ULL ? 1 : 0;
}

static inline void pte64_invalidate (target_ulong *pte0)
{
    *pte0 &= ~0x0000000000000001ULL;
}
#endif

92 93
#define PTE_PTEM_MASK 0x7FFFFFBF
#define PTE_CHECK_MASK (TARGET_PAGE_MASK | 0x7B)
94 95 96 97
#if defined(TARGET_PPC64)
#define PTE64_PTEM_MASK 0xFFFFFFFFFFFFFF80ULL
#define PTE64_CHECK_MASK (TARGET_PAGE_MASK | 0x7F)
#endif
98

99 100 101
static inline int _pte_check (mmu_ctx_t *ctx, int is_64b,
                              target_ulong pte0, target_ulong pte1,
                              int h, int rw)
102
{
103 104
    target_ulong ptem, mmask;
    int access, ret, pteh, ptev;
105 106 107 108

    access = 0;
    ret = -1;
    /* Check validity and table match */
109 110 111 112 113 114 115 116 117 118 119
#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) {
120
        /* Check vsid & api */
121 122 123 124 125 126 127 128 129 130 131
#if defined(TARGET_PPC64)
        if (is_64b) {
            ptem = pte0 & PTE64_PTEM_MASK;
            mmask = PTE64_CHECK_MASK;
        } else
#endif
        {
            ptem = pte0 & PTE_PTEM_MASK;
            mmask = PTE_CHECK_MASK;
        }
        if (ptem == ctx->ptem) {
132 133
            if (ctx->raddr != (target_ulong)-1) {
                /* all matches should have equal RPN, WIMG & PP */
134 135
                if ((ctx->raddr & mmask) != (pte1 & mmask)) {
                    if (loglevel != 0)
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
                        fprintf(logfile, "Bad RPN/WIMG/PP\n");
                    return -3;
                }
            }
            /* Compute access rights */
            if (ctx->key == 0) {
                access = PAGE_READ;
                if ((pte1 & 0x00000003) != 0x3)
                    access |= PAGE_WRITE;
            } else {
                switch (pte1 & 0x00000003) {
                case 0x0:
                    access = 0;
                    break;
                case 0x1:
                case 0x3:
                    access = PAGE_READ;
                    break;
                case 0x2:
                    access = PAGE_READ | PAGE_WRITE;
                    break;
                }
            }
            /* Keep the matching PTE informations */
            ctx->raddr = pte1;
            ctx->prot = access;
            if ((rw == 0 && (access & PAGE_READ)) ||
                (rw == 1 && (access & PAGE_WRITE))) {
                /* Access granted */
#if defined (DEBUG_MMU)
J
j_mayer 已提交
166
                if (loglevel != 0)
167 168 169 170 171 172
                    fprintf(logfile, "PTE access granted !\n");
#endif
                ret = 0;
            } else {
                /* Access right violation */
#if defined (DEBUG_MMU)
J
j_mayer 已提交
173
                if (loglevel != 0)
174 175 176 177 178 179 180 181 182 183
                    fprintf(logfile, "PTE access rejected\n");
#endif
                ret = -2;
            }
        }
    }

    return ret;
}

184 185 186 187 188 189 190 191 192 193 194 195 196 197
static int pte32_check (mmu_ctx_t *ctx,
                        target_ulong pte0, target_ulong pte1, int h, int rw)
{
    return _pte_check(ctx, 0, pte0, pte1, h, rw);
}

#if defined(TARGET_PPC64)
static int pte64_check (mmu_ctx_t *ctx,
                        target_ulong pte0, target_ulong pte1, int h, int rw)
{
    return _pte_check(ctx, 1, pte0, pte1, h, rw);
}
#endif

198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241
static int pte_update_flags (mmu_ctx_t *ctx, target_ulong *pte1p,
                             int ret, int rw)
{
    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 */
static int ppc6xx_tlb_getnum (CPUState *env, target_ulong eaddr,
                              int way, int is_code)
{
    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;
}

void ppc6xx_tlb_invalidate_all (CPUState *env)
{
242
    ppc6xx_tlb_t *tlb;
243 244 245 246 247 248 249 250 251 252 253 254
    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++) {
255
        tlb = &env->tlb[nr].tlb6;
256 257 258 259 260 261 262 263 264 265 266 267 268 269
#if !defined(FLUSH_ALL_TLBS)
        tlb_flush_page(env, tlb->EPN);
#endif
        pte_invalidate(&tlb->pte0);
    }
#if defined(FLUSH_ALL_TLBS)
    tlb_flush(env, 1);
#endif
}

static inline void __ppc6xx_tlb_invalidate_virt (CPUState *env,
                                                 target_ulong eaddr,
                                                 int is_code, int match_epn)
{
J
j_mayer 已提交
270
#if !defined(FLUSH_ALL_TLBS)
271
    ppc6xx_tlb_t *tlb;
272 273 274 275 276
    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);
277
        tlb = &env->tlb[nr].tlb6;
278 279 280
        if (pte_is_valid(tlb->pte0) && (match_epn == 0 || eaddr == tlb->EPN)) {
#if defined (DEBUG_SOFTWARE_TLB)
            if (loglevel != 0) {
281
                fprintf(logfile, "TLB invalidate %d/%d " ADDRX "\n",
282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303
                        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
}

void ppc6xx_tlb_invalidate_virt (CPUState *env, target_ulong eaddr,
                                 int is_code)
{
    __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)
{
304
    ppc6xx_tlb_t *tlb;
305 306 307
    int nr;

    nr = ppc6xx_tlb_getnum(env, EPN, way, is_code);
308
    tlb = &env->tlb[nr].tlb6;
309 310
#if defined (DEBUG_SOFTWARE_TLB)
    if (loglevel != 0) {
311
        fprintf(logfile, "Set TLB %d/%d EPN " ADDRX " PTE0 " ADDRX
312
                " PTE1 " ADDRX "\n", nr, env->nb_tlb, EPN, pte0, pte1);
313 314 315 316 317 318 319 320 321 322 323 324 325 326
    }
#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;
}

static int ppc6xx_tlb_check (CPUState *env, mmu_ctx_t *ctx,
                             target_ulong eaddr, int rw, int access_type)
{
327
    ppc6xx_tlb_t *tlb;
328 329
    int nr, best, way;
    int ret;
330

331 332 333 334 335
    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);
336
        tlb = &env->tlb[nr].tlb6;
337 338 339 340
        /* 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) {
341 342
                fprintf(logfile, "TLB %d/%d %s [" ADDRX " " ADDRX
                        "] <> " ADDRX "\n",
343 344 345 346 347 348 349 350 351
                        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) {
352 353
            fprintf(logfile, "TLB %d/%d %s " ADDRX " <> " ADDRX " " ADDRX
                    " %c %c\n",
354 355 356 357 358 359
                    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
360
        switch (pte32_check(ctx, tlb->pte0, tlb->pte1, 0, rw)) {
361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386
        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 已提交
387
        if (loglevel != 0) {
388 389 390 391 392
            fprintf(logfile, "found TLB at addr 0x%08lx prot=0x%01x ret=%d\n",
                    ctx->raddr & TARGET_PAGE_MASK, ctx->prot, ret);
        }
#endif
        /* Update page flags */
393
        pte_update_flags(ctx, &env->tlb[best].tlb6.pte1, ret, rw);
394 395 396 397 398
    }

    return ret;
}

399
/* Perform BAT hit & translation */
400 401
static int get_bat (CPUState *env, mmu_ctx_t *ctx,
                    target_ulong virtual, int rw, int type)
402
{
403 404
    target_ulong *BATlt, *BATut, *BATu, *BATl;
    target_ulong base, BEPIl, BEPIu, bl;
405 406 407 408
    int i;
    int ret = -1;

#if defined (DEBUG_BATS)
J
j_mayer 已提交
409
    if (loglevel != 0) {
410
        fprintf(logfile, "%s: %cBAT v 0x" ADDRX "\n", __func__,
411
                type == ACCESS_CODE ? 'I' : 'D', virtual);
412 413 414 415 416 417 418 419 420 421 422 423 424
    }
#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;
    }
#if defined (DEBUG_BATS)
J
j_mayer 已提交
425
    if (loglevel != 0) {
426
        fprintf(logfile, "%s...: %cBAT v 0x" ADDRX "\n", __func__,
427
                type == ACCESS_CODE ? 'I' : 'D', virtual);
428 429 430 431 432 433 434 435 436 437
    }
#endif
    base = virtual & 0xFFFC0000;
    for (i = 0; i < 4; i++) {
        BATu = &BATut[i];
        BATl = &BATlt[i];
        BEPIu = *BATu & 0xF0000000;
        BEPIl = *BATu & 0x0FFE0000;
        bl = (*BATu & 0x00001FFC) << 15;
#if defined (DEBUG_BATS)
J
j_mayer 已提交
438
        if (loglevel != 0) {
439
            fprintf(logfile, "%s: %cBAT%d v 0x" ADDRX " BATu 0x" ADDRX
440
                    " BATl 0x" ADDRX "\n",
441 442 443 444 445 446 447 448 449 450
                    __func__, type == ACCESS_CODE ? 'I' : 'D', i, virtual,
                    *BATu, *BATl);
        }
#endif
        if ((virtual & 0xF0000000) == BEPIu &&
            ((virtual & 0x0FFE0000) & ~bl) == BEPIl) {
            /* BAT matches */
            if ((msr_pr == 0 && (*BATu & 0x00000002)) ||
                (msr_pr == 1 && (*BATu & 0x00000001))) {
                /* Get physical address */
451
                ctx->raddr = (*BATl & 0xF0000000) |
452
                    ((virtual & 0x0FFE0000 & bl) | (*BATl & 0x0FFE0000)) |
453
                    (virtual & 0x0001F000);
454
                if (*BATl & 0x00000001)
455
                    ctx->prot = PAGE_READ;
456
                if (*BATl & 0x00000002)
457
                    ctx->prot = PAGE_WRITE | PAGE_READ;
458
#if defined (DEBUG_BATS)
J
j_mayer 已提交
459 460
                if (loglevel != 0) {
                    fprintf(logfile, "BAT %d match: r 0x" PADDRX
461
                            " prot=%c%c\n",
462 463
                            i, ctx->raddr, ctx->prot & PAGE_READ ? 'R' : '-',
                            ctx->prot & PAGE_WRITE ? 'W' : '-');
464 465 466 467 468 469 470 471 472
                }
#endif
                ret = 0;
                break;
            }
        }
    }
    if (ret < 0) {
#if defined (DEBUG_BATS)
J
j_mayer 已提交
473 474 475 476 477 478 479 480 481 482 483 484 485 486
        if (loglevel != 0) {
            fprintf(logfile, "no BAT match for 0x" ADDRX ":\n", virtual);
            for (i = 0; i < 4; i++) {
                BATu = &BATut[i];
                BATl = &BATlt[i];
                BEPIu = *BATu & 0xF0000000;
                BEPIl = *BATu & 0x0FFE0000;
                bl = (*BATu & 0x00001FFC) << 15;
                fprintf(logfile, "%s: %cBAT%d v 0x" ADDRX " BATu 0x" ADDRX
                        " BATl 0x" ADDRX " \n\t"
                        "0x" ADDRX " 0x" ADDRX " 0x" ADDRX "\n",
                        __func__, type == ACCESS_CODE ? 'I' : 'D', i, virtual,
                        *BATu, *BATl, BEPIu, BEPIl, bl);
            }
487 488 489 490 491 492 493 494
        }
#endif
    }
    /* No hit */
    return ret;
}

/* PTE table lookup */
495
static inline int _find_pte (mmu_ctx_t *ctx, int is_64b, int h, int rw)
496
{
497 498
    target_ulong base, pte0, pte1;
    int i, good = -1;
499
    int ret, r;
500

501 502
    ret = -1; /* No entry found */
    base = ctx->pg_addr[h];
503
    for (i = 0; i < 8; i++) {
504 505 506 507 508 509 510 511 512 513 514 515
#if defined(TARGET_PPC64)
        if (is_64b) {
            pte0 = ldq_phys(base + (i * 16));
            pte1 =  ldq_phys(base + (i * 16) + 8);
            r = pte64_check(ctx, pte0, pte1, h, rw);
        } else
#endif
        {
            pte0 = ldl_phys(base + (i * 8));
            pte1 =  ldl_phys(base + (i * 8) + 4);
            r = pte32_check(ctx, pte0, pte1, h, rw);
        }
516
#if defined (DEBUG_MMU)
517
        if (loglevel != 0) {
518
            fprintf(logfile, "Load pte from 0x" ADDRX " => 0x" ADDRX
519 520
                    " 0x" ADDRX " %d %d %d 0x" ADDRX "\n",
                    base + (i * 8), pte0, pte1,
521
                    (int)(pte0 >> 31), h, (int)((pte0 >> 6) & 1), ctx->ptem);
522
        }
523
#endif
524
        switch (r) {
525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545
        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;
546 547 548
        }
    }
    if (good != -1) {
549
    done:
550
#if defined (DEBUG_MMU)
J
j_mayer 已提交
551 552
        if (loglevel != 0) {
            fprintf(logfile, "found PTE at addr 0x" PADDRX " prot=0x%01x "
553
                    "ret=%d\n",
554 555
                    ctx->raddr, ctx->prot, ret);
        }
556 557
#endif
        /* Update page flags */
558
        pte1 = ctx->raddr;
559 560 561 562 563 564 565 566 567 568
        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);
            }
        }
569 570 571
    }

    return ret;
B
bellard 已提交
572 573
}

574 575 576 577 578 579 580 581 582 583 584 585 586 587 588
static int find_pte32 (mmu_ctx_t *ctx, int h, int rw)
{
    return _find_pte(ctx, 0, h, rw);
}

#if defined(TARGET_PPC64)
static int find_pte64 (mmu_ctx_t *ctx, int h, int rw)
{
    return _find_pte(ctx, 1, h, rw);
}
#endif

static inline int find_pte (CPUState *env, mmu_ctx_t *ctx, int h, int rw)
{
#if defined(TARGET_PPC64)
589 590
    if (env->mmu_model == POWERPC_MMU_64B ||
        env->mmu_model == POWERPC_MMU_64BRIDGE)
591 592 593 594 595 596
        return find_pte64(ctx, h, rw);
#endif

    return find_pte32(ctx, h, rw);
}

597
static inline target_phys_addr_t get_pgaddr (target_phys_addr_t sdr1,
598
                                             int sdr_sh,
599 600
                                             target_phys_addr_t hash,
                                             target_phys_addr_t mask)
B
bellard 已提交
601
{
602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655
    return (sdr1 & ((target_ulong)(-1ULL) << sdr_sh)) | (hash & mask);
}

#if defined(TARGET_PPC64)
static int slb_lookup (CPUState *env, target_ulong eaddr,
                       target_ulong *vsid, target_ulong *page_mask, int *attr)
{
    target_phys_addr_t sr_base;
    target_ulong mask;
    uint64_t tmp64;
    uint32_t tmp;
    int n, ret;
    int slb_nr;

    ret = -5;
    sr_base = env->spr[SPR_ASR];
    mask = 0x0000000000000000ULL; /* Avoid gcc warning */
#if 0 /* XXX: Fix this */
    slb_nr = env->slb_nr;
#else
    slb_nr = 32;
#endif
    for (n = 0; n < slb_nr; n++) {
        tmp64 = ldq_phys(sr_base);
        if (tmp64 & 0x0000000008000000ULL) {
            /* 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 */
                tmp = ldl_phys(sr_base + 8);
                *vsid = ((tmp64 << 24) | (tmp >> 8)) & 0x0003FFFFFFFFFFFFULL;
                *page_mask = ~mask;
                *attr = tmp & 0xFF;
                ret = 0;
                break;
            }
        }
        sr_base += 12;
    }

    return ret;
B
bellard 已提交
656
}
657
#endif /* defined(TARGET_PPC64) */
B
bellard 已提交
658

659
/* Perform segment based translation */
660 661
static int get_segment (CPUState *env, mmu_ctx_t *ctx,
                        target_ulong eaddr, int rw, int type)
B
bellard 已提交
662
{
663 664 665 666
    target_phys_addr_t sdr, hash, mask, sdr_mask;
    target_ulong sr, vsid, vsid_mask, pgidx, page_mask;
#if defined(TARGET_PPC64)
    int attr;
667
#endif
668 669 670 671
    int ds, nx, vsid_sh, sdr_sh;
    int ret, ret2;

#if defined(TARGET_PPC64)
672
    if (env->mmu_model == POWERPC_MMU_64B) {
673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697
        ret = slb_lookup(env, eaddr, &vsid, &page_mask, &attr);
        if (ret < 0)
            return ret;
        ctx->key = ((attr & 0x40) && msr_pr == 1) ||
            ((attr & 0x80) && msr_pr == 0) ? 1 : 0;
        ds = 0;
        nx = attr & 0x20 ? 1 : 0;
        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;
        ctx->key = (((sr & 0x20000000) && msr_pr == 1) ||
                    ((sr & 0x40000000) && msr_pr == 0)) ? 1 : 0;
        ds = sr & 0x80000000 ? 1 : 0;
        nx = sr & 0x10000000 ? 1 : 0;
        vsid = sr & 0x00FFFFFF;
        vsid_mask = 0x01FFFFC0;
        vsid_sh = 6;
        sdr_sh = 16;
        sdr_mask = 0xFFC0;
698
#if defined (DEBUG_MMU)
699 700 701 702 703 704 705 706
        if (loglevel != 0) {
            fprintf(logfile, "Check segment v=0x" ADDRX " %d 0x" ADDRX
                    " nip=0x" ADDRX " lr=0x" ADDRX
                    " ir=%d dr=%d pr=%d %d t=%d\n",
                    eaddr, (int)(eaddr >> 28), sr, env->nip,
                    env->lr, msr_ir, msr_dr, msr_pr, rw, type);
        }
        if (!ds && loglevel != 0) {
707
            fprintf(logfile, "pte segment: key=%d n=0x" ADDRX "\n",
708
                    ctx->key, sr & 0x10000000);
709
        }
710
#endif
711 712 713
    }
    ret = -1;
    if (!ds) {
714
        /* Check if instruction fetch is allowed, if needed */
715
        if (type != ACCESS_CODE || nx == 0) {
716
            /* Page address translation */
717 718
            pgidx = (eaddr & page_mask) >> TARGET_PAGE_BITS;
            hash = ((vsid ^ pgidx) << vsid_sh) & vsid_mask;
719 720
            /* Primary table address */
            sdr = env->sdr1;
721 722
            mask = ((sdr & 0x000001FF) << sdr_sh) | sdr_mask;
            ctx->pg_addr[0] = get_pgaddr(sdr, sdr_sh, hash, mask);
723
            /* Secondary table address */
724 725 726
            hash = (~hash) & vsid_mask;
            ctx->pg_addr[1] = get_pgaddr(sdr, sdr_sh, hash, mask);
#if defined(TARGET_PPC64)
727 728
            if (env->mmu_model == POWERPC_MMU_64B ||
                env->mmu_model == POWERPC_MMU_64BRIDGE) {
729 730 731 732 733 734 735
                /* 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);
            }
736 737
            /* Initialize real address with an invalid value */
            ctx->raddr = (target_ulong)-1;
738
            if (unlikely(env->mmu_model == POWERPC_MMU_SOFT_6xx)) {
739 740 741
                /* Software TLB search */
                ret = ppc6xx_tlb_check(env, ctx, eaddr, rw, type);
            } else {
742
#if defined (DEBUG_MMU)
J
j_mayer 已提交
743 744 745 746 747
                if (loglevel != 0) {
                    fprintf(logfile, "0 sdr1=0x" PADDRX " vsid=0x%06x "
                            "api=0x%04x hash=0x%07x pg_addr=0x" PADDRX "\n",
                            sdr, (uint32_t)vsid, (uint32_t)pgidx,
                            (uint32_t)hash, ctx->pg_addr[0]);
748
                }
749
#endif
750
                /* Primary table lookup */
751
                ret = find_pte(env, ctx, 0, rw);
752 753
                if (ret < 0) {
                    /* Secondary table lookup */
754
#if defined (DEBUG_MMU)
J
j_mayer 已提交
755
                    if (eaddr != 0xEFFFFFFF && loglevel != 0) {
756
                        fprintf(logfile,
J
j_mayer 已提交
757 758 759 760
                                "1 sdr1=0x" PADDRX " vsid=0x%06x api=0x%04x "
                                "hash=0x%05x pg_addr=0x" PADDRX "\n",
                                sdr, (uint32_t)vsid, (uint32_t)pgidx,
                                (uint32_t)hash, ctx->pg_addr[1]);
761
                    }
762
#endif
763
                    ret2 = find_pte(env, ctx, 1, rw);
764 765 766
                    if (ret2 != -1)
                        ret = ret2;
                }
767 768 769
            }
        } else {
#if defined (DEBUG_MMU)
J
j_mayer 已提交
770
            if (loglevel != 0)
771
                fprintf(logfile, "No access allowed\n");
772
#endif
773
            ret = -3;
774 775 776
        }
    } else {
#if defined (DEBUG_MMU)
J
j_mayer 已提交
777
        if (loglevel != 0)
778
            fprintf(logfile, "direct store...\n");
779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798
#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 :-)
             */
799
            ctx->raddr = eaddr;
800 801 802 803 804 805 806 807 808 809 810
            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;
        }
811 812
        if ((rw == 1 || ctx->key != 1) && (rw == 0 || ctx->key != 0)) {
            ctx->raddr = eaddr;
813 814 815 816
            ret = 2;
        } else {
            ret = -2;
        }
B
bellard 已提交
817
    }
818 819

    return ret;
B
bellard 已提交
820 821
}

822 823 824
/* Generic TLB check function for embedded PowerPC implementations */
static int ppcemb_tlb_check (CPUState *env, ppcemb_tlb_t *tlb,
                             target_phys_addr_t *raddrp,
825 826
                             target_ulong address,
                             uint32_t pid, int ext, int i)
827 828 829 830 831 832 833 834 835 836 837 838 839
{
    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);
    if (loglevel != 0) {
        fprintf(logfile, "%s: TLB %d address " ADDRX " PID %d <=> "
                ADDRX " " ADDRX " %d\n",
840
                __func__, i, address, pid, tlb->EPN, mask, (int)tlb->PID);
841 842
    }
    /* Check PID */
843
    if (tlb->PID != 0 && tlb->PID != pid)
844 845 846 847 848
        return -1;
    /* Check effective address */
    if ((address & mask) != tlb->EPN)
        return -1;
    *raddrp = (tlb->RPN & mask) | (address & ~mask);
849
#if (TARGET_PHYS_ADDR_BITS >= 36)
850 851 852 853
    if (ext) {
        /* Extend the physical address to 36 bits */
        *raddrp |= (target_phys_addr_t)(tlb->RPN & 0xF) << 32;
    }
854
#endif
855 856 857 858 859

    return 0;
}

/* Generic TLB search function for PowerPC embedded implementations */
860
int ppcemb_tlb_search (CPUPPCState *env, target_ulong address, uint32_t pid)
861 862 863 864 865 866 867
{
    ppcemb_tlb_t *tlb;
    target_phys_addr_t raddr;
    int i, ret;

    /* Default return value is no match */
    ret = -1;
868
    for (i = 0; i < env->nb_tlb; i++) {
869
        tlb = &env->tlb[i].tlbe;
870
        if (ppcemb_tlb_check(env, tlb, &raddr, address, pid, 0, i) == 0) {
871 872 873 874 875 876 877 878
            ret = i;
            break;
        }
    }

    return ret;
}

879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898
void ppc4xx_tlb_invalidate_virt (CPUState *env, target_ulong eaddr,
                                 uint32_t pid)
{
    ppcemb_tlb_t *tlb;
    target_phys_addr_t raddr;
    target_ulong page, end;
    int i;

    for (i = 0; i < env->nb_tlb; i++) {
        tlb = &env->tlb[i].tlbe;
        if (ppcemb_tlb_check(env, tlb, &raddr, eaddr, pid, 0, i) == 0) {
            end = tlb->EPN + tlb->size;
            for (page = tlb->EPN; page < end; page += TARGET_PAGE_SIZE)
                tlb_flush_page(env, page);
            tlb->prot &= ~PAGE_VALID;
            break;
        }
    }
}

899
/* Helpers specific to PowerPC 40x implementations */
J
j_mayer 已提交
900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918
void ppc4xx_tlb_invalidate_all (CPUState *env)
{
    ppcemb_tlb_t *tlb;
    int i;

    for (i = 0; i < env->nb_tlb; i++) {
        tlb = &env->tlb[i].tlbe;
        if (tlb->prot & PAGE_VALID) {
#if 0 // XXX: TLB have variable sizes then we flush all Qemu TLB.
            end = tlb->EPN + tlb->size;
            for (page = tlb->EPN; page < end; page += TARGET_PAGE_SIZE)
                tlb_flush_page(env, page);
#endif
            tlb->prot &= ~PAGE_VALID;
        }
    }
    tlb_flush(env, 1);
}

919
int mmu40x_get_physical_address (CPUState *env, mmu_ctx_t *ctx,
920
                                 target_ulong address, int rw, int access_type)
J
j_mayer 已提交
921 922 923 924
{
    ppcemb_tlb_t *tlb;
    target_phys_addr_t raddr;
    int i, ret, zsel, zpr;
925

926 927
    ret = -1;
    raddr = -1;
J
j_mayer 已提交
928 929
    for (i = 0; i < env->nb_tlb; i++) {
        tlb = &env->tlb[i].tlbe;
930 931
        if (ppcemb_tlb_check(env, tlb, &raddr, address,
                             env->spr[SPR_40x_PID], 0, i) < 0)
J
j_mayer 已提交
932 933 934
            continue;
        zsel = (tlb->attr >> 4) & 0xF;
        zpr = (env->spr[SPR_40x_ZPR] >> (28 - (2 * zsel))) & 0x3;
J
j_mayer 已提交
935
        if (loglevel != 0) {
J
j_mayer 已提交
936 937 938 939 940 941
            fprintf(logfile, "%s: TLB %d zsel %d zpr %d rw %d attr %08x\n",
                    __func__, i, zsel, zpr, rw, tlb->attr);
        }
        if (access_type == ACCESS_CODE) {
            /* Check execute enable bit */
            switch (zpr) {
942 943 944 945
            case 0x2:
                if (msr_pr)
                    goto check_exec_perm;
                goto exec_granted;
J
j_mayer 已提交
946 947 948
            case 0x0:
                if (msr_pr) {
                    ctx->prot = 0;
949
                    ret = -3;
J
j_mayer 已提交
950 951 952 953
                    break;
                }
                /* No break here */
            case 0x1:
954
            check_exec_perm:
J
j_mayer 已提交
955 956 957 958
                /* Check from TLB entry */
                if (!(tlb->prot & PAGE_EXEC)) {
                    ret = -3;
                } else {
959
                    if (tlb->prot & PAGE_WRITE) {
J
j_mayer 已提交
960
                        ctx->prot = PAGE_READ | PAGE_WRITE;
961
                    } else {
J
j_mayer 已提交
962
                        ctx->prot = PAGE_READ;
963
                    }
J
j_mayer 已提交
964 965 966 967
                    ret = 0;
                }
                break;
            case 0x3:
968
            exec_granted:
J
j_mayer 已提交
969 970
                /* All accesses granted */
                ctx->prot = PAGE_READ | PAGE_WRITE;
971
                ret = 0;
J
j_mayer 已提交
972 973 974 975
                break;
            }
        } else {
            switch (zpr) {
976 977 978 979
            case 0x2:
                if (msr_pr)
                    goto check_rw_perm;
                goto rw_granted;
J
j_mayer 已提交
980 981 982
            case 0x0:
                if (msr_pr) {
                    ctx->prot = 0;
983
                    ret = -2;
J
j_mayer 已提交
984 985 986 987
                    break;
                }
                /* No break here */
            case 0x1:
988
            check_rw_perm:
J
j_mayer 已提交
989 990
                /* Check from TLB entry */
                /* Check write protection bit */
991 992 993
                if (tlb->prot & PAGE_WRITE) {
                    ctx->prot = PAGE_READ | PAGE_WRITE;
                    ret = 0;
J
j_mayer 已提交
994
                } else {
995 996 997
                    ctx->prot = PAGE_READ;
                    if (rw)
                        ret = -2;
J
j_mayer 已提交
998
                    else
999
                        ret = 0;
J
j_mayer 已提交
1000 1001 1002
                }
                break;
            case 0x3:
1003
            rw_granted:
J
j_mayer 已提交
1004 1005
                /* All accesses granted */
                ctx->prot = PAGE_READ | PAGE_WRITE;
1006
                ret = 0;
J
j_mayer 已提交
1007 1008 1009 1010 1011
                break;
            }
        }
        if (ret >= 0) {
            ctx->raddr = raddr;
J
j_mayer 已提交
1012
            if (loglevel != 0) {
J
j_mayer 已提交
1013
                fprintf(logfile, "%s: access granted " ADDRX " => " REGX
1014 1015
                        " %d %d\n", __func__, address, ctx->raddr, ctx->prot,
                        ret);
J
j_mayer 已提交
1016
            }
1017
            return 0;
J
j_mayer 已提交
1018 1019
        }
    }
J
j_mayer 已提交
1020
    if (loglevel != 0) {
1021 1022 1023 1024
        fprintf(logfile, "%s: access refused " ADDRX " => " REGX
                " %d %d\n", __func__, address, raddr, ctx->prot,
                ret);
    }
1025

J
j_mayer 已提交
1026 1027 1028
    return ret;
}

1029 1030 1031 1032 1033 1034 1035 1036 1037
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;
}

1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083
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;
    raddr = -1;
    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;
        if (msr_pr)
            prot = tlb->prot & 0xF;
        else
            prot = (tlb->prot >> 4) & 0xF;
        /* Check the address space */
        if (access_type == ACCESS_CODE) {
            if (msr_is != (tlb->attr & 1))
                continue;
            ctx->prot = prot;
            if (prot & PAGE_EXEC) {
                ret = 0;
                break;
            }
            ret = -3;
        } else {
            if (msr_ds != (tlb->attr & 1))
                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;
}

1084 1085 1086 1087
static int check_physical (CPUState *env, mmu_ctx_t *ctx,
                           target_ulong eaddr, int rw)
{
    int in_plb, ret;
1088

1089 1090 1091
    ctx->raddr = eaddr;
    ctx->prot = PAGE_READ;
    ret = 0;
1092 1093 1094 1095 1096 1097
    switch (env->mmu_model) {
    case POWERPC_MMU_32B:
    case POWERPC_MMU_SOFT_6xx:
    case POWERPC_MMU_601:
    case POWERPC_MMU_SOFT_4xx:
    case POWERPC_MMU_REAL_4xx:
1098 1099 1100
        ctx->prot |= PAGE_WRITE;
        break;
#if defined(TARGET_PPC64)
1101 1102
    case POWERPC_MMU_64B:
    case POWERPC_MMU_64BRIDGE:
1103
        /* Real address are 60 bits long */
1104
        ctx->raddr &= 0x0FFFFFFFFFFFFFFFULL;
1105 1106
        ctx->prot |= PAGE_WRITE;
        break;
1107
#endif
1108
    case POWERPC_MMU_SOFT_4xx_Z:
1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128
        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;
1129 1130
            }
        }
1131
        break;
1132
    case POWERPC_MMU_BOOKE:
1133
        ctx->prot |= PAGE_WRITE;
1134
        break;
1135
    case POWERPC_MMU_BOOKE_FSL:
1136 1137 1138 1139 1140 1141
        /* 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;
1142 1143 1144 1145 1146 1147 1148
    }

    return ret;
}

int get_physical_address (CPUState *env, mmu_ctx_t *ctx, target_ulong eaddr,
                          int rw, int access_type, int check_BATs)
1149 1150
{
    int ret;
B
bellard 已提交
1151
#if 0
J
j_mayer 已提交
1152
    if (loglevel != 0) {
1153 1154
        fprintf(logfile, "%s\n", __func__);
    }
1155
#endif
B
bellard 已提交
1156 1157
    if ((access_type == ACCESS_CODE && msr_ir == 0) ||
        (access_type != ACCESS_CODE && msr_dr == 0)) {
1158
        /* No address translation */
1159
        ret = check_physical(env, ctx, eaddr, rw);
1160
    } else {
1161
        ret = -1;
1162 1163 1164
        switch (env->mmu_model) {
        case POWERPC_MMU_32B:
        case POWERPC_MMU_SOFT_6xx:
J
j_mayer 已提交
1165 1166 1167
            /* Try to find a BAT */
            if (check_BATs)
                ret = get_bat(env, ctx, eaddr, rw, access_type);
1168 1169
            /* No break here */
#if defined(TARGET_PPC64)
1170 1171
        case POWERPC_MMU_64B:
        case POWERPC_MMU_64BRIDGE:
1172
#endif
J
j_mayer 已提交
1173
            if (ret < 0) {
1174
                /* We didn't match any BAT entry or don't have BATs */
J
j_mayer 已提交
1175 1176 1177
                ret = get_segment(env, ctx, eaddr, rw, access_type);
            }
            break;
1178 1179
        case POWERPC_MMU_SOFT_4xx:
        case POWERPC_MMU_SOFT_4xx_Z:
1180
            ret = mmu40x_get_physical_address(env, ctx, eaddr,
J
j_mayer 已提交
1181 1182
                                              rw, access_type);
            break;
1183
        case POWERPC_MMU_601:
1184 1185 1186
            /* XXX: TODO */
            cpu_abort(env, "601 MMU model not implemented\n");
            return -1;
1187
        case POWERPC_MMU_BOOKE:
1188 1189 1190
            ret = mmubooke_get_physical_address(env, ctx, eaddr,
                                                rw, access_type);
            break;
1191
        case POWERPC_MMU_BOOKE_FSL:
1192 1193 1194
            /* XXX: TODO */
            cpu_abort(env, "BookE FSL MMU model not implemented\n");
            return -1;
1195
        case POWERPC_MMU_REAL_4xx:
1196 1197
            cpu_abort(env, "PowerPC 401 does not do any translation\n");
            return -1;
1198 1199
        default:
            cpu_abort(env, "Unknown or invalid MMU model\n");
J
j_mayer 已提交
1200
            return -1;
1201 1202
        }
    }
B
bellard 已提交
1203
#if 0
J
j_mayer 已提交
1204 1205
    if (loglevel != 0) {
        fprintf(logfile, "%s address " ADDRX " => %d " PADDRX "\n",
1206
                __func__, eaddr, ret, ctx->raddr);
1207
    }
1208
#endif
1209

1210 1211 1212
    return ret;
}

1213
target_phys_addr_t cpu_get_phys_page_debug (CPUState *env, target_ulong addr)
B
bellard 已提交
1214
{
1215
    mmu_ctx_t ctx;
B
bellard 已提交
1216

1217
    if (unlikely(get_physical_address(env, &ctx, addr, 0, ACCESS_INT, 1) != 0))
B
bellard 已提交
1218
        return -1;
1219 1220

    return ctx.raddr & TARGET_PAGE_MASK;
B
bellard 已提交
1221
}
1222 1223

/* Perform address translation */
1224
int cpu_ppc_handle_mmu_fault (CPUState *env, target_ulong address, int rw,
1225
                              int is_user, int is_softmmu)
1226
{
1227
    mmu_ctx_t ctx;
1228
    int exception = 0, error_code = 0;
1229
    int access_type;
1230
    int ret = 0;
1231

B
bellard 已提交
1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242
    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;
    }
1243
    ret = get_physical_address(env, &ctx, address, rw, access_type, 1);
1244
    if (ret == 0) {
1245 1246 1247
        ret = tlb_set_page(env, address & TARGET_PAGE_MASK,
                           ctx.raddr & TARGET_PAGE_MASK, ctx.prot,
                           is_user, is_softmmu);
1248 1249
    } else if (ret < 0) {
#if defined (DEBUG_MMU)
J
j_mayer 已提交
1250
        if (loglevel != 0)
1251
            cpu_dump_state(env, logfile, fprintf, 0);
1252 1253
#endif
        if (access_type == ACCESS_CODE) {
1254
            exception = POWERPC_EXCP_ISI;
1255 1256
            switch (ret) {
            case -1:
1257
                /* No matches in page tables or TLB */
1258 1259
                switch (env->mmu_model) {
                case POWERPC_MMU_SOFT_6xx:
1260
                    exception = POWERPC_EXCP_IFTLB;
1261 1262 1263 1264
                    env->spr[SPR_IMISS] = address;
                    env->spr[SPR_ICMP] = 0x80000000 | ctx.ptem;
                    error_code = 1 << 18;
                    goto tlb_miss;
1265 1266
                case POWERPC_MMU_SOFT_4xx:
                case POWERPC_MMU_SOFT_4xx_Z:
1267
                    exception = POWERPC_EXCP_ITLB;
J
j_mayer 已提交
1268 1269 1270
                    error_code = 0;
                    env->spr[SPR_40x_DEAR] = address;
                    env->spr[SPR_40x_ESR] = 0x00000000;
1271
                    break;
1272
                case POWERPC_MMU_32B:
1273
                    error_code = 0x40000000;
1274 1275
                    break;
#if defined(TARGET_PPC64)
1276
                case POWERPC_MMU_64B:
1277 1278 1279
                    /* XXX: TODO */
                    cpu_abort(env, "MMU model not implemented\n");
                    return -1;
1280
                case POWERPC_MMU_64BRIDGE:
1281 1282 1283 1284
                    /* XXX: TODO */
                    cpu_abort(env, "MMU model not implemented\n");
                    return -1;
#endif
1285
                case POWERPC_MMU_601:
1286 1287 1288
                    /* XXX: TODO */
                    cpu_abort(env, "MMU model not implemented\n");
                    return -1;
1289
                case POWERPC_MMU_BOOKE:
1290 1291 1292
                    /* XXX: TODO */
                    cpu_abort(env, "MMU model not implemented\n");
                    return -1;
1293
                case POWERPC_MMU_BOOKE_FSL:
1294 1295 1296
                    /* XXX: TODO */
                    cpu_abort(env, "MMU model not implemented\n");
                    return -1;
1297
                case POWERPC_MMU_REAL_4xx:
1298 1299 1300
                    cpu_abort(env, "PowerPC 401 should never raise any MMU "
                              "exceptions\n");
                    return -1;
1301 1302 1303
                default:
                    cpu_abort(env, "Unknown or invalid MMU model\n");
                    return -1;
1304
                }
1305 1306 1307
                break;
            case -2:
                /* Access rights violation */
1308
                error_code = 0x08000000;
1309 1310
                break;
            case -3:
1311
                /* No execute protection violation */
1312
                error_code = 0x10000000;
1313 1314 1315 1316
                break;
            case -4:
                /* Direct store exception */
                /* No code fetch is allowed in direct-store areas */
1317 1318
                error_code = 0x10000000;
                break;
1319
#if defined(TARGET_PPC64)
1320 1321
            case -5:
                /* No match in segment table */
1322
                exception = POWERPC_EXCP_ISEG;
1323
                error_code = 0;
1324
                break;
1325
#endif
1326 1327
            }
        } else {
1328
            exception = POWERPC_EXCP_DSI;
1329 1330
            switch (ret) {
            case -1:
1331
                /* No matches in page tables or TLB */
1332 1333
                switch (env->mmu_model) {
                case POWERPC_MMU_SOFT_6xx:
1334
                    if (rw == 1) {
1335
                        exception = POWERPC_EXCP_DSTLB;
1336 1337
                        error_code = 1 << 16;
                    } else {
1338
                        exception = POWERPC_EXCP_DLTLB;
1339 1340 1341 1342 1343 1344 1345 1346 1347 1348
                        error_code = 0;
                    }
                    env->spr[SPR_DMISS] = address;
                    env->spr[SPR_DCMP] = 0x80000000 | ctx.ptem;
                tlb_miss:
                    error_code |= ctx.key << 19;
                    env->spr[SPR_HASH1] = ctx.pg_addr[0];
                    env->spr[SPR_HASH2] = ctx.pg_addr[1];
                    /* Do not alter DAR nor DSISR */
                    goto out;
1349 1350
                case POWERPC_MMU_SOFT_4xx:
                case POWERPC_MMU_SOFT_4xx_Z:
1351
                    exception = POWERPC_EXCP_DTLB;
J
j_mayer 已提交
1352 1353 1354 1355 1356 1357
                    error_code = 0;
                    env->spr[SPR_40x_DEAR] = address;
                    if (rw)
                        env->spr[SPR_40x_ESR] = 0x00800000;
                    else
                        env->spr[SPR_40x_ESR] = 0x00000000;
1358
                    break;
1359
                case POWERPC_MMU_32B:
1360
                    error_code = 0x40000000;
1361 1362
                    break;
#if defined(TARGET_PPC64)
1363
                case POWERPC_MMU_64B:
1364 1365 1366
                    /* XXX: TODO */
                    cpu_abort(env, "MMU model not implemented\n");
                    return -1;
1367
                case POWERPC_MMU_64BRIDGE:
1368 1369 1370 1371
                    /* XXX: TODO */
                    cpu_abort(env, "MMU model not implemented\n");
                    return -1;
#endif
1372
                case POWERPC_MMU_601:
1373 1374 1375
                    /* XXX: TODO */
                    cpu_abort(env, "MMU model not implemented\n");
                    return -1;
1376
                case POWERPC_MMU_BOOKE:
1377 1378 1379
                    /* XXX: TODO */
                    cpu_abort(env, "MMU model not implemented\n");
                    return -1;
1380
                case POWERPC_MMU_BOOKE_FSL:
1381 1382 1383
                    /* XXX: TODO */
                    cpu_abort(env, "MMU model not implemented\n");
                    return -1;
1384
                case POWERPC_MMU_REAL_4xx:
1385 1386 1387
                    cpu_abort(env, "PowerPC 401 should never raise any MMU "
                              "exceptions\n");
                    return -1;
1388 1389 1390
                default:
                    cpu_abort(env, "Unknown or invalid MMU model\n");
                    return -1;
1391
                }
1392 1393 1394
                break;
            case -2:
                /* Access rights violation */
1395
                error_code = 0x08000000;
1396 1397 1398 1399 1400 1401
                break;
            case -4:
                /* Direct store exception */
                switch (access_type) {
                case ACCESS_FLOAT:
                    /* Floating point load/store */
1402 1403
                    exception = POWERPC_EXCP_ALIGN;
                    error_code = POWERPC_EXCP_ALIGN_FP;
1404 1405 1406
                    break;
                case ACCESS_RES:
                    /* lwarx, ldarx or srwcx. */
1407
                    error_code = 0x04000000;
1408 1409 1410
                    break;
                case ACCESS_EXT:
                    /* eciwx or ecowx */
1411
                    error_code = 0x04100000;
1412 1413
                    break;
                default:
1414
                    printf("DSI: invalid exception (%d)\n", ret);
1415 1416
                    exception = POWERPC_EXCP_PROGRAM;
                    error_code = POWERPC_EXCP_INVAL | POWERPC_EXCP_INVAL_INVAL;
1417 1418
                    break;
                }
1419
                break;
1420
#if defined(TARGET_PPC64)
1421 1422
            case -5:
                /* No match in segment table */
1423
                exception = POWERPC_EXCP_DSEG;
1424 1425
                error_code = 0;
                break;
1426
#endif
1427
            }
1428
            if (exception == POWERPC_EXCP_DSI && rw == 1)
1429
                error_code |= 0x02000000;
1430 1431
            /* Store fault address */
            env->spr[SPR_DAR] = address;
1432
            env->spr[SPR_DSISR] = error_code;
1433
        }
1434
    out:
1435 1436 1437 1438 1439 1440 1441 1442
#if 0
        printf("%s: set exception to %d %02x\n",
               __func__, exception, error_code);
#endif
        env->exception_index = exception;
        env->error_code = error_code;
        ret = 1;
    }
1443

1444 1445 1446
    return ret;
}

1447 1448 1449 1450 1451 1452 1453
/*****************************************************************************/
/* BATs management */
#if !defined(FLUSH_ALL_TLBS)
static inline void do_invalidate_BAT (CPUPPCState *env,
                                      target_ulong BATu, target_ulong mask)
{
    target_ulong base, end, page;
1454

1455 1456 1457
    base = BATu & ~0x0001FFFF;
    end = base + mask + 0x00020000;
#if defined (DEBUG_BATS)
1458
    if (loglevel != 0) {
1459
        fprintf(logfile, "Flush BAT from " ADDRX " to " ADDRX " (" ADDRX ")\n",
1460 1461
                base, end, mask);
    }
1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476
#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

static inline void dump_store_bat (CPUPPCState *env, char ID, int ul, int nr,
                                   target_ulong value)
{
#if defined (DEBUG_BATS)
    if (loglevel != 0) {
1477 1478
        fprintf(logfile, "Set %cBAT%d%c to 0x" ADDRX " (0x" ADDRX ")\n",
                ID, nr, ul == 0 ? 'u' : 'l', value, env->nip);
1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512
    }
#endif
}

target_ulong do_load_ibatu (CPUPPCState *env, int nr)
{
    return env->IBAT[0][nr];
}

target_ulong do_load_ibatl (CPUPPCState *env, int nr)
{
    return env->IBAT[1][nr];
}

void do_store_ibatu (CPUPPCState *env, int nr, target_ulong value)
{
    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);
1513
#else
1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566
        tlb_flush(env, 1);
#endif
    }
}

void do_store_ibatl (CPUPPCState *env, int nr, target_ulong value)
{
    dump_store_bat(env, 'I', 1, nr, value);
    env->IBAT[1][nr] = value;
}

target_ulong do_load_dbatu (CPUPPCState *env, int nr)
{
    return env->DBAT[0][nr];
}

target_ulong do_load_dbatl (CPUPPCState *env, int nr)
{
    return env->DBAT[1][nr];
}

void do_store_dbatu (CPUPPCState *env, int nr, target_ulong value)
{
    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
    }
}

void do_store_dbatl (CPUPPCState *env, int nr, target_ulong value)
{
    dump_store_bat(env, 'D', 1, nr, value);
    env->DBAT[1][nr] = value;
}

J
j_mayer 已提交
1567 1568 1569 1570 1571

/*****************************************************************************/
/* TLB management */
void ppc_tlb_invalidate_all (CPUPPCState *env)
{
1572
    if (unlikely(env->mmu_model == POWERPC_MMU_SOFT_6xx)) {
J
j_mayer 已提交
1573
        ppc6xx_tlb_invalidate_all(env);
1574
    } else if (unlikely(env->mmu_model == POWERPC_MMU_SOFT_4xx)) {
J
j_mayer 已提交
1575 1576 1577 1578 1579 1580
        ppc4xx_tlb_invalidate_all(env);
    } else {
        tlb_flush(env, 1);
    }
}

1581 1582
/*****************************************************************************/
/* Special registers manipulation */
1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597
#if defined(TARGET_PPC64)
target_ulong ppc_load_asr (CPUPPCState *env)
{
    return env->asr;
}

void ppc_store_asr (CPUPPCState *env, target_ulong value)
{
    if (env->asr != value) {
        env->asr = value;
        tlb_flush(env, 1);
    }
}
#endif

1598 1599 1600 1601 1602 1603 1604 1605 1606
target_ulong do_load_sdr1 (CPUPPCState *env)
{
    return env->sdr1;
}

void do_store_sdr1 (CPUPPCState *env, target_ulong value)
{
#if defined (DEBUG_MMU)
    if (loglevel != 0) {
1607
        fprintf(logfile, "%s: 0x" ADDRX "\n", __func__, value);
1608 1609 1610 1611
    }
#endif
    if (env->sdr1 != value) {
        env->sdr1 = value;
1612
        tlb_flush(env, 1);
1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624
    }
}

target_ulong do_load_sr (CPUPPCState *env, int srnum)
{
    return env->sr[srnum];
}

void do_store_sr (CPUPPCState *env, int srnum, target_ulong value)
{
#if defined (DEBUG_MMU)
    if (loglevel != 0) {
1625 1626
        fprintf(logfile, "%s: reg=%d 0x" ADDRX " " ADDRX "\n",
                __func__, srnum, value, env->sr[srnum]);
1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640
    }
#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
1641
        tlb_flush(env, 1);
1642 1643 1644
#endif
    }
}
1645
#endif /* !defined (CONFIG_USER_ONLY) */
1646

1647
target_ulong ppc_load_xer (CPUPPCState *env)
B
bellard 已提交
1648 1649 1650 1651
{
    return (xer_so << XER_SO) |
        (xer_ov << XER_OV) |
        (xer_ca << XER_CA) |
1652 1653
        (xer_bc << XER_BC) |
        (xer_cmp << XER_CMP);
B
bellard 已提交
1654 1655
}

1656
void ppc_store_xer (CPUPPCState *env, target_ulong value)
B
bellard 已提交
1657 1658 1659 1660
{
    xer_so = (value >> XER_SO) & 0x01;
    xer_ov = (value >> XER_OV) & 0x01;
    xer_ca = (value >> XER_CA) & 0x01;
1661
    xer_cmp = (value >> XER_CMP) & 0xFF;
1662
    xer_bc = (value >> XER_BC) & 0x7F;
B
bellard 已提交
1663 1664
}

1665 1666
/* Swap temporary saved registers with GPRs */
static inline void swap_gpr_tgpr (CPUPPCState *env)
B
bellard 已提交
1667
{
1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681
    ppc_gpr_t tmp;

    tmp = env->gpr[0];
    env->gpr[0] = env->tgpr[0];
    env->tgpr[0] = tmp;
    tmp = env->gpr[1];
    env->gpr[1] = env->tgpr[1];
    env->tgpr[1] = tmp;
    tmp = env->gpr[2];
    env->gpr[2] = env->tgpr[2];
    env->tgpr[2] = tmp;
    tmp = env->gpr[3];
    env->gpr[3] = env->tgpr[3];
    env->tgpr[3] = tmp;
B
bellard 已提交
1682 1683
}

1684 1685
/* GDBstub can read and write MSR... */
target_ulong do_load_msr (CPUPPCState *env)
B
bellard 已提交
1686
{
1687 1688
    return
#if defined (TARGET_PPC64)
1689 1690 1691
        ((target_ulong)msr_sf   << MSR_SF)   |
        ((target_ulong)msr_isf  << MSR_ISF)  |
        ((target_ulong)msr_hv   << MSR_HV)   |
1692
#endif
1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716
        ((target_ulong)msr_ucle << MSR_UCLE) |
        ((target_ulong)msr_vr   << MSR_VR)   | /* VR / SPE */
        ((target_ulong)msr_ap   << MSR_AP)   |
        ((target_ulong)msr_sa   << MSR_SA)   |
        ((target_ulong)msr_key  << MSR_KEY)  |
        ((target_ulong)msr_pow  << MSR_POW)  | /* POW / WE */
        ((target_ulong)msr_tlb  << MSR_TLB)  | /* TLB / TGPE / CE */
        ((target_ulong)msr_ile  << MSR_ILE)  |
        ((target_ulong)msr_ee   << MSR_EE)   |
        ((target_ulong)msr_pr   << MSR_PR)   |
        ((target_ulong)msr_fp   << MSR_FP)   |
        ((target_ulong)msr_me   << MSR_ME)   |
        ((target_ulong)msr_fe0  << MSR_FE0)  |
        ((target_ulong)msr_se   << MSR_SE)   | /* SE / DWE / UBLE */
        ((target_ulong)msr_be   << MSR_BE)   | /* BE / DE */
        ((target_ulong)msr_fe1  << MSR_FE1)  |
        ((target_ulong)msr_al   << MSR_AL)   |
        ((target_ulong)msr_ip   << MSR_IP)   |
        ((target_ulong)msr_ir   << MSR_IR)   | /* IR / IS */
        ((target_ulong)msr_dr   << MSR_DR)   | /* DR / DS */
        ((target_ulong)msr_pe   << MSR_PE)   | /* PE / EP */
        ((target_ulong)msr_px   << MSR_PX)   | /* PX / PMM */
        ((target_ulong)msr_ri   << MSR_RI)   |
        ((target_ulong)msr_le   << MSR_LE);
1717 1718 1719
}

void do_store_msr (CPUPPCState *env, target_ulong value)
B
bellard 已提交
1720
{
1721 1722
    int enter_pm;

1723 1724 1725
    value &= env->msr_mask;
    if (((value >> MSR_IR) & 1) != msr_ir ||
        ((value >> MSR_DR) & 1) != msr_dr) {
1726
        /* Flush all tlb when changing translation mode */
1727
        tlb_flush(env, 1);
1728
        env->interrupt_request |= CPU_INTERRUPT_EXITTB;
1729
    }
1730 1731 1732 1733 1734
#if 0
    if (loglevel != 0) {
        fprintf(logfile, "%s: T0 %08lx\n", __func__, value);
    }
#endif
1735 1736 1737 1738 1739
    switch (env->excp_model) {
    case POWERPC_EXCP_602:
    case POWERPC_EXCP_603:
    case POWERPC_EXCP_603E:
    case POWERPC_EXCP_G2:
1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776
        if (((value >> MSR_TGPR) & 1) != msr_tgpr) {
            /* Swap temporary saved registers with GPRs */
            swap_gpr_tgpr(env);
        }
        break;
    default:
        break;
    }
#if defined (TARGET_PPC64)
    msr_sf   = (value >> MSR_SF)   & 1;
    msr_isf  = (value >> MSR_ISF)  & 1;
    msr_hv   = (value >> MSR_HV)   & 1;
#endif
    msr_ucle = (value >> MSR_UCLE) & 1;
    msr_vr   = (value >> MSR_VR)   & 1; /* VR / SPE */
    msr_ap   = (value >> MSR_AP)   & 1;
    msr_sa   = (value >> MSR_SA)   & 1;
    msr_key  = (value >> MSR_KEY)  & 1;
    msr_pow  = (value >> MSR_POW)  & 1; /* POW / WE */
    msr_tlb  = (value >> MSR_TLB)  & 1; /* TLB / TGPR / CE */
    msr_ile  = (value >> MSR_ILE)  & 1;
    msr_ee   = (value >> MSR_EE)   & 1;
    msr_pr   = (value >> MSR_PR)   & 1;
    msr_fp   = (value >> MSR_FP)   & 1;
    msr_me   = (value >> MSR_ME)   & 1;
    msr_fe0  = (value >> MSR_FE0)  & 1;
    msr_se   = (value >> MSR_SE)   & 1; /* SE / DWE / UBLE */
    msr_be   = (value >> MSR_BE)   & 1; /* BE / DE */
    msr_fe1  = (value >> MSR_FE1)  & 1;
    msr_al   = (value >> MSR_AL)   & 1;
    msr_ip   = (value >> MSR_IP)   & 1;
    msr_ir   = (value >> MSR_IR)   & 1; /* IR / IS */
    msr_dr   = (value >> MSR_DR)   & 1; /* DR / DS */
    msr_pe   = (value >> MSR_PE)   & 1; /* PE / EP */
    msr_px   = (value >> MSR_PX)   & 1; /* PX / PMM */
    msr_ri   = (value >> MSR_RI)   & 1;
    msr_le   = (value >> MSR_LE)   & 1;
1777
    do_compute_hflags(env);
1778 1779

    enter_pm = 0;
1780 1781 1782 1783
    switch (env->excp_model) {
    case POWERPC_EXCP_603:
    case POWERPC_EXCP_603E:
    case POWERPC_EXCP_G2:
1784 1785 1786 1787 1788 1789
        /* Don't handle SLEEP mode: we should disable all clocks...
         * No dynamic power-management.
         */
        if (msr_pow == 1 && (env->spr[SPR_HID0] & 0x00C00000) != 0)
            enter_pm = 1;
        break;
1790
    case POWERPC_EXCP_604:
1791 1792 1793
        if (msr_pow == 1)
            enter_pm = 1;
        break;
1794
    case POWERPC_EXCP_7x0:
1795
        if (msr_pow == 1 && (env->spr[SPR_HID0] & 0x00E00000) != 0)
1796 1797 1798 1799 1800 1801
            enter_pm = 1;
        break;
    default:
        break;
    }
    if (enter_pm) {
1802 1803 1804 1805 1806 1807
        if (likely(!env->halted)) {
            /* power save: exit cpu loop */
            env->halted = 1;
            env->exception_index = EXCP_HLT;
            cpu_loop_exit();
        }
B
bellard 已提交
1808
    }
1809 1810
}

1811
#if defined(TARGET_PPC64)
J
j_mayer 已提交
1812
void ppc_store_msr_32 (CPUPPCState *env, uint32_t value)
1813
{
J
j_mayer 已提交
1814 1815
    do_store_msr(env,
                 (do_load_msr(env) & ~0xFFFFFFFFULL) | (value & 0xFFFFFFFF));
1816 1817 1818
}
#endif

1819
void do_compute_hflags (CPUPPCState *env)
1820
{
1821
    /* Compute current hflags */
1822
    env->hflags = (msr_vr << MSR_VR) |
1823 1824 1825
        (msr_ap << MSR_AP) | (msr_sa << MSR_SA) | (msr_pr << MSR_PR) |
        (msr_fp << MSR_FP) | (msr_fe0 << MSR_FE0) | (msr_se << MSR_SE) |
        (msr_be << MSR_BE) | (msr_fe1 << MSR_FE1) | (msr_le << MSR_LE);
1826
#if defined (TARGET_PPC64)
1827 1828 1829
    env->hflags |= msr_cm << MSR_CM;
    env->hflags |= (uint64_t)msr_sf << MSR_SF;
    env->hflags |= (uint64_t)msr_hv << MSR_HV;
B
bellard 已提交
1830
#endif
1831 1832 1833 1834
}

/*****************************************************************************/
/* Exception processing */
1835
#if defined (CONFIG_USER_ONLY)
1836
void do_interrupt (CPUState *env)
B
bellard 已提交
1837
{
1838 1839
    env->exception_index = POWERPC_EXCP_NONE;
    env->error_code = 0;
1840
}
1841

1842
void ppc_hw_interrupt (CPUState *env)
1843
{
1844 1845
    env->exception_index = POWERPC_EXCP_NONE;
    env->error_code = 0;
1846
}
1847
#else /* defined (CONFIG_USER_ONLY) */
1848
static void dump_syscall (CPUState *env)
1849
{
1850
    fprintf(logfile, "syscall r0=0x" REGX " r3=0x" REGX " r4=0x" REGX
1851
            " r5=0x" REGX " r6=0x" REGX " nip=0x" ADDRX "\n",
1852 1853 1854 1855
            env->gpr[0], env->gpr[3], env->gpr[4],
            env->gpr[5], env->gpr[6], env->nip);
}

1856 1857 1858 1859 1860
/* 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)
1861
{
1862 1863
    target_ulong msr, vector;
    int srr0, srr1, asrr0, asrr1;
B
bellard 已提交
1864

B
bellard 已提交
1865
    if (loglevel & CPU_LOG_INT) {
1866 1867
        fprintf(logfile, "Raise exception at 0x" ADDRX " => 0x%08x (%02x)\n",
                env->nip, excp, env->error_code);
B
bellard 已提交
1868
    }
1869 1870 1871 1872 1873 1874
    msr = do_load_msr(env);
    srr0 = SPR_SRR0;
    srr1 = SPR_SRR1;
    asrr0 = -1;
    asrr1 = -1;
    msr &= ~((target_ulong)0x783F0000);
1875
    switch (excp) {
1876 1877 1878 1879 1880 1881
    case POWERPC_EXCP_NONE:
        /* Should never happen */
        return;
    case POWERPC_EXCP_CRITICAL:    /* Critical input                         */
        msr_ri = 0; /* XXX: check this */
        switch (excp_model) {
1882
        case POWERPC_EXCP_40x:
1883 1884
            srr0 = SPR_40x_SRR2;
            srr1 = SPR_40x_SRR3;
1885
            break;
1886
        case POWERPC_EXCP_BOOKE:
1887 1888
            srr0 = SPR_BOOKE_CSRR0;
            srr1 = SPR_BOOKE_CSRR1;
1889
            break;
1890
        case POWERPC_EXCP_G2:
1891
            break;
1892 1893
        default:
            goto excp_invalid;
1894
        }
1895
        goto store_next;
1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909
    case POWERPC_EXCP_MCHECK:    /* Machine check exception                  */
        if (msr_me == 0) {
            /* Machine check exception is not enabled */
            /* XXX: we may just stop the processor here, to allow debugging */
            excp = POWERPC_EXCP_RESET;
            goto excp_reset;
        }
        msr_ri = 0;
        msr_me = 0;
#if defined(TARGET_PPC64H)
        msr_hv = 1;
#endif
        /* XXX: should also have something loaded in DAR / DSISR */
        switch (excp_model) {
1910
        case POWERPC_EXCP_40x:
1911 1912
            srr0 = SPR_40x_SRR2;
            srr1 = SPR_40x_SRR3;
1913
            break;
1914
        case POWERPC_EXCP_BOOKE:
1915 1916 1917 1918
            srr0 = SPR_BOOKE_MCSRR0;
            srr1 = SPR_BOOKE_MCSRR1;
            asrr0 = SPR_BOOKE_CSRR0;
            asrr1 = SPR_BOOKE_CSRR1;
1919 1920 1921
            break;
        default:
            break;
1922
        }
1923 1924
        goto store_next;
    case POWERPC_EXCP_DSI:       /* Data storage exception                   */
1925
#if defined (DEBUG_EXCEPTIONS)
J
j_mayer 已提交
1926
        if (loglevel != 0) {
1927 1928
            fprintf(logfile, "DSI exception: DSISR=0x" ADDRX" DAR=0x" ADDRX
                    "\n", env->spr[SPR_DSISR], env->spr[SPR_DAR]);
1929
        }
1930 1931 1932 1933 1934
#endif
        msr_ri = 0;
#if defined(TARGET_PPC64H)
        if (lpes1 == 0)
            msr_hv = 1;
1935 1936
#endif
        goto store_next;
1937
    case POWERPC_EXCP_ISI:       /* Instruction storage exception            */
1938
#if defined (DEBUG_EXCEPTIONS)
1939
        if (loglevel != 0) {
1940 1941
            fprintf(logfile, "ISI exception: msr=0x" ADDRX ", nip=0x" ADDRX
                    "\n", msr, env->nip);
1942
        }
1943
#endif
1944 1945 1946 1947 1948 1949
        msr_ri = 0;
#if defined(TARGET_PPC64H)
        if (lpes1 == 0)
            msr_hv = 1;
#endif
        msr |= env->error_code;
1950
        goto store_next;
1951 1952 1953 1954 1955 1956
    case POWERPC_EXCP_EXTERNAL:  /* External input                           */
        msr_ri = 0;
#if defined(TARGET_PPC64H)
        if (lpes0 == 1)
            msr_hv = 1;
#endif
1957
        goto store_next;
1958 1959 1960 1961 1962 1963 1964 1965 1966
    case POWERPC_EXCP_ALIGN:     /* Alignment exception                      */
        msr_ri = 0;
#if defined(TARGET_PPC64H)
        if (lpes1 == 0)
            msr_hv = 1;
#endif
        /* XXX: this is false */
        /* Get rS/rD and rA from faulting opcode */
        env->spr[SPR_DSISR] |= (ldl_code((env->nip - 4)) & 0x03FF0000) >> 16;
1967
        goto store_current;
1968
    case POWERPC_EXCP_PROGRAM:   /* Program exception                        */
1969
        switch (env->error_code & ~0xF) {
1970 1971
        case POWERPC_EXCP_FP:
            if ((msr_fe0 == 0 && msr_fe1 == 0) || msr_fp == 0) {
1972
#if defined (DEBUG_EXCEPTIONS)
J
j_mayer 已提交
1973
                if (loglevel != 0) {
1974 1975
                    fprintf(logfile, "Ignore floating point exception\n");
                }
1976 1977
#endif
                return;
1978
            }
1979 1980 1981 1982 1983
            msr_ri = 0;
#if defined(TARGET_PPC64H)
            if (lpes1 == 0)
                msr_hv = 1;
#endif
1984 1985 1986 1987 1988 1989 1990
            msr |= 0x00100000;
            /* Set FX */
            env->fpscr[7] |= 0x8;
            /* Finally, update FEX */
            if ((((env->fpscr[7] & 0x3) << 3) | (env->fpscr[6] >> 1)) &
                ((env->fpscr[1] << 1) | (env->fpscr[0] >> 3)))
                env->fpscr[7] |= 0x4;
1991 1992 1993 1994
            if (msr_fe0 != msr_fe1) {
                msr |= 0x00010000;
                goto store_current;
            }
1995
            break;
1996
        case POWERPC_EXCP_INVAL:
1997
#if defined (DEBUG_EXCEPTIONS)
J
j_mayer 已提交
1998
            if (loglevel != 0) {
1999 2000 2001
                fprintf(logfile, "Invalid instruction at 0x" ADDRX "\n",
                        env->nip);
            }
2002 2003 2004 2005 2006
#endif
            msr_ri = 0;
#if defined(TARGET_PPC64H)
            if (lpes1 == 0)
                msr_hv = 1;
2007
#endif
2008
            msr |= 0x00080000;
2009
            break;
2010 2011 2012 2013 2014 2015
        case POWERPC_EXCP_PRIV:
            msr_ri = 0;
#if defined(TARGET_PPC64H)
            if (lpes1 == 0)
                msr_hv = 1;
#endif
2016
            msr |= 0x00040000;
2017
            break;
2018 2019 2020 2021 2022 2023
        case POWERPC_EXCP_TRAP:
            msr_ri = 0;
#if defined(TARGET_PPC64H)
            if (lpes1 == 0)
                msr_hv = 1;
#endif
2024 2025 2026 2027
            msr |= 0x00020000;
            break;
        default:
            /* Should never occur */
2028 2029
            cpu_abort(env, "Invalid program exception %d. Aborting\n",
                      env->error_code);
2030 2031
            break;
        }
2032
        goto store_next;
2033 2034 2035 2036 2037 2038 2039 2040
    case POWERPC_EXCP_FPU:       /* Floating-point unavailable exception     */
        msr_ri = 0;
#if defined(TARGET_PPC64H)
        if (lpes1 == 0)
            msr_hv = 1;
#endif
        goto store_current;
    case POWERPC_EXCP_SYSCALL:   /* System call exception                    */
2041 2042
        /* NOTE: this is a temporary hack to support graphics OSI
           calls from the MOL driver */
2043
        /* XXX: To be removed */
2044 2045 2046 2047 2048
        if (env->gpr[3] == 0x113724fa && env->gpr[4] == 0x77810f9b &&
            env->osi_call) {
            if (env->osi_call(env) != 0)
                return;
        }
B
bellard 已提交
2049
        if (loglevel & CPU_LOG_INT) {
2050
            dump_syscall(env);
B
bellard 已提交
2051
        }
2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074
        msr_ri = 0;
#if defined(TARGET_PPC64H)
        if (lev == 1 || (lpes0 == 0 && lpes1 == 0))
            msr_hv = 1;
#endif
        goto store_next;
    case POWERPC_EXCP_APU:       /* Auxiliary processor unavailable          */
        msr_ri = 0;
        goto store_current;
    case POWERPC_EXCP_DECR:      /* Decrementer exception                    */
        msr_ri = 0;
#if defined(TARGET_PPC64H)
        if (lpes1 == 0)
            msr_hv = 1;
#endif
        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
        msr_ri = 0; /* XXX: check this */
2075
        goto store_next;
2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089
    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;
        }
        msr_ri = 0; /* XXX: check this */
2090
        goto store_next;
2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107
    case POWERPC_EXCP_DTLB:      /* Data TLB error                           */
        msr_ri = 0; /* XXX: check this */
        goto store_next;
    case POWERPC_EXCP_ITLB:      /* Instruction TLB error                    */
        msr_ri = 0; /* XXX: check this */
        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;
        }
2108
        /* XXX: TODO */
2109
        cpu_abort(env, "Debug exception is not implemented yet !\n");
2110
        goto store_next;
2111 2112 2113 2114 2115
#if defined(TARGET_PPCEMB)
    case POWERPC_EXCP_SPEU:      /* SPE/embedded floating-point unavailable  */
        msr_ri = 0; /* XXX: check this */
        goto store_current;
    case POWERPC_EXCP_EFPDI:     /* Embedded floating-point data interrupt   */
2116
        /* XXX: TODO */
2117
        cpu_abort(env, "Embedded floating point data exception "
2118 2119
                  "is not implemented yet !\n");
        goto store_next;
2120
    case POWERPC_EXCP_EFPRI:     /* Embedded floating-point round interrupt  */
2121
        /* XXX: TODO */
2122 2123
        cpu_abort(env, "Embedded floating point round exception "
                  "is not implemented yet !\n");
2124
        goto store_next;
2125 2126
    case POWERPC_EXCP_EPERFM:    /* Embedded performance monitor interrupt   */
        msr_ri = 0;
2127 2128
        /* XXX: TODO */
        cpu_abort(env,
2129
                  "Performance counter exception is not implemented yet !\n");
2130
        goto store_next;
2131
    case POWERPC_EXCP_DOORI:     /* Embedded doorbell interrupt              */
2132
        /* XXX: TODO */
2133 2134
        cpu_abort(env,
                  "Embedded doorbell interrupt is not implemented yet !\n");
2135
        goto store_next;
2136 2137 2138 2139 2140
    case POWERPC_EXCP_DOORCI:    /* Embedded doorbell critical interrupt     */
        switch (excp_model) {
        case POWERPC_EXCP_BOOKE:
            srr0 = SPR_BOOKE_CSRR0;
            srr1 = SPR_BOOKE_CSRR1;
2141
            break;
2142 2143 2144
        default:
            break;
        }
2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224
        /* XXX: TODO */
        cpu_abort(env, "Embedded doorbell critical interrupt "
                  "is not implemented yet !\n");
        goto store_next;
#endif /* defined(TARGET_PPCEMB) */
    case POWERPC_EXCP_RESET:     /* System reset exception                   */
        msr_ri = 0;
#if defined(TARGET_PPC64H)
        msr_hv = 1;
#endif
    excp_reset:
        goto store_next;
#if defined(TARGET_PPC64)
    case POWERPC_EXCP_DSEG:      /* Data segment exception                   */
        msr_ri = 0;
#if defined(TARGET_PPC64H)
        if (lpes1 == 0)
            msr_hv = 1;
#endif
        /* XXX: TODO */
        cpu_abort(env, "Data segment exception is not implemented yet !\n");
        goto store_next;
    case POWERPC_EXCP_ISEG:      /* Instruction segment exception            */
        msr_ri = 0;
#if defined(TARGET_PPC64H)
        if (lpes1 == 0)
            msr_hv = 1;
#endif
        /* XXX: TODO */
        cpu_abort(env,
                  "Instruction segment exception is not implemented yet !\n");
        goto store_next;
#endif /* defined(TARGET_PPC64) */
#if defined(TARGET_PPC64H)
    case POWERPC_EXCP_HDECR:     /* Hypervisor decrementer exception         */
        srr0 = SPR_HSRR0;
        srr1 = SPR_HSSR1;
        msr_hv = 1;
        goto store_next;
#endif
    case POWERPC_EXCP_TRACE:     /* Trace exception                          */
        msr_ri = 0;
#if defined(TARGET_PPC64H)
        if (lpes1 == 0)
            msr_hv = 1;
#endif
        goto store_next;
#if defined(TARGET_PPC64H)
    case POWERPC_EXCP_HDSI:      /* Hypervisor data storage exception        */
        srr0 = SPR_HSRR0;
        srr1 = SPR_HSSR1;
        msr_hv = 1;
        goto store_next;
    case POWERPC_EXCP_HISI:      /* Hypervisor instruction storage exception */
        srr0 = SPR_HSRR0;
        srr1 = SPR_HSSR1;
        msr_hv = 1;
        /* XXX: TODO */
        cpu_abort(env, "Hypervisor instruction storage exception "
                  "is not implemented yet !\n");
        goto store_next;
    case POWERPC_EXCP_HDSEG:     /* Hypervisor data segment exception        */
        srr0 = SPR_HSRR0;
        srr1 = SPR_HSSR1;
        msr_hv = 1;
        goto store_next;
    case POWERPC_EXCP_HISEG:     /* Hypervisor instruction segment exception */
        srr0 = SPR_HSRR0;
        srr1 = SPR_HSSR1;
        msr_hv = 1;
        goto store_next;
#endif /* defined(TARGET_PPC64H) */
    case POWERPC_EXCP_VPU:       /* Vector unavailable exception             */
        msr_ri = 0;
#if defined(TARGET_PPC64H)
        if (lpes1 == 0)
            msr_hv = 1;
#endif
        goto store_current;
    case POWERPC_EXCP_PIT:       /* Programmable interval timer interrupt    */
2225
#if defined (DEBUG_EXCEPTIONS)
2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248
        if (loglevel != 0)
            fprintf(logfile, "PIT exception\n");
#endif
        msr_ri = 0; /* XXX: check this */
        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              */
        msr_ri = 0; /* XXX: check this */
#if defined(TARGET_PPC64H) /* XXX: check this */
        if (lpes1 == 0)
            msr_hv = 1;
2249
#endif
2250
        switch (excp_model) {
2251 2252 2253 2254
        case POWERPC_EXCP_602:
        case POWERPC_EXCP_603:
        case POWERPC_EXCP_603E:
        case POWERPC_EXCP_G2:
2255
            goto tlb_miss_tgpr;
2256
        case POWERPC_EXCP_7x5:
2257
            goto tlb_miss;
2258
        default:
2259
            cpu_abort(env, "Invalid instruction TLB miss exception\n");
2260 2261
            break;
        }
2262 2263 2264 2265 2266 2267
        break;
    case POWERPC_EXCP_DLTLB:     /* Data load TLB miss                       */
        msr_ri = 0; /* XXX: check this */
#if defined(TARGET_PPC64H) /* XXX: check this */
        if (lpes1 == 0)
            msr_hv = 1;
2268
#endif
2269
        switch (excp_model) {
2270 2271 2272 2273
        case POWERPC_EXCP_602:
        case POWERPC_EXCP_603:
        case POWERPC_EXCP_603E:
        case POWERPC_EXCP_G2:
2274
            goto tlb_miss_tgpr;
2275
        case POWERPC_EXCP_7x5:
2276
            goto tlb_miss;
2277
        default:
2278
            cpu_abort(env, "Invalid data load TLB miss exception\n");
2279 2280
            break;
        }
2281 2282 2283 2284 2285 2286 2287 2288
        break;
    case POWERPC_EXCP_DSTLB:     /* Data store TLB miss                      */
        msr_ri = 0; /* XXX: check this */
#if defined(TARGET_PPC64H) /* XXX: check this */
        if (lpes1 == 0)
            msr_hv = 1;
#endif
        switch (excp_model) {
2289 2290 2291 2292
        case POWERPC_EXCP_602:
        case POWERPC_EXCP_603:
        case POWERPC_EXCP_603E:
        case POWERPC_EXCP_G2:
2293
        tlb_miss_tgpr:
2294 2295 2296
            /* Swap temporary saved registers with GPRs */
            swap_gpr_tgpr(env);
            msr_tgpr = 1;
2297 2298 2299
            goto tlb_miss;
        case POWERPC_EXCP_7x5:
        tlb_miss:
2300 2301
#if defined (DEBUG_SOFTWARE_TLB)
            if (loglevel != 0) {
2302 2303 2304
                const unsigned char *es;
                target_ulong *miss, *cmp;
                int en;
J
j_mayer 已提交
2305
                if (excp == POWERPC_EXCP_IFTLB) {
2306 2307 2308 2309 2310
                    es = "I";
                    en = 'I';
                    miss = &env->spr[SPR_IMISS];
                    cmp = &env->spr[SPR_ICMP];
                } else {
J
j_mayer 已提交
2311
                    if (excp == POWERPC_EXCP_DLTLB)
2312 2313 2314 2315 2316 2317 2318
                        es = "DL";
                    else
                        es = "DS";
                    en = 'D';
                    miss = &env->spr[SPR_DMISS];
                    cmp = &env->spr[SPR_DCMP];
                }
2319
                fprintf(logfile, "6xx %sTLB miss: %cM " ADDRX " %cC " ADDRX
J
j_mayer 已提交
2320
                        " H1 " ADDRX " H2 " ADDRX " %08x\n",
2321
                        es, en, *miss, en, *cmp,
2322
                        env->spr[SPR_HASH1], env->spr[SPR_HASH2],
2323 2324
                        env->error_code);
            }
2325
#endif
2326 2327 2328
            msr |= env->crf[0] << 28;
            msr |= env->error_code; /* key, D/I, S/L bits */
            /* Set way using a LRU mechanism */
2329
            msr |= ((env->last_way + 1) & (env->nb_ways - 1)) << 17;
2330
            break;
2331
        default:
2332
            cpu_abort(env, "Invalid data store TLB miss exception\n");
2333 2334
            break;
        }
2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377
        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;
    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   */
        msr_ri = 0;
#if defined(TARGET_PPC64H)
        if (lpes1 == 0)
            msr_hv = 1;
#endif
        /* 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;
2378
    default:
2379 2380 2381
    excp_invalid:
        cpu_abort(env, "Invalid PowerPC exception %d. Aborting\n", excp);
        break;
2382
    store_current:
2383
        /* save current instruction location */
2384
        env->spr[srr0] = env->nip - 4;
2385 2386
        break;
    store_next:
2387
        /* save next instruction location */
2388
        env->spr[srr0] = env->nip;
2389 2390
        break;
    }
2391 2392 2393 2394 2395 2396 2397
    /* 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];
2398
    /* If we disactivated any translation, flush TLBs */
2399
    if (msr_ir || msr_dr)
2400
        tlb_flush(env, 1);
2401 2402 2403 2404 2405 2406 2407 2408 2409 2410
    /* reload MSR with correct bits */
    msr_ee = 0;
    msr_pr = 0;
    msr_fp = 0;
    msr_fe0 = 0;
    msr_se = 0;
    msr_be = 0;
    msr_fe1 = 0;
    msr_ir = 0;
    msr_dr = 0;
2411 2412 2413
#if 0 /* Fix this: not on all targets */
    msr_pmm = 0;
#endif
2414
    msr_le = msr_ile;
2415 2416 2417 2418 2419 2420 2421 2422
    do_compute_hflags(env);
    /* Jump to handler */
    vector = env->excp_vectors[excp];
    if (vector == (target_ulong)-1) {
        cpu_abort(env, "Raised an exception without defined vector %d\n",
                  excp);
    }
    vector |= env->excp_prefix;
2423
#if defined(TARGET_PPC64)
2424 2425 2426 2427
    if (excp_model == POWERPC_EXCP_BOOKE) {
        msr_cm = msr_icm;
        if (!msr_cm)
            vector = (uint32_t)vector;
2428 2429
    } else {
        msr_sf = msr_isf;
2430 2431
        if (!msr_sf)
            vector = (uint32_t)vector;
2432
    }
2433 2434 2435 2436 2437
#endif
    env->nip = vector;
    /* Reset exception state */
    env->exception_index = POWERPC_EXCP_NONE;
    env->error_code = 0;
B
bellard 已提交
2438
}
2439

2440
void do_interrupt (CPUState *env)
2441
{
2442 2443
    powerpc_excp(env, env->excp_model, env->exception_index);
}
2444

2445 2446
void ppc_hw_interrupt (CPUPPCState *env)
{
2447 2448 2449 2450 2451 2452
#if 1
    if (loglevel & CPU_LOG_INT) {
        fprintf(logfile, "%s: %p pending %08x req %08x me %d ee %d\n",
                __func__, env, env->pending_interrupts,
                env->interrupt_request, msr_me, msr_ee);
    }
2453
#endif
2454
    /* External reset */
2455 2456
    if (env->pending_interrupts & (1 << PPC_INTERRUPT_RESET)) {
        env->pending_interrupts &= ~(1 << PPC_INTERRUPT_RESET);
2457 2458 2459 2460 2461 2462 2463 2464
        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;
2465
    }
2466 2467 2468 2469 2470 2471 2472 2473 2474 2475
#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
#if defined(TARGET_PPC64H)
    if ((msr_ee != 0 || msr_hv == 0 || msr_pr == 1) & hdice != 0) {
2476 2477 2478
        /* Hypervisor decrementer exception */
        if (env->pending_interrupts & (1 << PPC_INTERRUPT_HDECR)) {
            env->pending_interrupts &= ~(1 << PPC_INTERRUPT_HDECR);
2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491
            powerpc_excp(env, env->excp_model, POWERPC_EXCP_HDECR);
            return;
        }
    }
#endif
    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);
2492
#endif
2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535
            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 defined(TARGET_PPCEMB)
        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;
        }
#endif
#if defined(TARGET_PPCEMB)
        /* External interrupt */
        if (env->pending_interrupts & (1 << PPC_INTERRUPT_EXT)) {
            /* Taking an external interrupt does not clear the external
             * interrupt status
             */
#if 0
            env->pending_interrupts &= ~(1 << PPC_INTERRUPT_EXT);
#endif
            powerpc_excp(env, env->excp_model, POWERPC_EXCP_EXTERNAL);
            return;
        }
#endif
        /* 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;
        }
2536 2537 2538
        /* Decrementer exception */
        if (env->pending_interrupts & (1 << PPC_INTERRUPT_DECR)) {
            env->pending_interrupts &= ~(1 << PPC_INTERRUPT_DECR);
2539 2540 2541 2542
            powerpc_excp(env, env->excp_model, POWERPC_EXCP_DECR);
            return;
        }
#if !defined(TARGET_PPCEMB)
2543
        /* External interrupt */
2544
        if (env->pending_interrupts & (1 << PPC_INTERRUPT_EXT)) {
2545 2546 2547 2548
            /* Taking an external interrupt does not clear the external
             * interrupt status
             */
#if 0
2549
            env->pending_interrupts &= ~(1 << PPC_INTERRUPT_EXT);
2550
#endif
2551 2552 2553
            powerpc_excp(env, env->excp_model, POWERPC_EXCP_EXTERNAL);
            return;
        }
2554
#endif
2555 2556 2557 2558 2559
#if defined(TARGET_PPCEMB)
        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;
2560 2561
        }
#endif
2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572
        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;
        }
2573 2574
    }
}
2575
#endif /* !CONFIG_USER_ONLY */
2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586

void cpu_dump_EA (target_ulong EA)
{
    FILE *f;

    if (logfile) {
        f = logfile;
    } else {
        f = stdout;
        return;
    }
J
j_mayer 已提交
2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601
    fprintf(f, "Memory access at address " ADDRX "\n", EA);
}

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);
2602 2603
}

J
j_mayer 已提交
2604 2605 2606
void cpu_ppc_reset (void *opaque)
{
    CPUPPCState *env;
2607
    int i;
J
j_mayer 已提交
2608 2609

    env = opaque;
2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620
    /* XXX: some of those flags initialisation values could depend
     *      on the actual PowerPC implementation
     */
    for (i = 0; i < 63; i++)
        env->msr[i] = 0;
#if defined(TARGET_PPC64)
    msr_hv = 0; /* Should be 1... */
#endif
    msr_ap = 0; /* TO BE CHECKED */
    msr_sa = 0; /* TO BE CHECKED */
    msr_ip = 0; /* TO BE CHECKED */
J
j_mayer 已提交
2621 2622 2623 2624 2625 2626
#if defined (DO_SINGLE_STEP) && 0
    /* Single step trace mode */
    msr_se = 1;
    msr_be = 1;
#endif
#if defined(CONFIG_USER_ONLY)
2627
    msr_fp = 1; /* Allow floating point exceptions */
J
j_mayer 已提交
2628 2629 2630 2631 2632 2633 2634
    msr_pr = 1;
#else
    env->nip = 0xFFFFFFFC;
    ppc_tlb_invalidate_all(env);
#endif
    do_compute_hflags(env);
    env->reserve = -1;
2635 2636
    /* Be sure no exception or interrupt is pending */
    env->pending_interrupts = 0;
2637 2638
    env->exception_index = POWERPC_EXCP_NONE;
    env->error_code = 0;
2639 2640
    /* Flush all TLBs */
    tlb_flush(env, 1);
J
j_mayer 已提交
2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660
}

CPUPPCState *cpu_ppc_init (void)
{
    CPUPPCState *env;

    env = qemu_mallocz(sizeof(CPUPPCState));
    if (!env)
        return NULL;
    cpu_exec_init(env);
    cpu_ppc_reset(env);

    return env;
}

void cpu_ppc_close (CPUPPCState *env)
{
    /* Should also remove all opcode tables... */
    free(env);
}