From patchwork Mon Sep 4 09:56:15 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: delane.brandy@arm.com X-Patchwork-Id: 29913 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 aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id AA43BC83F3F for ; Mon, 4 Sep 2023 09:56:32 +0000 (UTC) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.web11.44989.1693821387238198283 for ; Mon, 04 Sep 2023 02:56:27 -0700 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: arm.com, ip: 217.140.110.172, mailfrom: delane.brandy@arm.com) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id DE037143D; Mon, 4 Sep 2023 02:57:04 -0700 (PDT) Received: from e127094.arm.com (unknown [10.57.92.215]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id F39A13F793; Mon, 4 Sep 2023 02:56:25 -0700 (PDT) From: delane.brandy@arm.com To: meta-arm@lists.yoctoproject.org, Ross.Burton@arm.com, jon.mason@arm.com Cc: nd@arm.com, Delane Brandy Subject: [PATCH 1/1] arm-bsp/corstone1000: mmc2-enablement Date: Mon, 4 Sep 2023 10:56:15 +0100 Message-Id: <20230904095615.516245-2-delane.brandy@arm.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230904095615.516245-1-delane.brandy@arm.com> References: <20230904095615.516245-1-delane.brandy@arm.com> MIME-Version: 1.0 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Mon, 04 Sep 2023 09:56:32 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arm/message/5018 From: Delane Brandy Enables the support of a second mmc card, which enables distro installation. Signed-off-by: Delane Brandy --- meta-arm-bsp/conf/machine/corstone1000-fvp.conf | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/meta-arm-bsp/conf/machine/corstone1000-fvp.conf b/meta-arm-bsp/conf/machine/corstone1000-fvp.conf index 9636ffe4..ebfba5b9 100644 --- a/meta-arm-bsp/conf/machine/corstone1000-fvp.conf +++ b/meta-arm-bsp/conf/machine/corstone1000-fvp.conf @@ -49,3 +49,10 @@ FVP_CONFIG[board.msd_mmc.p_fast_access] ?= "0" FVP_CONFIG[board.msd_mmc.diagnostics] ?= "2" FVP_CONFIG[board.msd_mmc.p_max_block_count] ?= "0xFFFF" FVP_CONFIG[board.msd_config.pl180_fifo_depth] ?= "16" + +# MMC2 card configuration +FVP_CONFIG[board.msd_mmc_2.card_type] ?= "SDHC" +FVP_CONFIG[board.msd_mmc_2.p_fast_access] ?= "0" +FVP_CONFIG[board.msd_mmc_2.diagnostics] ?= "2" +FVP_CONFIG[board.msd_mmc_2.p_max_block_count] ?= "0xFFFF" +FVP_CONFIG[board.msd_config_2.pl180_fifo_depth] ?= "16" \ No newline at end of file