helper.c 96.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
#include "helper_regs.h"
31 32 33

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

/*****************************************************************************/
40
/* PowerPC MMU emulation */
41

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

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

62 63
    return 1;
}
64

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

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

77
static always_inline void pte_invalidate (target_ulong *pte0)
78 79 80 81
{
    *pte0 &= ~0x80000000;
}

82
#if defined(TARGET_PPC64)
83
static always_inline int pte64_is_valid (target_ulong pte0)
84 85 86 87
{
    return pte0 & 0x0000000000000001ULL ? 1 : 0;
}

88
static always_inline void pte64_invalidate (target_ulong *pte0)
89 90 91 92 93
{
    *pte0 &= ~0x0000000000000001ULL;
}
#endif

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

101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
static always_inline int pp_check (int key, int pp, int nx)
{
    int access;

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

    return access;
}

static always_inline int check_prot (int prot, int rw, int access_type)
{
    int ret;

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

    return ret;
}

165 166
static always_inline int _pte_check (mmu_ctx_t *ctx, int is_64b,
                                     target_ulong pte0, target_ulong pte1,
167
                                     int h, int rw, int type)
168
{
169
    target_ulong ptem, mmask;
170
    int access, ret, pteh, ptev, pp;
171 172 173 174

    access = 0;
    ret = -1;
    /* Check validity and table match */
175 176 177 178 179 180 181 182 183 184 185
#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) {
186
        /* Check vsid & api */
187 188 189 190
#if defined(TARGET_PPC64)
        if (is_64b) {
            ptem = pte0 & PTE64_PTEM_MASK;
            mmask = PTE64_CHECK_MASK;
191 192 193
            pp = (pte1 & 0x00000003) | ((pte1 >> 61) & 0x00000004);
            ctx->nx |= (pte1 >> 2) & 1; /* No execute bit */
            ctx->nx |= (pte1 >> 3) & 1; /* Guarded bit    */
194 195 196 197 198
        } else
#endif
        {
            ptem = pte0 & PTE_PTEM_MASK;
            mmask = PTE_CHECK_MASK;
199
            pp = pte1 & 0x00000003;
200 201
        }
        if (ptem == ctx->ptem) {
202
            if (ctx->raddr != (target_phys_addr_t)-1ULL) {
203
                /* all matches should have equal RPN, WIMG & PP */
204 205
                if ((ctx->raddr & mmask) != (pte1 & mmask)) {
                    if (loglevel != 0)
206 207 208 209 210
                        fprintf(logfile, "Bad RPN/WIMG/PP\n");
                    return -3;
                }
            }
            /* Compute access rights */
211
            access = pp_check(ctx->key, pp, ctx->nx);
212 213 214
            /* Keep the matching PTE informations */
            ctx->raddr = pte1;
            ctx->prot = access;
215 216
            ret = check_prot(ctx->prot, rw, type);
            if (ret == 0) {
217 218
                /* Access granted */
#if defined (DEBUG_MMU)
J
j_mayer 已提交
219
                if (loglevel != 0)
220 221 222 223 224
                    fprintf(logfile, "PTE access granted !\n");
#endif
            } else {
                /* Access right violation */
#if defined (DEBUG_MMU)
J
j_mayer 已提交
225
                if (loglevel != 0)
226 227 228 229 230 231 232 233 234
                    fprintf(logfile, "PTE access rejected\n");
#endif
            }
        }
    }

    return ret;
}

J
j_mayer 已提交
235 236 237
static always_inline int pte32_check (mmu_ctx_t *ctx,
                                      target_ulong pte0, target_ulong pte1,
                                      int h, int rw, int type)
238
{
239
    return _pte_check(ctx, 0, pte0, pte1, h, rw, type);
240 241 242
}

#if defined(TARGET_PPC64)
J
j_mayer 已提交
243 244 245
static always_inline int pte64_check (mmu_ctx_t *ctx,
                                      target_ulong pte0, target_ulong pte1,
                                      int h, int rw, int type)
246
{
247
    return _pte_check(ctx, 1, pte0, pte1, h, rw, type);
248 249 250
}
#endif

J
j_mayer 已提交
251 252
static always_inline int pte_update_flags (mmu_ctx_t *ctx, target_ulong *pte1p,
                                           int ret, int rw)
253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276
{
    int store = 0;

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

    return store;
}

/* Software driven TLB helpers */
J
j_mayer 已提交
277 278
static always_inline int ppc6xx_tlb_getnum (CPUState *env, target_ulong eaddr,
                                            int way, int is_code)
279 280 281 282 283 284 285 286 287 288 289 290 291 292
{
    int nr;

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

    return nr;
}

J
j_mayer 已提交
293
static always_inline void ppc6xx_tlb_invalidate_all (CPUState *env)
294
{
295
    ppc6xx_tlb_t *tlb;
296 297 298 299 300 301 302 303 304 305 306 307
    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++) {
308
        tlb = &env->tlb[nr].tlb6;
309 310 311 312 313
        pte_invalidate(&tlb->pte0);
    }
    tlb_flush(env, 1);
}

314 315 316 317
static always_inline void __ppc6xx_tlb_invalidate_virt (CPUState *env,
                                                        target_ulong eaddr,
                                                        int is_code,
                                                        int match_epn)
318
{
J
j_mayer 已提交
319
#if !defined(FLUSH_ALL_TLBS)
320
    ppc6xx_tlb_t *tlb;
321 322 323 324 325
    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);
326
        tlb = &env->tlb[nr].tlb6;
327 328 329
        if (pte_is_valid(tlb->pte0) && (match_epn == 0 || eaddr == tlb->EPN)) {
#if defined (DEBUG_SOFTWARE_TLB)
            if (loglevel != 0) {
330
                fprintf(logfile, "TLB invalidate %d/%d " ADDRX "\n",
331 332 333 334 335 336 337 338 339 340 341 342 343
                        nr, env->nb_tlb, eaddr);
            }
#endif
            pte_invalidate(&tlb->pte0);
            tlb_flush_page(env, tlb->EPN);
        }
    }
