blob: 50e6017a133ffb9d49b9822289c14a3794c6bc87 [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
Justin Chevrier66e554b2015-02-08 21:58:10 +000035#include <stdlib.h>
36#include <stdio.h>
37#include <string.h>
38#include <limits.h>
39#include <errno.h>
Thomas Heijligenb221cd72019-04-05 15:08:35 +020040#include <libusb.h>
Justin Chevrier66e554b2015-02-08 21:58:10 +000041
42#include "flash.h"
43#include "chipdrivers.h"
44#include "programmer.h"
45#include "spi.h"
46
Thomas Heijligencc853d82021-05-04 15:32:17 +020047static const struct dev_entry devs_pickit2_spi[] = {
Stefan Taunerf31fe842016-02-22 08:59:15 +000048 {0x04D8, 0x0033, OK, "Microchip", "PICkit 2"},
49
Evgeny Zinoviev83c56b82019-11-05 17:47:43 +030050 {0}
Stefan Taunerf31fe842016-02-22 08:59:15 +000051};
52
Anastasia Klimchuk47e7d472021-04-30 14:10:04 +100053struct pickit2_spi_data {
54 libusb_device_handle *pickit2_handle;
55};
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
Anastasia Klimchuk47e7d472021-04-30 14:10:04 +100098static int pickit2_get_firmware_version(libusb_device_handle *pickit2_handle)
Justin Chevrier66e554b2015-02-08 21:58:10 +000099{
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
Anastasia Klimchuk47e7d472021-04-30 14:10:04 +1000121static int pickit2_set_spi_voltage(libusb_device_handle *pickit2_handle, int millivolt)
Justin Chevrier66e554b2015-02-08 21:58:10 +0000122{
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
Anastasia Klimchuk47e7d472021-04-30 14:10:04 +1000179static int pickit2_set_spi_speed(libusb_device_handle *pickit2_handle, unsigned int spispeed_idx)
Justin Chevrier66e554b2015-02-08 21:58:10 +0000180{
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{
Felix Singer48c3f182022-07-29 03:16:19 +0200204 const unsigned int total_packetsize = writecnt + readcnt + 20;
Anastasia Klimchuk47e7d472021-04-30 14:10:04 +1000205 struct pickit2_spi_data *pickit2_data = flash->mst->spi.data;
Justin Chevrier66e554b2015-02-08 21:58:10 +0000206
207 /* Maximum number of bytes per transaction (including command overhead) is 64. Lets play it safe
208 * and always assume the worst case scenario of 20 bytes command overhead.
209 */
Felix Singer48c3f182022-07-29 03:16:19 +0200210 if (total_packetsize > CMD_LENGTH) {
Felix Singerd07c4a42022-07-29 03:09:02 +0200211 msg_perr("\nTotal packetsize (%i) is greater than %i supported, aborting.\n",
Felix Singer48c3f182022-07-29 03:16:19 +0200212 total_packetsize, CMD_LENGTH);
Justin Chevrier66e554b2015-02-08 21:58:10 +0000213 return 1;
214 }
215
216 uint8_t buf[CMD_LENGTH] = {CMD_DOWNLOAD_DATA, writecnt};
Nico Huber519be662018-12-23 20:03:35 +0100217 unsigned int i = 2;
Justin Chevrier66e554b2015-02-08 21:58:10 +0000218 for (; i < writecnt + 2; i++) {
219 buf[i] = writearr[i - 2];
220 }
221
222 buf[i++] = CMD_CLR_ULOAD_BUFF;
223 buf[i++] = CMD_EXEC_SCRIPT;
224
225 /* Determine script length based on number of bytes to be read or written */
226 if (writecnt == 1 && readcnt == 1)
227 buf[i++] = 7;
228 else if (writecnt == 1 || readcnt == 1)
229 buf[i++] = 10;
230 else
231 buf[i++] = 13;
Elyes HAOUAS0cacb112019-02-04 12:16:38 +0100232
Justin Chevrier66e554b2015-02-08 21:58:10 +0000233 /* Assert CS# */
234 buf[i++] = SCR_VPP_OFF;
235 buf[i++] = SCR_MCLR_GND_ON;
236
237 buf[i++] = SCR_SPI_WRITE_BUF;
238
239 if (writecnt > 1) {
240 buf[i++] = SCR_LOOP;
241 buf[i++] = 1; /* Loop back one instruction */
242 buf[i++] = writecnt - 1; /* Number of times to loop */
243 }
244
245 if (readcnt)
246 buf[i++] = SCR_SPI_READ_BUF;
247
248 if (readcnt > 1) {
249 buf[i++] = SCR_LOOP;
250 buf[i++] = 1; /* Loop back one instruction */
251 buf[i++] = readcnt - 1; /* Number of times to loop */
252 }
253
254 /* De-assert CS# */
255 buf[i++] = SCR_MCLR_GND_OFF;
256 buf[i++] = SCR_VPP_PWM_ON;
257 buf[i++] = SCR_VPP_ON;
258
259 buf[i++] = CMD_UPLOAD_DATA;
260 buf[i++] = CMD_END_OF_BUFFER;
261
Anastasia Klimchuk47e7d472021-04-30 14:10:04 +1000262 int ret = pickit2_interrupt_transfer(pickit2_data->pickit2_handle, ENDPOINT_OUT, buf);
Justin Chevrier66e554b2015-02-08 21:58:10 +0000263
Thomas Heijligenb221cd72019-04-05 15:08:35 +0200264 if (ret != 0) {
265 msg_perr("Send SPI failed!\n");
Justin Chevrier66e554b2015-02-08 21:58:10 +0000266 return 1;
267 }
268
269 if (readcnt) {
Thomas Heijligenb221cd72019-04-05 15:08:35 +0200270 int length = 0;
Anastasia Klimchuk47e7d472021-04-30 14:10:04 +1000271 ret = libusb_interrupt_transfer(pickit2_data->pickit2_handle,
272 ENDPOINT_IN, buf, CMD_LENGTH, &length, DFLT_TIMEOUT);
Justin Chevrier66e554b2015-02-08 21:58:10 +0000273
Thomas Heijligenb221cd72019-04-05 15:08:35 +0200274 if (length == 0 || ret != 0) {
275 msg_perr("Receive SPI failed\n");
Justin Chevrier66e554b2015-02-08 21:58:10 +0000276 return 1;
277 }
278
279 /* First byte indicates number of bytes transferred from upload buffer */
280 if (buf[0] != readcnt) {
281 msg_perr("Unexpected number of bytes transferred, expected %i, got %i!\n",
282 readcnt, ret);
283 return 1;
284 }
Elyes HAOUAS0cacb112019-02-04 12:16:38 +0100285
Justin Chevrier66e554b2015-02-08 21:58:10 +0000286 /* Actual data starts at byte number two */
287 memcpy(readarr, &buf[1], readcnt);
288 }
289
290 return 0;
291}
292
293/* Copied from dediprog.c */
294/* Might be useful for other USB devices as well. static for now. */
295static int parse_voltage(char *voltage)
296{
297 char *tmp = NULL;
298 int i;
299 int millivolt = 0, fraction = 0;
300
301 if (!voltage || !strlen(voltage)) {
302 msg_perr("Empty voltage= specified.\n");
303 return -1;
304 }
305 millivolt = (int)strtol(voltage, &tmp, 0);
306 voltage = tmp;
307 /* Handle "," and "." as decimal point. Everything after it is assumed
308 * to be in decimal notation.
309 */
310 if ((*voltage == '.') || (*voltage == ',')) {
311 voltage++;
312 for (i = 0; i < 3; i++) {
313 fraction *= 10;
314 /* Don't advance if the current character is invalid,
315 * but continue multiplying.
316 */
317 if ((*voltage < '0') || (*voltage > '9'))
318 continue;
319 fraction += *voltage - '0';
320 voltage++;
321 }
322 /* Throw away remaining digits. */
323 voltage += strspn(voltage, "0123456789");
324 }
325 /* The remaining string must be empty or "mV" or "V". */
326 tolower_string(voltage);
327
328 /* No unit or "V". */
329 if ((*voltage == '\0') || !strncmp(voltage, "v", 1)) {
330 millivolt *= 1000;
331 millivolt += fraction;
332 } else if (!strncmp(voltage, "mv", 2) ||
333 !strncmp(voltage, "millivolt", 9)) {
334 /* No adjustment. fraction is discarded. */
335 } else {
336 /* Garbage at the end of the string. */
337 msg_perr("Garbage voltage= specified.\n");
338 return -1;
339 }
340 return millivolt;
341}
342
Anastasia Klimchukc63d9182021-07-06 16:18:44 +1000343static int pickit2_shutdown(void *data);
344
Nico Huber03f3a6d2021-05-11 17:53:34 +0200345static const struct spi_master spi_master_pickit2 = {
Justin Chevrier66e554b2015-02-08 21:58:10 +0000346 .max_data_read = 40,
347 .max_data_write = 40,
348 .command = pickit2_spi_send_command,
349 .multicommand = default_spi_send_multicommand,
350 .read = default_spi_read,
351 .write_256 = default_spi_write_256,
Anastasia Klimchukc63d9182021-07-06 16:18:44 +1000352 .shutdown = pickit2_shutdown,
Aarya Chaumal0cea7532022-07-04 18:21:50 +0530353 .probe_opcode = default_spi_probe_opcode,
Justin Chevrier66e554b2015-02-08 21:58:10 +0000354};
355
356static int pickit2_shutdown(void *data)
357{
Anastasia Klimchuk47e7d472021-04-30 14:10:04 +1000358 struct pickit2_spi_data *pickit2_data = data;
359
Justin Chevrier66e554b2015-02-08 21:58:10 +0000360 /* Set all pins to float and turn voltages off */
361 uint8_t command[CMD_LENGTH] = {
362 CMD_EXEC_SCRIPT,
363 8,
364 SCR_SET_PINS,
365 3, /* Bit-0=1(PDC In), Bit-1=1(PGD In), Bit-2=0(PDC LL), Bit-3=0(PGD LL) */
366 SCR_SET_AUX,
367 1, /* Bit-0=1(Aux In), Bit-1=0(Aux LL) */
368 SCR_MCLR_GND_OFF,
369 SCR_VPP_OFF,
370 SCR_VDD_OFF,
371 SCR_BUSY_LED_OFF,
372 CMD_END_OF_BUFFER
373 };
374
Anastasia Klimchuk47e7d472021-04-30 14:10:04 +1000375 int ret = pickit2_interrupt_transfer(pickit2_data->pickit2_handle, ENDPOINT_OUT, command);
Justin Chevrier66e554b2015-02-08 21:58:10 +0000376
Thomas Heijligenb221cd72019-04-05 15:08:35 +0200377 if (ret != 0) {
378 msg_perr("Command Shutdown failed!\n");
Justin Chevrier66e554b2015-02-08 21:58:10 +0000379 ret = 1;
380 }
Anastasia Klimchuk47e7d472021-04-30 14:10:04 +1000381 if (libusb_release_interface(pickit2_data->pickit2_handle, 0) != 0) {
Justin Chevrier66e554b2015-02-08 21:58:10 +0000382 msg_perr("Could not release USB interface!\n");
383 ret = 1;
384 }
Anastasia Klimchuk47e7d472021-04-30 14:10:04 +1000385 libusb_close(pickit2_data->pickit2_handle);
Thomas Heijligenb221cd72019-04-05 15:08:35 +0200386 libusb_exit(NULL);
Anastasia Klimchuk47e7d472021-04-30 14:10:04 +1000387
388 free(data);
Justin Chevrier66e554b2015-02-08 21:58:10 +0000389 return ret;
390}
391
Thomas Heijligencc853d82021-05-04 15:32:17 +0200392static int pickit2_spi_init(void)
Justin Chevrier66e554b2015-02-08 21:58:10 +0000393{
Justin Chevrier66e554b2015-02-08 21:58:10 +0000394 uint8_t buf[CMD_LENGTH] = {
395 CMD_EXEC_SCRIPT,
396 10, /* Script length */
397 SCR_SET_PINS,
398 2, /* Bit-0=0(PDC Out), Bit-1=1(PGD In), Bit-2=0(PDC LL), Bit-3=0(PGD LL) */
399 SCR_SET_AUX,
400 0, /* Bit-0=0(Aux Out), Bit-1=0(Aux LL) */
401 SCR_VDD_ON,
402 SCR_MCLR_GND_OFF, /* Let CS# float */
403 SCR_VPP_PWM_ON,
404 SCR_VPP_ON, /* Pull CS# high */
405 SCR_BUSY_LED_ON,
406 CMD_CLR_DLOAD_BUFF,
407 CMD_CLR_ULOAD_BUFF,
408 CMD_END_OF_BUFFER
409 };
410
Anastasia Klimchuk47e7d472021-04-30 14:10:04 +1000411 libusb_device_handle *pickit2_handle;
412 struct pickit2_spi_data *pickit2_data;
Justin Chevrier66e554b2015-02-08 21:58:10 +0000413 int spispeed_idx = 0;
414 char *spispeed = extract_programmer_param("spispeed");
415 if (spispeed != NULL) {
416 int i = 0;
417 for (; spispeeds[i].name; i++) {
418 if (strcasecmp(spispeeds[i].name, spispeed) == 0) {
419 spispeed_idx = i;
420 break;
421 }
422 }
423 if (spispeeds[i].name == NULL) {
424 msg_perr("Error: Invalid 'spispeed' value.\n");
425 free(spispeed);
426 return 1;
427 }
428 free(spispeed);
429 }
430
431 int millivolt = 3500;
432 char *voltage = extract_programmer_param("voltage");
433 if (voltage != NULL) {
434 millivolt = parse_voltage(voltage);
435 free(voltage);
436 if (millivolt < 0)
437 return 1;
438 }
439
Thomas Heijligenb221cd72019-04-05 15:08:35 +0200440 if (libusb_init(NULL) < 0) {
441 msg_perr("Couldn't initialize libusb!\n");
442 return -1;
443 }
444
445#if LIBUSB_API_VERSION < 0x01000106
446 libusb_set_debug(NULL, 3);
447#else
448 libusb_set_option(NULL, LIBUSB_OPTION_LOG_LEVEL, LIBUSB_LOG_LEVEL_INFO);
449#endif
450
Stefan Taunerf31fe842016-02-22 08:59:15 +0000451 const uint16_t vid = devs_pickit2_spi[0].vendor_id;
452 const uint16_t pid = devs_pickit2_spi[0].device_id;
Thomas Heijligenb221cd72019-04-05 15:08:35 +0200453 pickit2_handle = libusb_open_device_with_vid_pid(NULL, vid, pid);
454 if (pickit2_handle == NULL) {
455 msg_perr("Could not open device PICkit2!\n");
456 libusb_exit(NULL);
Justin Chevrier66e554b2015-02-08 21:58:10 +0000457 return 1;
458 }
Justin Chevrier66e554b2015-02-08 21:58:10 +0000459
Thomas Heijligenb221cd72019-04-05 15:08:35 +0200460 if (libusb_set_configuration(pickit2_handle, 1) != 0) {
461 msg_perr("Could not set USB device configuration.\n");
462 libusb_close(pickit2_handle);
463 libusb_exit(NULL);
Justin Chevrier66e554b2015-02-08 21:58:10 +0000464 return 1;
465 }
Thomas Heijligenb221cd72019-04-05 15:08:35 +0200466 if (libusb_claim_interface(pickit2_handle, 0) != 0) {
467 msg_perr("Could not claim USB device interface\n");
468 libusb_close(pickit2_handle);
469 libusb_exit(NULL);
Justin Chevrier66e554b2015-02-08 21:58:10 +0000470 return 1;
471 }
472
Anastasia Klimchuk47e7d472021-04-30 14:10:04 +1000473 pickit2_data = calloc(1, sizeof(*pickit2_data));
474 if (!pickit2_data) {
475 msg_perr("Unable to allocate space for SPI master data\n");
476 libusb_close(pickit2_handle);
477 libusb_exit(NULL);
478 return 1;
479 }
480 pickit2_data->pickit2_handle = pickit2_handle;
Anastasia Klimchuk47e7d472021-04-30 14:10:04 +1000481
482 if (pickit2_get_firmware_version(pickit2_handle))
Anastasia Klimchuk1c9c73a2021-04-30 11:25:44 +1000483 goto init_err_cleanup_exit;
Justin Chevrier66e554b2015-02-08 21:58:10 +0000484
485 /* Command Set SPI Speed */
Anastasia Klimchuk47e7d472021-04-30 14:10:04 +1000486 if (pickit2_set_spi_speed(pickit2_handle, spispeed_idx))
Anastasia Klimchuk1c9c73a2021-04-30 11:25:44 +1000487 goto init_err_cleanup_exit;
Justin Chevrier66e554b2015-02-08 21:58:10 +0000488
489 /* Command Set SPI Voltage */
490 msg_pdbg("Setting voltage to %i mV.\n", millivolt);
Anastasia Klimchuk47e7d472021-04-30 14:10:04 +1000491 if (pickit2_set_spi_voltage(pickit2_handle, millivolt) != 0)
Anastasia Klimchuk1c9c73a2021-04-30 11:25:44 +1000492 goto init_err_cleanup_exit;
Justin Chevrier66e554b2015-02-08 21:58:10 +0000493
494 /* Perform basic setup.
495 * Configure pin directions and logic levels, turn Vdd on, turn busy LED on and clear buffers. */
Angel Pons75d6ec62022-07-16 12:12:50 +0200496 if (pickit2_interrupt_transfer(pickit2_handle, ENDPOINT_OUT, buf) != 0) {
Thomas Heijligenb221cd72019-04-05 15:08:35 +0200497 msg_perr("Command Setup failed!\n");
Anastasia Klimchuk1c9c73a2021-04-30 11:25:44 +1000498 goto init_err_cleanup_exit;
Justin Chevrier66e554b2015-02-08 21:58:10 +0000499 }
500
Anastasia Klimchukc63d9182021-07-06 16:18:44 +1000501 return register_spi_master(&spi_master_pickit2, pickit2_data);
Anastasia Klimchuk1c9c73a2021-04-30 11:25:44 +1000502
503init_err_cleanup_exit:
Anastasia Klimchuk47e7d472021-04-30 14:10:04 +1000504 pickit2_shutdown(pickit2_data);
Anastasia Klimchuk1c9c73a2021-04-30 11:25:44 +1000505 return 1;
Justin Chevrier66e554b2015-02-08 21:58:10 +0000506}
Thomas Heijligencc853d82021-05-04 15:32:17 +0200507
508const struct programmer_entry programmer_pickit2_spi = {
509 .name = "pickit2_spi",
510 .type = USB,
511 .devs.dev = devs_pickit2_spi,
512 .init = pickit2_spi_init,
Thomas Heijligencc853d82021-05-04 15:32:17 +0200513};