From patchwork Mon Jul 2 12:34:55 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Emmanuel Vadot X-Patchwork-Id: 937869 X-Patchwork-Delegate: agraf@suse.de Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=lists.denx.de (client-ip=81.169.180.215; helo=lists.denx.de; envelope-from=u-boot-bounces@lists.denx.de; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=freebsd.org Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 41K6Ck5wWtz9s29 for ; Mon, 2 Jul 2018 22:35:14 +1000 (AEST) Received: by lists.denx.de (Postfix, from userid 105) id 9582CC21E30; Mon, 2 Jul 2018 12:35:10 +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 2F533C21D8E; Mon, 2 Jul 2018 12:35:07 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 7B803C21DAF; Mon, 2 Jul 2018 12:35:05 +0000 (UTC) Received: from mx2.freebsd.org (mx2.freebsd.org [8.8.178.116]) by lists.denx.de (Postfix) with ESMTPS id 0761DC21D8E for ; Mon, 2 Jul 2018 12:35:05 +0000 (UTC) Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx2.freebsd.org (Postfix) with ESMTPS id AB9E169B0C; Mon, 2 Jul 2018 12:35:03 +0000 (UTC) (envelope-from manu@freebsd.org) Received: from smtp.freebsd.org (smtp.freebsd.org [96.47.72.83]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E552785BBD; Mon, 2 Jul 2018 12:35:02 +0000 (UTC) (envelope-from manu@freebsd.org) Received: from skull.home.blih.net (ip-9.net-89-3-105.rev.numericable.fr [89.3.105.9]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) (Authenticated sender: manu) by smtp.freebsd.org (Postfix) with ESMTPSA id 3F185AD85; Mon, 2 Jul 2018 12:35:02 +0000 (UTC) (envelope-from manu@freebsd.org) From: Emmanuel Vadot To: agraf@suse.de Date: Mon, 2 Jul 2018 14:34:55 +0200 Message-Id: <20180702123455.55678-1-manu@freebsd.org> X-Mailer: git-send-email 2.17.0 Cc: u-boot@lists.denx.de, Oleksandr Tymoshenko Subject: [U-Boot] [PATCH] rpi: Add mmc 1 as a boot target 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: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" When booting with the rpi-firmware "mmc" overlay that disable the SDHOST controller and use the SDHCI one for the sd card, mmc 1 because a viable boot target. Add it to the list Signed-off-by: Oleksandr Tymoshenko Signed-off-by: Emmanuel Vadot --- include/configs/rpi.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/configs/rpi.h b/include/configs/rpi.h index a97550b732..805ca559bb 100644 --- a/include/configs/rpi.h +++ b/include/configs/rpi.h @@ -150,6 +150,7 @@ #define BOOT_TARGET_DEVICES(func) \ func(MMC, mmc, 0) \ + func(MMC, mmc, 1) \ func(USB, usb, 0) \ func(PXE, pxe, na) \ func(DHCP, dhcp, na)