#else
    /* XXX: PowerPC specification say this is valid as well */
    ppc6xx_tlb_invalidate_all(env);
#endif
}

J
j_mayer 已提交
344 345 346
static always_inline void ppc6xx_tlb_invalidate_virt (CPUState *env,
                                                      target_ulong eaddr,
                                                      int is_code)
347 348 349 350 351 352 353
{
    __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)
{
354
    ppc6xx_tlb_t *tlb;
355 356 357
    int nr;

    nr = ppc6xx_tlb_getnum(env, EPN, way, is_code);
358
    tlb = &env->tlb[nr].tlb6;
359 360
#if defined (DEBUG_SOFTWARE_TLB)
    if (loglevel != 0) {
361
        fprintf(logfile, "Set TLB %d/%d EPN " ADDRX " PTE0 " ADDRX
362
                " PTE1 " ADDRX "\n", nr, env->nb_tlb, EPN, pte0, pte1);
363 364 365 366 367 368 369 370 371 372 373
    }
#endif
    /* Invalidate any pending reference in Qemu for this virtual address */
    __ppc6xx_tlb_invalidate_virt(env, EPN, is_code, 1);
    tlb->pte0 = pte0;
    tlb->pte1 = pte1;
    tlb->EPN = EPN;
    /* Store last way for LRU mechanism */
    env->last_way = way;
}

J
j_mayer 已提交
374 375 376
static always_inline int ppc6xx_tlb_check (CPUState *env, mmu_ctx_t *ctx,
                                           target_ulong eaddr, int rw,
                                           int access_type)
377
{
378
    ppc6xx_tlb_t *tlb;
379 380
    int nr, best, way;
    int ret;
381

382 383 384 385 386
    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);
387
        tlb = &env->tlb[nr].tlb6;
388 389 390 391
        /* 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) {
392 393
                fprintf(logfile, "TLB %d/%d %s [" ADDRX " " ADDRX
                        "] <> " ADDRX "\n",
394 395 396 397 398 399 400 401 402
                        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) {
403 404
            fprintf(logfile, "TLB %d/%d %s " ADDRX " <> " ADDRX " " ADDRX
                    " %c %c\n",
405 406 407 408 409 410
                    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
411
        switch (pte32_check(ctx, tlb->pte0, tlb->pte1, 0, rw, access_type)) {
412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437
        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 已提交
438
        if (loglevel != 0) {
439 440 441 442 443
            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 */
444
        pte_update_flags(ctx, &env->tlb[best].tlb6.pte1, ret, rw);
445 446 447 448 449
    }

    return ret;
}

450
/* Perform BAT hit & translation */
J
j_mayer 已提交
451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484
static always_inline void bat_size_prot (CPUState *env, target_ulong *blp,
                                         int *validp, int *protp,
                                         target_ulong *BATu, target_ulong *BATl)
{
    target_ulong bl;
    int pp, valid, prot;

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

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

    bl = (*BATl & 0x0000003F) << 17;
485
#if defined (DEBUG_BATS)
J
j_mayer 已提交
486 487 488 489
    if (loglevel != 0) {
        fprintf(logfile, "b %02x ==> bl %08x msk %08x\n",
                *BATl & 0x0000003F, bl, ~bl);
    }
490
#endif
J
j_mayer 已提交
491 492 493 494 495 496 497 498 499 500 501 502 503 504 505
    prot = 0;
    valid = (*BATl >> 6) & 1;
    if (valid) {
        pp = *BATu & 0x00000003;
        if (msr_pr == 0)
            key = (*BATu >> 3) & 1;
        else
            key = (*BATu >> 2) & 1;
        prot = pp_check(key, pp, 0);
    }
    *blp = bl;
    *validp = valid;
    *protp = prot;
}

J
j_mayer 已提交
506 507
static always_inline int get_bat (CPUState *env, mmu_ctx_t *ctx,
                                  target_ulong virtual, int rw, int type)
508
{
509 510
    target_ulong *BATlt, *BATut, *BATu, *BATl;
    target_ulong base, BEPIl, BEPIu, bl;
J
j_mayer 已提交
511
    int i, valid, prot;
512 513 514
    int ret = -1;

#if defined (DEBUG_BATS)
J
j_mayer 已提交
515
    if (loglevel != 0) {
516
        fprintf(logfile, "%s: %cBAT v 0x" ADDRX "\n", __func__,
517
                type == ACCESS_CODE ? 'I' : 'D', virtual);
518 519 520 521 522 523 524 525 526 527 528 529 530
    }
#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 已提交
531
    if (loglevel != 0) {
532
        fprintf(logfile, "%s...: %cBAT v 0x" ADDRX "\n", __func__,
533
                type == ACCESS_CODE ? 'I' : 'D', virtual);
534 535 536
    }
#endif
    base = virtual & 0xFFFC0000;
J
j_mayer 已提交
537
    for (i = 0; i < env->nb_BATs; i++) {
538 539 540 541
        BATu = &BATut[i];
        BATl = &BATlt[i];
        BEPIu = *BATu & 0xF0000000;
        BEPIl = *BATu & 0x0FFE0000;
J
j_mayer 已提交
542 543 544 545 546
        if (unlikely(env->mmu_model == POWERPC_MMU_601)) {
            bat_601_size_prot(env, &bl, &valid, &prot, BATu, BATl);
        } else {
            bat_size_prot(env, &bl, &valid, &prot, BATu, BATl);
        }
547
#if defined (DEBUG_BATS)
J
j_mayer 已提交
548
        if (loglevel != 0) {
549
            fprintf(logfile, "%s: %cBAT%d v 0x" ADDRX " BATu 0x" ADDRX
550
                    " BATl 0x" ADDRX "\n",
551 552 553 554 555 556 557
                    __func__, type == ACCESS_CODE ? 'I' : 'D', i, virtual,
                    *BATu, *BATl);
        }
#endif
        if ((virtual & 0xF0000000) == BEPIu &&
            ((virtual & 0x0FFE0000) & ~bl) == BEPIl) {
            /* BAT matches */
J
j_mayer 已提交
558
            if (valid != 0) {
559
                /* Get physical address */
560
                ctx->raddr = (*BATl & 0xF0000000) |
561
                    ((virtual & 0x0FFE0000 & bl) | (*BATl & 0x0FFE0000)) |
562
                    (virtual & 0x0001F000);
563
                /* Compute access rights */
J
j_mayer 已提交
564
                ctx->prot = prot;
565
                ret = check_prot(ctx->prot, rw, type);
566
#if defined (DEBUG_BATS)
567
                if (ret == 0 && loglevel != 0) {
J
j_mayer 已提交
568
                    fprintf(logfile, "BAT %d match: r 0x" PADDRX
569
                            " prot=%c%c\n",
570 571
                            i, ctx->raddr, ctx->prot & PAGE_READ ? 'R' : '-',
                            ctx->prot & PAGE_WRITE ? 'W' : '-');
572 573 574 575 576 577 578 579
                }
#endif
                break;
            }
        }
    }
    if (ret < 0) {
#if defined (DEBUG_BATS)
J
j_mayer 已提交
580 581 582 583 584 585 586 587 588 589 590 591 592 593
        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);
            }
