blob: cbfafc453274aa2bef7aee285c5109601516d5e7 [file] [log] [blame]
Mike Lavender2f9f7622006-01-08 13:34:27 -08001/*
David Brownellfa0a8c72007-06-24 15:12:35 -07002 * MTD SPI driver for ST M25Pxx (and similar) serial flash chips
Mike Lavender2f9f7622006-01-08 13:34:27 -08003 *
4 * Author: Mike Lavender, mike@steroidmicros.com
5 *
6 * Copyright (c) 2005, Intec Automation Inc.
7 *
8 * Some parts are based on lart.c by Abraham Van Der Merwe
9 *
10 * Cleaned up and generalized based on mtd_dataflash.c
11 *
12 * This code is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License version 2 as
14 * published by the Free Software Foundation.
15 *
16 */
17
Anton Vorontsov9d2c4f32010-06-22 20:57:42 +040018#include <linux/err.h>
19#include <linux/errno.h>
Mike Lavender2f9f7622006-01-08 13:34:27 -080020#include <linux/module.h>
21#include <linux/device.h>
David Brownell7d5230e2007-06-24 15:09:13 -070022
Mike Lavender2f9f7622006-01-08 13:34:27 -080023#include <linux/mtd/mtd.h>
24#include <linux/mtd/partitions.h>
David Brownell7d5230e2007-06-24 15:09:13 -070025
Mike Lavender2f9f7622006-01-08 13:34:27 -080026#include <linux/spi/spi.h>
Boris Brezillon4120f8d2018-04-26 18:18:19 +020027#include <linux/spi/spi-mem.h>
Mike Lavender2f9f7622006-01-08 13:34:27 -080028#include <linux/spi/flash.h>
Brian Norris03e296f2014-03-20 05:00:12 -070029#include <linux/mtd/spi-nor.h>
Mike Lavender2f9f7622006-01-08 13:34:27 -080030
Mike Lavender2f9f7622006-01-08 13:34:27 -080031struct m25p {
Boris Brezillon4120f8d2018-04-26 18:18:19 +020032 struct spi_mem *spimem;
Brian Norris03e296f2014-03-20 05:00:12 -070033 struct spi_nor spi_nor;
Mike Lavender2f9f7622006-01-08 13:34:27 -080034};
35
Brian Norris03e296f2014-03-20 05:00:12 -070036static int m25p80_read_reg(struct spi_nor *nor, u8 code, u8 *val, int len)
Mike Lavender2f9f7622006-01-08 13:34:27 -080037{
Brian Norris03e296f2014-03-20 05:00:12 -070038 struct m25p *flash = nor->priv;
Boris Brezillon4120f8d2018-04-26 18:18:19 +020039 struct spi_mem_op op = SPI_MEM_OP(SPI_MEM_OP_CMD(code, 1),
40 SPI_MEM_OP_NO_ADDR,
41 SPI_MEM_OP_NO_DUMMY,
42 SPI_MEM_OP_DATA_IN(len, val, 1));
Sourav Poddar3487a6392013-11-06 20:05:35 +053043 int ret;
Sourav Poddar3487a6392013-11-06 20:05:35 +053044
Boris Brezillon4120f8d2018-04-26 18:18:19 +020045 ret = spi_mem_exec_op(flash->spimem, &op);
Brian Norris03e296f2014-03-20 05:00:12 -070046 if (ret < 0)
Boris Brezillon4120f8d2018-04-26 18:18:19 +020047 dev_err(&flash->spimem->spi->dev, "error %d reading %x\n", ret,
48 code);
Sourav Poddar3487a6392013-11-06 20:05:35 +053049
Brian Norris03e296f2014-03-20 05:00:12 -070050 return ret;
Sourav Poddar3487a6392013-11-06 20:05:35 +053051}
52
Jagan Tekif9f3ce82015-08-19 15:26:44 +053053static int m25p80_write_reg(struct spi_nor *nor, u8 opcode, u8 *buf, int len)
Mike Lavender2f9f7622006-01-08 13:34:27 -080054{
Brian Norris03e296f2014-03-20 05:00:12 -070055 struct m25p *flash = nor->priv;
Boris Brezillon4120f8d2018-04-26 18:18:19 +020056 struct spi_mem_op op = SPI_MEM_OP(SPI_MEM_OP_CMD(opcode, 1),
57 SPI_MEM_OP_NO_ADDR,
58 SPI_MEM_OP_NO_DUMMY,
59 SPI_MEM_OP_DATA_OUT(len, buf, 1));
Mike Lavender2f9f7622006-01-08 13:34:27 -080060
Boris Brezillon4120f8d2018-04-26 18:18:19 +020061 return spi_mem_exec_op(flash->spimem, &op);
Mike Lavender2f9f7622006-01-08 13:34:27 -080062}
63
Michal Suchanek59451e12016-05-05 17:31:47 -070064static ssize_t m25p80_write(struct spi_nor *nor, loff_t to, size_t len,
Michal Suchanek2dd087b2016-05-05 17:31:53 -070065 const u_char *buf)
Mike Lavender2f9f7622006-01-08 13:34:27 -080066{
Brian Norris03e296f2014-03-20 05:00:12 -070067 struct m25p *flash = nor->priv;
Boris Brezillon4120f8d2018-04-26 18:18:19 +020068 struct spi_mem_op op =
69 SPI_MEM_OP(SPI_MEM_OP_CMD(nor->program_opcode, 1),
70 SPI_MEM_OP_ADDR(nor->addr_width, to, 1),
Boris Brezillon9882b532018-06-01 12:03:25 +020071 SPI_MEM_OP_NO_DUMMY,
Boris Brezillon4120f8d2018-04-26 18:18:19 +020072 SPI_MEM_OP_DATA_OUT(len, buf, 1));
73 size_t remaining = len;
74 int ret;
Mike Lavender2f9f7622006-01-08 13:34:27 -080075
Cyrille Pitchen138f5dc2017-04-25 22:08:47 +020076 /* get transfer protocols. */
Boris Brezillon4120f8d2018-04-26 18:18:19 +020077 op.cmd.buswidth = spi_nor_get_protocol_inst_nbits(nor->write_proto);
78 op.addr.buswidth = spi_nor_get_protocol_addr_nbits(nor->write_proto);
Boris Brezillon4120f8d2018-04-26 18:18:19 +020079 op.data.buswidth = spi_nor_get_protocol_data_nbits(nor->write_proto);
Mike Lavender2f9f7622006-01-08 13:34:27 -080080
Brian Norrisb02e7f32014-04-08 18:15:31 -070081 if (nor->program_opcode == SPINOR_OP_AAI_WP && nor->sst_write_second)
Boris Brezillon4120f8d2018-04-26 18:18:19 +020082 op.addr.nbytes = 0;
Mike Lavender2f9f7622006-01-08 13:34:27 -080083
Boris Brezillon4120f8d2018-04-26 18:18:19 +020084 while (remaining) {
85 op.data.nbytes = remaining < UINT_MAX ? remaining : UINT_MAX;
86 ret = spi_mem_adjust_op_size(flash->spimem, &op);
87 if (ret)
88 return ret;
Mike Lavender2f9f7622006-01-08 13:34:27 -080089
Boris Brezillon4120f8d2018-04-26 18:18:19 +020090 ret = spi_mem_exec_op(flash->spimem, &op);
91 if (ret)
92 return ret;
Mike Lavender2f9f7622006-01-08 13:34:27 -080093
Boris Brezillon4120f8d2018-04-26 18:18:19 +020094 op.addr.val += op.data.nbytes;
95 remaining -= op.data.nbytes;
96 op.data.buf.out += op.data.nbytes;
Cyrille Pitchen138f5dc2017-04-25 22:08:47 +020097 }
98
Boris Brezillon4120f8d2018-04-26 18:18:19 +020099 return len;
Mike Lavender2f9f7622006-01-08 13:34:27 -0800100}
101
Sourav Poddar8552b432013-11-06 20:05:34 +0530102/*
Brian Norris03e296f2014-03-20 05:00:12 -0700103 * Read an address range from the nor chip. The address range
Mike Lavender2f9f7622006-01-08 13:34:27 -0800104 * may be any size provided it is within the physical boundaries.
105 */
Michal Suchanek59451e12016-05-05 17:31:47 -0700106static ssize_t m25p80_read(struct spi_nor *nor, loff_t from, size_t len,
Michal Suchanek2dd087b2016-05-05 17:31:53 -0700107 u_char *buf)
Mike Lavender2f9f7622006-01-08 13:34:27 -0800108{
Brian Norris03e296f2014-03-20 05:00:12 -0700109 struct m25p *flash = nor->priv;
Boris Brezillon4120f8d2018-04-26 18:18:19 +0200110 struct spi_mem_op op =
111 SPI_MEM_OP(SPI_MEM_OP_CMD(nor->read_opcode, 1),
112 SPI_MEM_OP_ADDR(nor->addr_width, from, 1),
113 SPI_MEM_OP_DUMMY(nor->read_dummy, 1),
114 SPI_MEM_OP_DATA_IN(len, buf, 1));
115 size_t remaining = len;
116 int ret;
Cyrille Pitchen138f5dc2017-04-25 22:08:47 +0200117
118 /* get transfer protocols. */
Boris Brezillon4120f8d2018-04-26 18:18:19 +0200119 op.cmd.buswidth = spi_nor_get_protocol_inst_nbits(nor->read_proto);
120 op.addr.buswidth = spi_nor_get_protocol_addr_nbits(nor->read_proto);
121 op.dummy.buswidth = op.addr.buswidth;
122 op.data.buswidth = spi_nor_get_protocol_data_nbits(nor->read_proto);
Mike Lavender2f9f7622006-01-08 13:34:27 -0800123
Huang Shijie0b78a2c2014-04-28 11:53:38 +0800124 /* convert the dummy cycles to the number of bytes */
Boris Brezillon4120f8d2018-04-26 18:18:19 +0200125 op.dummy.nbytes = (nor->read_dummy * op.dummy.buswidth) / 8;
Huang Shijie0b78a2c2014-04-28 11:53:38 +0800126
Boris Brezillon4120f8d2018-04-26 18:18:19 +0200127 while (remaining) {
128 op.data.nbytes = remaining < UINT_MAX ? remaining : UINT_MAX;
129 ret = spi_mem_adjust_op_size(flash->spimem, &op);
130 if (ret)
Michal Suchanek1992297b2016-05-05 17:31:48 -0700131 return ret;
Boris Brezillon4120f8d2018-04-26 18:18:19 +0200132
133 ret = spi_mem_exec_op(flash->spimem, &op);
134 if (ret)
135 return ret;
136
137 op.addr.val += op.data.nbytes;
138 remaining -= op.data.nbytes;
139 op.data.buf.in += op.data.nbytes;
Vignesh R08922f62016-03-29 11:16:17 +0530140 }
141
Boris Brezillon4120f8d2018-04-26 18:18:19 +0200142 return len;
Mike Lavender2f9f7622006-01-08 13:34:27 -0800143}
144
Mike Lavender2f9f7622006-01-08 13:34:27 -0800145/*
146 * board specific setup should have ensured the SPI clock used here
147 * matches what the READ command supports, at least until this driver
148 * understands FAST_READ (for clocks over 25 MHz).
149 */
Boris Brezillon4120f8d2018-04-26 18:18:19 +0200150static int m25p_probe(struct spi_mem *spimem)
Mike Lavender2f9f7622006-01-08 13:34:27 -0800151{
Boris Brezillon4120f8d2018-04-26 18:18:19 +0200152 struct spi_device *spi = spimem->spi;
Brian Norris03e296f2014-03-20 05:00:12 -0700153 struct flash_platform_data *data;
154 struct m25p *flash;
155 struct spi_nor *nor;
Cyrille Pitchencfc56042017-04-25 22:08:46 +0200156 struct spi_nor_hwcaps hwcaps = {
157 .mask = SNOR_HWCAPS_READ |
158 SNOR_HWCAPS_READ_FAST |
159 SNOR_HWCAPS_PP,
160 };
Brian Norrisde577322015-11-16 14:34:50 -0800161 char *flash_name;
Sourav Poddar3487a6392013-11-06 20:05:35 +0530162 int ret;
Shaohui Xie5f949132011-10-14 15:49:00 +0800163
Boris Brezillon4120f8d2018-04-26 18:18:19 +0200164 data = dev_get_platdata(&spimem->spi->dev);
Rafał Miłecki32f1b7c2014-09-28 22:36:54 +0200165
Boris Brezillon4120f8d2018-04-26 18:18:19 +0200166 flash = devm_kzalloc(&spimem->spi->dev, sizeof(*flash), GFP_KERNEL);
Mike Lavender2f9f7622006-01-08 13:34:27 -0800167 if (!flash)
168 return -ENOMEM;
Brian Norris778d2262013-07-24 18:32:07 -0700169
Brian Norris03e296f2014-03-20 05:00:12 -0700170 nor = &flash->spi_nor;
Mike Lavender2f9f7622006-01-08 13:34:27 -0800171
Brian Norris03e296f2014-03-20 05:00:12 -0700172 /* install the hooks */
173 nor->read = m25p80_read;
174 nor->write = m25p80_write;
Brian Norris03e296f2014-03-20 05:00:12 -0700175 nor->write_reg = m25p80_write_reg;
176 nor->read_reg = m25p80_read_reg;
177
Boris Brezillon4120f8d2018-04-26 18:18:19 +0200178 nor->dev = &spimem->spi->dev;
Brian Norris9c7d7872015-10-30 20:33:24 -0700179 spi_nor_set_flash_node(nor, spi->dev.of_node);
Brian Norris03e296f2014-03-20 05:00:12 -0700180 nor->priv = flash;
181
Boris Brezillon1e073922018-05-22 12:55:14 +0200182 spi_mem_set_drvdata(spimem, flash);
Boris Brezillon4120f8d2018-04-26 18:18:19 +0200183 flash->spimem = spimem;
Mike Lavender2f9f7622006-01-08 13:34:27 -0800184
Cyrille Pitchen138f5dc2017-04-25 22:08:47 +0200185 if (spi->mode & SPI_RX_QUAD) {
Cyrille Pitchencfc56042017-04-25 22:08:46 +0200186 hwcaps.mask |= SNOR_HWCAPS_READ_1_1_4;
Cyrille Pitchen138f5dc2017-04-25 22:08:47 +0200187
188 if (spi->mode & SPI_TX_QUAD)
189 hwcaps.mask |= (SNOR_HWCAPS_READ_1_4_4 |
190 SNOR_HWCAPS_PP_1_1_4 |
191 SNOR_HWCAPS_PP_1_4_4);
192 } else if (spi->mode & SPI_RX_DUAL) {
Cyrille Pitchencfc56042017-04-25 22:08:46 +0200193 hwcaps.mask |= SNOR_HWCAPS_READ_1_1_2;
Rafał Miłecki32f1b7c2014-09-28 22:36:54 +0200194
Cyrille Pitchen138f5dc2017-04-25 22:08:47 +0200195 if (spi->mode & SPI_TX_DUAL)
196 hwcaps.mask |= SNOR_HWCAPS_READ_1_2_2;
197 }
198
Rafał Miłecki32f1b7c2014-09-28 22:36:54 +0200199 if (data && data->name)
Brian Norris19763672015-08-13 15:46:05 -0700200 nor->mtd.name = data->name;
Rafał Miłecki32f1b7c2014-09-28 22:36:54 +0200201
Frieder Schrempfb02b17f2018-08-02 14:53:54 +0200202 if (!nor->mtd.name)
203 nor->mtd.name = spi_mem_get_name(spimem);
204
Rafał Miłecki32f1b7c2014-09-28 22:36:54 +0200205 /* For some (historical?) reason many platforms provide two different
206 * names in flash_platform_data: "name" and "type". Quite often name is
207 * set to "m25p80" and then "type" provides a real chip name.
208 * If that's the case, respect "type" and ignore a "name".
209 */
210 if (data && data->type)
Rafał Miłecki90e55b32014-09-29 11:47:53 +0200211 flash_name = data->type;
Brian Norrisde577322015-11-16 14:34:50 -0800212 else if (!strcmp(spi->modalias, "spi-nor"))
213 flash_name = NULL; /* auto-detect */
Rafał Miłecki90e55b32014-09-29 11:47:53 +0200214 else
215 flash_name = spi->modalias;
Rafał Miłecki32f1b7c2014-09-28 22:36:54 +0200216
Cyrille Pitchencfc56042017-04-25 22:08:46 +0200217 ret = spi_nor_scan(nor, flash_name, &hwcaps);
Brian Norris03e296f2014-03-20 05:00:12 -0700218 if (ret)
219 return ret;
Michael Hennerich72289822008-07-03 23:54:42 -0700220
Brian Norrisdf02c882015-10-30 20:33:26 -0700221 return mtd_device_register(&nor->mtd, data ? data->parts : NULL,
222 data ? data->nr_parts : 0);
Mike Lavender2f9f7622006-01-08 13:34:27 -0800223}
224
225
Boris Brezillon4120f8d2018-04-26 18:18:19 +0200226static int m25p_remove(struct spi_mem *spimem)
Mike Lavender2f9f7622006-01-08 13:34:27 -0800227{
Boris Brezillon4120f8d2018-04-26 18:18:19 +0200228 struct m25p *flash = spi_mem_get_drvdata(spimem);
Mike Lavender2f9f7622006-01-08 13:34:27 -0800229
Hou Zhiqiang59b356f2017-12-06 10:53:42 +0800230 spi_nor_restore(&flash->spi_nor);
231
Mike Lavender2f9f7622006-01-08 13:34:27 -0800232 /* Clean up MTD stuff. */
Brian Norris19763672015-08-13 15:46:05 -0700233 return mtd_device_unregister(&flash->spi_nor.mtd);
Mike Lavender2f9f7622006-01-08 13:34:27 -0800234}
235
Boris Brezillon4120f8d2018-04-26 18:18:19 +0200236static void m25p_shutdown(struct spi_mem *spimem)
Hou Zhiqiang59b356f2017-12-06 10:53:42 +0800237{
Boris Brezillon4120f8d2018-04-26 18:18:19 +0200238 struct m25p *flash = spi_mem_get_drvdata(spimem);
Hou Zhiqiang59b356f2017-12-06 10:53:42 +0800239
240 spi_nor_restore(&flash->spi_nor);
241}
Ben Hutchingsa5b76162014-09-30 03:14:55 +0100242/*
Brian Norris1103b852015-03-27 10:29:50 -0700243 * Do NOT add to this array without reading the following:
244 *
245 * Historically, many flash devices are bound to this driver by their name. But
246 * since most of these flash are compatible to some extent, and their
247 * differences can often be differentiated by the JEDEC read-ID command, we
248 * encourage new users to add support to the spi-nor library, and simply bind
Brian Norris8947e392015-05-14 10:32:53 -0700249 * against a generic string here (e.g., "jedec,spi-nor").
Brian Norris1103b852015-03-27 10:29:50 -0700250 *
251 * Many flash names are kept here in this list (as well as in spi-nor.c) to
252 * keep them available as module aliases for existing platforms.
Ben Hutchingsa5b76162014-09-30 03:14:55 +0100253 */
254static const struct spi_device_id m25p_ids[] = {
Rafał Miłecki3094fe12015-04-07 10:39:41 +0200255 /*
Brian Norrisde577322015-11-16 14:34:50 -0800256 * Allow non-DT platform devices to bind to the "spi-nor" modalias, and
257 * hack around the fact that the SPI core does not provide uevent
258 * matching for .of_match_table
259 */
260 {"spi-nor"},
261
262 /*
Rafał Miłecki3094fe12015-04-07 10:39:41 +0200263 * Entries not used in DTs that should be safe to drop after replacing
Brian Norrisc1711b22015-11-16 14:34:51 -0800264 * them with "spi-nor" in platform data.
Rafał Miłecki3094fe12015-04-07 10:39:41 +0200265 */
266 {"s25sl064a"}, {"w25x16"}, {"m25p10"}, {"m25px64"},
267
268 /*
Brian Norrisc1711b22015-11-16 14:34:51 -0800269 * Entries that were used in DTs without "jedec,spi-nor" fallback and
270 * should be kept for backward compatibility.
Rafał Miłecki3094fe12015-04-07 10:39:41 +0200271 */
272 {"at25df321a"}, {"at25df641"}, {"at26df081a"},
Rafał Miłecki3094fe12015-04-07 10:39:41 +0200273 {"mx25l4005a"}, {"mx25l1606e"}, {"mx25l6405d"}, {"mx25l12805d"},
274 {"mx25l25635e"},{"mx66l51235l"},
275 {"n25q064"}, {"n25q128a11"}, {"n25q128a13"}, {"n25q512a"},
276 {"s25fl256s1"}, {"s25fl512s"}, {"s25sl12801"}, {"s25fl008k"},
277 {"s25fl064k"},
278 {"sst25vf040b"},{"sst25vf016b"},{"sst25vf032b"},{"sst25wf040"},
279 {"m25p40"}, {"m25p80"}, {"m25p16"}, {"m25p32"},
280 {"m25p64"}, {"m25p128"},
281 {"w25x80"}, {"w25x32"}, {"w25q32"}, {"w25q32dw"},
282 {"w25q80bl"}, {"w25q128"}, {"w25q256"},
283
284 /* Flashes that can't be detected using JEDEC */
Ben Hutchingsa5b76162014-09-30 03:14:55 +0100285 {"m25p05-nonjedec"}, {"m25p10-nonjedec"}, {"m25p20-nonjedec"},
286 {"m25p40-nonjedec"}, {"m25p80-nonjedec"}, {"m25p16-nonjedec"},
287 {"m25p32-nonjedec"}, {"m25p64-nonjedec"}, {"m25p128-nonjedec"},
Brian Norris1103b852015-03-27 10:29:50 -0700288
Uwe Kleine-König3a08e932017-01-17 12:03:38 +0100289 /* Everspin MRAMs (non-JEDEC) */
Philipp Puschmann282e45d2017-10-19 10:12:47 +0200290 { "mr25h128" }, /* 128 Kib, 40 MHz */
Uwe Kleine-König3a08e932017-01-17 12:03:38 +0100291 { "mr25h256" }, /* 256 Kib, 40 MHz */
292 { "mr25h10" }, /* 1 Mib, 40 MHz */
293 { "mr25h40" }, /* 4 Mib, 40 MHz */
294
Ben Hutchingsa5b76162014-09-30 03:14:55 +0100295 { },
296};
297MODULE_DEVICE_TABLE(spi, m25p_ids);
298
Brian Norris43163022015-05-19 14:38:22 -0700299static const struct of_device_id m25p_of_table[] = {
300 /*
301 * Generic compatibility for SPI NOR that can be identified by the
302 * JEDEC READ ID opcode (0x9F). Use this, if possible.
303 */
304 { .compatible = "jedec,spi-nor" },
305 {}
306};
307MODULE_DEVICE_TABLE(of, m25p_of_table);
308
Boris Brezillon4120f8d2018-04-26 18:18:19 +0200309static struct spi_mem_driver m25p80_driver = {
310 .spidrv = {
311 .driver = {
312 .name = "m25p80",
313 .of_match_table = m25p_of_table,
314 },
315 .id_table = m25p_ids,
Mike Lavender2f9f7622006-01-08 13:34:27 -0800316 },
317 .probe = m25p_probe,
Bill Pemberton5153b882012-11-19 13:21:24 -0500318 .remove = m25p_remove,
Hou Zhiqiang59b356f2017-12-06 10:53:42 +0800319 .shutdown = m25p_shutdown,
David Brownellfa0a8c72007-06-24 15:12:35 -0700320
321 /* REVISIT: many of these chips have deep power-down modes, which
322 * should clearly be entered on suspend() to minimize power use.
323 * And also when they're otherwise idle...
324 */
Mike Lavender2f9f7622006-01-08 13:34:27 -0800325};
326
Boris Brezillon4120f8d2018-04-26 18:18:19 +0200327module_spi_mem_driver(m25p80_driver);
Mike Lavender2f9f7622006-01-08 13:34:27 -0800328
329MODULE_LICENSE("GPL");
330MODULE_AUTHOR("Mike Lavender");
331MODULE_DESCRIPTION("MTD SPI driver for ST M25Pxx flash chips");