Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 1 | /* |
| 2 | * This file is part of the flashrom project. |
| 3 | * |
| 4 | * Copyright (C) 2010 Carl-Daniel Hailfinger |
Simon Glass | 557eb4f | 2015-07-05 16:53:22 +0000 | [diff] [blame] | 5 | * Copyright (C) 2015 Simon Glass |
| 6 | * Copyright (C) 2015 Stefan Tauner |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License as published by |
| 10 | * the Free Software Foundation; version 2 of the License. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | * GNU General Public License for more details. |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 16 | */ |
| 17 | |
Nico Huber | 4d440a7 | 2017-08-15 11:26:48 +0200 | [diff] [blame] | 18 | #include <sys/types.h> |
Stefan Tauner | 5c316f9 | 2015-02-08 21:57:52 +0000 | [diff] [blame] | 19 | #include <stdlib.h> |
Mathias Krause | db7afc5 | 2010-11-09 23:30:43 +0000 | [diff] [blame] | 20 | #include <stdio.h> |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 21 | #include <string.h> |
Stefan Tauner | e34e3e8 | 2013-01-01 00:06:51 +0000 | [diff] [blame] | 22 | #include <limits.h> |
Nathan Laredo | 21541a6 | 2012-12-24 22:07:36 +0000 | [diff] [blame] | 23 | #include <errno.h> |
Nico Huber | d99a2bd | 2016-02-18 21:42:49 +0000 | [diff] [blame] | 24 | #include <libusb.h> |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +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 | 5b997c3 | 2010-07-27 22:41:39 +0000 | [diff] [blame] | 27 | #include "programmer.h" |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 28 | #include "spi.h" |
| 29 | |
Nico Huber | d99a2bd | 2016-02-18 21:42:49 +0000 | [diff] [blame] | 30 | /* LIBUSB_CALL ensures the right calling conventions on libusb callbacks. |
| 31 | * However, the macro is not defined everywhere. m( |
| 32 | */ |
| 33 | #ifndef LIBUSB_CALL |
| 34 | #define LIBUSB_CALL |
| 35 | #endif |
| 36 | |
Stefan Reinauer | 915b840 | 2011-01-28 09:00:15 +0000 | [diff] [blame] | 37 | #define FIRMWARE_VERSION(x,y,z) ((x << 16) | (y << 8) | z) |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 38 | #define DEFAULT_TIMEOUT 3000 |
Nico Huber | a96aaa3 | 2024-03-05 12:56:13 +0100 | [diff] [blame] | 39 | #define MAX_BLOCK_COUNT 65535 |
Nico Huber | d99a2bd | 2016-02-18 21:42:49 +0000 | [diff] [blame] | 40 | #define DEDIPROG_ASYNC_TRANSFERS 8 /* at most 8 asynchronous transfers */ |
David Hendricks | c368518 | 2020-06-23 17:36:09 -0700 | [diff] [blame] | 41 | #define REQTYPE_OTHER_OUT (LIBUSB_ENDPOINT_OUT | LIBUSB_REQUEST_TYPE_VENDOR | LIBUSB_RECIPIENT_OTHER) /* 0x43 */ |
Nico Huber | d99a2bd | 2016-02-18 21:42:49 +0000 | [diff] [blame] | 42 | #define REQTYPE_OTHER_IN (LIBUSB_ENDPOINT_IN | LIBUSB_REQUEST_TYPE_VENDOR | LIBUSB_RECIPIENT_OTHER) /* 0xC3 */ |
| 43 | #define REQTYPE_EP_OUT (LIBUSB_ENDPOINT_OUT | LIBUSB_REQUEST_TYPE_VENDOR | LIBUSB_RECIPIENT_ENDPOINT) /* 0x42 */ |
| 44 | #define REQTYPE_EP_IN (LIBUSB_ENDPOINT_IN | LIBUSB_REQUEST_TYPE_VENDOR | LIBUSB_RECIPIENT_ENDPOINT) /* 0xC2 */ |
David Woodhouse | 7f3b89f | 2016-02-18 21:42:15 +0000 | [diff] [blame] | 45 | |
| 46 | enum dediprog_devtype { |
| 47 | DEV_UNKNOWN = 0, |
| 48 | DEV_SF100 = 100, |
Jay Thompson | cabe320 | 2018-08-17 14:30:04 -0500 | [diff] [blame] | 49 | DEV_SF200 = 200, |
David Woodhouse | 7f3b89f | 2016-02-18 21:42:15 +0000 | [diff] [blame] | 50 | DEV_SF600 = 600, |
| 51 | }; |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 52 | |
Simon Glass | 25e9f40 | 2015-06-28 13:31:19 +0000 | [diff] [blame] | 53 | enum dediprog_leds { |
| 54 | LED_INVALID = -1, |
| 55 | LED_NONE = 0, |
| 56 | LED_PASS = 1 << 0, |
| 57 | LED_BUSY = 1 << 1, |
| 58 | LED_ERROR = 1 << 2, |
| 59 | LED_ALL = 7, |
| 60 | }; |
| 61 | |
Simon Glass | 557eb4f | 2015-07-05 16:53:22 +0000 | [diff] [blame] | 62 | /* IO bits for CMD_SET_IO_LED message */ |
| 63 | enum dediprog_ios { |
| 64 | IO1 = 1 << 0, |
| 65 | IO2 = 1 << 1, |
| 66 | IO3 = 1 << 2, |
| 67 | IO4 = 1 << 3, |
| 68 | }; |
| 69 | |
| 70 | enum dediprog_cmds { |
| 71 | CMD_TRANSCEIVE = 0x01, |
| 72 | CMD_POLL_STATUS_REG = 0x02, |
| 73 | CMD_SET_VPP = 0x03, |
| 74 | CMD_SET_TARGET = 0x04, |
| 75 | CMD_READ_EEPROM = 0x05, |
| 76 | CMD_WRITE_EEPROM = 0x06, |
| 77 | CMD_SET_IO_LED = 0x07, |
| 78 | CMD_READ_PROG_INFO = 0x08, |
| 79 | CMD_SET_VCC = 0x09, |
| 80 | CMD_SET_STANDALONE = 0x0A, |
David Hendricks | c05900f | 2016-02-18 21:42:41 +0000 | [diff] [blame] | 81 | CMD_SET_VOLTAGE = 0x0B, /* Only in firmware older than 6.0.0 */ |
Simon Glass | 557eb4f | 2015-07-05 16:53:22 +0000 | [diff] [blame] | 82 | CMD_GET_BUTTON = 0x11, |
| 83 | CMD_GET_UID = 0x12, |
| 84 | CMD_SET_CS = 0x14, |
| 85 | CMD_IO_MODE = 0x15, |
| 86 | CMD_FW_UPDATE = 0x1A, |
| 87 | CMD_FPGA_UPDATE = 0x1B, |
| 88 | CMD_READ_FPGA_VERSION = 0x1C, |
| 89 | CMD_SET_HOLD = 0x1D, |
| 90 | CMD_READ = 0x20, |
| 91 | CMD_WRITE = 0x30, |
| 92 | CMD_WRITE_AT45DB = 0x31, |
| 93 | CMD_NAND_WRITE = 0x32, |
| 94 | CMD_NAND_READ = 0x33, |
| 95 | CMD_SET_SPI_CLK = 0x61, |
| 96 | CMD_CHECK_SOCKET = 0x62, |
| 97 | CMD_DOWNLOAD_PRJ = 0x63, |
| 98 | CMD_READ_PRJ_NAME = 0x64, |
| 99 | // New protocol/firmware only |
| 100 | CMD_CHECK_SDCARD = 0x65, |
| 101 | CMD_READ_PRJ = 0x66, |
| 102 | }; |
| 103 | |
| 104 | enum dediprog_target { |
| 105 | FLASH_TYPE_APPLICATION_FLASH_1 = 0, |
| 106 | FLASH_TYPE_FLASH_CARD, |
| 107 | FLASH_TYPE_APPLICATION_FLASH_2, |
| 108 | FLASH_TYPE_SOCKET, |
| 109 | }; |
| 110 | |
| 111 | enum dediprog_readmode { |
| 112 | READ_MODE_STD = 1, |
| 113 | READ_MODE_FAST = 2, |
| 114 | READ_MODE_ATMEL45 = 3, |
| 115 | READ_MODE_4B_ADDR_FAST = 4, |
| 116 | READ_MODE_4B_ADDR_FAST_0x0C = 5, /* New protocol only */ |
| 117 | }; |
| 118 | |
| 119 | enum dediprog_writemode { |
Elyes HAOUAS | ac01baa | 2018-05-28 16:52:21 +0200 | [diff] [blame] | 120 | WRITE_MODE_PAGE_PGM = 1, |
Simon Glass | 557eb4f | 2015-07-05 16:53:22 +0000 | [diff] [blame] | 121 | WRITE_MODE_PAGE_WRITE = 2, |
| 122 | WRITE_MODE_1B_AAI = 3, |
| 123 | WRITE_MODE_2B_AAI = 4, |
| 124 | WRITE_MODE_128B_PAGE = 5, |
| 125 | WRITE_MODE_PAGE_AT26DF041 = 6, |
| 126 | WRITE_MODE_SILICON_BLUE_FPGA = 7, |
Simon Glass | ae61651 | 2016-01-23 23:27:58 +0000 | [diff] [blame] | 127 | WRITE_MODE_64B_PAGE_NUMONYX_PCM = 8, /* unit of 512 bytes */ |
Simon Glass | 557eb4f | 2015-07-05 16:53:22 +0000 | [diff] [blame] | 128 | WRITE_MODE_4B_ADDR_256B_PAGE_PGM = 9, |
Simon Glass | ae61651 | 2016-01-23 23:27:58 +0000 | [diff] [blame] | 129 | WRITE_MODE_32B_PAGE_PGM_MXIC_512K = 10, /* unit of 512 bytes */ |
Simon Glass | 557eb4f | 2015-07-05 16:53:22 +0000 | [diff] [blame] | 130 | WRITE_MODE_4B_ADDR_256B_PAGE_PGM_0x12 = 11, |
| 131 | WRITE_MODE_4B_ADDR_256B_PAGE_PGM_FLAGS = 12, |
| 132 | }; |
| 133 | |
David Woodhouse | 7f3b89f | 2016-02-18 21:42:15 +0000 | [diff] [blame] | 134 | enum dediprog_standalone_mode { |
| 135 | ENTER_STANDALONE_MODE = 0, |
| 136 | LEAVE_STANDALONE_MODE = 1, |
| 137 | }; |
| 138 | |
David Hendricks | f73f8a7 | 2018-02-21 07:34:34 -0800 | [diff] [blame] | 139 | /* |
Nico Huber | c3b02dc | 2023-08-12 01:13:45 +0200 | [diff] [blame] | 140 | * These are not official designations; they are for use in flashprog only. |
David Hendricks | f73f8a7 | 2018-02-21 07:34:34 -0800 | [diff] [blame] | 141 | * Order must be preserved so that comparison operators work. |
| 142 | */ |
| 143 | enum protocol { |
| 144 | PROTOCOL_UNKNOWN, |
| 145 | PROTOCOL_V1, |
| 146 | PROTOCOL_V2, |
| 147 | PROTOCOL_V3, |
| 148 | }; |
| 149 | |
Thomas Heijligen | cc853d8 | 2021-05-04 15:32:17 +0200 | [diff] [blame] | 150 | static const struct dev_entry devs_dediprog[] = { |
Jay Thompson | cabe320 | 2018-08-17 14:30:04 -0500 | [diff] [blame] | 151 | {0x0483, 0xDADA, OK, "Dediprog", "SF100/SF200/SF600"}, |
Stefan Tauner | fdec747 | 2016-02-22 08:59:27 +0000 | [diff] [blame] | 152 | |
| 153 | {0}, |
| 154 | }; |
Simon Glass | 557eb4f | 2015-07-05 16:53:22 +0000 | [diff] [blame] | 155 | |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 156 | struct dediprog_data { |
| 157 | struct libusb_context *usb_ctx; |
Anastasia Klimchuk | 7d97388 | 2021-07-14 09:33:50 +1000 | [diff] [blame] | 158 | libusb_device_handle *handle; |
| 159 | int in_endpoint; |
| 160 | int out_endpoint; |
| 161 | int firmwareversion; |
| 162 | enum dediprog_devtype devicetype; |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 163 | }; |
Simon Glass | 557eb4f | 2015-07-05 16:53:22 +0000 | [diff] [blame] | 164 | |
Nico Huber | d99a2bd | 2016-02-18 21:42:49 +0000 | [diff] [blame] | 165 | #if defined(LIBUSB_MAJOR) && defined(LIBUSB_MINOR) && defined(LIBUSB_MICRO) && \ |
| 166 | LIBUSB_MAJOR <= 1 && LIBUSB_MINOR == 0 && LIBUSB_MICRO < 9 |
| 167 | /* Quick and dirty replacement for missing libusb_error_name in libusb < 1.0.9 */ |
| 168 | const char * LIBUSB_CALL libusb_error_name(int error_code) |
| 169 | { |
| 170 | if (error_code >= INT16_MIN && error_code <= INT16_MAX) { |
| 171 | /* 18 chars for text, rest for number (16 b should be enough), sign, nullbyte. */ |
| 172 | static char my_libusb_error[18 + 5 + 2]; |
| 173 | sprintf(my_libusb_error, "libusb error code %i", error_code); |
| 174 | return my_libusb_error; |
| 175 | } else { |
| 176 | return "UNKNOWN"; |
| 177 | } |
| 178 | } |
| 179 | #endif |
| 180 | |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 181 | static enum protocol protocol(const struct dediprog_data *dp_data) |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 182 | { |
David Hendricks | f73f8a7 | 2018-02-21 07:34:34 -0800 | [diff] [blame] | 183 | /* Firmware version < 5.0.0 is handled explicitly in some cases. */ |
Anastasia Klimchuk | 7d97388 | 2021-07-14 09:33:50 +1000 | [diff] [blame] | 184 | switch (dp_data->devicetype) { |
David Woodhouse | 7f3b89f | 2016-02-18 21:42:15 +0000 | [diff] [blame] | 185 | case DEV_SF100: |
Jay Thompson | cabe320 | 2018-08-17 14:30:04 -0500 | [diff] [blame] | 186 | case DEV_SF200: |
Anastasia Klimchuk | 7d97388 | 2021-07-14 09:33:50 +1000 | [diff] [blame] | 187 | if (dp_data->firmwareversion < FIRMWARE_VERSION(5, 5, 0)) |
David Hendricks | f73f8a7 | 2018-02-21 07:34:34 -0800 | [diff] [blame] | 188 | return PROTOCOL_V1; |
| 189 | else |
| 190 | return PROTOCOL_V2; |
David Woodhouse | 7f3b89f | 2016-02-18 21:42:15 +0000 | [diff] [blame] | 191 | case DEV_SF600: |
Anastasia Klimchuk | 7d97388 | 2021-07-14 09:33:50 +1000 | [diff] [blame] | 192 | if (dp_data->firmwareversion < FIRMWARE_VERSION(6, 9, 0)) |
David Hendricks | f73f8a7 | 2018-02-21 07:34:34 -0800 | [diff] [blame] | 193 | return PROTOCOL_V1; |
Anastasia Klimchuk | 7d97388 | 2021-07-14 09:33:50 +1000 | [diff] [blame] | 194 | else if (dp_data->firmwareversion <= FIRMWARE_VERSION(7, 2, 21)) |
David Hendricks | f73f8a7 | 2018-02-21 07:34:34 -0800 | [diff] [blame] | 195 | return PROTOCOL_V2; |
| 196 | else |
| 197 | return PROTOCOL_V3; |
David Woodhouse | 7f3b89f | 2016-02-18 21:42:15 +0000 | [diff] [blame] | 198 | default: |
David Hendricks | f73f8a7 | 2018-02-21 07:34:34 -0800 | [diff] [blame] | 199 | return PROTOCOL_UNKNOWN; |
David Woodhouse | 7f3b89f | 2016-02-18 21:42:15 +0000 | [diff] [blame] | 200 | } |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 201 | } |
Simon Glass | ae61651 | 2016-01-23 23:27:58 +0000 | [diff] [blame] | 202 | |
Nico Huber | d99a2bd | 2016-02-18 21:42:49 +0000 | [diff] [blame] | 203 | struct dediprog_transfer_status { |
| 204 | int error; /* OK if 0, ERROR else */ |
| 205 | unsigned int queued_idx; |
| 206 | unsigned int finished_idx; |
| 207 | }; |
| 208 | |
| 209 | static void LIBUSB_CALL dediprog_bulk_read_cb(struct libusb_transfer *const transfer) |
| 210 | { |
| 211 | struct dediprog_transfer_status *const status = (struct dediprog_transfer_status *)transfer->user_data; |
| 212 | if (transfer->status != LIBUSB_TRANSFER_COMPLETED) { |
| 213 | status->error = 1; |
| 214 | msg_perr("SPI bulk read failed!\n"); |
| 215 | } |
| 216 | ++status->finished_idx; |
| 217 | } |
| 218 | |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 219 | static int dediprog_bulk_read_poll(struct libusb_context *usb_ctx, |
| 220 | const struct dediprog_transfer_status *const status, |
| 221 | const int finish) |
Nico Huber | d99a2bd | 2016-02-18 21:42:49 +0000 | [diff] [blame] | 222 | { |
| 223 | if (status->finished_idx >= status->queued_idx) |
| 224 | return 0; |
| 225 | |
| 226 | do { |
| 227 | struct timeval timeout = { 10, 0 }; |
| 228 | const int ret = libusb_handle_events_timeout(usb_ctx, &timeout); |
| 229 | if (ret < 0) { |
| 230 | msg_perr("Polling read events failed: %i %s!\n", ret, libusb_error_name(ret)); |
| 231 | return 1; |
| 232 | } |
| 233 | } while (finish && (status->finished_idx < status->queued_idx)); |
| 234 | return 0; |
| 235 | } |
| 236 | |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 237 | static int dediprog_read(libusb_device_handle *dediprog_handle, |
| 238 | enum dediprog_cmds cmd, unsigned int value, unsigned int idx, |
| 239 | uint8_t *bytes, size_t size) |
Simon Glass | ae61651 | 2016-01-23 23:27:58 +0000 | [diff] [blame] | 240 | { |
Nico Huber | d99a2bd | 2016-02-18 21:42:49 +0000 | [diff] [blame] | 241 | return libusb_control_transfer(dediprog_handle, REQTYPE_EP_IN, cmd, value, idx, |
| 242 | (unsigned char *)bytes, size, DEFAULT_TIMEOUT); |
Simon Glass | ae61651 | 2016-01-23 23:27:58 +0000 | [diff] [blame] | 243 | } |
| 244 | |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 245 | static int dediprog_write(libusb_device_handle *dediprog_handle, |
| 246 | enum dediprog_cmds cmd, unsigned int value, unsigned int idx, |
| 247 | const uint8_t *bytes, size_t size) |
Simon Glass | ae61651 | 2016-01-23 23:27:58 +0000 | [diff] [blame] | 248 | { |
Nico Huber | d99a2bd | 2016-02-18 21:42:49 +0000 | [diff] [blame] | 249 | return libusb_control_transfer(dediprog_handle, REQTYPE_EP_OUT, cmd, value, idx, |
| 250 | (unsigned char *)bytes, size, DEFAULT_TIMEOUT); |
Simon Glass | ae61651 | 2016-01-23 23:27:58 +0000 | [diff] [blame] | 251 | } |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 252 | |
Nico Huber | d99a2bd | 2016-02-18 21:42:49 +0000 | [diff] [blame] | 253 | |
Simon Glass | 25e9f40 | 2015-06-28 13:31:19 +0000 | [diff] [blame] | 254 | /* This function sets the GPIOs connected to the LEDs as well as IO1-IO4. */ |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 255 | static int dediprog_set_leds(int leds, const struct dediprog_data *dp_data) |
Stefan Reinauer | 915b840 | 2011-01-28 09:00:15 +0000 | [diff] [blame] | 256 | { |
Simon Glass | 25e9f40 | 2015-06-28 13:31:19 +0000 | [diff] [blame] | 257 | if (leds < LED_NONE || leds > LED_ALL) |
| 258 | leds = LED_ALL; |
Stefan Reinauer | 915b840 | 2011-01-28 09:00:15 +0000 | [diff] [blame] | 259 | |
Simon Glass | ae61651 | 2016-01-23 23:27:58 +0000 | [diff] [blame] | 260 | /* Older Dediprogs with 2.x.x and 3.x.x firmware only had two LEDs, assigned to different bits. So map |
| 261 | * them around if we have an old device. On those devices the LEDs map as follows: |
Stefan Reinauer | 915b840 | 2011-01-28 09:00:15 +0000 | [diff] [blame] | 262 | * bit 2 == 0: green light is on. |
Simon Glass | ae61651 | 2016-01-23 23:27:58 +0000 | [diff] [blame] | 263 | * bit 0 == 0: red light is on. |
| 264 | * |
| 265 | * Additionally, the command structure has changed with the "new" protocol. |
| 266 | * |
| 267 | * FIXME: take IO pins into account |
Stefan Reinauer | 915b840 | 2011-01-28 09:00:15 +0000 | [diff] [blame] | 268 | */ |
Simon Glass | ae61651 | 2016-01-23 23:27:58 +0000 | [diff] [blame] | 269 | int target_leds, ret; |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 270 | if (protocol(dp_data) >= PROTOCOL_V2) { |
Simon Glass | ae61651 | 2016-01-23 23:27:58 +0000 | [diff] [blame] | 271 | target_leds = (leds ^ 7) << 8; |
Anastasia Klimchuk | 7d97388 | 2021-07-14 09:33:50 +1000 | [diff] [blame] | 272 | ret = dediprog_write(dp_data->handle, CMD_SET_IO_LED, target_leds, 0, NULL, 0); |
Stefan Reinauer | 915b840 | 2011-01-28 09:00:15 +0000 | [diff] [blame] | 273 | } else { |
Anastasia Klimchuk | 7d97388 | 2021-07-14 09:33:50 +1000 | [diff] [blame] | 274 | if (dp_data->firmwareversion < FIRMWARE_VERSION(5, 0, 0)) { |
Simon Glass | ae61651 | 2016-01-23 23:27:58 +0000 | [diff] [blame] | 275 | target_leds = ((leds & LED_ERROR) >> 2) | ((leds & LED_PASS) << 2); |
| 276 | } else { |
| 277 | target_leds = leds; |
| 278 | } |
| 279 | target_leds ^= 7; |
| 280 | |
Anastasia Klimchuk | 7d97388 | 2021-07-14 09:33:50 +1000 | [diff] [blame] | 281 | ret = dediprog_write(dp_data->handle, CMD_SET_IO_LED, 0x9, target_leds, NULL, 0); |
Stefan Reinauer | 915b840 | 2011-01-28 09:00:15 +0000 | [diff] [blame] | 282 | } |
| 283 | |
Stefan Reinauer | 915b840 | 2011-01-28 09:00:15 +0000 | [diff] [blame] | 284 | if (ret != 0x0) { |
Nico Huber | d99a2bd | 2016-02-18 21:42:49 +0000 | [diff] [blame] | 285 | msg_perr("Command Set LED 0x%x failed (%s)!\n", leds, libusb_error_name(ret)); |
Stefan Reinauer | 915b840 | 2011-01-28 09:00:15 +0000 | [diff] [blame] | 286 | return 1; |
| 287 | } |
| 288 | |
Stefan Reinauer | 915b840 | 2011-01-28 09:00:15 +0000 | [diff] [blame] | 289 | return 0; |
| 290 | } |
| 291 | |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 292 | static int dediprog_set_spi_voltage(libusb_device_handle *dediprog_handle, int millivolt) |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 293 | { |
| 294 | int ret; |
Carl-Daniel Hailfinger | c244138 | 2010-11-09 22:00:31 +0000 | [diff] [blame] | 295 | uint16_t voltage_selector; |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 296 | |
Carl-Daniel Hailfinger | c244138 | 2010-11-09 22:00:31 +0000 | [diff] [blame] | 297 | switch (millivolt) { |
| 298 | case 0: |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 299 | /* Admittedly this one is an assumption. */ |
Carl-Daniel Hailfinger | c244138 | 2010-11-09 22:00:31 +0000 | [diff] [blame] | 300 | voltage_selector = 0x0; |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 301 | break; |
Carl-Daniel Hailfinger | c244138 | 2010-11-09 22:00:31 +0000 | [diff] [blame] | 302 | case 1800: |
| 303 | voltage_selector = 0x12; |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 304 | break; |
Carl-Daniel Hailfinger | c244138 | 2010-11-09 22:00:31 +0000 | [diff] [blame] | 305 | case 2500: |
| 306 | voltage_selector = 0x11; |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 307 | break; |
Carl-Daniel Hailfinger | c244138 | 2010-11-09 22:00:31 +0000 | [diff] [blame] | 308 | case 3500: |
| 309 | voltage_selector = 0x10; |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 310 | break; |
| 311 | default: |
Carl-Daniel Hailfinger | c244138 | 2010-11-09 22:00:31 +0000 | [diff] [blame] | 312 | msg_perr("Unknown voltage %i mV! Aborting.\n", millivolt); |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 313 | return 1; |
| 314 | } |
Carl-Daniel Hailfinger | c244138 | 2010-11-09 22:00:31 +0000 | [diff] [blame] | 315 | msg_pdbg("Setting SPI voltage to %u.%03u V\n", millivolt / 1000, |
| 316 | millivolt % 1000); |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 317 | |
Nico Huber | 4099a8a | 2012-06-16 00:02:27 +0000 | [diff] [blame] | 318 | if (voltage_selector == 0) { |
| 319 | /* Wait some time as the original driver does. */ |
| 320 | programmer_delay(200 * 1000); |
| 321 | } |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 322 | ret = dediprog_write(dediprog_handle, CMD_SET_VCC, voltage_selector, 0, NULL, 0); |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 323 | if (ret != 0x0) { |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 324 | msg_perr("Command Set SPI Voltage 0x%x failed!\n", |
| 325 | voltage_selector); |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 326 | return 1; |
| 327 | } |
Nico Huber | 4099a8a | 2012-06-16 00:02:27 +0000 | [diff] [blame] | 328 | if (voltage_selector != 0) { |
| 329 | /* Wait some time as the original driver does. */ |
| 330 | programmer_delay(200 * 1000); |
| 331 | } |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 332 | return 0; |
| 333 | } |
| 334 | |
Nico Huber | 77fa67d | 2013-02-20 18:03:36 +0000 | [diff] [blame] | 335 | struct dediprog_spispeeds { |
| 336 | const char *const name; |
| 337 | const int speed; |
| 338 | }; |
| 339 | |
| 340 | static const struct dediprog_spispeeds spispeeds[] = { |
| 341 | { "24M", 0x0 }, |
| 342 | { "12M", 0x2 }, |
| 343 | { "8M", 0x1 }, |
| 344 | { "3M", 0x3 }, |
| 345 | { "2.18M", 0x4 }, |
| 346 | { "1.5M", 0x5 }, |
| 347 | { "750k", 0x6 }, |
| 348 | { "375k", 0x7 }, |
| 349 | { NULL, 0x0 }, |
| 350 | }; |
| 351 | |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 352 | static int dediprog_set_spi_speed(unsigned int spispeed_idx, const struct dediprog_data *dp_data) |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 353 | { |
Anastasia Klimchuk | 7d97388 | 2021-07-14 09:33:50 +1000 | [diff] [blame] | 354 | if (dp_data->firmwareversion < FIRMWARE_VERSION(5, 0, 0)) { |
Patrick Georgi | efe2d43 | 2013-05-23 21:47:46 +0000 | [diff] [blame] | 355 | msg_pwarn("Skipping to set SPI speed because firmware is too old.\n"); |
| 356 | return 0; |
| 357 | } |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 358 | |
Simon Glass | 557eb4f | 2015-07-05 16:53:22 +0000 | [diff] [blame] | 359 | const struct dediprog_spispeeds *spispeed = &spispeeds[spispeed_idx]; |
| 360 | msg_pdbg("SPI speed is %sHz\n", spispeed->name); |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 361 | |
Anastasia Klimchuk | 7d97388 | 2021-07-14 09:33:50 +1000 | [diff] [blame] | 362 | int ret = dediprog_write(dp_data->handle, CMD_SET_SPI_CLK, spispeed->speed, 0, NULL, 0); |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 363 | if (ret != 0x0) { |
Simon Glass | 557eb4f | 2015-07-05 16:53:22 +0000 | [diff] [blame] | 364 | msg_perr("Command Set SPI Speed 0x%x failed!\n", spispeed->speed); |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 365 | return 1; |
| 366 | } |
| 367 | return 0; |
| 368 | } |
| 369 | |
Nico Huber | 7eb38aa | 2019-03-21 15:42:54 +0100 | [diff] [blame] | 370 | static int prepare_rw_cmd( |
Nico Huber | 93db6e1 | 2018-09-30 01:18:43 +0200 | [diff] [blame] | 371 | struct flashctx *const flash, uint8_t *data_packet, unsigned int count, |
Nico Huber | 477e169 | 2019-06-18 23:56:01 +0200 | [diff] [blame] | 372 | uint8_t dedi_spi_cmd, unsigned int *value, unsigned int *idx, unsigned int start, int is_read) |
| 373 | { |
Nico Huber | 9a11cbf | 2023-01-13 01:19:07 +0100 | [diff] [blame] | 374 | const struct dediprog_data *dp_data = flash->mst.spi->data; |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 375 | |
Nico Huber | a96aaa3 | 2024-03-05 12:56:13 +0100 | [diff] [blame] | 376 | if (count > MAX_BLOCK_COUNT) { |
Nico Huber | ac90af6 | 2022-12-18 00:22:47 +0000 | [diff] [blame] | 377 | msg_perr("%s: Unsupported transfer length of %u blocks!\n" |
Nico Huber | c3b02dc | 2023-08-12 01:13:45 +0200 | [diff] [blame] | 378 | "Please report a bug at flashprog@flashprog.org\n", |
Nico Huber | 477e169 | 2019-06-18 23:56:01 +0200 | [diff] [blame] | 379 | __func__, count); |
| 380 | return 1; |
| 381 | } |
| 382 | |
Simon Glass | ae61651 | 2016-01-23 23:27:58 +0000 | [diff] [blame] | 383 | /* First 5 bytes are common in both generations. */ |
| 384 | data_packet[0] = count & 0xff; |
| 385 | data_packet[1] = (count >> 8) & 0xff; |
| 386 | data_packet[2] = 0; /* RFU */ |
| 387 | data_packet[3] = dedi_spi_cmd; /* Read/Write Mode (currently READ_MODE_STD, WRITE_MODE_PAGE_PGM or WRITE_MODE_2B_AAI) */ |
| 388 | data_packet[4] = 0; /* "Opcode". Specs imply necessity only for READ_MODE_4B_ADDR_FAST and WRITE_MODE_4B_ADDR_256B_PAGE_PGM */ |
| 389 | |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 390 | if (protocol(dp_data) >= PROTOCOL_V2) { |
Nico Huber | 93db6e1 | 2018-09-30 01:18:43 +0200 | [diff] [blame] | 391 | if (is_read && flash->chip->feature_bits & FEATURE_4BA_FAST_READ) { |
| 392 | data_packet[3] = READ_MODE_4B_ADDR_FAST_0x0C; |
| 393 | data_packet[4] = JEDEC_READ_4BA_FAST; |
| 394 | } else if (dedi_spi_cmd == WRITE_MODE_PAGE_PGM |
| 395 | && (flash->chip->feature_bits & FEATURE_4BA_WRITE)) { |
Nico Huber | fb176d2 | 2024-03-25 15:55:13 +0100 | [diff] [blame^] | 396 | if (protocol(dp_data) >= PROTOCOL_V3) |
| 397 | data_packet[3] = WRITE_MODE_4B_ADDR_256B_PAGE_PGM; |
| 398 | else |
| 399 | data_packet[3] = WRITE_MODE_4B_ADDR_256B_PAGE_PGM_0x12; |
Nico Huber | 93db6e1 | 2018-09-30 01:18:43 +0200 | [diff] [blame] | 400 | data_packet[4] = JEDEC_BYTE_PROGRAM_4BA; |
| 401 | } |
| 402 | |
Simon Glass | ae61651 | 2016-01-23 23:27:58 +0000 | [diff] [blame] | 403 | *value = *idx = 0; |
| 404 | data_packet[5] = 0; /* RFU */ |
| 405 | data_packet[6] = (start >> 0) & 0xff; |
| 406 | data_packet[7] = (start >> 8) & 0xff; |
| 407 | data_packet[8] = (start >> 16) & 0xff; |
| 408 | data_packet[9] = (start >> 24) & 0xff; |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 409 | if (protocol(dp_data) >= PROTOCOL_V3) { |
David Hendricks | f73f8a7 | 2018-02-21 07:34:34 -0800 | [diff] [blame] | 410 | if (is_read) { |
| 411 | data_packet[10] = 0x00; /* address length (3 or 4) */ |
| 412 | data_packet[11] = 0x00; /* dummy cycle / 2 */ |
| 413 | } else { |
| 414 | /* 16 LSBs and 16 HSBs of page size */ |
| 415 | /* FIXME: This assumes page size of 256. */ |
| 416 | data_packet[10] = 0x00; |
| 417 | data_packet[11] = 0x01; |
| 418 | data_packet[12] = 0x00; |
| 419 | data_packet[13] = 0x00; |
| 420 | } |
| 421 | } |
Simon Glass | ae61651 | 2016-01-23 23:27:58 +0000 | [diff] [blame] | 422 | } else { |
Nico Huber | 9bb8a32 | 2022-05-24 15:07:34 +0200 | [diff] [blame] | 423 | if (flash->chip->feature_bits & FEATURE_4BA_EAR_ANY) { |
Nico Huber | 7eb38aa | 2019-03-21 15:42:54 +0100 | [diff] [blame] | 424 | if (spi_set_extended_address(flash, start >> 24)) |
| 425 | return 1; |
| 426 | } else if (start >> 24) { |
| 427 | msg_cerr("Can't handle 4-byte address with dediprog.\n"); |
| 428 | return 1; |
| 429 | } |
| 430 | /* |
| 431 | * We don't know how the dediprog firmware handles 4-byte |
| 432 | * addresses. So let's not tell it what we are doing and |
| 433 | * only send the lower 3 bytes. |
| 434 | */ |
| 435 | *value = start & 0xffff; |
| 436 | *idx = (start >> 16) & 0xff; |
Simon Glass | ae61651 | 2016-01-23 23:27:58 +0000 | [diff] [blame] | 437 | } |
Nico Huber | 7eb38aa | 2019-03-21 15:42:54 +0100 | [diff] [blame] | 438 | |
| 439 | return 0; |
Simon Glass | ae61651 | 2016-01-23 23:27:58 +0000 | [diff] [blame] | 440 | } |
| 441 | |
Carl-Daniel Hailfinger | 482e974 | 2010-11-16 21:25:29 +0000 | [diff] [blame] | 442 | /* Bulk read interface, will read multiple 512 byte chunks aligned to 512 bytes. |
| 443 | * @start start address |
| 444 | * @len length |
| 445 | * @return 0 on success, 1 on failure |
| 446 | */ |
Simon Glass | ae61651 | 2016-01-23 23:27:58 +0000 | [diff] [blame] | 447 | static int dediprog_spi_bulk_read(struct flashctx *flash, uint8_t *buf, unsigned int start, unsigned int len) |
Carl-Daniel Hailfinger | 482e974 | 2010-11-16 21:25:29 +0000 | [diff] [blame] | 448 | { |
Nico Huber | d99a2bd | 2016-02-18 21:42:49 +0000 | [diff] [blame] | 449 | int err = 1; |
Nico Huber | 9a11cbf | 2023-01-13 01:19:07 +0100 | [diff] [blame] | 450 | const struct dediprog_data *dp_data = flash->mst.spi->data; |
Nico Huber | d99a2bd | 2016-02-18 21:42:49 +0000 | [diff] [blame] | 451 | |
Carl-Daniel Hailfinger | 482e974 | 2010-11-16 21:25:29 +0000 | [diff] [blame] | 452 | /* chunksize must be 512, other sizes will NOT work at all. */ |
Simon Glass | ae61651 | 2016-01-23 23:27:58 +0000 | [diff] [blame] | 453 | const unsigned int chunksize = 512; |
Stefan Tauner | c69c9c8 | 2011-11-23 09:13:48 +0000 | [diff] [blame] | 454 | const unsigned int count = len / chunksize; |
Carl-Daniel Hailfinger | 482e974 | 2010-11-16 21:25:29 +0000 | [diff] [blame] | 455 | |
Nico Huber | d99a2bd | 2016-02-18 21:42:49 +0000 | [diff] [blame] | 456 | struct dediprog_transfer_status status = { 0, 0, 0 }; |
| 457 | struct libusb_transfer *transfers[DEDIPROG_ASYNC_TRANSFERS] = { NULL, }; |
| 458 | struct libusb_transfer *transfer; |
| 459 | |
Nico Huber | bbaa171 | 2018-12-05 13:26:20 +0100 | [diff] [blame] | 460 | if (len == 0) |
| 461 | return 0; |
| 462 | |
Carl-Daniel Hailfinger | 482e974 | 2010-11-16 21:25:29 +0000 | [diff] [blame] | 463 | if ((start % chunksize) || (len % chunksize)) { |
Nico Huber | ac90af6 | 2022-12-18 00:22:47 +0000 | [diff] [blame] | 464 | msg_perr("%s: Unaligned start=%i, len=%i!\n" |
Nico Huber | c3b02dc | 2023-08-12 01:13:45 +0200 | [diff] [blame] | 465 | "Please report a bug at flashprog@flashprog.org\n", |
Simon Glass | ae61651 | 2016-01-23 23:27:58 +0000 | [diff] [blame] | 466 | __func__, start, len); |
Carl-Daniel Hailfinger | 482e974 | 2010-11-16 21:25:29 +0000 | [diff] [blame] | 467 | return 1; |
| 468 | } |
| 469 | |
David Hendricks | f73f8a7 | 2018-02-21 07:34:34 -0800 | [diff] [blame] | 470 | int command_packet_size; |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 471 | switch (protocol(dp_data)) { |
David Hendricks | f73f8a7 | 2018-02-21 07:34:34 -0800 | [diff] [blame] | 472 | case PROTOCOL_V1: |
| 473 | command_packet_size = 5; |
| 474 | break; |
| 475 | case PROTOCOL_V2: |
| 476 | command_packet_size = 10; |
| 477 | break; |
| 478 | case PROTOCOL_V3: |
| 479 | command_packet_size = 12; |
| 480 | break; |
| 481 | default: |
| 482 | return 1; |
| 483 | } |
| 484 | |
| 485 | uint8_t data_packet[command_packet_size]; |
Simon Glass | ae61651 | 2016-01-23 23:27:58 +0000 | [diff] [blame] | 486 | unsigned int value, idx; |
Nico Huber | 7eb38aa | 2019-03-21 15:42:54 +0100 | [diff] [blame] | 487 | if (prepare_rw_cmd(flash, data_packet, count, READ_MODE_STD, &value, &idx, start, 1)) |
| 488 | return 1; |
Simon Glass | ae61651 | 2016-01-23 23:27:58 +0000 | [diff] [blame] | 489 | |
Anastasia Klimchuk | 7d97388 | 2021-07-14 09:33:50 +1000 | [diff] [blame] | 490 | int ret = dediprog_write(dp_data->handle, CMD_READ, value, idx, data_packet, sizeof(data_packet)); |
Nico Huber | 519be66 | 2018-12-23 20:03:35 +0100 | [diff] [blame] | 491 | if (ret != (int)sizeof(data_packet)) { |
Nico Huber | d99a2bd | 2016-02-18 21:42:49 +0000 | [diff] [blame] | 492 | msg_perr("Command Read SPI Bulk failed, %i %s!\n", ret, libusb_error_name(ret)); |
Carl-Daniel Hailfinger | 482e974 | 2010-11-16 21:25:29 +0000 | [diff] [blame] | 493 | return 1; |
| 494 | } |
| 495 | |
Nico Huber | d99a2bd | 2016-02-18 21:42:49 +0000 | [diff] [blame] | 496 | /* |
| 497 | * Ring buffer of bulk transfers. |
| 498 | * Poll until at least one transfer is ready, |
| 499 | * schedule next transfers until buffer is full. |
| 500 | */ |
Carl-Daniel Hailfinger | 482e974 | 2010-11-16 21:25:29 +0000 | [diff] [blame] | 501 | |
Nico Huber | d99a2bd | 2016-02-18 21:42:49 +0000 | [diff] [blame] | 502 | /* Allocate bulk transfers. */ |
| 503 | unsigned int i; |
Nico Huber | 519be66 | 2018-12-23 20:03:35 +0100 | [diff] [blame] | 504 | for (i = 0; i < MIN(DEDIPROG_ASYNC_TRANSFERS, count); ++i) { |
Nico Huber | d99a2bd | 2016-02-18 21:42:49 +0000 | [diff] [blame] | 505 | transfers[i] = libusb_alloc_transfer(0); |
| 506 | if (!transfers[i]) { |
| 507 | msg_perr("Allocating libusb transfer %i failed: %s!\n", i, libusb_error_name(ret)); |
| 508 | goto err_free; |
Elyes HAOUAS | 124ef38 | 2018-03-27 12:15:09 +0200 | [diff] [blame] | 509 | } |
| 510 | } |
Nico Huber | d99a2bd | 2016-02-18 21:42:49 +0000 | [diff] [blame] | 511 | |
| 512 | /* Now transfer requested chunks using libusb's asynchronous interface. */ |
| 513 | while (!status.error && (status.queued_idx < count)) { |
Nico Huber | f84df9a | 2016-05-04 13:24:07 +0200 | [diff] [blame] | 514 | while ((status.queued_idx < count) && |
| 515 | (status.queued_idx - status.finished_idx) < DEDIPROG_ASYNC_TRANSFERS) |
| 516 | { |
Nico Huber | d99a2bd | 2016-02-18 21:42:49 +0000 | [diff] [blame] | 517 | transfer = transfers[status.queued_idx % DEDIPROG_ASYNC_TRANSFERS]; |
Anastasia Klimchuk | 7d97388 | 2021-07-14 09:33:50 +1000 | [diff] [blame] | 518 | libusb_fill_bulk_transfer(transfer, dp_data->handle, 0x80 | dp_data->in_endpoint, |
Nico Huber | d99a2bd | 2016-02-18 21:42:49 +0000 | [diff] [blame] | 519 | (unsigned char *)buf + status.queued_idx * chunksize, chunksize, |
| 520 | dediprog_bulk_read_cb, &status, DEFAULT_TIMEOUT); |
| 521 | transfer->flags |= LIBUSB_TRANSFER_SHORT_NOT_OK; |
| 522 | ret = libusb_submit_transfer(transfer); |
| 523 | if (ret < 0) { |
| 524 | msg_perr("Submitting SPI bulk read %i failed: %s!\n", |
| 525 | status.queued_idx, libusb_error_name(ret)); |
| 526 | goto err_free; |
| 527 | } |
| 528 | ++status.queued_idx; |
| 529 | } |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 530 | if (dediprog_bulk_read_poll(dp_data->usb_ctx, &status, 0)) |
Nico Huber | d99a2bd | 2016-02-18 21:42:49 +0000 | [diff] [blame] | 531 | goto err_free; |
| 532 | } |
| 533 | /* Wait for transfers to finish. */ |
Rick Altherr | 4f9cd8b | 2021-12-13 17:10:00 -0800 | [diff] [blame] | 534 | if (dediprog_bulk_read_poll(dp_data->usb_ctx, &status, 1)) |
Nico Huber | d99a2bd | 2016-02-18 21:42:49 +0000 | [diff] [blame] | 535 | goto err_free; |
| 536 | /* Check if everything has been transmitted. */ |
| 537 | if ((status.finished_idx < count) || status.error) |
| 538 | goto err_free; |
| 539 | |
| 540 | err = 0; |
| 541 | |
| 542 | err_free: |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 543 | dediprog_bulk_read_poll(dp_data->usb_ctx, &status, 1); |
Nico Huber | d99a2bd | 2016-02-18 21:42:49 +0000 | [diff] [blame] | 544 | for (i = 0; i < DEDIPROG_ASYNC_TRANSFERS; ++i) |
| 545 | if (transfers[i]) libusb_free_transfer(transfers[i]); |
| 546 | return err; |
Carl-Daniel Hailfinger | 482e974 | 2010-11-16 21:25:29 +0000 | [diff] [blame] | 547 | } |
| 548 | |
Simon Glass | ae61651 | 2016-01-23 23:27:58 +0000 | [diff] [blame] | 549 | static int dediprog_spi_read(struct flashctx *flash, uint8_t *buf, unsigned int start, unsigned int len) |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 550 | { |
Carl-Daniel Hailfinger | 482e974 | 2010-11-16 21:25:29 +0000 | [diff] [blame] | 551 | int ret; |
| 552 | /* chunksize must be 512, other sizes will NOT work at all. */ |
Stefan Tauner | c69c9c8 | 2011-11-23 09:13:48 +0000 | [diff] [blame] | 553 | const unsigned int chunksize = 0x200; |
Nico Huber | bbaa171 | 2018-12-05 13:26:20 +0100 | [diff] [blame] | 554 | unsigned int residue = start % chunksize ? min(len, chunksize - start % chunksize) : 0; |
Stefan Tauner | c69c9c8 | 2011-11-23 09:13:48 +0000 | [diff] [blame] | 555 | unsigned int bulklen; |
Nico Huber | 9a11cbf | 2023-01-13 01:19:07 +0100 | [diff] [blame] | 556 | const struct dediprog_data *dp_data = flash->mst.spi->data; |
Carl-Daniel Hailfinger | 482e974 | 2010-11-16 21:25:29 +0000 | [diff] [blame] | 557 | |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 558 | dediprog_set_leds(LED_BUSY, dp_data); |
Stefan Reinauer | 915b840 | 2011-01-28 09:00:15 +0000 | [diff] [blame] | 559 | |
Carl-Daniel Hailfinger | 482e974 | 2010-11-16 21:25:29 +0000 | [diff] [blame] | 560 | if (residue) { |
| 561 | msg_pdbg("Slow read for partial block from 0x%x, length 0x%x\n", |
| 562 | start, residue); |
Edward O'Callaghan | 317c67b | 2020-10-09 12:56:53 +1100 | [diff] [blame] | 563 | ret = default_spi_read(flash, buf, start, residue); |
Simon Glass | 25e9f40 | 2015-06-28 13:31:19 +0000 | [diff] [blame] | 564 | if (ret) |
| 565 | goto err; |
Carl-Daniel Hailfinger | 482e974 | 2010-11-16 21:25:29 +0000 | [diff] [blame] | 566 | } |
| 567 | |
| 568 | /* Round down. */ |
| 569 | bulklen = (len - residue) / chunksize * chunksize; |
Simon Glass | ae61651 | 2016-01-23 23:27:58 +0000 | [diff] [blame] | 570 | ret = dediprog_spi_bulk_read(flash, buf + residue, start + residue, bulklen); |
Simon Glass | 25e9f40 | 2015-06-28 13:31:19 +0000 | [diff] [blame] | 571 | if (ret) |
| 572 | goto err; |
Carl-Daniel Hailfinger | 482e974 | 2010-11-16 21:25:29 +0000 | [diff] [blame] | 573 | |
| 574 | len -= residue + bulklen; |
Simon Glass | ae61651 | 2016-01-23 23:27:58 +0000 | [diff] [blame] | 575 | if (len != 0) { |
Carl-Daniel Hailfinger | 482e974 | 2010-11-16 21:25:29 +0000 | [diff] [blame] | 576 | msg_pdbg("Slow read for partial block from 0x%x, length 0x%x\n", |
| 577 | start, len); |
Edward O'Callaghan | 317c67b | 2020-10-09 12:56:53 +1100 | [diff] [blame] | 578 | ret = default_spi_read(flash, buf + residue + bulklen, |
| 579 | start + residue + bulklen, len); |
Simon Glass | 25e9f40 | 2015-06-28 13:31:19 +0000 | [diff] [blame] | 580 | if (ret) |
| 581 | goto err; |
Carl-Daniel Hailfinger | 482e974 | 2010-11-16 21:25:29 +0000 | [diff] [blame] | 582 | } |
| 583 | |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 584 | dediprog_set_leds(LED_PASS, dp_data); |
Carl-Daniel Hailfinger | 482e974 | 2010-11-16 21:25:29 +0000 | [diff] [blame] | 585 | return 0; |
Simon Glass | 25e9f40 | 2015-06-28 13:31:19 +0000 | [diff] [blame] | 586 | err: |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 587 | dediprog_set_leds(LED_ERROR, dp_data); |
Simon Glass | 25e9f40 | 2015-06-28 13:31:19 +0000 | [diff] [blame] | 588 | return ret; |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 589 | } |
| 590 | |
Nico Huber | a4b14f7 | 2012-06-19 12:06:53 +0000 | [diff] [blame] | 591 | /* Bulk write interface, will write multiple chunksize byte chunks aligned to chunksize bytes. |
| 592 | * @chunksize length of data chunks, only 256 supported by now |
| 593 | * @start start address |
| 594 | * @len length |
| 595 | * @dedi_spi_cmd dediprog specific write command for spi bus |
| 596 | * @return 0 on success, 1 on failure |
Carl-Daniel Hailfinger | 64204b5 | 2011-12-20 01:54:19 +0000 | [diff] [blame] | 597 | */ |
Stefan Tauner | ffb0cf6 | 2014-05-25 07:47:47 +0000 | [diff] [blame] | 598 | static int dediprog_spi_bulk_write(struct flashctx *flash, const uint8_t *buf, unsigned int chunksize, |
Nico Huber | a4b14f7 | 2012-06-19 12:06:53 +0000 | [diff] [blame] | 599 | unsigned int start, unsigned int len, uint8_t dedi_spi_cmd) |
Carl-Daniel Hailfinger | 64204b5 | 2011-12-20 01:54:19 +0000 | [diff] [blame] | 600 | { |
Carl-Daniel Hailfinger | 64204b5 | 2011-12-20 01:54:19 +0000 | [diff] [blame] | 601 | /* USB transfer size must be 512, other sizes will NOT work at all. |
| 602 | * chunksize is the real data size per USB bulk transfer. The remaining |
| 603 | * space in a USB bulk transfer must be filled with 0xff padding. |
| 604 | */ |
Carl-Daniel Hailfinger | 64204b5 | 2011-12-20 01:54:19 +0000 | [diff] [blame] | 605 | const unsigned int count = len / chunksize; |
Nico Huber | 9a11cbf | 2023-01-13 01:19:07 +0100 | [diff] [blame] | 606 | const struct dediprog_data *dp_data = flash->mst.spi->data; |
Carl-Daniel Hailfinger | 64204b5 | 2011-12-20 01:54:19 +0000 | [diff] [blame] | 607 | |
Nico Huber | a4b14f7 | 2012-06-19 12:06:53 +0000 | [diff] [blame] | 608 | /* |
| 609 | * We should change this check to |
| 610 | * chunksize > 512 |
| 611 | * once we know how to handle different chunk sizes. |
| 612 | */ |
| 613 | if (chunksize != 256) { |
| 614 | msg_perr("%s: Chunk sizes other than 256 bytes are unsupported, chunksize=%u!\n" |
Nico Huber | c3b02dc | 2023-08-12 01:13:45 +0200 | [diff] [blame] | 615 | "Please report a bug at flashprog@flashprog.org\n", |
Nico Huber | ac90af6 | 2022-12-18 00:22:47 +0000 | [diff] [blame] | 616 | __func__, chunksize); |
Nico Huber | a4b14f7 | 2012-06-19 12:06:53 +0000 | [diff] [blame] | 617 | return 1; |
| 618 | } |
| 619 | |
Carl-Daniel Hailfinger | 64204b5 | 2011-12-20 01:54:19 +0000 | [diff] [blame] | 620 | if ((start % chunksize) || (len % chunksize)) { |
Nico Huber | ac90af6 | 2022-12-18 00:22:47 +0000 | [diff] [blame] | 621 | msg_perr("%s: Unaligned start=%i, len=%i!\n" |
Nico Huber | c3b02dc | 2023-08-12 01:13:45 +0200 | [diff] [blame] | 622 | "Please report a bug at flashprog@flashprog.org\n", |
Nico Huber | ac90af6 | 2022-12-18 00:22:47 +0000 | [diff] [blame] | 623 | __func__, start, len); |
Carl-Daniel Hailfinger | 64204b5 | 2011-12-20 01:54:19 +0000 | [diff] [blame] | 624 | return 1; |
| 625 | } |
| 626 | |
| 627 | /* No idea if the hardware can handle empty writes, so chicken out. */ |
Simon Glass | ae61651 | 2016-01-23 23:27:58 +0000 | [diff] [blame] | 628 | if (len == 0) |
Carl-Daniel Hailfinger | 64204b5 | 2011-12-20 01:54:19 +0000 | [diff] [blame] | 629 | return 0; |
Simon Glass | ae61651 | 2016-01-23 23:27:58 +0000 | [diff] [blame] | 630 | |
David Hendricks | f73f8a7 | 2018-02-21 07:34:34 -0800 | [diff] [blame] | 631 | int command_packet_size; |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 632 | switch (protocol(dp_data)) { |
David Hendricks | f73f8a7 | 2018-02-21 07:34:34 -0800 | [diff] [blame] | 633 | case PROTOCOL_V1: |
| 634 | command_packet_size = 5; |
| 635 | break; |
| 636 | case PROTOCOL_V2: |
| 637 | command_packet_size = 10; |
| 638 | break; |
| 639 | case PROTOCOL_V3: |
| 640 | command_packet_size = 14; |
| 641 | break; |
| 642 | default: |
| 643 | return 1; |
| 644 | } |
| 645 | |
| 646 | uint8_t data_packet[command_packet_size]; |
Simon Glass | ae61651 | 2016-01-23 23:27:58 +0000 | [diff] [blame] | 647 | unsigned int value, idx; |
Nico Huber | 7eb38aa | 2019-03-21 15:42:54 +0100 | [diff] [blame] | 648 | if (prepare_rw_cmd(flash, data_packet, count, dedi_spi_cmd, &value, &idx, start, 0)) |
| 649 | return 1; |
Anastasia Klimchuk | 7d97388 | 2021-07-14 09:33:50 +1000 | [diff] [blame] | 650 | int ret = dediprog_write(dp_data->handle, CMD_WRITE, value, idx, data_packet, sizeof(data_packet)); |
Nico Huber | 519be66 | 2018-12-23 20:03:35 +0100 | [diff] [blame] | 651 | if (ret != (int)sizeof(data_packet)) { |
Nico Huber | d99a2bd | 2016-02-18 21:42:49 +0000 | [diff] [blame] | 652 | msg_perr("Command Write SPI Bulk failed, %s!\n", libusb_error_name(ret)); |
Carl-Daniel Hailfinger | 64204b5 | 2011-12-20 01:54:19 +0000 | [diff] [blame] | 653 | return 1; |
| 654 | } |
| 655 | |
Simon Glass | ae61651 | 2016-01-23 23:27:58 +0000 | [diff] [blame] | 656 | unsigned int i; |
Carl-Daniel Hailfinger | 64204b5 | 2011-12-20 01:54:19 +0000 | [diff] [blame] | 657 | for (i = 0; i < count; i++) { |
Nico Huber | d99a2bd | 2016-02-18 21:42:49 +0000 | [diff] [blame] | 658 | unsigned char usbbuf[512]; |
Carl-Daniel Hailfinger | 64204b5 | 2011-12-20 01:54:19 +0000 | [diff] [blame] | 659 | memcpy(usbbuf, buf + i * chunksize, chunksize); |
Simon Glass | ae61651 | 2016-01-23 23:27:58 +0000 | [diff] [blame] | 660 | memset(usbbuf + chunksize, 0xff, sizeof(usbbuf) - chunksize); // fill up with 0xFF |
Nico Huber | d99a2bd | 2016-02-18 21:42:49 +0000 | [diff] [blame] | 661 | int transferred; |
Anastasia Klimchuk | 7d97388 | 2021-07-14 09:33:50 +1000 | [diff] [blame] | 662 | ret = libusb_bulk_transfer(dp_data->handle, dp_data->out_endpoint, usbbuf, 512, &transferred, |
Nico Huber | d99a2bd | 2016-02-18 21:42:49 +0000 | [diff] [blame] | 663 | DEFAULT_TIMEOUT); |
| 664 | if ((ret < 0) || (transferred != 512)) { |
| 665 | msg_perr("SPI bulk write failed, expected %i, got %s!\n", 512, libusb_error_name(ret)); |
Carl-Daniel Hailfinger | 64204b5 | 2011-12-20 01:54:19 +0000 | [diff] [blame] | 666 | return 1; |
| 667 | } |
| 668 | } |
| 669 | |
| 670 | return 0; |
| 671 | } |
| 672 | |
Stefan Tauner | ffb0cf6 | 2014-05-25 07:47:47 +0000 | [diff] [blame] | 673 | static int dediprog_spi_write(struct flashctx *flash, const uint8_t *buf, |
Nico Huber | a4b14f7 | 2012-06-19 12:06:53 +0000 | [diff] [blame] | 674 | unsigned int start, unsigned int len, uint8_t dedi_spi_cmd) |
Carl-Daniel Hailfinger | 306b818 | 2010-11-23 21:28:16 +0000 | [diff] [blame] | 675 | { |
Stefan Reinauer | 915b840 | 2011-01-28 09:00:15 +0000 | [diff] [blame] | 676 | int ret; |
Carl-Daniel Hailfinger | 5a7cb84 | 2012-08-25 01:17:58 +0000 | [diff] [blame] | 677 | const unsigned int chunksize = flash->chip->page_size; |
Carl-Daniel Hailfinger | 64204b5 | 2011-12-20 01:54:19 +0000 | [diff] [blame] | 678 | unsigned int residue = start % chunksize ? chunksize - start % chunksize : 0; |
| 679 | unsigned int bulklen; |
Nico Huber | 9a11cbf | 2023-01-13 01:19:07 +0100 | [diff] [blame] | 680 | const struct dediprog_data *dp_data = flash->mst.spi->data; |
Stefan Reinauer | 915b840 | 2011-01-28 09:00:15 +0000 | [diff] [blame] | 681 | |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 682 | dediprog_set_leds(LED_BUSY, dp_data); |
Stefan Reinauer | 915b840 | 2011-01-28 09:00:15 +0000 | [diff] [blame] | 683 | |
Nico Huber | a4b14f7 | 2012-06-19 12:06:53 +0000 | [diff] [blame] | 684 | if (chunksize != 256) { |
| 685 | msg_pdbg("Page sizes other than 256 bytes are unsupported as " |
| 686 | "we don't know how dediprog\nhandles them.\n"); |
| 687 | /* Write everything like it was residue. */ |
| 688 | residue = len; |
| 689 | } |
| 690 | |
Carl-Daniel Hailfinger | 64204b5 | 2011-12-20 01:54:19 +0000 | [diff] [blame] | 691 | if (residue) { |
| 692 | msg_pdbg("Slow write for partial block from 0x%x, length 0x%x\n", |
| 693 | start, residue); |
Nico Huber | 93db6e1 | 2018-09-30 01:18:43 +0200 | [diff] [blame] | 694 | /* No idea about the real limit. Maybe 16 including command and address, maybe more. */ |
| 695 | ret = spi_write_chunked(flash, buf, start, residue, 11); |
Carl-Daniel Hailfinger | 64204b5 | 2011-12-20 01:54:19 +0000 | [diff] [blame] | 696 | if (ret) { |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 697 | dediprog_set_leds(LED_ERROR, dp_data); |
Carl-Daniel Hailfinger | 64204b5 | 2011-12-20 01:54:19 +0000 | [diff] [blame] | 698 | return ret; |
| 699 | } |
| 700 | } |
Stefan Reinauer | 915b840 | 2011-01-28 09:00:15 +0000 | [diff] [blame] | 701 | |
Carl-Daniel Hailfinger | 64204b5 | 2011-12-20 01:54:19 +0000 | [diff] [blame] | 702 | /* Round down. */ |
| 703 | bulklen = (len - residue) / chunksize * chunksize; |
Nico Huber | a4b14f7 | 2012-06-19 12:06:53 +0000 | [diff] [blame] | 704 | ret = dediprog_spi_bulk_write(flash, buf + residue, chunksize, start + residue, bulklen, dedi_spi_cmd); |
Carl-Daniel Hailfinger | 64204b5 | 2011-12-20 01:54:19 +0000 | [diff] [blame] | 705 | if (ret) { |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 706 | dediprog_set_leds(LED_ERROR, dp_data); |
Carl-Daniel Hailfinger | 64204b5 | 2011-12-20 01:54:19 +0000 | [diff] [blame] | 707 | return ret; |
| 708 | } |
Stefan Reinauer | 915b840 | 2011-01-28 09:00:15 +0000 | [diff] [blame] | 709 | |
Carl-Daniel Hailfinger | 64204b5 | 2011-12-20 01:54:19 +0000 | [diff] [blame] | 710 | len -= residue + bulklen; |
| 711 | if (len) { |
| 712 | msg_pdbg("Slow write for partial block from 0x%x, length 0x%x\n", |
| 713 | start, len); |
| 714 | ret = spi_write_chunked(flash, buf + residue + bulklen, |
Nico Huber | 93db6e1 | 2018-09-30 01:18:43 +0200 | [diff] [blame] | 715 | start + residue + bulklen, len, 11); |
Carl-Daniel Hailfinger | 64204b5 | 2011-12-20 01:54:19 +0000 | [diff] [blame] | 716 | if (ret) { |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 717 | dediprog_set_leds(LED_ERROR, dp_data); |
Carl-Daniel Hailfinger | 64204b5 | 2011-12-20 01:54:19 +0000 | [diff] [blame] | 718 | return ret; |
| 719 | } |
| 720 | } |
| 721 | |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 722 | dediprog_set_leds(LED_PASS, dp_data); |
Carl-Daniel Hailfinger | 64204b5 | 2011-12-20 01:54:19 +0000 | [diff] [blame] | 723 | return 0; |
Carl-Daniel Hailfinger | 306b818 | 2010-11-23 21:28:16 +0000 | [diff] [blame] | 724 | } |
| 725 | |
Nico Huber | a96aaa3 | 2024-03-05 12:56:13 +0100 | [diff] [blame] | 726 | static int dediprog_spi_write_chunked(struct flashctx *flash, const uint8_t *buf, |
| 727 | unsigned int start, unsigned int len, uint8_t dedi_spi_cmd) |
| 728 | { |
| 729 | /* We can write only up to 65535 pages at once: */ |
| 730 | while (len) { |
| 731 | const size_t len_here = MIN(len, flash->chip->page_size * MAX_BLOCK_COUNT); |
| 732 | const int ret = dediprog_spi_write(flash, buf, start, len_here, dedi_spi_cmd); |
| 733 | if (ret) |
| 734 | return ret; |
| 735 | |
| 736 | start += len_here; |
| 737 | buf += len_here; |
| 738 | len -= len_here; |
| 739 | } |
| 740 | return 0; |
| 741 | } |
| 742 | |
Stefan Tauner | ffb0cf6 | 2014-05-25 07:47:47 +0000 | [diff] [blame] | 743 | static int dediprog_spi_write_256(struct flashctx *flash, const uint8_t *buf, unsigned int start, unsigned int len) |
Nico Huber | a4b14f7 | 2012-06-19 12:06:53 +0000 | [diff] [blame] | 744 | { |
Nico Huber | a96aaa3 | 2024-03-05 12:56:13 +0100 | [diff] [blame] | 745 | return dediprog_spi_write_chunked(flash, buf, start, len, WRITE_MODE_PAGE_PGM); |
Nico Huber | a4b14f7 | 2012-06-19 12:06:53 +0000 | [diff] [blame] | 746 | } |
| 747 | |
Stefan Tauner | ffb0cf6 | 2014-05-25 07:47:47 +0000 | [diff] [blame] | 748 | static int dediprog_spi_write_aai(struct flashctx *flash, const uint8_t *buf, unsigned int start, unsigned int len) |
Nico Huber | a4b14f7 | 2012-06-19 12:06:53 +0000 | [diff] [blame] | 749 | { |
Nico Huber | a96aaa3 | 2024-03-05 12:56:13 +0100 | [diff] [blame] | 750 | return dediprog_spi_write_chunked(flash, buf, start, len, WRITE_MODE_2B_AAI); |
Nico Huber | a4b14f7 | 2012-06-19 12:06:53 +0000 | [diff] [blame] | 751 | } |
| 752 | |
Edward O'Callaghan | 5eca427 | 2020-04-12 17:27:53 +1000 | [diff] [blame] | 753 | static int dediprog_spi_send_command(const struct flashctx *flash, |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 754 | unsigned int writecnt, |
| 755 | unsigned int readcnt, |
| 756 | const unsigned char *writearr, |
| 757 | unsigned char *readarr) |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 758 | { |
| 759 | int ret; |
Nico Huber | 9a11cbf | 2023-01-13 01:19:07 +0100 | [diff] [blame] | 760 | const struct dediprog_data *dp_data = flash->mst.spi->data; |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 761 | |
Carl-Daniel Hailfinger | eac6579 | 2010-01-22 02:53:30 +0000 | [diff] [blame] | 762 | msg_pspew("%s, writecnt=%i, readcnt=%i\n", __func__, writecnt, readcnt); |
Nico Huber | 9a11cbf | 2023-01-13 01:19:07 +0100 | [diff] [blame] | 763 | if (writecnt > flash->mst.spi->max_data_write) { |
Simon Glass | 557eb4f | 2015-07-05 16:53:22 +0000 | [diff] [blame] | 764 | msg_perr("Invalid writecnt=%i, aborting.\n", writecnt); |
Carl-Daniel Hailfinger | eac6579 | 2010-01-22 02:53:30 +0000 | [diff] [blame] | 765 | return 1; |
| 766 | } |
Nico Huber | 9a11cbf | 2023-01-13 01:19:07 +0100 | [diff] [blame] | 767 | if (readcnt > flash->mst.spi->max_data_read) { |
Simon Glass | 557eb4f | 2015-07-05 16:53:22 +0000 | [diff] [blame] | 768 | msg_perr("Invalid readcnt=%i, aborting.\n", readcnt); |
Carl-Daniel Hailfinger | eac6579 | 2010-01-22 02:53:30 +0000 | [diff] [blame] | 769 | return 1; |
| 770 | } |
Elyes HAOUAS | 0cacb11 | 2019-02-04 12:16:38 +0100 | [diff] [blame] | 771 | |
Simon Glass | ae61651 | 2016-01-23 23:27:58 +0000 | [diff] [blame] | 772 | unsigned int idx, value; |
| 773 | /* New protocol has options and timeout combined as value while the old one used the value field for |
| 774 | * timeout and the index field for options. */ |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 775 | if (protocol(dp_data) >= PROTOCOL_V2) { |
Simon Glass | ae61651 | 2016-01-23 23:27:58 +0000 | [diff] [blame] | 776 | idx = 0; |
| 777 | value = readcnt ? 0x1 : 0x0; // Indicate if we require a read |
| 778 | } else { |
| 779 | idx = readcnt ? 0x1 : 0x0; // Indicate if we require a read |
| 780 | value = 0; |
| 781 | } |
Anastasia Klimchuk | 7d97388 | 2021-07-14 09:33:50 +1000 | [diff] [blame] | 782 | ret = dediprog_write(dp_data->handle, CMD_TRANSCEIVE, value, idx, writearr, writecnt); |
Nico Huber | 519be66 | 2018-12-23 20:03:35 +0100 | [diff] [blame] | 783 | if (ret != (int)writecnt) { |
Carl-Daniel Hailfinger | eac6579 | 2010-01-22 02:53:30 +0000 | [diff] [blame] | 784 | msg_perr("Send SPI failed, expected %i, got %i %s!\n", |
Nico Huber | d99a2bd | 2016-02-18 21:42:49 +0000 | [diff] [blame] | 785 | writecnt, ret, libusb_error_name(ret)); |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 786 | return 1; |
| 787 | } |
Simon Glass | ae61651 | 2016-01-23 23:27:58 +0000 | [diff] [blame] | 788 | if (readcnt == 0) // If we don't require a response, we are done here |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 789 | return 0; |
Simon Glass | 557eb4f | 2015-07-05 16:53:22 +0000 | [diff] [blame] | 790 | |
Stefan Tauner | 74367bf | 2016-02-20 20:53:46 +0000 | [diff] [blame] | 791 | /* The specifications do state the possibility to set a timeout for transceive transactions. |
| 792 | * Apparently the "timeout" is a delay, and you can use long delays to accelerate writing - in case you |
| 793 | * can predict the time needed by the previous command or so (untested). In any case, using this |
| 794 | * "feature" to set sane-looking timouts for the read below will completely trash performance with |
| 795 | * SF600 and/or firmwares >= 6.0 while they seem to be benign on SF100 with firmwares <= 5.5.2. *shrug* |
| 796 | * |
| 797 | * The specification also uses only 0 in its examples, so the lesson to learn here: |
| 798 | * "Never trust the description of an interface in the documentation but use the example code and pray." |
Simon Glass | ae61651 | 2016-01-23 23:27:58 +0000 | [diff] [blame] | 799 | const uint8_t read_timeout = 10 + readcnt/512; |
David Hendricks | f73f8a7 | 2018-02-21 07:34:34 -0800 | [diff] [blame] | 800 | if (protocol() >= PROTOCOL_V2) { |
Simon Glass | ae61651 | 2016-01-23 23:27:58 +0000 | [diff] [blame] | 801 | idx = 0; |
| 802 | value = min(read_timeout, 0xFF) | (0 << 8) ; // Timeout in lower byte, option in upper byte |
| 803 | } else { |
| 804 | idx = (0 & 0xFF); // Lower byte is option (0x01 = require SR, 0x02 keep CS low) |
| 805 | value = min(read_timeout, 0xFF); // Possibly two bytes but we play safe here |
| 806 | } |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 807 | ret = dediprog_read(dp_data->dediprog_handle, CMD_TRANSCEIVE, value, idx, readarr, readcnt); |
Stefan Tauner | 74367bf | 2016-02-20 20:53:46 +0000 | [diff] [blame] | 808 | */ |
Anastasia Klimchuk | 7d97388 | 2021-07-14 09:33:50 +1000 | [diff] [blame] | 809 | ret = dediprog_read(dp_data->handle, CMD_TRANSCEIVE, 0, 0, readarr, readcnt); |
Nico Huber | 519be66 | 2018-12-23 20:03:35 +0100 | [diff] [blame] | 810 | if (ret != (int)readcnt) { |
Nico Huber | d99a2bd | 2016-02-18 21:42:49 +0000 | [diff] [blame] | 811 | msg_perr("Receive SPI failed, expected %i, got %i %s!\n", readcnt, ret, libusb_error_name(ret)); |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 812 | return 1; |
| 813 | } |
| 814 | return 0; |
| 815 | } |
| 816 | |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 817 | static int dediprog_check_devicestring(struct dediprog_data *dp_data) |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 818 | { |
Nico Huber | 5262e29 | 2024-03-02 13:21:25 +0100 | [diff] [blame] | 819 | const int devstr_len = 32, old_devstr_len = 16; |
Nico Huber | e76e21f | 2024-02-29 23:33:35 +0100 | [diff] [blame] | 820 | char buf[devstr_len + 1]; |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 821 | int ret; |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 822 | |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 823 | /* Command Receive Device String. */ |
Nico Huber | e76e21f | 2024-02-29 23:33:35 +0100 | [diff] [blame] | 824 | ret = dediprog_read(dp_data->handle, CMD_READ_PROG_INFO, 0, 0, (uint8_t *)buf, devstr_len); |
Nico Huber | 5262e29 | 2024-03-02 13:21:25 +0100 | [diff] [blame] | 825 | if (ret < old_devstr_len || ret > devstr_len) { |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 826 | msg_perr("Incomplete/failed Command Receive Device String!\n"); |
| 827 | return 1; |
| 828 | } |
Nico Huber | 5262e29 | 2024-03-02 13:21:25 +0100 | [diff] [blame] | 829 | buf[ret] = '\0'; |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 830 | msg_pdbg("Found a %s\n", buf); |
Nico Huber | e76e21f | 2024-02-29 23:33:35 +0100 | [diff] [blame] | 831 | if (memcmp(buf, "SF100", 5) == 0) |
Anastasia Klimchuk | 7d97388 | 2021-07-14 09:33:50 +1000 | [diff] [blame] | 832 | dp_data->devicetype = DEV_SF100; |
Nico Huber | e76e21f | 2024-02-29 23:33:35 +0100 | [diff] [blame] | 833 | else if (memcmp(buf, "SF200", 5) == 0) |
Anastasia Klimchuk | 7d97388 | 2021-07-14 09:33:50 +1000 | [diff] [blame] | 834 | dp_data->devicetype = DEV_SF200; |
Nico Huber | e76e21f | 2024-02-29 23:33:35 +0100 | [diff] [blame] | 835 | else if (memcmp(buf, "SF600", 5) == 0) |
Anastasia Klimchuk | 7d97388 | 2021-07-14 09:33:50 +1000 | [diff] [blame] | 836 | dp_data->devicetype = DEV_SF600; |
David Woodhouse | 7f3b89f | 2016-02-18 21:42:15 +0000 | [diff] [blame] | 837 | else { |
Jay Thompson | cabe320 | 2018-08-17 14:30:04 -0500 | [diff] [blame] | 838 | msg_perr("Device not a SF100, SF200, or SF600!\n"); |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 839 | return 1; |
| 840 | } |
David Woodhouse | 7f3b89f | 2016-02-18 21:42:15 +0000 | [diff] [blame] | 841 | |
Nico Huber | bdef5c2 | 2024-03-02 13:51:39 +0100 | [diff] [blame] | 842 | unsigned int sfnum; |
| 843 | unsigned int fw[3]; |
Nico Huber | 0ab5c3d | 2024-03-02 13:53:16 +0100 | [diff] [blame] | 844 | if (sscanf(buf, "SF%u", &sfnum) != 1 || |
| 845 | sfnum != dp_data->devicetype || |
| 846 | sscanf(buf, "SF%*s V:%u.%u.%u ", &fw[0], &fw[1], &fw[2]) != 3) { |
Simon Glass | ae61651 | 2016-01-23 23:27:58 +0000 | [diff] [blame] | 847 | msg_perr("Unexpected firmware version string '%s'\n", buf); |
Mathias Krause | db7afc5 | 2010-11-09 23:30:43 +0000 | [diff] [blame] | 848 | return 1; |
| 849 | } |
Simon Glass | ae61651 | 2016-01-23 23:27:58 +0000 | [diff] [blame] | 850 | /* Only these major versions were tested. */ |
David Woodhouse | 7f3b89f | 2016-02-18 21:42:15 +0000 | [diff] [blame] | 851 | if (fw[0] < 2 || fw[0] > 7) { |
Simon Glass | ae61651 | 2016-01-23 23:27:58 +0000 | [diff] [blame] | 852 | msg_perr("Unexpected firmware version %d.%d.%d!\n", fw[0], fw[1], fw[2]); |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 853 | return 1; |
| 854 | } |
David Hendricks | f73f8a7 | 2018-02-21 07:34:34 -0800 | [diff] [blame] | 855 | |
Anastasia Klimchuk | 7d97388 | 2021-07-14 09:33:50 +1000 | [diff] [blame] | 856 | dp_data->firmwareversion = FIRMWARE_VERSION(fw[0], fw[1], fw[2]); |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 857 | if (protocol(dp_data) == PROTOCOL_UNKNOWN) { |
David Hendricks | f73f8a7 | 2018-02-21 07:34:34 -0800 | [diff] [blame] | 858 | msg_perr("Internal error: Unable to determine protocol version.\n"); |
| 859 | return 1; |
| 860 | } |
Simon Glass | ae61651 | 2016-01-23 23:27:58 +0000 | [diff] [blame] | 861 | |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 862 | return 0; |
| 863 | } |
| 864 | |
David Hendricks | c05900f | 2016-02-18 21:42:41 +0000 | [diff] [blame] | 865 | /* |
Ryan O'Leary | 301ae22 | 2019-06-24 19:14:33 -0700 | [diff] [blame] | 866 | * Read the id from the dediprog. This should return the numeric part of the |
| 867 | * serial number found on a sticker on the back of the dediprog. Note this |
| 868 | * number is stored in writable eeprom, so it could get out of sync. Also note, |
| 869 | * this function only supports SF100 at this time, but SF600 support is not too |
| 870 | * much different. |
| 871 | * @return the id on success, -1 on failure |
| 872 | */ |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 873 | static int dediprog_read_id(libusb_device_handle *dediprog_handle) |
Ryan O'Leary | 301ae22 | 2019-06-24 19:14:33 -0700 | [diff] [blame] | 874 | { |
| 875 | int ret; |
| 876 | uint8_t buf[3]; |
| 877 | |
| 878 | ret = libusb_control_transfer(dediprog_handle, REQTYPE_OTHER_IN, |
| 879 | 0x7, /* request */ |
| 880 | 0, /* value */ |
| 881 | 0xEF00, /* index */ |
| 882 | buf, sizeof(buf), |
| 883 | DEFAULT_TIMEOUT); |
| 884 | if (ret != sizeof(buf)) { |
| 885 | msg_perr("Failed to read dediprog id, error %d!\n", ret); |
| 886 | return -1; |
| 887 | } |
| 888 | |
| 889 | return buf[0] << 16 | buf[1] << 8 | buf[2]; |
| 890 | } |
| 891 | |
| 892 | /* |
David Hendricks | c05900f | 2016-02-18 21:42:41 +0000 | [diff] [blame] | 893 | * This command presumably sets the voltage for the SF100 itself (not the |
| 894 | * SPI flash). Only use this command with firmware older than V6.0.0. Newer |
| 895 | * (including all SF600s) do not support it. |
| 896 | */ |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 897 | |
David Hendricks | c05900f | 2016-02-18 21:42:41 +0000 | [diff] [blame] | 898 | /* This command presumably sets the voltage for the SF100 itself (not the SPI flash). |
| 899 | * Only use dediprog_set_voltage on SF100 programmers with firmware older |
| 900 | * than V6.0.0. Newer programmers (including all SF600s) do not support it. */ |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 901 | static int dediprog_set_voltage(libusb_device_handle *dediprog_handle) |
David Hendricks | c05900f | 2016-02-18 21:42:41 +0000 | [diff] [blame] | 902 | { |
Nico Huber | d99a2bd | 2016-02-18 21:42:49 +0000 | [diff] [blame] | 903 | unsigned char buf[1] = {0}; |
| 904 | int ret = libusb_control_transfer(dediprog_handle, REQTYPE_OTHER_IN, CMD_SET_VOLTAGE, 0x0, 0x0, |
Simon Glass | 557eb4f | 2015-07-05 16:53:22 +0000 | [diff] [blame] | 905 | buf, 0x1, DEFAULT_TIMEOUT); |
Mathias Krause | db7afc5 | 2010-11-09 23:30:43 +0000 | [diff] [blame] | 906 | if (ret < 0) { |
Nico Huber | d99a2bd | 2016-02-18 21:42:49 +0000 | [diff] [blame] | 907 | msg_perr("Command Set Voltage failed (%s)!\n", libusb_error_name(ret)); |
Mathias Krause | db7afc5 | 2010-11-09 23:30:43 +0000 | [diff] [blame] | 908 | return 1; |
| 909 | } |
David Hendricks | c05900f | 2016-02-18 21:42:41 +0000 | [diff] [blame] | 910 | if ((ret != 1) || (buf[0] != 0x6f)) { |
Simon Glass | 557eb4f | 2015-07-05 16:53:22 +0000 | [diff] [blame] | 911 | msg_perr("Unexpected response to init!\n"); |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 912 | return 1; |
| 913 | } |
David Hendricks | c05900f | 2016-02-18 21:42:41 +0000 | [diff] [blame] | 914 | |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 915 | return 0; |
| 916 | } |
| 917 | |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 918 | static int dediprog_standalone_mode(const struct dediprog_data *dp_data) |
David Woodhouse | 7f3b89f | 2016-02-18 21:42:15 +0000 | [diff] [blame] | 919 | { |
| 920 | int ret; |
| 921 | |
Anastasia Klimchuk | 7d97388 | 2021-07-14 09:33:50 +1000 | [diff] [blame] | 922 | if (dp_data->devicetype != DEV_SF600) |
David Woodhouse | 7f3b89f | 2016-02-18 21:42:15 +0000 | [diff] [blame] | 923 | return 0; |
| 924 | |
| 925 | msg_pdbg2("Disabling standalone mode.\n"); |
Anastasia Klimchuk | 7d97388 | 2021-07-14 09:33:50 +1000 | [diff] [blame] | 926 | ret = dediprog_write(dp_data->handle, CMD_SET_STANDALONE, LEAVE_STANDALONE_MODE, 0, NULL, 0); |
David Woodhouse | 7f3b89f | 2016-02-18 21:42:15 +0000 | [diff] [blame] | 927 | if (ret) { |
Nico Huber | d99a2bd | 2016-02-18 21:42:49 +0000 | [diff] [blame] | 928 | msg_perr("Failed to disable standalone mode: %s\n", libusb_error_name(ret)); |
David Woodhouse | 7f3b89f | 2016-02-18 21:42:15 +0000 | [diff] [blame] | 929 | return 1; |
| 930 | } |
| 931 | |
| 932 | return 0; |
| 933 | } |
| 934 | |
Carl-Daniel Hailfinger | ff30d8a | 2011-01-20 21:05:15 +0000 | [diff] [blame] | 935 | #if 0 |
| 936 | /* Something. |
| 937 | * Present in eng_detect_blink.log with firmware 3.1.8 |
| 938 | * Always preceded by Command Receive Device String |
| 939 | */ |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 940 | static int dediprog_command_b(libusb_device_handle *dediprog_handle) |
Carl-Daniel Hailfinger | ff30d8a | 2011-01-20 21:05:15 +0000 | [diff] [blame] | 941 | { |
| 942 | int ret; |
| 943 | char buf[0x3]; |
| 944 | |
Simon Glass | 557eb4f | 2015-07-05 16:53:22 +0000 | [diff] [blame] | 945 | ret = usb_control_msg(dediprog_handle, REQTYPE_OTHER_IN, 0x7, 0x0, 0xef00, |
| 946 | buf, 0x3, DEFAULT_TIMEOUT); |
Carl-Daniel Hailfinger | ff30d8a | 2011-01-20 21:05:15 +0000 | [diff] [blame] | 947 | if (ret < 0) { |
Nico Huber | d99a2bd | 2016-02-18 21:42:49 +0000 | [diff] [blame] | 948 | msg_perr("Command B failed (%s)!\n", libusb_error_name(ret)); |
Carl-Daniel Hailfinger | ff30d8a | 2011-01-20 21:05:15 +0000 | [diff] [blame] | 949 | return 1; |
| 950 | } |
| 951 | if ((ret != 0x3) || (buf[0] != 0xff) || (buf[1] != 0xff) || |
| 952 | (buf[2] != 0xff)) { |
| 953 | msg_perr("Unexpected response to Command B!\n"); |
| 954 | return 1; |
| 955 | } |
| 956 | |
| 957 | return 0; |
| 958 | } |
| 959 | #endif |
| 960 | |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 961 | static int set_target_flash(libusb_device_handle *dediprog_handle, enum dediprog_target target) |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 962 | { |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 963 | int ret = dediprog_write(dediprog_handle, CMD_SET_TARGET, target, 0, NULL, 0); |
Simon Glass | 557eb4f | 2015-07-05 16:53:22 +0000 | [diff] [blame] | 964 | if (ret != 0) { |
Nico Huber | d99a2bd | 2016-02-18 21:42:49 +0000 | [diff] [blame] | 965 | msg_perr("set_target_flash failed (%s)!\n", libusb_error_name(ret)); |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 966 | return 1; |
| 967 | } |
| 968 | return 0; |
| 969 | } |
| 970 | |
Carl-Daniel Hailfinger | ad3cc55 | 2010-07-03 11:02:10 +0000 | [diff] [blame] | 971 | #if 0 |
Simon Glass | 557eb4f | 2015-07-05 16:53:22 +0000 | [diff] [blame] | 972 | /* Returns true if the button is currently pressed. */ |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 973 | static bool dediprog_get_button(libusb_device_handle *dediprog_handle) |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 974 | { |
Simon Glass | 557eb4f | 2015-07-05 16:53:22 +0000 | [diff] [blame] | 975 | char buf[1]; |
| 976 | int ret = usb_control_msg(dediprog_handle, REQTYPE_EP_IN, CMD_GET_BUTTON, 0, 0, |
| 977 | buf, 0x1, DEFAULT_TIMEOUT); |
| 978 | if (ret != 0) { |
Nico Huber | d99a2bd | 2016-02-18 21:42:49 +0000 | [diff] [blame] | 979 | msg_perr("Could not get button state (%s)!\n", libusb_error_name(ret)); |
Carl-Daniel Hailfinger | ff30d8a | 2011-01-20 21:05:15 +0000 | [diff] [blame] | 980 | return 1; |
| 981 | } |
Simon Glass | 557eb4f | 2015-07-05 16:53:22 +0000 | [diff] [blame] | 982 | return buf[0] != 1; |
Carl-Daniel Hailfinger | 64204b5 | 2011-12-20 01:54:19 +0000 | [diff] [blame] | 983 | } |
Carl-Daniel Hailfinger | ad3cc55 | 2010-07-03 11:02:10 +0000 | [diff] [blame] | 984 | #endif |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 985 | |
Carl-Daniel Hailfinger | c244138 | 2010-11-09 22:00:31 +0000 | [diff] [blame] | 986 | static int parse_voltage(char *voltage) |
| 987 | { |
| 988 | char *tmp = NULL; |
Carl-Daniel Hailfinger | 082c8b5 | 2011-08-15 19:54:20 +0000 | [diff] [blame] | 989 | int i; |
| 990 | int millivolt = 0, fraction = 0; |
Carl-Daniel Hailfinger | c244138 | 2010-11-09 22:00:31 +0000 | [diff] [blame] | 991 | |
| 992 | if (!voltage || !strlen(voltage)) { |
| 993 | msg_perr("Empty voltage= specified.\n"); |
| 994 | return -1; |
| 995 | } |
| 996 | millivolt = (int)strtol(voltage, &tmp, 0); |
| 997 | voltage = tmp; |
| 998 | /* Handle "," and "." as decimal point. Everything after it is assumed |
| 999 | * to be in decimal notation. |
| 1000 | */ |
| 1001 | if ((*voltage == '.') || (*voltage == ',')) { |
| 1002 | voltage++; |
| 1003 | for (i = 0; i < 3; i++) { |
| 1004 | fraction *= 10; |
| 1005 | /* Don't advance if the current character is invalid, |
| 1006 | * but continue multiplying. |
| 1007 | */ |
| 1008 | if ((*voltage < '0') || (*voltage > '9')) |
| 1009 | continue; |
| 1010 | fraction += *voltage - '0'; |
| 1011 | voltage++; |
| 1012 | } |
| 1013 | /* Throw away remaining digits. */ |
| 1014 | voltage += strspn(voltage, "0123456789"); |
| 1015 | } |
| 1016 | /* The remaining string must be empty or "mV" or "V". */ |
| 1017 | tolower_string(voltage); |
| 1018 | |
| 1019 | /* No unit or "V". */ |
| 1020 | if ((*voltage == '\0') || !strncmp(voltage, "v", 1)) { |
| 1021 | millivolt *= 1000; |
| 1022 | millivolt += fraction; |
| 1023 | } else if (!strncmp(voltage, "mv", 2) || |
| 1024 | !strncmp(voltage, "milliv", 6)) { |
| 1025 | /* No adjustment. fraction is discarded. */ |
| 1026 | } else { |
| 1027 | /* Garbage at the end of the string. */ |
| 1028 | msg_perr("Garbage voltage= specified.\n"); |
| 1029 | return -1; |
| 1030 | } |
| 1031 | return millivolt; |
| 1032 | } |
| 1033 | |
Anastasia Klimchuk | c63d918 | 2021-07-06 16:18:44 +1000 | [diff] [blame] | 1034 | static int dediprog_shutdown(void *data); |
| 1035 | |
Nico Huber | 93db6e1 | 2018-09-30 01:18:43 +0200 | [diff] [blame] | 1036 | static struct spi_master spi_master_dediprog = { |
Nico Huber | dc5af54 | 2018-12-22 16:54:59 +0100 | [diff] [blame] | 1037 | .features = SPI_MASTER_NO_4BA_MODES, |
Simon Glass | ae61651 | 2016-01-23 23:27:58 +0000 | [diff] [blame] | 1038 | .max_data_read = 16, /* 18 seems to work fine as well, but 19 times out sometimes with FW 5.15. */ |
| 1039 | .max_data_write = 16, |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 1040 | .command = dediprog_spi_send_command, |
| 1041 | .multicommand = default_spi_send_multicommand, |
| 1042 | .read = dediprog_spi_read, |
| 1043 | .write_256 = dediprog_spi_write_256, |
Nico Huber | a4b14f7 | 2012-06-19 12:06:53 +0000 | [diff] [blame] | 1044 | .write_aai = dediprog_spi_write_aai, |
Anastasia Klimchuk | c63d918 | 2021-07-06 16:18:44 +1000 | [diff] [blame] | 1045 | .shutdown = dediprog_shutdown, |
Aarya Chaumal | 0cea753 | 2022-07-04 18:21:50 +0530 | [diff] [blame] | 1046 | .probe_opcode = default_spi_probe_opcode, |
Michael Karcher | b9dbe48 | 2011-05-11 17:07:07 +0000 | [diff] [blame] | 1047 | }; |
| 1048 | |
Ryan O'Leary | 301ae22 | 2019-06-24 19:14:33 -0700 | [diff] [blame] | 1049 | /* |
| 1050 | * Open a dediprog_handle with the USB device at the given index. |
| 1051 | * @index index of the USB device |
| 1052 | * @return 0 for success, -1 for error, -2 for busy device |
| 1053 | */ |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 1054 | static int dediprog_open(int index, struct dediprog_data *dp_data) |
Ryan O'Leary | 301ae22 | 2019-06-24 19:14:33 -0700 | [diff] [blame] | 1055 | { |
| 1056 | const uint16_t vid = devs_dediprog[0].vendor_id; |
| 1057 | const uint16_t pid = devs_dediprog[0].device_id; |
| 1058 | int ret; |
| 1059 | |
Anastasia Klimchuk | 7d97388 | 2021-07-14 09:33:50 +1000 | [diff] [blame] | 1060 | dp_data->handle = usb_dev_get_by_vid_pid_number(dp_data->usb_ctx, vid, pid, (unsigned int) index); |
| 1061 | if (!dp_data->handle) { |
Ryan O'Leary | 301ae22 | 2019-06-24 19:14:33 -0700 | [diff] [blame] | 1062 | msg_perr("Could not find a Dediprog programmer on USB.\n"); |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 1063 | libusb_exit(dp_data->usb_ctx); |
Ryan O'Leary | 301ae22 | 2019-06-24 19:14:33 -0700 | [diff] [blame] | 1064 | return -1; |
| 1065 | } |
Anastasia Klimchuk | 7d97388 | 2021-07-14 09:33:50 +1000 | [diff] [blame] | 1066 | ret = libusb_set_configuration(dp_data->handle, 1); |
Ryan O'Leary | 301ae22 | 2019-06-24 19:14:33 -0700 | [diff] [blame] | 1067 | if (ret != 0) { |
| 1068 | msg_perr("Could not set USB device configuration: %i %s\n", |
| 1069 | ret, libusb_error_name(ret)); |
Anastasia Klimchuk | 7d97388 | 2021-07-14 09:33:50 +1000 | [diff] [blame] | 1070 | libusb_close(dp_data->handle); |
Ryan O'Leary | 301ae22 | 2019-06-24 19:14:33 -0700 | [diff] [blame] | 1071 | return -2; |
| 1072 | } |
Anastasia Klimchuk | 7d97388 | 2021-07-14 09:33:50 +1000 | [diff] [blame] | 1073 | ret = libusb_claim_interface(dp_data->handle, 0); |
Ryan O'Leary | 301ae22 | 2019-06-24 19:14:33 -0700 | [diff] [blame] | 1074 | if (ret < 0) { |
| 1075 | msg_perr("Could not claim USB device interface %i: %i %s\n", |
| 1076 | 0, ret, libusb_error_name(ret)); |
Anastasia Klimchuk | 7d97388 | 2021-07-14 09:33:50 +1000 | [diff] [blame] | 1077 | libusb_close(dp_data->handle); |
Ryan O'Leary | 301ae22 | 2019-06-24 19:14:33 -0700 | [diff] [blame] | 1078 | return -2; |
| 1079 | } |
| 1080 | return 0; |
| 1081 | } |
| 1082 | |
David Hendricks | 8bb2021 | 2011-06-14 01:35:36 +0000 | [diff] [blame] | 1083 | static int dediprog_shutdown(void *data) |
| 1084 | { |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 1085 | int ret = 0; |
| 1086 | struct dediprog_data *dp_data = data; |
Carl-Daniel Hailfinger | 64204b5 | 2011-12-20 01:54:19 +0000 | [diff] [blame] | 1087 | |
David Hendricks | 8bb2021 | 2011-06-14 01:35:36 +0000 | [diff] [blame] | 1088 | /* URB 28. Command Set SPI Voltage to 0. */ |
Anastasia Klimchuk | 7d97388 | 2021-07-14 09:33:50 +1000 | [diff] [blame] | 1089 | if (dediprog_set_spi_voltage(dp_data->handle, 0x0)) { |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 1090 | ret = 1; |
| 1091 | goto out; |
David Hendricks | 8bb2021 | 2011-06-14 01:35:36 +0000 | [diff] [blame] | 1092 | } |
Nico Huber | d99a2bd | 2016-02-18 21:42:49 +0000 | [diff] [blame] | 1093 | |
Anastasia Klimchuk | 7d97388 | 2021-07-14 09:33:50 +1000 | [diff] [blame] | 1094 | if (libusb_release_interface(dp_data->handle, 0)) { |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 1095 | msg_perr("Could not release USB interface!\n"); |
| 1096 | ret = 1; |
| 1097 | goto out; |
| 1098 | } |
Anastasia Klimchuk | 7d97388 | 2021-07-14 09:33:50 +1000 | [diff] [blame] | 1099 | libusb_close(dp_data->handle); |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 1100 | libusb_exit(dp_data->usb_ctx); |
| 1101 | out: |
| 1102 | free(data); |
| 1103 | return ret; |
David Hendricks | 8bb2021 | 2011-06-14 01:35:36 +0000 | [diff] [blame] | 1104 | } |
| 1105 | |
Nico Huber | e3a2688 | 2023-01-11 21:45:51 +0100 | [diff] [blame] | 1106 | static int dediprog_init(struct flashprog_programmer *const prog) |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 1107 | { |
Ryan O'Leary | 301ae22 | 2019-06-24 19:14:33 -0700 | [diff] [blame] | 1108 | char *voltage, *id_str, *device, *spispeed, *target_str; |
Patrick Georgi | efe2d43 | 2013-05-23 21:47:46 +0000 | [diff] [blame] | 1109 | int spispeed_idx = 1; |
Carl-Daniel Hailfinger | 082c8b5 | 2011-08-15 19:54:20 +0000 | [diff] [blame] | 1110 | int millivolt = 3500; |
Ryan O'Leary | 301ae22 | 2019-06-24 19:14:33 -0700 | [diff] [blame] | 1111 | int id = -1; /* -1 defaults to enumeration order */ |
| 1112 | int found_id; |
Nathan Laredo | 21541a6 | 2012-12-24 22:07:36 +0000 | [diff] [blame] | 1113 | long usedevice = 0; |
Nico Huber | 5e5e821 | 2016-05-04 12:27:58 +0200 | [diff] [blame] | 1114 | long target = FLASH_TYPE_APPLICATION_FLASH_1; |
Nico Huber | 77fa67d | 2013-02-20 18:03:36 +0000 | [diff] [blame] | 1115 | int i, ret; |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 1116 | |
Nico Huber | 77fa67d | 2013-02-20 18:03:36 +0000 | [diff] [blame] | 1117 | spispeed = extract_programmer_param("spispeed"); |
| 1118 | if (spispeed) { |
| 1119 | for (i = 0; spispeeds[i].name; ++i) { |
| 1120 | if (!strcasecmp(spispeeds[i].name, spispeed)) { |
| 1121 | spispeed_idx = i; |
| 1122 | break; |
| 1123 | } |
| 1124 | } |
| 1125 | if (!spispeeds[i].name) { |
Patrick Georgi | efe2d43 | 2013-05-23 21:47:46 +0000 | [diff] [blame] | 1126 | msg_perr("Error: Invalid spispeed value: '%s'.\n", spispeed); |
Nico Huber | 77fa67d | 2013-02-20 18:03:36 +0000 | [diff] [blame] | 1127 | free(spispeed); |
| 1128 | return 1; |
| 1129 | } |
| 1130 | free(spispeed); |
| 1131 | } |
Simon Glass | 557eb4f | 2015-07-05 16:53:22 +0000 | [diff] [blame] | 1132 | |
Carl-Daniel Hailfinger | c244138 | 2010-11-09 22:00:31 +0000 | [diff] [blame] | 1133 | voltage = extract_programmer_param("voltage"); |
| 1134 | if (voltage) { |
| 1135 | millivolt = parse_voltage(voltage); |
| 1136 | free(voltage); |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 1137 | if (millivolt < 0) |
Carl-Daniel Hailfinger | c244138 | 2010-11-09 22:00:31 +0000 | [diff] [blame] | 1138 | return 1; |
Carl-Daniel Hailfinger | c244138 | 2010-11-09 22:00:31 +0000 | [diff] [blame] | 1139 | msg_pinfo("Setting voltage to %i mV\n", millivolt); |
| 1140 | } |
| 1141 | |
Ryan O'Leary | 301ae22 | 2019-06-24 19:14:33 -0700 | [diff] [blame] | 1142 | id_str = extract_programmer_param("id"); |
| 1143 | if (id_str) { |
| 1144 | char prefix0, prefix1; |
| 1145 | if (sscanf(id_str, "%c%c%d", &prefix0, &prefix1, &id) != 3) { |
| 1146 | msg_perr("Error: Could not parse dediprog 'id'.\n"); |
| 1147 | msg_perr("Expected a string like SF012345 or DP012345.\n"); |
| 1148 | free(id_str); |
| 1149 | return 1; |
| 1150 | } |
| 1151 | if (id < 0 || id >= 0x1000000) { |
| 1152 | msg_perr("Error: id %s is out of range!\n", id_str); |
| 1153 | free(id_str); |
| 1154 | return 1; |
| 1155 | } |
| 1156 | if (!(prefix0 == 'S' && prefix1 == 'F') && !(prefix0 == 'D' && prefix1 == 'P')) { |
| 1157 | msg_perr("Error: %s is an invalid id!\n", id_str); |
| 1158 | free(id_str); |
| 1159 | return 1; |
| 1160 | } |
| 1161 | msg_pinfo("Will search for dediprog id %s.\n", id_str); |
| 1162 | } |
| 1163 | free(id_str); |
| 1164 | |
Nathan Laredo | 21541a6 | 2012-12-24 22:07:36 +0000 | [diff] [blame] | 1165 | device = extract_programmer_param("device"); |
| 1166 | if (device) { |
| 1167 | char *dev_suffix; |
Ryan O'Leary | 301ae22 | 2019-06-24 19:14:33 -0700 | [diff] [blame] | 1168 | if (id != -1) { |
| 1169 | msg_perr("Error: Cannot use 'id' and 'device'.\n"); |
| 1170 | } |
Nathan Laredo | 21541a6 | 2012-12-24 22:07:36 +0000 | [diff] [blame] | 1171 | errno = 0; |
| 1172 | usedevice = strtol(device, &dev_suffix, 10); |
| 1173 | if (errno != 0 || device == dev_suffix) { |
| 1174 | msg_perr("Error: Could not convert 'device'.\n"); |
| 1175 | free(device); |
| 1176 | return 1; |
| 1177 | } |
Nico Huber | 961f4a1 | 2019-10-04 17:34:22 +0200 | [diff] [blame] | 1178 | if (usedevice < 0 || usedevice > INT_MAX) { |
Nathan Laredo | 21541a6 | 2012-12-24 22:07:36 +0000 | [diff] [blame] | 1179 | msg_perr("Error: Value for 'device' is out of range.\n"); |
| 1180 | free(device); |
| 1181 | return 1; |
| 1182 | } |
| 1183 | if (strlen(dev_suffix) > 0) { |
| 1184 | msg_perr("Error: Garbage following 'device' value.\n"); |
| 1185 | free(device); |
| 1186 | return 1; |
| 1187 | } |
| 1188 | msg_pinfo("Using device %li.\n", usedevice); |
| 1189 | } |
| 1190 | free(device); |
| 1191 | |
Stefan Tauner | e659d2d | 2013-05-03 21:58:28 +0000 | [diff] [blame] | 1192 | target_str = extract_programmer_param("target"); |
| 1193 | if (target_str) { |
| 1194 | char *target_suffix; |
| 1195 | errno = 0; |
| 1196 | target = strtol(target_str, &target_suffix, 10); |
| 1197 | if (errno != 0 || target_str == target_suffix) { |
| 1198 | msg_perr("Error: Could not convert 'target'.\n"); |
| 1199 | free(target_str); |
| 1200 | return 1; |
| 1201 | } |
| 1202 | if (target < 1 || target > 2) { |
| 1203 | msg_perr("Error: Value for 'target' is out of range.\n"); |
| 1204 | free(target_str); |
| 1205 | return 1; |
| 1206 | } |
| 1207 | if (strlen(target_suffix) > 0) { |
| 1208 | msg_perr("Error: Garbage following 'target' value.\n"); |
| 1209 | free(target_str); |
| 1210 | return 1; |
| 1211 | } |
Nico Huber | 5e5e821 | 2016-05-04 12:27:58 +0200 | [diff] [blame] | 1212 | switch (target) { |
| 1213 | case 1: |
| 1214 | msg_pinfo("Using target %s.\n", "FLASH_TYPE_APPLICATION_FLASH_1"); |
| 1215 | target = FLASH_TYPE_APPLICATION_FLASH_1; |
| 1216 | break; |
| 1217 | case 2: |
| 1218 | msg_pinfo("Using target %s.\n", "FLASH_TYPE_APPLICATION_FLASH_2"); |
| 1219 | target = FLASH_TYPE_APPLICATION_FLASH_2; |
| 1220 | break; |
| 1221 | default: |
| 1222 | break; |
| 1223 | } |
Stefan Tauner | e659d2d | 2013-05-03 21:58:28 +0000 | [diff] [blame] | 1224 | } |
| 1225 | free(target_str); |
| 1226 | |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 1227 | struct dediprog_data *dp_data = calloc(1, sizeof(*dp_data)); |
| 1228 | if (!dp_data) { |
| 1229 | msg_perr("Unable to allocate space for SPI master data\n"); |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 1230 | return 1; |
| 1231 | } |
Anastasia Klimchuk | 7d97388 | 2021-07-14 09:33:50 +1000 | [diff] [blame] | 1232 | dp_data->firmwareversion = FIRMWARE_VERSION(0, 0, 0); |
| 1233 | dp_data->devicetype = DEV_UNKNOWN; |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 1234 | |
| 1235 | /* Here comes the USB stuff. */ |
Thomas Heijligen | 88e87c5 | 2022-08-05 17:56:20 +0200 | [diff] [blame] | 1236 | ret = libusb_init(&dp_data->usb_ctx); |
| 1237 | if (ret) { |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 1238 | msg_perr("Could not initialize libusb!\n"); |
| 1239 | goto init_err_exit; |
| 1240 | } |
Stefan Tauner | fdec747 | 2016-02-22 08:59:27 +0000 | [diff] [blame] | 1241 | |
Ryan O'Leary | 301ae22 | 2019-06-24 19:14:33 -0700 | [diff] [blame] | 1242 | if (id != -1) { |
| 1243 | for (i = 0; ; i++) { |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 1244 | ret = dediprog_open(i, dp_data); |
Ryan O'Leary | 301ae22 | 2019-06-24 19:14:33 -0700 | [diff] [blame] | 1245 | if (ret == -1) { |
| 1246 | /* no dev */ |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 1247 | goto init_err_exit; |
Ryan O'Leary | 301ae22 | 2019-06-24 19:14:33 -0700 | [diff] [blame] | 1248 | } else if (ret == -2) { |
| 1249 | /* busy dev */ |
| 1250 | continue; |
| 1251 | } |
| 1252 | |
| 1253 | /* Notice we can only call dediprog_read_id() after |
| 1254 | * libusb_set_configuration() and |
| 1255 | * libusb_claim_interface(). When searching by id and |
| 1256 | * either configuration or claim fails (usually the |
Nico Huber | c3b02dc | 2023-08-12 01:13:45 +0200 | [diff] [blame] | 1257 | * device is in use by another instance of flashprog), |
Ryan O'Leary | 301ae22 | 2019-06-24 19:14:33 -0700 | [diff] [blame] | 1258 | * the device is skipped and the next device is tried. |
| 1259 | */ |
Anastasia Klimchuk | 7d97388 | 2021-07-14 09:33:50 +1000 | [diff] [blame] | 1260 | found_id = dediprog_read_id(dp_data->handle); |
Ryan O'Leary | 301ae22 | 2019-06-24 19:14:33 -0700 | [diff] [blame] | 1261 | if (found_id < 0) { |
| 1262 | msg_perr("Could not read id.\n"); |
Anastasia Klimchuk | 7d97388 | 2021-07-14 09:33:50 +1000 | [diff] [blame] | 1263 | libusb_release_interface(dp_data->handle, 0); |
| 1264 | libusb_close(dp_data->handle); |
Ryan O'Leary | 301ae22 | 2019-06-24 19:14:33 -0700 | [diff] [blame] | 1265 | continue; |
| 1266 | } |
| 1267 | msg_pinfo("Found dediprog id SF%06d.\n", found_id); |
| 1268 | if (found_id != id) { |
Anastasia Klimchuk | 7d97388 | 2021-07-14 09:33:50 +1000 | [diff] [blame] | 1269 | libusb_release_interface(dp_data->handle, 0); |
| 1270 | libusb_close(dp_data->handle); |
Ryan O'Leary | 301ae22 | 2019-06-24 19:14:33 -0700 | [diff] [blame] | 1271 | continue; |
| 1272 | } |
| 1273 | break; |
| 1274 | } |
| 1275 | } else { |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 1276 | if (dediprog_open(usedevice, dp_data)) { |
| 1277 | goto init_err_exit; |
Ryan O'Leary | 301ae22 | 2019-06-24 19:14:33 -0700 | [diff] [blame] | 1278 | } |
Anastasia Klimchuk | 7d97388 | 2021-07-14 09:33:50 +1000 | [diff] [blame] | 1279 | found_id = dediprog_read_id(dp_data->handle); |
David Woodhouse | d2a7e87 | 2013-07-30 09:34:44 +0000 | [diff] [blame] | 1280 | } |
Ryan O'Leary | 301ae22 | 2019-06-24 19:14:33 -0700 | [diff] [blame] | 1281 | |
| 1282 | if (found_id >= 0) { |
| 1283 | msg_pinfo("Using dediprog id SF%06d.\n", found_id); |
Carl-Daniel Hailfinger | 482e974 | 2010-11-16 21:25:29 +0000 | [diff] [blame] | 1284 | } |
Nico Huber | 77fa67d | 2013-02-20 18:03:36 +0000 | [diff] [blame] | 1285 | |
David Hendricks | c05900f | 2016-02-18 21:42:41 +0000 | [diff] [blame] | 1286 | /* Try reading the devicestring. If that fails and the device is old (FW < 6.0.0, which we can not know) |
| 1287 | * then we need to try the "set voltage" command and then attempt to read the devicestring again. */ |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 1288 | if (dediprog_check_devicestring(dp_data)) { |
Anastasia Klimchuk | 7d97388 | 2021-07-14 09:33:50 +1000 | [diff] [blame] | 1289 | if (dediprog_set_voltage(dp_data->handle)) |
Anastasia Klimchuk | 66e0456 | 2021-06-28 17:03:52 +1000 | [diff] [blame] | 1290 | goto init_err_cleanup_exit; |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 1291 | if (dediprog_check_devicestring(dp_data)) |
Anastasia Klimchuk | 66e0456 | 2021-06-28 17:03:52 +1000 | [diff] [blame] | 1292 | goto init_err_cleanup_exit; |
David Hendricks | c05900f | 2016-02-18 21:42:41 +0000 | [diff] [blame] | 1293 | } |
Nico Huber | 77fa67d | 2013-02-20 18:03:36 +0000 | [diff] [blame] | 1294 | |
Jay Thompson | cabe320 | 2018-08-17 14:30:04 -0500 | [diff] [blame] | 1295 | /* SF100/SF200 uses one in/out endpoint, SF600 uses separate in/out endpoints */ |
Anastasia Klimchuk | 7d97388 | 2021-07-14 09:33:50 +1000 | [diff] [blame] | 1296 | dp_data->in_endpoint = 2; |
| 1297 | switch (dp_data->devicetype) { |
Jay Thompson | cabe320 | 2018-08-17 14:30:04 -0500 | [diff] [blame] | 1298 | case DEV_SF100: |
| 1299 | case DEV_SF200: |
Anastasia Klimchuk | 7d97388 | 2021-07-14 09:33:50 +1000 | [diff] [blame] | 1300 | dp_data->out_endpoint = 2; |
Jay Thompson | cabe320 | 2018-08-17 14:30:04 -0500 | [diff] [blame] | 1301 | break; |
| 1302 | default: |
Anastasia Klimchuk | 7d97388 | 2021-07-14 09:33:50 +1000 | [diff] [blame] | 1303 | dp_data->out_endpoint = 1; |
Jay Thompson | cabe320 | 2018-08-17 14:30:04 -0500 | [diff] [blame] | 1304 | break; |
| 1305 | } |
David Woodhouse | 7f3b89f | 2016-02-18 21:42:15 +0000 | [diff] [blame] | 1306 | |
Simon Glass | 25e9f40 | 2015-06-28 13:31:19 +0000 | [diff] [blame] | 1307 | /* Set all possible LEDs as soon as possible to indicate activity. |
| 1308 | * Because knowing the firmware version is required to set the LEDs correctly we need to this after |
David Hendricks | f73f8a7 | 2018-02-21 07:34:34 -0800 | [diff] [blame] | 1309 | * dediprog_check_devicestring() has queried the device. */ |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 1310 | dediprog_set_leds(LED_ALL, dp_data); |
Simon Glass | 25e9f40 | 2015-06-28 13:31:19 +0000 | [diff] [blame] | 1311 | |
Simon Glass | 557eb4f | 2015-07-05 16:53:22 +0000 | [diff] [blame] | 1312 | /* Select target/socket, frequency and VCC. */ |
Anastasia Klimchuk | 7d97388 | 2021-07-14 09:33:50 +1000 | [diff] [blame] | 1313 | if (set_target_flash(dp_data->handle, target) || |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 1314 | dediprog_set_spi_speed(spispeed_idx, dp_data) || |
Anastasia Klimchuk | 7d97388 | 2021-07-14 09:33:50 +1000 | [diff] [blame] | 1315 | dediprog_set_spi_voltage(dp_data->handle, millivolt)) { |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 1316 | dediprog_set_leds(LED_ERROR, dp_data); |
Anastasia Klimchuk | 66e0456 | 2021-06-28 17:03:52 +1000 | [diff] [blame] | 1317 | goto init_err_cleanup_exit; |
Stefan Reinauer | 915b840 | 2011-01-28 09:00:15 +0000 | [diff] [blame] | 1318 | } |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 1319 | |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 1320 | if (dediprog_standalone_mode(dp_data)) |
Anastasia Klimchuk | 66e0456 | 2021-06-28 17:03:52 +1000 | [diff] [blame] | 1321 | goto init_err_cleanup_exit; |
David Woodhouse | 7f3b89f | 2016-02-18 21:42:15 +0000 | [diff] [blame] | 1322 | |
Anastasia Klimchuk | 7d97388 | 2021-07-14 09:33:50 +1000 | [diff] [blame] | 1323 | if ((dp_data->devicetype == DEV_SF100) || |
| 1324 | (dp_data->devicetype == DEV_SF600 && protocol(dp_data) == PROTOCOL_V3)) |
Nico Huber | 7eb38aa | 2019-03-21 15:42:54 +0100 | [diff] [blame] | 1325 | spi_master_dediprog.features &= ~SPI_MASTER_NO_4BA_MODES; |
| 1326 | |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 1327 | if (protocol(dp_data) >= PROTOCOL_V2) |
Nico Huber | 93db6e1 | 2018-09-30 01:18:43 +0200 | [diff] [blame] | 1328 | spi_master_dediprog.features |= SPI_MASTER_4BA; |
| 1329 | |
Angel Pons | 116d56d | 2021-03-22 11:28:00 +0100 | [diff] [blame] | 1330 | if (dediprog_set_leds(LED_NONE, dp_data)) |
| 1331 | goto init_err_cleanup_exit; |
Stefan Reinauer | 915b840 | 2011-01-28 09:00:15 +0000 | [diff] [blame] | 1332 | |
Nico Huber | 89569d6 | 2023-01-12 23:31:40 +0100 | [diff] [blame] | 1333 | return register_spi_master(&spi_master_dediprog, 0, dp_data); |
Anastasia Klimchuk | 66e0456 | 2021-06-28 17:03:52 +1000 | [diff] [blame] | 1334 | |
| 1335 | init_err_cleanup_exit: |
Anastasia Klimchuk | b31f7ac | 2021-07-12 14:18:37 +1000 | [diff] [blame] | 1336 | dediprog_shutdown(dp_data); |
| 1337 | return 1; |
| 1338 | |
| 1339 | init_err_exit: |
| 1340 | free(dp_data); |
Anastasia Klimchuk | 66e0456 | 2021-06-28 17:03:52 +1000 | [diff] [blame] | 1341 | return 1; |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 1342 | } |
Thomas Heijligen | cc853d8 | 2021-05-04 15:32:17 +0200 | [diff] [blame] | 1343 | |
| 1344 | const struct programmer_entry programmer_dediprog = { |
| 1345 | .name = "dediprog", |
| 1346 | .type = USB, |
| 1347 | .devs.dev = devs_dediprog, |
| 1348 | .init = dediprog_init, |
Thomas Heijligen | cc853d8 | 2021-05-04 15:32:17 +0200 | [diff] [blame] | 1349 | }; |