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 4BC4FEB64D9 for ; Tue, 4 Jul 2023 18:11:25 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id E5C05861B4; Tue, 4 Jul 2023 20:10:32 +0200 (CEST) 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="XK0gIPDc"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id E0450861B4; Tue, 4 Jul 2023 20:10:30 +0200 (CEST) Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) (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 850968615A for ; Tue, 4 Jul 2023 20:10:28 +0200 (CEST) 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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 29CA861345; Tue, 4 Jul 2023 18:10:27 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id AD459C433C8; Tue, 4 Jul 2023 18:10:24 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1688494226; bh=3xr3IhhnBLoKNR/+TX1Fq/fz0UVU4bCAB090faa0Vug=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=XK0gIPDc6/pyCrzAxLI7BgwpD8Ghsnd7aZbtQGiy7lShU46cUgKb8DofyE9KwTRoP uMNyYxq+TY7pouYf8bQg2sdG6+phbhzAAsB369Xod8JHTz56854dEOOWCN0Ze1hDp0 PzBGjpwfJBb9vP4jxaqPsAKrQgLKT280944HZlYXy8duuZEQO5aJ/BzXEyTr4ZjRYH fsLLZYWJcI8DmDVDRPlLIWOVbaZ6l4GSEIaR9KTisd8nwmmraC1+W+Wm6zktbxwEbH P+Q59nzMCFaEG4piZOWr/n5lOEc/75KPeg7W/cnrvjRpKs2pfcMeRal1AfqaKJQluC FS++uzFd+EbRQ== From: Roger Quadros To: vigneshr@ti.com, trini@konsulko.com Cc: nm@ti.com, srk@ti.com, u-boot@lists.denx.de, Roger Quadros Subject: [PATCH 6/6] configs: am64x_evm_a53_defconfig: Enable I2C GPIO drivers Date: Tue, 4 Jul 2023 21:10:08 +0300 Message-Id: <20230704181008.305561-7-rogerq@kernel.org> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230704181008.305561-1-rogerq@kernel.org> References: <20230704181008.305561-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.8 at phobos.denx.de X-Virus-Status: Clean We need the I2C GPIO drivers to detect expansion cards. Signed-off-by: Roger Quadros --- configs/am64x_evm_a53_defconfig | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configs/am64x_evm_a53_defconfig b/configs/am64x_evm_a53_defconfig index 4589624e96..3a8d2ed3b6 100644 --- a/configs/am64x_evm_a53_defconfig +++ b/configs/am64x_evm_a53_defconfig @@ -105,7 +105,11 @@ CONFIG_SYS_DFU_MAX_FILE_SIZE=0x800000 CONFIG_DMA_CHANNELS=y CONFIG_TI_K3_NAVSS_UDMA=y CONFIG_TI_SCI_PROTOCOL=y +CONFIG_DM_PCA953X=y +CONFIG_SPL_DM_PCA953X=y CONFIG_DM_I2C=y +CONFIG_I2C_SET_DEFAULT_BUS_NUM=y +CONFIG_DM_I2C_GPIO=y CONFIG_SYS_I2C_OMAP24XX=y CONFIG_DM_MAILBOX=y CONFIG_K3_SEC_PROXY=y -- 2.34.1