qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] Run Qemu ARM system without MMU (MMUless)


From: Thorsten Zitterell
Subject: Re: [Qemu-devel] Run Qemu ARM system without MMU (MMUless)
Date: Fri, 25 Aug 2006 14:24:57 +0200
User-agent: Thunderbird 1.5.0.4 (X11/20060713)

Tieu Ma Dau wrote:
If I want to run Qemu ARM system to simulate a system without MMU (MMU less), how can I do?
Thanks for your responses and best reagards,
Tieu

Hi,

according to target-arm/helper.c the MMU is enabled/disabled with coprocessor 15.

    if ((env->cp15.c1_sys & 1) == 0) {
        /* MMU diusabled.  */
        *phys_ptr = address;
        *prot = PAGE_READ | PAGE_WRITE;
    } else {
        /* Pagetable walk.  */
    }

It is disabled when QEMU starts...

--
Thorsten




reply via email to

[Prev in Thread] Current Thread [Next in Thread]