blob: d6b508401c43c3fc061d9fbb5f38cdcef0d934d4 [file] [log] [blame]
James Lairdc60de0e2013-03-27 13:00:23 +00001/*
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 Lairdc60de0e2013-03-27 13:00:23 +000014 */
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
48const struct dev_entry devs_usbblasterspi[] = {
49 {ALTERA_VID, ALTERA_USBBLASTER_PID, OK, "Altera", "USB-Blaster"},
50
51 {}
52};
53
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +000054static const struct spi_master spi_master_usbblaster;
James Lairdc60de0e2013-03-27 13:00:23 +000055
56static 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 Garberbeeb8bc2019-06-21 15:24:17 -060070static uint8_t reverse(uint8_t b)
James Lairdc60de0e2013-03-27 13:00:23 +000071{
72 return ((b * 0x0802LU & 0x22110LU) | (b * 0x8020LU & 0x88440LU)) * 0x10101LU >> 16;
73}
74
75
76/* Returns 0 upon success, a negative number upon errors. */
77int 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 Hailfingera5bcbce2014-07-19 22:03:29 +0000116 register_spi_master(&spi_master_usbblaster);
James Lairdc60de0e2013-03-27 13:00:23 +0000117 return 0;
118}
119
120static int send_write(unsigned int writecnt, const unsigned char *writearr)
121{
James Lairdc60de0e2013-03-27 13:00:23 +0000122 uint8_t buf[BUF_SIZE];
123
124 memset(buf, 0, sizeof(buf));
125 while (writecnt) {
Nico Huber519be662018-12-23 20:03:35 +0100126 unsigned int i;
James Lairdc60de0e2013-03-27 13:00:23 +0000127 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
145static 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. */
182static int usbblaster_spi_send_command(struct flashctx *flash, unsigned int writecnt, unsigned int readcnt,
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 Hailfingera5bcbce2014-07-19 22:03:29 +0000210static const struct spi_master spi_master_usbblaster = {
James Lairdc60de0e2013-03-27 13:00:23 +0000211 .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