From patchwork Sat Sep 5 00:00:59 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Angelo Arrifano X-Patchwork-Id: 45808 X-Patchwork-Delegate: tony@atomide.com Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n84NuLON024303 for ; Fri, 4 Sep 2009 23:56:22 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934009AbZIDX4R (ORCPT ); Fri, 4 Sep 2009 19:56:17 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S933982AbZIDX4R (ORCPT ); Fri, 4 Sep 2009 19:56:17 -0400 Received: from mail-fx0-f217.google.com ([209.85.220.217]:54531 "EHLO mail-fx0-f217.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934002AbZIDX4Q (ORCPT ); Fri, 4 Sep 2009 19:56:16 -0400 Received: by fxm17 with SMTP id 17so1000802fxm.37 for ; Fri, 04 Sep 2009 16:56:18 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:cc:subject:x-enigmail-version :content-type:content-transfer-encoding; bh=lfyr5GdRVd3M8GqXnYTt+2BEXEK/GgWAk3jI3cco7q4=; b=Ghwm6hI1GtmnfAMDYOsDASjl/i6D5xmbgxvxGjiLAbgyDPoCi4Iq0zZDrXKQMXycaJ jvMMLIgh55kLzS3Zpe/zTMcyHT7RS6C5Dxp8a2rWeECIog3buSRgwHB/eNpEAbj6Shvj mr3Z5m1lkZHnEILiNSMH+vCY0GS6RwjLhNETs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :x-enigmail-version:content-type:content-transfer-encoding; b=VNUANsx1eu1RhB0Cd77q23wPXVh7icGiQSeWKZmzsCXp5SWOm/p0hZSOWnnMMZOg5N xEsAmFuYISZLiUxYqvuigIpqT6Ye+VaBpGlKUaJDI3KcAl1rHwj2jchCwfnpqWvbo8Wb ZYcxXYo+p/lK+WyYgwa7Ti9HtfO4VCoCvcC2Y= Received: by 10.204.19.132 with SMTP id a4mr9587162bkb.21.1252108578367; Fri, 04 Sep 2009 16:56:18 -0700 (PDT) Received: from ?10.0.0.10? ([81.193.80.115]) by mx.google.com with ESMTPS id 2sm2680660fks.3.2009.09.04.16.56.17 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 04 Sep 2009 16:56:17 -0700 (PDT) Message-ID: <4AA1AA3B.7020007@gmail.com> Date: Sat, 05 Sep 2009 01:00:59 +0100 From: Angelo Arrifano User-Agent: Thunderbird 2.0.0.22 (X11/20090702) MIME-Version: 1.0 To: linux-omap@vger.kernel.org CC: "Zebediah C. McClure" Subject: [PATCH 1/3] [ARM] omap850: Fix wrong jtag_id. X-Enigmail-Version: 0.95.7 Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org Original message: The previous value of the jtag_id was set for the omap730. For the omap850, this value is different, and this was causing autodetection to fail. Reported-by: Cory Maccarrone Angelo Arrifano Alistair Buxton Signed-off-by: Angelo Arrifano --- arch/arm/mach-omap1/id.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) + { .jtag_id = 0xb62c, .die_rev = 0x1, .omap_id = 0x03320500, .type = 0x08500000}, { .jtag_id = 0xb470, .die_rev = 0x0, .omap_id = 0x03310100, .type = 0x15100000}, { .jtag_id = 0xb576, .die_rev = 0x0, .omap_id = 0x03320000, .type = 0x16100000}, { .jtag_id = 0xb576, .die_rev = 0x2, .omap_id = 0x03320100, .type = 0x16110000}, diff --git a/arch/arm/mach-omap1/id.c b/arch/arm/mach-omap1/id.c index 4ef26fa..e5dcdf7 100644 --- a/arch/arm/mach-omap1/id.c +++ b/arch/arm/mach-omap1/id.c @@ -38,7 +38,7 @@ static struct omap_id omap_ids[] __initdata = { { .jtag_id = 0xb574, .die_rev = 0x2, .omap_id = 0x03310315, .type = 0x03100000}, { .jtag_id = 0x355f, .die_rev = 0x0, .omap_id = 0x03320000, .type = 0x07300100}, { .jtag_id = 0xb55f, .die_rev = 0x0, .omap_id = 0x03320000, .type = 0x07300300}, - { .jtag_id = 0xb55f, .die_rev = 0x0, .omap_id = 0x03320500, .type = 0x08500000},