root/sys/dev/usb/ugensa.c
/*      $NetBSD: ugensa.c,v 1.45 2021/08/07 16:19:17 thorpej Exp $      */

/*
 * Copyright (c) 2004, 2005 The NetBSD Foundation, Inc.
 * All rights reserved.
 *
 * This code is derived from software contributed to The NetBSD Foundation
 * by Roland C. Dowdeswell <elric@netbsd.org>.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. 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 NETBSD FOUNDATION, INC. 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 FOUNDATION 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 <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ugensa.c,v 1.45 2021/08/07 16:19:17 thorpej Exp $");

#ifdef _KERNEL_OPT
#include "opt_usb.h"
#endif

#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/device.h>
#include <sys/conf.h>
#include <sys/tty.h>

#include <dev/usb/usb.h>

#include <dev/usb/usbdi.h>
#include <dev/usb/usbdi_util.h>
#include <dev/usb/usbdevs.h>

#include <dev/usb/ucomvar.h>

#ifdef UGENSA_DEBUG
#define DPRINTF(x)      if (ugensadebug) printf x
#define DPRINTFN(n,x)   if (ugensadebug>(n)) printf x
int ugensadebug = 0;
#else
#define DPRINTF(x)
#define DPRINTFN(n,x)
#endif

struct ugensa_softc {
        device_t                sc_dev;         /* base device */

        enum {
                UGENSA_INIT_NONE,
                UGENSA_INIT_INITED
        } sc_init_state;

        struct usbd_device *    sc_udev;        /* device */
        struct usbd_interface * sc_iface;       /* interface */

        device_t                sc_subdev;
        int                     sc_numcon;

        bool                    sc_dying;
};

struct ucom_methods ugensa_methods = { 0 };

#define UGENSA_CONFIG_INDEX     0
#define UGENSA_IFACE_INDEX      0
#define UGENSA_BUFSIZE          1024

struct ugensa_type {
        struct usb_devno        ugensa_dev;
        uint16_t                ugensa_flags;
#define UNTESTED                0x0001
};

static const struct ugensa_type ugensa_devs[] = {
        {{ USB_VENDOR_AIRPRIME, USB_PRODUCT_AIRPRIME_PC5220 }, 0 },
        {{ USB_VENDOR_DELL, USB_PRODUCT_DELL_HSDPA }, 0 },
        {{ USB_VENDOR_NOVATEL, USB_PRODUCT_NOVATEL_FLEXPACKGPS }, 0 },
        {{ USB_VENDOR_QUALCOMM_K, USB_PRODUCT_QUALCOMM_K_CDMA_MSM_K }, 0 },
        {{ USB_VENDOR_ZTE, USB_PRODUCT_ZTE_AC8700 }, 0 },
        {{ USB_VENDOR_LINUXFOUNDATION, USB_PRODUCT_LINUXFOUNDATION_USB3DEBUG}, 0 },

        /*
         * The following devices are untested, but they are purported to
         * to work in similar device drivers on other OSes:
         */

        {{ USB_VENDOR_ANYDATA, USB_PRODUCT_ANYDATA_ADU_500A }, UNTESTED },
        {{ USB_VENDOR_NOVATEL2, USB_PRODUCT_NOVATEL2_EXPRESSCARD }, UNTESTED },
        {{ USB_VENDOR_LG, USB_PRODUCT_LG_MSM_HSDPA }, UNTESTED },
        {{ USB_VENDOR_SIERRA, USB_PRODUCT_SIERRA_AIRCARD875 }, UNTESTED },
        {{ USB_VENDOR_SIERRA, USB_PRODUCT_SIERRA_EM5625 }, UNTESTED },
};
#define ugensa_lookup(v, p) \
        ((const struct ugensa_type *)usb_lookup(ugensa_devs, v, p))

static int      ugensa_match(device_t, cfdata_t, void *);
static void     ugensa_attach(device_t, device_t, void *);
static void     ugensa_childdet(device_t, device_t);
static int      ugensa_detach(device_t, int);

CFATTACH_DECL2_NEW(ugensa, sizeof(struct ugensa_softc), ugensa_match,
    ugensa_attach, ugensa_detach, NULL, NULL, ugensa_childdet);

static int
ugensa_match(device_t parent, cfdata_t match, void *aux)
{
        struct usb_attach_arg *uaa = aux;

        DPRINTFN(20,("ugensa: vendor=%#x, product=%#x\n",
                     uaa->uaa_vendor, uaa->uaa_product));

        return ugensa_lookup(uaa->uaa_vendor, uaa->uaa_product) != NULL ?
                UMATCH_VENDOR_PRODUCT : UMATCH_NONE;
}

