From patchwork Wed Apr 12 22:09:44 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vagrant Cascadian X-Patchwork-Id: 750182 X-Patchwork-Delegate: jh80.chung@samsung.com 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 3w3J4d1WPcz9s89 for ; Thu, 13 Apr 2017 08:09:53 +1000 (AEST) Received: by lists.denx.de (Postfix, from userid 105) id E9900C21C31; Wed, 12 Apr 2017 22:09:50 +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=none 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 B463DC21C26; Wed, 12 Apr 2017 22:09:47 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 1D01DC21C26; Wed, 12 Apr 2017 22:09:47 +0000 (UTC) Received: from cascadia.aikidev.net (cascadia.aikidev.net [173.255.214.101]) by lists.denx.de (Postfix) with ESMTP id B2195C21BE5 for ; Wed, 12 Apr 2017 22:09:46 +0000 (UTC) Received: from localhost (75-164-202-26.ptld.qwest.net [75.164.202.26]) (Authenticated sender: vagrant@cascadia.debian.net) by cascadia.aikidev.net (Postfix) with ESMTPSA id 0501F1AAE6; Wed, 12 Apr 2017 15:09:45 -0700 (PDT) From: Vagrant Cascadian To: Heiner Kallweit , Jaehoon Chung , Andreas =?utf-8?Q?F=C3=A4rber?= , Carlo Caione In-Reply-To: <000ce33d-cbc9-cfd8-d292-86a15ae62819@gmail.com> References: <000ce33d-cbc9-cfd8-d292-86a15ae62819@gmail.com> Date: Wed, 12 Apr 2017 15:09:44 -0700 Message-ID: <87fuhdmg5z.fsf@aikidev.net> MIME-Version: 1.0 Cc: u-boot@lists.denx.de Subject: Re: [U-Boot] [U-Boot, v6, 3/3] odroid-c2: enable new Meson GX MMC driver in board defconfig 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" On 2017-02-20, Heiner Kallweit wrote: > Enable new Meson GX MMC driver in Odroid C2 defconfig. This required some minor fixes to actually apply against v2017.05-rc1: live well, vagrant > Signed-off-by: Heiner Kallweit > --- > v6: > - no changes > --- > configs/odroid-c2_defconfig | 5 ++++- > 1 file changed, 4 insertions(+), 1 deletion(-) > > diff --git a/configs/odroid-c2_defconfig b/configs/odroid-c2_defconfig > index 62b7627..6de712a 100644 > --- a/configs/odroid-c2_defconfig > +++ b/configs/odroid-c2_defconfig > @@ -3,7 +3,9 @@ CONFIG_ARCH_MESON=y > CONFIG_MESON_GXBB=y > CONFIG_TARGET_ODROID_C2=y > CONFIG_IDENT_STRING=" odroid-c2" > -# CONFIG_MMC is not set > +CONFIG_MMC=y > +CONFIG_DM_MMC=y > +CONFIG_MMC_MESON_GX=y > CONFIG_DEFAULT_DEVICE_TREE="meson-gxbb-odroidc2" > # CONFIG_DISPLAY_CPUINFO is not set > # CONFIG_DISPLAY_BOARDINFO is not set > @@ -14,6 +16,7 @@ CONFIG_HUSH_PARSER=y > # CONFIG_CMD_LOADS is not set > # CONFIG_CMD_FPGA is not set > # CONFIG_CMD_SETEXPR is not set > +CONFIG_CMD_MMC=y > CONFIG_DOS_PARTITION=y > CONFIG_ISO_PARTITION=y > CONFIG_EFI_PARTITION=y diff --git a/configs/odroid-c2_defconfig b/configs/odroid-c2_defconfig index 2cf5011f46..f2a62ea609 100644 --- a/configs/odroid-c2_defconfig +++ b/configs/odroid-c2_defconfig @@ -6,15 +6,18 @@ CONFIG_IDENT_STRING=" odroid-c2" CONFIG_DEFAULT_DEVICE_TREE="meson-gxbb-odroidc2" # CONFIG_DISPLAY_CPUINFO is not set # CONFIG_DISPLAY_BOARDINFO is not set +CONFIG_DM_MMC=y # CONFIG_CMD_BDI is not set # CONFIG_CMD_IMI is not set # CONFIG_CMD_IMLS is not set # CONFIG_CMD_LOADS is not set # CONFIG_CMD_FPGA is not set +CONFIG_CMD_MMC=y # CONFIG_CMD_SETEXPR is not set CONFIG_OF_CONTROL=y CONFIG_NET_RANDOM_ETHADDR=y -# CONFIG_MMC is not set +CONFIG_MMC=y +CONFIG_MMC_MESON_GX=y CONFIG_DM_ETH=y CONFIG_ETH_DESIGNWARE=y CONFIG_PINCTRL=y