James Laird | c60de0e | 2013-03-27 13:00:23 +0000 | [diff] [blame] | 1 | /* |
| 2 | * This file is part of the flashrom project. |
| 3 | * |
| 4 | * Copyright (C) 2012 James Laird <jhl@mafipulation.org> |
| 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. |
James Laird | c60de0e | 2013-03-27 13:00:23 +0000 | [diff] [blame] | 14 | */ |
| 15 | |
| 16 | /* |
| 17 | * Device should be connected as per "active serial" mode: |
| 18 | * |
| 19 | * +---------+------+-----------+ |
| 20 | * | SPI | Pin | Altera | |
| 21 | * +---------+------+-----------+ |
| 22 | * | SCLK | 1 | DCLK | |
| 23 | * | GND | 2,10 | GND | |
| 24 | * | VCC | 4 | VCC(TRGT) | |
| 25 | * | MISO | 7 | DATAOUT | |
| 26 | * | /CS | 8 | nCS | |
| 27 | * | MOSI | 9 | ASDI | |
| 28 | * +---------+------+-----------+ |
| 29 | * |
| 30 | * See also the USB-Blaster Download Cable User Guide: http://www.altera.com/literature/ug/ug_usb_blstr.pdf |
| 31 | */ |
| 32 | |
| 33 | #if CONFIG_USBBLASTER_SPI == 1 |
| 34 | |
| 35 | #include <stdio.h> |
| 36 | #include <string.h> |
| 37 | #include <stdlib.h> |
| 38 | #include <ctype.h> |
| 39 | #include <ftdi.h> |
| 40 | #include "flash.h" |
| 41 | #include "programmer.h" |
| 42 | #include "spi.h" |
| 43 | |
| 44 | /* Please keep sorted by vendor ID, then device ID. */ |
| 45 | #define ALTERA_VID 0x09fb |
| 46 | #define ALTERA_USBBLASTER_PID 0x6001 |
| 47 | |
| 48 | const struct dev_entry devs_usbblasterspi[] = { |
| 49 | {ALTERA_VID, ALTERA_USBBLASTER_PID, OK, "Altera", "USB-Blaster"}, |
| 50 | |
Evgeny Zinoviev | 83c56b8 | 2019-11-05 17:47:43 +0300 | [diff] [blame] | 51 | {0} |
James Laird | c60de0e | 2013-03-27 13:00:23 +0000 | [diff] [blame] | 52 | }; |
| 53 | |
Carl-Daniel Hailfinger | a5bcbce | 2014-07-19 22:03:29 +0000 | [diff] [blame] | 54 | static const struct spi_master spi_master_usbblaster; |
James Laird | c60de0e | 2013-03-27 13:00:23 +0000 | [diff] [blame] | 55 | |
| 56 | static struct ftdi_context ftdic; |
| 57 | |
| 58 | // command bytes |
| 59 | #define BIT_BYTE (1<<7) // byte mode (rather than bitbang) |
| 60 | #define BIT_READ (1<<6) // read request |
| 61 | #define BIT_LED (1<<5) |
| 62 | #define BIT_CS (1<<3) |
| 63 | #define BIT_TMS (1<<1) |
| 64 | #define BIT_CLK (1<<0) |
| 65 | |
| 66 | #define BUF_SIZE 64 |
| 67 | |
| 68 | /* The programmer shifts bits in the wrong order for SPI, so we use this method to reverse the bits when needed. |
| 69 | * http://graphics.stanford.edu/~seander/bithacks.html#ReverseByteWith32Bits */ |
Jacob Garber | beeb8bc | 2019-06-21 15:24:17 -0600 | [diff] [blame] | 70 | static uint8_t reverse(uint8_t b) |
James Laird | c60de0e | 2013-03-27 13:00:23 +0000 | [diff] [blame] | 71 | { |
| 72 | return ((b * 0x0802LU & 0x22110LU) | (b * 0x8020LU & 0x88440LU)) * 0x10101LU >> 16; |
| 73 | } |
| 74 | |
| 75 | |
| 76 | /* Returns 0 upon success, a negative number upon errors. */ |
| 77 | int usbblaster_spi_init(void) |
| 78 | { |
| 79 | uint8_t buf[BUF_SIZE + 1]; |
| 80 | |
| 81 | if (ftdi_init(&ftdic) < 0) |
| 82 | return -1; |
| 83 | |
| 84 | if (ftdi_usb_open(&ftdic, ALTERA_VID, ALTERA_USBBLASTER_PID) < 0) { |
| 85 | msg_perr("Failed to open USB-Blaster: %s\n", ftdic.error_str); |
| 86 | return -1; |
| 87 | } |
| 88 | |
| 89 | if (ftdi_usb_reset(&ftdic) < 0) { |
| 90 | msg_perr("USB-Blaster reset failed\n"); |
| 91 | return -1; |
| 92 | } |
| 93 | |
| 94 | if (ftdi_set_latency_timer(&ftdic, 2) < 0) { |
| 95 | msg_perr("USB-Blaster set latency timer failed\n"); |
| 96 | return -1; |
| 97 | } |
| 98 | |
| 99 | if (ftdi_write_data_set_chunksize(&ftdic, 4096) < 0 || |
| 100 | ftdi_read_data_set_chunksize(&ftdic, BUF_SIZE) < 0) { |
| 101 | msg_perr("USB-Blaster set chunk size failed\n"); |
| 102 | return -1; |
| 103 | } |
| 104 | |
| 105 | memset(buf, 0, sizeof(buf)); |
| 106 | buf[sizeof(buf)-1] = BIT_LED | BIT_CS; |
| 107 | if (ftdi_write_data(&ftdic, buf, sizeof(buf)) < 0) { |
| 108 | msg_perr("USB-Blaster reset write failed\n"); |
| 109 | return -1; |
| 110 | } |
| 111 | if (ftdi_read_data(&ftdic, buf, sizeof(buf)) < 0) { |
| 112 | msg_perr("USB-Blaster reset read failed\n"); |
| 113 | return -1; |
| 114 | } |
| 115 | |
Carl-Daniel Hailfinger | a5bcbce | 2014-07-19 22:03:29 +0000 | [diff] [blame] | 116 | register_spi_master(&spi_master_usbblaster); |
James Laird | c60de0e | 2013-03-27 13:00:23 +0000 | [diff] [blame] | 117 | return 0; |
| 118 | } |
| 119 | |
| 120 | static int send_write(unsigned int writecnt, const unsigned char *writearr) |
| 121 | { |
James Laird | c60de0e | 2013-03-27 13:00:23 +0000 | [diff] [blame] | 122 | uint8_t buf[BUF_SIZE]; |
| 123 | |
| 124 | memset(buf, 0, sizeof(buf)); |
| 125 | while (writecnt) { |
Nico Huber | 519be66 | 2018-12-23 20:03:35 +0100 | [diff] [blame] | 126 | unsigned int i; |
James Laird | c60de0e | 2013-03-27 13:00:23 +0000 | [diff] [blame] | 127 | unsigned int n_write = min(writecnt, BUF_SIZE - 1); |
| 128 | msg_pspew("writing %d-byte packet\n", n_write); |
| 129 | |
| 130 | buf[0] = BIT_BYTE | (uint8_t)n_write; |
| 131 | for (i = 0; i < n_write; i++) { |
| 132 | buf[i+1] = reverse(writearr[i]); |
| 133 | } |
| 134 | if (ftdi_write_data(&ftdic, buf, n_write + 1) < 0) { |
| 135 | msg_perr("USB-Blaster write failed\n"); |
| 136 | return -1; |
| 137 | } |
| 138 | |
| 139 | writearr += n_write; |
| 140 | writecnt -= n_write; |
| 141 | } |
| 142 | return 0; |
| 143 | } |
| 144 | |
| 145 | static int send_read(unsigned int readcnt, unsigned char *readarr) |
| 146 | { |
| 147 | int i; |
| 148 | unsigned int n_read; |
| 149 | uint8_t buf[BUF_SIZE]; |
| 150 | memset(buf, 0, sizeof(buf)); |
| 151 | |
| 152 | n_read = readcnt; |
| 153 | while (n_read) { |
| 154 | unsigned int payload_size = min(n_read, BUF_SIZE - 1); |
| 155 | msg_pspew("reading %d-byte packet\n", payload_size); |
| 156 | |
| 157 | buf[0] = BIT_BYTE | BIT_READ | (uint8_t)payload_size; |
| 158 | if (ftdi_write_data(&ftdic, buf, payload_size + 1) < 0) { |
| 159 | msg_perr("USB-Blaster write failed\n"); |
| 160 | return -1; |
| 161 | } |
| 162 | n_read -= payload_size; |
| 163 | }; |
| 164 | |
| 165 | n_read = readcnt; |
| 166 | while (n_read) { |
| 167 | int ret = ftdi_read_data(&ftdic, readarr, n_read); |
| 168 | if (ret < 0) { |
| 169 | msg_perr("USB-Blaster read failed\n"); |
| 170 | return -1; |
| 171 | } |
| 172 | for (i = 0; i < ret; i++) { |
| 173 | readarr[i] = reverse(readarr[i]); |
| 174 | } |
| 175 | n_read -= ret; |
| 176 | readarr += ret; |
| 177 | } |
| 178 | return 0; |
| 179 | } |
| 180 | |
| 181 | /* Returns 0 upon success, a negative number upon errors. */ |
Edward O'Callaghan | 5eca427 | 2020-04-12 17:27:53 +1000 | [diff] [blame] | 182 | static int usbblaster_spi_send_command(const struct flashctx *flash, unsigned int writecnt, unsigned int readcnt, |
James Laird | c60de0e | 2013-03-27 13:00:23 +0000 | [diff] [blame] | 183 | const unsigned char *writearr, unsigned char *readarr) |
| 184 | { |
| 185 | uint8_t cmd; |
| 186 | int ret = 0; |
| 187 | |
| 188 | cmd = BIT_LED; // asserts /CS |
| 189 | if (ftdi_write_data(&ftdic, &cmd, 1) < 0) { |
| 190 | msg_perr("USB-Blaster enable chip select failed\n"); |
| 191 | ret = -1; |
| 192 | } |
| 193 | |
| 194 | if (!ret && writecnt) |
| 195 | ret = send_write(writecnt, writearr); |
| 196 | |
| 197 | if (!ret && readcnt) |
| 198 | ret = send_read(readcnt, readarr); |
| 199 | |
| 200 | cmd = BIT_CS; |
| 201 | if (ftdi_write_data(&ftdic, &cmd, 1) < 0) { |
| 202 | msg_perr("USB-Blaster disable chip select failed\n"); |
| 203 | ret = -1; |
| 204 | } |
| 205 | |
| 206 | return ret; |
| 207 | } |
| 208 | |
| 209 | |
Carl-Daniel Hailfinger | a5bcbce | 2014-07-19 22:03:29 +0000 | [diff] [blame] | 210 | static const struct spi_master spi_master_usbblaster = { |
James Laird | c60de0e | 2013-03-27 13:00:23 +0000 | [diff] [blame] | 211 | .max_data_read = 256, |
| 212 | .max_data_write = 256, |
| 213 | .command = usbblaster_spi_send_command, |
| 214 | .multicommand = default_spi_send_multicommand, |
| 215 | .read = default_spi_read, |
| 216 | .write_256 = default_spi_write_256, |
| 217 | .write_aai = default_spi_write_aai, |
| 218 | }; |
| 219 | |
| 220 | #endif |