Searched +full:rcar +full:- +full:gen3 +full:- +full:usb3 +full:- +full:phy (Results 1 – 3 of 3) sorted by relevance
1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)3 ---4 $id: http://devicetree.org/schemas/phy/renesas,usb3-phy.yaml#5 $schema: http://devicetree.org/meta-schemas/core.yaml#7 title: Renesas R-Car generation 3 USB 3.0 PHY10 - Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>15 - enum:16 - renesas,r8a774a1-usb3-phy # RZ/G2M17 - renesas,r8a774b1-usb3-phy # RZ/G2N18 - renesas,r8a774e1-usb3-phy # RZ/G2H[all …]
1 # SPDX-License-Identifier: GPL-2.02 obj-$(CONFIG_PHY_R8A779F0_ETHERNET_SERDES) += r8a779f0-ether-serdes.o3 obj-$(CONFIG_PHY_RCAR_GEN2) += phy-rcar-gen2.o4 obj-$(CONFIG_PHY_RCAR_GEN3_PCIE) += phy-rcar-gen3-pcie.o5 obj-$(CONFIG_PHY_RCAR_GEN3_USB2) += phy-rcar-gen3-usb2.o6 obj-$(CONFIG_PHY_RCAR_GEN3_USB3) += phy-rcar-gen3-usb3.o
1 // SPDX-License-Identifier: GPL-2.03 * Renesas USB3.0 Peripheral driver (USB gadget)5 * Copyright (C) 2015-2017 Renesas Electronics Corporation11 #include <linux/dma-mapping.h>13 #include <linux/extcon-provider.h>18 #include <linux/phy/phy.h>37 #define USB3_DMA_CH0_CON(n) (0x030 + ((n) - 1) * 0x10) /* n = 1 to 4 */38 #define USB3_DMA_CH0_PRD_ADR(n) (0x034 + ((n) - 1) * 0x10) /* n = 1 to 4 */43 #define USB3_DRD_CON(p) ((p)->is_rzv2m ? 0x400 : 0x218)50 #define USB3_USB_OTG_STA(p) ((p)->is_rzv2m ? 0x410 : 0x268)[all …]