From: Frieder Schrempf <frieder@fris.de>
To: Jagan Teki <jagan@amarulasolutions.com>, Vignesh R <vigneshr@ti.com>
Cc: Frieder Schrempf <frieder.schrempf@kontron.de>,
Alper Nebi Yasak <alpernebiyasak@gmail.com>,
Andre Heider <a.heider@gmail.com>,
Biju Das <biju.das.jz@bp.renesas.com>,
Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>,
Michael Walle <michael@walle.cc>,
Robert Marko <robert.marko@sartura.hr>,
Su Baocheng <baocheng.su@siemens.com>,
u-boot@lists.denx.de, Vladimir Vid <vladimir.vid@sartura.hr>
Subject: [RESEND PATCH 1/6] mtd: spi-nor-ids: Add support for Macronix MX25V8035F and MX25R1635F
Date: Mon, 7 Jun 2021 14:36:41 +0200 [thread overview]
Message-ID: <20210607123707.189163-2-frieder@fris.de> (raw)
In-Reply-To: <20210607123707.189163-1-frieder@fris.de>
From: Frieder Schrempf <frieder.schrempf@kontron.de>
The MX25V8035F is a 8Mb SPI NOR flash and the MX25R1635F is very
similar, but has twice the size (16Mb) and supports a wider supply
voltage range.
They were tested on the Kontron Electronics i.MX6UL and i.MX8MM SoMs.
Signed-off-by: Frieder Schrempf <frieder.schrempf@kontron.de>
---
drivers/mtd/spi/spi-nor-ids.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/mtd/spi/spi-nor-ids.c b/drivers/mtd/spi/spi-nor-ids.c
index 2b57797954..7f06b179da 100644
--- a/drivers/mtd/spi/spi-nor-ids.c
+++ b/drivers/mtd/spi/spi-nor-ids.c
@@ -160,6 +160,8 @@ const struct flash_info spi_nor_ids[] = {
{ INFO("mx25l12855e", 0xc22618, 0, 64 * 1024, 256, 0) },
{ INFO("mx25l25635e", 0xc22019, 0, 64 * 1024, 512, SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ) },
{ INFO("mx25u25635f", 0xc22539, 0, 64 * 1024, 512, SECT_4K | SPI_NOR_4B_OPCODES) },
+ { INFO("mx25v8035f", 0xc22314, 0, 64 * 1024, 16, SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ) },
+ { INFO("mx25r1635f", 0xc22815, 0, 64 * 1024, 32, SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ) },
{ INFO("mx25l25655e", 0xc22619, 0, 64 * 1024, 512, 0) },
{ INFO("mx66l51235l", 0xc2201a, 0, 64 * 1024, 1024, SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ | SPI_NOR_4B_OPCODES) },
{ INFO("mx66u51235f", 0xc2253a, 0, 64 * 1024, 1024, SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ | SPI_NOR_4B_OPCODES) },
--
2.25.1
next prev parent reply other threads:[~2021-06-07 12:45 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-06-07 12:36 [RESEND PATCH 0/6] Add support for Kontron i.MX6UL/ULL and i.MX8MM modules/boards Frieder Schrempf
2021-06-07 12:36 ` Frieder Schrempf [this message]
2021-07-10 15:53 ` [RESEND PATCH 1/6] mtd: spi-nor-ids: Add support for Macronix MX25V8035F and MX25R1635F sbabic
2021-07-10 19:36 ` sbabic
2021-06-07 12:36 ` [RESEND PATCH 2/6] spi: fsl_qspi: Build driver only if DM_SPI is available Frieder Schrempf
2021-07-10 15:52 ` sbabic
2021-07-10 19:35 ` sbabic
2021-06-07 12:36 ` [RESEND PATCH 3/6] clk: imx8mm: Add SPI clocks Frieder Schrempf
2021-07-10 15:52 ` sbabic
2021-07-10 19:34 ` sbabic
2021-06-07 12:36 ` [RESEND PATCH 4/6] imx8m: Restrict usable memory to space below 4G boundary Frieder Schrempf
2021-07-10 15:53 ` sbabic
2021-07-10 19:36 ` sbabic
2021-06-07 12:36 ` [RESEND PATCH 5/6] imx: imx6ul: Add support for Kontron Electronics SL/BL i.MX6UL/ULL boards (N63xx/N64xx) Frieder Schrempf
2021-07-10 14:49 ` Stefano Babic
2021-06-07 12:36 ` [RESEND PATCH 6/6] imx: imx8mm: Add support for Kontron Electronics SL/BL i.MX8M-Mini boards (N801x) Frieder Schrempf
2021-06-07 14:22 ` Frieder Schrempf
2021-06-17 6:58 ` Stefano Babic
2021-07-10 14:53 ` Stefano Babic
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20210607123707.189163-2-frieder@fris.de \
--to=frieder@fris.de \
--cc=a.heider@gmail.com \
--cc=alpernebiyasak@gmail.com \
--cc=baocheng.su@siemens.com \
--cc=biju.das.jz@bp.renesas.com \
--cc=frieder.schrempf@kontron.de \
--cc=jagan@amarulasolutions.com \
--cc=michael@walle.cc \
--cc=prabhakar.mahadev-lad.rj@bp.renesas.com \
--cc=robert.marko@sartura.hr \
--cc=u-boot@lists.denx.de \
--cc=vigneshr@ti.com \
--cc=vladimir.vid@sartura.hr \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox