]> git.sur5r.net Git - u-boot/blob - drivers/mtd/spi/sst.c
sf: sst: inline duplicate write enable helper funcs
[u-boot] / drivers / mtd / spi / sst.c
1 /*
2  * Driver for SST serial flashes
3  *
4  * (C) Copyright 2000-2002
5  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
6  * Copyright 2008, Network Appliance Inc.
7  * Jason McMullan <mcmullan@netapp.com>
8  * Copyright (C) 2004-2007 Freescale Semiconductor, Inc.
9  * TsiChung Liew (Tsi-Chung.Liew@freescale.com)
10  * Copyright (c) 2008-2009 Analog Devices Inc.
11  *
12  * Licensed under the GPL-2 or later.
13  */
14
15 #include <common.h>
16 #include <malloc.h>
17 #include <spi_flash.h>
18
19 #include "spi_flash_internal.h"
20
21 #define CMD_SST_BP              0x02    /* Byte Program */
22 #define CMD_SST_AAI_WP          0xAD    /* Auto Address Increment Word Program */
23
24 #define SST_SR_WIP              (1 << 0)        /* Write-in-Progress */
25 #define SST_SR_WEL              (1 << 1)        /* Write enable */
26 #define SST_SR_BP0              (1 << 2)        /* Block Protection 0 */
27 #define SST_SR_BP1              (1 << 3)        /* Block Protection 1 */
28 #define SST_SR_BP2              (1 << 4)        /* Block Protection 2 */
29 #define SST_SR_AAI              (1 << 6)        /* Addressing mode */
30 #define SST_SR_BPL              (1 << 7)        /* BP bits lock */
31
32 #define SST_FEAT_WP             (1 << 0)        /* Supports AAI word program */
33 #define SST_FEAT_MBP            (1 << 1)        /* Supports multibyte program */
34
35 struct sst_spi_flash_params {
36         u8 idcode1;
37         u8 flags;
38         u16 nr_sectors;
39         const char *name;
40 };
41
42 struct sst_spi_flash {
43         struct spi_flash flash;
44         const struct sst_spi_flash_params *params;
45 };
46
47 static const struct sst_spi_flash_params sst_spi_flash_table[] = {
48         {
49                 .idcode1 = 0x8d,
50                 .flags = SST_FEAT_WP,
51                 .nr_sectors = 128,
52                 .name = "SST25VF040B",
53         },{
54                 .idcode1 = 0x8e,
55                 .flags = SST_FEAT_WP,
56                 .nr_sectors = 256,
57                 .name = "SST25VF080B",
58         },{
59                 .idcode1 = 0x41,
60                 .flags = SST_FEAT_WP,
61                 .nr_sectors = 512,
62                 .name = "SST25VF016B",
63         },{
64                 .idcode1 = 0x4a,
65                 .flags = SST_FEAT_WP,
66                 .nr_sectors = 1024,
67                 .name = "SST25VF032B",
68         },{
69                 .idcode1 = 0x4b,
70                 .flags = SST_FEAT_MBP,
71                 .nr_sectors = 2048,
72                 .name = "SST25VF064C",
73         },{
74                 .idcode1 = 0x01,
75                 .flags = SST_FEAT_WP,
76                 .nr_sectors = 16,
77                 .name = "SST25WF512",
78         },{
79                 .idcode1 = 0x02,
80                 .flags = SST_FEAT_WP,
81                 .nr_sectors = 32,
82                 .name = "SST25WF010",
83         },{
84                 .idcode1 = 0x03,
85                 .flags = SST_FEAT_WP,
86                 .nr_sectors = 64,
87                 .name = "SST25WF020",
88         },{
89                 .idcode1 = 0x04,
90                 .flags = SST_FEAT_WP,
91                 .nr_sectors = 128,
92                 .name = "SST25WF040",
93         },
94 };
95
96 static int
97 sst_byte_write(struct spi_flash *flash, u32 offset, const void *buf)
98 {
99         int ret;
100         u8 cmd[4] = {
101                 CMD_SST_BP,
102                 offset >> 16,
103                 offset >> 8,
104                 offset,
105         };
106
107         debug("BP[%02x]: 0x%p => cmd = { 0x%02x 0x%06x }\n",
108                 spi_w8r8(flash->spi, CMD_READ_STATUS), buf, cmd[0], offset);
109
110         ret = spi_flash_cmd_write_enable(flash);
111         if (ret)
112                 return ret;
113
114         ret = spi_flash_cmd_write(flash->spi, cmd, sizeof(cmd), buf, 1);
115         if (ret)
116                 return ret;
117
118         return spi_flash_cmd_wait_ready(flash, SPI_FLASH_PROG_TIMEOUT);
119 }
120
121 static int
122 sst_write_wp(struct spi_flash *flash, u32 offset, size_t len, const void *buf)
123 {
124         size_t actual, cmd_len;
125         int ret;
126         u8 cmd[4];
127
128         ret = spi_claim_bus(flash->spi);
129         if (ret) {
130                 debug("SF: Unable to claim SPI bus\n");
131                 return ret;
132         }
133
134         /* If the data is not word aligned, write out leading single byte */
135         actual = offset % 2;
136         if (actual) {
137                 ret = sst_byte_write(flash, offset, buf);
138                 if (ret)
139                         goto done;
140         }
141         offset += actual;
142
143         ret = spi_flash_cmd_write_enable(flash);
144         if (ret)
145                 goto done;
146
147         cmd_len = 4;
148         cmd[0] = CMD_SST_AAI_WP;
149         cmd[1] = offset >> 16;
150         cmd[2] = offset >> 8;
151         cmd[3] = offset;
152
153         for (; actual < len - 1; actual += 2) {
154                 debug("WP[%02x]: 0x%p => cmd = { 0x%02x 0x%06x }\n",
155                      spi_w8r8(flash->spi, CMD_READ_STATUS), buf + actual, cmd[0],
156                      offset);
157
158                 ret = spi_flash_cmd_write(flash->spi, cmd, cmd_len,
159                                           buf + actual, 2);
160                 if (ret) {
161                         debug("SF: sst word program failed\n");
162                         break;
163                 }
164
165                 ret = spi_flash_cmd_wait_ready(flash, SPI_FLASH_PROG_TIMEOUT);
166                 if (ret)
167                         break;
168
169                 cmd_len = 1;
170                 offset += 2;
171         }
172
173         if (!ret)
174                 ret = spi_flash_cmd_write_disable(flash);
175
176         /* If there is a single trailing byte, write it out */
177         if (!ret && actual != len)
178                 ret = sst_byte_write(flash, offset, buf + actual);
179
180  done:
181         debug("SF: sst: program %s %zu bytes @ 0x%zx\n",
182               ret ? "failure" : "success", len, offset - actual);
183
184         spi_release_bus(flash->spi);
185         return ret;
186 }
187
188 static int
189 sst_unlock(struct spi_flash *flash)
190 {
191         int ret;
192         u8 cmd, status;
193
194         ret = spi_flash_cmd_write_enable(flash);
195         if (ret)
196                 return ret;
197
198         cmd = CMD_WRITE_STATUS;
199         status = 0;
200         ret = spi_flash_cmd_write(flash->spi, &cmd, 1, &status, 1);
201         if (ret)
202                 debug("SF: Unable to set status byte\n");
203
204         debug("SF: sst: status = %x\n", spi_w8r8(flash->spi, CMD_READ_STATUS));
205
206         return ret;
207 }
208
209 struct spi_flash *
210 spi_flash_probe_sst(struct spi_slave *spi, u8 *idcode)
211 {
212         const struct sst_spi_flash_params *params;
213         struct sst_spi_flash *stm;
214         size_t i;
215
216         for (i = 0; i < ARRAY_SIZE(sst_spi_flash_table); ++i) {
217                 params = &sst_spi_flash_table[i];
218                 if (params->idcode1 == idcode[2])
219                         break;
220         }
221
222         if (i == ARRAY_SIZE(sst_spi_flash_table)) {
223                 debug("SF: Unsupported SST ID %02x\n", idcode[1]);
224                 return NULL;
225         }
226
227         stm = malloc(sizeof(*stm));
228         if (!stm) {
229                 debug("SF: Failed to allocate memory\n");
230                 return NULL;
231         }
232
233         stm->params = params;
234         stm->flash.spi = spi;
235         stm->flash.name = params->name;
236
237         if (stm->params->flags & SST_FEAT_WP)
238                 stm->flash.write = sst_write_wp;
239         else
240                 stm->flash.write = spi_flash_cmd_write_multi;
241         stm->flash.erase = spi_flash_cmd_erase;
242         stm->flash.read = spi_flash_cmd_read_fast;
243         stm->flash.page_size = 256;
244         stm->flash.sector_size = 4096;
245         stm->flash.size = stm->flash.sector_size * params->nr_sectors;
246
247         /* Flash powers up read-only, so clear BP# bits */
248         sst_unlock(&stm->flash);
249
250         return &stm->flash;
251 }