From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:36346) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QGpDS-0008Dk-AI for qemu-devel@nongnu.org; Mon, 02 May 2011 05:14:55 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QGpDR-0005sc-65 for qemu-devel@nongnu.org; Mon, 02 May 2011 05:14:54 -0400 Received: from mail-fx0-f45.google.com ([209.85.161.45]:47114) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QGpDR-0005sI-17 for qemu-devel@nongnu.org; Mon, 02 May 2011 05:14:53 -0400 Received: by fxm2 with SMTP id 2so4064742fxm.4 for ; Mon, 02 May 2011 02:14:51 -0700 (PDT) Date: Mon, 2 May 2011 11:14:49 +0200 From: "Edgar E. Iglesias" Message-ID: <20110502091449.GA7144@edde.se.axis.com> References: <1304204100-22973-1-git-send-email-agraf@suse.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1304204100-22973-1-git-send-email-agraf@suse.de> Subject: Re: [Qemu-devel] [PATCH 0/5] PPC: Add FSL (e500) MMU emulation List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Alexander Graf Cc: Scott Wood , Liu Yu , QEMU-devel Developers On Sun, May 01, 2011 at 12:54:55AM +0200, Alexander Graf wrote: > In a global effort to get rid of KVM-only targets, this is the next > important piece of the puzzle: e500 emulation :). > > We had support for running an e500 KVM guest for a while now, but the > code could not be tested without a real e500 machine, because it required > KVM to work. This patchset adds emulation for the e500 MMU, enabling > anyone to use the MPC8544DS emulation. > > Edgar, please check that this patch set does not break 440 support. Hi Alex, 440 support seems OK in sysemulation but I I got the following error when building linux-user: % make make[1]: Nothing to be done for `all'. CC ppc-linux-user/translate.o cc1: warnings being treated as errors In file included from /home/edgar/src/c/qemu/git/qemu/target-ppc/translate.c:9160: /home/edgar/src/c/qemu/git/qemu/target-ppc/translate_init.c: In function 'spr_write_e500_mmucsr0': /home/edgar/src/c/qemu/git/qemu/target-ppc/translate_init.c:1370: error: implicit declaration of function 'gen_helper_e500_tlbflush' /home/edgar/src/c/qemu/git/qemu/target-ppc/translate_init.c:1370: error: nested extern declaration of 'gen_helper_e500_tlbflush' /home/edgar/src/c/qemu/git/qemu/target-ppc/translate_init.c: In function 'spr_write_booke_pid': /home/edgar/src/c/qemu/git/qemu/target-ppc/translate_init.c:1378: error: implicit declaration of function 'gen_helper_tlbia' /home/edgar/src/c/qemu/git/qemu/target-ppc/translate_init.c:1378: error: nested extern declaration of 'gen_helper_tlbia' make[1]: *** [translate.o] Error 1 make: *** [subdir-ppc-linux-user] Error 2 Cheers