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 6AA20C433EF for ; Wed, 6 Apr 2022 13:27:00 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 1D8D683DC0; Wed, 6 Apr 2022 15:26:58 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.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=kernel.org header.i=@kernel.org header.b="H8tiBVqZ"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id BF4CC83DDE; Wed, 6 Apr 2022 15:26:56 +0200 (CEST) Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) (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 183F683D2A for ; Wed, 6 Apr 2022 15:26:46 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=pali@kernel.org Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id A3F4F60BBC; Wed, 6 Apr 2022 13:26:44 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id E60B6C385A3; Wed, 6 Apr 2022 13:26:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1649251604; bh=ppZdYlIlry+JFfDOqsCPrY2I3gDY/ycPFPwWDdwWuMs=; h=From:To:Cc:Subject:Date:From; b=H8tiBVqZOooYkkr/ej1el6rZE4pw8e15LmKnN7D+3lY5D09gela5PKWh2yJ6NKQWY iZXUiDhWJ+h6YA8ibRQdULm4MdzLNlU+ryiZ4rMtd7Yl+SErltKgvEietvmlOabXz2 g4S2y+Qds6+QS2u9q7y4RxW2NphVH5mppv7htyemfG76adAMLeycaT/np0RPiYg14H l7LYddQMcVCjQd24V3X9Jyzu+cFUF76MKrDeQlrsDwNgRYbMULXjVTPvFGLiT26EjB Tm+KtbePoz/bka/ceyQ2vmzB1DZChi3zym05UPItuA9QKIIKwKxwrS1P7aCPpzXqlr UIE4VckILtZ6g== Received: by pali.im (Postfix) id 237AB775; Wed, 6 Apr 2022 15:26:41 +0200 (CEST) From: =?UTF-8?q?Pali=20Roh=C3=A1r?= To: =?UTF-8?q?Marek=20Beh=C3=BAn?= , Stefan Roese Cc: u-boot@lists.denx.de Subject: [PATCH] arm: mvebu: turris_omnia: Enable CONFIG_CMD_FUSE Date: Wed, 6 Apr 2022 15:26:35 +0200 Message-Id: <20220406132635.10789-1-pali@kernel.org> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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.5 at phobos.denx.de X-Virus-Status: Clean This allows to read eFuse on Turris Omnia. Signed-off-by: Pali Rohár --- configs/turris_omnia_defconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configs/turris_omnia_defconfig b/configs/turris_omnia_defconfig index d3c5c34b3b94..3daafe61785e 100644 --- a/configs/turris_omnia_defconfig +++ b/configs/turris_omnia_defconfig @@ -12,6 +12,7 @@ CONFIG_SYS_MEMTEST_START=0x00800000 CONFIG_SYS_MEMTEST_END=0x00ffffff CONFIG_TARGET_TURRIS_OMNIA=y CONFIG_DDR_RESET_ON_TRAINING_FAILURE=y +CONFIG_MVEBU_EFUSE=y CONFIG_ENV_SIZE=0x10000 CONFIG_ENV_OFFSET=0xF0000 CONFIG_ENV_SECT_SIZE=0x10000 @@ -43,6 +44,7 @@ CONFIG_CMD_MEMTEST=y CONFIG_SYS_ALT_MEMTEST=y CONFIG_CMD_SHA1SUM=y CONFIG_CMD_LZMADEC=y +CONFIG_CMD_FUSE=y CONFIG_CMD_GPIO=y CONFIG_CMD_GPT=y CONFIG_CMD_I2C=y -- 2.20.1