4 * Copyright (C) 2008 Atmel Corporation
5 * Copyright (C) 2010 Reinhard Meyer, EMK Elektronik
6 * Copyright (C) 2013 Jagannadha Sutradharudu Teki, Xilinx Inc.
8 * Licensed under the GPL-2 or later.
13 #include <spi_flash.h>
16 #include "spi_flash_internal.h"
18 static void spi_flash_addr(u32 addr, u8 *cmd)
20 /* cmd[0] is actual command */
26 int spi_flash_cmd_write_status(struct spi_flash *flash, u8 sr)
31 cmd = CMD_WRITE_STATUS;
32 ret = spi_flash_write_common(flash, &cmd, 1, &sr, 1);
34 debug("SF: fail to write status register\n");
41 #ifdef CONFIG_SPI_FLASH_BAR
42 static int spi_flash_cmd_bankaddr_write(struct spi_flash *flash, u8 bank_sel)
47 if (flash->bank_curr == bank_sel) {
48 debug("SF: not require to enable bank%d\n", bank_sel);
52 cmd = flash->bank_write_cmd;
53 ret = spi_flash_write_common(flash, &cmd, 1, &bank_sel, 1);
55 debug("SF: fail to write bank register\n");
58 flash->bank_curr = bank_sel;
64 int spi_flash_cmd_wait_ready(struct spi_flash *flash, unsigned long timeout)
66 struct spi_slave *spi = flash->spi;
67 unsigned long timebase;
70 u8 check_status = 0x0;
71 u8 poll_bit = STATUS_WIP;
72 u8 cmd = flash->poll_cmd;
74 if (cmd == CMD_FLAG_STATUS) {
75 poll_bit = STATUS_PEC;
76 check_status = poll_bit;
79 ret = spi_xfer(spi, 8, &cmd, NULL, SPI_XFER_BEGIN);
81 debug("SF: fail to read %s status register\n",
82 cmd == CMD_READ_STATUS ? "read" : "flag");
86 timebase = get_timer(0);
90 ret = spi_xfer(spi, 8, NULL, &status, 0);
94 if ((status & poll_bit) == check_status)
97 } while (get_timer(timebase) < timeout);
99 spi_xfer(spi, 0, NULL, NULL, SPI_XFER_END);
101 if ((status & poll_bit) == check_status)
105 debug("SF: time out!\n");
109 int spi_flash_write_common(struct spi_flash *flash, const u8 *cmd,
110 size_t cmd_len, const void *buf, size_t buf_len)
112 struct spi_slave *spi = flash->spi;
113 unsigned long timeout = SPI_FLASH_PROG_TIMEOUT;
117 timeout = SPI_FLASH_PAGE_ERASE_TIMEOUT;
119 ret = spi_claim_bus(flash->spi);
121 debug("SF: unable to claim SPI bus\n");
125 ret = spi_flash_cmd_write_enable(flash);
127 debug("SF: enabling write failed\n");
131 ret = spi_flash_cmd_write(spi, cmd, cmd_len, buf, buf_len);
133 debug("SF: write cmd failed\n");
137 ret = spi_flash_cmd_wait_ready(flash, timeout);
139 debug("SF: write %s timed out\n",
140 timeout == SPI_FLASH_PROG_TIMEOUT ?
141 "program" : "page erase");
145 spi_release_bus(spi);
150 int spi_flash_cmd_erase_ops(struct spi_flash *flash, u32 offset, size_t len)
156 erase_size = flash->erase_size;
157 if (offset % erase_size || len % erase_size) {
158 debug("SF: Erase offset/length not multiple of erase size\n");
162 cmd[0] = flash->erase_cmd;
164 #ifdef CONFIG_SPI_FLASH_BAR
167 bank_sel = offset / SPI_FLASH_16MB_BOUN;
169 ret = spi_flash_cmd_bankaddr_write(flash, bank_sel);
171 debug("SF: fail to set bank%d\n", bank_sel);
175 spi_flash_addr(offset, cmd);
177 debug("SF: erase %2x %2x %2x %2x (%x)\n", cmd[0], cmd[1],
178 cmd[2], cmd[3], offset);
180 ret = spi_flash_write_common(flash, cmd, sizeof(cmd), NULL, 0);
182 debug("SF: erase failed\n");
186 offset += erase_size;
193 int spi_flash_cmd_write_ops(struct spi_flash *flash, u32 offset,
194 size_t len, const void *buf)
196 unsigned long byte_addr, page_size;
197 size_t chunk_len, actual;
201 page_size = flash->page_size;
203 cmd[0] = CMD_PAGE_PROGRAM;
204 for (actual = 0; actual < len; actual += chunk_len) {
205 #ifdef CONFIG_SPI_FLASH_BAR
208 bank_sel = offset / SPI_FLASH_16MB_BOUN;
210 ret = spi_flash_cmd_bankaddr_write(flash, bank_sel);
212 debug("SF: fail to set bank%d\n", bank_sel);
216 byte_addr = offset % page_size;
217 chunk_len = min(len - actual, page_size - byte_addr);
219 if (flash->spi->max_write_size)
220 chunk_len = min(chunk_len, flash->spi->max_write_size);
222 spi_flash_addr(offset, cmd);
224 debug("PP: 0x%p => cmd = { 0x%02x 0x%02x%02x%02x } chunk_len = %zu\n",
225 buf + actual, cmd[0], cmd[1], cmd[2], cmd[3], chunk_len);
227 ret = spi_flash_write_common(flash, cmd, sizeof(cmd),
228 buf + actual, chunk_len);
230 debug("SF: write failed\n");
240 int spi_flash_read_common(struct spi_flash *flash, const u8 *cmd,
241 size_t cmd_len, void *data, size_t data_len)
243 struct spi_slave *spi = flash->spi;
246 ret = spi_claim_bus(flash->spi);
248 debug("SF: unable to claim SPI bus\n");
252 ret = spi_flash_cmd_read(spi, cmd, cmd_len, data, data_len);
254 debug("SF: read cmd failed\n");
258 spi_release_bus(spi);
263 int spi_flash_cmd_read_ops(struct spi_flash *flash, u32 offset,
264 size_t len, void *data)
266 u8 cmd[5], bank_sel = 0;
267 u32 remain_len, read_len;
270 /* Handle memory-mapped SPI */
271 if (flash->memory_map) {
272 memcpy(data, flash->memory_map + offset, len);
276 cmd[0] = CMD_READ_ARRAY_FAST;
280 #ifdef CONFIG_SPI_FLASH_BAR
281 bank_sel = offset / SPI_FLASH_16MB_BOUN;
283 ret = spi_flash_cmd_bankaddr_write(flash, bank_sel);
285 debug("SF: fail to set bank%d\n", bank_sel);
289 remain_len = (SPI_FLASH_16MB_BOUN * (bank_sel + 1) - offset);
290 if (len < remain_len)
293 read_len = remain_len;
295 spi_flash_addr(offset, cmd);
297 ret = spi_flash_read_common(flash, cmd, sizeof(cmd),
300 debug("SF: read failed\n");
312 #ifdef CONFIG_SPI_FLASH_SST
313 static int sst_byte_write(struct spi_flash *flash, u32 offset, const void *buf)
323 debug("BP[%02x]: 0x%p => cmd = { 0x%02x 0x%06x }\n",
324 spi_w8r8(flash->spi, CMD_READ_STATUS), buf, cmd[0], offset);
326 ret = spi_flash_cmd_write_enable(flash);
330 ret = spi_flash_cmd_write(flash->spi, cmd, sizeof(cmd), buf, 1);
334 return spi_flash_cmd_wait_ready(flash, SPI_FLASH_PROG_TIMEOUT);
337 int sst_write_wp(struct spi_flash *flash, u32 offset, size_t len,
340 size_t actual, cmd_len;
344 ret = spi_claim_bus(flash->spi);
346 debug("SF: Unable to claim SPI bus\n");
350 /* If the data is not word aligned, write out leading single byte */
353 ret = sst_byte_write(flash, offset, buf);
359 ret = spi_flash_cmd_write_enable(flash);
364 cmd[0] = CMD_SST_AAI_WP;
365 cmd[1] = offset >> 16;
366 cmd[2] = offset >> 8;
369 for (; actual < len - 1; actual += 2) {
370 debug("WP[%02x]: 0x%p => cmd = { 0x%02x 0x%06x }\n",
371 spi_w8r8(flash->spi, CMD_READ_STATUS), buf + actual,
374 ret = spi_flash_cmd_write(flash->spi, cmd, cmd_len,
377 debug("SF: sst word program failed\n");
381 ret = spi_flash_cmd_wait_ready(flash, SPI_FLASH_PROG_TIMEOUT);
390 ret = spi_flash_cmd_write_disable(flash);
392 /* If there is a single trailing byte, write it out */
393 if (!ret && actual != len)
394 ret = sst_byte_write(flash, offset, buf + actual);
397 debug("SF: sst: program %s %zu bytes @ 0x%zx\n",
398 ret ? "failure" : "success", len, offset - actual);
400 spi_release_bus(flash->spi);