2 * (C) Copyright 2000-2002
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * Copyright 2008, Network Appliance Inc.
6 * Jason McMullan <mcmullan@netapp.com>
8 * Copyright (C) 2004-2007 Freescale Semiconductor, Inc.
9 * TsiChung Liew (Tsi-Chung.Liew@freescale.com)
11 * See file CREDITS for list of people who contributed to this
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.
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.
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,
32 #include <spi_flash.h>
34 #include "spi_flash_internal.h"
36 /* M25Pxx-specific commands */
37 #define CMD_M25PXX_SE 0xd8 /* Sector Erase */
38 #define CMD_M25PXX_BE 0xc7 /* Bulk Erase */
39 #define CMD_M25PXX_RES 0xab /* Release from DP, and Read Signature */
41 struct stmicro_spi_flash_params {
48 static const struct stmicro_spi_flash_params stmicro_spi_flash_table[] = {
51 .pages_per_sector = 128,
57 .pages_per_sector = 256,
63 .pages_per_sector = 256,
69 .pages_per_sector = 256,
75 .pages_per_sector = 256,
81 .pages_per_sector = 256,
87 .pages_per_sector = 256,
93 .pages_per_sector = 1024,
99 static int stmicro_erase(struct spi_flash *flash, u32 offset, size_t len)
101 return spi_flash_cmd_erase(flash, CMD_M25PXX_SE, offset, len);
104 struct spi_flash *spi_flash_probe_stmicro(struct spi_slave *spi, u8 * idcode)
106 const struct stmicro_spi_flash_params *params;
107 struct spi_flash *flash;
110 if (idcode[0] == 0xff) {
111 i = spi_flash_cmd(spi, CMD_M25PXX_RES,
115 if ((idcode[3] & 0xf0) == 0x10) {
118 idcode[2] = idcode[3] + 1;
123 for (i = 0; i < ARRAY_SIZE(stmicro_spi_flash_table); i++) {
124 params = &stmicro_spi_flash_table[i];
125 if (params->idcode1 == idcode[2]) {
130 if (i == ARRAY_SIZE(stmicro_spi_flash_table)) {
131 debug("SF: Unsupported STMicro ID %02x\n", idcode[1]);
135 flash = malloc(sizeof(*flash));
137 debug("SF: Failed to allocate memory\n");
142 flash->name = params->name;
144 flash->write = spi_flash_cmd_write_multi;
145 flash->erase = stmicro_erase;
146 flash->read = spi_flash_cmd_read_fast;
147 flash->page_size = 256;
148 flash->sector_size = 256 * params->pages_per_sector;
149 flash->size = flash->sector_size * params->nr_sectors;