blob: ebf07131bf040a8ebf4cf5dce04e934723ea2482 [file] [log] [blame]
Justin Chevrier66e554b2015-02-08 21:58:10 +00001/*
2 * This file is part of the flashrom project.
3 *
4 * Copyright (C) 2010 Carl-Daniel Hailfinger
5 * Copyright (C) 2014 Justin Chevrier
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
Justin Chevrier66e554b2015-02-08 21:58:10 +000015 */
16
17/*
18 * Connections are as follows:
19 *
20 * +------+-----+----------+
21 * | SPI | Pin | PICkit2 |
22 * +------+-----+----------+
23 * | /CS | 1 | VPP/MCLR |
24 * | VCC | 2 | VDD |
25 * | GND | 3 | GND |
26 * | MISO | 4 | PGD |
27 * | SCLK | 5 | PDC |
28 * | MOSI | 6 | AUX |
29 * +------+-----+----------+
30 *
31 * Inspiration and some specifics of the interface came via the AVRDude
32 * PICkit2 code: https://github.com/steve-m/avrdude/blob/master/pickit2.c
33 */
34
35#include "platform.h"
36
37#include <stdlib.h>
38#include <stdio.h>
39#include <string.h>
40#include <limits.h>
41#include <errno.h>
Thomas Heijligenb221cd72019-04-05 15:08:35 +020042#include <libusb.h>
Justin Chevrier66e554b2015-02-08 21:58:10 +000043
44#include "flash.h"
45#include "chipdrivers.h"
46#include "programmer.h"
47#include "spi.h"
48
Thomas Heijligencc853d82021-05-04 15:32:17 +020049static const struct dev_entry devs_pickit2_spi[] = {
Stefan Taunerf31fe842016-02-22 08:59:15 +000050 {0x04D8, 0x0033, OK, "Microchip", "PICkit 2"},
51
Evgeny Zinoviev83c56b82019-11-05 17:47:43 +030052 {0}
Stefan Taunerf31fe842016-02-22 08:59:15 +000053};
54
Thomas Heijligenb221cd72019-04-05 15:08:35 +020055static libusb_device_handle *pickit2_handle;
Justin Chevrier66e554b2015-02-08 21:58:10 +000056
57/* Default USB transaction timeout in ms */
58#define DFLT_TIMEOUT 10000
59
60#define CMD_LENGTH 64
61#define ENDPOINT_OUT 0x01
62#define ENDPOINT_IN 0x81
63
Justin Chevrier66e554b2015-02-08 21:58:10 +000064#define CMD_GET_VERSION 0x76
65#define CMD_SET_VDD 0xA0
66#define CMD_SET_VPP 0xA1
67#define CMD_READ_VDD_VPP 0xA3
68#define CMD_EXEC_SCRIPT 0xA6
69#define CMD_CLR_DLOAD_BUFF 0xA7
70#define CMD_DOWNLOAD_DATA 0xA8
71#define CMD_CLR_ULOAD_BUFF 0xA9
72#define CMD_UPLOAD_DATA 0xAA
73#define CMD_END_OF_BUFFER 0xAD
74
75#define SCR_SPI_READ_BUF 0xC5
76#define SCR_SPI_WRITE_BUF 0xC6
77#define SCR_SET_AUX 0xCF
78#define SCR_LOOP 0xE9
79#define SCR_SET_ICSP_CLK_PERIOD 0xEA
80#define SCR_SET_PINS 0xF3
81#define SCR_BUSY_LED_OFF 0xF4
82#define SCR_BUSY_LED_ON 0xF5
83#define SCR_MCLR_GND_OFF 0xF6
84#define SCR_MCLR_GND_ON 0xF7
85#define SCR_VPP_PWM_OFF 0xF8
86#define SCR_VPP_PWM_ON 0xF9
87#define SCR_VPP_OFF 0xFA
88#define SCR_VPP_ON 0xFB
89#define SCR_VDD_OFF 0xFE
90#define SCR_VDD_ON 0xFF
91
Angel Pons75d6ec62022-07-16 12:12:50 +020092static int pickit2_interrupt_transfer(libusb_device_handle *handle, unsigned char endpoint, unsigned char *data)
93{
94 int transferred;
95 return libusb_interrupt_transfer(handle, endpoint, data, CMD_LENGTH, &transferred, DFLT_TIMEOUT);
96}
97
Justin Chevrier66e554b2015-02-08 21:58:10 +000098static int pickit2_get_firmware_version(void)
99{
100 int ret;
101 uint8_t command[CMD_LENGTH] = {CMD_GET_VERSION, CMD_END_OF_BUFFER};
Elyes HAOUAS0cacb112019-02-04 12:16:38 +0100102
Angel Pons75d6ec62022-07-16 12:12:50 +0200103 ret = pickit2_interrupt_transfer(pickit2_handle, ENDPOINT_OUT, command);
Elyes HAOUAS3384fb62019-07-18 14:00:13 +0200104
Thomas Heijligenb221cd72019-04-05 15:08:35 +0200105 if (ret != 0) {
106 msg_perr("Command Get Firmware Version failed!\n");
Justin Chevrier66e554b2015-02-08 21:58:10 +0000107 return 1;
108 }
109
Angel Pons75d6ec62022-07-16 12:12:50 +0200110 ret = pickit2_interrupt_transfer(pickit2_handle, ENDPOINT_IN, command);
Elyes HAOUAS3384fb62019-07-18 14:00:13 +0200111
112 if (ret != 0) {
113 msg_perr("Command Get Firmware Version failed!\n");
114 return 1;
115 }
116
117 msg_pdbg("PICkit2 Firmware Version: %d.%d\n", (int)command[0], (int)command[1]);
Justin Chevrier66e554b2015-02-08 21:58:10 +0000118 return 0;
119}
120
121static int pickit2_set_spi_voltage(int millivolt)
122{
123 double voltage_selector;
124 switch (millivolt) {
125 case 0:
126 /* Admittedly this one is an assumption. */
127 voltage_selector = 0;
128 break;
129 case 1800:
130 voltage_selector = 1.8;
131 break;
132 case 2500:
133 voltage_selector = 2.5;
134 break;
135 case 3500:
136 voltage_selector = 3.5;
137 break;
138 default:
139 msg_perr("Unknown voltage %i mV! Aborting.\n", millivolt);
140 return 1;
141 }
142 msg_pdbg("Setting SPI voltage to %u.%03u V\n", millivolt / 1000,
143 millivolt % 1000);
144
145 uint8_t command[CMD_LENGTH] = {
146 CMD_SET_VDD,
147 voltage_selector * 2048 + 672,
148 (voltage_selector * 2048 + 672) / 256,
149 voltage_selector * 36,
150 CMD_SET_VPP,
151 0x40,
152 voltage_selector * 18.61,
153 voltage_selector * 13,
154 CMD_END_OF_BUFFER
155 };
Angel Pons75d6ec62022-07-16 12:12:50 +0200156 int ret = pickit2_interrupt_transfer(pickit2_handle, ENDPOINT_OUT, command);
Justin Chevrier66e554b2015-02-08 21:58:10 +0000157
Thomas Heijligenb221cd72019-04-05 15:08:35 +0200158 if (ret != 0) {
159 msg_perr("Command Set Voltage failed!\n");
Justin Chevrier66e554b2015-02-08 21:58:10 +0000160 return 1;
161 }
162
163 return 0;
164}
165
166struct pickit2_spispeeds {
167 const char *const name;
168 const int speed;
169};
170
171static const struct pickit2_spispeeds spispeeds[] = {
172 { "1M", 0x1 },
173 { "500k", 0x2 },
174 { "333k", 0x3 },
175 { "250k", 0x4 },
176 { NULL, 0x0 },
177};
178
179static int pickit2_set_spi_speed(unsigned int spispeed_idx)
180{
181 msg_pdbg("SPI speed is %sHz\n", spispeeds[spispeed_idx].name);
182
183 uint8_t command[CMD_LENGTH] = {
184 CMD_EXEC_SCRIPT,
185 2,
186 SCR_SET_ICSP_CLK_PERIOD,
187 spispeed_idx,
188 CMD_END_OF_BUFFER
189 };
190
Angel Pons75d6ec62022-07-16 12:12:50 +0200191 int ret = pickit2_interrupt_transfer(pickit2_handle, ENDPOINT_OUT, command);
Justin Chevrier66e554b2015-02-08 21:58:10 +0000192
Thomas Heijligenb221cd72019-04-05 15:08:35 +0200193 if (ret != 0) {
194 msg_perr("Command Set SPI Speed failed!\n");
Justin Chevrier66e554b2015-02-08 21:58:10 +0000195 return 1;
196 }
197
198 return 0;
199}
200
Edward O'Callaghan5eca4272020-04-12 17:27:53 +1000201static int pickit2_spi_send_command(const struct flashctx *flash, unsigned int writecnt, unsigned int readcnt,
Justin Chevrier66e554b2015-02-08 21:58:10 +0000202 const unsigned char *writearr, unsigned char *readarr)
203{
204
205 /* Maximum number of bytes per transaction (including command overhead) is 64. Lets play it safe
206 * and always assume the worst case scenario of 20 bytes command overhead.
207 */
208 if (writecnt + readcnt + 20 > CMD_LENGTH) {
Felix Singerd07c4a42022-07-29 03:09:02 +0200209 msg_perr("\nTotal packetsize (%i) is greater than %i supported, aborting.\n",
210 writecnt + readcnt + 20, CMD_LENGTH);
Justin Chevrier66e554b2015-02-08 21:58:10 +0000211 return 1;
212 }
213
214 uint8_t buf[CMD_LENGTH] = {CMD_DOWNLOAD_DATA, writecnt};
Nico Huber519be662018-12-23 20:03:35 +0100215 unsigned int i = 2;
Justin Chevrier66e554b2015-02-08 21:58:10 +0000216 for (; i < writecnt + 2; i++) {
217 buf[i] = writearr[i - 2];
218 }
219
220 buf[i++] = CMD_CLR_ULOAD_BUFF;
221 buf[i++] = CMD_EXEC_SCRIPT;
222
223 /* Determine script length based on number of bytes to be read or written */
224 if (writecnt == 1 && readcnt == 1)
225 buf[i++] = 7;
226 else if (writecnt == 1 || readcnt == 1)
227 buf[i++] = 10;
228 else
229 buf[i++] = 13;
Elyes HAOUAS0cacb112019-02-04 12:16:38 +0100230
Justin Chevrier66e554b2015-02-08 21:58:10 +0000231 /* Assert CS# */
232 buf[i++] = SCR_VPP_OFF;
233 buf[i++] = SCR_MCLR_GND_ON;
234
235 buf[i++] = SCR_SPI_WRITE_BUF;
236
237 if (writecnt > 1) {
238 buf[i++] = SCR_LOOP;
239 buf[i++] = 1; /* Loop back one instruction */
240 buf[i++] = writecnt - 1; /* Number of times to loop */
241 }
242
243 if (readcnt)
244 buf[i++] = SCR_SPI_READ_BUF;
245
246 if (readcnt > 1) {
247 buf[i++] = SCR_LOOP;
248 buf[i++] = 1; /* Loop back one instruction */
249 buf[i++] = readcnt - 1; /* Number of times to loop */
250 }
251
252 /* De-assert CS# */
253 buf[i++] = SCR_MCLR_GND_OFF;
254 buf[i++] = SCR_VPP_PWM_ON;
255 buf[i++] = SCR_VPP_ON;
256
257 buf[i++] = CMD_UPLOAD_DATA;
258 buf[i++] = CMD_END_OF_BUFFER;
259
Angel Pons75d6ec62022-07-16 12:12:50 +0200260 int ret = pickit2_interrupt_transfer(pickit2_handle, ENDPOINT_OUT, buf);
Justin Chevrier66e554b2015-02-08 21:58:10 +0000261
Thomas Heijligenb221cd72019-04-05 15:08:35 +0200262 if (ret != 0) {
263 msg_perr("Send SPI failed!\n");
Justin Chevrier66e554b2015-02-08 21:58:10 +0000264 return 1;
265 }
266
267 if (readcnt) {
Thomas Heijligenb221cd72019-04-05 15:08:35 +0200268 int length = 0;
269 ret = libusb_interrupt_transfer(pickit2_handle, ENDPOINT_IN, buf, CMD_LENGTH, &length, DFLT_TIMEOUT);
Justin Chevrier66e554b2015-02-08 21:58:10 +0000270
Thomas Heijligenb221cd72019-04-05 15:08:35 +0200271 if (length == 0 || ret != 0) {
272 msg_perr("Receive SPI failed\n");
Justin Chevrier66e554b2015-02-08 21:58:10 +0000273 return 1;
274 }
275
276 /* First byte indicates number of bytes transferred from upload buffer */
277 if (buf[0] != readcnt) {
278 msg_perr("Unexpected number of bytes transferred, expected %i, got %i!\n",
279 readcnt, ret);
280 return 1;
281 }
Elyes HAOUAS0cacb112019-02-04 12:16:38 +0100282
Justin Chevrier66e554b2015-02-08 21:58:10 +0000283 /* Actual data starts at byte number two */
284 memcpy(readarr, &buf[1], readcnt);
285 }
286
287 return 0;
288}
289
290/* Copied from dediprog.c */
291/* Might be useful for other USB devices as well. static for now. */
292static int parse_voltage(char *voltage)
293{
294 char *tmp = NULL;
295 int i;
296 int millivolt = 0, fraction = 0;
297
298 if (!voltage || !strlen(voltage)) {
299 msg_perr("Empty voltage= specified.\n");
300 return -1;
301 }
302 millivolt = (int)strtol(voltage, &tmp, 0);
303 voltage = tmp;
304 /* Handle "," and "." as decimal point. Everything after it is assumed
305 * to be in decimal notation.
306 */
307 if ((*voltage == '.') || (*voltage == ',')) {
308 voltage++;
309 for (i = 0; i < 3; i++) {
310 fraction *= 10;
311 /* Don't advance if the current character is invalid,
312 * but continue multiplying.
313 */
314 if ((*voltage < '0') || (*voltage > '9'))
315 continue;
316 fraction += *voltage - '0';
317 voltage++;
318 }
319 /* Throw away remaining digits. */
320 voltage += strspn(voltage, "0123456789");
321 }
322 /* The remaining string must be empty or "mV" or "V". */
323 tolower_string(voltage);
324
325 /* No unit or "V". */
326 if ((*voltage == '\0') || !strncmp(voltage, "v", 1)) {
327 millivolt *= 1000;
328 millivolt += fraction;
329 } else if (!strncmp(voltage, "mv", 2) ||
330 !strncmp(voltage, "millivolt", 9)) {
331 /* No adjustment. fraction is discarded. */
332 } else {
333 /* Garbage at the end of the string. */
334 msg_perr("Garbage voltage= specified.\n");
335 return -1;
336 }
337 return millivolt;
338}
339
340static const struct spi_master spi_master_pickit2 = {
Justin Chevrier66e554b2015-02-08 21:58:10 +0000341 .max_data_read = 40,
342 .max_data_write = 40,
343 .command = pickit2_spi_send_command,
344 .multicommand = default_spi_send_multicommand,
345 .read = default_spi_read,
346 .write_256 = default_spi_write_256,
347 .write_aai = default_spi_write_aai,
348};
349
350static int pickit2_shutdown(void *data)
351{
352 /* Set all pins to float and turn voltages off */
353 uint8_t command[CMD_LENGTH] = {
354 CMD_EXEC_SCRIPT,
355 8,
356 SCR_SET_PINS,
357 3, /* Bit-0=1(PDC In), Bit-1=1(PGD In), Bit-2=0(PDC LL), Bit-3=0(PGD LL) */
358 SCR_SET_AUX,
359 1, /* Bit-0=1(Aux In), Bit-1=0(Aux LL) */
360 SCR_MCLR_GND_OFF,
361 SCR_VPP_OFF,
362 SCR_VDD_OFF,
363 SCR_BUSY_LED_OFF,
364 CMD_END_OF_BUFFER
365 };
366
Angel Pons75d6ec62022-07-16 12:12:50 +0200367 int ret = pickit2_interrupt_transfer(pickit2_handle, ENDPOINT_OUT, command);
Justin Chevrier66e554b2015-02-08 21:58:10 +0000368
Thomas Heijligenb221cd72019-04-05 15:08:35 +0200369 if (ret != 0) {
370 msg_perr("Command Shutdown failed!\n");
Justin Chevrier66e554b2015-02-08 21:58:10 +0000371 ret = 1;
372 }
Thomas Heijligenb221cd72019-04-05 15:08:35 +0200373 if (libusb_release_interface(pickit2_handle, 0) != 0) {
Justin Chevrier66e554b2015-02-08 21:58:10 +0000374 msg_perr("Could not release USB interface!\n");
375 ret = 1;
376 }
Thomas Heijligenb221cd72019-04-05 15:08:35 +0200377 libusb_close(pickit2_handle);
378 libusb_exit(NULL);
Justin Chevrier66e554b2015-02-08 21:58:10 +0000379 return ret;
380}
381
Thomas Heijligencc853d82021-05-04 15:32:17 +0200382static int pickit2_spi_init(void)
Justin Chevrier66e554b2015-02-08 21:58:10 +0000383{
Justin Chevrier66e554b2015-02-08 21:58:10 +0000384 uint8_t buf[CMD_LENGTH] = {
385 CMD_EXEC_SCRIPT,
386 10, /* Script length */
387 SCR_SET_PINS,
388 2, /* Bit-0=0(PDC Out), Bit-1=1(PGD In), Bit-2=0(PDC LL), Bit-3=0(PGD LL) */
389 SCR_SET_AUX,
390 0, /* Bit-0=0(Aux Out), Bit-1=0(Aux LL) */
391 SCR_VDD_ON,
392 SCR_MCLR_GND_OFF, /* Let CS# float */
393 SCR_VPP_PWM_ON,
394 SCR_VPP_ON, /* Pull CS# high */
395 SCR_BUSY_LED_ON,
396 CMD_CLR_DLOAD_BUFF,
397 CMD_CLR_ULOAD_BUFF,
398 CMD_END_OF_BUFFER
399 };
400
401
402 int spispeed_idx = 0;
403 char *spispeed = extract_programmer_param("spispeed");
404 if (spispeed != NULL) {
405 int i = 0;
406 for (; spispeeds[i].name; i++) {
407 if (strcasecmp(spispeeds[i].name, spispeed) == 0) {
408 spispeed_idx = i;
409 break;
410 }
411 }
412 if (spispeeds[i].name == NULL) {
413 msg_perr("Error: Invalid 'spispeed' value.\n");
414 free(spispeed);
415 return 1;
416 }
417 free(spispeed);
418 }
419
420 int millivolt = 3500;
421 char *voltage = extract_programmer_param("voltage");
422 if (voltage != NULL) {
423 millivolt = parse_voltage(voltage);
424 free(voltage);
425 if (millivolt < 0)
426 return 1;
427 }
428
Thomas Heijligenb221cd72019-04-05 15:08:35 +0200429 if (libusb_init(NULL) < 0) {
430 msg_perr("Couldn't initialize libusb!\n");
431 return -1;
432 }
433
434#if LIBUSB_API_VERSION < 0x01000106
435 libusb_set_debug(NULL, 3);
436#else
437 libusb_set_option(NULL, LIBUSB_OPTION_LOG_LEVEL, LIBUSB_LOG_LEVEL_INFO);
438#endif
439
Stefan Taunerf31fe842016-02-22 08:59:15 +0000440 const uint16_t vid = devs_pickit2_spi[0].vendor_id;
441 const uint16_t pid = devs_pickit2_spi[0].device_id;
Thomas Heijligenb221cd72019-04-05 15:08:35 +0200442 pickit2_handle = libusb_open_device_with_vid_pid(NULL, vid, pid);
443 if (pickit2_handle == NULL) {
444 msg_perr("Could not open device PICkit2!\n");
445 libusb_exit(NULL);
Justin Chevrier66e554b2015-02-08 21:58:10 +0000446 return 1;
447 }
Justin Chevrier66e554b2015-02-08 21:58:10 +0000448
Thomas Heijligenb221cd72019-04-05 15:08:35 +0200449 if (libusb_set_configuration(pickit2_handle, 1) != 0) {
450 msg_perr("Could not set USB device configuration.\n");
451 libusb_close(pickit2_handle);
452 libusb_exit(NULL);
Justin Chevrier66e554b2015-02-08 21:58:10 +0000453 return 1;
454 }
Thomas Heijligenb221cd72019-04-05 15:08:35 +0200455 if (libusb_claim_interface(pickit2_handle, 0) != 0) {
456 msg_perr("Could not claim USB device interface\n");
457 libusb_close(pickit2_handle);
458 libusb_exit(NULL);
Justin Chevrier66e554b2015-02-08 21:58:10 +0000459 return 1;
460 }
461
462 if (register_shutdown(pickit2_shutdown, NULL) != 0) {
463 return 1;
464 }
465
466 if (pickit2_get_firmware_version()) {
467 return 1;
468 }
469
470 /* Command Set SPI Speed */
471 if (pickit2_set_spi_speed(spispeed_idx)) {
472 return 1;
473 }
474
475 /* Command Set SPI Voltage */
476 msg_pdbg("Setting voltage to %i mV.\n", millivolt);
477 if (pickit2_set_spi_voltage(millivolt) != 0) {
478 return 1;
479 }
480
481 /* Perform basic setup.
482 * Configure pin directions and logic levels, turn Vdd on, turn busy LED on and clear buffers. */
Angel Pons75d6ec62022-07-16 12:12:50 +0200483 if (pickit2_interrupt_transfer(pickit2_handle, ENDPOINT_OUT, buf) != 0) {
Thomas Heijligenb221cd72019-04-05 15:08:35 +0200484 msg_perr("Command Setup failed!\n");
Justin Chevrier66e554b2015-02-08 21:58:10 +0000485 return 1;
486 }
487
488 register_spi_master(&spi_master_pickit2);
489
490 return 0;
491}
Thomas Heijligencc853d82021-05-04 15:32:17 +0200492
493const struct programmer_entry programmer_pickit2_spi = {
494 .name = "pickit2_spi",
495 .type = USB,
496 .devs.dev = devs_pickit2_spi,
497 .init = pickit2_spi_init,
498 .map_flash_region = fallback_map,
499 .unmap_flash_region = fallback_unmap,
500 .delay = internal_delay,
501};