From patchwork Thu Jan 12 19:00:17 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Simon Glass X-Patchwork-Id: 135676 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 C4073B7343 for ; Fri, 13 Jan 2012 06:02:39 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 8E867287AC; Thu, 12 Jan 2012 20:02:26 +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 dD1zqi3ioSZI; Thu, 12 Jan 2012 20:02:26 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 3455428757; Thu, 12 Jan 2012 20:02:12 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 999E02871C for ; Thu, 12 Jan 2012 20:02:00 +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 7IVmoiH5zy0i for ; Thu, 12 Jan 2012 20:02:00 +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 mail-ww0-f74.google.com (mail-ww0-f74.google.com [74.125.82.74]) by theia.denx.de (Postfix) with ESMTPS id 41B81286EE for ; Thu, 12 Jan 2012 20:01:58 +0100 (CET) Received: by wgbdt14 with SMTP id dt14so69704wgb.3 for ; Thu, 12 Jan 2012 11:01:58 -0800 (PST) Received: by 10.180.104.103 with SMTP id gd7mr570263wib.4.1326394917987; Thu, 12 Jan 2012 11:01:57 -0800 (PST) Received: by 10.180.104.103 with SMTP id gd7mr570245wib.4.1326394917934; Thu, 12 Jan 2012 11:01:57 -0800 (PST) Received: from hpza10.eem.corp.google.com ([74.125.121.33]) by gmr-mx.google.com with ESMTPS id d7si230277wix.0.2012.01.12.11.01.57 (version=TLSv1/SSLv3 cipher=AES128-SHA); Thu, 12 Jan 2012 11:01:57 -0800 (PST) Received: from sglass.mtv.corp.google.com (sglass.mtv.corp.google.com [172.22.72.144]) by hpza10.eem.corp.google.com (Postfix) with ESMTP id A7EB320004E; Thu, 12 Jan 2012 11:01:57 -0800 (PST) Received: by sglass.mtv.corp.google.com (Postfix, from userid 121222) id 11814140FE5; Thu, 12 Jan 2012 11:01:57 -0800 (PST) From: Simon Glass To: U-Boot Mailing List Date: Thu, 12 Jan 2012 11:00:17 -0800 Message-Id: <1326394818-32227-7-git-send-email-sjg@chromium.org> X-Mailer: git-send-email 1.7.7.3 In-Reply-To: <1326394818-32227-1-git-send-email-sjg@chromium.org> References: <1326394818-32227-1-git-send-email-sjg@chromium.org> Cc: Tom Warren Subject: [U-Boot] [PATCH v2 6/7] tegra: Select I2C ordering for Seaboard 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: , MIME-Version: 1.0 Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de Select the port ordering for I2C on Seaboard. Signed-off-by: Simon Glass Acked-by: Stephen Warren --- Changes in v2: - Disable port 2 as it is not used board/nvidia/dts/tegra2-seaboard.dts | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/board/nvidia/dts/tegra2-seaboard.dts b/board/nvidia/dts/tegra2-seaboard.dts index 7a4ecae..d2cc428 100644 --- a/board/nvidia/dts/tegra2-seaboard.dts +++ b/board/nvidia/dts/tegra2-seaboard.dts @@ -15,6 +15,11 @@ /* This defines the order of our USB ports */ usb0 = "/usb@c5008000"; usb1 = "/usb@c5000000"; + + i2c0 = "/i2c@7000d000"; + i2c1 = "/i2c@7000c000"; + i2c2 = "/i2c@7000c400"; + i2c3 = "/i2c@7000c500"; }; memory { @@ -44,4 +49,9 @@ usb@c5004000 { status = "disabled"; }; + + i2c@7000c400 { + status = "disabled"; + }; + };