From mboxrd@z Thu Jan 1 00:00:00 1970 From: Patrice CHOTARD Date: Fri, 2 Oct 2020 09:48:34 +0000 Subject: [Uboot-stm32] [PATCH 1/4] configs: stm32mp1: enable fastboot support of eMMC boot partition In-Reply-To: <20200909152426.1.Ie383431427f46a688dc1f0932522d8f34f3192a5@changeid> References: <20200909152426.1.Ie383431427f46a688dc1f0932522d8f34f3192a5@changeid> Message-ID: <8659f9e9-6d6d-c44f-132d-bb192b48751d@st.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hi Patrick On 9/9/20 3:24 PM, Patrick Delaunay wrote: > From: Jean-Philippe ROMAIN > > Activate fastboot support on boot partition for eMMC, mmc1 device > on STMicroelectronics board (EV1). > > Signed-off-by: Jean-Philippe ROMAIN > Signed-off-by: Patrick Delaunay > --- > > configs/stm32mp15_basic_defconfig | 5 +++++ > configs/stm32mp15_trusted_defconfig | 5 +++++ > 2 files changed, 10 insertions(+) > > diff --git a/configs/stm32mp15_basic_defconfig b/configs/stm32mp15_basic_defconfig > index a8c4112dbe..fc3d2cc4fb 100644 > --- a/configs/stm32mp15_basic_defconfig > +++ b/configs/stm32mp15_basic_defconfig > @@ -80,6 +80,11 @@ CONFIG_FASTBOOT_USB_DEV=1 > CONFIG_FASTBOOT_FLASH=y > CONFIG_FASTBOOT_FLASH_MMC_DEV=1 > CONFIG_GPIO_HOG=y > +CONFIG_FASTBOOT_MMC_BOOT_SUPPORT=y > +CONFIG_FASTBOOT_MMC_BOOT1_NAME="mmc1boot0" > +CONFIG_FASTBOOT_MMC_BOOT2_NAME="mmc1boot1" > +CONFIG_FASTBOOT_MMC_USER_SUPPORT=y > +CONFIG_FASTBOOT_MMC_USER_NAME="mmc1" > CONFIG_DM_HWSPINLOCK=y > CONFIG_HWSPINLOCK_STM32=y > CONFIG_DM_I2C=y > diff --git a/configs/stm32mp15_trusted_defconfig b/configs/stm32mp15_trusted_defconfig > index 0792884a9d..bfe9e6b06c 100644 > --- a/configs/stm32mp15_trusted_defconfig > +++ b/configs/stm32mp15_trusted_defconfig > @@ -60,6 +60,11 @@ CONFIG_FASTBOOT_USB_DEV=1 > CONFIG_FASTBOOT_FLASH=y > CONFIG_FASTBOOT_FLASH_MMC_DEV=1 > CONFIG_GPIO_HOG=y > +CONFIG_FASTBOOT_MMC_BOOT_SUPPORT=y > +CONFIG_FASTBOOT_MMC_BOOT1_NAME="mmc1boot0" > +CONFIG_FASTBOOT_MMC_BOOT2_NAME="mmc1boot1" > +CONFIG_FASTBOOT_MMC_USER_SUPPORT=y > +CONFIG_FASTBOOT_MMC_USER_NAME="mmc1" > CONFIG_DM_HWSPINLOCK=y > CONFIG_HWSPINLOCK_STM32=y > CONFIG_DM_I2C=y Reviewed-by: Patrice Chotard Thanks