Skip to content
Permalink
Browse files
USB: misc: Add onboard_usb_hub driver
The main issue this driver addresses is that a USB hub needs to be
powered before it can be discovered. For discrete onboard hubs (an
example for such a hub is the Realtek RTS5411) this is often solved
by supplying the hub with an 'always-on' regulator, which is kind
of a hack. Some onboard hubs may require further initialization
steps, like changing the state of a GPIO or enabling a clock, which
requires even more hacks. This driver creates a platform device
representing the hub which performs the necessary initialization.
Currently it only supports switching on a single regulator, support
for multiple regulators or other actions can be added as needed.
Different initialization sequences can be supported based on the
compatible string.

Besides performing the initialization the driver can be configured
to power the hub off during system suspend. This can help to extend
battery life on battery powered devices which have no requirements
to keep the hub powered during suspend. The driver can also be
configured to leave the hub powered when a wakeup capable USB device
is connected when suspending, and power it off otherwise.

Technically the driver consists of two drivers, the platform driver
described above and a very thin USB driver that subclasses the
generic driver. The purpose of this driver is to provide the platform
driver with the USB devices corresponding to the hub(s) (a hub
controller may provide multiple 'logical' hubs, e.g. one to support
USB 2.0 and another for USB 3.x).

Note: the current driver/binding only works with hubs connected
directly to a root hub. The reason for this is that USB devices
find their corresponding platform device by iterating over the
child device tree nodes of their parent until they find a node
that has a supported compatible string and an associated platform
device. This works as long as there is only one such device. More
than one supported onboard hub could be connected to the parent
(like on a 2nd, 3rd, ... level hub with multiple downstream
ports) some other way for identifying the platform device is
needed. The relationship could be established through a phandle
in the node of the USB device(s).

Co-developed-by: Ravi Chandra Sadineni <ravisadineni@chromium.org>
Signed-off-by: Ravi Chandra Sadineni <ravisadineni@chromium.org>
Signed-off-by: Matthias Kaehlcke <mka@chromium.org>
  • Loading branch information
Matthias Kaehlcke authored and intel-lab-lkp committed Feb 10, 2021
1 parent 7574cd9 commit 15c43f13a680dab0efc2816a9d632d9d6482b6fc
Show file tree
Hide file tree
Showing 5 changed files with 450 additions and 0 deletions.
@@ -13191,6 +13191,13 @@ S: Maintained
T: git git://linuxtv.org/media_tree.git
F: drivers/media/i2c/ov9734.c

ONBOARD USB HUB DRIVER
M: Matthias Kaehlcke <mka@chromium.org>
L: linux-usb@vger.kernel.org
S: Maintained
F: Documentation/devicetree/bindings/usb/onboard_usb_hub.yaml
F: drivers/usb/misc/onboard_usb_hub.c

ONENAND FLASH DRIVER
M: Kyungmin Park <kyungmin.park@samsung.com>
L: linux-mtd@lists.infradead.org
@@ -284,3 +284,21 @@ config BRCM_USB_PINMAP
This option enables support for remapping some USB external
signals, which are typically on dedicated pins on the chip,
to any gpio.

config USB_ONBOARD_HUB
tristate "Onboard USB hub support"
depends on OF || COMPILE_TEST
help
Say Y here if you want to support discrete onboard USB hubs that
don't require an additional control bus for initialization, but
need some nontrivial form of initialization, such as enabling a
power regulator. An example for such a hub is the Realtek
RTS5411.

The driver can be configured to turn off the power of the hub
during system suspend. This may reduce power consumption while
the system is suspended.

To compile this driver as a module, choose M here: the
module will be called onboard_usb_hub.

@@ -32,3 +32,4 @@ obj-$(CONFIG_USB_CHAOSKEY) += chaoskey.o
obj-$(CONFIG_USB_SISUSBVGA) += sisusbvga/
obj-$(CONFIG_USB_LINK_LAYER_TEST) += lvstest.o
obj-$(CONFIG_BRCM_USB_PINMAP) += brcmstb-usb-pinmap.o
obj-$(CONFIG_USB_ONBOARD_HUB) += onboard_usb_hub.o

0 comments on commit 15c43f1

Please sign in to comment.