594 595 596
        }
#endif
    }
597

598 599 600 601 602
    /* No hit */
    return ret;
}

/* PTE table lookup */
603 604
static always_inline int _find_pte (mmu_ctx_t *ctx, int is_64b, int h,
                                    int rw, int type)
605
{
606 607
    target_ulong base, pte0, pte1;
    int i, good = -1;
608
    int ret, r;
609

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

    return ret;
B
bellard 已提交
691 692
}

J
j_mayer 已提交
693
static always_inline int find_pte32 (mmu_ctx_t *ctx, int h, int rw, int type)
694
{
695
    return _find_pte(ctx, 0, h, rw, type);
696 697 698
}

#if defined(TARGET_PPC64)
J
j_mayer 已提交
699
static always_inline int find_pte64 (mmu_ctx_t *ctx, int h, int rw, int type)
700
{
701
    return _find_pte(ctx, 1, h, rw, type);
702 703 704
}
#endif

705
static always_inline int find_pte (CPUState *env, mmu_ctx_t *ctx,
706
                                   int h, int rw, int type)
707 708
{
#if defined(TARGET_PPC64)
709
    if (env->mmu_model & POWERPC_MMU_64)
710
        return find_pte64(ctx, h, rw, type);
711 712
#endif

713
    return find_pte32(ctx, h, rw, type);
714 715 716
}

#if defined(TARGET_PPC64)
J
j_mayer 已提交
717
static always_inline int slb_is_valid (uint64_t slb64)
718 719 720 721
{
    return slb64 & 0x0000000008000000ULL ? 1 : 0;
}

J
j_mayer 已提交
722
static always_inline void slb_invalidate (uint64_t *slb64)
723 724 725 726
{
    *slb64 &= ~0x0000000008000000ULL;
}

J
j_mayer 已提交
727 728 729
static always_inline int slb_lookup (CPUPPCState *env, target_ulong eaddr,
                                     target_ulong *vsid,
                                     target_ulong *page_mask, int *attr)
730 731 732 733 734 735 736 737 738
{
    target_phys_addr_t sr_base;
    target_ulong mask;
    uint64_t tmp64;
    uint32_t tmp;
    int n, ret;

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

    return ret;
B
bellard 已提交
784
}
785

786 787 788 789 790 791 792 793
void ppc_slb_invalidate_all (CPUPPCState *env)
{
    target_phys_addr_t sr_base;
    uint64_t tmp64;
    int n, do_invalidate;

    do_invalidate = 0;
    sr_base = env->spr[SPR_ASR];
794 795
    /* XXX: Warning: slbia never invalidates the first segment */
    for (n = 1; n < env->slb_nr; n++) {
796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836
        tmp64 = ldq_phys(sr_base);
        if (slb_is_valid(tmp64)) {
            slb_invalidate(&tmp64);
            stq_phys(sr_base, tmp64);
            /* XXX: given the fact that segment size is 256 MB or 1TB,
             *      and we still don't have a tlb_flush_mask(env, n, mask)
             *      in Qemu, we just invalidate all TLBs
             */
            do_invalidate = 1;
        }
        sr_base += 12;
    }
    if (do_invalidate)
        tlb_flush(env, 1);
}

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

    n = slb_lookup(env, T0, &vsid, &page_mask, &attr);
    if (n >= 0) {
        sr_base = env->spr[SPR_ASR];
        sr_base += 12 * n;
        tmp64 = ldq_phys(sr_base);
        if (slb_is_valid(tmp64)) {
            slb_invalidate(&tmp64);
            stq_phys(sr_base, tmp64);
            /* XXX: given the fact that segment size is 256 MB or 1TB,
             *      and we still don't have a tlb_flush_mask(env, n, mask)
             *      in Qemu, we just invalidate all TLBs
             */
            tlb_flush(env, 1);
        }
    }
}

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

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

    return rt;
}

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

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

897
/* Perform segment based translation */
898 899 900 901
static always_inline target_phys_addr_t get_pgaddr (target_phys_addr_t sdr1,
                                                    int sdr_sh,
                                                    target_phys_addr_t hash,
                                                    target_phys_addr_t mask)
902
{
903
    return (sdr1 & ((target_phys_addr_t)(-1ULL) << sdr_sh)) | (hash & mask);
904 905
}

J
j_mayer 已提交
906 907
static always_inline int get_segment (CPUState *env, mmu_ctx_t *ctx,
                                      target_ulong eaddr, int rw, int type)
