From patchwork Thu Apr 20 15:25:49 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Franklin S Cooper Jr X-Patchwork-Id: 752843 X-Patchwork-Delegate: hs@denx.de Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 3w82qK49Gkz9s4s for ; Fri, 21 Apr 2017 01:29:49 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=ti.com header.i=@ti.com header.b="VFownl7i"; dkim-atps=neutral Received: by lists.denx.de (Postfix, from userid 105) id 57830C21E25; Thu, 20 Apr 2017 15:27:27 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lists.denx.de X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=T_DKIM_INVALID autolearn=unavailable autolearn_force=no version=3.4.0 Received: from lists.denx.de (localhost [IPv6:::1]) by lists.denx.de (Postfix) with ESMTP id 20133C21E3C; Thu, 20 Apr 2017 15:27:05 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id D839EC21DEB; Thu, 20 Apr 2017 15:26:13 +0000 (UTC) Received: from lelnx194.ext.ti.com (lelnx194.ext.ti.com [198.47.27.80]) by lists.denx.de (Postfix) with ESMTPS id D784EC21E12 for ; Thu, 20 Apr 2017 15:26:12 +0000 (UTC) Received: from dlelxv90.itg.ti.com ([172.17.2.17]) by lelnx194.ext.ti.com (8.15.1/8.15.1) with ESMTP id v3KFQB3I004503 for ; Thu, 20 Apr 2017 10:26:11 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ti.com; s=ti-com-17Q1; t=1492701971; bh=pg4S4OkflcM5lhuFaBWp7e9TtWVbmZT0fO21vhyhdhs=; h=From:To:CC:Subject:Date:In-Reply-To:References; b=VFownl7iEjYUpc2NxsnkyQHdH0IC0MuzwSwKzSVkfj9uC5w68E5u+dOr1szd/SNqW c89uU9gbmxJkwoJnizK7Km+CmzHtCASVkkyGyEasbnjb/THnu2Vpo8t2hcLVG7Fk5P 0jVwBvcFbCYvDoRF0BfO8Ofn0j6bEMj1xnXVPR8Y= Received: from DFLE72.ent.ti.com (dfle72.ent.ti.com [128.247.5.109]) by dlelxv90.itg.ti.com (8.14.3/8.13.8) with ESMTP id v3KFQBf6013359 for ; Thu, 20 Apr 2017 10:26:11 -0500 Received: from dlep33.itg.ti.com (157.170.170.75) by DFLE72.ent.ti.com (128.247.5.109) with Microsoft SMTP Server id 14.3.294.0; Thu, 20 Apr 2017 10:26:10 -0500 Received: from dbdmail01.india.ti.com (dbdmail01.india.ti.com [172.24.162.206]) by dlep33.itg.ti.com (8.14.3/8.13.8) with ESMTP id v3KFQA1r013943; Thu, 20 Apr 2017 10:26:11 -0500 Received: from udb0273011.am.dhcp.ti.com (udb0273011.am.dhcp.ti.com [128.247.83.178]) by dbdmail01.india.ti.com (8.14.3/8.14.3/SuSE Linux 0.8) with ESMTP id v3KFPptb015503; Thu, 20 Apr 2017 20:56:08 +0530 From: Franklin S Cooper Jr To: , , , Date: Thu, 20 Apr 2017 10:25:49 -0500 Message-ID: <20170420152549.28031-9-fcooper@ti.com> X-Mailer: git-send-email 2.10.0 In-Reply-To: <20170420152549.28031-1-fcooper@ti.com> References: <20170420152549.28031-1-fcooper@ti.com> MIME-Version: 1.0 Cc: Franklin S Cooper Jr Subject: [U-Boot] [PATCH v2 8/8] ARM: keystone: Enable DM_I2C by default X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.18 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" Enable by default DM_I2C for all Texas Instruments Keystone 2 based evms. Signed-off-by: Franklin S Cooper Jr Reviewed-by: Tom Rini Reviewed-by: Heiko Schocher --- arch/arm/mach-keystone/Kconfig | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/arch/arm/mach-keystone/Kconfig b/arch/arm/mach-keystone/Kconfig index 67f5fa0..3ea8dc3 100644 --- a/arch/arm/mach-keystone/Kconfig +++ b/arch/arm/mach-keystone/Kconfig @@ -6,17 +6,21 @@ choice config TARGET_K2HK_EVM bool "TI Keystone 2 Kepler/Hawking EVM" + imply DM_I2C config TARGET_K2E_EVM bool "TI Keystone 2 Edison EVM" + imply DM_I2C config TARGET_K2L_EVM bool "TI Keystone 2 Lamar EVM" + imply DM_I2C config TARGET_K2G_EVM bool "TI Keystone 2 Galileo EVM" select BOARD_LATE_INIT select TI_I2C_BOARD_DETECT + imply DM_I2C endchoice