From patchwork Sat Mar 23 15:06:51 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sebastian Hesselbarth X-Patchwork-Id: 2324931 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) by patchwork1.kernel.org (Postfix) with ESMTP id D0A353FC8A for ; Sat, 23 Mar 2013 15:10:25 +0000 (UTC) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1UJQ2H-0007Rj-3X; Sat, 23 Mar 2013 15:07:09 +0000 Received: from mail-ea0-x235.google.com ([2a00:1450:4013:c01::235]) by merlin.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1UJQ2B-0007RQ-Vl for linux-arm-kernel@lists.infradead.org; Sat, 23 Mar 2013 15:07:05 +0000 Received: by mail-ea0-f181.google.com with SMTP id z10so1731620ead.12 for ; Sat, 23 Mar 2013 08:07:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:from:to:cc:subject:date:message-id:x-mailer; bh=VvcKKkqbVdyr80XzPemC1BHtoiLI91l8FlMJxlxolps=; b=dXlM6Ngorq3TSjUoz76kEJq3fViktV5yZjDisdmITf1Fq03ubVJ1YTj/rWlgIjzsyh qNYGDF0si3LKOFwDlhHpkghUyVGItrs8QAD9OWg0o9953F/clzS1RZICEA8887dTNfrI Lt3jHOV8cWNvkvGN9KYfCf9EKLJdiaJyYyILNragkE2Mv9xP1Qg60rOO/Yzvpz/1NbT3 9Yp09cp2X7D5OqZfNKpuSSioIuGVUW6vwVLzE+ZHrLLGMc17179Sdxa3M0poY7bRfXB1 9Rn/uFiPEMbUSxNQVXRMPb51OWS166ogl1LxdEUXGHkh8IPi2wrAkVFq7pKYNoS7sVRz 8P6Q== X-Received: by 10.15.67.134 with SMTP id u6mr15338962eex.6.1364051221836; Sat, 23 Mar 2013 08:07:01 -0700 (PDT) Received: from nijin.lan (dslc-082-083-223-114.pools.arcor-ip.net. [82.83.223.114]) by mx.google.com with ESMTPS id 46sm8796158eea.3.2013.03.23.08.07.00 (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sat, 23 Mar 2013 08:07:00 -0700 (PDT) From: Sebastian Hesselbarth To: Sebastian Hesselbarth Subject: [PATCH] ARM: dove: fix Dove cpu type from V7 to PJ4 Date: Sat, 23 Mar 2013 16:06:51 +0100 Message-Id: <1364051211-24414-1-git-send-email-sebastian.hesselbarth@gmail.com> X-Mailer: git-send-email 1.7.10.4 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20130323_110704_151873_F28FDFCB X-CRM114-Status: GOOD ( 10.57 ) X-Spam-Score: -2.0 (--) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-2.0 points) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (sebastian.hesselbarth[at]gmail.com) -0.0 SPF_PASS SPF: sender matches SPF record -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] -0.1 DKIM_VALID_AU Message has a valid DKIM or DK signature from author's domain 0.1 DKIM_SIGNED Message has a DKIM or DK signature, not necessarily valid -0.1 DKIM_VALID Message has at least one valid DKIM or DK signature Cc: Andrew Lunn , Russell King , Jason Cooper , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org The CPU used in Marvell Dove SoCs is a PJ4 Sheeva core. Using CONFIG_CPU_PJ4 instead of CONFIG_CPU_V7 will also allow to enable iWMMXt extensions on Dove. Signed-off-by: Sebastian Hesselbarth Acked-by: Andrew Lunn Acked-by: Jason Cooper --- Cc: Russell King Cc: Jason Cooper Cc: Andrew Lunn Cc: linux-arm-kernel@lists.infradead.org Cc: linux-kernel@vger.kernel.org --- arch/arm/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 2c3bdce..4fc9bca 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -556,7 +556,7 @@ config ARCH_IXP4XX config ARCH_DOVE bool "Marvell Dove" select ARCH_REQUIRE_GPIOLIB - select CPU_V7 + select CPU_PJ4 select GENERIC_CLOCKEVENTS select MIGHT_HAVE_PCI select PINCTRL