/linux-6.3-rc2/drivers/usb/cdns3/ |
A D | drd.c | 86 int cdns_get_id(struct cdns *cdns) in cdns_get_id() argument 96 int cdns_get_vbus(struct cdns *cdns) in cdns_get_vbus() argument 106 void cdns_clear_vbus(struct cdns *cdns) in cdns_clear_vbus() argument 119 void cdns_set_vbus(struct cdns *cdns) in cdns_set_vbus() argument 132 bool cdns_is_host(struct cdns *cdns) in cdns_is_host() argument 142 bool cdns_is_device(struct cdns *cdns) in cdns_is_device() argument 178 int cdns_drd_host_on(struct cdns *cdns) in cdns_drd_host_on() argument 334 struct cdns *cdns = data; in cdns_drd_thread_irq() local 352 struct cdns *cdns = data; in cdns_drd_irq() local 384 int cdns_drd_init(struct cdns *cdns) in cdns_drd_init() argument [all …]
|
A D | core.c | 26 static int cdns_idle_init(struct cdns *cdns); 46 ret = cdns->roles[role]->start(cdns); in cdns_role_start() 65 cdns->roles[role]->stop(cdns); in cdns_role_stop() 156 ret = cdns->gadget_init(cdns); in cdns_core_init_role() 407 struct cdns *cdns = data; in cdns_wakeup_irq() local 427 int cdns_init(struct cdns *cdns) in cdns_init() argument 460 dev_name(cdns->dev), cdns); in cdns_init() 497 int cdns_remove(struct cdns *cdns) in cdns_remove() argument 507 int cdns_suspend(struct cdns *cdns) in cdns_suspend() argument 517 cdns->roles[cdns->role]->suspend(cdns, false); in cdns_suspend() [all …]
|
A D | cdns3-plat.c | 25 static int set_phy_power_on(struct cdns *cdns) in set_phy_power_on() argument 40 static void set_phy_power_off(struct cdns *cdns) in set_phy_power_off() argument 56 struct cdns *cdns; in cdns3_plat_probe() local 60 cdns = devm_kzalloc(dev, sizeof(*cdns), GFP_KERNEL); in cdns3_plat_probe() 61 if (!cdns) in cdns3_plat_probe() 180 struct cdns *cdns = platform_get_drvdata(pdev); in cdns3_plat_remove() local 198 struct cdns *cdns = dev_get_drvdata(dev); in cdns3_set_platform_suspend() local 201 if (cdns->pdata && cdns->pdata->platform_suspend) in cdns3_set_platform_suspend() 209 struct cdns *cdns = dev_get_drvdata(dev); in cdns3_controller_suspend() local 233 struct cdns *cdns = dev_get_drvdata(dev); in cdns3_controller_resume() local [all …]
|
A D | core.h | 17 struct cdns; 30 int (*start)(struct cdns *cdns); 31 void (*stop)(struct cdns *cdns); 32 int (*suspend)(struct cdns *cdns, bool do_wakeup); 33 int (*resume)(struct cdns *cdns, bool hibernated); 120 int (*gadget_init)(struct cdns *cdns); argument 123 int cdns_hw_role_switch(struct cdns *cdns); 124 int cdns_init(struct cdns *cdns); 125 int cdns_remove(struct cdns *cdns); 129 int cdns_suspend(struct cdns *cdns); [all …]
|
A D | host.c | 60 static int __cdns_host_init(struct cdns *cdns) in __cdns_host_init() argument 66 cdns_drd_host_on(cdns); in __cdns_host_init() 74 xhci->dev.parent = cdns->dev; in __cdns_host_init() 75 cdns->host_dev = xhci; in __cdns_host_init() 86 if (!cdns->xhci_plat_data) { in __cdns_host_init() 91 if (cdns->pdata && (cdns->pdata->quirks & CDNS3_DEFAULT_PM_RUNTIME_ALLOW)) in __cdns_host_init() 113 kfree(cdns->xhci_plat_data); in __cdns_host_init() 119 static void cdns_host_exit(struct cdns *cdns) in cdns_host_exit() argument 123 cdns->host_dev = NULL; in cdns_host_exit() 124 cdns_drd_host_off(cdns); in cdns_host_exit() [all …]
|
A D | drd.h | 205 bool cdns_is_host(struct cdns *cdns); 206 bool cdns_is_device(struct cdns *cdns); 207 int cdns_get_id(struct cdns *cdns); 208 int cdns_get_vbus(struct cdns *cdns); 209 void cdns_clear_vbus(struct cdns *cdns); 210 void cdns_set_vbus(struct cdns *cdns); 211 int cdns_drd_init(struct cdns *cdns); 212 int cdns_drd_exit(struct cdns *cdns); 214 int cdns_drd_gadget_on(struct cdns *cdns); 216 int cdns_drd_host_on(struct cdns *cdns); [all …]
|
A D | gadget-export.h | 15 int cdnsp_gadget_init(struct cdns *cdns); 18 static inline int cdnsp_gadget_init(struct cdns *cdns) in cdnsp_gadget_init() argument 27 int cdns3_gadget_init(struct cdns *cdns); 30 static inline int cdns3_gadget_init(struct cdns *cdns) in cdns3_gadget_init() argument
|
A D | host-export.h | 14 int cdns_host_init(struct cdns *cdns); 18 static inline int cdns_host_init(struct cdns *cdns) in cdns_host_init() argument 23 static inline void cdns_host_exit(struct cdns *cdns) { } in cdns_host_exit() argument
|
A D | cdnsp-pci.c | 64 struct cdns *cdnsp; in cdnsp_pci_probe() 186 struct cdns *cdnsp; in cdnsp_pci_remove() 190 cdnsp = (struct cdns *)pci_get_drvdata(pdev); in cdnsp_pci_remove() 206 struct cdns *cdns = dev_get_drvdata(dev); in cdnsp_pci_suspend() local 208 return cdns_suspend(cdns); in cdnsp_pci_suspend() 213 struct cdns *cdns = dev_get_drvdata(dev); in cdnsp_pci_resume() local 217 spin_lock_irqsave(&cdns->lock, flags); in cdnsp_pci_resume() 218 ret = cdns_resume(cdns, 1); in cdnsp_pci_resume() 219 spin_unlock_irqrestore(&cdns->lock, flags); in cdnsp_pci_resume()
|
/linux-6.3-rc2/drivers/soundwire/ |
A D | cadence_master.c | 384 bus = &cdns->bus; in cdns_parity_error_injection() 456 unsigned int pdi_out_num = cdns->pcm.num_bd + cdns->pcm.num_out; in cdns_set_pdi_loopback_source() 473 unsigned int pdi_in_num = cdns->pcm.num_bd + cdns->pcm.num_in; in cdns_set_pdi_loopback_target() 576 cdns->response_buf[i] = cdns_readl(cdns, cmd_base); in cdns_read_response() 592 cdns->msg_count = count; in _cdns_xfer_msg() 624 cdns_read_response(cdns); in _cdns_xfer_msg() 867 if (!cdns->link_up) in sdw_cdns_irq() 956 struct sdw_cdns *cdns = in cdns_update_slave_status_work() local 1233 stream = &cdns->pcm; in sdw_cdns_pdi_init() 1323 cdns->msg_count = cdns_readl(cdns, CDNS_MCP_FIFOLEVEL); in sdw_cdns_init() [all …]
|
A D | intel.c | 726 struct sdw_cdns *cdns = &sdw->cdns; in intel_pre_bank_switch() local 740 struct sdw_cdns *cdns = &sdw->cdns; in intel_post_bank_switch() local 804 pdi = sdw_cdns_alloc_pdi(cdns, &cdns->pcm, ch, dir, dai->id); in intel_hw_params() 1123 struct sdw_cdns *cdns = &sdw->cdns; in intel_register_dai() local 1153 ret = intel_create_dai(cdns, dais, INTEL_PDI_IN, cdns->pcm.num_in, in intel_register_dai() 1159 ret = intel_create_dai(cdns, dais, INTEL_PDI_OUT, cdns->pcm.num_out, in intel_register_dai() 1165 ret = intel_create_dai(cdns, dais, INTEL_PDI_BD, cdns->pcm.num_bd, in intel_register_dai() 1177 struct sdw_cdns *cdns = &sdw->cdns; in intel_start_bus() local 1226 struct sdw_cdns *cdns = &sdw->cdns; in intel_start_bus_after_reset() local 1320 struct sdw_cdns *cdns = &sdw->cdns; in intel_start_bus_after_clock_stop() local [all …]
|
A D | intel_auxdevice.c | 132 struct sdw_cdns *cdns; in intel_link_probe() local 140 cdns = &sdw->cdns; in intel_link_probe() 141 bus = &cdns->bus; in intel_link_probe() 145 cdns->dev = dev; in intel_link_probe() 147 cdns->instance = sdw->instance; in intel_link_probe() 148 cdns->msg_count = 0; in intel_link_probe() 154 sdw_cdns_probe(cdns); in intel_link_probe() 192 struct sdw_bus *bus = &cdns->bus; in intel_link_startup() 295 struct sdw_bus *bus = &cdns->bus; in intel_link_remove() 316 bus = &sdw->cdns.bus; in intel_link_process_wakeen_event() [all …]
|
A D | cadence_master.h | 158 int sdw_cdns_probe(struct sdw_cdns *cdns); 163 int sdw_cdns_init(struct sdw_cdns *cdns); 164 int sdw_cdns_pdi_init(struct sdw_cdns *cdns, 166 int sdw_cdns_exit_reset(struct sdw_cdns *cdns); 167 int sdw_cdns_enable_interrupt(struct sdw_cdns *cdns, bool state); 169 bool sdw_cdns_is_clock_stop(struct sdw_cdns *cdns); 170 int sdw_cdns_clock_stop(struct sdw_cdns *cdns, bool block_wake); 171 int sdw_cdns_clock_restart(struct sdw_cdns *cdns, bool bus_reset); 174 void sdw_cdns_debugfs_init(struct sdw_cdns *cdns, struct dentry *root); 177 struct sdw_cdns_pdi *sdw_cdns_alloc_pdi(struct sdw_cdns *cdns, [all …]
|
/linux-6.3-rc2/drivers/gpu/drm/bridge/cadence/ |
A D | Makefile | 2 obj-$(CONFIG_DRM_CDNS_DSI) += cdns-dsi.o 3 cdns-dsi-y := cdns-dsi-core.o 4 cdns-dsi-$(CONFIG_DRM_CDNS_DSI_J721E) += cdns-dsi-j721e.o 5 obj-$(CONFIG_DRM_CDNS_MHDP8546) += cdns-mhdp8546.o 6 cdns-mhdp8546-y := cdns-mhdp8546-core.o cdns-mhdp8546-hdcp.o 7 cdns-mhdp8546-$(CONFIG_DRM_CDNS_MHDP8546_J721E) += cdns-mhdp8546-j721e.o
|
/linux-6.3-rc2/Documentation/devicetree/bindings/spi/ |
A D | cdns,qspi-nor.yaml | 33 - const: cdns,qspi-nor 34 - const: cdns,qspi-nor 47 cdns,fifo-depth: 54 cdns,fifo-width: 60 cdns,trigger-address: 65 cdns,is-decoded-cs: 71 cdns,rclk-en: 95 - cdns,fifo-depth 96 - cdns,fifo-width 97 - cdns,trigger-address [all …]
|
A D | cdns,qspi-nor-peripheral-props.yaml | 4 $id: http://devicetree.org/schemas/spi/cdns,qspi-nor-peripheral-props.yaml# 16 # cdns,qspi-nor.yaml 17 cdns,read-delay: 22 cdns,tshsl-ns: 27 cdns,tsd2d-ns: 32 cdns,tchsh-ns: 37 cdns,tslch-ns:
|
/linux-6.3-rc2/Documentation/devicetree/bindings/pci/ |
A D | cdns,cdns-pcie-ep.yaml | 4 $id: http://devicetree.org/schemas/pci/cdns,cdns-pcie-ep.yaml# 13 - $ref: "cdns-pcie-ep.yaml#" 17 const: cdns,cdns-pcie-ep 40 compatible = "cdns,cdns-pcie-ep"; 44 cdns,max-outbound-regions = <16>;
|
A D | cdns,cdns-pcie-host.yaml | 4 $id: http://devicetree.org/schemas/pci/cdns,cdns-pcie-host.yaml# 14 - $ref: "cdns-pcie-host.yaml#" 18 const: cdns,cdns-pcie-host 43 compatible = "cdns,cdns-pcie-host";
|
/linux-6.3-rc2/Documentation/devicetree/bindings/net/ |
A D | cdns,macb.yaml | 4 $id: http://devicetree.org/schemas/net/cdns,macb.yaml# 19 - const: cdns,emac # Generic 25 - const: cdns,gem # Generic 33 - const: cdns,gem # Generic 40 - const: cdns,macb # Generic 47 - const: cdns,macb # Generic 54 - cdns,np4-macb # NP4 SoC devices 58 - cdns,emac # Generic 59 - cdns,gem # Generic 60 - cdns,macb # Generic [all …]
|
/linux-6.3-rc2/Documentation/devicetree/bindings/phy/ |
A D | phy-cadence-torrent.yaml | 22 - cdns,torrent-phy 98 cdns,phy-type: 106 cdns,num-lanes: 113 cdns,ssc-mode: 122 cdns,max-bit-rate: 133 - cdns,phy-type 134 - cdns,num-lanes 176 cdns,num-lanes = <4>; 177 cdns,max-bit-rate = <8100>; 204 cdns,num-lanes = <2>; [all …]
|
/linux-6.3-rc2/arch/arm/boot/dts/ |
A D | socfpga_arria10_socdk_qspi.dts | 20 cdns,page-size = <256>; 21 cdns,block-size = <16>; 22 cdns,read-delay = <3>; 23 cdns,tshsl-ns = <50>; 24 cdns,tsd2d-ns = <50>; 25 cdns,tchsh-ns = <4>; 26 cdns,tslch-ns = <4>;
|
A D | socfpga_cyclone5_vining_fpga.dts | 232 cdns,page-size = <256>; 234 cdns,read-delay = <4>; 235 cdns,tshsl-ns = <50>; 236 cdns,tsd2d-ns = <50>; 237 cdns,tchsh-ns = <4>; 238 cdns,tslch-ns = <4>; 251 cdns,read-delay = <4>; 252 cdns,tshsl-ns = <50>; 253 cdns,tsd2d-ns = <50>; 254 cdns,tchsh-ns = <4>; [all …]
|
A D | socfpga_cyclone5_sodia.dts | 124 cdns,page-size = <256>; 125 cdns,block-size = <16>; 126 cdns,read-delay = <4>; 127 cdns,tshsl-ns = <50>; 128 cdns,tsd2d-ns = <50>; 129 cdns,tchsh-ns = <4>; 130 cdns,tslch-ns = <4>;
|
/linux-6.3-rc2/Documentation/devicetree/bindings/mmc/ |
A D | cdns,sdhci.yaml | 21 - const: cdns,sd4hc 40 cdns,phy-input-delay-sd-highspeed: 46 cdns,phy-input-delay-legacy: 52 cdns,phy-input-delay-sd-uhs-sdr12: 58 cdns,phy-input-delay-sd-uhs-sdr25: 64 cdns,phy-input-delay-sd-uhs-sdr50: 70 cdns,phy-input-delay-sd-uhs-ddr50: 82 cdns,phy-input-delay-mmc-ddr: 93 cdns,phy-dll-delay-sdclk: 101 cdns,phy-dll-delay-sdclk-hsmmc: [all …]
|
/linux-6.3-rc2/Documentation/devicetree/bindings/ufs/ |
A D | cdns,ufshc.yaml | 4 $id: http://devicetree.org/schemas/ufs/cdns,ufshc.yaml# 18 - cdns,ufshc 19 - cdns,ufshc-m31-16nm 30 - cdns,ufshc 32 - cdns,ufshc-m31-16nm 67 compatible = "cdns,ufshc", "jedec,ufs-2.0";
|