TsiChung Liew | 7b7a869 | 2008-08-06 16:08:41 -0500 | [diff] [blame] | 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 */ |
TsiChung Liew | 7b7a869 | 2008-08-06 16:08:41 -0500 | [diff] [blame] | 37 | #define CMD_M25PXX_RES 0xab /* Release from DP, and Read Signature */ |
| 38 | |
TsiChung Liew | 7b7a869 | 2008-08-06 16:08:41 -0500 | [diff] [blame] | 39 | struct stmicro_spi_flash_params { |
Stephan Linz | 63ff6a6 | 2012-08-02 20:47:29 +0200 | [diff] [blame] | 40 | u16 id; |
TsiChung Liew | 7b7a869 | 2008-08-06 16:08:41 -0500 | [diff] [blame] | 41 | u16 pages_per_sector; |
| 42 | u16 nr_sectors; |
| 43 | const char *name; |
| 44 | }; |
| 45 | |
TsiChung Liew | 7b7a869 | 2008-08-06 16:08:41 -0500 | [diff] [blame] | 46 | static const struct stmicro_spi_flash_params stmicro_spi_flash_table[] = { |
| 47 | { |
Stephan Linz | 63ff6a6 | 2012-08-02 20:47:29 +0200 | [diff] [blame] | 48 | .id = 0x2011, |
Thomas Chou | 12c2e3b | 2010-04-30 21:11:20 +0800 | [diff] [blame] | 49 | .pages_per_sector = 128, |
| 50 | .nr_sectors = 4, |
| 51 | .name = "M25P10", |
| 52 | }, |
| 53 | { |
Stephan Linz | 63ff6a6 | 2012-08-02 20:47:29 +0200 | [diff] [blame] | 54 | .id = 0x2015, |
TsiChung Liew | 7b7a869 | 2008-08-06 16:08:41 -0500 | [diff] [blame] | 55 | .pages_per_sector = 256, |
| 56 | .nr_sectors = 32, |
| 57 | .name = "M25P16", |
| 58 | }, |
| 59 | { |
Stephan Linz | 63ff6a6 | 2012-08-02 20:47:29 +0200 | [diff] [blame] | 60 | .id = 0x2012, |
TsiChung Liew | 7b7a869 | 2008-08-06 16:08:41 -0500 | [diff] [blame] | 61 | .pages_per_sector = 256, |
| 62 | .nr_sectors = 4, |
| 63 | .name = "M25P20", |
| 64 | }, |
| 65 | { |
Stephan Linz | 63ff6a6 | 2012-08-02 20:47:29 +0200 | [diff] [blame] | 66 | .id = 0x2016, |
TsiChung Liew | 7b7a869 | 2008-08-06 16:08:41 -0500 | [diff] [blame] | 67 | .pages_per_sector = 256, |
| 68 | .nr_sectors = 64, |
| 69 | .name = "M25P32", |
| 70 | }, |
| 71 | { |
Stephan Linz | 63ff6a6 | 2012-08-02 20:47:29 +0200 | [diff] [blame] | 72 | .id = 0x2013, |
TsiChung Liew | 7b7a869 | 2008-08-06 16:08:41 -0500 | [diff] [blame] | 73 | .pages_per_sector = 256, |
| 74 | .nr_sectors = 8, |
| 75 | .name = "M25P40", |
| 76 | }, |
| 77 | { |
Stephan Linz | 63ff6a6 | 2012-08-02 20:47:29 +0200 | [diff] [blame] | 78 | .id = 0x2017, |
TsiChung Liew | 7b7a869 | 2008-08-06 16:08:41 -0500 | [diff] [blame] | 79 | .pages_per_sector = 256, |
| 80 | .nr_sectors = 128, |
| 81 | .name = "M25P64", |
| 82 | }, |
| 83 | { |
Stephan Linz | 63ff6a6 | 2012-08-02 20:47:29 +0200 | [diff] [blame] | 84 | .id = 0x2014, |
TsiChung Liew | 7b7a869 | 2008-08-06 16:08:41 -0500 | [diff] [blame] | 85 | .pages_per_sector = 256, |
| 86 | .nr_sectors = 16, |
| 87 | .name = "M25P80", |
| 88 | }, |
| 89 | { |
Stephan Linz | 63ff6a6 | 2012-08-02 20:47:29 +0200 | [diff] [blame] | 90 | .id = 0x2018, |
TsiChung Liew | 7b7a869 | 2008-08-06 16:08:41 -0500 | [diff] [blame] | 91 | .pages_per_sector = 1024, |
| 92 | .nr_sectors = 64, |
| 93 | .name = "M25P128", |
| 94 | }, |
Jérôme Carretero | b54d1f2 | 2012-04-08 10:55:55 +0000 | [diff] [blame] | 95 | { |
Jagannadha Sutradharudu Teki | c75c921 | 2013-01-29 17:13:36 +0530 | [diff] [blame] | 96 | .id = 0xba16, |
| 97 | .pages_per_sector = 256, |
| 98 | .nr_sectors = 64, |
| 99 | .name = "N25Q32", |
| 100 | }, |
| 101 | { |
Jagannadha Sutradharudu Teki | b1431da | 2013-01-29 17:13:37 +0530 | [diff] [blame] | 102 | .id = 0xbb16, |
| 103 | .pages_per_sector = 256, |
| 104 | .nr_sectors = 64, |
| 105 | .name = "N25Q32A", |
| 106 | }, |
| 107 | { |
Jagannadha Sutradharudu Teki | 3981d02 | 2012-12-12 04:48:56 +0000 | [diff] [blame] | 108 | .id = 0xba17, |
| 109 | .pages_per_sector = 256, |
| 110 | .nr_sectors = 128, |
| 111 | .name = "N25Q064", |
| 112 | }, |
| 113 | { |
Jagannadha Sutradharudu Teki | f785fcb | 2013-01-23 18:21:45 +0530 | [diff] [blame] | 114 | .id = 0xbb17, |
| 115 | .pages_per_sector = 256, |
| 116 | .nr_sectors = 128, |
| 117 | .name = "N25Q64A", |
| 118 | }, |
| 119 | { |
Stephan Linz | 6ad6c6d | 2012-08-02 20:47:30 +0200 | [diff] [blame] | 120 | .id = 0xba18, |
| 121 | .pages_per_sector = 256, |
| 122 | .nr_sectors = 256, |
| 123 | .name = "N25Q128", |
| 124 | }, |
| 125 | { |
Michal Simek | d945ce9 | 2012-08-10 14:21:46 +0200 | [diff] [blame] | 126 | .id = 0xbb18, |
| 127 | .pages_per_sector = 256, |
| 128 | .nr_sectors = 256, |
| 129 | .name = "N25Q128A", |
| 130 | }, |
| 131 | { |
Stephan Linz | 63ff6a6 | 2012-08-02 20:47:29 +0200 | [diff] [blame] | 132 | .id = 0xba19, |
Jérôme Carretero | b54d1f2 | 2012-04-08 10:55:55 +0000 | [diff] [blame] | 133 | .pages_per_sector = 256, |
| 134 | .nr_sectors = 512, |
| 135 | .name = "N25Q256", |
| 136 | }, |
Jagannadha Sutradharudu Teki | d62ef56 | 2013-01-29 17:13:38 +0530 | [diff] [blame] | 137 | { |
| 138 | .id = 0xbb19, |
| 139 | .pages_per_sector = 256, |
| 140 | .nr_sectors = 512, |
| 141 | .name = "N25Q256A", |
| 142 | }, |
TsiChung Liew | 7b7a869 | 2008-08-06 16:08:41 -0500 | [diff] [blame] | 143 | }; |
| 144 | |
TsiChung Liew | 7b7a869 | 2008-08-06 16:08:41 -0500 | [diff] [blame] | 145 | struct spi_flash *spi_flash_probe_stmicro(struct spi_slave *spi, u8 * idcode) |
| 146 | { |
| 147 | const struct stmicro_spi_flash_params *params; |
Mike Frysinger | b06afa7 | 2011-06-28 07:38:10 +0000 | [diff] [blame] | 148 | struct spi_flash *flash; |
TsiChung Liew | 7b7a869 | 2008-08-06 16:08:41 -0500 | [diff] [blame] | 149 | unsigned int i; |
Stephan Linz | 63ff6a6 | 2012-08-02 20:47:29 +0200 | [diff] [blame] | 150 | u16 id; |
TsiChung Liew | 7b7a869 | 2008-08-06 16:08:41 -0500 | [diff] [blame] | 151 | |
Thomas Chou | 12c2e3b | 2010-04-30 21:11:20 +0800 | [diff] [blame] | 152 | if (idcode[0] == 0xff) { |
| 153 | i = spi_flash_cmd(spi, CMD_M25PXX_RES, |
| 154 | idcode, 4); |
| 155 | if (i) |
| 156 | return NULL; |
| 157 | if ((idcode[3] & 0xf0) == 0x10) { |
| 158 | idcode[0] = 0x20; |
| 159 | idcode[1] = 0x20; |
| 160 | idcode[2] = idcode[3] + 1; |
| 161 | } else |
| 162 | return NULL; |
| 163 | } |
| 164 | |
Stephan Linz | 63ff6a6 | 2012-08-02 20:47:29 +0200 | [diff] [blame] | 165 | id = ((idcode[1] << 8) | idcode[2]); |
| 166 | |
TsiChung Liew | 7b7a869 | 2008-08-06 16:08:41 -0500 | [diff] [blame] | 167 | for (i = 0; i < ARRAY_SIZE(stmicro_spi_flash_table); i++) { |
| 168 | params = &stmicro_spi_flash_table[i]; |
Stephan Linz | 63ff6a6 | 2012-08-02 20:47:29 +0200 | [diff] [blame] | 169 | if (params->id == id) { |
TsiChung Liew | 7b7a869 | 2008-08-06 16:08:41 -0500 | [diff] [blame] | 170 | break; |
| 171 | } |
| 172 | } |
| 173 | |
| 174 | if (i == ARRAY_SIZE(stmicro_spi_flash_table)) { |
Stephan Linz | 63ff6a6 | 2012-08-02 20:47:29 +0200 | [diff] [blame] | 175 | debug("SF: Unsupported STMicro ID %04x\n", id); |
TsiChung Liew | 7b7a869 | 2008-08-06 16:08:41 -0500 | [diff] [blame] | 176 | return NULL; |
| 177 | } |
| 178 | |
Mike Frysinger | b06afa7 | 2011-06-28 07:38:10 +0000 | [diff] [blame] | 179 | flash = malloc(sizeof(*flash)); |
| 180 | if (!flash) { |
TsiChung Liew | 7b7a869 | 2008-08-06 16:08:41 -0500 | [diff] [blame] | 181 | debug("SF: Failed to allocate memory\n"); |
| 182 | return NULL; |
| 183 | } |
| 184 | |
Mike Frysinger | b06afa7 | 2011-06-28 07:38:10 +0000 | [diff] [blame] | 185 | flash->spi = spi; |
| 186 | flash->name = params->name; |
TsiChung Liew | 7b7a869 | 2008-08-06 16:08:41 -0500 | [diff] [blame] | 187 | |
Mike Frysinger | b06afa7 | 2011-06-28 07:38:10 +0000 | [diff] [blame] | 188 | flash->write = spi_flash_cmd_write_multi; |
Mike Frysinger | c4e932c | 2012-03-04 22:35:50 -0500 | [diff] [blame] | 189 | flash->erase = spi_flash_cmd_erase; |
Mike Frysinger | b06afa7 | 2011-06-28 07:38:10 +0000 | [diff] [blame] | 190 | flash->read = spi_flash_cmd_read_fast; |
Mike Frysinger | a4ed3b6 | 2012-03-04 22:56:52 -0500 | [diff] [blame] | 191 | flash->page_size = 256; |
| 192 | flash->sector_size = 256 * params->pages_per_sector; |
Mike Frysinger | b06afa7 | 2011-06-28 07:38:10 +0000 | [diff] [blame] | 193 | flash->size = flash->sector_size * params->nr_sectors; |
TsiChung Liew | 7b7a869 | 2008-08-06 16:08:41 -0500 | [diff] [blame] | 194 | |
Mike Frysinger | b06afa7 | 2011-06-28 07:38:10 +0000 | [diff] [blame] | 195 | return flash; |
TsiChung Liew | 7b7a869 | 2008-08-06 16:08:41 -0500 | [diff] [blame] | 196 | } |