From mboxrd@z Thu Jan 1 00:00:00 1970 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 phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id E30A8C54E58 for ; Mon, 18 Mar 2024 17:43:47 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id F2A2E87F22; Mon, 18 Mar 2024 18:43:35 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=gnu.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (2048-bit key; unprotected) header.d=gnu.org header.i=@gnu.org header.b="WtWbqgXk"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 1858487F1F; Mon, 18 Mar 2024 18:17:13 +0100 (CET) Received: from eggs.gnu.org (eggs.gnu.org [IPv6:2001:470:142:3::10]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id E0D708800B for ; Mon, 18 Mar 2024 18:17:08 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=gnu.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=othacehe@gnu.org Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1rmGbj-0007I2-8X; Mon, 18 Mar 2024 13:17:08 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:References:In-Reply-To:Date:Subject:To: From; bh=gRAgh8RP+grJPiYO6uQX13/bCion+hZ65nW3/+ER5xA=; b=WtWbqgXkXr9BvoRHItYw sUlbbYuoBc3v2SDXcGrupOtPP9RiM8x/6VT2vxgfK5WlINLMv6OEnQDbNCEMuciolM6V7zdvbYvqk BoZ1AhMH776tEV2v4nfQZRGlZPdIJy5cZoHhKEBgfMTknG2VM6JF9CBUsY6kibAEonfFJcbOpq8Q6 QIdn/NXqWrM9k4dK9G6L7cTLgKW55y7EpgrCybrvhm3fltHOwiId7SvIeUkHUXFib8TWC5EZUc/Be DHFtxRXVh2Ln9LTmvkp6SI5gglylQlNKeremOITDbJUYJ0E6Q2IRzm7fsyC9Py852ShBaT/cTgLIx 9ulc0ekkAM2GtA==; From: Mathieu Othacehe To: Tom Rini , Marek Vasut , Peng Fan , Shiji Yang , Ye Li , Alice Guo , Stefano Babic , =?UTF-8?q?S=C3=A9bastien=20Szymanski?= , Fabio Estevam , Simon Glass , Mathieu Othacehe , Yannic Moog , Primoz Fiser , Christoph Stoidner , Wadim Egorov Cc: u-boot@lists.denx.de, Mathieu Othacehe Subject: [PATCH 3/3] configs: imx93-phyboard-segin: Add fastboot support. Date: Mon, 18 Mar 2024 18:16:36 +0100 Message-ID: <20240318171637.12664-4-othacehe@gnu.org> X-Mailer: git-send-email 2.41.0 In-Reply-To: <20240318171637.12664-1-othacehe@gnu.org> References: <20240318171637.12664-1-othacehe@gnu.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Mailman-Approved-At: Mon, 18 Mar 2024 18:43:33 +0100 X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 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" X-Virus-Scanned: clamav-milter 0.103.8 at phobos.denx.de X-Virus-Status: Clean Enable the `fastboot` command. Signed-off-by: Mathieu Othacehe --- configs/imx93-phyboard-segin_defconfig | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/configs/imx93-phyboard-segin_defconfig b/configs/imx93-phyboard-segin_defconfig index 5acb987b817..44ab6f7073b 100644 --- a/configs/imx93-phyboard-segin_defconfig +++ b/configs/imx93-phyboard-segin_defconfig @@ -94,6 +94,12 @@ CONFIG_SPL_CLK_IMX93=y CONFIG_CLK_IMX93=y CONFIG_DFU_MMC=y CONFIG_DFU_RAM=y +CONFIG_USB_FUNCTION_FASTBOOT=y +CONFIG_FASTBOOT_BUF_ADDR=0x82800000 +CONFIG_FASTBOOT_BUF_SIZE=0x20000000 +CONFIG_FASTBOOT_FLASH=y +CONFIG_FASTBOOT_UUU_SUPPORT=y +CONFIG_FASTBOOT_FLASH_MMC_DEV=0 CONFIG_GPIO_HOG=y CONFIG_IMX_RGPIO2P=y CONFIG_DM_I2C=y -- 2.41.0