From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KpNLr-0005Kq-Lb for qemu-devel@nongnu.org; Mon, 13 Oct 2008 09:20:47 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KpNLq-0005KO-Kx for qemu-devel@nongnu.org; Mon, 13 Oct 2008 09:20:47 -0400 Received: from [199.232.76.173] (port=36009 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KpNLq-0005KK-Ft for qemu-devel@nongnu.org; Mon, 13 Oct 2008 09:20:46 -0400 Received: from mail.codesourcery.com ([65.74.133.4]:60081) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1KpNLq-00027g-5G for qemu-devel@nongnu.org; Mon, 13 Oct 2008 09:20:46 -0400 From: Paul Brook Subject: Re: [Qemu-devel] [PATCH] ARM CP14 trivial support Date: Mon, 13 Oct 2008 14:20:42 +0100 References: <1223894552.30000.30.camel@petitemort> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200810131420.43031.paul@codesourcery.com> 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 Cc: dsilvers@simtec.co.uk On Monday 13 October 2008, andrzej zaborowski wrote: > 2008/10/13 Daniel Silverstone : > > Continuing the patch series aiming at supporting Simtec's development > > boards and other Samsung SoC based systems, attached is a patch which > > provides trivial coprocessor 14 support. > > + case 14: > + return disas_cp14_insn (env, s, insn); > > This will break PXA emulation or anything that already emulates cp14. Anything that emulates cp14 should really be doing it here. The pxa coprocessor bits are IMHO a hack. Paul