blob: e8d30ae2b9d02933a812621e0cdb47511c931bba [file] [log] [blame]
Jason McMulland394a772009-10-09 17:12:23 -04001/*
2 * Copyright 2008, Network Appliance Inc.
3 * Author: Jason McMullan <mcmullan <at> netapp.com>
4 * Licensed under the GPL-2 or later.
5 */
6
7#include <common.h>
8#include <malloc.h>
9#include <spi_flash.h>
10
11#include "spi_flash_internal.h"
12
13/* M25Pxx-specific commands */
14#define CMD_W25_WREN 0x06 /* Write Enable */
15#define CMD_W25_WRDI 0x04 /* Write Disable */
16#define CMD_W25_RDSR 0x05 /* Read Status Register */
17#define CMD_W25_WRSR 0x01 /* Write Status Register */
18#define CMD_W25_READ 0x03 /* Read Data Bytes */
19#define CMD_W25_FAST_READ 0x0b /* Read Data Bytes at Higher Speed */
20#define CMD_W25_PP 0x02 /* Page Program */
21#define CMD_W25_SE 0x20 /* Sector (4K) Erase */
22#define CMD_W25_BE 0xd8 /* Block (64K) Erase */
23#define CMD_W25_CE 0xc7 /* Chip Erase */
24#define CMD_W25_DP 0xb9 /* Deep Power-down */
25#define CMD_W25_RES 0xab /* Release from DP, and Read Signature */
26
Jason McMulland394a772009-10-09 17:12:23 -040027struct winbond_spi_flash_params {
28 uint16_t id;
29 /* Log2 of page size in power-of-two mode */
30 uint8_t l2_page_size;
31 uint16_t pages_per_sector;
32 uint16_t sectors_per_block;
Wojtek Skulski93eab862010-12-07 01:07:45 -050033 uint16_t nr_blocks;
Jason McMulland394a772009-10-09 17:12:23 -040034 const char *name;
35};
36
37/* spi_flash needs to be first so upper layers can free() it */
38struct winbond_spi_flash {
39 struct spi_flash flash;
40 const struct winbond_spi_flash_params *params;
41};
42
43static inline struct winbond_spi_flash *
44to_winbond_spi_flash(struct spi_flash *flash)
45{
46 return container_of(flash, struct winbond_spi_flash, flash);
47}
48
49static const struct winbond_spi_flash_params winbond_spi_flash_table[] = {
50 {
Wojtek Skulski93eab862010-12-07 01:07:45 -050051 .id = 0x3015,
Jason McMulland394a772009-10-09 17:12:23 -040052 .l2_page_size = 8,
53 .pages_per_sector = 16,
54 .sectors_per_block = 16,
55 .nr_blocks = 32,
56 .name = "W25X16",
57 },
58 {
Wojtek Skulski93eab862010-12-07 01:07:45 -050059 .id = 0x3016,
Jason McMulland394a772009-10-09 17:12:23 -040060 .l2_page_size = 8,
61 .pages_per_sector = 16,
62 .sectors_per_block = 16,
63 .nr_blocks = 64,
64 .name = "W25X32",
65 },
66 {
Wojtek Skulski93eab862010-12-07 01:07:45 -050067 .id = 0x3017,
Jason McMulland394a772009-10-09 17:12:23 -040068 .l2_page_size = 8,
69 .pages_per_sector = 16,
70 .sectors_per_block = 16,
71 .nr_blocks = 128,
72 .name = "W25X64",
73 },
Graeme Smecher74f9e0d2010-07-29 09:00:02 -040074 {
Wojtek Skulski93eab862010-12-07 01:07:45 -050075 .id = 0x4015,
76 .l2_page_size = 8,
77 .pages_per_sector = 16,
78 .sectors_per_block = 16,
79 .nr_blocks = 32,
80 .name = "W25Q16",
81 },
82 {
83 .id = 0x4016,
84 .l2_page_size = 8,
85 .pages_per_sector = 16,
86 .sectors_per_block = 16,
87 .nr_blocks = 64,
88 .name = "W25Q32",
89 },
90 {
91 .id = 0x4017,
Graeme Smecher74f9e0d2010-07-29 09:00:02 -040092 .l2_page_size = 8,
93 .pages_per_sector = 16,
94 .sectors_per_block = 16,
95 .nr_blocks = 128,
96 .name = "W25Q64",
97 },
Wojtek Skulski93eab862010-12-07 01:07:45 -050098 {
99 .id = 0x4018,
100 .l2_page_size = 8,
101 .pages_per_sector = 16,
102 .sectors_per_block = 16,
103 .nr_blocks = 256,
104 .name = "W25Q128",
105 },
Jason McMulland394a772009-10-09 17:12:23 -0400106};
107
Jason McMulland394a772009-10-09 17:12:23 -0400108static int winbond_write(struct spi_flash *flash,
109 u32 offset, size_t len, const void *buf)
110{
111 struct winbond_spi_flash *stm = to_winbond_spi_flash(flash);
112 unsigned long page_addr;
113 unsigned long byte_addr;
114 unsigned long page_size;
115 unsigned int page_shift;
116 size_t chunk_len;
117 size_t actual;
118 int ret;
119 u8 cmd[4];
120
121 page_shift = stm->params->l2_page_size;
122 page_size = (1 << page_shift);
123 page_addr = offset / page_size;
124 byte_addr = offset % page_size;
125
126 ret = spi_claim_bus(flash->spi);
127 if (ret) {
128 debug("SF: Unable to claim SPI bus\n");
129 return ret;
130 }
131
132 for (actual = 0; actual < len; actual += chunk_len) {
133 chunk_len = min(len - actual, page_size - byte_addr);
134
135 cmd[0] = CMD_W25_PP;
136 cmd[1] = page_addr >> (16 - page_shift);
137 cmd[2] = page_addr << (page_shift - 8) | (byte_addr >> 8);
138 cmd[3] = byte_addr;
139 debug("PP: 0x%p => cmd = { 0x%02x 0x%02x%02x%02x } chunk_len = %d\n",
140 buf + actual,
141 cmd[0], cmd[1], cmd[2], cmd[3], chunk_len);
142
143 ret = spi_flash_cmd(flash->spi, CMD_W25_WREN, NULL, 0);
144 if (ret < 0) {
145 debug("SF: Enabling Write failed\n");
146 goto out;
147 }
148
149 ret = spi_flash_cmd_write(flash->spi, cmd, 4,
150 buf + actual, chunk_len);
151 if (ret < 0) {
152 debug("SF: Winbond Page Program failed\n");
153 goto out;
154 }
155
Mike Frysinger61630452011-01-10 02:20:12 -0500156 ret = spi_flash_cmd_wait_ready(flash, SPI_FLASH_PROG_TIMEOUT);
157 if (ret)
Jason McMulland394a772009-10-09 17:12:23 -0400158 goto out;
Jason McMulland394a772009-10-09 17:12:23 -0400159
160 page_addr++;
161 byte_addr = 0;
162 }
163
164 debug("SF: Winbond: Successfully programmed %u bytes @ 0x%x\n",
165 len, offset);
166 ret = 0;
167
168out:
169 spi_release_bus(flash->spi);
170 return ret;
171}
172
Mike Frysingerf8f07572011-04-12 01:51:29 -0400173static int winbond_erase(struct spi_flash *flash, u32 offset, size_t len)
Jason McMulland394a772009-10-09 17:12:23 -0400174{
Richard Retanubun4e6a5152011-02-16 16:37:22 -0500175 return spi_flash_cmd_erase(flash, CMD_W25_SE, offset, len);
Jason McMulland394a772009-10-09 17:12:23 -0400176}
177
178struct spi_flash *spi_flash_probe_winbond(struct spi_slave *spi, u8 *idcode)
179{
180 const struct winbond_spi_flash_params *params;
Mike Frysingerb376bbb2010-04-29 00:35:12 -0400181 unsigned page_size;
Jason McMulland394a772009-10-09 17:12:23 -0400182 struct winbond_spi_flash *stm;
183 unsigned int i;
184
185 for (i = 0; i < ARRAY_SIZE(winbond_spi_flash_table); i++) {
186 params = &winbond_spi_flash_table[i];
187 if (params->id == ((idcode[1] << 8) | idcode[2]))
188 break;
189 }
190
191 if (i == ARRAY_SIZE(winbond_spi_flash_table)) {
192 debug("SF: Unsupported Winbond ID %02x%02x\n",
193 idcode[1], idcode[2]);
194 return NULL;
195 }
196
197 stm = malloc(sizeof(struct winbond_spi_flash));
198 if (!stm) {
199 debug("SF: Failed to allocate memory\n");
200 return NULL;
201 }
202
203 stm->params = params;
204 stm->flash.spi = spi;
205 stm->flash.name = params->name;
206
207 /* Assuming power-of-two page size initially. */
208 page_size = 1 << params->l2_page_size;
209
210 stm->flash.write = winbond_write;
211 stm->flash.erase = winbond_erase;
Mike Frysingera4c3b402011-01-10 02:20:14 -0500212 stm->flash.read = spi_flash_cmd_read_fast;
Richard Retanubun4e6a5152011-02-16 16:37:22 -0500213 stm->flash.sector_size = (1 << stm->params->l2_page_size) *
214 stm->params->pages_per_sector;
Jason McMulland394a772009-10-09 17:12:23 -0400215 stm->flash.size = page_size * params->pages_per_sector
216 * params->sectors_per_block
217 * params->nr_blocks;
218
Jason McMulland394a772009-10-09 17:12:23 -0400219 return &stm->flash;
220}