Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 1 | /* |
| 2 | * This file is part of the flashrom project. |
| 3 | * |
Carl-Daniel Hailfinger | 5824fbf | 2010-05-21 23:09:42 +0000 | [diff] [blame] | 4 | * Copyright (C) 2009, 2010 Carl-Daniel Hailfinger |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by |
| 8 | * the Free Software Foundation; version 2 of the License. |
| 9 | * |
| 10 | * This program is distributed in the hope that it will be useful, |
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | * GNU General Public License for more details. |
| 14 | * |
| 15 | * You should have received a copy of the GNU General Public License |
| 16 | * along with this program; if not, write to the Free Software |
| 17 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 18 | */ |
| 19 | |
| 20 | #include <stdio.h> |
| 21 | #include <stdint.h> |
| 22 | #include <string.h> |
| 23 | #include <stdlib.h> |
| 24 | #include <ctype.h> |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 25 | #include "flash.h" |
Sean Nelson | 14ba668 | 2010-02-26 05:48:29 +0000 | [diff] [blame] | 26 | #include "chipdrivers.h" |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 27 | #include "spi.h" |
| 28 | |
| 29 | /* Change this to #define if you want to test without a serial implementation */ |
| 30 | #undef FAKE_COMMUNICATION |
| 31 | |
| 32 | #ifndef FAKE_COMMUNICATION |
| 33 | int buspirate_serialport_setup(char *dev) |
| 34 | { |
| 35 | /* 115200bps, 8 databits, no parity, 1 stopbit */ |
| 36 | sp_fd = sp_openserport(dev, 115200); |
| 37 | return 0; |
| 38 | } |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 39 | #else |
| 40 | #define buspirate_serialport_setup(...) 0 |
Carl-Daniel Hailfinger | efa151e | 2010-01-06 16:09:10 +0000 | [diff] [blame] | 41 | #define serialport_shutdown(...) 0 |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 42 | #define serialport_write(...) 0 |
| 43 | #define serialport_read(...) 0 |
Patrick Georgi | 3b6237d | 2010-01-06 19:09:40 +0000 | [diff] [blame] | 44 | #define sp_flush_incoming(...) 0 |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 45 | #endif |
| 46 | |
| 47 | int buspirate_sendrecv(unsigned char *buf, unsigned int writecnt, unsigned int readcnt) |
| 48 | { |
| 49 | int i, ret = 0; |
| 50 | |
Sean Nelson | 84f7bce | 2010-01-09 23:56:41 +0000 | [diff] [blame] | 51 | msg_pspew("%s: write %i, read %i ", __func__, writecnt, readcnt); |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 52 | if (!writecnt && !readcnt) { |
Sean Nelson | 84f7bce | 2010-01-09 23:56:41 +0000 | [diff] [blame] | 53 | msg_perr("Zero length command!\n"); |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 54 | return 1; |
| 55 | } |
Sean Nelson | 84f7bce | 2010-01-09 23:56:41 +0000 | [diff] [blame] | 56 | msg_pspew("Sending"); |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 57 | for (i = 0; i < writecnt; i++) |
Sean Nelson | 84f7bce | 2010-01-09 23:56:41 +0000 | [diff] [blame] | 58 | msg_pspew(" 0x%02x", buf[i]); |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 59 | #ifdef FAKE_COMMUNICATION |
| 60 | /* Placate the caller for now. */ |
| 61 | if (readcnt) { |
| 62 | buf[0] = 0x01; |
| 63 | memset(buf + 1, 0xff, readcnt - 1); |
| 64 | } |
| 65 | ret = 0; |
| 66 | #else |
| 67 | if (writecnt) |
| 68 | ret = serialport_write(buf, writecnt); |
| 69 | if (ret) |
| 70 | return ret; |
| 71 | if (readcnt) |
| 72 | ret = serialport_read(buf, readcnt); |
| 73 | if (ret) |
| 74 | return ret; |
| 75 | #endif |
Sean Nelson | 84f7bce | 2010-01-09 23:56:41 +0000 | [diff] [blame] | 76 | msg_pspew(", receiving"); |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 77 | for (i = 0; i < readcnt; i++) |
Sean Nelson | 84f7bce | 2010-01-09 23:56:41 +0000 | [diff] [blame] | 78 | msg_pspew(" 0x%02x", buf[i]); |
| 79 | msg_pspew("\n"); |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 80 | return 0; |
| 81 | } |
| 82 | |
Carl-Daniel Hailfinger | d5b28fa | 2009-11-24 18:27:10 +0000 | [diff] [blame] | 83 | static const struct buspirate_spispeeds spispeeds[] = { |
| 84 | {"30k", 0x0}, |
| 85 | {"125k", 0x1}, |
| 86 | {"250k", 0x2}, |
| 87 | {"1M", 0x3}, |
| 88 | {"2M", 0x4}, |
| 89 | {"2.6M", 0x5}, |
| 90 | {"4M", 0x6}, |
| 91 | {"8M", 0x7}, |
| 92 | {NULL, 0x0} |
| 93 | }; |
| 94 | |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 95 | int buspirate_spi_init(void) |
| 96 | { |
| 97 | unsigned char buf[512]; |
| 98 | int ret = 0; |
| 99 | int i; |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 100 | char *dev = NULL; |
Carl-Daniel Hailfinger | d5b28fa | 2009-11-24 18:27:10 +0000 | [diff] [blame] | 101 | char *speed = NULL; |
| 102 | int spispeed = 0x7; |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 103 | |
| 104 | if (programmer_param && !strlen(programmer_param)) { |
| 105 | free(programmer_param); |
| 106 | programmer_param = NULL; |
| 107 | } |
| 108 | if (programmer_param) { |
Carl-Daniel Hailfinger | d5b28fa | 2009-11-24 18:27:10 +0000 | [diff] [blame] | 109 | dev = extract_param(&programmer_param, "dev=", ",:"); |
| 110 | speed = extract_param(&programmer_param, "spispeed=", ",:"); |
| 111 | if (strlen(programmer_param)) |
Sean Nelson | 84f7bce | 2010-01-09 23:56:41 +0000 | [diff] [blame] | 112 | msg_perr("Unhandled programmer parameters: %s\n", |
Carl-Daniel Hailfinger | d5b28fa | 2009-11-24 18:27:10 +0000 | [diff] [blame] | 113 | programmer_param); |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 114 | free(programmer_param); |
| 115 | programmer_param = NULL; |
| 116 | } |
| 117 | if (!dev) { |
Sean Nelson | 84f7bce | 2010-01-09 23:56:41 +0000 | [diff] [blame] | 118 | msg_perr("No serial device given. Use flashrom -p " |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 119 | "buspirate_spi:dev=/dev/ttyUSB0\n"); |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 120 | return 1; |
| 121 | } |
Carl-Daniel Hailfinger | d5b28fa | 2009-11-24 18:27:10 +0000 | [diff] [blame] | 122 | if (speed) { |
| 123 | for (i = 0; spispeeds[i].name; i++) |
| 124 | if (!strncasecmp(spispeeds[i].name, speed, |
| 125 | strlen(spispeeds[i].name))) { |
| 126 | spispeed = spispeeds[i].speed; |
| 127 | break; |
| 128 | } |
| 129 | if (!spispeeds[i].name) |
Sean Nelson | 84f7bce | 2010-01-09 23:56:41 +0000 | [diff] [blame] | 130 | msg_perr("Invalid SPI speed, using default.\n"); |
Carl-Daniel Hailfinger | d5b28fa | 2009-11-24 18:27:10 +0000 | [diff] [blame] | 131 | } |
| 132 | /* This works because speeds numbering starts at 0 and is contiguous. */ |
Sean Nelson | 84f7bce | 2010-01-09 23:56:41 +0000 | [diff] [blame] | 133 | msg_pdbg("SPI speed is %sHz\n", spispeeds[spispeed].name); |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 134 | |
| 135 | ret = buspirate_serialport_setup(dev); |
| 136 | if (ret) |
| 137 | return ret; |
| 138 | |
| 139 | /* This is the brute force version, but it should work. */ |
| 140 | for (i = 0; i < 19; i++) { |
| 141 | /* Enter raw bitbang mode */ |
| 142 | buf[0] = 0x00; |
| 143 | /* Send the command, don't read the response. */ |
| 144 | ret = buspirate_sendrecv(buf, 1, 0); |
| 145 | if (ret) |
| 146 | return ret; |
| 147 | /* Read any response and discard it. */ |
Patrick Georgi | 3b6237d | 2010-01-06 19:09:40 +0000 | [diff] [blame] | 148 | sp_flush_incoming(); |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 149 | } |
| 150 | /* Enter raw bitbang mode */ |
| 151 | buf[0] = 0x00; |
| 152 | ret = buspirate_sendrecv(buf, 1, 5); |
| 153 | if (ret) |
| 154 | return ret; |
| 155 | if (memcmp(buf, "BBIO", 4)) { |
Sean Nelson | 84f7bce | 2010-01-09 23:56:41 +0000 | [diff] [blame] | 156 | msg_perr("Entering raw bitbang mode failed!\n"); |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 157 | return 1; |
| 158 | } |
Sean Nelson | 84f7bce | 2010-01-09 23:56:41 +0000 | [diff] [blame] | 159 | msg_pdbg("Raw bitbang mode version %c\n", buf[4]); |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 160 | if (buf[4] != '1') { |
Sean Nelson | 84f7bce | 2010-01-09 23:56:41 +0000 | [diff] [blame] | 161 | msg_perr("Can't handle raw bitbang mode version %c!\n", |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 162 | buf[4]); |
| 163 | return 1; |
| 164 | } |
| 165 | /* Enter raw SPI mode */ |
| 166 | buf[0] = 0x01; |
| 167 | ret = buspirate_sendrecv(buf, 1, 4); |
| 168 | if (memcmp(buf, "SPI", 3)) { |
Sean Nelson | 84f7bce | 2010-01-09 23:56:41 +0000 | [diff] [blame] | 169 | msg_perr("Entering raw SPI mode failed!\n"); |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 170 | return 1; |
| 171 | } |
Sean Nelson | 84f7bce | 2010-01-09 23:56:41 +0000 | [diff] [blame] | 172 | msg_pdbg("Raw SPI mode version %c\n", buf[3]); |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 173 | if (buf[3] != '1') { |
Sean Nelson | 84f7bce | 2010-01-09 23:56:41 +0000 | [diff] [blame] | 174 | msg_perr("Can't handle raw SPI mode version %c!\n", |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 175 | buf[3]); |
| 176 | return 1; |
| 177 | } |
| 178 | |
| 179 | /* Initial setup (SPI peripherals config): Enable power, CS high, AUX */ |
| 180 | buf[0] = 0x40 | 0xb; |
| 181 | ret = buspirate_sendrecv(buf, 1, 1); |
| 182 | if (ret) |
| 183 | return 1; |
| 184 | if (buf[0] != 0x01) { |
Sean Nelson | 84f7bce | 2010-01-09 23:56:41 +0000 | [diff] [blame] | 185 | msg_perr("Protocol error while setting power/CS/AUX!\n"); |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 186 | return 1; |
| 187 | } |
| 188 | |
Carl-Daniel Hailfinger | d5b28fa | 2009-11-24 18:27:10 +0000 | [diff] [blame] | 189 | /* Set SPI speed */ |
| 190 | buf[0] = 0x60 | spispeed; |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 191 | ret = buspirate_sendrecv(buf, 1, 1); |
| 192 | if (ret) |
| 193 | return 1; |
| 194 | if (buf[0] != 0x01) { |
Sean Nelson | 84f7bce | 2010-01-09 23:56:41 +0000 | [diff] [blame] | 195 | msg_perr("Protocol error while setting SPI speed!\n"); |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 196 | return 1; |
| 197 | } |
| 198 | |
| 199 | /* Set SPI config: output type, idle, clock edge, sample */ |
| 200 | buf[0] = 0x80 | 0xa; |
| 201 | ret = buspirate_sendrecv(buf, 1, 1); |
| 202 | if (ret) |
| 203 | return 1; |
| 204 | if (buf[0] != 0x01) { |
Sean Nelson | 84f7bce | 2010-01-09 23:56:41 +0000 | [diff] [blame] | 205 | msg_perr("Protocol error while setting SPI config!\n"); |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 206 | return 1; |
| 207 | } |
| 208 | |
| 209 | /* De-assert CS# */ |
| 210 | buf[0] = 0x03; |
| 211 | ret = buspirate_sendrecv(buf, 1, 1); |
| 212 | if (ret) |
| 213 | return 1; |
| 214 | if (buf[0] != 0x01) { |
Sean Nelson | 84f7bce | 2010-01-09 23:56:41 +0000 | [diff] [blame] | 215 | msg_perr("Protocol error while raising CS#!\n"); |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 216 | return 1; |
| 217 | } |
| 218 | |
| 219 | buses_supported = CHIP_BUSTYPE_SPI; |
| 220 | spi_controller = SPI_CONTROLLER_BUSPIRATE; |
| 221 | |
| 222 | return 0; |
| 223 | } |
| 224 | |
| 225 | int buspirate_spi_shutdown(void) |
| 226 | { |
| 227 | unsigned char buf[5]; |
| 228 | int ret = 0; |
| 229 | |
| 230 | /* Exit raw SPI mode (enter raw bitbang mode) */ |
| 231 | buf[0] = 0x00; |
| 232 | ret = buspirate_sendrecv(buf, 1, 5); |
| 233 | if (ret) |
| 234 | return ret; |
| 235 | if (memcmp(buf, "BBIO", 4)) { |
Sean Nelson | 84f7bce | 2010-01-09 23:56:41 +0000 | [diff] [blame] | 236 | msg_perr("Entering raw bitbang mode failed!\n"); |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 237 | return 1; |
| 238 | } |
Sean Nelson | 84f7bce | 2010-01-09 23:56:41 +0000 | [diff] [blame] | 239 | msg_pdbg("Raw bitbang mode version %c\n", buf[4]); |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 240 | if (buf[4] != '1') { |
Sean Nelson | 84f7bce | 2010-01-09 23:56:41 +0000 | [diff] [blame] | 241 | msg_perr("Can't handle raw bitbang mode version %c!\n", |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 242 | buf[4]); |
| 243 | return 1; |
| 244 | } |
| 245 | /* Reset Bus Pirate (return to user terminal) */ |
| 246 | buf[0] = 0x0f; |
| 247 | ret = buspirate_sendrecv(buf, 1, 0); |
| 248 | if (ret) |
| 249 | return ret; |
| 250 | |
| 251 | /* Shut down serial port communication */ |
Carl-Daniel Hailfinger | efa151e | 2010-01-06 16:09:10 +0000 | [diff] [blame] | 252 | ret = serialport_shutdown(); |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 253 | if (ret) |
| 254 | return ret; |
Sean Nelson | 84f7bce | 2010-01-09 23:56:41 +0000 | [diff] [blame] | 255 | msg_pdbg("Bus Pirate shutdown completed.\n"); |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 256 | |
| 257 | return 0; |
| 258 | } |
| 259 | |
| 260 | int buspirate_spi_send_command(unsigned int writecnt, unsigned int readcnt, |
| 261 | const unsigned char *writearr, unsigned char *readarr) |
| 262 | { |
| 263 | static unsigned char *buf = NULL; |
| 264 | int i = 0, ret = 0; |
| 265 | |
| 266 | if (writecnt > 16 || readcnt > 16 || (readcnt + writecnt) > 16) |
| 267 | return SPI_INVALID_LENGTH; |
| 268 | |
| 269 | /* +2 is pretty arbitrary. */ |
| 270 | buf = realloc(buf, writecnt + readcnt + 2); |
| 271 | if (!buf) { |
Sean Nelson | 84f7bce | 2010-01-09 23:56:41 +0000 | [diff] [blame] | 272 | msg_perr("Out of memory!\n"); |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 273 | exit(1); // -1 |
| 274 | } |
| 275 | |
| 276 | /* Assert CS# */ |
| 277 | buf[i++] = 0x02; |
| 278 | ret = buspirate_sendrecv(buf, 1, 1); |
| 279 | if (ret) |
| 280 | return SPI_GENERIC_ERROR; |
| 281 | if (buf[0] != 0x01) { |
Sean Nelson | 84f7bce | 2010-01-09 23:56:41 +0000 | [diff] [blame] | 282 | msg_perr("Protocol error while lowering CS#!\n"); |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 283 | return SPI_GENERIC_ERROR; |
| 284 | } |
| 285 | |
| 286 | i = 0; |
| 287 | buf[i++] = 0x10 | (writecnt + readcnt - 1); |
| 288 | memcpy(buf + i, writearr, writecnt); |
| 289 | i += writecnt; |
| 290 | memset(buf + i, 0, readcnt); |
| 291 | ret = buspirate_sendrecv(buf, i + readcnt, i + readcnt); |
| 292 | if (ret) |
| 293 | return SPI_GENERIC_ERROR; |
| 294 | if (buf[0] != 0x01) { |
Sean Nelson | 84f7bce | 2010-01-09 23:56:41 +0000 | [diff] [blame] | 295 | msg_perr("Protocol error while reading/writing SPI!\n"); |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 296 | return SPI_GENERIC_ERROR; |
| 297 | } |
| 298 | memcpy(readarr, buf + i, readcnt); |
| 299 | |
| 300 | i = 0; |
| 301 | /* De-assert CS# */ |
| 302 | buf[i++] = 0x03; |
| 303 | ret = buspirate_sendrecv(buf, 1, 1); |
| 304 | if (ret) |
| 305 | return SPI_GENERIC_ERROR; |
| 306 | if (buf[0] != 0x01) { |
Sean Nelson | 84f7bce | 2010-01-09 23:56:41 +0000 | [diff] [blame] | 307 | msg_perr("Protocol error while raising CS#!\n"); |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 308 | return SPI_GENERIC_ERROR; |
| 309 | } |
| 310 | |
| 311 | return ret; |
| 312 | } |
| 313 | |
| 314 | int buspirate_spi_read(struct flashchip *flash, uint8_t *buf, int start, int len) |
| 315 | { |
Carl-Daniel Hailfinger | d5b28fa | 2009-11-24 18:27:10 +0000 | [diff] [blame] | 316 | return spi_read_chunked(flash, buf, start, len, 12); |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 317 | } |
| 318 | |
Carl-Daniel Hailfinger | 408e47a | 2010-03-22 03:30:58 +0000 | [diff] [blame] | 319 | int buspirate_spi_write_256(struct flashchip *flash, uint8_t *buf) |
| 320 | { |
| 321 | int total_size = 1024 * flash->total_size; |
Carl-Daniel Hailfinger | 408e47a | 2010-03-22 03:30:58 +0000 | [diff] [blame] | 322 | |
| 323 | spi_disable_blockprotect(); |
| 324 | /* Erase first. */ |
| 325 | msg_pinfo("Erasing flash before programming... "); |
| 326 | if (erase_flash(flash)) { |
| 327 | msg_perr("ERASE FAILED!\n"); |
| 328 | return -1; |
| 329 | } |
| 330 | msg_pinfo("done.\n"); |
| 331 | |
Carl-Daniel Hailfinger | 5824fbf | 2010-05-21 23:09:42 +0000 | [diff] [blame] | 332 | return spi_write_chunked(flash, buf, 0, total_size, 12); |
Carl-Daniel Hailfinger | 408e47a | 2010-03-22 03:30:58 +0000 | [diff] [blame] | 333 | } |