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 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 smtp.lore.kernel.org (Postfix) with ESMTPS id A70B1C25B4E for ; Tue, 24 Jan 2023 09:44:29 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id B43CF85622; Tue, 24 Jan 2023 10:44:05 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="B1o29Szp"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 34168855D7; Tue, 24 Jan 2023 10:43:45 +0100 (CET) Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 1B62E855D7 for ; Tue, 24 Jan 2023 10:43:42 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=rogerq@kernel.org Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 4A5A260ACA; Tue, 24 Jan 2023 09:43:40 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 1CFCBC433EF; Tue, 24 Jan 2023 09:43:37 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1674553419; bh=I4Sz1hCtzLwXEISHV2xcmUlWFw8IpNkvFsVE2MdjJoI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=B1o29SzpS+d+v76YJCsPQImEbTSetDk+AWHouxjxWv2EPMa/q4JBexMu3c7EXM7of Bu9ZQkde9C4+AnDtBAfnEAvb2i5SqHQ7W6p1o7MRHKQWXo5VsFvYcI6UrT1xaf1pbv aNryHWgy1B5JILPTEp8uvVQaIDcCN9oi6lbUf5KOK0k9HcSBeiUQsnaijvaL5Zs7NO JouljDA0xr/dnaWJ8OWXhubKYKY//aLdJJ8dbiJ4Ix98/Era98cesy5hy2jOZaaS6n oI/CCfxWG9E22iYXVLUpBIHrutPED7N4Q8Od3DPQG8Tgd0qujo2Cct6HLiwQ6Ed5X3 VB8BOF9h+XrlA== From: Roger Quadros To: trini@konsulko.com Cc: vigneshr@ti.com, nm@ti.com, praneeth@ti.com, u-boot@lists.denx.de, Roger Quadros Subject: [u-boot PATCH v2 2/3] arm: dts: k3-am6: Fix "EEPROM not available" error Date: Tue, 24 Jan 2023 11:43:26 +0200 Message-Id: <20230124094327.46394-3-rogerq@kernel.org> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230124094327.46394-1-rogerq@kernel.org> References: <20230124094327.46394-1-rogerq@kernel.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 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.6 at phobos.denx.de X-Virus-Status: Clean We need to enable i2c0 so u-boot can read from EEPROM. Signed-off-by: Roger Quadros Reviewed-by: Tom Rini --- arch/arm/dts/k3-am642-evm-u-boot.dtsi | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/dts/k3-am642-evm-u-boot.dtsi b/arch/arm/dts/k3-am642-evm-u-boot.dtsi index 055215cff8d..fa7750d634f 100644 --- a/arch/arm/dts/k3-am642-evm-u-boot.dtsi +++ b/arch/arm/dts/k3-am642-evm-u-boot.dtsi @@ -44,6 +44,7 @@ }; &main_i2c0 { + status = "okay"; u-boot,dm-spl; pinctrl-names = "default"; pinctrl-0 = <&main_i2c0_pins_default>; -- 2.34.1