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 1E3EFC19F28 for ; Wed, 3 Aug 2022 08:53:25 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id E830284194; Wed, 3 Aug 2022 10:53:23 +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="cK0BzaU2"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 1831481872; Wed, 3 Aug 2022 10:53:22 +0200 (CEST) Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) (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 C0A498418E for ; Wed, 3 Aug 2022 10:53:19 +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=kabel@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 3946C615BA; Wed, 3 Aug 2022 08:53:18 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 8F364C433D7; Wed, 3 Aug 2022 08:53:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1659516797; bh=09ltM44QaZKsEg4kYq+K/2zC94YJxHu6K+8pjUUEGHE=; h=From:To:Cc:Subject:Date:From; b=cK0BzaU29c8bzdz7yFvx4HU5xrJq08ipVictRAQAC9a7OMMWoEQyUtNaI58BAHT3m 8S0AobUvUgVv7a/FD1ZcxrknboLuLx19XPnkqOgzK1i9YAwoBaIZ+ODPs1C0Q2zwO0 v50h6MzJiodpumxPyITxpqDDWPb+GSdClH0+Peptk7UFKSksBk2fPT1kN0aB3Wv3kN 7y1ene+bizETZVJsIVofMOF2mTAUZ0Fv87IexPNgSYbschigjd2tEKas8cDeN0l045 fbTG7zKoIfbz7d6NvO0h+hqmhpw1RVUK9JxjcJrWqdszFIO+GdHZW2VJRYUEa3e3Wb CUqgmt77wYS9g== From: =?UTF-8?q?Marek=20Beh=C3=BAn?= To: Stefan Roese Cc: pali@kernel.org, u-boot@lists.denx.de, =?UTF-8?q?Marek=20Beh=C3=BAn?= Subject: [PATCH u-boot-marvell] arm: mvebu: turris_omnia: Add Winbond SPI flash support Date: Wed, 3 Aug 2022 10:53:12 +0200 Message-Id: <20220803085312.18755-1-kabel@kernel.org> X-Mailer: git-send-email 2.35.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.6 at phobos.denx.de X-Virus-Status: Clean Some new Omnia boards will come with Winbond SPI flash. Add to defconfig. Signed-off-by: Marek BehĂșn --- configs/turris_omnia_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/turris_omnia_defconfig b/configs/turris_omnia_defconfig index da94ca74ac..a7f4b4153c 100644 --- a/configs/turris_omnia_defconfig +++ b/configs/turris_omnia_defconfig @@ -81,6 +81,7 @@ CONFIG_DM_MTD=y CONFIG_SF_DEFAULT_SPEED=40000000 CONFIG_SPI_FLASH_MACRONIX=y CONFIG_SPI_FLASH_SPANSION=y +CONFIG_SPI_FLASH_WINBOND=y CONFIG_SPI_FLASH_MTD=y CONFIG_PHY_MARVELL=y CONFIG_PHY_FIXED=y -- 2.35.1