From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 00CB4C433F5 for ; Thu, 18 Nov 2021 08:21:14 +0000 (UTC) Received: from phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 6F6DE61B73 for ; Thu, 18 Nov 2021 08:21:13 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org 6F6DE61B73 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=denx.de Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=lists.denx.de Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id A128882F9D; Thu, 18 Nov 2021 09:20:50 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=none (p=none dis=none) header.from=denx.de Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=denx.de; s=phobos-20191101; t=1637223650; bh=q1jnG5F24mb3Yyarm+H3psy2DBUCL4QW6hqPGdAR65w=; h=From:To:Subject:Date:In-Reply-To:References:List-Id: List-Unsubscribe:List-Archive:List-Post:List-Help:List-Subscribe: From; b=PmCWI05lTUJK99sgkq70DS2PC1iJ9VsTHourAGeaxaTY1QnXA76HLIp4qZCLRsAbB 94O0XF7Xc462Qs0WIcUytrphGOI78IsLhE/XJ0215i6YFPhNDaDQKEbsxNkYw0ouIF yBE7dyfOX/vK6OVh/dJnlrqaq0dXZ7nYxESCudqBYWt95vbQbzvA9ab7+RKRtRJnTd 5it5qeMK33z9GYQtLmn20fIvtiBh0+6OcCBSYOaNqSyHJxHQPVKyQJRz2bDYEruQA/ ZerxiqSSBHI2cUQIJ6PwoYDLFvZfiagt0Z7tkWU9Au03A4TtlkqTsVLtvx+Em+u1H5 /p/9SmbS3cJhw== Received: by phobos.denx.de (Postfix, from userid 109) id 4F36482F89; Thu, 18 Nov 2021 09:20:06 +0100 (CET) Received: from mout-u-204.mailbox.org (mout-u-204.mailbox.org [91.198.250.253]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 1BADC82F8C for ; Thu, 18 Nov 2021 09:19:46 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=none (p=none dis=none) header.from=denx.de Authentication-Results: phobos.denx.de; spf=fail smtp.mailfrom=sr@denx.de Received: from smtp202.mailbox.org (unknown [91.198.250.118]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-384) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mout-u-204.mailbox.org (Postfix) with ESMTPS id 4Hvt4y03GCzQlCK for ; Thu, 18 Nov 2021 09:19:46 +0100 (CET) From: Stefan Roese To: u-boot@lists.denx.de Subject: [PATCH 9/9] arm: mvebu: armada-xp-theadorable.dts: Add I2C DT nodes Date: Thu, 18 Nov 2021 09:19:39 +0100 Message-Id: <20211118081939.861407-9-sr@denx.de> In-Reply-To: <20211118081939.861407-1-sr@denx.de> References: <20211118081939.861407-1-sr@denx.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.35 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.2 at phobos.denx.de X-Virus-Status: Clean Now with DM I2C support enabled we need to describe the I2C busses and devices in the DT. Signed-off-by: Stefan Roese --- arch/arm/dts/armada-xp-theadorable.dts | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/arch/arm/dts/armada-xp-theadorable.dts b/arch/arm/dts/armada-xp-theadorable.dts index 6a1df870ab56..24cc1cc5278e 100644 --- a/arch/arm/dts/armada-xp-theadorable.dts +++ b/arch/arm/dts/armada-xp-theadorable.dts @@ -71,6 +71,8 @@ spi0 = &spi0; spi1 = &spi1; ethernet0 = ð0; + i2c0 = &i2c0; + i2c1 = &i2c1; }; memory { @@ -156,6 +158,16 @@ }; }; +&i2c0 { + status = "okay"; + clock-frequency = <100000>; +}; + +&i2c1 { + status = "okay"; + clock-frequency = <100000>; +}; + &spi0 { status = "okay"; u-boot,dm-pre-reloc; -- 2.34.0