2010-04-02 18:18:27 +00:00
|
|
|
/*
|
|
|
|
* This file is part of the sigrok project.
|
|
|
|
*
|
2012-02-13 13:31:51 +00:00
|
|
|
* Copyright (C) 2010-2012 Bert Vermeulen <bert@biot.com>
|
2010-04-02 18:18:27 +00:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Helper functions for the Cypress EZ-USB / FX2 series chips.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <libusb.h>
|
|
|
|
#include <glib.h>
|
2011-02-06 01:14:57 +00:00
|
|
|
#include <glib/gstdio.h>
|
2010-04-02 18:18:27 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <string.h>
|
2012-07-04 22:55:07 +00:00
|
|
|
#include "libsigrok.h"
|
|
|
|
#include "libsigrok-internal.h"
|
2010-04-02 18:18:27 +00:00
|
|
|
|
2012-12-04 19:31:49 +00:00
|
|
|
/* Message logging helpers with driver-specific prefix string. */
|
|
|
|
#define DRIVER_LOG_DOMAIN "ezusb: "
|
|
|
|
#define sr_log(l, s, args...) sr_log(l, DRIVER_LOG_DOMAIN s, ## args)
|
|
|
|
#define sr_spew(s, args...) sr_spew(DRIVER_LOG_DOMAIN s, ## args)
|
|
|
|
#define sr_dbg(s, args...) sr_dbg(DRIVER_LOG_DOMAIN s, ## args)
|
|
|
|
#define sr_info(s, args...) sr_info(DRIVER_LOG_DOMAIN s, ## args)
|
|
|
|
#define sr_warn(s, args...) sr_warn(DRIVER_LOG_DOMAIN s, ## args)
|
|
|
|
#define sr_err(s, args...) sr_err(DRIVER_LOG_DOMAIN s, ## args)
|
|
|
|
|
2012-02-01 22:40:35 +00:00
|
|
|
SR_PRIV int ezusb_reset(struct libusb_device_handle *hdl, int set_clear)
|
2010-04-02 18:18:27 +00:00
|
|
|
{
|
2012-03-20 16:51:18 +00:00
|
|
|
int ret;
|
2010-04-02 18:18:27 +00:00
|
|
|
unsigned char buf[1];
|
|
|
|
|
2012-12-04 19:31:49 +00:00
|
|
|
sr_info("setting CPU reset mode %s...",
|
2012-02-17 18:40:01 +00:00
|
|
|
set_clear ? "on" : "off");
|
2010-04-02 18:18:27 +00:00
|
|
|
buf[0] = set_clear ? 1 : 0;
|
2012-03-20 16:51:18 +00:00
|
|
|
ret = libusb_control_transfer(hdl, LIBUSB_REQUEST_TYPE_VENDOR, 0xa0,
|
2010-04-09 18:36:29 +00:00
|
|
|
0xe600, 0x0000, buf, 1, 100);
|
2012-03-20 16:51:18 +00:00
|
|
|
if (ret < 0)
|
2012-12-05 00:23:49 +00:00
|
|
|
sr_err("Unable to send control request: %s.",
|
2012-12-04 20:11:25 +00:00
|
|
|
libusb_error_name(ret));
|
2010-04-02 18:18:27 +00:00
|
|
|
|
2012-03-20 16:51:18 +00:00
|
|
|
return ret;
|
2010-04-02 18:18:27 +00:00
|
|
|
}
|
|
|
|
|
2012-02-01 22:40:35 +00:00
|
|
|
SR_PRIV int ezusb_install_firmware(libusb_device_handle *hdl,
|
|
|
|
const char *filename)
|
2010-04-02 18:18:27 +00:00
|
|
|
{
|
|
|
|
FILE *fw;
|
2012-03-20 16:51:18 +00:00
|
|
|
int offset, chunksize, ret, result;
|
2010-04-02 18:18:27 +00:00
|
|
|
unsigned char buf[4096];
|
|
|
|
|
2012-12-04 19:31:49 +00:00
|
|
|
sr_info("Uploading firmware at %s", filename);
|
2011-02-05 19:03:17 +00:00
|
|
|
if ((fw = g_fopen(filename, "rb")) == NULL) {
|
2012-12-04 19:31:49 +00:00
|
|
|
sr_err("Unable to open firmware file %s for reading: %s",
|
2012-02-11 19:06:46 +00:00
|
|
|
filename, strerror(errno));
|
2011-06-12 16:04:19 +00:00
|
|
|
return SR_ERR;
|
2010-04-02 18:18:27 +00:00
|
|
|
}
|
|
|
|
|
2011-06-12 16:04:19 +00:00
|
|
|
result = SR_OK;
|
|
|
|
offset = 0;
|
2010-04-09 18:36:29 +00:00
|
|
|
while (1) {
|
2010-04-02 18:18:27 +00:00
|
|
|
chunksize = fread(buf, 1, 4096, fw);
|
2010-04-09 18:36:29 +00:00
|
|
|
if (chunksize == 0)
|
2010-04-02 18:18:27 +00:00
|
|
|
break;
|
2012-03-20 16:51:18 +00:00
|
|
|
ret = libusb_control_transfer(hdl, LIBUSB_REQUEST_TYPE_VENDOR |
|
2010-04-15 18:55:57 +00:00
|
|
|
LIBUSB_ENDPOINT_OUT, 0xa0, offset,
|
|
|
|
0x0000, buf, chunksize, 100);
|
2012-03-20 16:51:18 +00:00
|
|
|
if (ret < 0) {
|
2012-12-05 00:23:49 +00:00
|
|
|
sr_err("Unable to send firmware to device: %s.",
|
2012-12-04 20:11:25 +00:00
|
|
|
libusb_error_name(ret));
|
2011-06-12 16:04:19 +00:00
|
|
|
result = SR_ERR;
|
2010-04-02 18:18:27 +00:00
|
|
|
break;
|
|
|
|
}
|
2012-12-04 19:31:49 +00:00
|
|
|
sr_info("Uploaded %d bytes", chunksize);
|
2010-04-02 18:18:27 +00:00
|
|
|
offset += chunksize;
|
|
|
|
}
|
|
|
|
fclose(fw);
|
2012-12-04 19:31:49 +00:00
|
|
|
sr_info("Firmware upload done");
|
2010-04-02 18:18:27 +00:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
2010-04-09 18:44:51 +00:00
|
|
|
|
2012-02-01 22:40:35 +00:00
|
|
|
SR_PRIV int ezusb_upload_firmware(libusb_device *dev, int configuration,
|
|
|
|
const char *filename)
|
2010-04-09 18:44:51 +00:00
|
|
|
{
|
|
|
|
struct libusb_device_handle *hdl;
|
2012-03-20 16:51:18 +00:00
|
|
|
int ret;
|
2010-04-09 18:44:51 +00:00
|
|
|
|
2012-12-04 19:31:49 +00:00
|
|
|
sr_info("uploading firmware to device on %d.%d",
|
2012-02-17 18:40:01 +00:00
|
|
|
libusb_get_bus_number(dev), libusb_get_device_address(dev));
|
2010-04-09 18:44:51 +00:00
|
|
|
|
2012-03-20 16:51:18 +00:00
|
|
|
if ((ret = libusb_open(dev, &hdl)) < 0) {
|
2012-12-05 00:23:49 +00:00
|
|
|
sr_err("failed to open device: %s.", libusb_error_name(ret));
|
2011-06-12 16:04:19 +00:00
|
|
|
return SR_ERR;
|
2010-04-09 18:44:51 +00:00
|
|
|
}
|
|
|
|
|
2013-04-07 12:14:16 +00:00
|
|
|
/*
|
|
|
|
* The libusbx darwin backend is broken: it can report a kernel driver being
|
|
|
|
* active, but detaching it always returns an error.
|
|
|
|
*/
|
|
|
|
#if !defined(__APPLE__)
|
|
|
|
if (libusb_kernel_driver_active(hdl, 0) == 1) {
|
2012-03-20 16:51:18 +00:00
|
|
|
if ((ret = libusb_detach_kernel_driver(hdl, 0)) < 0) {
|
2012-12-04 20:11:25 +00:00
|
|
|
sr_err("failed to detach kernel driver: %s",
|
|
|
|
libusb_error_name(ret));
|
2011-06-12 16:04:19 +00:00
|
|
|
return SR_ERR;
|
2011-06-04 21:20:00 +00:00
|
|
|
}
|
|
|
|
}
|
2012-02-10 23:20:23 +00:00
|
|
|
#endif
|
2011-06-04 21:20:00 +00:00
|
|
|
|
2012-03-20 16:51:18 +00:00
|
|
|
if ((ret = libusb_set_configuration(hdl, configuration)) < 0) {
|
2012-12-04 20:11:25 +00:00
|
|
|
sr_err("Unable to set configuration: %s",
|
|
|
|
libusb_error_name(ret));
|
2011-06-12 16:04:19 +00:00
|
|
|
return SR_ERR;
|
2010-04-09 18:44:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if ((ezusb_reset(hdl, 1)) < 0)
|
2011-06-12 16:04:19 +00:00
|
|
|
return SR_ERR;
|
2010-04-09 18:44:51 +00:00
|
|
|
|
2011-06-12 16:04:19 +00:00
|
|
|
if (ezusb_install_firmware(hdl, filename) < 0)
|
|
|
|
return SR_ERR;
|
2010-04-09 18:44:51 +00:00
|
|
|
|
|
|
|
if ((ezusb_reset(hdl, 0)) < 0)
|
2011-06-12 16:04:19 +00:00
|
|
|
return SR_ERR;
|
2010-04-09 18:44:51 +00:00
|
|
|
|
|
|
|
libusb_close(hdl);
|
|
|
|
|
2011-06-12 16:04:19 +00:00
|
|
|
return SR_OK;
|
2010-04-09 18:44:51 +00:00
|
|
|
}
|