2 * MTD SPI driver for ST M25Pxx (and similar) serial flash chips
4 * Author: Mike Lavender, mike@steroidmicros.com
6 * Copyright (c) 2005, Intec Automation Inc.
8 * Some parts are based on lart.c by Abraham Van Der Merwe
10 * Cleaned up and generalized based on mtd_dataflash.c
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.
18 #include <linux/init.h>
19 #include <linux/err.h>
20 #include <linux/errno.h>
21 #include <linux/module.h>
22 #include <linux/device.h>
23 #include <linux/interrupt.h>
24 #include <linux/mutex.h>
25 #include <linux/math64.h>
26 #include <linux/slab.h>
27 #include <linux/sched.h>
28 #include <linux/mod_devicetable.h>
30 #include <linux/mtd/cfi.h>
31 #include <linux/mtd/mtd.h>
32 #include <linux/mtd/partitions.h>
33 #include <linux/of_platform.h>
35 #include <linux/spi/spi.h>
36 #include <linux/spi/flash.h>
39 #define OPCODE_WREN 0x06 /* Write enable */
40 #define OPCODE_RDSR 0x05 /* Read status register */
41 #define OPCODE_WRSR 0x01 /* Write status register 1 byte */
42 #define OPCODE_NORM_READ 0x03 /* Read data bytes (low frequency) */
43 #define OPCODE_FAST_READ 0x0b /* Read data bytes (high frequency) */
44 #define OPCODE_PP 0x02 /* Page program (up to 256 bytes) */
45 #define OPCODE_BE_4K 0x20 /* Erase 4KiB block */
46 #define OPCODE_BE_32K 0x52 /* Erase 32KiB block */
47 #define OPCODE_CHIP_ERASE 0xc7 /* Erase whole flash chip */
48 #define OPCODE_SE 0xd8 /* Sector erase (usually 64KiB) */
49 #define OPCODE_RDID 0x9f /* Read JEDEC ID */
51 /* Used for SST flashes only. */
52 #define OPCODE_BP 0x02 /* Byte program */
53 #define OPCODE_WRDI 0x04 /* Write disable */
54 #define OPCODE_AAI_WP 0xad /* Auto address increment word program */
56 /* Used for Macronix flashes only. */
57 #define OPCODE_EN4B 0xb7 /* Enter 4-byte mode */
58 #define OPCODE_EX4B 0xe9 /* Exit 4-byte mode */
60 /* Used for Spansion flashes only. */
61 #define OPCODE_BRWR 0x17 /* Bank register write */
63 /* Status Register bits. */
64 #define SR_WIP 1 /* Write in progress */
65 #define SR_WEL 2 /* Write enable latch */
66 /* meaning of other SR_* bits may differ between vendors */
67 #define SR_BP0 4 /* Block protect 0 */
68 #define SR_BP1 8 /* Block protect 1 */
69 #define SR_BP2 0x10 /* Block protect 2 */
70 #define SR_SRWD 0x80 /* SR write protect */
72 /* Define max times to check status register before we give up. */
73 #define MAX_READY_WAIT_JIFFIES (40 * HZ) /* M25P16 specs 40s max chip erase */
74 #define MAX_CMD_SIZE 5
76 #ifdef CONFIG_M25PXX_USE_FAST_READ
77 #define OPCODE_READ OPCODE_FAST_READ
78 #define FAST_READ_DUMMY_BYTE 1
80 #define OPCODE_READ OPCODE_NORM_READ
81 #define FAST_READ_DUMMY_BYTE 0
84 #define JEDEC_MFR(_jedec_id) ((_jedec_id) >> 16)
86 /****************************************************************************/
89 struct spi_device
*spi
;
98 static inline struct m25p
*mtd_to_m25p(struct mtd_info
*mtd
)
100 return container_of(mtd
, struct m25p
, mtd
);
103 /****************************************************************************/
106 * Internal helper functions
110 * Read the status register, returning its value in the location
111 * Return the status register value.
112 * Returns negative if error occurred.
114 static int read_sr(struct m25p
*flash
)
117 u8 code
= OPCODE_RDSR
;
120 retval
= spi_write_then_read(flash
->spi
, &code
, 1, &val
, 1);
123 dev_err(&flash
->spi
->dev
, "error %d reading SR\n",
132 * Write status register 1 byte
133 * Returns negative if error occurred.
135 static int write_sr(struct m25p
*flash
, u8 val
)
137 flash
->command
[0] = OPCODE_WRSR
;
138 flash
->command
[1] = val
;
140 return spi_write(flash
->spi
, flash
->command
, 2);
144 * Set write enable latch with Write Enable command.
145 * Returns negative if error occurred.
147 static inline int write_enable(struct m25p
*flash
)
149 u8 code
= OPCODE_WREN
;
151 return spi_write_then_read(flash
->spi
, &code
, 1, NULL
, 0);
155 * Send write disble instruction to the chip.
157 static inline int write_disable(struct m25p
*flash
)
159 u8 code
= OPCODE_WRDI
;
161 return spi_write_then_read(flash
->spi
, &code
, 1, NULL
, 0);
165 * Enable/disable 4-byte addressing mode.
167 static inline int set_4byte(struct m25p
*flash
, u32 jedec_id
, int enable
)
169 switch (JEDEC_MFR(jedec_id
)) {
170 case CFI_MFR_MACRONIX
:
171 flash
->command
[0] = enable
? OPCODE_EN4B
: OPCODE_EX4B
;
172 return spi_write(flash
->spi
, flash
->command
, 1);
175 flash
->command
[0] = OPCODE_BRWR
;
176 flash
->command
[1] = enable
<< 7;
177 return spi_write(flash
->spi
, flash
->command
, 2);
182 * Service routine to read status register until ready, or timeout occurs.
183 * Returns non-zero if error.
185 static int wait_till_ready(struct m25p
*flash
)
187 unsigned long deadline
;
190 deadline
= jiffies
+ MAX_READY_WAIT_JIFFIES
;
193 if ((sr
= read_sr(flash
)) < 0)
195 else if (!(sr
& SR_WIP
))
200 } while (!time_after_eq(jiffies
, deadline
));
206 * Erase the whole flash memory
208 * Returns 0 if successful, non-zero otherwise.
210 static int erase_chip(struct m25p
*flash
)
212 pr_debug("%s: %s %lldKiB\n", dev_name(&flash
->spi
->dev
), __func__
,
213 (long long)(flash
->mtd
.size
>> 10));
215 /* Wait until finished previous write command. */
216 if (wait_till_ready(flash
))
219 /* Send write enable, then erase commands. */
222 /* Set up command buffer. */
223 flash
->command
[0] = OPCODE_CHIP_ERASE
;
225 spi_write(flash
->spi
, flash
->command
, 1);
230 static void m25p_addr2cmd(struct m25p
*flash
, unsigned int addr
, u8
*cmd
)
232 /* opcode is in cmd[0] */
233 cmd
[1] = addr
>> (flash
->addr_width
* 8 - 8);
234 cmd
[2] = addr
>> (flash
->addr_width
* 8 - 16);
235 cmd
[3] = addr
>> (flash
->addr_width
* 8 - 24);
236 cmd
[4] = addr
>> (flash
->addr_width
* 8 - 32);
239 static int m25p_cmdsz(struct m25p
*flash
)
241 return 1 + flash
->addr_width
;
245 * Erase one sector of flash memory at offset ``offset'' which is any
246 * address within the sector which should be erased.
248 * Returns 0 if successful, non-zero otherwise.
250 static int erase_sector(struct m25p
*flash
, u32 offset
)
252 pr_debug("%s: %s %dKiB at 0x%08x\n", dev_name(&flash
->spi
->dev
),
253 __func__
, flash
->mtd
.erasesize
/ 1024, offset
);
255 /* Wait until finished previous write command. */
256 if (wait_till_ready(flash
))
259 /* Send write enable, then erase commands. */
262 /* Set up command buffer. */
263 flash
->command
[0] = flash
->erase_opcode
;
264 m25p_addr2cmd(flash
, offset
, flash
->command
);
266 spi_write(flash
->spi
, flash
->command
, m25p_cmdsz(flash
));
271 /****************************************************************************/
278 * Erase an address range on the flash chip. The address range may extend
279 * one or more erase sectors. Return an error is there is a problem erasing.
281 static int m25p80_erase(struct mtd_info
*mtd
, struct erase_info
*instr
)
283 struct m25p
*flash
= mtd_to_m25p(mtd
);
287 pr_debug("%s: %s at 0x%llx, len %lld\n", dev_name(&flash
->spi
->dev
),
288 __func__
, (long long)instr
->addr
,
289 (long long)instr
->len
);
292 if (instr
->addr
+ instr
->len
> flash
->mtd
.size
)
294 div_u64_rem(instr
->len
, mtd
->erasesize
, &rem
);
301 mutex_lock(&flash
->lock
);
303 /* whole-chip erase? */
304 if (len
== flash
->mtd
.size
) {
305 if (erase_chip(flash
)) {
306 instr
->state
= MTD_ERASE_FAILED
;
307 mutex_unlock(&flash
->lock
);
311 /* REVISIT in some cases we could speed up erasing large regions
312 * by using OPCODE_SE instead of OPCODE_BE_4K. We may have set up
313 * to use "small sector erase", but that's not always optimal.
316 /* "sector"-at-a-time erase */
319 if (erase_sector(flash
, addr
)) {
320 instr
->state
= MTD_ERASE_FAILED
;
321 mutex_unlock(&flash
->lock
);
325 addr
+= mtd
->erasesize
;
326 len
-= mtd
->erasesize
;
330 mutex_unlock(&flash
->lock
);
332 instr
->state
= MTD_ERASE_DONE
;
333 mtd_erase_callback(instr
);
339 * Read an address range from the flash chip. The address range
340 * may be any size provided it is within the physical boundaries.
342 static int m25p80_read(struct mtd_info
*mtd
, loff_t from
, size_t len
,
343 size_t *retlen
, u_char
*buf
)
345 struct m25p
*flash
= mtd_to_m25p(mtd
);
346 struct spi_transfer t
[2];
347 struct spi_message m
;
349 pr_debug("%s: %s from 0x%08x, len %zd\n", dev_name(&flash
->spi
->dev
),
350 __func__
, (u32
)from
, len
);
356 if (from
+ len
> flash
->mtd
.size
)
359 spi_message_init(&m
);
360 memset(t
, 0, (sizeof t
));
363 * OPCODE_FAST_READ (if available) is faster.
364 * Should add 1 byte DUMMY_BYTE.
366 t
[0].tx_buf
= flash
->command
;
367 t
[0].len
= m25p_cmdsz(flash
) + FAST_READ_DUMMY_BYTE
;
368 spi_message_add_tail(&t
[0], &m
);
372 spi_message_add_tail(&t
[1], &m
);
374 /* Byte count starts at zero. */
377 mutex_lock(&flash
->lock
);
379 /* Wait till previous write/erase is done. */
380 if (wait_till_ready(flash
)) {
381 /* REVISIT status return?? */
382 mutex_unlock(&flash
->lock
);
386 /* FIXME switch to OPCODE_FAST_READ. It's required for higher
387 * clocks; and at this writing, every chip this driver handles
388 * supports that opcode.
391 /* Set up the write data buffer. */
392 flash
->command
[0] = OPCODE_READ
;
393 m25p_addr2cmd(flash
, from
, flash
->command
);
395 spi_sync(flash
->spi
, &m
);
397 *retlen
= m
.actual_length
- m25p_cmdsz(flash
) - FAST_READ_DUMMY_BYTE
;
399 mutex_unlock(&flash
->lock
);
405 * Write an address range to the flash chip. Data must be written in
406 * FLASH_PAGESIZE chunks. The address range may be any size provided
407 * it is within the physical boundaries.
409 static int m25p80_write(struct mtd_info
*mtd
, loff_t to
, size_t len
,
410 size_t *retlen
, const u_char
*buf
)
412 struct m25p
*flash
= mtd_to_m25p(mtd
);
413 u32 page_offset
, page_size
;
414 struct spi_transfer t
[2];
415 struct spi_message m
;
417 pr_debug("%s: %s to 0x%08x, len %zd\n", dev_name(&flash
->spi
->dev
),
418 __func__
, (u32
)to
, len
);
426 if (to
+ len
> flash
->mtd
.size
)
429 spi_message_init(&m
);
430 memset(t
, 0, (sizeof t
));
432 t
[0].tx_buf
= flash
->command
;
433 t
[0].len
= m25p_cmdsz(flash
);
434 spi_message_add_tail(&t
[0], &m
);
437 spi_message_add_tail(&t
[1], &m
);
439 mutex_lock(&flash
->lock
);
441 /* Wait until finished previous write command. */
442 if (wait_till_ready(flash
)) {
443 mutex_unlock(&flash
->lock
);
449 /* Set up the opcode in the write buffer. */
450 flash
->command
[0] = OPCODE_PP
;
451 m25p_addr2cmd(flash
, to
, flash
->command
);
453 page_offset
= to
& (flash
->page_size
- 1);
455 /* do all the bytes fit onto one page? */
456 if (page_offset
+ len
<= flash
->page_size
) {
459 spi_sync(flash
->spi
, &m
);
461 *retlen
= m
.actual_length
- m25p_cmdsz(flash
);
465 /* the size of data remaining on the first page */
466 page_size
= flash
->page_size
- page_offset
;
468 t
[1].len
= page_size
;
469 spi_sync(flash
->spi
, &m
);
471 *retlen
= m
.actual_length
- m25p_cmdsz(flash
);
473 /* write everything in flash->page_size chunks */
474 for (i
= page_size
; i
< len
; i
+= page_size
) {
476 if (page_size
> flash
->page_size
)
477 page_size
= flash
->page_size
;
479 /* write the next page to flash */
480 m25p_addr2cmd(flash
, to
+ i
, flash
->command
);
482 t
[1].tx_buf
= buf
+ i
;
483 t
[1].len
= page_size
;
485 wait_till_ready(flash
);
489 spi_sync(flash
->spi
, &m
);
491 *retlen
+= m
.actual_length
- m25p_cmdsz(flash
);
495 mutex_unlock(&flash
->lock
);
500 static int sst_write(struct mtd_info
*mtd
, loff_t to
, size_t len
,
501 size_t *retlen
, const u_char
*buf
)
503 struct m25p
*flash
= mtd_to_m25p(mtd
);
504 struct spi_transfer t
[2];
505 struct spi_message m
;
509 pr_debug("%s: %s to 0x%08x, len %zd\n", dev_name(&flash
->spi
->dev
),
510 __func__
, (u32
)to
, len
);
518 if (to
+ len
> flash
->mtd
.size
)
521 spi_message_init(&m
);
522 memset(t
, 0, (sizeof t
));
524 t
[0].tx_buf
= flash
->command
;
525 t
[0].len
= m25p_cmdsz(flash
);
526 spi_message_add_tail(&t
[0], &m
);
529 spi_message_add_tail(&t
[1], &m
);
531 mutex_lock(&flash
->lock
);
533 /* Wait until finished previous write command. */
534 ret
= wait_till_ready(flash
);
541 /* Start write from odd address. */
543 flash
->command
[0] = OPCODE_BP
;
544 m25p_addr2cmd(flash
, to
, flash
->command
);
546 /* write one byte. */
548 spi_sync(flash
->spi
, &m
);
549 ret
= wait_till_ready(flash
);
552 *retlen
+= m
.actual_length
- m25p_cmdsz(flash
);
556 flash
->command
[0] = OPCODE_AAI_WP
;
557 m25p_addr2cmd(flash
, to
, flash
->command
);
559 /* Write out most of the data here. */
560 cmd_sz
= m25p_cmdsz(flash
);
561 for (; actual
< len
- 1; actual
+= 2) {
563 /* write two bytes. */
565 t
[1].tx_buf
= buf
+ actual
;
567 spi_sync(flash
->spi
, &m
);
568 ret
= wait_till_ready(flash
);
571 *retlen
+= m
.actual_length
- cmd_sz
;
575 write_disable(flash
);
576 ret
= wait_till_ready(flash
);
580 /* Write out trailing byte if it exists. */
583 flash
->command
[0] = OPCODE_BP
;
584 m25p_addr2cmd(flash
, to
, flash
->command
);
585 t
[0].len
= m25p_cmdsz(flash
);
587 t
[1].tx_buf
= buf
+ actual
;
589 spi_sync(flash
->spi
, &m
);
590 ret
= wait_till_ready(flash
);
593 *retlen
+= m
.actual_length
- m25p_cmdsz(flash
);
594 write_disable(flash
);
598 mutex_unlock(&flash
->lock
);
602 /****************************************************************************/
605 * SPI device driver setup and teardown
609 /* JEDEC id zero means "no ID" (most older chips); otherwise it has
610 * a high byte of zero plus three data bytes: the manufacturer id,
611 * then a two byte device id.
616 /* The size listed here is what works with OPCODE_SE, which isn't
617 * necessarily called a "sector" by the vendor.
619 unsigned sector_size
;
626 #define SECT_4K 0x01 /* OPCODE_BE_4K works uniformly */
627 #define M25P_NO_ERASE 0x02 /* No erase command needed */
630 #define INFO(_jedec_id, _ext_id, _sector_size, _n_sectors, _flags) \
631 ((kernel_ulong_t)&(struct flash_info) { \
632 .jedec_id = (_jedec_id), \
633 .ext_id = (_ext_id), \
634 .sector_size = (_sector_size), \
635 .n_sectors = (_n_sectors), \
640 #define CAT25_INFO(_sector_size, _n_sectors, _page_size, _addr_width) \
641 ((kernel_ulong_t)&(struct flash_info) { \
642 .sector_size = (_sector_size), \
643 .n_sectors = (_n_sectors), \
644 .page_size = (_page_size), \
645 .addr_width = (_addr_width), \
646 .flags = M25P_NO_ERASE, \
649 /* NOTE: double check command sets and memory organization when you add
650 * more flash chips. This current list focusses on newer chips, which
651 * have been converging on command sets which including JEDEC ID.
653 static const struct spi_device_id m25p_ids
[] = {
654 /* Atmel -- some are (confusingly) marketed as "DataFlash" */
655 { "at25fs010", INFO(0x1f6601, 0, 32 * 1024, 4, SECT_4K
) },
656 { "at25fs040", INFO(0x1f6604, 0, 64 * 1024, 8, SECT_4K
) },
658 { "at25df041a", INFO(0x1f4401, 0, 64 * 1024, 8, SECT_4K
) },
659 { "at25df321a", INFO(0x1f4701, 0, 64 * 1024, 64, SECT_4K
) },
660 { "at25df641", INFO(0x1f4800, 0, 64 * 1024, 128, SECT_4K
) },
662 { "at26f004", INFO(0x1f0400, 0, 64 * 1024, 8, SECT_4K
) },
663 { "at26df081a", INFO(0x1f4501, 0, 64 * 1024, 16, SECT_4K
) },
664 { "at26df161a", INFO(0x1f4601, 0, 64 * 1024, 32, SECT_4K
) },
665 { "at26df321", INFO(0x1f4700, 0, 64 * 1024, 64, SECT_4K
) },
668 { "en25f32", INFO(0x1c3116, 0, 64 * 1024, 64, SECT_4K
) },
669 { "en25p32", INFO(0x1c2016, 0, 64 * 1024, 64, 0) },
670 { "en25q32b", INFO(0x1c3016, 0, 64 * 1024, 64, 0) },
671 { "en25p64", INFO(0x1c2017, 0, 64 * 1024, 128, 0) },
673 /* Intel/Numonyx -- xxxs33b */
674 { "160s33b", INFO(0x898911, 0, 64 * 1024, 32, 0) },
675 { "320s33b", INFO(0x898912, 0, 64 * 1024, 64, 0) },
676 { "640s33b", INFO(0x898913, 0, 64 * 1024, 128, 0) },
679 { "mx25l4005a", INFO(0xc22013, 0, 64 * 1024, 8, SECT_4K
) },
680 { "mx25l8005", INFO(0xc22014, 0, 64 * 1024, 16, 0) },
681 { "mx25l1606e", INFO(0xc22015, 0, 64 * 1024, 32, SECT_4K
) },
682 { "mx25l3205d", INFO(0xc22016, 0, 64 * 1024, 64, 0) },
683 { "mx25l6405d", INFO(0xc22017, 0, 64 * 1024, 128, 0) },
684 { "mx25l12805d", INFO(0xc22018, 0, 64 * 1024, 256, 0) },
685 { "mx25l12855e", INFO(0xc22618, 0, 64 * 1024, 256, 0) },
686 { "mx25l25635e", INFO(0xc22019, 0, 64 * 1024, 512, 0) },
687 { "mx25l25655e", INFO(0xc22619, 0, 64 * 1024, 512, 0) },
689 /* Spansion -- single (large) sector size only, at least
690 * for the chips listed here (without boot sectors).
692 { "s25sl004a", INFO(0x010212, 0, 64 * 1024, 8, 0) },
693 { "s25sl008a", INFO(0x010213, 0, 64 * 1024, 16, 0) },
694 { "s25sl016a", INFO(0x010214, 0, 64 * 1024, 32, 0) },
695 { "s25sl032a", INFO(0x010215, 0, 64 * 1024, 64, 0) },
696 { "s25sl032p", INFO(0x010215, 0x4d00, 64 * 1024, 64, SECT_4K
) },
697 { "s25sl064a", INFO(0x010216, 0, 64 * 1024, 128, 0) },
698 { "s25fl256s0", INFO(0x010219, 0x4d00, 256 * 1024, 128, 0) },
699 { "s25fl256s1", INFO(0x010219, 0x4d01, 64 * 1024, 512, 0) },
700 { "s25fl512s", INFO(0x010220, 0x4d00, 256 * 1024, 256, 0) },
701 { "s70fl01gs", INFO(0x010221, 0x4d00, 256 * 1024, 256, 0) },
702 { "s25sl12800", INFO(0x012018, 0x0300, 256 * 1024, 64, 0) },
703 { "s25sl12801", INFO(0x012018, 0x0301, 64 * 1024, 256, 0) },
704 { "s25fl129p0", INFO(0x012018, 0x4d00, 256 * 1024, 64, 0) },
705 { "s25fl129p1", INFO(0x012018, 0x4d01, 64 * 1024, 256, 0) },
706 { "s25fl016k", INFO(0xef4015, 0, 64 * 1024, 32, SECT_4K
) },
707 { "s25fl064k", INFO(0xef4017, 0, 64 * 1024, 128, SECT_4K
) },
709 /* SST -- large erase sizes are "overlays", "sectors" are 4K */
710 { "sst25vf040b", INFO(0xbf258d, 0, 64 * 1024, 8, SECT_4K
) },
711 { "sst25vf080b", INFO(0xbf258e, 0, 64 * 1024, 16, SECT_4K
) },
712 { "sst25vf016b", INFO(0xbf2541, 0, 64 * 1024, 32, SECT_4K
) },
713 { "sst25vf032b", INFO(0xbf254a, 0, 64 * 1024, 64, SECT_4K
) },
714 { "sst25wf512", INFO(0xbf2501, 0, 64 * 1024, 1, SECT_4K
) },
715 { "sst25wf010", INFO(0xbf2502, 0, 64 * 1024, 2, SECT_4K
) },
716 { "sst25wf020", INFO(0xbf2503, 0, 64 * 1024, 4, SECT_4K
) },
717 { "sst25wf040", INFO(0xbf2504, 0, 64 * 1024, 8, SECT_4K
) },
719 /* ST Microelectronics -- newer production may have feature updates */
720 { "m25p05", INFO(0x202010, 0, 32 * 1024, 2, 0) },
721 { "m25p10", INFO(0x202011, 0, 32 * 1024, 4, 0) },
722 { "m25p20", INFO(0x202012, 0, 64 * 1024, 4, 0) },
723 { "m25p40", INFO(0x202013, 0, 64 * 1024, 8, 0) },
724 { "m25p80", INFO(0x202014, 0, 64 * 1024, 16, 0) },
725 { "m25p16", INFO(0x202015, 0, 64 * 1024, 32, 0) },
726 { "m25p32", INFO(0x202016, 0, 64 * 1024, 64, 0) },
727 { "m25p64", INFO(0x202017, 0, 64 * 1024, 128, 0) },
728 { "m25p128", INFO(0x202018, 0, 256 * 1024, 64, 0) },
730 { "m25p05-nonjedec", INFO(0, 0, 32 * 1024, 2, 0) },
731 { "m25p10-nonjedec", INFO(0, 0, 32 * 1024, 4, 0) },
732 { "m25p20-nonjedec", INFO(0, 0, 64 * 1024, 4, 0) },
733 { "m25p40-nonjedec", INFO(0, 0, 64 * 1024, 8, 0) },
734 { "m25p80-nonjedec", INFO(0, 0, 64 * 1024, 16, 0) },
735 { "m25p16-nonjedec", INFO(0, 0, 64 * 1024, 32, 0) },
736 { "m25p32-nonjedec", INFO(0, 0, 64 * 1024, 64, 0) },
737 { "m25p64-nonjedec", INFO(0, 0, 64 * 1024, 128, 0) },
738 { "m25p128-nonjedec", INFO(0, 0, 256 * 1024, 64, 0) },
740 { "m45pe10", INFO(0x204011, 0, 64 * 1024, 2, 0) },
741 { "m45pe80", INFO(0x204014, 0, 64 * 1024, 16, 0) },
742 { "m45pe16", INFO(0x204015, 0, 64 * 1024, 32, 0) },
744 { "m25pe80", INFO(0x208014, 0, 64 * 1024, 16, 0) },
745 { "m25pe16", INFO(0x208015, 0, 64 * 1024, 32, SECT_4K
) },
747 { "m25px32", INFO(0x207116, 0, 64 * 1024, 64, SECT_4K
) },
748 { "m25px32-s0", INFO(0x207316, 0, 64 * 1024, 64, SECT_4K
) },
749 { "m25px32-s1", INFO(0x206316, 0, 64 * 1024, 64, SECT_4K
) },
750 { "m25px64", INFO(0x207117, 0, 64 * 1024, 128, 0) },
752 /* Winbond -- w25x "blocks" are 64K, "sectors" are 4KiB */
753 { "w25x10", INFO(0xef3011, 0, 64 * 1024, 2, SECT_4K
) },
754 { "w25x20", INFO(0xef3012, 0, 64 * 1024, 4, SECT_4K
) },
755 { "w25x40", INFO(0xef3013, 0, 64 * 1024, 8, SECT_4K
) },
756 { "w25x80", INFO(0xef3014, 0, 64 * 1024, 16, SECT_4K
) },
757 { "w25x16", INFO(0xef3015, 0, 64 * 1024, 32, SECT_4K
) },
758 { "w25x32", INFO(0xef3016, 0, 64 * 1024, 64, SECT_4K
) },
759 { "w25q32", INFO(0xef4016, 0, 64 * 1024, 64, SECT_4K
) },
760 { "w25x64", INFO(0xef3017, 0, 64 * 1024, 128, SECT_4K
) },
761 { "w25q64", INFO(0xef4017, 0, 64 * 1024, 128, SECT_4K
) },
763 /* Catalyst / On Semiconductor -- non-JEDEC */
764 { "cat25c11", CAT25_INFO( 16, 8, 16, 1) },
765 { "cat25c03", CAT25_INFO( 32, 8, 16, 2) },
766 { "cat25c09", CAT25_INFO( 128, 8, 32, 2) },
767 { "cat25c17", CAT25_INFO( 256, 8, 32, 2) },
768 { "cat25128", CAT25_INFO(2048, 8, 64, 2) },
771 MODULE_DEVICE_TABLE(spi
, m25p_ids
);
773 static const struct spi_device_id
*__devinit
jedec_probe(struct spi_device
*spi
)
776 u8 code
= OPCODE_RDID
;
780 struct flash_info
*info
;
782 /* JEDEC also defines an optional "extended device information"
783 * string for after vendor-specific data, after the three bytes
784 * we use here. Supporting some chips might require using it.
786 tmp
= spi_write_then_read(spi
, &code
, 1, id
, 5);
788 pr_debug("%s: error %d reading JEDEC ID\n",
789 dev_name(&spi
->dev
), tmp
);
798 ext_jedec
= id
[3] << 8 | id
[4];
800 for (tmp
= 0; tmp
< ARRAY_SIZE(m25p_ids
) - 1; tmp
++) {
801 info
= (void *)m25p_ids
[tmp
].driver_data
;
802 if (info
->jedec_id
== jedec
) {
803 if (info
->ext_id
!= 0 && info
->ext_id
!= ext_jedec
)
805 return &m25p_ids
[tmp
];
808 dev_err(&spi
->dev
, "unrecognized JEDEC id %06x\n", jedec
);
809 return ERR_PTR(-ENODEV
);
814 * board specific setup should have ensured the SPI clock used here
815 * matches what the READ command supports, at least until this driver
816 * understands FAST_READ (for clocks over 25 MHz).
818 static int __devinit
m25p_probe(struct spi_device
*spi
)
820 const struct spi_device_id
*id
= spi_get_device_id(spi
);
821 struct flash_platform_data
*data
;
823 struct flash_info
*info
;
825 struct mtd_part_parser_data ppdata
;
827 #ifdef CONFIG_MTD_OF_PARTS
828 if (!of_device_is_available(spi
->dev
.of_node
))
832 /* Platform data helps sort out which chip type we have, as
833 * well as how this board partitions it. If we don't have
834 * a chip ID, try the JEDEC id commands; they'll work for most
835 * newer chips, even if we don't recognize the particular chip.
837 data
= spi
->dev
.platform_data
;
838 if (data
&& data
->type
) {
839 const struct spi_device_id
*plat_id
;
841 for (i
= 0; i
< ARRAY_SIZE(m25p_ids
) - 1; i
++) {
842 plat_id
= &m25p_ids
[i
];
843 if (strcmp(data
->type
, plat_id
->name
))
848 if (i
< ARRAY_SIZE(m25p_ids
) - 1)
851 dev_warn(&spi
->dev
, "unrecognized id %s\n", data
->type
);
854 info
= (void *)id
->driver_data
;
856 if (info
->jedec_id
) {
857 const struct spi_device_id
*jid
;
859 jid
= jedec_probe(spi
);
862 } else if (jid
!= id
) {
864 * JEDEC knows better, so overwrite platform ID. We
865 * can't trust partitions any longer, but we'll let
866 * mtd apply them anyway, since some partitions may be
867 * marked read-only, and we don't want to lose that
868 * information, even if it's not 100% accurate.
870 dev_warn(&spi
->dev
, "found %s, expected %s\n",
871 jid
->name
, id
->name
);
873 info
= (void *)jid
->driver_data
;
877 flash
= kzalloc(sizeof *flash
, GFP_KERNEL
);
880 flash
->command
= kmalloc(MAX_CMD_SIZE
+ FAST_READ_DUMMY_BYTE
, GFP_KERNEL
);
881 if (!flash
->command
) {
887 mutex_init(&flash
->lock
);
888 dev_set_drvdata(&spi
->dev
, flash
);
891 * Atmel, SST and Intel/Numonyx serial flash tend to power
892 * up with the software protection bits set
895 if (JEDEC_MFR(info
->jedec_id
) == CFI_MFR_ATMEL
||
896 JEDEC_MFR(info
->jedec_id
) == CFI_MFR_INTEL
||
897 JEDEC_MFR(info
->jedec_id
) == CFI_MFR_SST
) {
902 if (data
&& data
->name
)
903 flash
->mtd
.name
= data
->name
;
905 flash
->mtd
.name
= dev_name(&spi
->dev
);
907 flash
->mtd
.type
= MTD_NORFLASH
;
908 flash
->mtd
.writesize
= 1;
909 flash
->mtd
.flags
= MTD_CAP_NORFLASH
;
910 flash
->mtd
.size
= info
->sector_size
* info
->n_sectors
;
911 flash
->mtd
.erase
= m25p80_erase
;
912 flash
->mtd
.read
= m25p80_read
;
914 /* sst flash chips use AAI word program */
915 if (JEDEC_MFR(info
->jedec_id
) == CFI_MFR_SST
)
916 flash
->mtd
.write
= sst_write
;
918 flash
->mtd
.write
= m25p80_write
;
920 /* prefer "small sector" erase if possible */
921 if (info
->flags
& SECT_4K
) {
922 flash
->erase_opcode
= OPCODE_BE_4K
;
923 flash
->mtd
.erasesize
= 4096;
925 flash
->erase_opcode
= OPCODE_SE
;
926 flash
->mtd
.erasesize
= info
->sector_size
;
929 if (info
->flags
& M25P_NO_ERASE
)
930 flash
->mtd
.flags
|= MTD_NO_ERASE
;
932 ppdata
.of_node
= spi
->dev
.of_node
;
933 flash
->mtd
.dev
.parent
= &spi
->dev
;
934 flash
->page_size
= info
->page_size
;
935 flash
->mtd
.writebufsize
= flash
->page_size
;
937 if (info
->addr_width
)
938 flash
->addr_width
= info
->addr_width
;
940 /* enable 4-byte addressing if the device exceeds 16MiB */
941 if (flash
->mtd
.size
> 0x1000000) {
942 flash
->addr_width
= 4;
943 set_4byte(flash
, info
->jedec_id
, 1);
945 flash
->addr_width
= 3;
948 dev_info(&spi
->dev
, "%s (%lld Kbytes)\n", id
->name
,
949 (long long)flash
->mtd
.size
>> 10);
951 pr_debug("mtd .name = %s, .size = 0x%llx (%lldMiB) "
952 ".erasesize = 0x%.8x (%uKiB) .numeraseregions = %d\n",
954 (long long)flash
->mtd
.size
, (long long)(flash
->mtd
.size
>> 20),
955 flash
->mtd
.erasesize
, flash
->mtd
.erasesize
/ 1024,
956 flash
->mtd
.numeraseregions
);
958 if (flash
->mtd
.numeraseregions
)
959 for (i
= 0; i
< flash
->mtd
.numeraseregions
; i
++)
960 pr_debug("mtd.eraseregions[%d] = { .offset = 0x%llx, "
961 ".erasesize = 0x%.8x (%uKiB), "
962 ".numblocks = %d }\n",
963 i
, (long long)flash
->mtd
.eraseregions
[i
].offset
,
964 flash
->mtd
.eraseregions
[i
].erasesize
,
965 flash
->mtd
.eraseregions
[i
].erasesize
/ 1024,
966 flash
->mtd
.eraseregions
[i
].numblocks
);
969 /* partitions should match sector boundaries; and it may be good to
970 * use readonly partitions for writeprotected sectors (BP2..BP0).
972 return mtd_device_parse_register(&flash
->mtd
, NULL
, &ppdata
,
973 data
? data
->parts
: NULL
,
974 data
? data
->nr_parts
: 0);
978 static int __devexit
m25p_remove(struct spi_device
*spi
)
980 struct m25p
*flash
= dev_get_drvdata(&spi
->dev
);
983 /* Clean up MTD stuff. */
984 status
= mtd_device_unregister(&flash
->mtd
);
986 kfree(flash
->command
);
993 static struct spi_driver m25p80_driver
= {
996 .owner
= THIS_MODULE
,
998 .id_table
= m25p_ids
,
1000 .remove
= __devexit_p(m25p_remove
),
1002 /* REVISIT: many of these chips have deep power-down modes, which
1003 * should clearly be entered on suspend() to minimize power use.
1004 * And also when they're otherwise idle...
1009 static int __init
m25p80_init(void)
1011 return spi_register_driver(&m25p80_driver
);
1015 static void __exit
m25p80_exit(void)
1017 spi_unregister_driver(&m25p80_driver
);
1021 module_init(m25p80_init
);
1022 module_exit(m25p80_exit
);
1024 MODULE_LICENSE("GPL");
1025 MODULE_AUTHOR("Mike Lavender");
1026 MODULE_DESCRIPTION("MTD SPI driver for ST M25Pxx flash chips");