2008-09-02 18:06:22 +02:00
|
|
|
/*
|
|
|
|
* This file is part of the libpayload project.
|
|
|
|
*
|
2013-05-29 15:10:46 +02:00
|
|
|
* Copyright (C) 2013 secunet Security Networks AG
|
2008-09-02 18:06:22 +02: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. The name of the author may not be used to endorse or promote products
|
|
|
|
* derived from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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.
|
|
|
|
*/
|
|
|
|
|
2013-05-03 01:16:41 +02:00
|
|
|
//#define USB_DEBUG
|
|
|
|
|
2008-09-11 19:29:00 +02:00
|
|
|
#include <usb/usb.h>
|
2013-05-29 15:10:46 +02:00
|
|
|
#include "generic_hub.h"
|
2008-09-02 18:06:22 +02:00
|
|
|
|
2013-05-29 15:10:46 +02:00
|
|
|
/* assume that host_to_device is overwritten if necessary */
|
2008-09-02 18:06:22 +02:00
|
|
|
#define DR_PORT gen_bmRequestType(host_to_device, class_type, other_recp)
|
2013-05-29 15:10:46 +02:00
|
|
|
/* status (and status change) bits */
|
2012-05-21 16:20:59 +02:00
|
|
|
#define PORT_CONNECTION 0x1
|
|
|
|
#define PORT_ENABLE 0x2
|
|
|
|
#define PORT_RESET 0x10
|
|
|
|
/* feature selectors (for setting / clearing features) */
|
|
|
|
#define SEL_PORT_RESET 0x4
|
|
|
|
#define SEL_PORT_POWER 0x8
|
|
|
|
#define SEL_C_PORT_CONNECTION 0x10
|
2015-07-10 01:29:10 +02:00
|
|
|
/* request type (USB 3.0 hubs only) */
|
|
|
|
#define SET_HUB_DEPTH 12
|
2008-09-02 18:06:22 +02:00
|
|
|
|
2013-05-29 15:10:46 +02:00
|
|
|
static int
|
|
|
|
usb_hub_port_status_changed(usbdev_t *const dev, const int port)
|
2008-09-02 18:06:22 +02:00
|
|
|
{
|
2013-09-18 07:16:04 +02:00
|
|
|
unsigned short buf[2];
|
|
|
|
int ret = get_status (dev, port, DR_PORT, sizeof(buf), buf);
|
|
|
|
if (ret >= 0) {
|
|
|
|
ret = buf[1] & PORT_CONNECTION;
|
|
|
|
if (ret)
|
|
|
|
clear_feature (dev, port, SEL_C_PORT_CONNECTION,
|
|
|
|
DR_PORT);
|
|
|
|
}
|
|
|
|
return ret;
|
2008-09-02 18:06:22 +02:00
|
|
|
}
|
|
|
|
|
2013-05-29 15:10:46 +02:00
|
|
|
static int
|
|
|
|
usb_hub_port_connected(usbdev_t *const dev, const int port)
|
2008-09-02 18:06:22 +02:00
|
|
|
{
|
2013-09-18 07:16:04 +02:00
|
|
|
unsigned short buf[2];
|
|
|
|
int ret = get_status (dev, port, DR_PORT, sizeof(buf), buf);
|
|
|
|
if (ret >= 0)
|
|
|
|
ret = buf[0] & PORT_CONNECTION;
|
|
|
|
return ret;
|
2013-05-29 15:10:46 +02:00
|
|
|
}
|
2012-05-21 16:20:59 +02:00
|
|
|
|
2013-05-29 15:10:46 +02:00
|
|
|
static int
|
|
|
|
usb_hub_port_in_reset(usbdev_t *const dev, const int port)
|
|
|
|
{
|
2013-09-18 07:16:04 +02:00
|
|
|
unsigned short buf[2];
|
|
|
|
int ret = get_status (dev, port, DR_PORT, sizeof(buf), buf);
|
|
|
|
if (ret >= 0)
|
|
|
|
ret = buf[0] & PORT_RESET;
|
|
|
|
return ret;
|
2008-09-02 18:06:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2013-05-29 15:10:46 +02:00
|
|
|
usb_hub_port_enabled(usbdev_t *const dev, const int port)
|
2008-09-02 18:06:22 +02:00
|
|
|
{
|
2013-09-18 07:16:04 +02:00
|
|
|
unsigned short buf[2];
|
|
|
|
int ret = get_status (dev, port, DR_PORT, sizeof(buf), buf);
|
|
|
|
if (ret >= 0)
|
|
|
|
ret = buf[0] & PORT_ENABLE;
|
|
|
|
return ret;
|
2008-09-02 18:06:22 +02:00
|
|
|
}
|
|
|
|
|
2013-09-25 05:03:54 +02:00
|
|
|
static usb_speed
|
2013-05-29 15:10:46 +02:00
|
|
|
usb_hub_port_speed(usbdev_t *const dev, const int port)
|
2008-09-02 18:06:22 +02:00
|
|
|
{
|
2013-09-18 07:16:04 +02:00
|
|
|
unsigned short buf[2];
|
|
|
|
int ret = get_status (dev, port, DR_PORT, sizeof(buf), buf);
|
|
|
|
if (ret >= 0 && (buf[0] & PORT_ENABLE)) {
|
2015-07-10 01:29:10 +02:00
|
|
|
/* SuperSpeed hubs can only have SuperSpeed devices. */
|
|
|
|
if (dev->speed == SUPER_SPEED)
|
|
|
|
return SUPER_SPEED;
|
|
|
|
|
|
|
|
/*[bit] 10 9 (USB 2.0 port status word)
|
2013-05-29 15:10:46 +02:00
|
|
|
* 0 0 full speed
|
|
|
|
* 0 1 low speed
|
|
|
|
* 1 0 high speed
|
2015-07-10 01:29:10 +02:00
|
|
|
* 1 1 invalid
|
2013-05-29 15:10:46 +02:00
|
|
|
*/
|
2013-09-18 07:16:04 +02:00
|
|
|
ret = (buf[0] >> 9) & 0x3;
|
2015-07-10 01:29:10 +02:00
|
|
|
if (ret != 0x3)
|
|
|
|
return ret;
|
2013-05-29 15:10:46 +02:00
|
|
|
}
|
2015-07-10 01:29:10 +02:00
|
|
|
return -1;
|
2008-09-02 18:06:22 +02:00
|
|
|
}
|
|
|
|
|
2013-05-29 15:10:46 +02:00
|
|
|
static int
|
|
|
|
usb_hub_enable_port(usbdev_t *const dev, const int port)
|
2008-09-02 18:06:22 +02:00
|
|
|
{
|
2013-09-18 07:16:04 +02:00
|
|
|
return set_feature(dev, port, SEL_PORT_POWER, DR_PORT);
|
2008-09-02 18:06:22 +02:00
|
|
|
}
|
|
|
|
|
2013-05-29 15:10:46 +02:00
|
|
|
static int
|
|
|
|
usb_hub_start_port_reset(usbdev_t *const dev, const int port)
|
2008-09-02 18:06:22 +02:00
|
|
|
{
|
2013-09-18 07:16:04 +02:00
|
|
|
return set_feature (dev, port, SEL_PORT_RESET, DR_PORT);
|
2008-09-02 18:06:22 +02:00
|
|
|
}
|
|
|
|
|
2015-07-10 01:29:10 +02:00
|
|
|
static void usb_hub_set_hub_depth(usbdev_t *const dev)
|
|
|
|
{
|
|
|
|
dev_req_t dr = {
|
|
|
|
.bmRequestType = gen_bmRequestType(host_to_device,
|
|
|
|
class_type, dev_recp),
|
|
|
|
.bRequest = SET_HUB_DEPTH,
|
|
|
|
.wValue = 0,
|
|
|
|
.wIndex = 0,
|
|
|
|
.wLength = 0,
|
|
|
|
};
|
|
|
|
usbdev_t *parent = dev;
|
|
|
|
while (parent->hub > 0) {
|
|
|
|
parent = dev->controller->devices[parent->hub];
|
|
|
|
dr.wValue++;
|
|
|
|
}
|
|
|
|
int ret = dev->controller->control(dev, OUT, sizeof(dr), &dr, 0, NULL);
|
|
|
|
if (ret < 0)
|
|
|
|
usb_debug("Failed SET_HUB_DEPTH(%d) on hub %d: %d\n",
|
|
|
|
dr.wValue, dev->address, ret);
|
|
|
|
}
|
|
|
|
|
2013-05-29 15:10:46 +02:00
|
|
|
static const generic_hub_ops_t usb_hub_ops = {
|
|
|
|
.hub_status_changed = NULL,
|
|
|
|
.port_status_changed = usb_hub_port_status_changed,
|
|
|
|
.port_connected = usb_hub_port_connected,
|
|
|
|
.port_in_reset = usb_hub_port_in_reset,
|
|
|
|
.port_enabled = usb_hub_port_enabled,
|
|
|
|
.port_speed = usb_hub_port_speed,
|
|
|
|
.enable_port = usb_hub_enable_port,
|
|
|
|
.disable_port = NULL,
|
|
|
|
.start_port_reset = usb_hub_start_port_reset,
|
|
|
|
.reset_port = generic_hub_resetport,
|
|
|
|
};
|
|
|
|
|
2008-09-02 18:06:22 +02:00
|
|
|
void
|
2013-05-29 15:10:46 +02:00
|
|
|
usb_hub_init(usbdev_t *const dev)
|
2008-09-02 18:06:22 +02:00
|
|
|
{
|
2015-07-10 01:29:10 +02:00
|
|
|
int type = dev->speed == SUPER_SPEED ? 0x2a : 0x29; /* similar enough */
|
2013-09-18 07:16:04 +02:00
|
|
|
hub_descriptor_t desc; /* won't fit the whole thing, we don't care */
|
|
|
|
if (get_descriptor(dev, gen_bmRequestType(device_to_host, class_type,
|
2015-07-10 01:29:10 +02:00
|
|
|
dev_recp), type, 0, &desc, sizeof(desc)) != sizeof(desc)) {
|
2013-09-18 07:16:04 +02:00
|
|
|
usb_debug("get_descriptor(HUB) failed\n");
|
|
|
|
usb_detach_device(dev->controller, dev->address);
|
2013-05-29 15:10:46 +02:00
|
|
|
return;
|
|
|
|
}
|
2009-07-31 13:39:55 +02:00
|
|
|
|
2015-07-10 01:29:10 +02:00
|
|
|
if (dev->speed == SUPER_SPEED)
|
|
|
|
usb_hub_set_hub_depth(dev);
|
2013-09-18 07:16:04 +02:00
|
|
|
generic_hub_init(dev, desc.bNbrPorts, &usb_hub_ops);
|
2008-09-02 18:06:22 +02:00
|
|
|
}
|