B
bellard 已提交
908
{
909
    target_phys_addr_t sdr, hash, mask, sdr_mask, htab_mask;
910 911 912
    target_ulong sr, vsid, vsid_mask, pgidx, page_mask;
#if defined(TARGET_PPC64)
    int attr;
913
#endif
914
    int ds, vsid_sh, sdr_sh, pr;
915 916
    int ret, ret2;

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

    return ret;
B
bellard 已提交
1119 1120
}

1121
/* Generic TLB check function for embedded PowerPC implementations */
J
j_mayer 已提交
1122 1123 1124 1125
static always_inline int ppcemb_tlb_check (CPUState *env, ppcemb_tlb_t *tlb,
                                           target_phys_addr_t *raddrp,
                                           target_ulong address,
                                           uint32_t pid, int ext, int i)
1126 1127 1128 1129 1130 1131 1132 1133 1134 1135
{
    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);
1136
#if defined (DEBUG_SOFTWARE_TLB)
1137 1138 1139
    if (loglevel != 0) {
        fprintf(logfile, "%s: TLB %d address " ADDRX " PID %d <=> "
                ADDRX " " ADDRX " %d\n",
1140
                __func__, i, address, pid, tlb->EPN, mask, (int)tlb->PID);
1141
    }
1142
#endif
1143
    /* Check PID */
1144
    if (tlb->PID != 0 && tlb->PID != pid)
1145 1146 1147 1148 1149
        return -1;
    /* Check effective address */
    if ((address & mask) != tlb->EPN)
        return -1;
    *raddrp = (tlb->RPN & mask) | (address & ~mask);
1150
#if (TARGET_PHYS_ADDR_BITS >= 36)
1151 1152 1153 1154
    if (ext) {
        /* Extend the physical address to 36 bits */
        *raddrp |= (target_phys_addr_t)(tlb->RPN & 0xF) << 32;
    }
1155
#endif
1156 1157 1158 1159 1160

    return 0;
}

/* Generic TLB search function for PowerPC embedded implementations */
1161
int ppcemb_tlb_search (CPUPPCState *env, target_ulong address, uint32_t pid)
1162 1163 1164 1165 1166 1167 1168
{
    ppcemb_tlb_t *tlb;
    target_phys_addr_t raddr;
    int i, ret;

    /* Default return value is no match */
    ret = -1;
1169
    for (i = 0; i < env->nb_tlb; i++) {
1170
        tlb = &env->tlb[i].tlbe;
1171
        if (ppcemb_tlb_check(env, tlb, &raddr, address, pid, 0, i) == 0) {
1172 1173 1174 1175 1176 1177 1178 1179
            ret = i;
            break;
        }
    }

    return ret;
}

1180
/* Helpers specific to PowerPC 40x implementations */
J
j_mayer 已提交
1181
static always_inline void ppc4xx_tlb_invalidate_all (CPUState *env)
1182 1183 1184 1185 1186 1187
{
    ppcemb_tlb_t *tlb;
    int i;

    for (i = 0; i < env->nb_tlb; i++) {
        tlb = &env->tlb[i].tlbe;
1188
        tlb->prot &= ~PAGE_VALID;
1189
    }
1190
    tlb_flush(env, 1);
1191 1192
}

J
j_mayer 已提交
1193 1194 1195
static always_inline void ppc4xx_tlb_invalidate_virt (CPUState *env,
                                                      target_ulong eaddr,
                                                      uint32_t pid)
J
j_mayer 已提交
1196
{
1197
#if !defined(FLUSH_ALL_TLBS)
J
j_mayer 已提交
1198
    ppcemb_tlb_t *tlb;
1199 1200
    target_phys_addr_t raddr;
    target_ulong page, end;
J
j_mayer 已提交
1201 1202 1203 1204
    int i;

    for (i = 0; i < env->nb_tlb; i++) {
        tlb = &env->tlb[i].tlbe;
1205
        if (ppcemb_tlb_check(env, tlb, &raddr, eaddr, pid, 0, i) == 0) {
J
j_mayer 已提交
1206 1207 1208 1209
            end = tlb->EPN + tlb->size;
            for (page = tlb->EPN; page < end; page += TARGET_PAGE_SIZE)
                tlb_flush_page(env, page);
            tlb->prot &= ~PAGE_VALID;
1210
            break;
J
j_mayer 已提交
1211 1212
        }
    }
1213 1214 1215
#else
    ppc4xx_tlb_invalidate_all(env);
#endif
J
j_mayer 已提交
1216 1217
}

1218
int mmu40x_get_physical_address (CPUState *env, mmu_ctx_t *ctx,
1219
                                 target_ulong address, int rw, int access_type)
