From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1GGakD-0000pq-WC for qemu-devel@nongnu.org; Fri, 25 Aug 2006 08:25:06 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1GGakA-0000o6-Cg for qemu-devel@nongnu.org; Fri, 25 Aug 2006 08:25:04 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GGakA-0000o3-7O for qemu-devel@nongnu.org; Fri, 25 Aug 2006 08:25:02 -0400 Received: from [132.230.150.3] (helo=atlas.informatik.uni-freiburg.de) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA:32) (Exim 4.52) id 1GGasR-00052N-Af for qemu-devel@nongnu.org; Fri, 25 Aug 2006 08:33:35 -0400 Received: from mafia.informatik.uni-freiburg.de ([132.230.150.87]) by atlas.informatik.uni-freiburg.de with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.60) (envelope-from ) id 1GGak7-0002DS-9L for qemu-devel@nongnu.org; Fri, 25 Aug 2006 14:24:59 +0200 Message-ID: <44EEEC19.5000605@gmx.net> Date: Fri, 25 Aug 2006 14:24:57 +0200 From: Thorsten Zitterell MIME-Version: 1.0 Subject: Re: [Qemu-devel] Run Qemu ARM system without MMU (MMUless) References: <20060825082535.62631.qmail@web38102.mail.mud.yahoo.com> In-Reply-To: <20060825082535.62631.qmail@web38102.mail.mud.yahoo.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org 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