4 * Driver for SST25L SPI Flash chips
6 * Copyright © 2009 Bluewater Systems Ltd
7 * Author: Andre Renaud <andre@bluewatersys.com>
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/module.h>
19 #include <linux/device.h>
20 #include <linux/mutex.h>
21 #include <linux/interrupt.h>
22 #include <linux/slab.h>
23 #include <linux/sched.h>
25 #include <linux/mtd/mtd.h>
26 #include <linux/mtd/partitions.h>
28 #include <linux/spi/spi.h>
29 #include <linux/spi/flash.h>
31 /* Erases can take up to 3 seconds! */
32 #define MAX_READY_WAIT_JIFFIES msecs_to_jiffies(3000)
34 #define SST25L_CMD_WRSR 0x01 /* Write status register */
35 #define SST25L_CMD_WRDI 0x04 /* Write disable */
36 #define SST25L_CMD_RDSR 0x05 /* Read status register */
37 #define SST25L_CMD_WREN 0x06 /* Write enable */
38 #define SST25L_CMD_READ 0x03 /* High speed read */
40 #define SST25L_CMD_EWSR 0x50 /* Enable write status register */
41 #define SST25L_CMD_SECTOR_ERASE 0x20 /* Erase sector */
42 #define SST25L_CMD_READ_ID 0x90 /* Read device ID */
43 #define SST25L_CMD_AAI_PROGRAM 0xaf /* Auto address increment */
45 #define SST25L_STATUS_BUSY (1 << 0) /* Chip is busy */
46 #define SST25L_STATUS_WREN (1 << 1) /* Write enabled */
47 #define SST25L_STATUS_BP0 (1 << 2) /* Block protection 0 */
48 #define SST25L_STATUS_BP1 (1 << 3) /* Block protection 1 */
51 struct spi_device
*spi
;
64 #define to_sst25l_flash(x) container_of(x, struct sst25l_flash, mtd)
66 static struct flash_info sst25l_flash_info
[] = {
67 {"sst25lf020a", 0xbf43, 256, 1024, 4096},
68 {"sst25lf040a", 0xbf44, 256, 2048, 4096},
71 static int sst25l_status(struct sst25l_flash
*flash
, int *status
)
74 struct spi_transfer t
;
75 unsigned char cmd_resp
[2];
79 memset(&t
, 0, sizeof(struct spi_transfer
));
81 cmd_resp
[0] = SST25L_CMD_RDSR
;
85 t
.len
= sizeof(cmd_resp
);
86 spi_message_add_tail(&t
, &m
);
87 err
= spi_sync(flash
->spi
, &m
);
91 *status
= cmd_resp
[1];
95 static int sst25l_write_enable(struct sst25l_flash
*flash
, int enable
)
97 unsigned char command
[2];
100 command
[0] = enable
? SST25L_CMD_WREN
: SST25L_CMD_WRDI
;
101 err
= spi_write(flash
->spi
, command
, 1);
105 command
[0] = SST25L_CMD_EWSR
;
106 err
= spi_write(flash
->spi
, command
, 1);
110 command
[0] = SST25L_CMD_WRSR
;
111 command
[1] = enable
? 0 : SST25L_STATUS_BP0
| SST25L_STATUS_BP1
;
112 err
= spi_write(flash
->spi
, command
, 2);
117 err
= sst25l_status(flash
, &status
);
120 if (!(status
& SST25L_STATUS_WREN
))
127 static int sst25l_wait_till_ready(struct sst25l_flash
*flash
)
129 unsigned long deadline
;
132 deadline
= jiffies
+ MAX_READY_WAIT_JIFFIES
;
134 err
= sst25l_status(flash
, &status
);
137 if (!(status
& SST25L_STATUS_BUSY
))
141 } while (!time_after_eq(jiffies
, deadline
));
146 static int sst25l_erase_sector(struct sst25l_flash
*flash
, uint32_t offset
)
148 unsigned char command
[4];
151 err
= sst25l_write_enable(flash
, 1);
155 command
[0] = SST25L_CMD_SECTOR_ERASE
;
156 command
[1] = offset
>> 16;
157 command
[2] = offset
>> 8;
159 err
= spi_write(flash
->spi
, command
, 4);
163 err
= sst25l_wait_till_ready(flash
);
167 return sst25l_write_enable(flash
, 0);
170 static int sst25l_erase(struct mtd_info
*mtd
, struct erase_info
*instr
)
172 struct sst25l_flash
*flash
= to_sst25l_flash(mtd
);
177 if ((uint32_t)instr
->len
% mtd
->erasesize
)
180 if ((uint32_t)instr
->addr
% mtd
->erasesize
)
184 end
= addr
+ instr
->len
;
186 mutex_lock(&flash
->lock
);
188 err
= sst25l_wait_till_ready(flash
);
190 mutex_unlock(&flash
->lock
);
195 err
= sst25l_erase_sector(flash
, addr
);
197 mutex_unlock(&flash
->lock
);
198 dev_err(&flash
->spi
->dev
, "Erase failed\n");
202 addr
+= mtd
->erasesize
;
205 mutex_unlock(&flash
->lock
);
210 static int sst25l_read(struct mtd_info
*mtd
, loff_t from
, size_t len
,
211 size_t *retlen
, unsigned char *buf
)
213 struct sst25l_flash
*flash
= to_sst25l_flash(mtd
);
214 struct spi_transfer transfer
[2];
215 struct spi_message message
;
216 unsigned char command
[4];
219 spi_message_init(&message
);
220 memset(&transfer
, 0, sizeof(transfer
));
222 command
[0] = SST25L_CMD_READ
;
223 command
[1] = from
>> 16;
224 command
[2] = from
>> 8;
227 transfer
[0].tx_buf
= command
;
228 transfer
[0].len
= sizeof(command
);
229 spi_message_add_tail(&transfer
[0], &message
);
231 transfer
[1].rx_buf
= buf
;
232 transfer
[1].len
= len
;
233 spi_message_add_tail(&transfer
[1], &message
);
235 mutex_lock(&flash
->lock
);
237 /* Wait for previous write/erase to complete */
238 ret
= sst25l_wait_till_ready(flash
);
240 mutex_unlock(&flash
->lock
);
244 spi_sync(flash
->spi
, &message
);
246 if (retlen
&& message
.actual_length
> sizeof(command
))
247 *retlen
+= message
.actual_length
- sizeof(command
);
249 mutex_unlock(&flash
->lock
);
253 static int sst25l_write(struct mtd_info
*mtd
, loff_t to
, size_t len
,
254 size_t *retlen
, const unsigned char *buf
)
256 struct sst25l_flash
*flash
= to_sst25l_flash(mtd
);
257 int i
, j
, ret
, bytes
, copied
= 0;
258 unsigned char command
[5];
260 if ((uint32_t)to
% mtd
->writesize
)
263 mutex_lock(&flash
->lock
);
265 ret
= sst25l_write_enable(flash
, 1);
269 for (i
= 0; i
< len
; i
+= mtd
->writesize
) {
270 ret
= sst25l_wait_till_ready(flash
);
274 /* Write the first byte of the page */
275 command
[0] = SST25L_CMD_AAI_PROGRAM
;
276 command
[1] = (to
+ i
) >> 16;
277 command
[2] = (to
+ i
) >> 8;
278 command
[3] = (to
+ i
);
280 ret
= spi_write(flash
->spi
, command
, 5);
286 * Write the remaining bytes using auto address
289 bytes
= min_t(uint32_t, mtd
->writesize
, len
- i
);
290 for (j
= 1; j
< bytes
; j
++, copied
++) {
291 ret
= sst25l_wait_till_ready(flash
);
295 command
[1] = buf
[i
+ j
];
296 ret
= spi_write(flash
->spi
, command
, 2);
303 ret
= sst25l_write_enable(flash
, 0);
308 mutex_unlock(&flash
->lock
);
312 static struct flash_info
*sst25l_match_device(struct spi_device
*spi
)
314 struct flash_info
*flash_info
= NULL
;
315 struct spi_message m
;
316 struct spi_transfer t
;
317 unsigned char cmd_resp
[6];
321 spi_message_init(&m
);
322 memset(&t
, 0, sizeof(struct spi_transfer
));
324 cmd_resp
[0] = SST25L_CMD_READ_ID
;
332 t
.len
= sizeof(cmd_resp
);
333 spi_message_add_tail(&t
, &m
);
334 err
= spi_sync(spi
, &m
);
336 dev_err(&spi
->dev
, "error reading device id\n");
340 id
= (cmd_resp
[4] << 8) | cmd_resp
[5];
342 for (i
= 0; i
< ARRAY_SIZE(sst25l_flash_info
); i
++)
343 if (sst25l_flash_info
[i
].device_id
== id
)
344 flash_info
= &sst25l_flash_info
[i
];
347 dev_err(&spi
->dev
, "unknown id %.4x\n", id
);
352 static int sst25l_probe(struct spi_device
*spi
)
354 struct flash_info
*flash_info
;
355 struct sst25l_flash
*flash
;
356 struct flash_platform_data
*data
;
359 flash_info
= sst25l_match_device(spi
);
363 flash
= devm_kzalloc(&spi
->dev
, sizeof(*flash
), GFP_KERNEL
);
368 mutex_init(&flash
->lock
);
369 spi_set_drvdata(spi
, flash
);
371 data
= dev_get_platdata(&spi
->dev
);
372 if (data
&& data
->name
)
373 flash
->mtd
.name
= data
->name
;
375 flash
->mtd
.dev
.parent
= &spi
->dev
;
376 flash
->mtd
.type
= MTD_NORFLASH
;
377 flash
->mtd
.flags
= MTD_CAP_NORFLASH
;
378 flash
->mtd
.erasesize
= flash_info
->erase_size
;
379 flash
->mtd
.writesize
= flash_info
->page_size
;
380 flash
->mtd
.writebufsize
= flash_info
->page_size
;
381 flash
->mtd
.size
= flash_info
->page_size
* flash_info
->nr_pages
;
382 flash
->mtd
._erase
= sst25l_erase
;
383 flash
->mtd
._read
= sst25l_read
;
384 flash
->mtd
._write
= sst25l_write
;
386 dev_info(&spi
->dev
, "%s (%lld KiB)\n", flash_info
->name
,
387 (long long)flash
->mtd
.size
>> 10);
389 pr_debug("mtd .name = %s, .size = 0x%llx (%lldMiB) "
390 ".erasesize = 0x%.8x (%uKiB) .numeraseregions = %d\n",
392 (long long)flash
->mtd
.size
, (long long)(flash
->mtd
.size
>> 20),
393 flash
->mtd
.erasesize
, flash
->mtd
.erasesize
/ 1024,
394 flash
->mtd
.numeraseregions
);
397 ret
= mtd_device_register(&flash
->mtd
, data
? data
->parts
: NULL
,
398 data
? data
->nr_parts
: 0);
405 static int sst25l_remove(struct spi_device
*spi
)
407 struct sst25l_flash
*flash
= spi_get_drvdata(spi
);
409 return mtd_device_unregister(&flash
->mtd
);
412 static struct spi_driver sst25l_driver
= {
416 .probe
= sst25l_probe
,
417 .remove
= sst25l_remove
,
420 module_spi_driver(sst25l_driver
);
422 MODULE_DESCRIPTION("MTD SPI driver for SST25L Flash chips");
423 MODULE_AUTHOR("Andre Renaud <andre@bluewatersys.com>, "
425 MODULE_LICENSE("GPL");