J
j_mayer 已提交
1220 1221 1222
{
    ppcemb_tlb_t *tlb;
    target_phys_addr_t raddr;
1223
    int i, ret, zsel, zpr, pr;
1224

1225
    ret = -1;
1226
    raddr = (target_phys_addr_t)-1ULL;
1227
    pr = msr_pr;
J
j_mayer 已提交
1228 1229
    for (i = 0; i < env->nb_tlb; i++) {
        tlb = &env->tlb[i].tlbe;
1230 1231
        if (ppcemb_tlb_check(env, tlb, &raddr, address,
                             env->spr[SPR_40x_PID], 0, i) < 0)
J
j_mayer 已提交
1232 1233 1234
            continue;
        zsel = (tlb->attr >> 4) & 0xF;
        zpr = (env->spr[SPR_40x_ZPR] >> (28 - (2 * zsel))) & 0x3;
1235
#if defined (DEBUG_SOFTWARE_TLB)
J
j_mayer 已提交
1236
        if (loglevel != 0) {
J
j_mayer 已提交
1237 1238 1239
            fprintf(logfile, "%s: TLB %d zsel %d zpr %d rw %d attr %08x\n",
                    __func__, i, zsel, zpr, rw, tlb->attr);
        }
1240
#endif
1241 1242 1243
        /* Check execute enable bit */
        switch (zpr) {
        case 0x2:
1244
            if (pr != 0)
1245 1246 1247 1248 1249 1250 1251 1252
                goto check_perms;
            /* No break here */
        case 0x3:
            /* All accesses granted */
            ctx->prot = PAGE_READ | PAGE_WRITE | PAGE_EXEC;
            ret = 0;
            break;
        case 0x0:
1253
            if (pr != 0) {
1254 1255
                ctx->prot = 0;
                ret = -2;
J
j_mayer 已提交
1256 1257
                break;
            }
1258 1259 1260 1261 1262 1263 1264 1265 1266
            /* No break here */
        case 0x1:
        check_perms:
            /* Check from TLB entry */
            /* XXX: there is a problem here or in the TLB fill code... */
            ctx->prot = tlb->prot;
            ctx->prot |= PAGE_EXEC;
            ret = check_prot(ctx->prot, rw, access_type);
            break;
J
j_mayer 已提交
1267 1268 1269
        }
        if (ret >= 0) {
            ctx->raddr = raddr;
1270
#if defined (DEBUG_SOFTWARE_TLB)
J
j_mayer 已提交
1271
            if (loglevel != 0) {
J
j_mayer 已提交
1272
                fprintf(logfile, "%s: access granted " ADDRX " => " REGX
1273 1274
                        " %d %d\n", __func__, address, ctx->raddr, ctx->prot,
                        ret);
J
j_mayer 已提交
1275
            }
1276
#endif
1277
            return 0;
J
j_mayer 已提交
1278 1279
        }
    }
1280
#if defined (DEBUG_SOFTWARE_TLB)
J
j_mayer 已提交
1281
    if (loglevel != 0) {
1282 1283 1284 1285
        fprintf(logfile, "%s: access refused " ADDRX " => " REGX
                " %d %d\n", __func__, address, raddr, ctx->prot,
                ret);
    }
1286
#endif
1287

J
j_mayer 已提交
1288 1289 1290
    return ret;
}

1291 1292 1293 1294 1295 1296 1297 1298 1299
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;
}

1300 1301 1302 1303 1304 1305 1306 1307 1308
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;
1309
    raddr = (target_phys_addr_t)-1ULL;
1310 1311 1312 1313 1314
    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;
1315
        if (msr_pr != 0)
1316 1317 1318 1319 1320
            prot = tlb->prot & 0xF;
        else
            prot = (tlb->prot >> 4) & 0xF;
        /* Check the address space */
        if (access_type == ACCESS_CODE) {
1321
            if (msr_ir != (tlb->attr & 1))
1322 1323 1324 1325 1326 1327 1328 1329
                continue;
            ctx->prot = prot;
            if (prot & PAGE_EXEC) {
                ret = 0;
                break;
            }
            ret = -3;
        } else {
1330
            if (msr_dr != (tlb->attr & 1))
1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345
                continue;
            ctx->prot = prot;
            if ((!rw && prot & PAGE_READ) || (rw && (prot & PAGE_WRITE))) {
                ret = 0;
                break;
            }
            ret = -2;
        }
    }
    if (ret >= 0)
        ctx->raddr = raddr;

    return ret;
}

J
j_mayer 已提交
1346 1347
static always_inline int check_physical (CPUState *env, mmu_ctx_t *ctx,
                                         target_ulong eaddr, int rw)
1348 1349
{
    int in_plb, ret;
1350

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

    return ret;
}

int get_physical_address (CPUState *env, mmu_ctx_t *ctx, target_ulong eaddr,
J
j_mayer 已提交
1413
                          int rw, int access_type)
1414 1415
{
    int ret;
1416

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

1477 1478 1479
    return ret;
}

1480
target_phys_addr_t cpu_get_phys_page_debug (CPUState *env, target_ulong addr)
B
bellard 已提交
1481
{
1482
    mmu_ctx_t ctx;
B
bellard 已提交
1483

J
j_mayer 已提交
1484
    if (unlikely(get_physical_address(env, &ctx, addr, 0, ACCESS_INT) != 0))
B
bellard 已提交
1485
        return -1;
1486 1487

    return ctx.raddr & TARGET_PAGE_MASK;
B
bellard 已提交
1488
}
1489 1490

/* Perform address translation */
1491
int cpu_ppc_handle_mmu_fault (CPUState *env, target_ulong address, int rw,
1492
                              int mmu_idx, int is_softmmu)
1493
{
1494
    mmu_ctx_t ctx;
1495
    int access_type;
1496
    int ret = 0;
1497

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

1754 1755 1756
    return ret;
}

1757 1758 1759
/*****************************************************************************/
/* BATs management */
#if !defined(FLUSH_ALL_TLBS)
1760 1761 1762
static always_inline void do_invalidate_BAT (CPUPPCState *env,
                                             target_ulong BATu,
                                             target_ulong mask)
