From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:33003) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SDbJB-0001bP-JB for qemu-devel@nongnu.org; Fri, 30 Mar 2012 08:52:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SDbJ5-0000Bc-D0 for qemu-devel@nongnu.org; Fri, 30 Mar 2012 08:52:01 -0400 Received: from mnementh.archaic.org.uk ([81.2.115.146]:41194) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SDbJ5-0000BH-56 for qemu-devel@nongnu.org; Fri, 30 Mar 2012 08:51:55 -0400 From: Peter Maydell Date: Fri, 30 Mar 2012 13:51:43 +0100 Message-Id: <1333111910-3641-8-git-send-email-peter.maydell@linaro.org> In-Reply-To: <1333111910-3641-1-git-send-email-peter.maydell@linaro.org> References: <1333111910-3641-1-git-send-email-peter.maydell@linaro.org> Subject: [Qemu-devel] [PATCH 07/14] target-arm: Drop JTAG_ID documentation List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Paul Brook , Anthony Liguori , =?UTF-8?q?Andreas=20F=C3=A4rber?= None of the machines in QEMU offer a JTAG debug interface, so this info was unused. Further, the PXA250 ID contradicts the February 2002 Developer's Manual, which has it as 0xn9264013 with n the MIDR Revision. Signed-off-by: Peter Maydell --- target-arm/helper.c | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/target-arm/helper.c b/target-arm/helper.c index cb0ae15..e3e019a 100644 --- a/target-arm/helper.c +++ b/target-arm/helper.c @@ -115,7 +115,6 @@ static void cpu_reset_model_id(CPUARMState *env, uint32_t id) case ARM_CPUID_PXA260: case ARM_CPUID_PXA261: case ARM_CPUID_PXA262: - /* JTAG_ID is ((id << 28) | 0x09265013) */ break; case ARM_CPUID_PXA270_A0: case ARM_CPUID_PXA270_A1: @@ -123,7 +122,6 @@ static void cpu_reset_model_id(CPUARMState *env, uint32_t id) case ARM_CPUID_PXA270_B1: case ARM_CPUID_PXA270_C0: case ARM_CPUID_PXA270_C5: - /* JTAG_ID is ((id << 28) | 0x09265013) */ env->iwmmxt.cregs[ARM_IWMMXT_wCID] = 0x69051000 | 'Q'; break; case ARM_CPUID_SA1100: -- 1.7.1