1999-11-28 21:01:06 +00:00
|
|
|
/* $NetBSD: uhub.c,v 1.34 1999/11/18 23:32:29 augustss Exp $ */
|
1999-01-14 01:28:15 +00:00
|
|
|
/* $FreeBSD$ */
|
1998-11-26 23:13:13 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
1999-01-07 23:07:57 +00:00
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
|
|
|
* by Lennart Augustsson (augustss@carlstedt.se) at
|
|
|
|
* Carlstedt Research & Technology.
|
1998-11-26 23:13:13 +00:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the NetBSD
|
|
|
|
* Foundation, Inc. and its contributors.
|
|
|
|
* 4. Neither the name of The NetBSD Foundation nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
1999-04-11 14:24:43 +00:00
|
|
|
/*
|
|
|
|
* USB spec: http://www.usb.org/cgi-usb/mailmerge.cgi/home/usb/docs/developers/cgiform.tpl
|
|
|
|
*/
|
|
|
|
|
1998-11-26 23:13:13 +00:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/malloc.h>
|
1999-10-07 19:26:38 +00:00
|
|
|
#if defined(__NetBSD__) || defined(__OpenBSD__)
|
1998-11-26 23:13:13 +00:00
|
|
|
#include <sys/device.h>
|
1999-11-08 21:12:25 +00:00
|
|
|
#include <sys/proc.h>
|
1998-11-26 23:13:13 +00:00
|
|
|
#elif defined(__FreeBSD__)
|
|
|
|
#include <sys/module.h>
|
|
|
|
#include <sys/bus.h>
|
1999-11-17 22:33:51 +00:00
|
|
|
#include "bus_if.h"
|
1998-11-26 23:13:13 +00:00
|
|
|
#endif
|
|
|
|
|
1999-11-17 22:33:51 +00:00
|
|
|
#include <machine/bus.h>
|
1998-11-26 23:13:13 +00:00
|
|
|
|
1999-10-07 19:26:38 +00:00
|
|
|
#include <dev/usb/usb.h>
|
1998-11-26 23:13:13 +00:00
|
|
|
#include <dev/usb/usbdi.h>
|
|
|
|
#include <dev/usb/usbdi_util.h>
|
|
|
|
#include <dev/usb/usbdivar.h>
|
|
|
|
|
1999-05-03 23:14:46 +00:00
|
|
|
#ifdef UHUB_DEBUG
|
1999-11-28 21:01:06 +00:00
|
|
|
#define DPRINTF(x) if (uhubdebug) logprintf x
|
|
|
|
#define DPRINTFN(n,x) if (uhubdebug>(n)) logprintf x
|
|
|
|
int uhubdebug;
|
1998-11-26 23:13:13 +00:00
|
|
|
#else
|
|
|
|
#define DPRINTF(x)
|
|
|
|
#define DPRINTFN(n,x)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
struct uhub_softc {
|
1999-10-07 19:26:38 +00:00
|
|
|
USBBASEDEVICE sc_dev; /* base device */
|
1998-11-26 23:13:13 +00:00
|
|
|
usbd_device_handle sc_hub; /* USB device */
|
|
|
|
usbd_pipe_handle sc_ipipe; /* interrupt pipe */
|
|
|
|
u_int8_t sc_status[1]; /* XXX more ports */
|
|
|
|
u_char sc_running;
|
|
|
|
};
|
|
|
|
|
1999-11-17 22:33:51 +00:00
|
|
|
static usbd_status uhub_init_port __P((struct usbd_port *));
|
|
|
|
static usbd_status uhub_explore __P((usbd_device_handle hub));
|
1999-11-28 21:01:06 +00:00
|
|
|
static void uhub_intr __P((usbd_xfer_handle, usbd_private_handle,usbd_status));
|
1998-11-26 23:13:13 +00:00
|
|
|
|
1999-10-07 19:26:38 +00:00
|
|
|
#if defined(__FreeBSD__)
|
|
|
|
static bus_child_detached_t uhub_child_detached;
|
|
|
|
#endif
|
1998-11-26 23:13:13 +00:00
|
|
|
|
1999-11-17 22:33:51 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* We need two attachment points:
|
1999-10-07 19:26:38 +00:00
|
|
|
* hub to usb and hub to hub
|
|
|
|
* Every other driver only connects to hubs
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if defined(__NetBSD__) || defined(__OpenBSD__)
|
1999-11-28 21:01:06 +00:00
|
|
|
USB_DECLARE_DRIVER(uhub);
|
1999-11-08 21:12:25 +00:00
|
|
|
|
1999-10-07 19:26:38 +00:00
|
|
|
/* Create the driver instance for the hub connected to hub case */
|
|
|
|
struct cfattach uhub_uhub_ca = {
|
|
|
|
sizeof(struct uhub_softc), uhub_match, uhub_attach,
|
|
|
|
uhub_detach, uhub_activate
|
|
|
|
};
|
|
|
|
#elif defined(__FreeBSD__)
|
1999-11-17 22:33:51 +00:00
|
|
|
USB_DECLARE_DRIVER_INIT(uhub,
|
2000-01-20 22:24:35 +00:00
|
|
|
DEVMETHOD(bus_child_detached, uhub_child_detached),
|
|
|
|
DEVMETHOD(device_suspend, bus_generic_suspend),
|
|
|
|
DEVMETHOD(device_resume, bus_generic_resume),
|
|
|
|
DEVMETHOD(device_shutdown, bus_generic_shutdown)
|
|
|
|
);
|
1999-11-17 22:33:51 +00:00
|
|
|
|
1999-10-07 19:26:38 +00:00
|
|
|
/* Create the driver instance for the hub connected to usb case. */
|
1999-01-14 01:28:15 +00:00
|
|
|
devclass_t uhubroot_devclass;
|
|
|
|
|
|
|
|
static device_method_t uhubroot_methods[] = {
|
1999-10-07 19:26:38 +00:00
|
|
|
DEVMETHOD(device_probe, uhub_match),
|
|
|
|
DEVMETHOD(device_attach, uhub_attach),
|
1999-01-14 01:28:15 +00:00
|
|
|
/* detach is not allowed for a root hub */
|
2000-01-20 22:24:35 +00:00
|
|
|
DEVMETHOD(device_suspend, bus_generic_suspend),
|
|
|
|
DEVMETHOD(device_resume, bus_generic_suspend),
|
|
|
|
DEVMETHOD(device_shutdown, bus_generic_shutdown),
|
1999-10-07 19:26:38 +00:00
|
|
|
{0,0}
|
1999-01-14 01:28:15 +00:00
|
|
|
};
|
|
|
|
|
1999-10-07 19:26:38 +00:00
|
|
|
static driver_t uhubroot_driver = {
|
|
|
|
"uhub",
|
|
|
|
uhubroot_methods,
|
|
|
|
sizeof(struct uhub_softc)
|
1999-01-14 01:28:15 +00:00
|
|
|
};
|
|
|
|
#endif
|
1998-11-26 23:13:13 +00:00
|
|
|
|
1999-01-07 23:07:57 +00:00
|
|
|
USB_MATCH(uhub)
|
1998-11-26 23:13:13 +00:00
|
|
|
{
|
1999-01-07 23:07:57 +00:00
|
|
|
USB_MATCH_START(uhub, uaa);
|
1998-11-26 23:13:13 +00:00
|
|
|
usb_device_descriptor_t *dd = usbd_get_device_descriptor(uaa->device);
|
1999-01-07 23:07:57 +00:00
|
|
|
|
1998-12-09 23:36:15 +00:00
|
|
|
DPRINTFN(5,("uhub_match, dd=%p\n", dd));
|
1998-11-26 23:13:13 +00:00
|
|
|
/*
|
|
|
|
* The subclass for hubs seems to be 0 for some and 1 for others,
|
|
|
|
* so we just ignore the subclass.
|
|
|
|
*/
|
1999-11-17 22:33:51 +00:00
|
|
|
if (uaa->iface == NULL && dd->bDeviceClass == UCLASS_HUB)
|
1998-11-26 23:13:13 +00:00
|
|
|
return (UMATCH_DEVCLASS_DEVSUBCLASS);
|
|
|
|
return (UMATCH_NONE);
|
|
|
|
}
|
|
|
|
|
1999-01-07 23:07:57 +00:00
|
|
|
USB_ATTACH(uhub)
|
1998-11-26 23:13:13 +00:00
|
|
|
{
|
1999-01-07 23:07:57 +00:00
|
|
|
USB_ATTACH_START(uhub, sc, uaa);
|
1998-11-26 23:13:13 +00:00
|
|
|
usbd_device_handle dev = uaa->device;
|
|
|
|
char devinfo[1024];
|
1999-11-17 22:33:51 +00:00
|
|
|
usbd_status err;
|
1998-11-26 23:13:13 +00:00
|
|
|
struct usbd_hub *hub;
|
|
|
|
usb_device_request_t req;
|
|
|
|
usb_hub_descriptor_t hubdesc;
|
1999-01-07 23:07:57 +00:00
|
|
|
int p, port, nports, nremov;
|
1998-11-26 23:13:13 +00:00
|
|
|
usbd_interface_handle iface;
|
|
|
|
usb_endpoint_descriptor_t *ed;
|
1999-01-07 23:07:57 +00:00
|
|
|
|
|
|
|
DPRINTFN(1,("uhub_attach\n"));
|
1998-11-26 23:13:13 +00:00
|
|
|
sc->sc_hub = dev;
|
|
|
|
usbd_devinfo(dev, 1, devinfo);
|
1999-01-07 23:07:57 +00:00
|
|
|
USB_ATTACH_SETUP;
|
|
|
|
printf("%s: %s\n", USBDEVNAME(sc->sc_dev), devinfo);
|
1998-11-26 23:13:13 +00:00
|
|
|
|
1999-11-17 22:33:51 +00:00
|
|
|
err = usbd_set_config_index(dev, 0, 1);
|
|
|
|
if (err) {
|
1999-10-07 19:26:38 +00:00
|
|
|
DPRINTF(("%s: configuration failed, error=%s\n",
|
1999-11-17 22:33:51 +00:00
|
|
|
USBDEVNAME(sc->sc_dev), usbd_errstr(err)));
|
1999-01-07 23:07:57 +00:00
|
|
|
USB_ATTACH_ERROR_RETURN;
|
1998-11-26 23:13:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (dev->depth > USB_HUB_MAX_DEPTH) {
|
1999-01-07 23:07:57 +00:00
|
|
|
printf("%s: hub depth (%d) exceeded, hub ignored\n",
|
|
|
|
USBDEVNAME(sc->sc_dev), USB_HUB_MAX_DEPTH);
|
|
|
|
USB_ATTACH_ERROR_RETURN;
|
1998-11-26 23:13:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Get hub descriptor. */
|
|
|
|
req.bmRequestType = UT_READ_CLASS_DEVICE;
|
|
|
|
req.bRequest = UR_GET_DESCRIPTOR;
|
|
|
|
USETW(req.wValue, 0);
|
|
|
|
USETW(req.wIndex, 0);
|
|
|
|
USETW(req.wLength, USB_HUB_DESCRIPTOR_SIZE);
|
|
|
|
DPRINTFN(1,("usb_init_hub: getting hub descriptor\n"));
|
1999-11-17 22:33:51 +00:00
|
|
|
err = usbd_do_request(dev, &req, &hubdesc);
|
1999-01-07 23:07:57 +00:00
|
|
|
nports = hubdesc.bNbrPorts;
|
1999-11-17 22:33:51 +00:00
|
|
|
if (!err && nports > 7) {
|
1999-01-07 23:07:57 +00:00
|
|
|
USETW(req.wLength, USB_HUB_DESCRIPTOR_SIZE + (nports+1) / 8);
|
1999-11-17 22:33:51 +00:00
|
|
|
err = usbd_do_request(dev, &req, &hubdesc);
|
1999-01-07 23:07:57 +00:00
|
|
|
}
|
1999-11-17 22:33:51 +00:00
|
|
|
if (err) {
|
1999-10-07 19:26:38 +00:00
|
|
|
DPRINTF(("%s: getting hub descriptor failed, error=%s\n",
|
1999-11-17 22:33:51 +00:00
|
|
|
USBDEVNAME(sc->sc_dev), usbd_errstr(err)));
|
1999-01-07 23:07:57 +00:00
|
|
|
USB_ATTACH_ERROR_RETURN;
|
1998-11-26 23:13:13 +00:00
|
|
|
}
|
|
|
|
|
1999-01-07 23:07:57 +00:00
|
|
|
for (nremov = 0, port = 1; port <= nports; port++)
|
|
|
|
if (!UHD_NOT_REMOV(&hubdesc, port))
|
|
|
|
nremov++;
|
|
|
|
printf("%s: %d port%s with %d removable, %s powered\n",
|
|
|
|
USBDEVNAME(sc->sc_dev), nports, nports != 1 ? "s" : "",
|
|
|
|
nremov, dev->self_powered ? "self" : "bus");
|
|
|
|
|
1998-11-26 23:13:13 +00:00
|
|
|
hub = malloc(sizeof(*hub) + (nports-1) * sizeof(struct usbd_port),
|
1999-10-07 19:26:38 +00:00
|
|
|
M_USBDEV, M_NOWAIT);
|
1999-11-17 22:33:51 +00:00
|
|
|
if (hub == NULL)
|
1999-01-07 23:07:57 +00:00
|
|
|
USB_ATTACH_ERROR_RETURN;
|
1998-11-26 23:13:13 +00:00
|
|
|
dev->hub = hub;
|
1999-01-07 23:07:57 +00:00
|
|
|
dev->hub->hubsoftc = sc;
|
1998-11-26 23:13:13 +00:00
|
|
|
hub->explore = uhub_explore;
|
|
|
|
hub->hubdesc = hubdesc;
|
1999-01-07 23:07:57 +00:00
|
|
|
|
|
|
|
DPRINTFN(1,("usbhub_init_hub: selfpowered=%d, parent=%p, "
|
|
|
|
"parent->selfpowered=%d\n",
|
1998-11-26 23:13:13 +00:00
|
|
|
dev->self_powered, dev->powersrc->parent,
|
|
|
|
dev->powersrc->parent ?
|
|
|
|
dev->powersrc->parent->self_powered : 0));
|
1999-10-07 19:26:38 +00:00
|
|
|
|
1999-11-17 22:33:51 +00:00
|
|
|
if (!dev->self_powered && dev->powersrc->parent != NULL &&
|
1998-11-26 23:13:13 +00:00
|
|
|
!dev->powersrc->parent->self_powered) {
|
1999-01-07 23:07:57 +00:00
|
|
|
printf("%s: bus powered hub connected to bus powered hub, "
|
1999-10-07 19:26:38 +00:00
|
|
|
"ignored\n", USBDEVNAME(sc->sc_dev));
|
|
|
|
goto bad;
|
1998-11-26 23:13:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Set up interrupt pipe. */
|
1999-11-17 22:33:51 +00:00
|
|
|
err = usbd_device2interface_handle(dev, 0, &iface);
|
|
|
|
if (err) {
|
1999-01-07 23:07:57 +00:00
|
|
|
printf("%s: no interface handle\n", USBDEVNAME(sc->sc_dev));
|
1999-10-07 19:26:38 +00:00
|
|
|
goto bad;
|
1998-11-26 23:13:13 +00:00
|
|
|
}
|
|
|
|
ed = usbd_interface2endpoint_descriptor(iface, 0);
|
1999-11-17 22:33:51 +00:00
|
|
|
if (ed == NULL) {
|
1999-01-07 23:07:57 +00:00
|
|
|
printf("%s: no endpoint descriptor\n", USBDEVNAME(sc->sc_dev));
|
1999-10-07 19:26:38 +00:00
|
|
|
goto bad;
|
1998-11-26 23:13:13 +00:00
|
|
|
}
|
|
|
|
if ((ed->bmAttributes & UE_XFERTYPE) != UE_INTERRUPT) {
|
1999-01-07 23:07:57 +00:00
|
|
|
printf("%s: bad interrupt endpoint\n", USBDEVNAME(sc->sc_dev));
|
1999-10-07 19:26:38 +00:00
|
|
|
goto bad;
|
1998-11-26 23:13:13 +00:00
|
|
|
}
|
|
|
|
|
1999-11-17 22:33:51 +00:00
|
|
|
err = usbd_open_pipe_intr(iface, ed->bEndpointAddress,
|
1999-11-28 21:01:06 +00:00
|
|
|
USBD_SHORT_XFER_OK, &sc->sc_ipipe, sc, sc->sc_status,
|
More USB ethernet tweaks:
- Sync ohci, uhci and usbdi modules with NetBSD in order to obtain the
following improvements:
o New USBD_NO_TSLEEP flag can be used in place of UQ_NO_TSLEEP
quirk. This allows drivers to specify busy waiting only for
certain transfers (namely control transfers for reading/writing
registers and stuff).
o New USBD_FORCE_SHORT_XFER flag can be used to deal with
devices like the ADMtek Pegasus that sense the end of bulk OUT
transfers in a special way (if a transfer is exactly a multiple
of 64 bytes in size, you need to send an extra empty packet
to terminate the transfer).
o usbd_open_pipe_intr() now accepts an interval argument which
can be used to change the rate at which the interrupt callback
routine is invoked. Specifying USBD_DEFAULT_INTERVAL uses the
value specified in the device's config data, but drivers can
override it if needed.
- Change if_aue to use USBD_FORCE_SHORT_XFER for packet transmissions.
- Change if_aue, if_kue and if_cue to use USBD_NO_TSLEEP for all
control transfers. We no longer force the non-tsleep hack for
bulk transfers since these are done asynchronously anyway.
- Removed quirk entry fiddling from if_aue and if_kue since we don't
need it anymore now that we have the USBD_NO_TSLEEP flag.
- Tweak ulpt, uhid, ums and ukbd drivers to use the new arg to
usbd_open_pipe_intr().
- Add a flag to the softc struct in the ethernet drivers to indicate
when a device has been detached, and use this flag to perform
tests to prevent the drivers from trying to do control transfers
if this is the case. This is necessary because calling if_detach()
with INET6 enabled will eventually result in a call to the driver's
ioctl() routine to delete the multicast groups on the interface,
which will result in attempts to perform control transfers. (It's
possible this also happens even without INET6 support enabled.) This
is pointless since we know that if the detach method has been called,
the hardware has been unplugged.
- Changed watchdog timeout routines to just call the driver init routines
to initialize the device states without trying to close and re-open the
pipes. This is partly because we don't want to frob things at interrupt
context, but also because this doesn't seem to work right and I don't
want to panic the system just because a USB device may have stopped
responding.
- Fix aue_rxeof() to be a little smarter about detecting when a double
transfer is needed. Unfortunately, the design of the chip makes it hard
to get this exactly right. Hopefully, this will go away once either
Nick or Lennart finds the bug in the uhci driver that makes this ugly
hack necessary.
- Also sync usbdevs with NetBSD.
2000-01-20 07:38:33 +00:00
|
|
|
sizeof(sc->sc_status), uhub_intr, USBD_DEFAULT_INTERVAL);
|
1999-11-17 22:33:51 +00:00
|
|
|
if (err) {
|
1999-01-07 23:07:57 +00:00
|
|
|
printf("%s: cannot open interrupt pipe\n",
|
|
|
|
USBDEVNAME(sc->sc_dev));
|
1999-10-07 19:26:38 +00:00
|
|
|
goto bad;
|
1998-11-26 23:13:13 +00:00
|
|
|
}
|
|
|
|
|
1999-01-07 23:07:57 +00:00
|
|
|
/* Wait with power off for a while. */
|
|
|
|
usbd_delay_ms(dev, USB_POWER_DOWN_TIME);
|
|
|
|
|
|
|
|
for (p = 0; p < nports; p++) {
|
|
|
|
struct usbd_port *up = &hub->ports[p];
|
|
|
|
up->device = 0;
|
|
|
|
up->parent = dev;
|
|
|
|
up->portno = p+1;
|
1999-11-17 22:33:51 +00:00
|
|
|
err = uhub_init_port(up);
|
|
|
|
if (err)
|
1999-01-07 23:07:57 +00:00
|
|
|
printf("%s: init of port %d failed\n",
|
1999-11-17 22:33:51 +00:00
|
|
|
USBDEVNAME(sc->sc_dev), up->portno);
|
1998-11-26 23:13:13 +00:00
|
|
|
}
|
|
|
|
sc->sc_running = 1;
|
|
|
|
|
1999-01-07 23:07:57 +00:00
|
|
|
USB_ATTACH_SUCCESS_RETURN;
|
1998-11-26 23:13:13 +00:00
|
|
|
|
1999-11-17 22:33:51 +00:00
|
|
|
bad:
|
1999-10-07 19:26:38 +00:00
|
|
|
free(hub, M_USBDEV);
|
|
|
|
dev->hub = 0;
|
|
|
|
USB_ATTACH_ERROR_RETURN;
|
1998-11-26 23:13:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
usbd_status
|
1999-01-07 23:07:57 +00:00
|
|
|
uhub_init_port(up)
|
|
|
|
struct usbd_port *up;
|
1998-11-26 23:13:13 +00:00
|
|
|
{
|
1999-01-07 23:07:57 +00:00
|
|
|
int port = up->portno;
|
|
|
|
usbd_device_handle dev = up->parent;
|
1999-11-17 22:33:51 +00:00
|
|
|
usbd_status err;
|
1998-11-26 23:13:13 +00:00
|
|
|
u_int16_t pstatus;
|
|
|
|
|
1999-11-17 22:33:51 +00:00
|
|
|
err = usbd_get_port_status(dev, port, &up->status);
|
|
|
|
if (err)
|
|
|
|
return (err);
|
1999-01-07 23:07:57 +00:00
|
|
|
pstatus = UGETW(up->status.wPortStatus);
|
|
|
|
DPRINTF(("usbd_init_port: adding hub port=%d status=0x%04x "
|
|
|
|
"change=0x%04x\n",
|
|
|
|
port, pstatus, UGETW(up->status.wPortChange)));
|
1998-11-26 23:13:13 +00:00
|
|
|
if ((pstatus & UPS_PORT_POWER) == 0) {
|
|
|
|
/* Port lacks power, turn it on */
|
1999-01-07 23:07:57 +00:00
|
|
|
|
|
|
|
/* First let the device go through a good power cycle, */
|
|
|
|
usbd_delay_ms(dev, USB_PORT_POWER_DOWN_TIME);
|
|
|
|
|
1999-10-07 19:26:38 +00:00
|
|
|
#if 0
|
|
|
|
usbd_clear_hub_feature(dev, UHF_C_HUB_OVER_CURRENT);
|
|
|
|
usbd_clear_port_feature(dev, port, UHF_C_PORT_OVER_CURRENT);
|
|
|
|
#endif
|
|
|
|
|
1999-01-07 23:07:57 +00:00
|
|
|
/* then turn the power on. */
|
1999-11-17 22:33:51 +00:00
|
|
|
err = usbd_set_port_feature(dev, port, UHF_PORT_POWER);
|
|
|
|
if (err)
|
|
|
|
return (err);
|
1999-01-07 23:07:57 +00:00
|
|
|
DPRINTF(("usb_init_port: turn on port %d power status=0x%04x "
|
|
|
|
"change=0x%04x\n",
|
|
|
|
port, UGETW(up->status.wPortStatus),
|
|
|
|
UGETW(up->status.wPortChange)));
|
1998-11-26 23:13:13 +00:00
|
|
|
/* Wait for stable power. */
|
1999-01-07 23:07:57 +00:00
|
|
|
usbd_delay_ms(dev, dev->hub->hubdesc.bPwrOn2PwrGood *
|
|
|
|
UHD_PWRON_FACTOR);
|
1999-10-07 19:26:38 +00:00
|
|
|
/* Get the port status again. */
|
1999-11-17 22:33:51 +00:00
|
|
|
err = usbd_get_port_status(dev, port, &up->status);
|
|
|
|
if (err)
|
|
|
|
return (err);
|
1999-10-07 19:26:38 +00:00
|
|
|
DPRINTF(("usb_init_port: after power on status=0x%04x "
|
|
|
|
"change=0x%04x\n",
|
|
|
|
UGETW(up->status.wPortStatus),
|
|
|
|
UGETW(up->status.wPortChange)));
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
usbd_clear_hub_feature(dev, UHF_C_HUB_OVER_CURRENT);
|
|
|
|
usbd_clear_port_feature(dev, port, UHF_C_PORT_OVER_CURRENT);
|
|
|
|
usbd_get_port_status(dev, port, &up->status);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
pstatus = UGETW(up->status.wPortStatus);
|
|
|
|
if ((pstatus & UPS_PORT_POWER) == 0)
|
|
|
|
printf("%s: port %d did not power up\n",
|
|
|
|
USBDEVNAME(((struct uhub_softc *)dev->hub->hubsoftc)->sc_dev), port);
|
|
|
|
|
1998-11-26 23:13:13 +00:00
|
|
|
}
|
|
|
|
if (dev->self_powered)
|
|
|
|
/* Self powered hub, give ports maximum current. */
|
1999-01-07 23:07:57 +00:00
|
|
|
up->power = USB_MAX_POWER;
|
1998-11-26 23:13:13 +00:00
|
|
|
else
|
1999-01-07 23:07:57 +00:00
|
|
|
up->power = USB_MIN_POWER;
|
1998-11-26 23:13:13 +00:00
|
|
|
return (USBD_NORMAL_COMPLETION);
|
|
|
|
}
|
|
|
|
|
|
|
|
usbd_status
|
|
|
|
uhub_explore(dev)
|
|
|
|
usbd_device_handle dev;
|
|
|
|
{
|
|
|
|
usb_hub_descriptor_t *hd = &dev->hub->hubdesc;
|
1999-01-07 23:07:57 +00:00
|
|
|
struct uhub_softc *sc = dev->hub->hubsoftc;
|
1998-11-26 23:13:13 +00:00
|
|
|
struct usbd_port *up;
|
1999-11-17 22:33:51 +00:00
|
|
|
usbd_status err;
|
1998-11-26 23:13:13 +00:00
|
|
|
int port;
|
|
|
|
int change, status;
|
|
|
|
|
|
|
|
DPRINTFN(10, ("uhub_explore dev=%p addr=%d\n", dev, dev->address));
|
|
|
|
|
|
|
|
if (!sc->sc_running)
|
|
|
|
return (USBD_NOT_STARTED);
|
|
|
|
|
|
|
|
/* Ignore hubs that are too deep. */
|
|
|
|
if (dev->depth > USB_HUB_MAX_DEPTH)
|
|
|
|
return (USBD_TOO_DEEP);
|
|
|
|
|
|
|
|
for(port = 1; port <= hd->bNbrPorts; port++) {
|
|
|
|
up = &dev->hub->ports[port-1];
|
1999-11-17 22:33:51 +00:00
|
|
|
err = usbd_get_port_status(dev, port, &up->status);
|
|
|
|
if (err) {
|
1999-10-07 19:26:38 +00:00
|
|
|
DPRINTF(("uhub_explore: get port status failed, "
|
1999-11-17 22:33:51 +00:00
|
|
|
"error=%s\n", usbd_errstr(err)));
|
1998-11-26 23:13:13 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
status = UGETW(up->status.wPortStatus);
|
|
|
|
change = UGETW(up->status.wPortChange);
|
1999-11-28 21:01:06 +00:00
|
|
|
DPRINTFN(3,("uhub_explore: port %d status 0x%04x 0x%04x\n",
|
|
|
|
port, status, change));
|
1999-01-07 23:07:57 +00:00
|
|
|
if (change & UPS_C_PORT_ENABLED) {
|
1999-11-28 21:01:06 +00:00
|
|
|
DPRINTF(("uhub_explore: C_PORT_ENABLED\n"));
|
1999-01-07 23:07:57 +00:00
|
|
|
usbd_clear_port_feature(dev, port, UHF_C_PORT_ENABLE);
|
|
|
|
if (status & UPS_PORT_ENABLED) {
|
1999-10-07 19:26:38 +00:00
|
|
|
printf("%s: illegal enable change, port %d\n",
|
1999-01-07 23:07:57 +00:00
|
|
|
USBDEVNAME(sc->sc_dev), port);
|
|
|
|
} else {
|
|
|
|
/* Port error condition. */
|
|
|
|
if (up->restartcnt++ < USBD_RESTART_MAX) {
|
1999-10-07 19:26:38 +00:00
|
|
|
printf("%s: port error, restarting "
|
|
|
|
"port %d\n",
|
1999-01-07 23:07:57 +00:00
|
|
|
USBDEVNAME(sc->sc_dev), port);
|
|
|
|
goto disco;
|
|
|
|
} else {
|
1999-10-07 19:26:38 +00:00
|
|
|
printf("%s: port error, giving up "
|
|
|
|
"port %d\n",
|
1999-01-07 23:07:57 +00:00
|
|
|
USBDEVNAME(sc->sc_dev), port);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!(change & UPS_C_CONNECT_STATUS)) {
|
1999-11-28 21:01:06 +00:00
|
|
|
DPRINTFN(3,("uhub_explore: port=%d !C_CONNECT_"
|
|
|
|
"STATUS\n", port));
|
1998-11-26 23:13:13 +00:00
|
|
|
/* No status change, just do recursive explore. */
|
|
|
|
if (up->device && up->device->hub)
|
|
|
|
up->device->hub->explore(up->device);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
DPRINTF(("uhub_explore: status change hub=%d port=%d\n",
|
|
|
|
dev->address, port));
|
|
|
|
usbd_clear_port_feature(dev, port, UHF_C_PORT_CONNECTION);
|
|
|
|
usbd_clear_port_feature(dev, port, UHF_C_PORT_ENABLE);
|
|
|
|
/*
|
|
|
|
* If there is already a device on the port the change status
|
|
|
|
* must mean that is has disconnected. Looking at the
|
|
|
|
* current connect status is not enough to figure this out
|
|
|
|
* since a new unit may have been connected before we handle
|
|
|
|
* the disconnect.
|
|
|
|
*/
|
1999-01-07 23:07:57 +00:00
|
|
|
disco:
|
1999-11-17 22:33:51 +00:00
|
|
|
if (up->device != NULL) {
|
1998-11-26 23:13:13 +00:00
|
|
|
/* Disconnected */
|
1999-11-28 21:01:06 +00:00
|
|
|
DPRINTF(("uhub_explore: device addr=%d disappeared "
|
1999-11-17 22:33:51 +00:00
|
|
|
"on port %d\n", up->device->address, port));
|
|
|
|
usb_disconnect_port(up, USBDEV(sc->sc_dev));
|
1998-11-26 23:13:13 +00:00
|
|
|
usbd_clear_port_feature(dev, port,
|
|
|
|
UHF_C_PORT_CONNECTION);
|
|
|
|
}
|
1999-11-28 21:01:06 +00:00
|
|
|
if (!(status & UPS_CURRENT_CONNECT_STATUS)) {
|
|
|
|
DPRINTFN(3,("uhub_explore: port=%d !CURRENT_CONNECT"
|
|
|
|
"_STATUS\n", port));
|
1998-11-26 23:13:13 +00:00
|
|
|
continue;
|
1999-11-28 21:01:06 +00:00
|
|
|
}
|
1998-11-26 23:13:13 +00:00
|
|
|
|
|
|
|
/* Connected */
|
1999-01-07 23:07:57 +00:00
|
|
|
up->restartcnt = 0;
|
|
|
|
|
1998-11-26 23:13:13 +00:00
|
|
|
/* Wait for maximum device power up time. */
|
1999-01-07 23:07:57 +00:00
|
|
|
usbd_delay_ms(dev, USB_PORT_POWERUP_DELAY);
|
|
|
|
|
1998-11-26 23:13:13 +00:00
|
|
|
/* Reset port, which implies enabling it. */
|
1999-11-28 21:01:06 +00:00
|
|
|
if (usbd_reset_port(dev, port, &up->status)) {
|
|
|
|
DPRINTF(("uhub_explore: port=%d reset failed\n",
|
|
|
|
port));
|
1998-11-26 23:13:13 +00:00
|
|
|
continue;
|
1999-11-28 21:01:06 +00:00
|
|
|
}
|
1998-11-26 23:13:13 +00:00
|
|
|
|
|
|
|
/* Get device info and set its address. */
|
1999-11-17 22:33:51 +00:00
|
|
|
err = usbd_new_device(USBDEV(sc->sc_dev), dev->bus,
|
|
|
|
dev->depth + 1, status & UPS_LOW_SPEED,
|
|
|
|
port, up);
|
1998-11-26 23:13:13 +00:00
|
|
|
/* XXX retry a few times? */
|
1999-11-17 22:33:51 +00:00
|
|
|
if (err) {
|
1999-10-07 19:26:38 +00:00
|
|
|
DPRINTFN(-1,("uhub_explore: usb_new_device failed, "
|
1999-11-17 22:33:51 +00:00
|
|
|
"error=%s\n", usbd_errstr(err)));
|
1998-11-26 23:13:13 +00:00
|
|
|
/* Avoid addressing problems by disabling. */
|
|
|
|
/* usbd_reset_port(dev, port, &up->status); */
|
1999-11-17 22:33:51 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The unit refused to accept a new address, or had
|
|
|
|
* some other serious problem. Since we cannot leave
|
|
|
|
* at 0 we have to disable the port instead.
|
|
|
|
*/
|
|
|
|
printf("%s: device problem, disabling port %d\n",
|
|
|
|
USBDEVNAME(sc->sc_dev), port);
|
|
|
|
usbd_clear_port_feature(dev, port, UHF_PORT_ENABLE);
|
|
|
|
/* Make sure we don't try to restart it infinitely. */
|
|
|
|
up->restartcnt = USBD_RESTART_MAX;
|
1998-11-26 23:13:13 +00:00
|
|
|
} else {
|
|
|
|
if (up->device->hub)
|
|
|
|
up->device->hub->explore(up->device);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return (USBD_NORMAL_COMPLETION);
|
|
|
|
}
|
|
|
|
|
1999-10-07 19:26:38 +00:00
|
|
|
#if defined(__NetBSD__) || defined(__OpenBSD__)
|
|
|
|
int
|
|
|
|
uhub_activate(self, act)
|
|
|
|
device_ptr_t self;
|
|
|
|
enum devact act;
|
|
|
|
{
|
1999-11-17 22:33:51 +00:00
|
|
|
struct uhub_softc *sc = (struct uhub_softc *)self;
|
|
|
|
usbd_device_handle devhub = sc->sc_hub;
|
|
|
|
usbd_device_handle dev;
|
|
|
|
int nports, port, i;
|
|
|
|
|
1999-10-07 19:26:38 +00:00
|
|
|
switch (act) {
|
|
|
|
case DVACT_ACTIVATE:
|
|
|
|
return (EOPNOTSUPP);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case DVACT_DEACTIVATE:
|
1999-11-17 22:33:51 +00:00
|
|
|
nports = devhub->hub->hubdesc.bNbrPorts;
|
|
|
|
for(port = 0; port < nports; port++) {
|
|
|
|
dev = devhub->hub->ports[port].device;
|
|
|
|
if (dev != NULL) {
|
|
|
|
for (i = 0; dev->subdevs[i]; i++)
|
|
|
|
config_deactivate(dev->subdevs[i]);
|
|
|
|
}
|
|
|
|
}
|
1999-10-07 19:26:38 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Called from process context when the hub is gone.
|
|
|
|
* Detach all devices on active ports.
|
|
|
|
*/
|
|
|
|
USB_DETACH(uhub)
|
|
|
|
{
|
|
|
|
USB_DETACH_START(uhub, sc);
|
|
|
|
usbd_device_handle dev = sc->sc_hub;
|
1999-11-17 22:33:51 +00:00
|
|
|
struct usbd_port *rup;
|
1999-10-07 19:26:38 +00:00
|
|
|
int port, nports;
|
|
|
|
|
|
|
|
#if defined(__NetBSD__) || defined(__OpenBSD__)
|
1999-11-17 22:33:51 +00:00
|
|
|
DPRINTF(("uhub_detach: sc=%p flags=%d\n", sc, flags));
|
1999-10-07 19:26:38 +00:00
|
|
|
#elif defined(__FreeBSD__)
|
|
|
|
DPRINTF(("uhub_detach: sc=%port\n", sc));
|
|
|
|
#endif
|
|
|
|
|
1999-11-17 22:33:51 +00:00
|
|
|
if (dev->hub == NULL) /* Must be partially working */
|
1999-10-07 19:26:38 +00:00
|
|
|
return (0);
|
|
|
|
|
|
|
|
usbd_abort_pipe(sc->sc_ipipe);
|
|
|
|
usbd_close_pipe(sc->sc_ipipe);
|
|
|
|
|
|
|
|
nports = dev->hub->hubdesc.bNbrPorts;
|
|
|
|
for(port = 0; port < nports; port++) {
|
1999-11-17 22:33:51 +00:00
|
|
|
rup = &dev->hub->ports[port];
|
|
|
|
if (rup->device)
|
|
|
|
usb_disconnect_port(rup, self);
|
1999-01-07 23:07:57 +00:00
|
|
|
}
|
1999-10-07 19:26:38 +00:00
|
|
|
|
|
|
|
free(dev->hub, M_USBDEV);
|
1999-11-17 22:33:51 +00:00
|
|
|
dev->hub = NULL;
|
1999-01-07 23:07:57 +00:00
|
|
|
|
1999-10-07 19:26:38 +00:00
|
|
|
return (0);
|
1998-11-26 23:13:13 +00:00
|
|
|
}
|
|
|
|
|
1999-11-17 22:33:51 +00:00
|
|
|
#if defined(__FreeBSD__)
|
|
|
|
/* Called when a device has been detached from it */
|
|
|
|
static void
|
|
|
|
uhub_child_detached(self, child)
|
|
|
|
device_t self;
|
|
|
|
device_t child;
|
|
|
|
{
|
|
|
|
struct uhub_softc *sc = device_get_softc(self);
|
|
|
|
usbd_device_handle devhub = sc->sc_hub;
|
|
|
|
usbd_device_handle dev;
|
|
|
|
int nports;
|
|
|
|
int port;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (!devhub->hub)
|
|
|
|
/* should never happen; children are only created after init */
|
|
|
|
panic("hub not fully initialised, but child deleted?");
|
|
|
|
|
|
|
|
nports = devhub->hub->hubdesc.bNbrPorts;
|
|
|
|
for (port = 0; port < nports; port++) {
|
|
|
|
dev = devhub->hub->ports[port].device;
|
|
|
|
if (dev && dev->subdevs) {
|
|
|
|
for (i = 0; dev->subdevs[i]; i++) {
|
|
|
|
if (dev->subdevs[i] == child) {
|
|
|
|
dev->subdevs[i] = NULL;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
1999-10-07 19:26:38 +00:00
|
|
|
/*
|
|
|
|
* Hub interrupt.
|
|
|
|
* This an indication that some port has changed status.
|
|
|
|
* Notify the bus event handler thread that we need
|
|
|
|
* to be explored again.
|
|
|
|
*/
|
1998-11-26 23:13:13 +00:00
|
|
|
void
|
1999-11-17 22:33:51 +00:00
|
|
|
uhub_intr(xfer, addr, status)
|
|
|
|
usbd_xfer_handle xfer;
|
1998-11-26 23:13:13 +00:00
|
|
|
usbd_private_handle addr;
|
|
|
|
usbd_status status;
|
|
|
|
{
|
|
|
|
struct uhub_softc *sc = addr;
|
|
|
|
|
|
|
|
DPRINTFN(5,("uhub_intr: sc=%p\n", sc));
|
|
|
|
if (status != USBD_NORMAL_COMPLETION)
|
1999-01-07 23:07:57 +00:00
|
|
|
usbd_clear_endpoint_stall_async(sc->sc_ipipe);
|
1999-10-07 19:26:38 +00:00
|
|
|
|
|
|
|
usb_needs_explore(sc->sc_hub->bus);
|
1998-11-26 23:13:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(__FreeBSD__)
|
1999-01-14 01:28:15 +00:00
|
|
|
DRIVER_MODULE(uhub, usb, uhubroot_driver, uhubroot_devclass, 0, 0);
|
|
|
|
DRIVER_MODULE(uhub, uhub, uhub_driver, uhub_devclass, usbd_driver_load, 0);
|
1998-11-26 23:13:13 +00:00
|
|
|
#endif
|