blob: b219b3cace3aa357cb70e92b575a26876f25ea59 [file] [log] [blame]
Mingkai Hu6805e4b2009-03-31 14:09:41 +08001/*
2 * Copyright (C) 2009 Freescale Semiconductor, Inc.
3 *
4 * Author: Mingkai Hu (Mingkai.hu@freescale.com)
5 * Based on stmicro.c by Wolfgang Denk (wd@denx.de),
6 * TsiChung Liew (Tsi-Chung.Liew@freescale.com),
7 * and Jason McMullan (mcmullan@netapp.com)
8 *
9 * See file CREDITS for list of people who contributed to this
10 * project.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License as
14 * published by the Free Software Foundation; either version 2 of
15 * the License, or (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
25 * MA 02111-1307 USA
26 */
27
28#include <common.h>
29#include <malloc.h>
30#include <spi_flash.h>
31
32#include "spi_flash_internal.h"
33
34/* S25FLxx-specific commands */
35#define CMD_S25FLXX_READ 0x03 /* Read Data Bytes */
36#define CMD_S25FLXX_FAST_READ 0x0b /* Read Data Bytes at Higher Speed */
37#define CMD_S25FLXX_READID 0x90 /* Read Manufacture ID and Device ID */
38#define CMD_S25FLXX_WREN 0x06 /* Write Enable */
39#define CMD_S25FLXX_WRDI 0x04 /* Write Disable */
40#define CMD_S25FLXX_RDSR 0x05 /* Read Status Register */
41#define CMD_S25FLXX_WRSR 0x01 /* Write Status Register */
42#define CMD_S25FLXX_PP 0x02 /* Page Program */
43#define CMD_S25FLXX_SE 0xd8 /* Sector Erase */
44#define CMD_S25FLXX_BE 0xc7 /* Bulk Erase */
45#define CMD_S25FLXX_DP 0xb9 /* Deep Power-down */
46#define CMD_S25FLXX_RES 0xab /* Release from DP, and Read Signature */
47
48#define SPSN_ID_S25FL008A 0x0213
49#define SPSN_ID_S25FL016A 0x0214
50#define SPSN_ID_S25FL032A 0x0215
51#define SPSN_ID_S25FL064A 0x0216
52#define SPSN_ID_S25FL128P 0x2018
53#define SPSN_EXT_ID_S25FL128P_256KB 0x0300
54#define SPSN_EXT_ID_S25FL128P_64KB 0x0301
David Janderff0dc2c2010-08-23 15:12:16 +020055#define SPSN_EXT_ID_S25FL032P 0x4d00
Mingkai Hu6805e4b2009-03-31 14:09:41 +080056
Mingkai Hu6805e4b2009-03-31 14:09:41 +080057struct spansion_spi_flash_params {
58 u16 idcode1;
59 u16 idcode2;
60 u16 page_size;
61 u16 pages_per_sector;
62 u16 nr_sectors;
63 const char *name;
64};
65
66struct spansion_spi_flash {
67 struct spi_flash flash;
68 const struct spansion_spi_flash_params *params;
69};
70
71static inline struct spansion_spi_flash *to_spansion_spi_flash(struct spi_flash
72 *flash)
73{
74 return container_of(flash, struct spansion_spi_flash, flash);
75}
76
77static const struct spansion_spi_flash_params spansion_spi_flash_table[] = {
78 {
79 .idcode1 = SPSN_ID_S25FL008A,
80 .idcode2 = 0,
81 .page_size = 256,
82 .pages_per_sector = 256,
83 .nr_sectors = 16,
84 .name = "S25FL008A",
85 },
86 {
87 .idcode1 = SPSN_ID_S25FL016A,
88 .idcode2 = 0,
89 .page_size = 256,
90 .pages_per_sector = 256,
91 .nr_sectors = 32,
92 .name = "S25FL016A",
93 },
94 {
95 .idcode1 = SPSN_ID_S25FL032A,
96 .idcode2 = 0,
97 .page_size = 256,
98 .pages_per_sector = 256,
99 .nr_sectors = 64,
100 .name = "S25FL032A",
101 },
102 {
103 .idcode1 = SPSN_ID_S25FL064A,
104 .idcode2 = 0,
105 .page_size = 256,
106 .pages_per_sector = 256,
107 .nr_sectors = 128,
108 .name = "S25FL064A",
109 },
110 {
111 .idcode1 = SPSN_ID_S25FL128P,
112 .idcode2 = SPSN_EXT_ID_S25FL128P_64KB,
113 .page_size = 256,
114 .pages_per_sector = 256,
115 .nr_sectors = 256,
116 .name = "S25FL128P_64K",
117 },
118 {
119 .idcode1 = SPSN_ID_S25FL128P,
120 .idcode2 = SPSN_EXT_ID_S25FL128P_256KB,
121 .page_size = 256,
122 .pages_per_sector = 1024,
123 .nr_sectors = 64,
124 .name = "S25FL128P_256K",
125 },
David Janderff0dc2c2010-08-23 15:12:16 +0200126 {
127 .idcode1 = SPSN_ID_S25FL032A,
128 .idcode2 = SPSN_EXT_ID_S25FL032P,
129 .page_size = 256,
130 .pages_per_sector = 256,
131 .nr_sectors = 64,
132 .name = "S25FL032P",
133 },
Mingkai Hu6805e4b2009-03-31 14:09:41 +0800134};
135
Mike Frysingerf8f07572011-04-12 01:51:29 -0400136static int spansion_erase(struct spi_flash *flash, u32 offset, size_t len)
Mingkai Hu6805e4b2009-03-31 14:09:41 +0800137{
Richard Retanubun4e6a5152011-02-16 16:37:22 -0500138 return spi_flash_cmd_erase(flash, CMD_S25FLXX_SE, offset, len);
Mingkai Hu6805e4b2009-03-31 14:09:41 +0800139}
140
141struct spi_flash *spi_flash_probe_spansion(struct spi_slave *spi, u8 *idcode)
142{
143 const struct spansion_spi_flash_params *params;
144 struct spansion_spi_flash *spsn;
145 unsigned int i;
146 unsigned short jedec, ext_jedec;
Mingkai Hu6805e4b2009-03-31 14:09:41 +0800147
Mike Frysinger0dcdbb12009-03-28 06:41:09 -0400148 jedec = idcode[1] << 8 | idcode[2];
149 ext_jedec = idcode[3] << 8 | idcode[4];
Mingkai Hu6805e4b2009-03-31 14:09:41 +0800150
151 for (i = 0; i < ARRAY_SIZE(spansion_spi_flash_table); i++) {
152 params = &spansion_spi_flash_table[i];
153 if (params->idcode1 == jedec) {
154 if (params->idcode2 == ext_jedec)
155 break;
156 }
157 }
158
159 if (i == ARRAY_SIZE(spansion_spi_flash_table)) {
160 debug("SF: Unsupported SPANSION ID %04x %04x\n", jedec, ext_jedec);
161 return NULL;
162 }
163
164 spsn = malloc(sizeof(struct spansion_spi_flash));
165 if (!spsn) {
166 debug("SF: Failed to allocate memory\n");
167 return NULL;
168 }
169
170 spsn->params = params;
171 spsn->flash.spi = spi;
172 spsn->flash.name = params->name;
173
Mike Frysingerd4aa5002011-04-25 06:58:29 +0000174 spsn->flash.write = spi_flash_cmd_write_multi;
Mingkai Hu6805e4b2009-03-31 14:09:41 +0800175 spsn->flash.erase = spansion_erase;
Mike Frysingera4c3b402011-01-10 02:20:14 -0500176 spsn->flash.read = spi_flash_cmd_read_fast;
Mike Frysingerd4aa5002011-04-25 06:58:29 +0000177 spsn->flash.page_size = params->page_size;
Richard Retanubun4e6a5152011-02-16 16:37:22 -0500178 spsn->flash.sector_size = params->page_size * params->pages_per_sector;
179 spsn->flash.size = spsn->flash.sector_size * params->nr_sectors;
Mingkai Hu6805e4b2009-03-31 14:09:41 +0800180
181 return &spsn->flash;
182}