From patchwork Fri Mar 30 13:00:35 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter Maydell X-Patchwork-Id: 7545 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 9AF4023E29 for ; Fri, 30 Mar 2012 13:26:42 +0000 (UTC) Received: from mail-gx0-f180.google.com (mail-gx0-f180.google.com [209.85.161.180]) by fiordland.canonical.com (Postfix) with ESMTP id 69EFAA18710 for ; Fri, 30 Mar 2012 13:26:42 +0000 (UTC) Received: by gglu1 with SMTP id u1so313317ggl.11 for ; Fri, 30 Mar 2012 06:26:42 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:x-forwarded-to:x-forwarded-for:delivered-to :received-spf:from:to:subject:date:message-id:x-mailer:in-reply-to :references:x-gm-message-state; bh=iSlU+mQR2KGFxWHP6z+aSDwptizvnfwMw8dvoK4KUW0=; b=cyB1pEuGSCCycLstbQXLc+FWsYPf2jpFe09piv0AJSsAhgOllK4j8E9lTPJZtNFJZg NAQQucg+3dgawB7FTXljnJbumJzQmsWUjyjuvJnigB3MxBzpK3T9Tkg0F3ZKvT0DLrhR nzOxBT6qqR/Wx8UYS0INJ4ALjkc02g15Lefad7g1u3sGyEdNp1Osm7hRgg1B+s08lGSd oNRMy7SAjnYoUC4UaSDqrXeLGZ95SxZ0X3t+V/h73pDzHLbXvQQRNHyO6TUKCC+1Qm0p orCo1xz4et9abrjrwcINRj7s2eebq/qqB6+YONbAT5kd7unNfxksd/zPczDN0YgCo4G7 ByHA== MIME-Version: 1.0 Received: by 10.50.46.164 with SMTP id w4mr1393950igm.54.1333114001756; Fri, 30 Mar 2012 06:26:41 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.231.5.205 with SMTP id 13csp22418ibw; Fri, 30 Mar 2012 06:26:40 -0700 (PDT) Received: by 10.213.3.154 with SMTP id 26mr509880ebn.136.1333113999191; Fri, 30 Mar 2012 06:26:39 -0700 (PDT) Received: from mnementh.archaic.org.uk (mnementh.archaic.org.uk. [81.2.115.146]) by mx.google.com with ESMTPS id u38si9912394weq.136.2012.03.30.06.26.38 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 30 Mar 2012 06:26:39 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of pm215@archaic.org.uk designates 81.2.115.146 as permitted sender) client-ip=81.2.115.146; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of pm215@archaic.org.uk designates 81.2.115.146 as permitted sender) smtp.mail=pm215@archaic.org.uk Received: from pm215 by mnementh.archaic.org.uk with local (Exim 4.72) (envelope-from ) id 1SDbRb-00011D-IC for patches@linaro.org; Fri, 30 Mar 2012 14:00:43 +0100 From: Peter Maydell To: patches@linaro.org Subject: [PATCH 07/14] target-arm: Drop JTAG_ID documentation Date: Fri, 30 Mar 2012 14:00:35 +0100 Message-Id: <1333112442-3871-8-git-send-email-peter.maydell@linaro.org> X-Mailer: git-send-email 1.7.2.5 In-Reply-To: <1333112442-3871-1-git-send-email-peter.maydell@linaro.org> References: <1333112442-3871-1-git-send-email-peter.maydell@linaro.org> X-Gm-Message-State: ALoCoQkNVaP1CWUpBTbrdcY3sg4BTqFShzkH1FL54pYaAi+KtMLWV8R87eQqewW8rZ+phbhM6Oa5 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: