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 X-Spam-Level: X-Spam-Status: No, score=-17.0 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER, INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 209FBC433DB for ; Tue, 9 Mar 2021 22:03:31 +0000 (UTC) Received: from desiato.infradead.org (desiato.infradead.org [90.155.92.199]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 6CF7064FDC for ; Tue, 9 Mar 2021 22:03:30 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 6CF7064FDC Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=gateworks.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-mtd-bounces+linux-mtd=archiver.kernel.org@lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=desiato.20200630; h=Sender:Content-Transfer-Encoding :Content-Type:MIME-Version:List-Subscribe:List-Help:List-Post:List-Archive: List-Unsubscribe:List-Id:References:In-Reply-To:Message-Id:Date:Subject:Cc:To :From:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Owner; bh=oBQkc5ZjCZBeqeYQZczq9aohlNOanSXKdWn3VKHyJTc=; b=cvcsvWEdB9k3dOSB+0ujZfK0yj SxK+8h3FhKub/fxj0m7EQaLW+hxigGwhcwIIuSs+jMJ/6kzdmStJnCyCAgngWpPCdpYaqJqf/a5Kc AXjliwHR463CpV0VLXp80X4NOvd6gqJSXWhSAvVfpB5N0UBkmJRoIABiXcOkuwgleZ+40DtIydGsG JKOelCZywlPqjtpxLFLGttvbU6CPIQOcZRE0gzBHeSLoXFgWpl7gx0CdgBk9wWFyZYV65n5cevzJ7 M/8w1Izgc7iMt3P6D3K554VMGm4iSuShJA5t/MOGt9GYHJCCKBEUUsQ+K3mTNza9UL1WGARZhMrpt LQHiaOOw==; Received: from localhost ([::1] helo=desiato.infradead.org) by desiato.infradead.org with esmtp (Exim 4.94 #2 (Red Hat Linux)) id 1lJkRG-005WdF-8b; Tue, 09 Mar 2021 22:02:50 +0000 Received: from finn.gateworks.com ([108.161.129.64] helo=finn.localdomain) by desiato.infradead.org with esmtps (Exim 4.94 #2 (Red Hat Linux)) id 1lJkR9-005Wc3-LJ for linux-mtd@lists.infradead.org; Tue, 09 Mar 2021 22:02:46 +0000 Received: from 068-189-091-139.biz.spectrum.com ([68.189.91.139] helo=tharvey.pdc.gateworks.com) by finn.localdomain with esmtp (Exim 4.93) (envelope-from ) id 1lJkQx-001Npo-9q; Tue, 09 Mar 2021 22:02:31 +0000 From: Tim Harvey To: devicetree@vger.kernel.org, NXP Linux Team , Fabio Estevam , Pengutronix Kernel Team , Sascha Hauer , Rob Herring , Shawn Guo , Tudor Ambarus , Miquel Raynal , Richard Weinberger , linux-mtd@lists.infradead.org Cc: linux-kernel@vger.kernel.org, Tim Harvey Subject: [PATCH 2/4] mtd: spi-nor: fujitsu: add support for MB85RS4MT Date: Tue, 9 Mar 2021 14:00:12 -0800 Message-Id: <20210309220014.22205-2-tharvey@gateworks.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20210309220014.22205-1-tharvey@gateworks.com> References: <20210309220014.22205-1-tharvey@gateworks.com> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20210309_220244_783185_0AB83A17 X-CRM114-Status: UNSURE ( 9.74 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-mtd@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Linux MTD discussion mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-mtd" Errors-To: linux-mtd-bounces+linux-mtd=archiver.kernel.org@lists.infradead.org Add support for the Fujitsu MB85RS4MT SPI FRAM EEPROM device. This is a 512KiB FRAM EEPROM. Signed-off-by: Tim Harvey --- drivers/mtd/spi-nor/fujitsu.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/mtd/spi-nor/fujitsu.c b/drivers/mtd/spi-nor/fujitsu.c index e385d93e756c..9df5d0576cea 100644 --- a/drivers/mtd/spi-nor/fujitsu.c +++ b/drivers/mtd/spi-nor/fujitsu.c @@ -11,6 +11,7 @@ static const struct flash_info fujitsu_parts[] = { /* Fujitsu */ { "mb85rs1mt", INFO(0x047f27, 0, 128 * 1024, 1, SPI_NOR_NO_ERASE) }, + { "mb85rs4mt", INFO(0x047f49, 0, 512 * 1024, 1, SPI_NOR_NO_ERASE) }, }; const struct spi_nor_manufacturer spi_nor_fujitsu = { -- 2.17.1 ______________________________________________________ Linux MTD discussion mailing list http://lists.infradead.org/mailman/listinfo/linux-mtd/