From patchwork Fri Feb 1 16:44:06 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tomas Novotny X-Patchwork-Id: 217525 X-Patchwork-Delegate: trini@ti.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id 1C9EA2C0293 for ; Sat, 2 Feb 2013 04:12:20 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 400624A0B5; Fri, 1 Feb 2013 18:12:15 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id rL6-CYxoCN9U; Fri, 1 Feb 2013 18:12:15 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 519AD4A0A5; Fri, 1 Feb 2013 18:12:13 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 825FF4A09E for ; Fri, 1 Feb 2013 17:56:46 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 7VShLvHjpkxk for ; Fri, 1 Feb 2013 17:56:45 +0100 (CET) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from kazi.fit.vutbr.cz (kazi.fit.vutbr.cz [147.229.8.12]) by theia.denx.de (Postfix) with ESMTPS id C5BF84A09D for ; Fri, 1 Feb 2013 17:56:44 +0100 (CET) Received: from pcnovotny-t.fit.vutbr.cz (pcnovotny-t.fit.vutbr.cz [147.229.13.172]) (authenticated bits=0) by kazi.fit.vutbr.cz (8.14.6/8.14.6) with ESMTP id r11Gi62t041943 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO); Fri, 1 Feb 2013 17:44:07 +0100 (CET) Date: Fri, 1 Feb 2013 17:44:06 +0100 From: Tomas Novotny To: u-boot@lists.denx.de Message-ID: <20130201174406.6be94735@pcnovotny-t.fit.vutbr.cz> X-Mailer: Claws Mail 3.7.10 (GTK+ 2.24.7; x86_64-suse-linux-gnu) Mime-Version: 1.0 X-Scanned-By: MIMEDefang 2.73 on 147.229.8.12 X-Mailman-Approved-At: Fri, 01 Feb 2013 18:12:11 +0100 Cc: Tom Rini Subject: [U-Boot] [PATCH 1/2] da8xx: ea20: Add the configuration define for the exact SoC variant X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.11 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de Signed-off-by: Tomas Novotny Cc: Tom Rini Cc: Stefano Babic Acked-by: Stefano Babic --- The second patch in this series adds pinmux for the da830. This pinmux is selected when CONFIG_SOC_DA850 is not set. Although ea20 has its own gpio pinmux (because gpio_request() is not used), this patch is added to prevent possible problems in the future. include/configs/ea20.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/configs/ea20.h b/include/configs/ea20.h index d3eb596..03dfe0a 100644 --- a/include/configs/ea20.h +++ b/include/configs/ea20.h @@ -42,6 +42,7 @@ #define CONFIG_MACH_DAVINCI_DA850_EVM #define CONFIG_ARM926EJS /* arm926ejs CPU core */ #define CONFIG_SOC_DA8XX /* TI DA8xx SoC */ +#define CONFIG_SOC_DA850 /* TI DA850 SoC */ #define CONFIG_SYS_CLK_FREQ clk_get(DAVINCI_ARM_CLKID) #define CONFIG_SYS_OSCIN_FREQ 24000000 #define CONFIG_SYS_TIMERBASE DAVINCI_TIMER0_BASE