static void
ugensa_attach(device_t parent, device_t self, void *aux)
{
        struct ugensa_softc *sc = device_private(self);
        struct usb_attach_arg *uaa = aux;
        struct usbd_device *dev = uaa->uaa_device;
        struct usbd_interface *iface;
        usb_interface_descriptor_t *id;
        usb_endpoint_descriptor_t *ed;
        char *devinfop;
        const char *devname = device_xname(self);
        usbd_status err;
        struct ucom_attach_args ucaa;
        int i;

        DPRINTFN(10,("\nugensa_attach: sc=%p\n", sc));

        sc->sc_dev = self;
        sc->sc_dying = false;
        sc->sc_init_state = UGENSA_INIT_NONE;

        aprint_naive("\n");
        aprint_normal("\n");

        devinfop = usbd_devinfo_alloc(dev, 0);
        aprint_normal_dev(self, "%s\n", devinfop);
        usbd_devinfo_free(devinfop);

        /* Move the device into the configured state. */
        err = usbd_set_config_index(dev, UGENSA_CONFIG_INDEX, 1);
        if (err) {
                aprint_error("\n%s: failed to set configuration, err=%s\n",
                       devname, usbd_errstr(err));
                goto bad;
        }

        err = usbd_device2interface_handle(dev, UGENSA_IFACE_INDEX, &iface);
        if (err) {
                aprint_error("\n%s: failed to get interface, err=%s\n",
                       devname, usbd_errstr(err));
                goto bad;
        }

        if (ugensa_lookup(uaa->uaa_vendor, uaa->uaa_product)->ugensa_flags & UNTESTED)
                aprint_normal_dev(self, "WARNING: This device is marked as "
                    "untested. Please submit a report via send-pr(1).\n");

        id = usbd_get_interface_descriptor(iface);

        sc->sc_udev = dev;
        sc->sc_iface = iface;

        ucaa.ucaa_info = "Generic Serial Device";
        ucaa.ucaa_ibufsize = UGENSA_BUFSIZE;
        ucaa.ucaa_obufsize = UGENSA_BUFSIZE;
        ucaa.ucaa_ibufsizepad = UGENSA_BUFSIZE;
        ucaa.ucaa_portno = UCOM_UNK_PORTNO;
        ucaa.ucaa_opkthdrlen = 0;
        ucaa.ucaa_device = dev;
        ucaa.ucaa_iface = iface;
        ucaa.ucaa_methods = &ugensa_methods;
        ucaa.ucaa_arg = sc;

        ucaa.ucaa_bulkin = ucaa.ucaa_bulkout = -1;
        for (i = 0; i < id->bNumEndpoints; i++) {
                int addr, dir, attr;

                ed = usbd_interface2endpoint_descriptor(iface, i);
                if (ed == NULL) {
                        aprint_error_dev(self,
                            "could not read endpoint descriptor: %s\n",
                            usbd_errstr(err));
                        goto bad;
                }

                addr = ed->bEndpointAddress;
                dir = UE_GET_DIR(ed->bEndpointAddress);
                attr = ed->bmAttributes & UE_XFERTYPE;
                if (attr == UE_BULK) {
                        if (ucaa.ucaa_bulkin == -1 && dir == UE_DIR_IN) {
                                DPRINTF(("%s: Bulk in %d\n", devname, i));
                                ucaa.ucaa_bulkin = addr;
                                continue;
                        }
                        if (ucaa.ucaa_bulkout == -1 && dir == UE_DIR_OUT) {
                                DPRINTF(("%s: Bulk out %d\n", devname, i));
                                ucaa.ucaa_bulkout = addr;
                                continue;
                        }
                }
                aprint_error_dev(self, "unexpected endpoint\n");
        }
        if (ucaa.ucaa_bulkin == -1) {
                aprint_error_dev(self, "Could not find data bulk in\n");
                goto bad;
        }
        if (ucaa.ucaa_bulkout == -1) {
                aprint_error_dev(self, "Could not find data bulk out\n");
                goto bad;
        }

        sc->sc_init_state = UGENSA_INIT_INITED;
        usbd_add_drv_event(USB_EVENT_DRIVER_ATTACH, sc->sc_udev, sc->sc_dev);

        DPRINTF(("ugensa: in=%#x out=%#x\n", ucaa.ucaa_bulkin,
            ucaa.ucaa_bulkout));
        sc->sc_subdev = config_found(self, &ucaa, ucomprint,
            CFARGS(.submatch = ucomsubmatch));

        if (!pmf_device_register(self, NULL, NULL))
                aprint_error_dev(self, "couldn't establish power handler\n");
        return;

bad:
        DPRINTF(("ugensa_attach: ATTACH ERROR\n"));
        sc->sc_dying = true;
        return;
}

static void
ugensa_childdet(device_t self, device_t child)
{
        struct ugensa_softc *sc = device_private(self);

        KASSERT(sc->sc_subdev == child);
        sc->sc_subdev = NULL;
}

static int
ugensa_detach(device_t self, int flags)
{
        struct ugensa_softc *sc = device_private(self);
        int rv = 0;

        DPRINTF(("ugensa_detach: sc=%p flags=%d\n", sc, flags));

        sc->sc_dying = true;

        if (sc->sc_init_state < UGENSA_INIT_INITED)
                return 0;

        if (sc->sc_subdev != NULL) {
                rv = config_detach(sc->sc_subdev, flags);
                sc->sc_subdev = NULL;
        }

        usbd_add_drv_event(USB_EVENT_DRIVER_DETACH, sc->sc_udev, sc->sc_dev);

        pmf_device_deregister(self);

        return rv;
}