1763 1764
{
    target_ulong base, end, page;
1765

1766 1767 1768
    base = BATu & ~0x0001FFFF;
    end = base + mask + 0x00020000;
#if defined (DEBUG_BATS)
1769
    if (loglevel != 0) {
1770
        fprintf(logfile, "Flush BAT from " ADDRX " to " ADDRX " (" ADDRX ")\n",
1771 1772
                base, end, mask);
    }
1773 1774 1775 1776 1777 1778 1779 1780 1781 1782
#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

1783 1784
static always_inline void dump_store_bat (CPUPPCState *env, char ID,
                                          int ul, int nr, target_ulong value)
1785 1786 1787
{
#if defined (DEBUG_BATS)
    if (loglevel != 0) {
1788 1789
        fprintf(logfile, "Set %cBAT%d%c to 0x" ADDRX " (0x" ADDRX ")\n",
                ID, nr, ul == 0 ? 'u' : 'l', value, env->nip);
1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823
    }
#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);
1824
#else
1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877
        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;
}

1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947
void do_store_ibatu_601 (CPUPPCState *env, int nr, target_ulong value)
{
    target_ulong mask;
    int do_inval;

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

void do_store_ibatl_601 (CPUPPCState *env, int nr, target_ulong value)
{
    target_ulong mask;
    int do_inval;

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

J
j_mayer 已提交
1948 1949 1950 1951
/*****************************************************************************/
/* TLB management */
void ppc_tlb_invalidate_all (CPUPPCState *env)
{
1952 1953
    switch (env->mmu_model) {
    case POWERPC_MMU_SOFT_6xx:
1954
    case POWERPC_MMU_SOFT_74xx:
J
j_mayer 已提交
1955
        ppc6xx_tlb_invalidate_all(env);
1956 1957 1958
        break;
    case POWERPC_MMU_SOFT_4xx:
    case POWERPC_MMU_SOFT_4xx_Z:
J
j_mayer 已提交
1959
        ppc4xx_tlb_invalidate_all(env);
1960
        break;
1961
    case POWERPC_MMU_REAL:
1962 1963
        cpu_abort(env, "No TLB for PowerPC 4xx in real mode\n");
        break;
1964 1965 1966 1967
    case POWERPC_MMU_MPC8xx:
        /* XXX: TODO */
        cpu_abort(env, "MPC8xx MMU model is not implemented\n");
        break;
1968 1969
    case POWERPC_MMU_BOOKE:
        /* XXX: TODO */
1970
        cpu_abort(env, "BookE MMU model is not implemented\n");
1971 1972 1973
        break;
    case POWERPC_MMU_BOOKE_FSL:
        /* XXX: TODO */
1974
        cpu_abort(env, "BookE MMU model is not implemented\n");
1975 1976
        break;
    case POWERPC_MMU_32B:
J
j_mayer 已提交
1977
    case POWERPC_MMU_601:
J
j_mayer 已提交
1978
#if defined(TARGET_PPC64)
1979
    case POWERPC_MMU_620:
1980
    case POWERPC_MMU_64B:
J
j_mayer 已提交
1981
#endif /* defined(TARGET_PPC64) */
J
j_mayer 已提交
1982
        tlb_flush(env, 1);
1983
        break;
J
j_mayer 已提交
1984 1985
    default:
        /* XXX: TODO */
1986
        cpu_abort(env, "Unknown MMU model\n");
J
j_mayer 已提交
1987
        break;
J
j_mayer 已提交
1988 1989 1990
    }
}

1991 1992 1993 1994 1995 1996
void ppc_tlb_invalidate_one (CPUPPCState *env, target_ulong addr)
{
#if !defined(FLUSH_ALL_TLBS)
    addr &= TARGET_PAGE_MASK;
    switch (env->mmu_model) {
    case POWERPC_MMU_SOFT_6xx:
1997
    case POWERPC_MMU_SOFT_74xx:
1998 1999 2000 2001 2002 2003 2004 2005
        ppc6xx_tlb_invalidate_virt(env, addr, 0);
        if (env->id_tlbs == 1)
            ppc6xx_tlb_invalidate_virt(env, addr, 1);
        break;
    case POWERPC_MMU_SOFT_4xx:
    case POWERPC_MMU_SOFT_4xx_Z:
        ppc4xx_tlb_invalidate_virt(env, addr, env->spr[SPR_40x_PID]);
        break;
2006
    case POWERPC_MMU_REAL:
2007 2008
        cpu_abort(env, "No TLB for PowerPC 4xx in real mode\n");
        break;
2009 2010 2011 2012
    case POWERPC_MMU_MPC8xx:
        /* XXX: TODO */
        cpu_abort(env, "MPC8xx MMU model is not implemented\n");
        break;
2013 2014
    case POWERPC_MMU_BOOKE:
        /* XXX: TODO */
2015
        cpu_abort(env, "BookE MMU model is not implemented\n");
2016 2017 2018
        break;
    case POWERPC_MMU_BOOKE_FSL:
        /* XXX: TODO */
2019
        cpu_abort(env, "BookE FSL MMU model is not implemented\n");
2020 2021
        break;
    case POWERPC_MMU_32B:
J
j_mayer 已提交
2022
    case POWERPC_MMU_601:
2023
        /* tlbie invalidate TLBs for all segments */
2024
        addr &= ~((target_ulong)-1ULL << 28);
2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043
        /* XXX: this case should be optimized,
         * giving a mask to tlb_flush_page
         */
        tlb_flush_page(env, addr | (0x0 << 28));
        tlb_flush_page(env, addr | (0x1 << 28));
        tlb_flush_page(env, addr | (0x2 << 28));
        tlb_flush_page(env, addr | (0x3 << 28));
        tlb_flush_page(env, addr | (0x4 << 28));
        tlb_flush_page(env, addr | (0x5 << 28));
        tlb_flush_page(env, addr | (0x6 << 28));
        tlb_flush_page(env, addr | (0x7 << 28));
        tlb_flush_page(env, addr | (0x8 << 28));
        tlb_flush_page(env, addr | (0x9 << 28));
        tlb_flush_page(env, addr | (0xA << 28));
        tlb_flush_page(env, addr | (0xB << 28));
        tlb_flush_page(env, addr | (0xC << 28));
        tlb_flush_page(env, addr | (0xD << 28));
        tlb_flush_page(env, addr | (0xE << 28));
        tlb_flush_page(env, addr | (0xF << 28));
2044
        break;
J
j_mayer 已提交
2045
#if defined(TARGET_PPC64)
2046
    case POWERPC_MMU_620:
2047 2048 2049
    case POWERPC_MMU_64B:
        /* tlbie invalidate TLBs for all segments */
        /* XXX: given the fact that there are too many segments to invalidate,
J
j_mayer 已提交
2050
         *      and we still don't have a tlb_flush_mask(env, n, mask) in Qemu,
2051 2052 2053 2054
         *      we just invalidate all TLBs
         */
        tlb_flush(env, 1);
        break;
J
j_mayer 已提交
2055 2056 2057
#endif /* defined(TARGET_PPC64) */
    default:
        /* XXX: TODO */
2058
        cpu_abort(env, "Unknown MMU model\n");
J
j_mayer 已提交
2059
        break;
2060 2061 2062 2063 2064 2065
    }
#else
    ppc_tlb_invalidate_all(env);
#endif
}

2066 2067
/*****************************************************************************/
/* Special registers manipulation */
2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082
#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

2083 2084 2085 2086 2087 2088 2089 2090 2091
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) {
2092
        fprintf(logfile, "%s: 0x" ADDRX "\n", __func__, value);
2093 2094 2095
    }
#endif
    if (env->sdr1 != value) {
2096 2097 2098
        /* XXX: for PowerPC 64, should check that the HTABSIZE value
         *      is <= 28
         */
2099
        env->sdr1 = value;
2100
        tlb_flush(env, 1);
2101 2102 2103
    }
}

2104
#if 0 // Unused
2105 2106 2107 2108
target_ulong do_load_sr (CPUPPCState *env, int srnum)
{
    return env->sr[srnum];
}
2109
#endif
2110 2111 2112 2113 2114

void do_store_sr (CPUPPCState *env, int srnum, target_ulong value)
{
#if defined (DEBUG_MMU)
    if (loglevel != 0) {
2115 2116
        fprintf(logfile, "%s: reg=%d 0x" ADDRX " " ADDRX "\n",
                __func__, srnum, value, env->sr[srnum]);
2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130
    }
#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
2131
        tlb_flush(env, 1);
2132 2133 2134
#endif
    }
}
2135
#endif /* !defined (CONFIG_USER_ONLY) */
2136

