blob: 600e5311b921d8e5fd20c8d3128068a3c0af2c83 [file] [log] [blame]
TsiChung Liew7b7a8692008-08-06 16:08:41 -05001/*
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 */
TsiChung Liew7b7a8692008-08-06 16:08:41 -050037#define CMD_M25PXX_RES 0xab /* Release from DP, and Read Signature */
38
TsiChung Liew7b7a8692008-08-06 16:08:41 -050039struct stmicro_spi_flash_params {
Stephan Linz63ff6a62012-08-02 20:47:29 +020040 u16 id;
TsiChung Liew7b7a8692008-08-06 16:08:41 -050041 u16 pages_per_sector;
42 u16 nr_sectors;
43 const char *name;
44};
45
TsiChung Liew7b7a8692008-08-06 16:08:41 -050046static const struct stmicro_spi_flash_params stmicro_spi_flash_table[] = {
47 {
Stephan Linz63ff6a62012-08-02 20:47:29 +020048 .id = 0x2011,
Thomas Chou12c2e3b2010-04-30 21:11:20 +080049 .pages_per_sector = 128,
50 .nr_sectors = 4,
51 .name = "M25P10",
52 },
53 {
Stephan Linz63ff6a62012-08-02 20:47:29 +020054 .id = 0x2015,
TsiChung Liew7b7a8692008-08-06 16:08:41 -050055 .pages_per_sector = 256,
56 .nr_sectors = 32,
57 .name = "M25P16",
58 },
59 {
Stephan Linz63ff6a62012-08-02 20:47:29 +020060 .id = 0x2012,
TsiChung Liew7b7a8692008-08-06 16:08:41 -050061 .pages_per_sector = 256,
62 .nr_sectors = 4,
63 .name = "M25P20",
64 },
65 {
Stephan Linz63ff6a62012-08-02 20:47:29 +020066 .id = 0x2016,
TsiChung Liew7b7a8692008-08-06 16:08:41 -050067 .pages_per_sector = 256,
68 .nr_sectors = 64,
69 .name = "M25P32",
70 },
71 {
Stephan Linz63ff6a62012-08-02 20:47:29 +020072 .id = 0x2013,
TsiChung Liew7b7a8692008-08-06 16:08:41 -050073 .pages_per_sector = 256,
74 .nr_sectors = 8,
75 .name = "M25P40",
76 },
77 {
Stephan Linz63ff6a62012-08-02 20:47:29 +020078 .id = 0x2017,
TsiChung Liew7b7a8692008-08-06 16:08:41 -050079 .pages_per_sector = 256,
80 .nr_sectors = 128,
81 .name = "M25P64",
82 },
83 {
Stephan Linz63ff6a62012-08-02 20:47:29 +020084 .id = 0x2014,
TsiChung Liew7b7a8692008-08-06 16:08:41 -050085 .pages_per_sector = 256,
86 .nr_sectors = 16,
87 .name = "M25P80",
88 },
89 {
Stephan Linz63ff6a62012-08-02 20:47:29 +020090 .id = 0x2018,
TsiChung Liew7b7a8692008-08-06 16:08:41 -050091 .pages_per_sector = 1024,
92 .nr_sectors = 64,
93 .name = "M25P128",
94 },
Jérôme Carreterob54d1f22012-04-08 10:55:55 +000095 {
Stephan Linz6ad6c6d2012-08-02 20:47:30 +020096 .id = 0xba18,
97 .pages_per_sector = 256,
98 .nr_sectors = 256,
99 .name = "N25Q128",
100 },
101 {
Stephan Linz63ff6a62012-08-02 20:47:29 +0200102 .id = 0xba19,
Jérôme Carreterob54d1f22012-04-08 10:55:55 +0000103 .pages_per_sector = 256,
104 .nr_sectors = 512,
105 .name = "N25Q256",
106 },
TsiChung Liew7b7a8692008-08-06 16:08:41 -0500107};
108
TsiChung Liew7b7a8692008-08-06 16:08:41 -0500109struct spi_flash *spi_flash_probe_stmicro(struct spi_slave *spi, u8 * idcode)
110{
111 const struct stmicro_spi_flash_params *params;
Mike Frysingerb06afa72011-06-28 07:38:10 +0000112 struct spi_flash *flash;
TsiChung Liew7b7a8692008-08-06 16:08:41 -0500113 unsigned int i;
Stephan Linz63ff6a62012-08-02 20:47:29 +0200114 u16 id;
TsiChung Liew7b7a8692008-08-06 16:08:41 -0500115
Thomas Chou12c2e3b2010-04-30 21:11:20 +0800116 if (idcode[0] == 0xff) {
117 i = spi_flash_cmd(spi, CMD_M25PXX_RES,
118 idcode, 4);
119 if (i)
120 return NULL;
121 if ((idcode[3] & 0xf0) == 0x10) {
122 idcode[0] = 0x20;
123 idcode[1] = 0x20;
124 idcode[2] = idcode[3] + 1;
125 } else
126 return NULL;
127 }
128
Stephan Linz63ff6a62012-08-02 20:47:29 +0200129 id = ((idcode[1] << 8) | idcode[2]);
130
TsiChung Liew7b7a8692008-08-06 16:08:41 -0500131 for (i = 0; i < ARRAY_SIZE(stmicro_spi_flash_table); i++) {
132 params = &stmicro_spi_flash_table[i];
Stephan Linz63ff6a62012-08-02 20:47:29 +0200133 if (params->id == id) {
TsiChung Liew7b7a8692008-08-06 16:08:41 -0500134 break;
135 }
136 }
137
138 if (i == ARRAY_SIZE(stmicro_spi_flash_table)) {
Stephan Linz63ff6a62012-08-02 20:47:29 +0200139 debug("SF: Unsupported STMicro ID %04x\n", id);
TsiChung Liew7b7a8692008-08-06 16:08:41 -0500140 return NULL;
141 }
142
Mike Frysingerb06afa72011-06-28 07:38:10 +0000143 flash = malloc(sizeof(*flash));
144 if (!flash) {
TsiChung Liew7b7a8692008-08-06 16:08:41 -0500145 debug("SF: Failed to allocate memory\n");
146 return NULL;
147 }
148
Mike Frysingerb06afa72011-06-28 07:38:10 +0000149 flash->spi = spi;
150 flash->name = params->name;
TsiChung Liew7b7a8692008-08-06 16:08:41 -0500151
Mike Frysingerb06afa72011-06-28 07:38:10 +0000152 flash->write = spi_flash_cmd_write_multi;
Mike Frysingerc4e932c2012-03-04 22:35:50 -0500153 flash->erase = spi_flash_cmd_erase;
Mike Frysingerb06afa72011-06-28 07:38:10 +0000154 flash->read = spi_flash_cmd_read_fast;
Mike Frysingera4ed3b62012-03-04 22:56:52 -0500155 flash->page_size = 256;
156 flash->sector_size = 256 * params->pages_per_sector;
Mike Frysingerb06afa72011-06-28 07:38:10 +0000157 flash->size = flash->sector_size * params->nr_sectors;
TsiChung Liew7b7a8692008-08-06 16:08:41 -0500158
Mike Frysingerb06afa72011-06-28 07:38:10 +0000159 return flash;
TsiChung Liew7b7a8692008-08-06 16:08:41 -0500160}