Skip to content

Commit 090472e

Browse files
committed
Merge tag 'usb-6.7-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb
Pull USB / PHY / Thunderbolt fixes from Greg KH: "Here are a number of reverts, fixes, and new device ids for 6.7-rc3 for the USB, PHY, and Thunderbolt driver subsystems. Include in here are: - reverts of some PHY drivers that went into 6.7-rc1 that shouldn't have been merged yet, the author is reworking them based on review comments as they were using older apis that shouldn't be used anymore for newer drivers - small thunderbolt driver fixes for reported issues - USB driver fixes for a variety of small issues in dwc3, typec, xhci, and other smaller drivers. - new device ids for usb-serial and onboard_usb_hub drivers. All of these have been in linux-next with no reported issues" * tag 'usb-6.7-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb: (33 commits) USB: serial: option: add Luat Air72*U series products USB: dwc3: qcom: fix ACPI platform device leak USB: dwc3: qcom: fix software node leak on probe errors USB: dwc3: qcom: fix resource leaks on probe deferral USB: dwc3: qcom: simplify wakeup interrupt setup USB: dwc3: qcom: fix wakeup after probe deferral dt-bindings: usb: qcom,dwc3: fix example wakeup interrupt types usb: misc: onboard-hub: add support for Microchip USB5744 dt-bindings: usb: microchip,usb5744: Add second supply usb: misc: ljca: Fix enumeration error on Dell Latitude 9420 USB: serial: option: add Fibocom L7xx modules USB: xhci-plat: fix legacy PHY double init usb: typec: tipd: Supply also I2C driver data usb: xhci-mtk: fix in-ep's start-split check failure usb: dwc3: set the dma max_seg_size usb: config: fix iteration issue in 'usb_get_bos_descriptor()' usb: dwc3: add missing of_node_put and platform_device_put USB: dwc2: write HCINT with INTMASK applied usb: misc: ljca: Drop _ADR support to get ljca children devices usb: cdnsp: Fix deadlock issue during using NCM gadget ...
2 parents b46ae77 + cb9a830 commit 090472e

File tree

29 files changed

+175
-2245
lines changed

29 files changed

+175
-2245
lines changed

Documentation/devicetree/bindings/usb/microchip,usb5744.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,11 @@ properties:
3636

3737
vdd-supply:
3838
description:
39-
VDD power supply to the hub
39+
3V3 power supply to the hub
40+
41+
vdd2-supply:
42+
description:
43+
1V2 power supply to the hub
4044

4145
peer-hub:
4246
$ref: /schemas/types.yaml#/definitions/phandle
@@ -62,6 +66,7 @@ allOf:
6266
properties:
6367
reset-gpios: false
6468
vdd-supply: false
69+
vdd2-supply: false
6570
peer-hub: false
6671
i2c-bus: false
6772
else:

Documentation/devicetree/bindings/usb/qcom,dwc3.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -521,8 +521,8 @@ examples:
521521
522522
interrupts = <GIC_SPI 131 IRQ_TYPE_LEVEL_HIGH>,
523523
<GIC_SPI 486 IRQ_TYPE_LEVEL_HIGH>,
524-
<GIC_SPI 488 IRQ_TYPE_LEVEL_HIGH>,
525-
<GIC_SPI 489 IRQ_TYPE_LEVEL_HIGH>;
524+
<GIC_SPI 488 IRQ_TYPE_EDGE_BOTH>,
525+
<GIC_SPI 489 IRQ_TYPE_EDGE_BOTH>;
526526
interrupt-names = "hs_phy_irq", "ss_phy_irq",
527527
"dm_hs_phy_irq", "dp_hs_phy_irq";
528528

Documentation/devicetree/bindings/usb/usb-hcd.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ examples:
4141
- |
4242
usb {
4343
phys = <&usb2_phy1>, <&usb3_phy1>;
44-
phy-names = "usb";
44+
phy-names = "usb2", "usb3";
4545
#address-cells = <1>;
4646
#size-cells = <0>;
4747

drivers/phy/Kconfig

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,6 @@ source "drivers/phy/motorola/Kconfig"
8787
source "drivers/phy/mscc/Kconfig"
8888
source "drivers/phy/qualcomm/Kconfig"
8989
source "drivers/phy/ralink/Kconfig"
90-
source "drivers/phy/realtek/Kconfig"
9190
source "drivers/phy/renesas/Kconfig"
9291
source "drivers/phy/rockchip/Kconfig"
9392
source "drivers/phy/samsung/Kconfig"

drivers/phy/Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ obj-y += allwinner/ \
2626
mscc/ \
2727
qualcomm/ \
2828
ralink/ \
29-
realtek/ \
3029
renesas/ \
3130
rockchip/ \
3231
samsung/ \

drivers/phy/realtek/Kconfig

Lines changed: 0 additions & 32 deletions
This file was deleted.

drivers/phy/realtek/Makefile

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)