]> git.ipfire.org Git - people/ms/u-boot.git/blame - drivers/mtd/spi/stmicro.c
sf: stmicro: Add support for N25Q32A
[people/ms/u-boot.git] / drivers / mtd / spi / stmicro.c
CommitLineData
7b7a869a
TL
1/*
2 * (C) Copyright 2000-2002
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * Copyright 2008, Network Appliance Inc.
6 * Jason McMullan <mcmullan@netapp.com>
7 *
8 * Copyright (C) 2004-2007 Freescale Semiconductor, Inc.
9 * TsiChung Liew (Tsi-Chung.Liew@freescale.com)
10 *
11 * See file CREDITS for list of people who contributed to this
12 * project.
13 *
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License as
16 * published by the Free Software Foundation; either version 2 of
17 * the License, or (at your option) any later version.
18 *
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
27 * MA 02111-1307 USA
28 */
29
30#include <common.h>
31#include <malloc.h>
32#include <spi_flash.h>
33
34#include "spi_flash_internal.h"
35
36/* M25Pxx-specific commands */
7b7a869a
TL
37#define CMD_M25PXX_RES 0xab /* Release from DP, and Read Signature */
38
7b7a869a 39struct stmicro_spi_flash_params {
63ff6a66 40 u16 id;
7b7a869a
TL
41 u16 pages_per_sector;
42 u16 nr_sectors;
43 const char *name;
44};
45
7b7a869a 46static const struct stmicro_spi_flash_params stmicro_spi_flash_table[] = {
12c2e3bb 47 {
63ff6a66 48 .id = 0x2011,
12c2e3bb
TC
49 .pages_per_sector = 128,
50 .nr_sectors = 4,
51 .name = "M25P10",
52 },
7b7a869a 53 {
63ff6a66 54 .id = 0x2015,
7b7a869a
TL
55 .pages_per_sector = 256,
56 .nr_sectors = 32,
57 .name = "M25P16",
58 },
59 {
63ff6a66 60 .id = 0x2012,
7b7a869a
TL
61 .pages_per_sector = 256,
62 .nr_sectors = 4,
63 .name = "M25P20",
64 },
65 {
63ff6a66 66 .id = 0x2016,
7b7a869a
TL
67 .pages_per_sector = 256,
68 .nr_sectors = 64,
69 .name = "M25P32",
70 },
71 {
63ff6a66 72 .id = 0x2013,
7b7a869a
TL
73 .pages_per_sector = 256,
74 .nr_sectors = 8,
75 .name = "M25P40",
76 },
77 {
63ff6a66 78 .id = 0x2017,
7b7a869a
TL
79 .pages_per_sector = 256,
80 .nr_sectors = 128,
81 .name = "M25P64",
82 },
83 {
63ff6a66 84 .id = 0x2014,
7b7a869a
TL
85 .pages_per_sector = 256,
86 .nr_sectors = 16,
87 .name = "M25P80",
88 },
89 {
63ff6a66 90 .id = 0x2018,
7b7a869a
TL
91 .pages_per_sector = 1024,
92 .nr_sectors = 64,
93 .name = "M25P128",
94 },
c75c9212
JT
95 {
96 .id = 0xba16,
97 .pages_per_sector = 256,
98 .nr_sectors = 64,
99 .name = "N25Q32",
100 },
b1431dac
JT
101 {
102 .id = 0xbb16,
103 .pages_per_sector = 256,
104 .nr_sectors = 64,
105 .name = "N25Q32A",
106 },
3981d02e
JT
107 {
108 .id = 0xba17,
109 .pages_per_sector = 256,
110 .nr_sectors = 128,
111 .name = "N25Q064",
112 },
f785fcb6
JT
113 {
114 .id = 0xbb17,
115 .pages_per_sector = 256,
116 .nr_sectors = 128,
117 .name = "N25Q64A",
118 },
6ad6c6dc
SL
119 {
120 .id = 0xba18,
121 .pages_per_sector = 256,
122 .nr_sectors = 256,
123 .name = "N25Q128",
124 },
d945ce97
MS
125 {
126 .id = 0xbb18,
127 .pages_per_sector = 256,
128 .nr_sectors = 256,
129 .name = "N25Q128A",
130 },
b54d1f26 131 {
63ff6a66 132 .id = 0xba19,
b54d1f26
JC
133 .pages_per_sector = 256,
134 .nr_sectors = 512,
135 .name = "N25Q256",
136 },
7b7a869a
TL
137};
138
7b7a869a
TL
139struct spi_flash *spi_flash_probe_stmicro(struct spi_slave *spi, u8 * idcode)
140{
141 const struct stmicro_spi_flash_params *params;
b06afa75 142 struct spi_flash *flash;
7b7a869a 143 unsigned int i;
63ff6a66 144 u16 id;
7b7a869a 145
12c2e3bb
TC
146 if (idcode[0] == 0xff) {
147 i = spi_flash_cmd(spi, CMD_M25PXX_RES,
148 idcode, 4);
149 if (i)
150 return NULL;
151 if ((idcode[3] & 0xf0) == 0x10) {
152 idcode[0] = 0x20;
153 idcode[1] = 0x20;
154 idcode[2] = idcode[3] + 1;
155 } else
156 return NULL;
157 }
158
63ff6a66
SL
159 id = ((idcode[1] << 8) | idcode[2]);
160
7b7a869a
TL
161 for (i = 0; i < ARRAY_SIZE(stmicro_spi_flash_table); i++) {
162 params = &stmicro_spi_flash_table[i];
63ff6a66 163 if (params->id == id) {
7b7a869a
TL
164 break;
165 }
166 }
167
168 if (i == ARRAY_SIZE(stmicro_spi_flash_table)) {
63ff6a66 169 debug("SF: Unsupported STMicro ID %04x\n", id);
7b7a869a
TL
170 return NULL;
171 }
172
b06afa75
MF
173 flash = malloc(sizeof(*flash));
174 if (!flash) {
7b7a869a
TL
175 debug("SF: Failed to allocate memory\n");
176 return NULL;
177 }
178
b06afa75
MF
179 flash->spi = spi;
180 flash->name = params->name;
7b7a869a 181
b06afa75 182 flash->write = spi_flash_cmd_write_multi;
c4e932ce 183 flash->erase = spi_flash_cmd_erase;
b06afa75 184 flash->read = spi_flash_cmd_read_fast;
a4ed3b65
MF
185 flash->page_size = 256;
186 flash->sector_size = 256 * params->pages_per_sector;
b06afa75 187 flash->size = flash->sector_size * params->nr_sectors;
7b7a869a 188
b06afa75 189 return flash;
7b7a869a 190}