]> sigrok.org Git - libsigrok.git/blobdiff - hardware/zeroplus-logic-cube/gl_usb.c
GPL headers: Use correct project name.
[libsigrok.git] / hardware / zeroplus-logic-cube / gl_usb.c
index 1eb1ac326369bcda566a37862fb797f74a490d55..0bffd43a08e9f6af542894a8a78221e3228bac98 100644 (file)
@@ -1,48 +1,48 @@
 /*
- Copyright (c) 2010 Sven Peter <sven@fail0verflow.com>
- Copyright (c) 2010 Haxx Enterprises <bushing@gmail.com>
- All rights reserved.
-
- Redistribution and use in source and binary forms, with or
- without modification, are permitted provided that the following
- conditions are met:
-
- * Redistributions of source code must retain the above copyright notice,
-   this list of conditions and the following disclaimer.
-
- * Redistributions in binary form must reproduce the above copyright notice,
-   this list of conditions and the following disclaimer in the documentation
-   and/or other materials provided with the distribution.
-
-  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-  ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
-  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
-  THE POSSIBILITY OF SUCH DAMAGE.
-
-*/
-#include <libusb.h>
+ * This file is part of the libsigrok project.
+ *
+ * Copyright (C) 2010 Sven Peter <sven@fail0verflow.com>
+ * Copyright (C) 2010 Haxx Enterprises <bushing@gmail.com>
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or
+ * without modification, are permitted provided that the following
+ * conditions are met:
+ *
+ * * Redistributions of source code must retain the above copyright notice,
+ *   this list of conditions and the following disclaimer.
+ *
+ * * Redistributions in binary form must reproduce the above copyright notice,
+ *   this list of conditions and the following disclaimer in the documentation
+ *   and/or other materials provided with the distribution.
+ *
+ *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+ *  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ *  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ *  ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
+ *  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ *  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ *  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ *  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ *  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ *  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+ *  THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
 #include <stdio.h>
+#include <libusb.h>
+#include "libsigrok.h"
+#include "libsigrok-internal.h"
 #include "gl_usb.h"
+#include "protocol.h"
 
-#define CTRL_IN                        (LIBUSB_REQUEST_TYPE_VENDOR | LIBUSB_ENDPOINT_IN | LIBUSB_RECIPIENT_INTERFACE)
-#define CTRL_OUT               (LIBUSB_REQUEST_TYPE_VENDOR | LIBUSB_ENDPOINT_OUT | LIBUSB_RECIPIENT_INTERFACE)
-const int PACKET_CTRL_LEN=2;
+#define CTRL_IN                (LIBUSB_REQUEST_TYPE_VENDOR | LIBUSB_ENDPOINT_IN | \
+                        LIBUSB_RECIPIENT_INTERFACE)
+#define CTRL_OUT       (LIBUSB_REQUEST_TYPE_VENDOR | LIBUSB_ENDPOINT_OUT | \
+                        LIBUSB_RECIPIENT_INTERFACE)
+#define EP1_BULK_IN    (LIBUSB_ENDPOINT_IN | 1)
 
