blob: 82f977456b8865416936b5685e35ec8d56f26690 [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
18#include <linux/init.h>
Anton Vorontsov9d2c4f32010-06-22 20:57:42 +040019#include <linux/err.h>
20#include <linux/errno.h>
Mike Lavender2f9f7622006-01-08 13:34:27 -080021#include <linux/module.h>
22#include <linux/device.h>
23#include <linux/interrupt.h>
David Brownell7d5230e2007-06-24 15:09:13 -070024#include <linux/mutex.h>
Artem Bityutskiyd85316a2008-12-18 14:10:05 +020025#include <linux/math64.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090026#include <linux/slab.h>
Alexey Dobriyand43c36d2009-10-07 17:09:06 +040027#include <linux/sched.h>
Anton Vorontsovb34bc032009-10-12 20:24:35 +040028#include <linux/mod_devicetable.h>
David Brownell7d5230e2007-06-24 15:09:13 -070029
Kevin Cernekeeaa084652011-05-08 10:48:00 -070030#include <linux/mtd/cfi.h>
Mike Lavender2f9f7622006-01-08 13:34:27 -080031#include <linux/mtd/mtd.h>
32#include <linux/mtd/partitions.h>
Shaohui Xie5f949132011-10-14 15:49:00 +080033#include <linux/of_platform.h>
David Brownell7d5230e2007-06-24 15:09:13 -070034
Mike Lavender2f9f7622006-01-08 13:34:27 -080035#include <linux/spi/spi.h>
36#include <linux/spi/flash.h>
37
Mike Lavender2f9f7622006-01-08 13:34:27 -080038/* Flash opcodes. */
David Brownellfa0a8c72007-06-24 15:12:35 -070039#define OPCODE_WREN 0x06 /* Write enable */
40#define OPCODE_RDSR 0x05 /* Read status register */
Michael Hennerich72289822008-07-03 23:54:42 -070041#define OPCODE_WRSR 0x01 /* Write status register 1 byte */
Bryan Wu2230b762008-04-25 12:07:32 +080042#define OPCODE_NORM_READ 0x03 /* Read data bytes (low frequency) */
David Brownellfa0a8c72007-06-24 15:12:35 -070043#define OPCODE_FAST_READ 0x0b /* Read data bytes (high frequency) */
44#define OPCODE_PP 0x02 /* Page program (up to 256 bytes) */
Chen Gong78546432008-11-26 10:23:57 +000045#define OPCODE_BE_4K 0x20 /* Erase 4KiB block */
David Woodhouse02d087d2007-06-28 22:38:38 +010046#define OPCODE_BE_32K 0x52 /* Erase 32KiB block */
Chen Gong78546432008-11-26 10:23:57 +000047#define OPCODE_CHIP_ERASE 0xc7 /* Erase whole flash chip */
David Woodhouse02d087d2007-06-28 22:38:38 +010048#define OPCODE_SE 0xd8 /* Sector erase (usually 64KiB) */
Mike Lavender2f9f7622006-01-08 13:34:27 -080049#define OPCODE_RDID 0x9f /* Read JEDEC ID */
50
Graf Yang49aac4a2009-06-15 08:23:41 +000051/* 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 */
55
Kevin Cernekee4b7f7422010-10-30 21:11:03 -070056/* Used for Macronix flashes only. */
57#define OPCODE_EN4B 0xb7 /* Enter 4-byte mode */
58#define OPCODE_EX4B 0xe9 /* Exit 4-byte mode */
59
Kevin Cernekeebaa9ae32011-05-08 10:48:01 -070060/* Used for Spansion flashes only. */
61#define OPCODE_BRWR 0x17 /* Bank register write */
62
Mike Lavender2f9f7622006-01-08 13:34:27 -080063/* Status Register bits. */
64#define SR_WIP 1 /* Write in progress */
65#define SR_WEL 2 /* Write enable latch */
David Brownellfa0a8c72007-06-24 15:12:35 -070066/* meaning of other SR_* bits may differ between vendors */
Mike Lavender2f9f7622006-01-08 13:34:27 -080067#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 */
71
72/* Define max times to check status register before we give up. */
Steven A. Falco89bb8712009-06-26 12:42:47 -040073#define MAX_READY_WAIT_JIFFIES (40 * HZ) /* M25P16 specs 40s max chip erase */
Kevin Cernekee4b7f7422010-10-30 21:11:03 -070074#define MAX_CMD_SIZE 5
Mike Lavender2f9f7622006-01-08 13:34:27 -080075
Kevin Cernekeeaa084652011-05-08 10:48:00 -070076#define JEDEC_MFR(_jedec_id) ((_jedec_id) >> 16)
77
Mike Lavender2f9f7622006-01-08 13:34:27 -080078/****************************************************************************/
79
80struct m25p {
81 struct spi_device *spi;
David Brownell7d5230e2007-06-24 15:09:13 -070082 struct mutex lock;
Mike Lavender2f9f7622006-01-08 13:34:27 -080083 struct mtd_info mtd;
Anton Vorontsov837479d2009-10-12 20:24:40 +040084 u16 page_size;
85 u16 addr_width;
David Brownellfa0a8c72007-06-24 15:12:35 -070086 u8 erase_opcode;
Johannes Stezenbach61c35062009-10-28 14:21:37 +010087 u8 *command;
Marek Vasut12ad2be2012-09-24 03:39:39 +020088 bool fast_read;
Mike Lavender2f9f7622006-01-08 13:34:27 -080089};
90
91static inline struct m25p *mtd_to_m25p(struct mtd_info *mtd)
92{
93 return container_of(mtd, struct m25p, mtd);
94}
95
96/****************************************************************************/
97
98/*
99 * Internal helper functions
100 */
101
102/*
103 * Read the status register, returning its value in the location
104 * Return the status register value.
105 * Returns negative if error occurred.
106 */
107static int read_sr(struct m25p *flash)
108{
109 ssize_t retval;
110 u8 code = OPCODE_RDSR;
111 u8 val;
112
113 retval = spi_write_then_read(flash->spi, &code, 1, &val, 1);
114
115 if (retval < 0) {
116 dev_err(&flash->spi->dev, "error %d reading SR\n",
117 (int) retval);
118 return retval;
119 }
120
121 return val;
122}
123
Michael Hennerich72289822008-07-03 23:54:42 -0700124/*
125 * Write status register 1 byte
126 * Returns negative if error occurred.
127 */
128static int write_sr(struct m25p *flash, u8 val)
129{
130 flash->command[0] = OPCODE_WRSR;
131 flash->command[1] = val;
132
133 return spi_write(flash->spi, flash->command, 2);
134}
Mike Lavender2f9f7622006-01-08 13:34:27 -0800135
136/*
137 * Set write enable latch with Write Enable command.
138 * Returns negative if error occurred.
139 */
140static inline int write_enable(struct m25p *flash)
141{
142 u8 code = OPCODE_WREN;
143
David Woodhouse8a1a6272008-10-20 09:26:16 +0100144 return spi_write_then_read(flash->spi, &code, 1, NULL, 0);
Mike Lavender2f9f7622006-01-08 13:34:27 -0800145}
146
Graf Yang49aac4a2009-06-15 08:23:41 +0000147/*
148 * Send write disble instruction to the chip.
149 */
150static inline int write_disable(struct m25p *flash)
151{
152 u8 code = OPCODE_WRDI;
153
154 return spi_write_then_read(flash->spi, &code, 1, NULL, 0);
155}
Mike Lavender2f9f7622006-01-08 13:34:27 -0800156
157/*
Kevin Cernekee4b7f7422010-10-30 21:11:03 -0700158 * Enable/disable 4-byte addressing mode.
159 */
Kevin Cernekeebaa9ae32011-05-08 10:48:01 -0700160static inline int set_4byte(struct m25p *flash, u32 jedec_id, int enable)
Kevin Cernekee4b7f7422010-10-30 21:11:03 -0700161{
Kevin Cernekeebaa9ae32011-05-08 10:48:01 -0700162 switch (JEDEC_MFR(jedec_id)) {
163 case CFI_MFR_MACRONIX:
164 flash->command[0] = enable ? OPCODE_EN4B : OPCODE_EX4B;
165 return spi_write(flash->spi, flash->command, 1);
166 default:
167 /* Spansion style */
168 flash->command[0] = OPCODE_BRWR;
169 flash->command[1] = enable << 7;
170 return spi_write(flash->spi, flash->command, 2);
171 }
Kevin Cernekee4b7f7422010-10-30 21:11:03 -0700172}
173
174/*
Mike Lavender2f9f7622006-01-08 13:34:27 -0800175 * Service routine to read status register until ready, or timeout occurs.
176 * Returns non-zero if error.
177 */
178static int wait_till_ready(struct m25p *flash)
179{
Peter Hortoncd1a6de2009-05-08 13:51:53 +0100180 unsigned long deadline;
Mike Lavender2f9f7622006-01-08 13:34:27 -0800181 int sr;
182
Peter Hortoncd1a6de2009-05-08 13:51:53 +0100183 deadline = jiffies + MAX_READY_WAIT_JIFFIES;
184
185 do {
Mike Lavender2f9f7622006-01-08 13:34:27 -0800186 if ((sr = read_sr(flash)) < 0)
187 break;
188 else if (!(sr & SR_WIP))
189 return 0;
190
Peter Hortoncd1a6de2009-05-08 13:51:53 +0100191 cond_resched();
192
193 } while (!time_after_eq(jiffies, deadline));
Mike Lavender2f9f7622006-01-08 13:34:27 -0800194
195 return 1;
196}
197
Chen Gongfaff3752008-08-11 16:59:13 +0800198/*
199 * Erase the whole flash memory
200 *
201 * Returns 0 if successful, non-zero otherwise.
202 */
Chen Gong78546432008-11-26 10:23:57 +0000203static int erase_chip(struct m25p *flash)
Chen Gongfaff3752008-08-11 16:59:13 +0800204{
Brian Norris0a32a102011-07-19 10:06:10 -0700205 pr_debug("%s: %s %lldKiB\n", dev_name(&flash->spi->dev), __func__,
206 (long long)(flash->mtd.size >> 10));
Chen Gongfaff3752008-08-11 16:59:13 +0800207
208 /* Wait until finished previous write command. */
209 if (wait_till_ready(flash))
210 return 1;
211
212 /* Send write enable, then erase commands. */
213 write_enable(flash);
214
215 /* Set up command buffer. */
Chen Gong78546432008-11-26 10:23:57 +0000216 flash->command[0] = OPCODE_CHIP_ERASE;
Chen Gongfaff3752008-08-11 16:59:13 +0800217
218 spi_write(flash->spi, flash->command, 1);
219
220 return 0;
221}
Mike Lavender2f9f7622006-01-08 13:34:27 -0800222
Anton Vorontsov837479d2009-10-12 20:24:40 +0400223static void m25p_addr2cmd(struct m25p *flash, unsigned int addr, u8 *cmd)
224{
225 /* opcode is in cmd[0] */
226 cmd[1] = addr >> (flash->addr_width * 8 - 8);
227 cmd[2] = addr >> (flash->addr_width * 8 - 16);
228 cmd[3] = addr >> (flash->addr_width * 8 - 24);
Kevin Cernekee4b7f7422010-10-30 21:11:03 -0700229 cmd[4] = addr >> (flash->addr_width * 8 - 32);
Anton Vorontsov837479d2009-10-12 20:24:40 +0400230}
231
232static int m25p_cmdsz(struct m25p *flash)
233{
234 return 1 + flash->addr_width;
235}
236
Mike Lavender2f9f7622006-01-08 13:34:27 -0800237/*
238 * Erase one sector of flash memory at offset ``offset'' which is any
239 * address within the sector which should be erased.
240 *
241 * Returns 0 if successful, non-zero otherwise.
242 */
243static int erase_sector(struct m25p *flash, u32 offset)
244{
Brian Norris0a32a102011-07-19 10:06:10 -0700245 pr_debug("%s: %s %dKiB at 0x%08x\n", dev_name(&flash->spi->dev),
246 __func__, flash->mtd.erasesize / 1024, offset);
Mike Lavender2f9f7622006-01-08 13:34:27 -0800247
248 /* Wait until finished previous write command. */
249 if (wait_till_ready(flash))
250 return 1;
251
252 /* Send write enable, then erase commands. */
253 write_enable(flash);
254
255 /* Set up command buffer. */
David Brownellfa0a8c72007-06-24 15:12:35 -0700256 flash->command[0] = flash->erase_opcode;
Anton Vorontsov837479d2009-10-12 20:24:40 +0400257 m25p_addr2cmd(flash, offset, flash->command);
Mike Lavender2f9f7622006-01-08 13:34:27 -0800258
Anton Vorontsov837479d2009-10-12 20:24:40 +0400259 spi_write(flash->spi, flash->command, m25p_cmdsz(flash));
Mike Lavender2f9f7622006-01-08 13:34:27 -0800260
261 return 0;
262}
263
264/****************************************************************************/
265
266/*
267 * MTD implementation
268 */
269
270/*
271 * Erase an address range on the flash chip. The address range may extend
272 * one or more erase sectors. Return an error is there is a problem erasing.
273 */
274static int m25p80_erase(struct mtd_info *mtd, struct erase_info *instr)
275{
276 struct m25p *flash = mtd_to_m25p(mtd);
277 u32 addr,len;
Artem Bityutskiyd85316a2008-12-18 14:10:05 +0200278 uint32_t rem;
Mike Lavender2f9f7622006-01-08 13:34:27 -0800279
Brian Norris0a32a102011-07-19 10:06:10 -0700280 pr_debug("%s: %s at 0x%llx, len %lld\n", dev_name(&flash->spi->dev),
281 __func__, (long long)instr->addr,
282 (long long)instr->len);
Mike Lavender2f9f7622006-01-08 13:34:27 -0800283
Artem Bityutskiyd85316a2008-12-18 14:10:05 +0200284 div_u64_rem(instr->len, mtd->erasesize, &rem);
285 if (rem)
Mike Lavender2f9f7622006-01-08 13:34:27 -0800286 return -EINVAL;
Mike Lavender2f9f7622006-01-08 13:34:27 -0800287
288 addr = instr->addr;
289 len = instr->len;
290
David Brownell7d5230e2007-06-24 15:09:13 -0700291 mutex_lock(&flash->lock);
Mike Lavender2f9f7622006-01-08 13:34:27 -0800292
Chen Gong78546432008-11-26 10:23:57 +0000293 /* whole-chip erase? */
Steven A. Falco3f33b0a2009-04-27 17:10:10 -0400294 if (len == flash->mtd.size) {
295 if (erase_chip(flash)) {
296 instr->state = MTD_ERASE_FAILED;
297 mutex_unlock(&flash->lock);
298 return -EIO;
299 }
Chen Gong78546432008-11-26 10:23:57 +0000300
301 /* REVISIT in some cases we could speed up erasing large regions
302 * by using OPCODE_SE instead of OPCODE_BE_4K. We may have set up
303 * to use "small sector erase", but that's not always optimal.
304 */
305
306 /* "sector"-at-a-time erase */
Chen Gongfaff3752008-08-11 16:59:13 +0800307 } else {
308 while (len) {
309 if (erase_sector(flash, addr)) {
310 instr->state = MTD_ERASE_FAILED;
311 mutex_unlock(&flash->lock);
312 return -EIO;
313 }
Mike Lavender2f9f7622006-01-08 13:34:27 -0800314
Chen Gongfaff3752008-08-11 16:59:13 +0800315 addr += mtd->erasesize;
316 len -= mtd->erasesize;
317 }
Mike Lavender2f9f7622006-01-08 13:34:27 -0800318 }
319
David Brownell7d5230e2007-06-24 15:09:13 -0700320 mutex_unlock(&flash->lock);
Mike Lavender2f9f7622006-01-08 13:34:27 -0800321
322 instr->state = MTD_ERASE_DONE;
323 mtd_erase_callback(instr);
324
325 return 0;
326}
327
328/*
329 * Read an address range from the flash chip. The address range
330 * may be any size provided it is within the physical boundaries.
331 */
332static int m25p80_read(struct mtd_info *mtd, loff_t from, size_t len,
333 size_t *retlen, u_char *buf)
334{
335 struct m25p *flash = mtd_to_m25p(mtd);
336 struct spi_transfer t[2];
337 struct spi_message m;
Marek Vasut12ad2be2012-09-24 03:39:39 +0200338 uint8_t opcode;
Mike Lavender2f9f7622006-01-08 13:34:27 -0800339
Brian Norris0a32a102011-07-19 10:06:10 -0700340 pr_debug("%s: %s from 0x%08x, len %zd\n", dev_name(&flash->spi->dev),
341 __func__, (u32)from, len);
Mike Lavender2f9f7622006-01-08 13:34:27 -0800342
Vitaly Wool8275c642006-01-08 13:34:28 -0800343 spi_message_init(&m);
344 memset(t, 0, (sizeof t));
345
Bryan Wu2230b762008-04-25 12:07:32 +0800346 /* NOTE:
347 * OPCODE_FAST_READ (if available) is faster.
348 * Should add 1 byte DUMMY_BYTE.
349 */
Vitaly Wool8275c642006-01-08 13:34:28 -0800350 t[0].tx_buf = flash->command;
Marek Vasut12ad2be2012-09-24 03:39:39 +0200351 t[0].len = m25p_cmdsz(flash) + (flash->fast_read ? 1 : 0);
Vitaly Wool8275c642006-01-08 13:34:28 -0800352 spi_message_add_tail(&t[0], &m);
353
354 t[1].rx_buf = buf;
355 t[1].len = len;
356 spi_message_add_tail(&t[1], &m);
357
David Brownell7d5230e2007-06-24 15:09:13 -0700358 mutex_lock(&flash->lock);
Mike Lavender2f9f7622006-01-08 13:34:27 -0800359
360 /* Wait till previous write/erase is done. */
361 if (wait_till_ready(flash)) {
362 /* REVISIT status return?? */
David Brownell7d5230e2007-06-24 15:09:13 -0700363 mutex_unlock(&flash->lock);
Mike Lavender2f9f7622006-01-08 13:34:27 -0800364 return 1;
365 }
366
David Brownellfa0a8c72007-06-24 15:12:35 -0700367 /* FIXME switch to OPCODE_FAST_READ. It's required for higher
368 * clocks; and at this writing, every chip this driver handles
369 * supports that opcode.
370 */
Mike Lavender2f9f7622006-01-08 13:34:27 -0800371
372 /* Set up the write data buffer. */
Marek Vasut12ad2be2012-09-24 03:39:39 +0200373 opcode = flash->fast_read ? OPCODE_FAST_READ : OPCODE_NORM_READ;
374 flash->command[0] = opcode;
Anton Vorontsov837479d2009-10-12 20:24:40 +0400375 m25p_addr2cmd(flash, from, flash->command);
Mike Lavender2f9f7622006-01-08 13:34:27 -0800376
Mike Lavender2f9f7622006-01-08 13:34:27 -0800377 spi_sync(flash->spi, &m);
378
Marek Vasut12ad2be2012-09-24 03:39:39 +0200379 *retlen = m.actual_length - m25p_cmdsz(flash) -
380 (flash->fast_read ? 1 : 0);
Mike Lavender2f9f7622006-01-08 13:34:27 -0800381
David Brownell7d5230e2007-06-24 15:09:13 -0700382 mutex_unlock(&flash->lock);
Mike Lavender2f9f7622006-01-08 13:34:27 -0800383
384 return 0;
385}
386
387/*
388 * Write an address range to the flash chip. Data must be written in
389 * FLASH_PAGESIZE chunks. The address range may be any size provided
390 * it is within the physical boundaries.
391 */
392static int m25p80_write(struct mtd_info *mtd, loff_t to, size_t len,
393 size_t *retlen, const u_char *buf)
394{
395 struct m25p *flash = mtd_to_m25p(mtd);
396 u32 page_offset, page_size;
397 struct spi_transfer t[2];
398 struct spi_message m;
399
Brian Norris0a32a102011-07-19 10:06:10 -0700400 pr_debug("%s: %s to 0x%08x, len %zd\n", dev_name(&flash->spi->dev),
401 __func__, (u32)to, len);
Mike Lavender2f9f7622006-01-08 13:34:27 -0800402
Vitaly Wool8275c642006-01-08 13:34:28 -0800403 spi_message_init(&m);
404 memset(t, 0, (sizeof t));
405
406 t[0].tx_buf = flash->command;
Anton Vorontsov837479d2009-10-12 20:24:40 +0400407 t[0].len = m25p_cmdsz(flash);
Vitaly Wool8275c642006-01-08 13:34:28 -0800408 spi_message_add_tail(&t[0], &m);
409
410 t[1].tx_buf = buf;
411 spi_message_add_tail(&t[1], &m);
412
David Brownell7d5230e2007-06-24 15:09:13 -0700413 mutex_lock(&flash->lock);
Mike Lavender2f9f7622006-01-08 13:34:27 -0800414
415 /* Wait until finished previous write command. */
Chen Gongbc018862008-06-05 21:50:04 +0800416 if (wait_till_ready(flash)) {
417 mutex_unlock(&flash->lock);
Mike Lavender2f9f7622006-01-08 13:34:27 -0800418 return 1;
Chen Gongbc018862008-06-05 21:50:04 +0800419 }
Mike Lavender2f9f7622006-01-08 13:34:27 -0800420
421 write_enable(flash);
422
Mike Lavender2f9f7622006-01-08 13:34:27 -0800423 /* Set up the opcode in the write buffer. */
424 flash->command[0] = OPCODE_PP;
Anton Vorontsov837479d2009-10-12 20:24:40 +0400425 m25p_addr2cmd(flash, to, flash->command);
Mike Lavender2f9f7622006-01-08 13:34:27 -0800426
Anton Vorontsov837479d2009-10-12 20:24:40 +0400427 page_offset = to & (flash->page_size - 1);
Mike Lavender2f9f7622006-01-08 13:34:27 -0800428
429 /* do all the bytes fit onto one page? */
Anton Vorontsov837479d2009-10-12 20:24:40 +0400430 if (page_offset + len <= flash->page_size) {
Mike Lavender2f9f7622006-01-08 13:34:27 -0800431 t[1].len = len;
432
433 spi_sync(flash->spi, &m);
434
Anton Vorontsov837479d2009-10-12 20:24:40 +0400435 *retlen = m.actual_length - m25p_cmdsz(flash);
Mike Lavender2f9f7622006-01-08 13:34:27 -0800436 } else {
437 u32 i;
438
439 /* the size of data remaining on the first page */
Anton Vorontsov837479d2009-10-12 20:24:40 +0400440 page_size = flash->page_size - page_offset;
Mike Lavender2f9f7622006-01-08 13:34:27 -0800441
Mike Lavender2f9f7622006-01-08 13:34:27 -0800442 t[1].len = page_size;
443 spi_sync(flash->spi, &m);
444
Anton Vorontsov837479d2009-10-12 20:24:40 +0400445 *retlen = m.actual_length - m25p_cmdsz(flash);
Mike Lavender2f9f7622006-01-08 13:34:27 -0800446
Anton Vorontsov837479d2009-10-12 20:24:40 +0400447 /* write everything in flash->page_size chunks */
Mike Lavender2f9f7622006-01-08 13:34:27 -0800448 for (i = page_size; i < len; i += page_size) {
449 page_size = len - i;
Anton Vorontsov837479d2009-10-12 20:24:40 +0400450 if (page_size > flash->page_size)
451 page_size = flash->page_size;
Mike Lavender2f9f7622006-01-08 13:34:27 -0800452
453 /* write the next page to flash */
Anton Vorontsov837479d2009-10-12 20:24:40 +0400454 m25p_addr2cmd(flash, to + i, flash->command);
Mike Lavender2f9f7622006-01-08 13:34:27 -0800455
456 t[1].tx_buf = buf + i;
457 t[1].len = page_size;
458
459 wait_till_ready(flash);
460
461 write_enable(flash);
462
463 spi_sync(flash->spi, &m);
464
Dan Carpenterb06cd212010-08-12 09:53:52 +0200465 *retlen += m.actual_length - m25p_cmdsz(flash);
David Brownell7d5230e2007-06-24 15:09:13 -0700466 }
467 }
Mike Lavender2f9f7622006-01-08 13:34:27 -0800468
David Brownell7d5230e2007-06-24 15:09:13 -0700469 mutex_unlock(&flash->lock);
Mike Lavender2f9f7622006-01-08 13:34:27 -0800470
471 return 0;
472}
473
Graf Yang49aac4a2009-06-15 08:23:41 +0000474static int sst_write(struct mtd_info *mtd, loff_t to, size_t len,
475 size_t *retlen, const u_char *buf)
476{
477 struct m25p *flash = mtd_to_m25p(mtd);
478 struct spi_transfer t[2];
479 struct spi_message m;
480 size_t actual;
481 int cmd_sz, ret;
482
Brian Norris0a32a102011-07-19 10:06:10 -0700483 pr_debug("%s: %s to 0x%08x, len %zd\n", dev_name(&flash->spi->dev),
484 __func__, (u32)to, len);
Nicolas Ferredcf12462010-12-15 12:59:32 +0100485
Graf Yang49aac4a2009-06-15 08:23:41 +0000486 spi_message_init(&m);
487 memset(t, 0, (sizeof t));
488
489 t[0].tx_buf = flash->command;
Anton Vorontsov837479d2009-10-12 20:24:40 +0400490 t[0].len = m25p_cmdsz(flash);
Graf Yang49aac4a2009-06-15 08:23:41 +0000491 spi_message_add_tail(&t[0], &m);
492
493 t[1].tx_buf = buf;
494 spi_message_add_tail(&t[1], &m);
495
496 mutex_lock(&flash->lock);
497
498 /* Wait until finished previous write command. */
499 ret = wait_till_ready(flash);
500 if (ret)
501 goto time_out;
502
503 write_enable(flash);
504
505 actual = to % 2;
506 /* Start write from odd address. */
507 if (actual) {
508 flash->command[0] = OPCODE_BP;
Anton Vorontsov837479d2009-10-12 20:24:40 +0400509 m25p_addr2cmd(flash, to, flash->command);
Graf Yang49aac4a2009-06-15 08:23:41 +0000510
511 /* write one byte. */
512 t[1].len = 1;
513 spi_sync(flash->spi, &m);
514 ret = wait_till_ready(flash);
515 if (ret)
516 goto time_out;
Anton Vorontsov837479d2009-10-12 20:24:40 +0400517 *retlen += m.actual_length - m25p_cmdsz(flash);
Graf Yang49aac4a2009-06-15 08:23:41 +0000518 }
519 to += actual;
520
521 flash->command[0] = OPCODE_AAI_WP;
Anton Vorontsov837479d2009-10-12 20:24:40 +0400522 m25p_addr2cmd(flash, to, flash->command);
Graf Yang49aac4a2009-06-15 08:23:41 +0000523
524 /* Write out most of the data here. */
Anton Vorontsov837479d2009-10-12 20:24:40 +0400525 cmd_sz = m25p_cmdsz(flash);
Graf Yang49aac4a2009-06-15 08:23:41 +0000526 for (; actual < len - 1; actual += 2) {
527 t[0].len = cmd_sz;
528 /* write two bytes. */
529 t[1].len = 2;
530 t[1].tx_buf = buf + actual;
531
532 spi_sync(flash->spi, &m);
533 ret = wait_till_ready(flash);
534 if (ret)
535 goto time_out;
536 *retlen += m.actual_length - cmd_sz;
537 cmd_sz = 1;
538 to += 2;
539 }
540 write_disable(flash);
541 ret = wait_till_ready(flash);
542 if (ret)
543 goto time_out;
544
545 /* Write out trailing byte if it exists. */
546 if (actual != len) {
547 write_enable(flash);
548 flash->command[0] = OPCODE_BP;
Anton Vorontsov837479d2009-10-12 20:24:40 +0400549 m25p_addr2cmd(flash, to, flash->command);
550 t[0].len = m25p_cmdsz(flash);
Graf Yang49aac4a2009-06-15 08:23:41 +0000551 t[1].len = 1;
552 t[1].tx_buf = buf + actual;
553
554 spi_sync(flash->spi, &m);
555 ret = wait_till_ready(flash);
556 if (ret)
557 goto time_out;
Anton Vorontsov837479d2009-10-12 20:24:40 +0400558 *retlen += m.actual_length - m25p_cmdsz(flash);
Graf Yang49aac4a2009-06-15 08:23:41 +0000559 write_disable(flash);
560 }
561
562time_out:
563 mutex_unlock(&flash->lock);
564 return ret;
565}
Mike Lavender2f9f7622006-01-08 13:34:27 -0800566
567/****************************************************************************/
568
569/*
570 * SPI device driver setup and teardown
571 */
572
573struct flash_info {
David Brownellfa0a8c72007-06-24 15:12:35 -0700574 /* JEDEC id zero means "no ID" (most older chips); otherwise it has
575 * a high byte of zero plus three data bytes: the manufacturer id,
576 * then a two byte device id.
577 */
578 u32 jedec_id;
Chen Gongd0e8c472008-08-11 16:59:15 +0800579 u16 ext_id;
David Brownellfa0a8c72007-06-24 15:12:35 -0700580
581 /* The size listed here is what works with OPCODE_SE, which isn't
582 * necessarily called a "sector" by the vendor.
583 */
Mike Lavender2f9f7622006-01-08 13:34:27 -0800584 unsigned sector_size;
David Brownellfa0a8c72007-06-24 15:12:35 -0700585 u16 n_sectors;
586
Anton Vorontsov837479d2009-10-12 20:24:40 +0400587 u16 page_size;
588 u16 addr_width;
589
David Brownellfa0a8c72007-06-24 15:12:35 -0700590 u16 flags;
591#define SECT_4K 0x01 /* OPCODE_BE_4K works uniformly */
Anton Vorontsov837479d2009-10-12 20:24:40 +0400592#define M25P_NO_ERASE 0x02 /* No erase command needed */
Mike Lavender2f9f7622006-01-08 13:34:27 -0800593};
594
Anton Vorontsovb34bc032009-10-12 20:24:35 +0400595#define INFO(_jedec_id, _ext_id, _sector_size, _n_sectors, _flags) \
596 ((kernel_ulong_t)&(struct flash_info) { \
597 .jedec_id = (_jedec_id), \
598 .ext_id = (_ext_id), \
599 .sector_size = (_sector_size), \
600 .n_sectors = (_n_sectors), \
Anton Vorontsov837479d2009-10-12 20:24:40 +0400601 .page_size = 256, \
Anton Vorontsovb34bc032009-10-12 20:24:35 +0400602 .flags = (_flags), \
603 })
David Brownellfa0a8c72007-06-24 15:12:35 -0700604
Anton Vorontsov837479d2009-10-12 20:24:40 +0400605#define CAT25_INFO(_sector_size, _n_sectors, _page_size, _addr_width) \
606 ((kernel_ulong_t)&(struct flash_info) { \
607 .sector_size = (_sector_size), \
608 .n_sectors = (_n_sectors), \
609 .page_size = (_page_size), \
610 .addr_width = (_addr_width), \
611 .flags = M25P_NO_ERASE, \
612 })
David Brownellfa0a8c72007-06-24 15:12:35 -0700613
614/* NOTE: double check command sets and memory organization when you add
615 * more flash chips. This current list focusses on newer chips, which
616 * have been converging on command sets which including JEDEC ID.
617 */
Anton Vorontsovb34bc032009-10-12 20:24:35 +0400618static const struct spi_device_id m25p_ids[] = {
David Brownellfa0a8c72007-06-24 15:12:35 -0700619 /* Atmel -- some are (confusingly) marketed as "DataFlash" */
Anton Vorontsovb34bc032009-10-12 20:24:35 +0400620 { "at25fs010", INFO(0x1f6601, 0, 32 * 1024, 4, SECT_4K) },
621 { "at25fs040", INFO(0x1f6604, 0, 64 * 1024, 8, SECT_4K) },
David Brownellfa0a8c72007-06-24 15:12:35 -0700622
Anton Vorontsovb34bc032009-10-12 20:24:35 +0400623 { "at25df041a", INFO(0x1f4401, 0, 64 * 1024, 8, SECT_4K) },
Mikhail Kshevetskiyada766e2011-09-23 19:36:18 +0400624 { "at25df321a", INFO(0x1f4701, 0, 64 * 1024, 64, SECT_4K) },
Anton Vorontsovb34bc032009-10-12 20:24:35 +0400625 { "at25df641", INFO(0x1f4800, 0, 64 * 1024, 128, SECT_4K) },
David Brownellfa0a8c72007-06-24 15:12:35 -0700626
Anton Vorontsovb34bc032009-10-12 20:24:35 +0400627 { "at26f004", INFO(0x1f0400, 0, 64 * 1024, 8, SECT_4K) },
628 { "at26df081a", INFO(0x1f4501, 0, 64 * 1024, 16, SECT_4K) },
629 { "at26df161a", INFO(0x1f4601, 0, 64 * 1024, 32, SECT_4K) },
Aleksandr Koltsoff8fffed82011-01-04 10:42:35 +0200630 { "at26df321", INFO(0x1f4700, 0, 64 * 1024, 64, SECT_4K) },
David Brownellfa0a8c72007-06-24 15:12:35 -0700631
Chunhe Lana5b2d762012-06-19 10:55:08 +0800632 { "at45db081d", INFO(0x1f2500, 0, 64 * 1024, 16, SECT_4K) },
633
Gabor Juhos37a23c202011-01-25 11:20:26 +0100634 /* EON -- en25xxx */
635 { "en25f32", INFO(0x1c3116, 0, 64 * 1024, 64, SECT_4K) },
Gabor Juhos60845e72010-08-04 21:14:25 +0200636 { "en25p32", INFO(0x1c2016, 0, 64 * 1024, 64, 0) },
Shaohui Xie86a98932011-09-30 15:08:38 +0800637 { "en25q32b", INFO(0x1c3016, 0, 64 * 1024, 64, 0) },
Gabor Juhos60845e72010-08-04 21:14:25 +0200638 { "en25p64", INFO(0x1c2017, 0, 64 * 1024, 128, 0) },
Gabor Juhos58d864e2012-08-26 10:37:31 +0200639 { "en25q64", INFO(0x1c3017, 0, 64 * 1024, 128, SECT_4K) },
Gabor Juhos60845e72010-08-04 21:14:25 +0200640
Marek Vasut5ca11ca2012-05-01 04:04:00 +0200641 /* Everspin */
642 { "mr25h256", CAT25_INFO( 32 * 1024, 1, 256, 2) },
643
Gabor Juhosf80e5212010-08-05 16:58:36 +0200644 /* Intel/Numonyx -- xxxs33b */
645 { "160s33b", INFO(0x898911, 0, 64 * 1024, 32, 0) },
646 { "320s33b", INFO(0x898912, 0, 64 * 1024, 64, 0) },
647 { "640s33b", INFO(0x898913, 0, 64 * 1024, 128, 0) },
Alexandre Pereira da Silva95c1b0c2012-06-12 16:55:15 -0300648 { "n25q064", INFO(0x20ba17, 0, 64 * 1024, 128, 0) },
Gabor Juhosf80e5212010-08-05 16:58:36 +0200649
Lennert Buytenhekab1ff212009-05-20 13:07:11 +0200650 /* Macronix */
John Crispinbb08bc12012-04-30 19:30:45 +0200651 { "mx25l2005a", INFO(0xc22012, 0, 64 * 1024, 4, SECT_4K) },
Simon Guinotdf0094d2009-12-05 15:28:00 +0100652 { "mx25l4005a", INFO(0xc22013, 0, 64 * 1024, 8, SECT_4K) },
Martin Michlmayr6175f4a2010-06-07 19:31:01 +0100653 { "mx25l8005", INFO(0xc22014, 0, 64 * 1024, 16, 0) },
Gabor Juhos9c76b4e2011-03-25 08:48:52 +0100654 { "mx25l1606e", INFO(0xc22015, 0, 64 * 1024, 32, SECT_4K) },
Anton Vorontsovb34bc032009-10-12 20:24:35 +0400655 { "mx25l3205d", INFO(0xc22016, 0, 64 * 1024, 64, 0) },
656 { "mx25l6405d", INFO(0xc22017, 0, 64 * 1024, 128, 0) },
657 { "mx25l12805d", INFO(0xc22018, 0, 64 * 1024, 256, 0) },
658 { "mx25l12855e", INFO(0xc22618, 0, 64 * 1024, 256, 0) },
Kevin Cernekee4b7f7422010-10-30 21:11:03 -0700659 { "mx25l25635e", INFO(0xc22019, 0, 64 * 1024, 512, 0) },
Kevin Cernekeeac622f52010-10-30 21:11:04 -0700660 { "mx25l25655e", INFO(0xc22619, 0, 64 * 1024, 512, 0) },
Lennert Buytenhekab1ff212009-05-20 13:07:11 +0200661
Vivien Didelot8da28682012-08-14 15:24:07 -0400662 /* Micron */
Jan Luebbe31058752012-08-24 18:23:50 +0200663 { "n25q128", INFO(0x20ba18, 0, 64 * 1024, 256, 0) },
Vivien Didelot8da28682012-08-14 15:24:07 -0400664 { "n25q256a", INFO(0x20ba19, 0, 64 * 1024, 512, SECT_4K) },
665
David Brownellfa0a8c72007-06-24 15:12:35 -0700666 /* Spansion -- single (large) sector size only, at least
667 * for the chips listed here (without boot sectors).
668 */
Marek Vasutb277f772012-09-04 05:31:36 +0200669 { "s25sl032p", INFO(0x010215, 0x4d00, 64 * 1024, 64, 0) },
670 { "s25sl064p", INFO(0x010216, 0x4d00, 64 * 1024, 128, 0) },
Kevin Cernekeebaa9ae32011-05-08 10:48:01 -0700671 { "s25fl256s0", INFO(0x010219, 0x4d00, 256 * 1024, 128, 0) },
672 { "s25fl256s1", INFO(0x010219, 0x4d01, 64 * 1024, 512, 0) },
Kevin Cernekee3d2d2b62011-05-08 10:48:02 -0700673 { "s25fl512s", INFO(0x010220, 0x4d00, 256 * 1024, 256, 0) },
674 { "s70fl01gs", INFO(0x010221, 0x4d00, 256 * 1024, 256, 0) },
Anton Vorontsovb34bc032009-10-12 20:24:35 +0400675 { "s25sl12800", INFO(0x012018, 0x0300, 256 * 1024, 64, 0) },
676 { "s25sl12801", INFO(0x012018, 0x0301, 64 * 1024, 256, 0) },
677 { "s25fl129p0", INFO(0x012018, 0x4d00, 256 * 1024, 64, 0) },
678 { "s25fl129p1", INFO(0x012018, 0x4d01, 64 * 1024, 256, 0) },
Marek Vasut8bb8b852012-07-06 08:10:26 +0200679 { "s25sl004a", INFO(0x010212, 0, 64 * 1024, 8, 0) },
680 { "s25sl008a", INFO(0x010213, 0, 64 * 1024, 16, 0) },
681 { "s25sl016a", INFO(0x010214, 0, 64 * 1024, 32, 0) },
682 { "s25sl032a", INFO(0x010215, 0, 64 * 1024, 64, 0) },
683 { "s25sl064a", INFO(0x010216, 0, 64 * 1024, 128, 0) },
Gernot Hoylerf2df1ae2010-09-02 17:27:20 +0200684 { "s25fl016k", INFO(0xef4015, 0, 64 * 1024, 32, SECT_4K) },
685 { "s25fl064k", INFO(0xef4017, 0, 64 * 1024, 128, SECT_4K) },
David Brownellfa0a8c72007-06-24 15:12:35 -0700686
687 /* SST -- large erase sizes are "overlays", "sectors" are 4K */
Anton Vorontsovb34bc032009-10-12 20:24:35 +0400688 { "sst25vf040b", INFO(0xbf258d, 0, 64 * 1024, 8, SECT_4K) },
689 { "sst25vf080b", INFO(0xbf258e, 0, 64 * 1024, 16, SECT_4K) },
690 { "sst25vf016b", INFO(0xbf2541, 0, 64 * 1024, 32, SECT_4K) },
691 { "sst25vf032b", INFO(0xbf254a, 0, 64 * 1024, 64, SECT_4K) },
692 { "sst25wf512", INFO(0xbf2501, 0, 64 * 1024, 1, SECT_4K) },
693 { "sst25wf010", INFO(0xbf2502, 0, 64 * 1024, 2, SECT_4K) },
694 { "sst25wf020", INFO(0xbf2503, 0, 64 * 1024, 4, SECT_4K) },
695 { "sst25wf040", INFO(0xbf2504, 0, 64 * 1024, 8, SECT_4K) },
David Brownellfa0a8c72007-06-24 15:12:35 -0700696
697 /* ST Microelectronics -- newer production may have feature updates */
Anton Vorontsovb34bc032009-10-12 20:24:35 +0400698 { "m25p05", INFO(0x202010, 0, 32 * 1024, 2, 0) },
699 { "m25p10", INFO(0x202011, 0, 32 * 1024, 4, 0) },
700 { "m25p20", INFO(0x202012, 0, 64 * 1024, 4, 0) },
701 { "m25p40", INFO(0x202013, 0, 64 * 1024, 8, 0) },
702 { "m25p80", INFO(0x202014, 0, 64 * 1024, 16, 0) },
703 { "m25p16", INFO(0x202015, 0, 64 * 1024, 32, 0) },
704 { "m25p32", INFO(0x202016, 0, 64 * 1024, 64, 0) },
705 { "m25p64", INFO(0x202017, 0, 64 * 1024, 128, 0) },
706 { "m25p128", INFO(0x202018, 0, 256 * 1024, 64, 0) },
Knut Wohlrab48003992012-07-17 15:45:53 +0200707 { "n25q032", INFO(0x20ba16, 0, 64 * 1024, 64, 0) },
David Brownellfa0a8c72007-06-24 15:12:35 -0700708
Anton Vorontsovf7b00092010-06-22 20:57:34 +0400709 { "m25p05-nonjedec", INFO(0, 0, 32 * 1024, 2, 0) },
710 { "m25p10-nonjedec", INFO(0, 0, 32 * 1024, 4, 0) },
711 { "m25p20-nonjedec", INFO(0, 0, 64 * 1024, 4, 0) },
712 { "m25p40-nonjedec", INFO(0, 0, 64 * 1024, 8, 0) },
713 { "m25p80-nonjedec", INFO(0, 0, 64 * 1024, 16, 0) },
714 { "m25p16-nonjedec", INFO(0, 0, 64 * 1024, 32, 0) },
715 { "m25p32-nonjedec", INFO(0, 0, 64 * 1024, 64, 0) },
716 { "m25p64-nonjedec", INFO(0, 0, 64 * 1024, 128, 0) },
717 { "m25p128-nonjedec", INFO(0, 0, 256 * 1024, 64, 0) },
718
Anton Vorontsovb34bc032009-10-12 20:24:35 +0400719 { "m45pe10", INFO(0x204011, 0, 64 * 1024, 2, 0) },
720 { "m45pe80", INFO(0x204014, 0, 64 * 1024, 16, 0) },
721 { "m45pe16", INFO(0x204015, 0, 64 * 1024, 32, 0) },
David Brownellfa0a8c72007-06-24 15:12:35 -0700722
Alexandre Pereira da Silva943b35a2012-06-12 16:42:40 -0300723 { "m25pe20", INFO(0x208012, 0, 64 * 1024, 4, 0) },
Anton Vorontsovb34bc032009-10-12 20:24:35 +0400724 { "m25pe80", INFO(0x208014, 0, 64 * 1024, 16, 0) },
725 { "m25pe16", INFO(0x208015, 0, 64 * 1024, 32, SECT_4K) },
David Brownellfa0a8c72007-06-24 15:12:35 -0700726
Kevin Cernekee16004f32011-05-08 10:47:59 -0700727 { "m25px32", INFO(0x207116, 0, 64 * 1024, 64, SECT_4K) },
728 { "m25px32-s0", INFO(0x207316, 0, 64 * 1024, 64, SECT_4K) },
729 { "m25px32-s1", INFO(0x206316, 0, 64 * 1024, 64, SECT_4K) },
730 { "m25px64", INFO(0x207117, 0, 64 * 1024, 128, 0) },
Yoshihiro Shimodad8f90b22011-02-09 17:00:33 +0900731
David Woodhouse02d087d2007-06-28 22:38:38 +0100732 /* Winbond -- w25x "blocks" are 64K, "sectors" are 4KiB */
Anton Vorontsovb34bc032009-10-12 20:24:35 +0400733 { "w25x10", INFO(0xef3011, 0, 64 * 1024, 2, SECT_4K) },
734 { "w25x20", INFO(0xef3012, 0, 64 * 1024, 4, SECT_4K) },
735 { "w25x40", INFO(0xef3013, 0, 64 * 1024, 8, SECT_4K) },
736 { "w25x80", INFO(0xef3014, 0, 64 * 1024, 16, SECT_4K) },
737 { "w25x16", INFO(0xef3015, 0, 64 * 1024, 32, SECT_4K) },
738 { "w25x32", INFO(0xef3016, 0, 64 * 1024, 64, SECT_4K) },
Gabor Juhos0af18d22010-08-04 21:14:27 +0200739 { "w25q32", INFO(0xef4016, 0, 64 * 1024, 64, SECT_4K) },
ing. Federico Fuga9d6367f2012-06-05 17:37:01 +0200740 { "w25q32dw", INFO(0xef6016, 0, 64 * 1024, 64, SECT_4K) },
Anton Vorontsovb34bc032009-10-12 20:24:35 +0400741 { "w25x64", INFO(0xef3017, 0, 64 * 1024, 128, SECT_4K) },
Thierry Redingd2ac4672010-08-30 13:00:48 +0200742 { "w25q64", INFO(0xef4017, 0, 64 * 1024, 128, SECT_4K) },
Thomas Abraham4fba37a2012-05-09 04:04:54 +0530743 { "w25q80", INFO(0xef5014, 0, 64 * 1024, 16, SECT_4K) },
Mike Lavender2f9f7622006-01-08 13:34:27 -0800744
Anton Vorontsov837479d2009-10-12 20:24:40 +0400745 /* Catalyst / On Semiconductor -- non-JEDEC */
746 { "cat25c11", CAT25_INFO( 16, 8, 16, 1) },
747 { "cat25c03", CAT25_INFO( 32, 8, 16, 2) },
748 { "cat25c09", CAT25_INFO( 128, 8, 32, 2) },
749 { "cat25c17", CAT25_INFO( 256, 8, 32, 2) },
750 { "cat25128", CAT25_INFO(2048, 8, 64, 2) },
Anton Vorontsovb34bc032009-10-12 20:24:35 +0400751 { },
Mike Lavender2f9f7622006-01-08 13:34:27 -0800752};
Anton Vorontsovb34bc032009-10-12 20:24:35 +0400753MODULE_DEVICE_TABLE(spi, m25p_ids);
Mike Lavender2f9f7622006-01-08 13:34:27 -0800754
Anton Vorontsovb34bc032009-10-12 20:24:35 +0400755static const struct spi_device_id *__devinit jedec_probe(struct spi_device *spi)
David Brownellfa0a8c72007-06-24 15:12:35 -0700756{
757 int tmp;
758 u8 code = OPCODE_RDID;
Chen Gongdaa84732008-09-16 14:14:12 +0800759 u8 id[5];
David Brownellfa0a8c72007-06-24 15:12:35 -0700760 u32 jedec;
Chen Gongd0e8c472008-08-11 16:59:15 +0800761 u16 ext_jedec;
David Brownellfa0a8c72007-06-24 15:12:35 -0700762 struct flash_info *info;
763
764 /* JEDEC also defines an optional "extended device information"
765 * string for after vendor-specific data, after the three bytes
766 * we use here. Supporting some chips might require using it.
767 */
Chen Gongdaa84732008-09-16 14:14:12 +0800768 tmp = spi_write_then_read(spi, &code, 1, id, 5);
David Brownellfa0a8c72007-06-24 15:12:35 -0700769 if (tmp < 0) {
Brian Norris289c0522011-07-19 10:06:09 -0700770 pr_debug("%s: error %d reading JEDEC ID\n",
Brian Norris0a32a102011-07-19 10:06:10 -0700771 dev_name(&spi->dev), tmp);
Anton Vorontsov9d2c4f32010-06-22 20:57:42 +0400772 return ERR_PTR(tmp);
David Brownellfa0a8c72007-06-24 15:12:35 -0700773 }
774 jedec = id[0];
775 jedec = jedec << 8;
776 jedec |= id[1];
777 jedec = jedec << 8;
778 jedec |= id[2];
779
Chen Gongd0e8c472008-08-11 16:59:15 +0800780 ext_jedec = id[3] << 8 | id[4];
781
Anton Vorontsovb34bc032009-10-12 20:24:35 +0400782 for (tmp = 0; tmp < ARRAY_SIZE(m25p_ids) - 1; tmp++) {
783 info = (void *)m25p_ids[tmp].driver_data;
Mike Frysingera3d3f732008-11-26 10:23:25 +0000784 if (info->jedec_id == jedec) {
Mike Frysinger9168ab82008-11-26 10:23:35 +0000785 if (info->ext_id != 0 && info->ext_id != ext_jedec)
Chen Gongd0e8c472008-08-11 16:59:15 +0800786 continue;
Anton Vorontsovb34bc032009-10-12 20:24:35 +0400787 return &m25p_ids[tmp];
Mike Frysingera3d3f732008-11-26 10:23:25 +0000788 }
David Brownellfa0a8c72007-06-24 15:12:35 -0700789 }
Kevin Cernekeef0dff9b2010-10-30 21:11:02 -0700790 dev_err(&spi->dev, "unrecognized JEDEC id %06x\n", jedec);
Anton Vorontsov9d2c4f32010-06-22 20:57:42 +0400791 return ERR_PTR(-ENODEV);
David Brownellfa0a8c72007-06-24 15:12:35 -0700792}
793
794
Mike Lavender2f9f7622006-01-08 13:34:27 -0800795/*
796 * board specific setup should have ensured the SPI clock used here
797 * matches what the READ command supports, at least until this driver
798 * understands FAST_READ (for clocks over 25 MHz).
799 */
800static int __devinit m25p_probe(struct spi_device *spi)
801{
Anton Vorontsov18c61822009-10-12 20:24:38 +0400802 const struct spi_device_id *id = spi_get_device_id(spi);
Mike Lavender2f9f7622006-01-08 13:34:27 -0800803 struct flash_platform_data *data;
804 struct m25p *flash;
805 struct flash_info *info;
806 unsigned i;
Dmitry Eremin-Solenikovea6a4722011-05-30 01:02:20 +0400807 struct mtd_part_parser_data ppdata;
Marek Vasut12ad2be2012-09-24 03:39:39 +0200808 struct device_node __maybe_unused *np = spi->dev.of_node;
Mike Lavender2f9f7622006-01-08 13:34:27 -0800809
Shaohui Xie5f949132011-10-14 15:49:00 +0800810#ifdef CONFIG_MTD_OF_PARTS
Marek Vasut12ad2be2012-09-24 03:39:39 +0200811 if (!of_device_is_available(np))
Shaohui Xie5f949132011-10-14 15:49:00 +0800812 return -ENODEV;
813#endif
814
Mike Lavender2f9f7622006-01-08 13:34:27 -0800815 /* Platform data helps sort out which chip type we have, as
David Brownellfa0a8c72007-06-24 15:12:35 -0700816 * well as how this board partitions it. If we don't have
817 * a chip ID, try the JEDEC id commands; they'll work for most
818 * newer chips, even if we don't recognize the particular chip.
Mike Lavender2f9f7622006-01-08 13:34:27 -0800819 */
820 data = spi->dev.platform_data;
David Brownellfa0a8c72007-06-24 15:12:35 -0700821 if (data && data->type) {
Anton Vorontsov18c61822009-10-12 20:24:38 +0400822 const struct spi_device_id *plat_id;
823
Anton Vorontsovb34bc032009-10-12 20:24:35 +0400824 for (i = 0; i < ARRAY_SIZE(m25p_ids) - 1; i++) {
Anton Vorontsov18c61822009-10-12 20:24:38 +0400825 plat_id = &m25p_ids[i];
826 if (strcmp(data->type, plat_id->name))
Anton Vorontsovb34bc032009-10-12 20:24:35 +0400827 continue;
828 break;
David Brownellfa0a8c72007-06-24 15:12:35 -0700829 }
Mike Lavender2f9f7622006-01-08 13:34:27 -0800830
Dan Carpenterf78ec6b2010-08-12 09:58:27 +0200831 if (i < ARRAY_SIZE(m25p_ids) - 1)
Anton Vorontsov18c61822009-10-12 20:24:38 +0400832 id = plat_id;
833 else
834 dev_warn(&spi->dev, "unrecognized id %s\n", data->type);
Anton Vorontsovb34bc032009-10-12 20:24:35 +0400835 }
David Brownellfa0a8c72007-06-24 15:12:35 -0700836
Anton Vorontsov18c61822009-10-12 20:24:38 +0400837 info = (void *)id->driver_data;
David Brownellfa0a8c72007-06-24 15:12:35 -0700838
Anton Vorontsov18c61822009-10-12 20:24:38 +0400839 if (info->jedec_id) {
840 const struct spi_device_id *jid;
841
842 jid = jedec_probe(spi);
Anton Vorontsov9d2c4f32010-06-22 20:57:42 +0400843 if (IS_ERR(jid)) {
844 return PTR_ERR(jid);
Anton Vorontsov18c61822009-10-12 20:24:38 +0400845 } else if (jid != id) {
846 /*
847 * JEDEC knows better, so overwrite platform ID. We
848 * can't trust partitions any longer, but we'll let
849 * mtd apply them anyway, since some partitions may be
850 * marked read-only, and we don't want to lose that
851 * information, even if it's not 100% accurate.
852 */
853 dev_warn(&spi->dev, "found %s, expected %s\n",
854 jid->name, id->name);
855 id = jid;
856 info = (void *)jid->driver_data;
David Brownellfa0a8c72007-06-24 15:12:35 -0700857 }
Anton Vorontsov18c61822009-10-12 20:24:38 +0400858 }
Mike Lavender2f9f7622006-01-08 13:34:27 -0800859
Christoph Lametere94b1762006-12-06 20:33:17 -0800860 flash = kzalloc(sizeof *flash, GFP_KERNEL);
Mike Lavender2f9f7622006-01-08 13:34:27 -0800861 if (!flash)
862 return -ENOMEM;
Marek Vasut12ad2be2012-09-24 03:39:39 +0200863 flash->command = kmalloc(MAX_CMD_SIZE + (flash->fast_read ? 1 : 0),
864 GFP_KERNEL);
Johannes Stezenbach61c35062009-10-28 14:21:37 +0100865 if (!flash->command) {
866 kfree(flash);
867 return -ENOMEM;
868 }
Mike Lavender2f9f7622006-01-08 13:34:27 -0800869
870 flash->spi = spi;
David Brownell7d5230e2007-06-24 15:09:13 -0700871 mutex_init(&flash->lock);
Mike Lavender2f9f7622006-01-08 13:34:27 -0800872 dev_set_drvdata(&spi->dev, flash);
873
Michael Hennerich72289822008-07-03 23:54:42 -0700874 /*
Gabor Juhosf80e5212010-08-05 16:58:36 +0200875 * Atmel, SST and Intel/Numonyx serial flash tend to power
Graf Yangea60658a2009-09-24 15:46:22 -0400876 * up with the software protection bits set
Michael Hennerich72289822008-07-03 23:54:42 -0700877 */
878
Kevin Cernekeeaa084652011-05-08 10:48:00 -0700879 if (JEDEC_MFR(info->jedec_id) == CFI_MFR_ATMEL ||
880 JEDEC_MFR(info->jedec_id) == CFI_MFR_INTEL ||
881 JEDEC_MFR(info->jedec_id) == CFI_MFR_SST) {
Michael Hennerich72289822008-07-03 23:54:42 -0700882 write_enable(flash);
883 write_sr(flash, 0);
884 }
885
David Brownellfa0a8c72007-06-24 15:12:35 -0700886 if (data && data->name)
Mike Lavender2f9f7622006-01-08 13:34:27 -0800887 flash->mtd.name = data->name;
888 else
Kay Sievers160bbab2008-12-23 10:00:14 +0000889 flash->mtd.name = dev_name(&spi->dev);
Mike Lavender2f9f7622006-01-08 13:34:27 -0800890
891 flash->mtd.type = MTD_NORFLASH;
Artem B. Bityutskiy783ed812006-06-14 19:53:44 +0400892 flash->mtd.writesize = 1;
Mike Lavender2f9f7622006-01-08 13:34:27 -0800893 flash->mtd.flags = MTD_CAP_NORFLASH;
894 flash->mtd.size = info->sector_size * info->n_sectors;
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200895 flash->mtd._erase = m25p80_erase;
896 flash->mtd._read = m25p80_read;
Graf Yang49aac4a2009-06-15 08:23:41 +0000897
898 /* sst flash chips use AAI word program */
Kevin Cernekeeaa084652011-05-08 10:48:00 -0700899 if (JEDEC_MFR(info->jedec_id) == CFI_MFR_SST)
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200900 flash->mtd._write = sst_write;
Graf Yang49aac4a2009-06-15 08:23:41 +0000901 else
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200902 flash->mtd._write = m25p80_write;
Mike Lavender2f9f7622006-01-08 13:34:27 -0800903
David Brownellfa0a8c72007-06-24 15:12:35 -0700904 /* prefer "small sector" erase if possible */
905 if (info->flags & SECT_4K) {
906 flash->erase_opcode = OPCODE_BE_4K;
907 flash->mtd.erasesize = 4096;
908 } else {
909 flash->erase_opcode = OPCODE_SE;
910 flash->mtd.erasesize = info->sector_size;
911 }
912
Anton Vorontsov837479d2009-10-12 20:24:40 +0400913 if (info->flags & M25P_NO_ERASE)
914 flash->mtd.flags |= MTD_NO_ERASE;
David Brownell87f39f02009-03-26 00:42:50 -0700915
Dmitry Eremin-Solenikovea6a4722011-05-30 01:02:20 +0400916 ppdata.of_node = spi->dev.of_node;
Artem Bityutskiyd85316a2008-12-18 14:10:05 +0200917 flash->mtd.dev.parent = &spi->dev;
Anton Vorontsov837479d2009-10-12 20:24:40 +0400918 flash->page_size = info->page_size;
Brian Norrisb54f47c2012-01-31 00:06:03 -0800919 flash->mtd.writebufsize = flash->page_size;
Kevin Cernekee4b7f7422010-10-30 21:11:03 -0700920
Marek Vasut12ad2be2012-09-24 03:39:39 +0200921 flash->fast_read = false;
922#ifdef CONFIG_OF
923 if (np && of_property_read_bool(np, "m25p,fast-read"))
924 flash->fast_read = true;
925#endif
926
927#ifdef CONFIG_M25PXX_USE_FAST_READ
928 flash->fast_read = true;
929#endif
930
Kevin Cernekee4b7f7422010-10-30 21:11:03 -0700931 if (info->addr_width)
932 flash->addr_width = info->addr_width;
933 else {
934 /* enable 4-byte addressing if the device exceeds 16MiB */
935 if (flash->mtd.size > 0x1000000) {
936 flash->addr_width = 4;
Kevin Cernekeebaa9ae32011-05-08 10:48:01 -0700937 set_4byte(flash, info->jedec_id, 1);
Kevin Cernekee4b7f7422010-10-30 21:11:03 -0700938 } else
939 flash->addr_width = 3;
940 }
Artem Bityutskiyd85316a2008-12-18 14:10:05 +0200941
Anton Vorontsovb34bc032009-10-12 20:24:35 +0400942 dev_info(&spi->dev, "%s (%lld Kbytes)\n", id->name,
Mike Lavender2f9f7622006-01-08 13:34:27 -0800943 (long long)flash->mtd.size >> 10);
944
Brian Norris289c0522011-07-19 10:06:09 -0700945 pr_debug("mtd .name = %s, .size = 0x%llx (%lldMiB) "
David Woodhouse02d087d2007-06-28 22:38:38 +0100946 ".erasesize = 0x%.8x (%uKiB) .numeraseregions = %d\n",
Mike Lavender2f9f7622006-01-08 13:34:27 -0800947 flash->mtd.name,
Artem Bityutskiyd85316a2008-12-18 14:10:05 +0200948 (long long)flash->mtd.size, (long long)(flash->mtd.size >> 20),
Mike Lavender2f9f7622006-01-08 13:34:27 -0800949 flash->mtd.erasesize, flash->mtd.erasesize / 1024,
950 flash->mtd.numeraseregions);
951
952 if (flash->mtd.numeraseregions)
953 for (i = 0; i < flash->mtd.numeraseregions; i++)
Brian Norris289c0522011-07-19 10:06:09 -0700954 pr_debug("mtd.eraseregions[%d] = { .offset = 0x%llx, "
David Woodhouse02d087d2007-06-28 22:38:38 +0100955 ".erasesize = 0x%.8x (%uKiB), "
Mike Lavender2f9f7622006-01-08 13:34:27 -0800956 ".numblocks = %d }\n",
Artem Bityutskiyd85316a2008-12-18 14:10:05 +0200957 i, (long long)flash->mtd.eraseregions[i].offset,
Mike Lavender2f9f7622006-01-08 13:34:27 -0800958 flash->mtd.eraseregions[i].erasesize,
959 flash->mtd.eraseregions[i].erasesize / 1024,
960 flash->mtd.eraseregions[i].numblocks);
961
962
963 /* partitions should match sector boundaries; and it may be good to
964 * use readonly partitions for writeprotected sectors (BP2..BP0).
965 */
Dmitry Eremin-Solenikov871770b2011-06-02 17:59:16 +0400966 return mtd_device_parse_register(&flash->mtd, NULL, &ppdata,
967 data ? data->parts : NULL,
968 data ? data->nr_parts : 0);
Mike Lavender2f9f7622006-01-08 13:34:27 -0800969}
970
971
972static int __devexit m25p_remove(struct spi_device *spi)
973{
974 struct m25p *flash = dev_get_drvdata(&spi->dev);
975 int status;
976
977 /* Clean up MTD stuff. */
Jamie Ilesba52f3a2011-05-23 10:22:57 +0100978 status = mtd_device_unregister(&flash->mtd);
Johannes Stezenbach61c35062009-10-28 14:21:37 +0100979 if (status == 0) {
980 kfree(flash->command);
Mike Lavender2f9f7622006-01-08 13:34:27 -0800981 kfree(flash);
Johannes Stezenbach61c35062009-10-28 14:21:37 +0100982 }
Mike Lavender2f9f7622006-01-08 13:34:27 -0800983 return 0;
984}
985
986
987static struct spi_driver m25p80_driver = {
988 .driver = {
989 .name = "m25p80",
Mike Lavender2f9f7622006-01-08 13:34:27 -0800990 .owner = THIS_MODULE,
991 },
Anton Vorontsovb34bc032009-10-12 20:24:35 +0400992 .id_table = m25p_ids,
Mike Lavender2f9f7622006-01-08 13:34:27 -0800993 .probe = m25p_probe,
994 .remove = __devexit_p(m25p_remove),
David Brownellfa0a8c72007-06-24 15:12:35 -0700995
996 /* REVISIT: many of these chips have deep power-down modes, which
997 * should clearly be entered on suspend() to minimize power use.
998 * And also when they're otherwise idle...
999 */
Mike Lavender2f9f7622006-01-08 13:34:27 -08001000};
1001
Axel Linc9d1b752012-01-27 15:45:20 +08001002module_spi_driver(m25p80_driver);
Mike Lavender2f9f7622006-01-08 13:34:27 -08001003
1004MODULE_LICENSE("GPL");
1005MODULE_AUTHOR("Mike Lavender");
1006MODULE_DESCRIPTION("MTD SPI driver for ST M25Pxx flash chips");