Carl-Daniel Hailfinger | 7053926 | 2007-10-15 21:45:29 +0000 | [diff] [blame] | 1 | /* |
| 2 | * This file is part of the flashrom project. |
| 3 | * |
Ronald Hoogenboom | 7ff530b | 2008-01-19 00:04:46 +0000 | [diff] [blame] | 4 | * Copyright (C) 2007, 2008 Carl-Daniel Hailfinger |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 5 | * Copyright (C) 2008 coresystems GmbH |
Carl-Daniel Hailfinger | 7053926 | 2007-10-15 21:45:29 +0000 | [diff] [blame] | 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License as published by |
| 9 | * the Free Software Foundation; version 2 of the License. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | * GNU General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with this program; if not, write to the Free Software |
| 18 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 19 | */ |
| 20 | |
| 21 | /* |
| 22 | * Contains the generic SPI framework |
| 23 | */ |
| 24 | |
| 25 | #include <stdio.h> |
| 26 | #include <pci/pci.h> |
| 27 | #include <stdint.h> |
| 28 | #include <string.h> |
| 29 | #include "flash.h" |
Carl-Daniel Hailfinger | d6cbf76 | 2008-05-13 14:58:23 +0000 | [diff] [blame] | 30 | #include "spi.h" |
Carl-Daniel Hailfinger | 7053926 | 2007-10-15 21:45:29 +0000 | [diff] [blame] | 31 | |
Ronald Hoogenboom | 7ff530b | 2008-01-19 00:04:46 +0000 | [diff] [blame] | 32 | |
| 33 | void spi_prettyprint_status_register(struct flashchip *flash); |
Carl-Daniel Hailfinger | 7053926 | 2007-10-15 21:45:29 +0000 | [diff] [blame] | 34 | |
Peter Stuge | fa8c550 | 2008-05-10 23:07:52 +0000 | [diff] [blame] | 35 | int spi_command(unsigned int writecnt, unsigned int readcnt, const unsigned char *writearr, unsigned char *readarr) |
Carl-Daniel Hailfinger | 3d94a0e | 2007-10-16 21:09:06 +0000 | [diff] [blame] | 36 | { |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 37 | switch (flashbus) { |
| 38 | case BUS_TYPE_IT87XX_SPI: |
Carl-Daniel Hailfinger | a5b8efd | 2008-05-10 23:40:51 +0000 | [diff] [blame] | 39 | return it8716f_spi_command(writecnt, readcnt, writearr, readarr); |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 40 | case BUS_TYPE_ICH7_SPI: |
| 41 | case BUS_TYPE_ICH9_SPI: |
| 42 | case BUS_TYPE_VIA_SPI: |
| 43 | return ich_spi_command(writecnt, readcnt, writearr, readarr); |
| 44 | default: |
| 45 | printf_debug("%s called, but no SPI chipset/strapping detected\n", __FUNCTION__); |
| 46 | } |
Carl-Daniel Hailfinger | 3d94a0e | 2007-10-16 21:09:06 +0000 | [diff] [blame] | 47 | return 1; |
| 48 | } |
| 49 | |
Rudolf Marek | 48a85e4 | 2008-06-30 21:45:17 +0000 | [diff] [blame] | 50 | static int spi_rdid(unsigned char *readarr, int bytes) |
Carl-Daniel Hailfinger | 7053926 | 2007-10-15 21:45:29 +0000 | [diff] [blame] | 51 | { |
Carl-Daniel Hailfinger | 228231f | 2008-05-13 14:01:22 +0000 | [diff] [blame] | 52 | const unsigned char cmd[JEDEC_RDID_OUTSIZE] = {JEDEC_RDID}; |
Carl-Daniel Hailfinger | 7053926 | 2007-10-15 21:45:29 +0000 | [diff] [blame] | 53 | |
Peter Stuge | f83221b | 2008-07-07 06:38:51 +0000 | [diff] [blame] | 54 | if (spi_command(sizeof(cmd), bytes, cmd, readarr)) |
Carl-Daniel Hailfinger | 7053926 | 2007-10-15 21:45:29 +0000 | [diff] [blame] | 55 | return 1; |
Carl-Daniel Hailfinger | 9a3ec82 | 2007-12-29 10:15:58 +0000 | [diff] [blame] | 56 | printf_debug("RDID returned %02x %02x %02x.\n", readarr[0], readarr[1], readarr[2]); |
Carl-Daniel Hailfinger | 7053926 | 2007-10-15 21:45:29 +0000 | [diff] [blame] | 57 | return 0; |
| 58 | } |
| 59 | |
Carl-Daniel Hailfinger | 42c5497 | 2008-05-15 03:19:49 +0000 | [diff] [blame] | 60 | static int spi_res(unsigned char *readarr) |
| 61 | { |
| 62 | const unsigned char cmd[JEDEC_RES_OUTSIZE] = {JEDEC_RES, 0, 0, 0}; |
| 63 | |
Peter Stuge | f83221b | 2008-07-07 06:38:51 +0000 | [diff] [blame] | 64 | if (spi_command(sizeof(cmd), JEDEC_RES_INSIZE, cmd, readarr)) |
Carl-Daniel Hailfinger | 42c5497 | 2008-05-15 03:19:49 +0000 | [diff] [blame] | 65 | return 1; |
| 66 | printf_debug("RES returned %02x.\n", readarr[0]); |
| 67 | return 0; |
| 68 | } |
| 69 | |
Peter Stuge | fa8c550 | 2008-05-10 23:07:52 +0000 | [diff] [blame] | 70 | void spi_write_enable() |
Carl-Daniel Hailfinger | 6b44496 | 2007-10-18 00:24:07 +0000 | [diff] [blame] | 71 | { |
Carl-Daniel Hailfinger | 228231f | 2008-05-13 14:01:22 +0000 | [diff] [blame] | 72 | const unsigned char cmd[JEDEC_WREN_OUTSIZE] = {JEDEC_WREN}; |
Carl-Daniel Hailfinger | 6b44496 | 2007-10-18 00:24:07 +0000 | [diff] [blame] | 73 | |
| 74 | /* Send WREN (Write Enable) */ |
Peter Stuge | f83221b | 2008-07-07 06:38:51 +0000 | [diff] [blame] | 75 | spi_command(sizeof(cmd), 0, cmd, NULL); |
Carl-Daniel Hailfinger | 6b44496 | 2007-10-18 00:24:07 +0000 | [diff] [blame] | 76 | } |
| 77 | |
Peter Stuge | fa8c550 | 2008-05-10 23:07:52 +0000 | [diff] [blame] | 78 | void spi_write_disable() |
Carl-Daniel Hailfinger | 6b44496 | 2007-10-18 00:24:07 +0000 | [diff] [blame] | 79 | { |
Carl-Daniel Hailfinger | 228231f | 2008-05-13 14:01:22 +0000 | [diff] [blame] | 80 | const unsigned char cmd[JEDEC_WRDI_OUTSIZE] = {JEDEC_WRDI}; |
Carl-Daniel Hailfinger | 6b44496 | 2007-10-18 00:24:07 +0000 | [diff] [blame] | 81 | |
| 82 | /* Send WRDI (Write Disable) */ |
Peter Stuge | f83221b | 2008-07-07 06:38:51 +0000 | [diff] [blame] | 83 | spi_command(sizeof(cmd), 0, cmd, NULL); |
Carl-Daniel Hailfinger | 6b44496 | 2007-10-18 00:24:07 +0000 | [diff] [blame] | 84 | } |
| 85 | |
Rudolf Marek | 48a85e4 | 2008-06-30 21:45:17 +0000 | [diff] [blame] | 86 | static int probe_spi_rdid_generic(struct flashchip *flash, int bytes) |
Carl-Daniel Hailfinger | 7053926 | 2007-10-15 21:45:29 +0000 | [diff] [blame] | 87 | { |
Rudolf Marek | 48a85e4 | 2008-06-30 21:45:17 +0000 | [diff] [blame] | 88 | unsigned char readarr[4]; |
Carl-Daniel Hailfinger | 1263d2a | 2008-02-06 22:07:58 +0000 | [diff] [blame] | 89 | uint32_t manuf_id; |
| 90 | uint32_t model_id; |
Carl-Daniel Hailfinger | 9a3ec82 | 2007-12-29 10:15:58 +0000 | [diff] [blame] | 91 | |
Rudolf Marek | 48a85e4 | 2008-06-30 21:45:17 +0000 | [diff] [blame] | 92 | if (spi_rdid(readarr, bytes)) |
Peter Stuge | da4e5f3 | 2008-06-24 01:22:03 +0000 | [diff] [blame] | 93 | return 0; |
| 94 | |
| 95 | if (!oddparity(readarr[0])) |
| 96 | printf_debug("RDID byte 0 parity violation.\n"); |
| 97 | |
| 98 | /* Check if this is a continuation vendor ID */ |
| 99 | if (readarr[0] == 0x7f) { |
| 100 | if (!oddparity(readarr[1])) |
| 101 | printf_debug("RDID byte 1 parity violation.\n"); |
| 102 | manuf_id = (readarr[0] << 8) | readarr[1]; |
| 103 | model_id = readarr[2]; |
Rudolf Marek | 48a85e4 | 2008-06-30 21:45:17 +0000 | [diff] [blame] | 104 | if (bytes > 3) { |
| 105 | model_id <<= 8; |
| 106 | model_id |= readarr[3]; |
| 107 | } |
Peter Stuge | da4e5f3 | 2008-06-24 01:22:03 +0000 | [diff] [blame] | 108 | } else { |
| 109 | manuf_id = readarr[0]; |
| 110 | model_id = (readarr[1] << 8) | readarr[2]; |
Carl-Daniel Hailfinger | 7053926 | 2007-10-15 21:45:29 +0000 | [diff] [blame] | 111 | } |
| 112 | |
Peter Stuge | da4e5f3 | 2008-06-24 01:22:03 +0000 | [diff] [blame] | 113 | printf_debug("%s: id1 0x%x, id2 0x%x\n", __FUNCTION__, manuf_id, model_id); |
| 114 | |
| 115 | if (manuf_id == flash->manufacture_id && |
| 116 | model_id == flash->model_id) { |
| 117 | /* Print the status register to tell the |
| 118 | * user about possible write protection. |
| 119 | */ |
| 120 | spi_prettyprint_status_register(flash); |
| 121 | |
| 122 | return 1; |
| 123 | } |
| 124 | |
| 125 | /* Test if this is a pure vendor match. */ |
| 126 | if (manuf_id == flash->manufacture_id && |
| 127 | GENERIC_DEVICE_ID == flash->model_id) |
| 128 | return 1; |
| 129 | |
Carl-Daniel Hailfinger | 7053926 | 2007-10-15 21:45:29 +0000 | [diff] [blame] | 130 | return 0; |
| 131 | } |
| 132 | |
Rudolf Marek | 48a85e4 | 2008-06-30 21:45:17 +0000 | [diff] [blame] | 133 | int probe_spi_rdid(struct flashchip *flash) { |
| 134 | return probe_spi_rdid_generic(flash, 3); |
| 135 | } |
| 136 | |
| 137 | /* support 4 bytes flash ID */ |
| 138 | int probe_spi_rdid4(struct flashchip *flash) { |
| 139 | |
| 140 | /* only some SPI chipsets support 4 bytes commands */ |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 141 | switch (flashbus) { |
| 142 | case BUS_TYPE_ICH7_SPI: |
| 143 | case BUS_TYPE_ICH9_SPI: |
| 144 | case BUS_TYPE_VIA_SPI: |
| 145 | return probe_spi_rdid_generic(flash, 4); |
| 146 | default: |
| 147 | printf_debug("4b ID not supported on this SPI controller\n"); |
| 148 | } |
| 149 | |
| 150 | return 0; |
Rudolf Marek | 48a85e4 | 2008-06-30 21:45:17 +0000 | [diff] [blame] | 151 | } |
| 152 | |
Carl-Daniel Hailfinger | 42c5497 | 2008-05-15 03:19:49 +0000 | [diff] [blame] | 153 | int probe_spi_res(struct flashchip *flash) |
| 154 | { |
| 155 | unsigned char readarr[3]; |
| 156 | uint32_t model_id; |
Peter Stuge | da4e5f3 | 2008-06-24 01:22:03 +0000 | [diff] [blame] | 157 | |
Rudolf Marek | 48a85e4 | 2008-06-30 21:45:17 +0000 | [diff] [blame] | 158 | if (spi_rdid(readarr, 3)) |
Carl-Daniel Hailfinger | 42c5497 | 2008-05-15 03:19:49 +0000 | [diff] [blame] | 159 | /* We couldn't issue RDID, it's pointless to try RES. */ |
| 160 | return 0; |
Carl-Daniel Hailfinger | 42c5497 | 2008-05-15 03:19:49 +0000 | [diff] [blame] | 161 | |
Peter Stuge | da4e5f3 | 2008-06-24 01:22:03 +0000 | [diff] [blame] | 162 | /* Check if RDID returns 0xff 0xff 0xff, then we use RES. */ |
| 163 | if ((readarr[0] != 0xff) || (readarr[1] != 0xff) || |
| 164 | (readarr[2] != 0xff)) |
| 165 | return 0; |
Carl-Daniel Hailfinger | 42c5497 | 2008-05-15 03:19:49 +0000 | [diff] [blame] | 166 | |
Peter Stuge | da4e5f3 | 2008-06-24 01:22:03 +0000 | [diff] [blame] | 167 | if (spi_res(readarr)) |
| 168 | return 0; |
| 169 | |
| 170 | model_id = readarr[0]; |
| 171 | printf_debug("%s: id 0x%x\n", __FUNCTION__, model_id); |
| 172 | if (model_id != flash->model_id) |
| 173 | return 0; |
| 174 | |
| 175 | /* Print the status register to tell the |
| 176 | * user about possible write protection. |
| 177 | */ |
| 178 | spi_prettyprint_status_register(flash); |
| 179 | return 1; |
Carl-Daniel Hailfinger | 42c5497 | 2008-05-15 03:19:49 +0000 | [diff] [blame] | 180 | } |
| 181 | |
Peter Stuge | fa8c550 | 2008-05-10 23:07:52 +0000 | [diff] [blame] | 182 | uint8_t spi_read_status_register() |
Carl-Daniel Hailfinger | 6b44496 | 2007-10-18 00:24:07 +0000 | [diff] [blame] | 183 | { |
Carl-Daniel Hailfinger | 228231f | 2008-05-13 14:01:22 +0000 | [diff] [blame] | 184 | const unsigned char cmd[JEDEC_RDSR_OUTSIZE] = {JEDEC_RDSR}; |
Peter Stuge | f83221b | 2008-07-07 06:38:51 +0000 | [diff] [blame] | 185 | unsigned char readarr[JEDEC_RDSR_INSIZE]; |
Carl-Daniel Hailfinger | 6b44496 | 2007-10-18 00:24:07 +0000 | [diff] [blame] | 186 | |
| 187 | /* Read Status Register */ |
Peter Stuge | f83221b | 2008-07-07 06:38:51 +0000 | [diff] [blame] | 188 | spi_command(sizeof(cmd), sizeof(readarr), cmd, readarr); |
Carl-Daniel Hailfinger | 6b44496 | 2007-10-18 00:24:07 +0000 | [diff] [blame] | 189 | return readarr[0]; |
| 190 | } |
| 191 | |
Ronald Hoogenboom | 7ff530b | 2008-01-19 00:04:46 +0000 | [diff] [blame] | 192 | /* Prettyprint the status register. Common definitions. |
| 193 | */ |
| 194 | void spi_prettyprint_status_register_common(uint8_t status) |
| 195 | { |
| 196 | printf_debug("Chip status register: Bit 5 / Block Protect 3 (BP3) is " |
| 197 | "%sset\n", (status & (1 << 5)) ? "" : "not "); |
| 198 | printf_debug("Chip status register: Bit 4 / Block Protect 2 (BP2) is " |
| 199 | "%sset\n", (status & (1 << 4)) ? "" : "not "); |
| 200 | printf_debug("Chip status register: Bit 3 / Block Protect 1 (BP1) is " |
| 201 | "%sset\n", (status & (1 << 3)) ? "" : "not "); |
| 202 | printf_debug("Chip status register: Bit 2 / Block Protect 0 (BP0) is " |
| 203 | "%sset\n", (status & (1 << 2)) ? "" : "not "); |
| 204 | printf_debug("Chip status register: Write Enable Latch (WEL) is " |
| 205 | "%sset\n", (status & (1 << 1)) ? "" : "not "); |
| 206 | printf_debug("Chip status register: Write In Progress (WIP/BUSY) is " |
| 207 | "%sset\n", (status & (1 << 0)) ? "" : "not "); |
| 208 | } |
| 209 | |
Carl-Daniel Hailfinger | 9a3ec82 | 2007-12-29 10:15:58 +0000 | [diff] [blame] | 210 | /* Prettyprint the status register. Works for |
| 211 | * ST M25P series |
| 212 | * MX MX25L series |
| 213 | */ |
Ronald Hoogenboom | 7ff530b | 2008-01-19 00:04:46 +0000 | [diff] [blame] | 214 | void spi_prettyprint_status_register_st_m25p(uint8_t status) |
Carl-Daniel Hailfinger | 9a3ec82 | 2007-12-29 10:15:58 +0000 | [diff] [blame] | 215 | { |
| 216 | printf_debug("Chip status register: Status Register Write Disable " |
| 217 | "(SRWD) is %sset\n", (status & (1 << 7)) ? "" : "not "); |
| 218 | printf_debug("Chip status register: Bit 6 is " |
| 219 | "%sset\n", (status & (1 << 6)) ? "" : "not "); |
Ronald Hoogenboom | 7ff530b | 2008-01-19 00:04:46 +0000 | [diff] [blame] | 220 | spi_prettyprint_status_register_common(status); |
Carl-Daniel Hailfinger | 9a3ec82 | 2007-12-29 10:15:58 +0000 | [diff] [blame] | 221 | } |
| 222 | |
Ronald Hoogenboom | 7ff530b | 2008-01-19 00:04:46 +0000 | [diff] [blame] | 223 | /* Prettyprint the status register. Works for |
| 224 | * SST 25VF016 |
| 225 | */ |
| 226 | void spi_prettyprint_status_register_sst25vf016(uint8_t status) |
| 227 | { |
Carl-Daniel Hailfinger | d3568ad | 2008-01-22 14:37:31 +0000 | [diff] [blame] | 228 | const char *bpt[] = { |
Ronald Hoogenboom | 7ff530b | 2008-01-19 00:04:46 +0000 | [diff] [blame] | 229 | "none", |
| 230 | "1F0000H-1FFFFFH", |
| 231 | "1E0000H-1FFFFFH", |
| 232 | "1C0000H-1FFFFFH", |
| 233 | "180000H-1FFFFFH", |
| 234 | "100000H-1FFFFFH", |
Carl-Daniel Hailfinger | d3568ad | 2008-01-22 14:37:31 +0000 | [diff] [blame] | 235 | "all", "all" |
Ronald Hoogenboom | 7ff530b | 2008-01-19 00:04:46 +0000 | [diff] [blame] | 236 | }; |
| 237 | printf_debug("Chip status register: Block Protect Write Disable " |
| 238 | "(BPL) is %sset\n", (status & (1 << 7)) ? "" : "not "); |
| 239 | printf_debug("Chip status register: Auto Address Increment Programming " |
| 240 | "(AAI) is %sset\n", (status & (1 << 6)) ? "" : "not "); |
| 241 | spi_prettyprint_status_register_common(status); |
| 242 | printf_debug("Resulting block protection : %s\n", |
| 243 | bpt[(status & 0x1c) >> 2]); |
| 244 | } |
| 245 | |
| 246 | void spi_prettyprint_status_register(struct flashchip *flash) |
Carl-Daniel Hailfinger | 9a3ec82 | 2007-12-29 10:15:58 +0000 | [diff] [blame] | 247 | { |
| 248 | uint8_t status; |
| 249 | |
Peter Stuge | fa8c550 | 2008-05-10 23:07:52 +0000 | [diff] [blame] | 250 | status = spi_read_status_register(); |
Carl-Daniel Hailfinger | 9a3ec82 | 2007-12-29 10:15:58 +0000 | [diff] [blame] | 251 | printf_debug("Chip status register is %02x\n", status); |
| 252 | switch (flash->manufacture_id) { |
| 253 | case ST_ID: |
Carl-Daniel Hailfinger | f43e642 | 2008-05-15 22:32:08 +0000 | [diff] [blame] | 254 | if (((flash->model_id & 0xff00) == 0x2000) || |
| 255 | ((flash->model_id & 0xff00) == 0x2500)) |
| 256 | spi_prettyprint_status_register_st_m25p(status); |
| 257 | break; |
Carl-Daniel Hailfinger | 9a3ec82 | 2007-12-29 10:15:58 +0000 | [diff] [blame] | 258 | case MX_ID: |
| 259 | if ((flash->model_id & 0xff00) == 0x2000) |
Ronald Hoogenboom | 7ff530b | 2008-01-19 00:04:46 +0000 | [diff] [blame] | 260 | spi_prettyprint_status_register_st_m25p(status); |
| 261 | break; |
| 262 | case SST_ID: |
| 263 | if (flash->model_id == SST_25VF016B) |
| 264 | spi_prettyprint_status_register_sst25vf016(status); |
Carl-Daniel Hailfinger | 9a3ec82 | 2007-12-29 10:15:58 +0000 | [diff] [blame] | 265 | break; |
| 266 | } |
| 267 | } |
| 268 | |
Peter Stuge | fa8c550 | 2008-05-10 23:07:52 +0000 | [diff] [blame] | 269 | int spi_chip_erase_c7(struct flashchip *flash) |
Carl-Daniel Hailfinger | 6b44496 | 2007-10-18 00:24:07 +0000 | [diff] [blame] | 270 | { |
Carl-Daniel Hailfinger | 228231f | 2008-05-13 14:01:22 +0000 | [diff] [blame] | 271 | const unsigned char cmd[JEDEC_CE_C7_OUTSIZE] = {JEDEC_CE_C7}; |
Carl-Daniel Hailfinger | f5df46f | 2007-12-16 21:15:27 +0000 | [diff] [blame] | 272 | |
Ronald Hoogenboom | 7ff530b | 2008-01-19 00:04:46 +0000 | [diff] [blame] | 273 | spi_disable_blockprotect(); |
Peter Stuge | fa8c550 | 2008-05-10 23:07:52 +0000 | [diff] [blame] | 274 | spi_write_enable(); |
Carl-Daniel Hailfinger | 6b44496 | 2007-10-18 00:24:07 +0000 | [diff] [blame] | 275 | /* Send CE (Chip Erase) */ |
Peter Stuge | f83221b | 2008-07-07 06:38:51 +0000 | [diff] [blame] | 276 | spi_command(sizeof(cmd), 0, cmd, NULL); |
Carl-Daniel Hailfinger | 5b1c6ed | 2007-10-22 16:15:28 +0000 | [diff] [blame] | 277 | /* Wait until the Write-In-Progress bit is cleared. |
| 278 | * This usually takes 1-85 s, so wait in 1 s steps. |
| 279 | */ |
Peter Stuge | fa8c550 | 2008-05-10 23:07:52 +0000 | [diff] [blame] | 280 | while (spi_read_status_register() & JEDEC_RDSR_BIT_WIP) |
Carl-Daniel Hailfinger | 6b44496 | 2007-10-18 00:24:07 +0000 | [diff] [blame] | 281 | sleep(1); |
Carl-Daniel Hailfinger | 6b44496 | 2007-10-18 00:24:07 +0000 | [diff] [blame] | 282 | return 0; |
| 283 | } |
| 284 | |
Carl-Daniel Hailfinger | 5b1c6ed | 2007-10-22 16:15:28 +0000 | [diff] [blame] | 285 | /* Block size is usually |
| 286 | * 64k for Macronix |
| 287 | * 32k for SST |
| 288 | * 4-32k non-uniform for EON |
| 289 | */ |
Peter Stuge | fa8c550 | 2008-05-10 23:07:52 +0000 | [diff] [blame] | 290 | int spi_block_erase_d8(const struct flashchip *flash, unsigned long addr) |
Carl-Daniel Hailfinger | 5b1c6ed | 2007-10-22 16:15:28 +0000 | [diff] [blame] | 291 | { |
Carl-Daniel Hailfinger | 228231f | 2008-05-13 14:01:22 +0000 | [diff] [blame] | 292 | unsigned char cmd[JEDEC_BE_D8_OUTSIZE] = {JEDEC_BE_D8}; |
Carl-Daniel Hailfinger | 5b1c6ed | 2007-10-22 16:15:28 +0000 | [diff] [blame] | 293 | |
| 294 | cmd[1] = (addr & 0x00ff0000) >> 16; |
| 295 | cmd[2] = (addr & 0x0000ff00) >> 8; |
| 296 | cmd[3] = (addr & 0x000000ff); |
Peter Stuge | fa8c550 | 2008-05-10 23:07:52 +0000 | [diff] [blame] | 297 | spi_write_enable(); |
Carl-Daniel Hailfinger | 5b1c6ed | 2007-10-22 16:15:28 +0000 | [diff] [blame] | 298 | /* Send BE (Block Erase) */ |
Peter Stuge | f83221b | 2008-07-07 06:38:51 +0000 | [diff] [blame] | 299 | spi_command(sizeof(cmd), 0, cmd, NULL); |
Carl-Daniel Hailfinger | 5b1c6ed | 2007-10-22 16:15:28 +0000 | [diff] [blame] | 300 | /* Wait until the Write-In-Progress bit is cleared. |
| 301 | * This usually takes 100-4000 ms, so wait in 100 ms steps. |
| 302 | */ |
Peter Stuge | fa8c550 | 2008-05-10 23:07:52 +0000 | [diff] [blame] | 303 | while (spi_read_status_register() & JEDEC_RDSR_BIT_WIP) |
Carl-Daniel Hailfinger | 5b1c6ed | 2007-10-22 16:15:28 +0000 | [diff] [blame] | 304 | usleep(100 * 1000); |
| 305 | return 0; |
| 306 | } |
| 307 | |
| 308 | /* Sector size is usually 4k, though Macronix eliteflash has 64k */ |
Peter Stuge | fa8c550 | 2008-05-10 23:07:52 +0000 | [diff] [blame] | 309 | int spi_sector_erase(const struct flashchip *flash, unsigned long addr) |
Carl-Daniel Hailfinger | 5b1c6ed | 2007-10-22 16:15:28 +0000 | [diff] [blame] | 310 | { |
Carl-Daniel Hailfinger | 228231f | 2008-05-13 14:01:22 +0000 | [diff] [blame] | 311 | unsigned char cmd[JEDEC_SE_OUTSIZE] = {JEDEC_SE}; |
Carl-Daniel Hailfinger | 5b1c6ed | 2007-10-22 16:15:28 +0000 | [diff] [blame] | 312 | cmd[1] = (addr & 0x00ff0000) >> 16; |
| 313 | cmd[2] = (addr & 0x0000ff00) >> 8; |
| 314 | cmd[3] = (addr & 0x000000ff); |
| 315 | |
Peter Stuge | fa8c550 | 2008-05-10 23:07:52 +0000 | [diff] [blame] | 316 | spi_write_enable(); |
Carl-Daniel Hailfinger | 5b1c6ed | 2007-10-22 16:15:28 +0000 | [diff] [blame] | 317 | /* Send SE (Sector Erase) */ |
Peter Stuge | f83221b | 2008-07-07 06:38:51 +0000 | [diff] [blame] | 318 | spi_command(sizeof(cmd), 0, cmd, NULL); |
Carl-Daniel Hailfinger | 5b1c6ed | 2007-10-22 16:15:28 +0000 | [diff] [blame] | 319 | /* Wait until the Write-In-Progress bit is cleared. |
| 320 | * This usually takes 15-800 ms, so wait in 10 ms steps. |
| 321 | */ |
Peter Stuge | fa8c550 | 2008-05-10 23:07:52 +0000 | [diff] [blame] | 322 | while (spi_read_status_register() & JEDEC_RDSR_BIT_WIP) |
Carl-Daniel Hailfinger | 5b1c6ed | 2007-10-22 16:15:28 +0000 | [diff] [blame] | 323 | usleep(10 * 1000); |
| 324 | return 0; |
| 325 | } |
| 326 | |
Ronald Hoogenboom | 7ff530b | 2008-01-19 00:04:46 +0000 | [diff] [blame] | 327 | /* |
| 328 | * This is according the SST25VF016 datasheet, who knows it is more |
| 329 | * generic that this... |
| 330 | */ |
| 331 | void spi_write_status_register(int status) |
| 332 | { |
Carl-Daniel Hailfinger | 228231f | 2008-05-13 14:01:22 +0000 | [diff] [blame] | 333 | const unsigned char cmd[JEDEC_WRSR_OUTSIZE] = {JEDEC_WRSR, (unsigned char)status}; |
Ronald Hoogenboom | 7ff530b | 2008-01-19 00:04:46 +0000 | [diff] [blame] | 334 | |
| 335 | /* Send WRSR (Write Status Register) */ |
Peter Stuge | f83221b | 2008-07-07 06:38:51 +0000 | [diff] [blame] | 336 | spi_command(sizeof(cmd), 0, cmd, NULL); |
Ronald Hoogenboom | 7ff530b | 2008-01-19 00:04:46 +0000 | [diff] [blame] | 337 | } |
| 338 | |
| 339 | void spi_byte_program(int address, uint8_t byte) |
| 340 | { |
| 341 | const unsigned char cmd[JEDEC_BYTE_PROGRAM_OUTSIZE] = {JEDEC_BYTE_PROGRAM, |
| 342 | (address>>16)&0xff, |
| 343 | (address>>8)&0xff, |
| 344 | (address>>0)&0xff, |
| 345 | byte |
| 346 | }; |
| 347 | |
| 348 | /* Send Byte-Program */ |
Peter Stuge | f83221b | 2008-07-07 06:38:51 +0000 | [diff] [blame] | 349 | spi_command(sizeof(cmd), 0, cmd, NULL); |
Ronald Hoogenboom | 7ff530b | 2008-01-19 00:04:46 +0000 | [diff] [blame] | 350 | } |
| 351 | |
| 352 | void spi_disable_blockprotect(void) |
| 353 | { |
| 354 | uint8_t status; |
| 355 | |
Peter Stuge | fa8c550 | 2008-05-10 23:07:52 +0000 | [diff] [blame] | 356 | status = spi_read_status_register(); |
Ronald Hoogenboom | 7ff530b | 2008-01-19 00:04:46 +0000 | [diff] [blame] | 357 | /* If there is block protection in effect, unprotect it first. */ |
| 358 | if ((status & 0x3c) != 0) { |
| 359 | printf_debug("Some block protection in effect, disabling\n"); |
Peter Stuge | fa8c550 | 2008-05-10 23:07:52 +0000 | [diff] [blame] | 360 | spi_write_enable(); |
Ronald Hoogenboom | 7ff530b | 2008-01-19 00:04:46 +0000 | [diff] [blame] | 361 | spi_write_status_register(status & ~0x3c); |
| 362 | } |
| 363 | } |
| 364 | |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 365 | void spi_nbyte_read(int address, uint8_t *bytes, int len) |
Ronald Hoogenboom | 7ff530b | 2008-01-19 00:04:46 +0000 | [diff] [blame] | 366 | { |
| 367 | const unsigned char cmd[JEDEC_READ_OUTSIZE] = {JEDEC_READ, |
Carl-Daniel Hailfinger | d3568ad | 2008-01-22 14:37:31 +0000 | [diff] [blame] | 368 | (address >> 16) & 0xff, |
| 369 | (address >> 8) & 0xff, |
| 370 | (address >> 0) & 0xff, |
Ronald Hoogenboom | 7ff530b | 2008-01-19 00:04:46 +0000 | [diff] [blame] | 371 | }; |
| 372 | |
| 373 | /* Send Read */ |
Peter Stuge | f83221b | 2008-07-07 06:38:51 +0000 | [diff] [blame] | 374 | spi_command(sizeof(cmd), len, cmd, bytes); |
Ronald Hoogenboom | 7ff530b | 2008-01-19 00:04:46 +0000 | [diff] [blame] | 375 | } |
| 376 | |
Peter Stuge | fa8c550 | 2008-05-10 23:07:52 +0000 | [diff] [blame] | 377 | int spi_chip_read(struct flashchip *flash, uint8_t *buf) |
Ronald Hoogenboom | 7ff530b | 2008-01-19 00:04:46 +0000 | [diff] [blame] | 378 | { |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 379 | |
| 380 | switch (flashbus) { |
| 381 | case BUS_TYPE_IT87XX_SPI: |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 382 | return it8716f_spi_chip_read(flash, buf); |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 383 | case BUS_TYPE_ICH7_SPI: |
| 384 | case BUS_TYPE_ICH9_SPI: |
| 385 | case BUS_TYPE_VIA_SPI: |
Rudolf Marek | 3fdbccf | 2008-06-30 21:38:30 +0000 | [diff] [blame] | 386 | return ich_spi_read(flash, buf); |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 387 | default: |
| 388 | printf_debug("%s called, but no SPI chipset/strapping detected\n", __FUNCTION__); |
| 389 | } |
| 390 | |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 391 | return 1; |
Ronald Hoogenboom | 7ff530b | 2008-01-19 00:04:46 +0000 | [diff] [blame] | 392 | } |
| 393 | |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 394 | int spi_chip_write(struct flashchip *flash, uint8_t *buf) |
| 395 | { |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 396 | switch (flashbus) { |
| 397 | case BUS_TYPE_IT87XX_SPI: |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 398 | return it8716f_spi_chip_write(flash, buf); |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 399 | case BUS_TYPE_ICH7_SPI: |
| 400 | case BUS_TYPE_ICH9_SPI: |
| 401 | case BUS_TYPE_VIA_SPI: |
Rudolf Marek | 3fdbccf | 2008-06-30 21:38:30 +0000 | [diff] [blame] | 402 | return ich_spi_write(flash, buf); |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 403 | default: |
| 404 | printf_debug("%s called, but no SPI chipset/strapping detected\n", __FUNCTION__); |
| 405 | } |
| 406 | |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 407 | return 1; |
Carl-Daniel Hailfinger | 6b44496 | 2007-10-18 00:24:07 +0000 | [diff] [blame] | 408 | } |
| 409 | |