]> sigrok.org Git - libsigrok.git/blame - hardware/common/ezusb.c
ezusb: Use DRIVER_LOG_DOMAIN for debug output
[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>
45c59c8b
BV
30#include "libsigrok.h"
31#include "libsigrok-internal.h"
a1bb33af 32
d458a0ac
AG
33/* Message logging helpers with driver-specific prefix string. */
34#define DRIVER_LOG_DOMAIN "ezusb: "
35#define sr_log(l, s, args...) sr_log(l, DRIVER_LOG_DOMAIN s, ## args)
36#define sr_spew(s, args...) sr_spew(DRIVER_LOG_DOMAIN s, ## args)
37#define sr_dbg(s, args...) sr_dbg(DRIVER_LOG_DOMAIN s, ## args)
38#define sr_info(s, args...) sr_info(DRIVER_LOG_DOMAIN s, ## args)
39#define sr_warn(s, args...) sr_warn(DRIVER_LOG_DOMAIN s, ## args)
40#define sr_err(s, args...) sr_err(DRIVER_LOG_DOMAIN s, ## args)
41
1a081ca6 42SR_PRIV int ezusb_reset(struct libusb_device_handle *hdl, int set_clear)
a1bb33af 43{
ebc34738 44 int ret;
a1bb33af
UH
45 unsigned char buf[1];
46
d458a0ac 47 sr_info("setting CPU reset mode %s...",
7b48d6e1 48 set_clear ? "on" : "off");
a1bb33af 49 buf[0] = set_clear ? 1 : 0;
ebc34738 50 ret = libusb_control_transfer(hdl, LIBUSB_REQUEST_TYPE_VENDOR, 0xa0,
9d2933fb 51 0xe600, 0x0000, buf, 1, 100);
ebc34738 52 if (ret < 0)
d458a0ac 53 sr_err("Unable to send control request: %d", ret);
a1bb33af 54
ebc34738 55 return ret;
a1bb33af
UH
56}
57
1a081ca6
UH
58SR_PRIV int ezusb_install_firmware(libusb_device_handle *hdl,
59 const char *filename)
a1bb33af
UH
60{
61 FILE *fw;
ebc34738 62 int offset, chunksize, ret, result;
a1bb33af
UH
63 unsigned char buf[4096];
64
d458a0ac 65 sr_info("Uploading firmware at %s", filename);
868d8cef 66 if ((fw = g_fopen(filename, "rb")) == NULL) {
d458a0ac 67 sr_err("Unable to open firmware file %s for reading: %s",
133a37bf 68 filename, strerror(errno));
6d754b6d 69 return SR_ERR;
a1bb33af
UH
70 }
71
6d754b6d
BV
72 result = SR_OK;
73 offset = 0;
9d2933fb 74 while (1) {
a1bb33af 75 chunksize = fread(buf, 1, 4096, fw);
9d2933fb 76 if (chunksize == 0)
a1bb33af 77 break;
ebc34738 78 ret = libusb_control_transfer(hdl, LIBUSB_REQUEST_TYPE_VENDOR |
986f7270
UH
79 LIBUSB_ENDPOINT_OUT, 0xa0, offset,
80 0x0000, buf, chunksize, 100);
ebc34738 81 if (ret < 0) {
d458a0ac 82 sr_err("Unable to send firmware to device: %d",
ebc34738 83 ret);
6d754b6d 84 result = SR_ERR;
a1bb33af
UH
85 break;
86 }
d458a0ac 87 sr_info("Uploaded %d bytes", chunksize);
a1bb33af
UH
88 offset += chunksize;
89 }
90 fclose(fw);
d458a0ac 91 sr_info("Firmware upload done");
a1bb33af
UH
92
93 return result;
94}
edf60d05 95
1a081ca6
UH
96SR_PRIV int ezusb_upload_firmware(libusb_device *dev, int configuration,
97 const char *filename)
edf60d05
UH
98{
99 struct libusb_device_handle *hdl;
ebc34738 100 int ret;
edf60d05 101
d458a0ac 102 sr_info("uploading firmware to device on %d.%d",
7b48d6e1 103 libusb_get_bus_number(dev), libusb_get_device_address(dev));
edf60d05 104
ebc34738 105 if ((ret = libusb_open(dev, &hdl)) < 0) {
d458a0ac 106 sr_err("failed to open device: %d", ret);
6d754b6d 107 return SR_ERR;
edf60d05
UH
108 }
109
bf3f06c9
UH
110/* Neither Windows/MinGW nor Darwin/Mac support these libusb-1.0 calls. */
111#if !defined(_WIN32) && !defined(__APPLE__)
e10d6e32 112 if (libusb_kernel_driver_active(hdl, 0)) {
ebc34738 113 if ((ret = libusb_detach_kernel_driver(hdl, 0)) < 0) {
d458a0ac 114 sr_err("failed to detach kernel driver: %d", ret);
6d754b6d 115 return SR_ERR;
e10d6e32
BV
116 }
117 }
bf3f06c9 118#endif
e10d6e32 119
ebc34738 120 if ((ret = libusb_set_configuration(hdl, configuration)) < 0) {
d458a0ac 121 sr_err("Unable to set configuration: %d", ret);
6d754b6d 122 return SR_ERR;
edf60d05
UH
123 }
124
125 if ((ezusb_reset(hdl, 1)) < 0)
6d754b6d 126 return SR_ERR;
edf60d05 127
6d754b6d
BV
128 if (ezusb_install_firmware(hdl, filename) < 0)
129 return SR_ERR;
edf60d05
UH
130
131 if ((ezusb_reset(hdl, 0)) < 0)
6d754b6d 132 return SR_ERR;
edf60d05
UH
133
134 libusb_close(hdl);
135
6d754b6d 136 return SR_OK;
edf60d05 137}