| /kernel/linux/linux-5.10/drivers/usb/misc/ |
| D | usb251xb.c | 3 * Driver for Microchip USB251xB USB 2.0 Hi-Speed Hub Controller 110 #define DRIVER_DESC "Microchip USB 2.0 Hi-Speed Hub Controller" 242 static int usb251x_check_gpio_chip(struct usb251xb *hub) in usb251x_check_gpio_chip() argument 244 struct gpio_chip *gc = gpiod_to_chip(hub->gpio_reset); in usb251x_check_gpio_chip() 245 struct i2c_adapter *adap = hub->i2c->adapter; in usb251x_check_gpio_chip() 248 if (!hub->gpio_reset) in usb251x_check_gpio_chip() 256 dev_err(hub->dev, "Reset GPIO chip is at the same i2c-bus\n"); in usb251x_check_gpio_chip() 263 static int usb251x_check_gpio_chip(struct usb251xb *hub) in usb251x_check_gpio_chip() argument 269 static void usb251xb_reset(struct usb251xb *hub) in usb251xb_reset() argument 271 if (!hub->gpio_reset) in usb251xb_reset() [all …]
|
| D | usb3503.c | 3 * Driver for SMSC USB3503 USB 2.0 hub controller driver 55 static int usb3503_reset(struct usb3503 *hub, int state) in usb3503_reset() argument 57 if (!state && hub->connect) in usb3503_reset() 58 gpiod_set_value_cansleep(hub->connect, 0); in usb3503_reset() 60 if (hub->reset) in usb3503_reset() 61 gpiod_set_value_cansleep(hub->reset, !state); in usb3503_reset() 63 /* Wait T_HUBINIT == 4ms for hub logic to stabilize */ in usb3503_reset() 70 static int usb3503_connect(struct usb3503 *hub) in usb3503_connect() argument 72 struct device *dev = hub->dev; in usb3503_connect() 75 usb3503_reset(hub, 1); in usb3503_connect() [all …]
|
| D | usb4604.c | 3 * Driver for SMSC USB4604 USB HSIC 4-port 2.0 hub controller driver 28 static void usb4604_reset(struct usb4604 *hub, int state) in usb4604_reset() argument 30 gpiod_set_value_cansleep(hub->gpio_reset, state); in usb4604_reset() 37 static int usb4604_connect(struct usb4604 *hub) in usb4604_connect() argument 39 struct device *dev = hub->dev; in usb4604_connect() 44 usb4604_reset(hub, 1); in usb4604_connect() 48 usb4604_reset(hub, 0); in usb4604_connect() 52 hub->mode = USB4604_MODE_HUB; in usb4604_connect() 53 dev_dbg(dev, "switched to HUB mode\n"); in usb4604_connect() 58 static int usb4604_switch_mode(struct usb4604 *hub, enum usb4604_mode mode) in usb4604_switch_mode() argument [all …]
|
| /kernel/linux/linux-6.6/drivers/usb/misc/ |
| D | usb251xb.c | 3 * Driver for Microchip USB251xB USB 2.0 Hi-Speed Hub Controller 110 #define DRIVER_DESC "Microchip USB 2.0 Hi-Speed Hub Controller" 242 static int usb251x_check_gpio_chip(struct usb251xb *hub) in usb251x_check_gpio_chip() argument 244 struct gpio_chip *gc = gpiod_to_chip(hub->gpio_reset); in usb251x_check_gpio_chip() 245 struct i2c_adapter *adap = hub->i2c->adapter; in usb251x_check_gpio_chip() 248 if (!hub->gpio_reset) in usb251x_check_gpio_chip() 256 dev_err(hub->dev, "Reset GPIO chip is at the same i2c-bus\n"); in usb251x_check_gpio_chip() 263 static int usb251x_check_gpio_chip(struct usb251xb *hub) in usb251x_check_gpio_chip() argument 269 static void usb251xb_reset(struct usb251xb *hub) in usb251xb_reset() argument 271 if (!hub->gpio_reset) in usb251xb_reset() [all …]
|
| D | usb3503.c | 3 * Driver for SMSC USB3503 USB 2.0 hub controller driver 56 static int usb3503_connect(struct usb3503 *hub) in usb3503_connect() argument 58 struct device *dev = hub->dev; in usb3503_connect() 61 if (hub->regmap) { in usb3503_connect() 63 err = regmap_write(hub->regmap, USB3503_SP_ILOCK, in usb3503_connect() 72 if (hub->port_off_mask) { in usb3503_connect() 73 err = regmap_update_bits(hub->regmap, USB3503_PDS, in usb3503_connect() 74 hub->port_off_mask, in usb3503_connect() 75 hub->port_off_mask); in usb3503_connect() 83 err = regmap_update_bits(hub->regmap, USB3503_CFG1, in usb3503_connect() [all …]
|
| D | onboard_usb_hub.c | 32 * hub requires more than the currently supported supplies, add a new one here. 65 static int onboard_hub_power_on(struct onboard_hub *hub) in onboard_hub_power_on() argument 69 err = regulator_bulk_enable(hub->pdata->num_supplies, hub->supplies); in onboard_hub_power_on() 71 dev_err(hub->dev, "failed to enable supplies: %d\n", err); in onboard_hub_power_on() 75 fsleep(hub->pdata->reset_us); in onboard_hub_power_on() 76 gpiod_set_value_cansleep(hub->reset_gpio, 0); in onboard_hub_power_on() 78 hub->is_powered_on = true; in onboard_hub_power_on() 83 static int onboard_hub_power_off(struct onboard_hub *hub) in onboard_hub_power_off() argument 87 gpiod_set_value_cansleep(hub->reset_gpio, 1); in onboard_hub_power_off() 89 err = regulator_bulk_disable(hub->pdata->num_supplies, hub->supplies); in onboard_hub_power_off() [all …]
|
| D | usb4604.c | 3 * Driver for SMSC USB4604 USB HSIC 4-port 2.0 hub controller driver 28 static void usb4604_reset(struct usb4604 *hub, int state) in usb4604_reset() argument 30 gpiod_set_value_cansleep(hub->gpio_reset, state); in usb4604_reset() 37 static int usb4604_connect(struct usb4604 *hub) in usb4604_connect() argument 39 struct device *dev = hub->dev; in usb4604_connect() 44 usb4604_reset(hub, 1); in usb4604_connect() 48 usb4604_reset(hub, 0); in usb4604_connect() 52 hub->mode = USB4604_MODE_HUB; in usb4604_connect() 53 dev_dbg(dev, "switched to HUB mode\n"); in usb4604_connect() 58 static int usb4604_switch_mode(struct usb4604 *hub, enum usb4604_mode mode) in usb4604_switch_mode() argument [all …]
|
| D | onboard_usb_hub_pdevs.c | 3 * API for creating and destroying USB onboard hub platform devices 34 * @parent_hub : parent hub to scan for connected onboard hubs 35 * @pdev_list : list of onboard hub platform devices owned by the parent hub 37 * Creates a platform device for each supported onboard hub that is connected to 38 * the given parent hub. The platform device is in charge of initializing the 39 * hub (enable regulators, take the hub out of reset, ...) and can optionally 40 * control whether the hub remains powered during system suspend or not. 43 * by the parent hub. 53 * platform device for each physical onboard hub, hence for root hubs the loop 54 * is only executed for the root hub of the primary HCD. Since the function [all …]
|
| /kernel/linux/linux-6.6/drivers/platform/surface/ |
| D | surface_aggregator_hub.c | 21 /* -- SSAM generic subsystem hub driver framework. -------------------------- */ 36 int (*get_state)(struct ssam_hub *hub, enum ssam_hub_state *state); 61 int (*get_state)(struct ssam_hub *hub, enum ssam_hub_state *state); 69 struct ssam_hub *hub = container_of(work, struct ssam_hub, update_work.work); in ssam_hub_update_workfn() local 73 status = hub->ops.get_state(hub, &state); in ssam_hub_update_workfn() 78 * There is a small possibility that hub devices were hot-removed and in ssam_hub_update_workfn() 80 * the state returned by get_state() and the state of the hub will in ssam_hub_update_workfn() 86 * additional flag on the hub and, in this case, override the returned in ssam_hub_update_workfn() 87 * hub state. In case of a missed disconnect (i.e. get_state returned in ssam_hub_update_workfn() 97 if (test_and_clear_bit(SSAM_HUB_HOT_REMOVED, &hub->flags)) { in ssam_hub_update_workfn() [all …]
|
| /kernel/linux/linux-6.6/drivers/fsi/ |
| D | fsi-master-hub.c | 3 * FSI hub master driver 21 * FSI hub master support 23 * A hub master increases the number of potential target devices that the 25 * each of those links can in turn be chained to a hub master with multiple 28 * The hub is controlled by a set of control registers exposed as a regular fsi 29 * device (the hub->upstream device), and provides access to the downstream FSI 48 struct fsi_master_hub *hub = to_fsi_master_hub(master); in hub_master_read() local 53 addr += hub->addr + (link * FSI_HUB_LINK_SIZE); in hub_master_read() 54 return fsi_slave_read(hub->upstream->slave, addr, val, size); in hub_master_read() 60 struct fsi_master_hub *hub = to_fsi_master_hub(master); in hub_master_write() local [all …]
|
| /kernel/linux/linux-5.10/drivers/fsi/ |
| D | fsi-master-hub.c | 3 * FSI hub master driver 21 * FSI hub master support 23 * A hub master increases the number of potential target devices that the 25 * each of those links can in turn be chained to a hub master with multiple 28 * The hub is controlled by a set of control registers exposed as a regular fsi 29 * device (the hub->upstream device), and provides access to the downstream FSI 48 struct fsi_master_hub *hub = to_fsi_master_hub(master); in hub_master_read() local 53 addr += hub->addr + (link * FSI_HUB_LINK_SIZE); in hub_master_read() 54 return fsi_slave_read(hub->upstream->slave, addr, val, size); in hub_master_read() 60 struct fsi_master_hub *hub = to_fsi_master_hub(master); in hub_master_write() local [all …]
|
| /kernel/linux/linux-6.6/drivers/usb/core/ |
| D | hub.c | 3 * USB hub driver. 39 #include "hub.h" 74 /* workqueue to process hub events */ 78 /* synchronize hub-port add/remove and peering operations */ 106 * hub driver's behavior. On the first initialization attempt, if the 133 static int hub_port_disable(struct usb_hub *hub, int port1, int set_state); 134 static bool hub_port_warm_reset_required(struct usb_hub *hub, int port1, 137 static inline char *portspeed(struct usb_hub *hub, int portstatus) in portspeed() argument 139 if (hub_is_superspeedplus(hub->hdev)) in portspeed() 141 if (hub_is_superspeed(hub->hdev)) in portspeed() [all …]
|
| D | hub.h | 3 * usb hub driver head file 28 struct usb_hub_status hub; member 122 extern int usb_hub_create_port_device(struct usb_hub *hub, 124 extern void usb_hub_remove_port_device(struct usb_hub *hub, 126 extern int usb_hub_set_port_power(struct usb_device *hdev, struct usb_hub *hub, 129 extern void hub_get(struct usb_hub *hub); 130 extern void hub_put(struct usb_hub *hub); 131 extern int hub_port_debounce(struct usb_hub *hub, int port1, 135 extern int usb_hub_port_status(struct usb_hub *hub, int port1, 137 extern int usb_port_is_power_on(struct usb_hub *hub, unsigned int portstatus); [all …]
|
| /kernel/linux/linux-5.10/drivers/usb/core/ |
| D | hub.c | 3 * USB hub driver. 38 #include "hub.h" 61 /* workqueue to process hub events */ 65 /* synchronize hub-port add/remove and peering operations */ 93 * hub driver's behavior. On the first initialization attempt, if the 121 static int hub_port_disable(struct usb_hub *hub, int port1, int set_state); 122 static bool hub_port_warm_reset_required(struct usb_hub *hub, int port1, 125 static inline char *portspeed(struct usb_hub *hub, int portstatus) in portspeed() argument 127 if (hub_is_superspeedplus(hub->hdev)) in portspeed() 129 if (hub_is_superspeed(hub->hdev)) in portspeed() [all …]
|
| /kernel/linux/linux-5.10/drivers/hwtracing/intel_th/ |
| D | Kconfig | 3 tristate "Intel(R) Trace Hub controller" 6 Intel(R) Trace Hub (TH) is a set of hardware blocks (subdevices) that 16 Say Y here to enable Intel(R) Trace Hub controller support. 21 tristate "Intel(R) Trace Hub PCI controller" 24 Intel(R) Trace Hub may exist as a PCI device. This option enables 30 tristate "Intel(R) Trace Hub ACPI controller" 33 Intel(R) Trace Hub may exist as an ACPI device. This option enables 42 tristate "Intel(R) Trace Hub Global Trace Hub" 44 Global Trace Hub (GTH) is the central component of the 49 Say Y here to enable GTH subdevice of Intel(R) Trace Hub. [all …]
|
| /kernel/linux/linux-6.6/drivers/hwtracing/intel_th/ |
| D | Kconfig | 3 tristate "Intel(R) Trace Hub controller" 6 Intel(R) Trace Hub (TH) is a set of hardware blocks (subdevices) that 16 Say Y here to enable Intel(R) Trace Hub controller support. 21 tristate "Intel(R) Trace Hub PCI controller" 24 Intel(R) Trace Hub may exist as a PCI device. This option enables 30 tristate "Intel(R) Trace Hub ACPI controller" 33 Intel(R) Trace Hub may exist as an ACPI device. This option enables 42 tristate "Intel(R) Trace Hub Global Trace Hub" 44 Global Trace Hub (GTH) is the central component of the 49 Say Y here to enable GTH subdevice of Intel(R) Trace Hub. [all …]
|
| /kernel/linux/linux-5.10/drivers/gpu/drm/tegra/ |
| D | hub.c | 139 int tegra_display_hub_prepare(struct tegra_display_hub *hub) in tegra_display_hub_prepare() argument 149 for (i = 0; i < hub->soc->num_wgrps; i++) { in tegra_display_hub_prepare() 150 struct tegra_windowgroup *wgrp = &hub->wgrps[i]; in tegra_display_hub_prepare() 160 void tegra_display_hub_cleanup(struct tegra_display_hub *hub) in tegra_display_hub_cleanup() argument 168 for (i = 0; i < hub->soc->num_wgrps; i++) { in tegra_display_hub_cleanup() 169 struct tegra_windowgroup *wgrp = &hub->wgrps[i]; in tegra_display_hub_cleanup() 558 struct tegra_display_hub *hub = tegra->hub; in tegra_shared_plane_create() local 575 plane->wgrp = &hub->wgrps[wgrp]; in tegra_shared_plane_create() 627 tegra_display_hub_get_state(struct tegra_display_hub *hub, in tegra_display_hub_get_state() argument 632 priv = drm_atomic_get_private_obj_state(state, &hub->base); in tegra_display_hub_get_state() [all …]
|
| /kernel/linux/linux-6.6/Documentation/devicetree/bindings/usb/ |
| D | microchip,usb5744.yaml | 7 title: Microchip USB5744 4-port Hub Controller 39 3V3 power supply to the hub 43 1V2 power supply to the hub 45 peer-hub: 48 phandle to the peer hub on the controller. 53 phandle of an usb hub connected via i2c bus. 70 peer-hub: false 75 - peer-hub 85 hub: usb-hub@2d { 95 /* 2.0 hub on port 1 */ [all …]
|
| D | realtek,rts5411.yaml | 7 title: Realtek RTS5411 USB 3.0 hub controller 26 phandle to the regulator that provides power to the hub. 28 peer-hub: 31 phandle to the peer hub on the controller. 34 - peer-hub 47 /* 2.0 hub on port 1 */ 48 hub_2_0: hub@1 { 52 peer-hub = <&hub_3_0>; 55 /* 3.0 hub on port 2 */ 56 hub_3_0: hub@2 { [all …]
|
| D | ti,usb8041.yaml | 7 title: TI USB8041 USB 3.0 hub controller 29 VDD power supply to the hub 31 peer-hub: 34 phandle to the peer hub on the controller. 39 - peer-hub 52 /* 2.0 hub on port 1 */ 53 hub_2_0: hub@1 { 56 peer-hub = <&hub_3_0>; 60 /* 3.0 hub on port 2 */ 61 hub_3_0: hub@2 { [all …]
|
| D | vialab,vl817.yaml | 7 title: Via labs VL817 USB 3.1 hub controller 30 phandle to the regulator that provides power to the hub. 32 peer-hub: 35 phandle to the peer hub on the controller. 42 - peer-hub 54 /* 2.0 hub on port 1 */ 55 hub_2_0: hub@1 { 59 peer-hub = <&hub_3_0>; 63 /* 3.1 hub on port 4 */ 64 hub_3_0: hub@2 { [all …]
|
| /kernel/linux/linux-6.6/drivers/gpu/drm/tegra/ |
| D | hub.c | 156 int tegra_display_hub_prepare(struct tegra_display_hub *hub) in tegra_display_hub_prepare() argument 166 for (i = 0; i < hub->soc->num_wgrps; i++) { in tegra_display_hub_prepare() 167 struct tegra_windowgroup *wgrp = &hub->wgrps[i]; in tegra_display_hub_prepare() 177 void tegra_display_hub_cleanup(struct tegra_display_hub *hub) in tegra_display_hub_cleanup() argument 185 for (i = 0; i < hub->soc->num_wgrps; i++) { in tegra_display_hub_cleanup() 186 struct tegra_windowgroup *wgrp = &hub->wgrps[i]; in tegra_display_hub_cleanup() 763 struct tegra_display_hub *hub = tegra->hub; in tegra_shared_plane_create() local 779 plane->wgrp = &hub->wgrps[wgrp]; in tegra_shared_plane_create() 834 tegra_display_hub_get_state(struct tegra_display_hub *hub, in tegra_display_hub_get_state() argument 839 priv = drm_atomic_get_private_obj_state(state, &hub->base); in tegra_display_hub_get_state() [all …]
|
| /kernel/linux/linux-5.10/Documentation/devicetree/bindings/usb/ |
| D | usb251xb.txt | 1 Microchip USB 2.0 Hi-Speed Hub Controller 14 - reset-gpios : Should specify the gpio for hub reset 16 - skip-config : Skip Hub configuration, but only send the USB-Attach command 17 - vendor-id : Set USB Vendor ID of the hub (16 bit, default is 0x0424) 18 - product-id : Set USB Product ID of the hub (16 bit, default depends on type) 19 - device-id : Set USB Device ID of the hub (16 bit, default is 0x0bb3) 39 - compound-device : indicate the hub is part of a compound device (boolean) 49 - sp-max-total-current-microamp: Specifies max current consumed by the hub 50 from VBUS when operating in self-powered hub. It includes the hub 53 - bp-max-total-current-microamp: Specifies max current consumed by the hub [all …]
|
| /kernel/linux/linux-6.6/Documentation/ABI/testing/ |
| D | sysfs-firmware-sgi_uv | 22 The hub_type entry is used to select the type of hub which is 27 is no hub. In this case the hub_type entry is not present. 40 The uv_type entry contains the hub revision number. 55 The hubs directory contains a number of hub objects, each representing 56 a UV Hub visible to the BIOS. Each hub object's name is appended by a 59 Each hub object directory contains a number of read-only attributes:: 68 The cnode entry contains the cnode number of the corresponding hub. 71 The location entry contains the location string of the corresponding hub. 72 This value is used to physically identify a hub within a system. 74 The name entry contains the name of the corresponding hub. This name can [all …]
|
| /kernel/linux/linux-6.6/include/uapi/linux/usb/ |
| D | ch11.h | 3 * This file holds Hub protocol constants and data structures that are 4 * defined in chapter 11 (Hub Specification) of the USB 2.0 specification. 16 * From USB 2.0 spec Table 11-13, offset 7, a hub can 19 * Because the arrays need to add a bit for hub status data, we 28 * Hub request types 43 * Hub class requests 52 * Hub class additional requests defined by USB 3.0 spec 59 * Hub Class feature numbers 102 /* USB 3.0 hub remote wake mask bits, see table 10-14 */ 108 * Hub Status and Hub Change results [all …]
|