2137
target_ulong ppc_load_xer (CPUPPCState *env)
B
bellard 已提交
2138
{
2139
    return hreg_load_xer(env);
B
bellard 已提交
2140 2141
}

2142
void ppc_store_xer (CPUPPCState *env, target_ulong value)
B
bellard 已提交
2143
{
2144
    hreg_store_xer(env, value);
B
bellard 已提交
2145 2146
}

2147
/* GDBstub can read and write MSR... */
2148
void ppc_store_msr (CPUPPCState *env, target_ulong value)
2149
{
2150
    hreg_store_msr(env, value, 0);
2151 2152 2153 2154
}

/*****************************************************************************/
/* Exception processing */
2155
#if defined (CONFIG_USER_ONLY)
2156
void do_interrupt (CPUState *env)
B
bellard 已提交
2157
{
2158 2159
    env->exception_index = POWERPC_EXCP_NONE;
    env->error_code = 0;
2160
}
2161

2162
void ppc_hw_interrupt (CPUState *env)
2163
{
2164 2165
    env->exception_index = POWERPC_EXCP_NONE;
    env->error_code = 0;
2166
}
2167
#else /* defined (CONFIG_USER_ONLY) */
J
j_mayer 已提交
2168
static always_inline void dump_syscall (CPUState *env)
2169
{
2170
    fprintf(logfile, "syscall r0=0x" REGX " r3=0x" REGX " r4=0x" REGX
2171
            " r5=0x" REGX " r6=0x" REGX " nip=0x" ADDRX "\n",
P
pbrook 已提交
2172 2173 2174
            (target_ulong)env->gpr[0], (target_ulong)env->gpr[3],
            (target_ulong)env->gpr[4], (target_ulong)env->gpr[5],
            (target_ulong)env->gpr[6], env->nip);
2175 2176
}

2177 2178 2179 2180 2181
/* 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)
2182
{
2183
    target_ulong msr, new_msr, vector;
2184
    int srr0, srr1, asrr0, asrr1;
2185
    int lpes0, lpes1, lev;
B
bellard 已提交
2186

2187 2188 2189 2190 2191 2192 2193 2194 2195 2196
    if (0) {
        /* XXX: find a suitable condition to enable the hypervisor mode */
        lpes0 = (env->spr[SPR_LPCR] >> 1) & 1;
        lpes1 = (env->spr[SPR_LPCR] >> 2) & 1;
    } else {
        /* Those values ensure we won't enter the hypervisor mode */
        lpes0 = 0;
        lpes1 = 1;
    }

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

2789
void do_interrupt (CPUState *env)
2790
{
2791 2792
    powerpc_excp(env, env->excp_model, env->exception_index);
}
2793

