2 * Atmel SPI DataFlash support
4 * Copyright (C) 2008 Atmel Corporation
11 #include "spi_flash_internal.h"
13 /* AT45-specific commands */
14 #define CMD_AT45_READ_STATUS 0xd7
15 #define CMD_AT45_ERASE_PAGE 0x81
16 #define CMD_AT45_LOAD_PROG_BUF1 0x82
17 #define CMD_AT45_LOAD_BUF1 0x84
18 #define CMD_AT45_LOAD_PROG_BUF2 0x85
19 #define CMD_AT45_LOAD_BUF2 0x87
20 #define CMD_AT45_PROG_BUF1 0x88
21 #define CMD_AT45_PROG_BUF2 0x89
23 /* AT45 status register bits */
24 #define AT45_STATUS_P2_PAGE_SIZE (1 << 0)
25 #define AT45_STATUS_READY (1 << 7)
27 /* DataFlash family IDs, as obtained from the second idcode byte */
28 #define DF_FAMILY_AT26F 0
29 #define DF_FAMILY_AT45 1
30 #define DF_FAMILY_AT26DF 2 /* AT25DF and AT26DF */
32 struct atmel_spi_flash_params {
34 /* Log2 of page size in power-of-two mode */
42 /* spi_flash needs to be first so upper layers can free() it */
43 struct atmel_spi_flash {
44 struct spi_flash flash;
45 const struct atmel_spi_flash_params *params;
48 static inline struct atmel_spi_flash *
49 to_atmel_spi_flash(struct spi_flash *flash)
51 return container_of(flash, struct atmel_spi_flash, flash);
54 static const struct atmel_spi_flash_params atmel_spi_flash_table[] = {
59 .blocks_per_sector = 32,
65 static int at45_wait_ready(struct spi_flash *flash, unsigned long timeout)
67 struct spi_slave *spi = flash->spi;
68 unsigned long timebase;
70 u8 cmd = CMD_AT45_READ_STATUS;
73 timebase = get_timer(0);
75 ret = spi_xfer(spi, 8, &cmd, NULL, SPI_XFER_BEGIN);
80 ret = spi_xfer(spi, 8, NULL, &status, 0);
84 if (status & AT45_STATUS_READY)
86 } while (get_timer(timebase) < timeout);
89 spi_xfer(spi, 0, NULL, NULL, SPI_XFER_END);
91 if (status & AT45_STATUS_READY)
99 * Assemble the address part of a command for AT45 devices in
100 * non-power-of-two page size mode.
102 static void at45_build_address(struct atmel_spi_flash *asf, u8 *cmd, u32 offset)
104 unsigned long page_addr;
105 unsigned long byte_addr;
106 unsigned long page_size;
107 unsigned int page_shift;
110 * The "extra" space per page is the power-of-two page size
113 page_shift = asf->params->l2_page_size;
114 page_size = (1 << page_shift) + (1 << (page_shift - 5));
116 page_addr = offset / page_size;
117 byte_addr = offset % page_size;
119 cmd[0] = page_addr >> (16 - page_shift);
120 cmd[1] = page_addr << (page_shift - 8) | (byte_addr >> 8);
124 static int dataflash_read_fast_p2(struct spi_flash *flash,
125 u32 offset, size_t len, void *buf)
129 cmd[0] = CMD_READ_ARRAY_FAST;
130 cmd[1] = offset >> 16;
131 cmd[2] = offset >> 8;
135 return spi_flash_read_common(flash, cmd, sizeof(cmd), buf, len);
138 static int dataflash_read_fast_at45(struct spi_flash *flash,
139 u32 offset, size_t len, void *buf)
141 struct atmel_spi_flash *asf = to_atmel_spi_flash(flash);
144 cmd[0] = CMD_READ_ARRAY_FAST;
145 at45_build_address(asf, cmd + 1, offset);
148 return spi_flash_read_common(flash, cmd, sizeof(cmd), buf, len);
151 static int dataflash_write_at45(struct spi_flash *flash,
152 u32 offset, size_t len, const void *buf)
154 struct atmel_spi_flash *asf = to_atmel_spi_flash(flash);
155 unsigned long page_addr;
156 unsigned long byte_addr;
157 unsigned long page_size;
158 unsigned int page_shift;
164 page_shift = asf->params->l2_page_size;
165 page_size = (1 << page_shift) + (1 << (page_shift - 5));
167 page_addr = offset / page_size;
168 byte_addr = offset % page_size;
170 ret = spi_claim_bus(flash->spi);
172 debug("SF: Unable to claim SPI bus\n");
176 for (actual = 0; actual < len; actual += chunk_len) {
177 chunk_len = min(len - actual, page_size - byte_addr);
179 /* Use the same address bits for both commands */
180 cmd[0] = CMD_AT45_LOAD_BUF1;
181 cmd[1] = page_addr >> (16 - page_shift);
182 cmd[2] = page_addr << (page_shift - 8) | (byte_addr >> 8);
185 ret = spi_flash_cmd_write(flash->spi, cmd, 4,
186 buf + actual, chunk_len);
188 debug("SF: Loading AT45 buffer failed\n");
192 cmd[0] = CMD_AT45_PROG_BUF1;
193 ret = spi_flash_cmd_write(flash->spi, cmd, 4, NULL, 0);
195 debug("SF: AT45 page programming failed\n");
199 ret = at45_wait_ready(flash, SPI_FLASH_PROG_TIMEOUT);
201 debug("SF: AT45 page programming timed out\n");
209 debug("SF: AT45: Successfully programmed %zu bytes @ 0x%x\n",
214 spi_release_bus(flash->spi);
218 int dataflash_erase_at45(struct spi_flash *flash, u32 offset, size_t len)
220 struct atmel_spi_flash *asf = to_atmel_spi_flash(flash);
221 unsigned long page_addr;
222 unsigned long page_size;
223 unsigned int page_shift;
229 * TODO: This function currently uses page erase only. We can
230 * probably speed things up by using block and/or sector erase
234 page_shift = asf->params->l2_page_size;
235 page_size = (1 << page_shift) + (1 << (page_shift - 5));
237 page_addr = offset / page_size;
239 if (offset % page_size || len % page_size) {
240 debug("SF: Erase offset/length not multiple of page size\n");
244 cmd[0] = CMD_AT45_ERASE_PAGE;
247 ret = spi_claim_bus(flash->spi);
249 debug("SF: Unable to claim SPI bus\n");
253 for (actual = 0; actual < len; actual += page_size) {
254 cmd[1] = page_addr >> (16 - page_shift);
255 cmd[2] = page_addr << (page_shift - 8);
257 ret = spi_flash_cmd_write(flash->spi, cmd, 4, NULL, 0);
259 debug("SF: AT45 page erase failed\n");
263 ret = at45_wait_ready(flash, SPI_FLASH_PAGE_ERASE_TIMEOUT);
265 debug("SF: AT45 page erase timed out\n");
272 debug("SF: AT45: Successfully erased %zu bytes @ 0x%x\n",
277 spi_release_bus(flash->spi);
281 struct spi_flash *spi_flash_probe_atmel(struct spi_slave *spi, u8 *idcode)
283 const struct atmel_spi_flash_params *params;
284 unsigned long page_size;
286 struct atmel_spi_flash *asf;
291 for (i = 0; i < ARRAY_SIZE(atmel_spi_flash_table); i++) {
292 params = &atmel_spi_flash_table[i];
293 if (params->idcode1 == idcode[1])
297 if (i == ARRAY_SIZE(atmel_spi_flash_table)) {
298 debug("SF: Unsupported DataFlash ID %02x\n",
303 asf = malloc(sizeof(struct atmel_spi_flash));
305 debug("SF: Failed to allocate memory\n");
309 asf->params = params;
310 asf->flash.spi = spi;
311 asf->flash.name = params->name;
313 /* Assuming power-of-two page size initially. */
314 page_size = 1 << params->l2_page_size;
316 family = idcode[1] >> 5;
321 * AT45 chips have configurable page size. The status
322 * register indicates which configuration is active.
324 ret = spi_flash_cmd(spi, CMD_AT45_READ_STATUS, &status, 1);
328 debug("SF: AT45 status register: %02x\n", status);
330 if (!(status & AT45_STATUS_P2_PAGE_SIZE)) {
331 asf->flash.read = dataflash_read_fast_at45;
332 asf->flash.write = dataflash_write_at45;
333 asf->flash.erase = dataflash_erase_at45;
334 page_size += 1 << (params->l2_page_size - 5);
336 asf->flash.read = dataflash_read_fast_p2;
341 case DF_FAMILY_AT26F:
342 case DF_FAMILY_AT26DF:
343 asf->flash.read = dataflash_read_fast_p2;
347 debug("SF: Unsupported DataFlash family %u\n", family);
351 asf->flash.size = page_size * params->pages_per_block
352 * params->blocks_per_sector
353 * params->nr_sectors;
355 debug("SF: Detected %s with page size %lu, total %u bytes\n",
356 params->name, page_size, asf->flash.size);