-const int PACKET_INT_LEN=2;
-const int PACKET_BULK_LEN=64;
-const int INTERFACE=0;
-const int ENDPOINT_INT_IN=0x81; /* endpoint 0x81 address for IN */
-const int ENDPOINT_INT_OUT=0x01; /* endpoint 1 address for OUT */
-const int ENDPOINT_BULK_IN=0x81; /* endpoint 0x81 address for IN */
-const int ENDPOINT_BULK_OUT=0x02; /* endpoint 1 address for OUT */
-const int TIMEOUT=5000; /* timeout in ms */
+#define TIMEOUT                5000    /* Timeout in ms */
 
 enum {
        REQ_READBULK = 0x82,
@@ -51,133 +51,84 @@ enum {
        REQ_WRITEDATA,
 };
 
-static struct libusb_device_handle *g_devh = NULL;
-
-int gl_write_address(libusb_device_handle *devh, unsigned int address)
+static int gl_write_address(libusb_device_handle *devh, unsigned int address)
 {
-       unsigned char packet[8] = {address & 0xFF};
-       int retval = libusb_control_transfer(devh, CTRL_OUT, 0xc, REQ_WRITEADDR, 0, packet, 1,TIMEOUT);
-       if (retval != 1) printf("%s: libusb_control_transfer returned %d\n", __FUNCTION__, retval);
-       return retval;
+       unsigned char packet[8] = { address & 0xFF };
+       int ret;
+
+       ret = libusb_control_transfer(devh, CTRL_OUT, 0xc, REQ_WRITEADDR,
+                                        0, packet, 1, TIMEOUT);
+       if (ret != 1)
+               sr_err("%s: %s.", __func__, libusb_error_name(ret));
+       return ret;
 }
 
-int gl_write_data(libusb_device_handle *devh, unsigned int val)
+static int gl_write_data(libusb_device_handle *devh, unsigned int val)
 {
-       unsigned char packet[8] = {val & 0xFF};
-       int retval = libusb_control_transfer(devh, CTRL_OUT, 0xc, REQ_WRITEDATA, 0, packet, 1,TIMEOUT);
-       if (retval != 1) printf("%s: libusb_control_transfer returned %d\n", __FUNCTION__, retval);
-       return retval;
+       unsigned char packet[8] = { val & 0xFF };
+       int ret;
+
+       ret = libusb_control_transfer(devh, CTRL_OUT, 0xc, REQ_WRITEDATA,
+                                     0, packet, 1, TIMEOUT);
+       if (ret != 1)
+               sr_err("%s: %s.", __func__, libusb_error_name(ret));
+       return ret;
 }
 
-int gl_read_data(libusb_device_handle *devh)
+static int gl_read_data(libusb_device_handle *devh)
 {
-       unsigned char packet[8] = {0};
-       int retval = libusb_control_transfer(devh, CTRL_IN, 0xc, REQ_READDATA, 0, packet, 1,TIMEOUT);
-       if (retval != 1) printf("%s: libusb_control_transfer returned %d, val=%hhx\n", __FUNCTION__, retval, packet[0]);
-       return retval == 1 ? packet[0] : retval;
+       unsigned char packet[8] = { 0 };
+       int ret;
+
+       ret = libusb_control_transfer(devh, CTRL_IN, 0xc, REQ_READDATA,
+                                     0, packet, 1, TIMEOUT);
+       if (ret != 1)
+               sr_err("%s: %s, val=%hhx.", __func__,
+                      libusb_error_name(ret), packet[0]);
+       return (ret == 1) ? packet[0] : ret;
 }
 
-int gl_read_bulk(libusb_device_handle *devh, void *buffer, unsigned int size)
+SR_PRIV int gl_read_bulk(libusb_device_handle *devh, void *buffer,
+                        unsigned int size)
 {
-       unsigned char packet[8] = {0, 0, 0, 0, size & 0xff, (size & 0xff00) >> 8, (size & 0xff0000) >> 16, (size & 0xff000000)>>24};
-       int transferred = 0;
-
-       int retval = libusb_control_transfer(devh, CTRL_OUT, 0x4, REQ_READBULK, 0, packet, 8, TIMEOUT);
-       if (retval != 8) printf("%s: libusb_control_transfer returned %d\n", __FUNCTION__, retval);
-
-       retval = libusb_bulk_transfer(devh, ENDPOINT_BULK_IN, buffer, size,
-                                                                 &transferred, TIMEOUT);
-       if (retval < 0) {
-               fprintf(stderr, "Bulk read error %d\n", retval);
-       }
+       unsigned char packet[8] =
+           { 0, 0, 0, 0, size & 0xff, (size & 0xff00) >> 8,
+             (size & 0xff0000) >> 16, (size & 0xff000000) >> 24 };
+       int ret, transferred = 0;
+
+       ret = libusb_control_transfer(devh, CTRL_OUT, 0x4, REQ_READBULK,
+                                     0, packet, 8, TIMEOUT);
+       if (ret != 8)
+               sr_err("%s: libusb_control_transfer: %s.", __func__,
+                      libusb_error_name(ret));
+
+       ret = libusb_bulk_transfer(devh, EP1_BULK_IN, buffer, size,
+                                  &transferred, TIMEOUT);
+       if (ret < 0)
+               sr_err("%s: libusb_bulk_transfer: %s.", __func__,
+                      libusb_error_name(ret));
        return transferred;
 }
 
-int gl_reg_write(libusb_device_handle *devh, unsigned int reg, unsigned int val)
+SR_PRIV int gl_reg_write(libusb_device_handle *devh, unsigned int reg,
+                unsigned int val)
 {
-       int retval;
-       retval = gl_write_address(devh, reg);
-       if (retval < 0)
-               return retval;
-       retval = gl_write_data(devh, val);
-       return retval;
-}
+       int ret;
 
-int gl_reg_read(libusb_device_handle *devh, unsigned int reg)
-{
-       int retval;
-       retval = gl_write_address(devh, reg);
-       if (retval < 0)
-               return retval;
-       retval = gl_read_data(devh);
-       return retval;
+       ret = gl_write_address(devh, reg);
+       if (ret < 0)
+               return ret;
+       ret = gl_write_data(devh, val);
+       return ret;
 }
 
-int gl_open(int vid)
+SR_PRIV int gl_reg_read(libusb_device_handle *devh, unsigned int reg)
 {
-       int r = 1;
-
-       r = libusb_init(NULL);
-       if (r < 0)
-               return GL_ELIBUSB;
-
-       libusb_set_debug(NULL, 0);
-
-       struct libusb_device **devs;
-       struct libusb_device *dev;
-       size_t i = 0;
-
-       if (libusb_get_device_list(NULL, &devs) < 0) {
-               r = GL_EOPEN;
-               goto gl_open_error;
-       }
-
-       while ((dev = devs[i++]) != NULL) {
-               struct libusb_device_descriptor desc;
-               if (libusb_get_device_descriptor(dev, &desc) < 0)
-                       break;
-
-               if (desc.idVendor == vid) {
-                       if (libusb_open(dev, &g_devh) < 0)
-                               g_devh = NULL;
-                       break;
-               }
-       }
-
-       libusb_free_device_list(devs, 1);
-
-       if (!g_devh) {
-               r = GL_EOPEN;
-               goto gl_open_error;
-       }
-
-       r = libusb_set_configuration(g_devh, 1);
-       if (r < 0) {
-               r = GL_ESETCONFIG;
-               goto gl_open_error;
-       }
-
-       r = libusb_claim_interface(g_devh, 0);
-       if (r < 0) {
-               r = GL_ECLAIM;
-               goto gl_open_error;
-       }
-
-       return GL_OK;
-
-gl_open_error:
-       gl_close();
-       return r;
-}
+       int ret;
 
-int gl_close(void)
-{
-       if (g_devh) {
-               libusb_release_interface(g_devh, 0);
-               libusb_reset_device(g_devh);
-               libusb_close(g_devh);
-       }
-       libusb_exit(NULL);
-
-       return 0;
+       ret = gl_write_address(devh, reg);
+       if (ret < 0)
+               return ret;
+       ret = gl_read_data(devh);
+       return ret;
 }