Searched +full:dis +full:- +full:tx +full:- +full:ipgap +full:- +full:linecheck +full:- +full:quirk (Results  1 – 8 of 8) sorted by relevance
| /freebsd/sys/contrib/device-tree/Bindings/usb/ | 
| H A D | dwc3.txt | 3 DWC3- USB3 CONTROLLER. Complies to the generic USB binding properties7  - compatible: must be "snps,dwc3"
 8  - reg : Address and length of the register set for the device
 9  - interrupts: Interrupts used by the dwc3 controller.
 10  - clock-names: list of clock names. Ideally should be "ref",
 12  - clocks: list of phandle and clock specifier pairs corresponding to
 13            entries in the clock-names property.
 16   clocks are optional if the parent node (i.e. glue-layer) is compatible to
 18     "cavium,octeon-7130-usb-uctl"
 20     "samsung,exynos5250-dwusb3"
 [all …]
 
 | 
| H A D | rockchip,rk3399-dwc3.yaml | 1 # SPDX-License-Identifier: GPL-2.03 ---
 4 $id: http://devicetree.org/schemas/usb/rockchip,rk3399-dwc3.yaml#
 5 $schema: http://devicetree.org/meta-schemas/core.yaml#
 10   - Heiko Stuebner <heiko@sntech.de>
 14     const: rockchip,rk3399-dwc3
 16   '#address-cells':
 19   '#size-cells':
 26       - description:
 28       - description:
 [all …]
 
 | 
| H A D | snps,dwc3.yaml | 1 # SPDX-License-Identifier: GPL-2.03 ---
 5 $schema: http://devicetree.org/meta-schemas/core.yaml#
 10   - Felipe Balbi <balbi@kernel.org>
 14   be presented as a standalone DT node with an optional vendor-specific
 18   - $ref: usb-drd.yaml#
 19   - if:
 25         - dr_mode
 29       $ref: usb-xhci.yaml#
 35         - const: snps,dwc3
 [all …]
 
 | 
| /freebsd/sys/contrib/device-tree/src/arm64/rockchip/ | 
| H A D | rk3588-extra.dtsi | 1 // SPDX-License-Identifier: (GPL-2.0+ OR MIT)6 #include "rk3588-base.dtsi"
 7 #include "rk3588-extra-pinctrl.dtsi"
 11 		compatible = "rockchip,rk3588-dwc3", "snps,dwc3";
 16 		clock-names = "ref_clk", "suspend_clk", "bus_clk";
 19 		phy-names = "usb2-phy", "usb3-phy";
 21 		power-domains = <&power RK3588_PD_USB>;
 24 		snps,dis-u2-freeclk-exists-quirk;
 25 		snps,dis-del-phy-power-chg-quirk;
 26 		snps,dis-tx-ipgap-linecheck-quirk;
 [all …]
 
 | 
| H A D | rk3588-base.dtsi | 1 // SPDX-License-Identifier: (GPL-2.0+ OR MIT)6 #include <dt-bindings/clock/rockchip,rk3588-cru.h>
 7 #include <dt-bindings/interrupt-controller/arm-gic.h>
 8 #include <dt-bindings/interrupt-controller/irq.h>
 9 #include <dt-bindings/power/rk3588-power.h>
 10 #include <dt-bindings/reset/rockchip,rk3588-cru.h>
 11 #include <dt-bindings/phy/phy.h>
 12 #include <dt-bindings/ata/ahci.h>
 13 #include <dt-bindings/thermal/thermal.h>
 18 	interrupt-parent = <&gic>;
 [all …]
 
 | 
| H A D | rk3399-base.dtsi | 1 // SPDX-License-Identifier: (GPL-2.0+ OR MIT)6 #include <dt-bindings/clock/rk3399-cru.h>
 7 #include <dt-bindings/gpio/gpio.h>
 8 #include <dt-bindings/interrupt-controller/arm-gic.h>
 9 #include <dt-bindings/interrupt-controller/irq.h>
 10 #include <dt-bindings/pinctrl/rockchip.h>
 11 #include <dt-bindings/power/rk3399-power.h>
 12 #include <dt-bindings/thermal/thermal.h>
 17 	interrupt-parent = <&gic>;
 18 	#address-cells = <2>;
 [all …]
 
 | 
| H A D | rk3328.dtsi | 1 // SPDX-License-Identifier: (GPL-2.0+ OR MIT)6 #include <dt-bindings/clock/rk3328-cru.h>
 7 #include <dt-bindings/gpio/gpio.h>
 8 #include <dt-bindings/interrupt-controller/arm-gic.h>
 9 #include <dt-bindings/interrupt-controller/irq.h>
 10 #include <dt-bindings/pinctrl/rockchip.h>
 11 #include <dt-bindings/power/rk3328-power.h>
 12 #include <dt-bindings/soc/rockchip,boot-mode.h>
 13 #include <dt-bindings/thermal/thermal.h>
 18 	interrupt-parent = <&gic>;
 [all …]
 
 | 
| /freebsd/sys/dev/usb/controller/dwc3/ | 
| H A D | dwc3.c | 1 /*-2  * SPDX-License-Identifier: BSD-2-Clause
 5  * Copyright (c) 2021-2022 Bjoern A. Zeeb <bz@FreeBSD.ORG>
 95     bus_space_write_4(_sc->bst, _sc->bsh, _off, _val)
 97     bus_space_read_4(_sc->bst, _sc->bsh, _off)
 106 	USB_BUS_UNLOCK(&sc->sc_bus);  in xhci_interrupt_poll()
 108 	USB_BUS_LOCK(&sc->sc_bus);  in xhci_interrupt_poll()
 109 	usb_callout_reset(&sc->sc_callout, 1, (void *)&xhci_interrupt_poll, sc);  in xhci_interrupt_poll()
 116 	struct xhci_softc *sc = &snps_sc->sc;  in snps_dwc3_attach_xhci()
 119 	sc->sc_io_res = snps_sc->mem_res;  in snps_dwc3_attach_xhci()
 [all …]
 
 |