]> sigrok.org Git - libsigrok.git/blame - hardware/common/ezusb.c
sr: adjust copyright year
[libsigrok.git] / hardware / common / ezusb.c
CommitLineData
a1bb33af
UH
1/*
2 * This file is part of the sigrok project.
3 *
c73d2ea4 4 * Copyright (C) 2010-2012 Bert Vermeulen <bert@biot.com>
a1bb33af
UH
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, either version 3 of the License, or
9 * (at your option) any later version.
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.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20/*
21 * Helper functions for the Cypress EZ-USB / FX2 series chips.
22 */
23
24#include <libusb.h>
25#include <glib.h>
3bbd9849 26#include <glib/gstdio.h>
a1bb33af
UH
27#include <stdio.h>
28#include <errno.h>
29#include <string.h>
b7f09cf8
UH
30#include "sigrok.h"
31#include "sigrok-internal.h"
a1bb33af 32
1a081ca6 33SR_PRIV int ezusb_reset(struct libusb_device_handle *hdl, int set_clear)
a1bb33af
UH
34{
35 int err;
36 unsigned char buf[1];
37
b08024a8 38 sr_info("setting CPU reset mode %s...", set_clear ? "on" : "off");
a1bb33af
UH
39 buf[0] = set_clear ? 1 : 0;
40 err = libusb_control_transfer(hdl, LIBUSB_REQUEST_TYPE_VENDOR, 0xa0,
9d2933fb
UH
41 0xe600, 0x0000, buf, 1, 100);
42 if (err < 0)
133a37bf 43 sr_err("Unable to send control request: %d", err);
a1bb33af
UH
44
45 return err;
46}
47
1a081ca6
UH
48SR_PRIV int ezusb_install_firmware(libusb_device_handle *hdl,
49 const char *filename)
a1bb33af
UH
50{
51 FILE *fw;
52 int offset, chunksize, err, result;
53 unsigned char buf[4096];
54
b08024a8 55 sr_info("Uploading firmware at %s", filename);
868d8cef 56 if ((fw = g_fopen(filename, "rb")) == NULL) {
133a37bf
UH
57 sr_err("Unable to open firmware file %s for reading: %s",
58 filename, strerror(errno));
6d754b6d 59 return SR_ERR;
a1bb33af
UH
60 }
61
6d754b6d
BV
62 result = SR_OK;
63 offset = 0;
9d2933fb 64 while (1) {
a1bb33af 65 chunksize = fread(buf, 1, 4096, fw);
9d2933fb 66 if (chunksize == 0)
a1bb33af 67 break;
9d2933fb 68 err = libusb_control_transfer(hdl, LIBUSB_REQUEST_TYPE_VENDOR |
986f7270
UH
69 LIBUSB_ENDPOINT_OUT, 0xa0, offset,
70 0x0000, buf, chunksize, 100);
9d2933fb 71 if (err < 0) {
133a37bf 72 sr_err("Unable to send firmware to device: %d", err);
6d754b6d 73 result = SR_ERR;
a1bb33af
UH
74 break;
75 }
b08024a8 76 sr_info("Uploaded %d bytes", chunksize);
a1bb33af
UH
77 offset += chunksize;
78 }
79 fclose(fw);
b08024a8 80 sr_info("Firmware upload done");
a1bb33af
UH
81
82 return result;
83}
edf60d05 84
1a081ca6
UH
85SR_PRIV int ezusb_upload_firmware(libusb_device *dev, int configuration,
86 const char *filename)
edf60d05
UH
87{
88 struct libusb_device_handle *hdl;
89 int err;
90
b08024a8 91 sr_info("uploading firmware to device on %d.%d",
edf60d05
UH
92 libusb_get_bus_number(dev), libusb_get_device_address(dev));
93
6d754b6d 94 if ((err = libusb_open(dev, &hdl)) < 0) {
133a37bf 95 sr_err("failed to open device: %d", err);
6d754b6d 96 return SR_ERR;
edf60d05
UH
97 }
98
bf3f06c9
UH
99/* Neither Windows/MinGW nor Darwin/Mac support these libusb-1.0 calls. */
100#if !defined(_WIN32) && !defined(__APPLE__)
e10d6e32 101 if (libusb_kernel_driver_active(hdl, 0)) {
6d754b6d 102 if ((err = libusb_detach_kernel_driver(hdl, 0)) < 0) {
133a37bf 103 sr_err("failed to detach kernel driver: %d", err);
6d754b6d 104 return SR_ERR;
e10d6e32
BV
105 }
106 }
bf3f06c9 107#endif
e10d6e32 108
6d754b6d 109 if ((err = libusb_set_configuration(hdl, configuration)) < 0) {
133a37bf 110 sr_err("Unable to set configuration: %d", err);
6d754b6d 111 return SR_ERR;
edf60d05
UH
112 }
113
114 if ((ezusb_reset(hdl, 1)) < 0)
6d754b6d 115 return SR_ERR;
edf60d05 116
6d754b6d
BV
117 if (ezusb_install_firmware(hdl, filename) < 0)
118 return SR_ERR;
edf60d05
UH
119
120 if ((ezusb_reset(hdl, 0)) < 0)
6d754b6d 121 return SR_ERR;
edf60d05
UH
122
123 libusb_close(hdl);
124
6d754b6d 125 return SR_OK;
edf60d05 126}