]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - drivers/mtd/spi/sst.c
Merge 'u-boot-microblaze/zynq' into (u-boot-arm/master'
[karo-tx-uboot.git] / 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 Incr 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         {
55                 .idcode1 = 0x8e,
56                 .flags = SST_FEAT_WP,
57                 .nr_sectors = 256,
58                 .name = "SST25VF080B",
59         },
60         {
61                 .idcode1 = 0x41,
62                 .flags = SST_FEAT_WP,
63                 .nr_sectors = 512,
64                 .name = "SST25VF016B",
65         },
66         {
67                 .idcode1 = 0x4a,
68                 .flags = SST_FEAT_WP,
69                 .nr_sectors = 1024,
70                 .name = "SST25VF032B",
71         },
72         {
73                 .idcode1 = 0x4b,
74                 .flags = SST_FEAT_MBP,
75                 .nr_sectors = 2048,
76                 .name = "SST25VF064C",
77         },
78         {
79                 .idcode1 = 0x01,
80                 .flags = SST_FEAT_WP,
81                 .nr_sectors = 16,
82                 .name = "SST25WF512",
83         },
84         {
85                 .idcode1 = 0x02,
86                 .flags = SST_FEAT_WP,
87                 .nr_sectors = 32,
88                 .name = "SST25WF010",
89         },
90         {
91                 .idcode1 = 0x03,
92                 .flags = SST_FEAT_WP,
93                 .nr_sectors = 64,
94                 .name = "SST25WF020",
95         },
96         {
97                 .idcode1 = 0x04,
98                 .flags = SST_FEAT_WP,
99                 .nr_sectors = 128,
100                 .name = "SST25WF040",
101         },
102         {
103                 .idcode1 = 0x05,
104                 .flags = SST_FEAT_WP,
105                 .nr_sectors = 256,
106                 .name = "SST25WF080",
107         },
108 };
109
110 static int
111 sst_byte_write(struct spi_flash *flash, u32 offset, const void *buf)
112 {
113         int ret;
114         u8 cmd[4] = {
115                 CMD_SST_BP,
116                 offset >> 16,
117                 offset >> 8,
118                 offset,
119         };
120
121         debug("BP[%02x]: 0x%p => cmd = { 0x%02x 0x%06x }\n",
122               spi_w8r8(flash->spi, CMD_READ_STATUS), buf, cmd[0], offset);
123
124         ret = spi_flash_cmd_write_enable(flash);
125         if (ret)
126                 return ret;
127
128         ret = spi_flash_cmd_write(flash->spi, cmd, sizeof(cmd), buf, 1);
129         if (ret)
130                 return ret;
131
132         return spi_flash_cmd_wait_ready(flash, SPI_FLASH_PROG_TIMEOUT);
133 }
134
135 static int
136 sst_write_wp(struct spi_flash *flash, u32 offset, size_t len, const void *buf)
137 {
138         size_t actual, cmd_len;
139         int ret;
140         u8 cmd[4];
141
142         ret = spi_claim_bus(flash->spi);
143         if (ret) {
144                 debug("SF: Unable to claim SPI bus\n");
145                 return ret;
146         }
147
148         /* If the data is not word aligned, write out leading single byte */
149         actual = offset % 2;
150         if (actual) {
151                 ret = sst_byte_write(flash, offset, buf);
152                 if (ret)
153                         goto done;
154         }
155         offset += actual;
156
157         ret = spi_flash_cmd_write_enable(flash);
158         if (ret)
159                 goto done;
160
161         cmd_len = 4;
162         cmd[0] = CMD_SST_AAI_WP;
163         cmd[1] = offset >> 16;
164         cmd[2] = offset >> 8;
165         cmd[3] = offset;
166
167         for (; actual < len - 1; actual += 2) {
168                 debug("WP[%02x]: 0x%p => cmd = { 0x%02x 0x%06x }\n",
169                       spi_w8r8(flash->spi, CMD_READ_STATUS), buf + actual,
170                       cmd[0], offset);
171
172                 ret = spi_flash_cmd_write(flash->spi, cmd, cmd_len,
173                                         buf + actual, 2);
174                 if (ret) {
175                         debug("SF: sst word program failed\n");
176                         break;
177                 }
178
179                 ret = spi_flash_cmd_wait_ready(flash, SPI_FLASH_PROG_TIMEOUT);
180                 if (ret)
181                         break;
182
183                 cmd_len = 1;
184                 offset += 2;
185         }
186
187         if (!ret)
188                 ret = spi_flash_cmd_write_disable(flash);
189
190         /* If there is a single trailing byte, write it out */
191         if (!ret && actual != len)
192                 ret = sst_byte_write(flash, offset, buf + actual);
193
194  done:
195         debug("SF: sst: program %s %zu bytes @ 0x%zx\n",
196               ret ? "failure" : "success", len, offset - actual);
197
198         spi_release_bus(flash->spi);
199         return ret;
200 }
201
202 struct spi_flash *
203 spi_flash_probe_sst(struct spi_slave *spi, u8 *idcode)
204 {
205         const struct sst_spi_flash_params *params;
206         struct sst_spi_flash *stm;
207         size_t i;
208
209         for (i = 0; i < ARRAY_SIZE(sst_spi_flash_table); ++i) {
210                 params = &sst_spi_flash_table[i];
211                 if (params->idcode1 == idcode[2])
212                         break;
213         }
214
215         if (i == ARRAY_SIZE(sst_spi_flash_table)) {
216                 debug("SF: Unsupported SST ID %02x\n", idcode[1]);
217                 return NULL;
218         }
219
220         stm = spi_flash_alloc(struct sst_spi_flash, spi, params->name);
221         if (!stm) {
222                 debug("SF: Failed to allocate memory\n");
223                 return NULL;
224         }
225
226         stm->params = params;
227
228         if (stm->params->flags & SST_FEAT_WP)
229                 stm->flash.write = sst_write_wp;
230         stm->flash.page_size = 256;
231         stm->flash.sector_size = 4096;
232         stm->flash.size = stm->flash.sector_size * params->nr_sectors;
233
234         /* Flash powers up read-only, so clear BP# bits */
235         spi_flash_cmd_write_status(&stm->flash, 0);
236
237         return &stm->flash;
238 }