2794 2795
void ppc_hw_interrupt (CPUPPCState *env)
{
2796 2797
    int hdice;

2798
#if 0
2799 2800 2801
    if (loglevel & CPU_LOG_INT) {
        fprintf(logfile, "%s: %p pending %08x req %08x me %d ee %d\n",
                __func__, env, env->pending_interrupts,
2802
                env->interrupt_request, (int)msr_me, (int)msr_ee);
2803
    }
2804
#endif
2805
    /* External reset */
2806 2807
    if (env->pending_interrupts & (1 << PPC_INTERRUPT_RESET)) {
        env->pending_interrupts &= ~(1 << PPC_INTERRUPT_RESET);
2808 2809 2810 2811 2812 2813 2814 2815
        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;
2816
    }
2817 2818 2819 2820 2821 2822 2823 2824
#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
2825 2826 2827 2828 2829 2830
    if (0) {
        /* XXX: find a suitable condition to enable the hypervisor mode */
        hdice = env->spr[SPR_LPCR] & 1;
    } else {
        hdice = 0;
    }
2831
    if ((msr_ee != 0 || msr_hv == 0 || msr_pr != 0) && hdice != 0) {
2832 2833 2834
        /* Hypervisor decrementer exception */
        if (env->pending_interrupts & (1 << PPC_INTERRUPT_HDECR)) {
            env->pending_interrupts &= ~(1 << PPC_INTERRUPT_HDECR);
2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846
            powerpc_excp(env, env->excp_model, POWERPC_EXCP_HDECR);
            return;
        }
    }
    if (msr_ce != 0) {
        /* External critical interrupt */
        if (env->pending_interrupts & (1 << PPC_INTERRUPT_CEXT)) {
            /* Taking a critical external interrupt does not clear the external
             * critical interrupt status
             */
#if 0
            env->pending_interrupts &= ~(1 << PPC_INTERRUPT_CEXT);
2847
#endif
2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875
            powerpc_excp(env, env->excp_model, POWERPC_EXCP_CRITICAL);
            return;
        }
    }
    if (msr_ee != 0) {
        /* Watchdog timer on embedded PowerPC */
        if (env->pending_interrupts & (1 << PPC_INTERRUPT_WDT)) {
            env->pending_interrupts &= ~(1 << PPC_INTERRUPT_WDT);
            powerpc_excp(env, env->excp_model, POWERPC_EXCP_WDT);
            return;
        }
        if (env->pending_interrupts & (1 << PPC_INTERRUPT_CDOORBELL)) {
            env->pending_interrupts &= ~(1 << PPC_INTERRUPT_CDOORBELL);
            powerpc_excp(env, env->excp_model, POWERPC_EXCP_DOORCI);
            return;
        }
        /* Fixed interval timer on embedded PowerPC */
        if (env->pending_interrupts & (1 << PPC_INTERRUPT_FIT)) {
            env->pending_interrupts &= ~(1 << PPC_INTERRUPT_FIT);
            powerpc_excp(env, env->excp_model, POWERPC_EXCP_FIT);
            return;
        }
        /* Programmable interval timer on embedded PowerPC */
        if (env->pending_interrupts & (1 << PPC_INTERRUPT_PIT)) {
            env->pending_interrupts &= ~(1 << PPC_INTERRUPT_PIT);
            powerpc_excp(env, env->excp_model, POWERPC_EXCP_PIT);
            return;
        }
2876 2877 2878
        /* Decrementer exception */
        if (env->pending_interrupts & (1 << PPC_INTERRUPT_DECR)) {
            env->pending_interrupts &= ~(1 << PPC_INTERRUPT_DECR);
2879 2880 2881
            powerpc_excp(env, env->excp_model, POWERPC_EXCP_DECR);
            return;
        }
2882
        /* External interrupt */
2883
        if (env->pending_interrupts & (1 << PPC_INTERRUPT_EXT)) {
2884 2885 2886 2887
            /* Taking an external interrupt does not clear the external
             * interrupt status
             */
#if 0
2888
            env->pending_interrupts &= ~(1 << PPC_INTERRUPT_EXT);
2889
#endif
2890 2891 2892 2893 2894 2895 2896
            powerpc_excp(env, env->excp_model, POWERPC_EXCP_EXTERNAL);
            return;
        }
        if (env->pending_interrupts & (1 << PPC_INTERRUPT_DOORBELL)) {
            env->pending_interrupts &= ~(1 << PPC_INTERRUPT_DOORBELL);
            powerpc_excp(env, env->excp_model, POWERPC_EXCP_DOORI);
            return;
2897
        }
2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908
        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;
        }
2909 2910
    }
}
2911
#endif /* !CONFIG_USER_ONLY */
2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922

void cpu_dump_EA (target_ulong EA)
{
    FILE *f;

    if (logfile) {
        f = logfile;
    } else {
        f = stdout;
        return;
    }
J
j_mayer 已提交
2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937
    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);
2938 2939
}

J
j_mayer 已提交
2940 2941 2942
void cpu_ppc_reset (void *opaque)
{
    CPUPPCState *env;
2943
    target_ulong msr;
J
j_mayer 已提交
2944 2945

    env = opaque;
2946
    msr = (target_ulong)0;
2947 2948 2949 2950
    if (0) {
        /* XXX: find a suitable condition to enable the hypervisor mode */
        msr |= (target_ulong)MSR_HVB;
    }
2951 2952 2953
    msr |= (target_ulong)0 << MSR_AP; /* TO BE CHECKED */
    msr |= (target_ulong)0 << MSR_SA; /* TO BE CHECKED */
    msr |= (target_ulong)1 << MSR_EP;
J
j_mayer 已提交
2954 2955
#if defined (DO_SINGLE_STEP) && 0
    /* Single step trace mode */
2956 2957
    msr |= (target_ulong)1 << MSR_SE;
    msr |= (target_ulong)1 << MSR_BE;
J
j_mayer 已提交
2958 2959
#endif
#if defined(CONFIG_USER_ONLY)
2960 2961
    msr |= (target_ulong)1 << MSR_FP; /* Allow floating point usage */
    msr |= (target_ulong)1 << MSR_PR;
2962
#else
2963
    env->nip = env->hreset_vector | env->excp_prefix;
2964
    if (env->mmu_model != POWERPC_MMU_REAL)
2965
        ppc_tlb_invalidate_all(env);
J
j_mayer 已提交
2966
#endif
2967 2968
    env->msr = msr;
    hreg_compute_hflags(env);
2969
    env->reserve = (target_ulong)-1ULL;
2970 2971
    /* Be sure no exception or interrupt is pending */
    env->pending_interrupts = 0;
2972 2973
    env->exception_index = POWERPC_EXCP_NONE;
    env->error_code = 0;
2974 2975
    /* Flush all TLBs */
    tlb_flush(env, 1);
J
j_mayer 已提交
2976 2977
}

B
bellard 已提交
2978
CPUPPCState *cpu_ppc_init (const char *cpu_model)
J
j_mayer 已提交
2979 2980
{
    CPUPPCState *env;
B
bellard 已提交
2981 2982 2983 2984 2985
    const ppc_def_t *def;

    def = cpu_ppc_find_by_name(cpu_model);
    if (!def)
        return NULL;
J
j_mayer 已提交
2986 2987 2988 2989 2990

    env = qemu_mallocz(sizeof(CPUPPCState));
    if (!env)
        return NULL;
    cpu_exec_init(env);
B
bellard 已提交
2991 2992
    cpu_ppc_register_internal(env, def);
    cpu_ppc_reset(env);
J
j_mayer 已提交
2993 2994 2995 2996 2997 2998
    return env;
}

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