Home
last modified time | relevance | path

Searched full:cdns (Results 1 – 25 of 112) sorted by relevance

12345

/linux/drivers/soundwire/
H A Dcadence_master.c205 static inline u32 cdns_readl(struct sdw_cdns *cdns, int offset) in cdns_readl() argument
207 return readl(cdns->registers + offset); in cdns_readl()
210 static inline void cdns_writel(struct sdw_cdns *cdns, int offset, u32 value) in cdns_writel() argument
212 writel(value, cdns->registers + offset); in cdns_writel()
215 static inline u32 cdns_ip_readl(struct sdw_cdns *cdns, int offset) in cdns_ip_readl() argument
217 return cdns_readl(cdns, cdns->ip_offset + offset); in cdns_ip_readl()
220 static inline void cdns_ip_writel(struct sdw_cdns *cdns, int offset, u32 value) in cdns_ip_writel() argument
222 return cdns_writel(cdns, cdns->ip_offset + offset, value); in cdns_ip_writel()
225 static inline void cdns_updatel(struct sdw_cdns *cdns, in cdns_updatel() argument
230 tmp = cdns_readl(cdns, offset); in cdns_updatel()
[all …]
H A Dintel_ace2x.c52 struct sdw_cdns *cdns = &sdw->cdns; in intel_ace2x_bpt_open_stream() local
53 struct sdw_bus *bus = &cdns->bus; in intel_ace2x_bpt_open_stream()
86 if (cdns->bus.bpt_stream) { in intel_ace2x_bpt_open_stream()
87 dev_err(cdns->dev, "%s: BPT stream already exists\n", __func__); in intel_ace2x_bpt_open_stream()
95 cdns->bus.bpt_stream = stream; in intel_ace2x_bpt_open_stream()
104 pdi0 = sdw_cdns_alloc_pdi(cdns, &cdns->pcm, 1, dir, 0); in intel_ace2x_bpt_open_stream()
106 dev_err(cdns->dev, "%s: sdw_cdns_alloc_pdi0 failed\n", __func__); in intel_ace2x_bpt_open_stream()
111 sdw_cdns_config_stream(cdns, 1, dir, pdi0); in intel_ace2x_bpt_open_stream()
116 pdi1 = sdw_cdns_alloc_pdi(cdns, &cdns->pcm, 1, dir, 1); in intel_ace2x_bpt_open_stream()
118 dev_err(cdns->dev, "%s: sdw_cdns_alloc_pdi1 failed\n", __func__); in intel_ace2x_bpt_open_stream()
[all …]
H A Dintel_auxdevice.c93 struct sdw_cdns *cdns = bus_to_cdns(bus); in generic_bpt_send_async() local
94 struct sdw_intel *sdw = cdns_to_intel(cdns); in generic_bpt_send_async()
103 struct sdw_cdns *cdns = bus_to_cdns(bus); in generic_bpt_wait() local
104 struct sdw_intel *sdw = cdns_to_intel(cdns); in generic_bpt_wait()
113 struct sdw_cdns *cdns = bus_to_cdns(bus); in generic_pre_bank_switch() local
114 struct sdw_intel *sdw = cdns_to_intel(cdns); in generic_pre_bank_switch()
121 struct sdw_cdns *cdns = bus_to_cdns(bus); in generic_post_bank_switch() local
122 struct sdw_intel *sdw = cdns_to_intel(cdns); in generic_post_bank_switch()
131 struct sdw_cdns *cdns = bus_to_cdns(bus); in generic_new_peripheral_assigned() local
132 struct sdw_intel *sdw = cdns_to_intel(cdns); in generic_new_peripheral_assigned()
[all …]
H A Dcadence_master.h167 int sdw_cdns_probe(struct sdw_cdns *cdns);
172 int sdw_cdns_soft_reset(struct sdw_cdns *cdns);
173 int sdw_cdns_init(struct sdw_cdns *cdns);
174 int sdw_cdns_pdi_init(struct sdw_cdns *cdns,
176 int sdw_cdns_exit_reset(struct sdw_cdns *cdns);
177 int sdw_cdns_enable_interrupt(struct sdw_cdns *cdns, bool state);
179 bool sdw_cdns_is_clock_stop(struct sdw_cdns *cdns);
180 int sdw_cdns_clock_stop(struct sdw_cdns *cdns, bool block_wake);
181 int sdw_cdns_clock_restart(struct sdw_cdns *cdns, bool bus_reset);
184 void sdw_cdns_debugfs_init(struct sdw_cdns *cdns, struct dentry *root);
[all …]
/linux/drivers/usb/cdns3/
H A Ddrd.h212 bool cdns_is_host(struct cdns *cdns);
213 bool cdns_is_device(struct cdns *cdns);
214 int cdns_get_id(struct cdns *cdns);
215 int cdns_get_vbus(struct cdns *cdns);
216 void cdns_clear_vbus(struct cdns *cdns);
217 void cdns_set_vbus(struct cdns *cdns);
218 int cdns_drd_init(struct cdns *cdns);
219 int cdns_drd_exit(struct cdns *cdns);
220 int cdns_drd_update_mode(struct cdns *cdns);
221 int cdns_drd_gadget_on(struct cdns *cdns);
[all …]
H A Dcdnsp-gadget.c153 struct cdns *cdns = dev_get_drvdata(pdev->dev); in cdnsp_set_apb_timeout_value() local
159 if (!cdns->override_apb_timeout) in cdnsp_set_apb_timeout_value()
167 val = CHICKEN_APB_TIMEOUT_SET(val, cdns->override_apb_timeout); in cdnsp_set_apb_timeout_value()
1590 struct cdns *cdns = dev_get_drvdata(pdev->dev); in cdnsp_gadget_pullup() local
1599 disable_irq(cdns->dev_irq); in cdnsp_gadget_pullup()
1604 cdns_clear_vbus(cdns); in cdnsp_gadget_pullup()
1606 cdns_set_vbus(cdns); in cdnsp_gadget_pullup()
1610 enable_irq(cdns->dev_irq); in cdnsp_gadget_pullup()
1917 static int __cdnsp_gadget_init(struct cdns *cdns) in __cdnsp_gadget_init() argument
1923 cdns_drd_gadget_on(cdns); in __cdnsp_gadget_init()
[all …]
/linux/drivers/gpu/drm/bridge/cadence/
H A DMakefile2 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/Documentation/devicetree/bindings/phy/
H A Dphy-cadence-torrent.yaml22 - cdns,torrent-phy
97 cdns,phy-type:
104 cdns,num-lanes:
111 cdns,ssc-mode:
120 cdns,max-bit-rate:
131 - cdns,phy-type
132 - cdns,num-lanes
158 compatible = "cdns,torrent-phy";
173 cdns,phy-type = <PHY_TYPE_DP>;
174 cdns,num-lanes = <4>;
[all …]
/linux/Documentation/devicetree/bindings/pci/
H A Dcdns,cdns-pcie-ep.yaml4 $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>;
/linux/arch/arm64/boot/dts/axiado/
H A Dax3000.dtsi129 compatible = "axiado,ax3000-gpio", "cdns,gpio-r1p02";
142 compatible = "axiado,ax3000-gpio", "cdns,gpio-r1p02";
155 compatible = "axiado,ax3000-gpio", "cdns,gpio-r1p02";
168 compatible = "axiado,ax3000-gpio", "cdns,gpio-r1p02";
181 compatible = "axiado,ax3000-gpio", "cdns,gpio-r1p02";
194 compatible = "axiado,ax3000-gpio", "cdns,gpio-r1p02";
207 compatible = "axiado,ax3000-gpio", "cdns,gpio-r1p02";
220 compatible = "axiado,ax3000-gpio", "cdns,gpio-r1p02";
234 compatible = "axiado,ax3000-i3c", "cdns,i3c-master";
248 compatible = "axiado,ax3000-i3c", "cdns,i3c-master";
[all …]
/linux/Documentation/devicetree/bindings/spi/
H A Dcdns,qspi-nor-peripheral-props.yaml4 $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/Documentation/devicetree/bindings/ufs/
H A Dcdns,ufshc.yaml4 $id: http://devicetree.org/schemas/ufs/cdns,ufshc.yaml#
18 - cdns,ufshc
19 - cdns,ufshc-m31-16nm
30 - cdns,ufshc
31 # CDNS UFS HC + M31 16nm PHY
32 - cdns,ufshc-m31-16nm
67 compatible = "cdns,ufshc", "jedec,ufs-2.0";
/linux/arch/arm/boot/dts/intel/socfpga/
H A Dsocfpga_arria10_socdk_qspi.dts20 cdns,read-delay = <3>;
21 cdns,tshsl-ns = <50>;
22 cdns,tsd2d-ns = <50>;
23 cdns,tchsh-ns = <4>;
24 cdns,tslch-ns = <4>;
H A Dsocfpga_cyclone5_vining_fpga.dts232 cdns,read-delay = <4>;
233 cdns,tshsl-ns = <50>;
234 cdns,tsd2d-ns = <50>;
235 cdns,tchsh-ns = <4>;
236 cdns,tslch-ns = <4>;
247 cdns,read-delay = <4>;
248 cdns,tshsl-ns = <50>;
249 cdns,tsd2d-ns = <50>;
250 cdns,tchsh-ns = <4>;
251 cdns,tslch-ns = <4>;
H A Dsocfpga_cyclone5_socrates.dts87 cdns,read-delay = <4>;
88 cdns,tshsl-ns = <50>;
89 cdns,tsd2d-ns = <50>;
90 cdns,tchsh-ns = <4>;
91 cdns,tslch-ns = <4>;
H A Dsocfpga_cyclone5_sodia.dts126 cdns,read-delay = <4>;
127 cdns,tshsl-ns = <50>;
128 cdns,tsd2d-ns = <50>;
129 cdns,tchsh-ns = <4>;
130 cdns,tslch-ns = <4>;
H A Dsocfpga_arria5_socdk.dts127 cdns,read-delay = <4>;
128 cdns,tshsl-ns = <50>;
129 cdns,tsd2d-ns = <50>;
130 cdns,tchsh-ns = <4>;
131 cdns,tslch-ns = <4>;
/linux/arch/arm64/boot/dts/amd/
H A Delba.dtsi82 compatible = "amd,pensando-elba-qspi", "cdns,qspi-nor";
89 cdns,fifo-depth = <1024>;
90 cdns,fifo-width = <4>;
91 cdns,trigger-address = <0x7fff0000>;
173 compatible = "amd,pensando-elba-sd4hc", "cdns,sd4hc";
178 cdns,phy-input-delay-sd-highspeed = <0x4>;
179 cdns,phy-input-delay-legacy = <0x4>;
180 cdns,phy-input-delay-sd-uhs-sdr50 = <0x6>;
181 cdns,phy-input-delay-sd-uhs-ddr50 = <0x16>;
H A Delba-asic-common.dtsi31 cdns,read-delay = <0>;
32 cdns,tshsl-ns = <0>;
33 cdns,tsd2d-ns = <0>;
34 cdns,tchsh-ns = <0>;
35 cdns,tslch-ns = <0>;
/linux/arch/xtensa/boot/dts/
H A Dcsp.dts5 compatible = "cdns,xtensa-xtfpga";
11 …bootargs = "earlycon=cdns,0xfd000000,115200 console=tty0 console=ttyPS0,115200 root=/dev/ram0 rw e…
23 compatible = "cdns,xtensa-cpu";
29 compatible = "cdns,xtensa-pic";
48 compatible = "xlnx,xuartps", "cdns,uart-r1p8";
H A Dxtfpga.dtsi3 compatible = "cdns,xtensa-xtfpga";
21 compatible = "cdns,xtensa-cpu";
28 compatible = "cdns,xtensa-pic";
53 compatible = "cdns,xtfpga-clock";
80 compatible = "cdns,xtfpga-i2s";
107 compatible = "cdns,xtfpga-spi";
/linux/Documentation/devicetree/bindings/serial/
H A Dcdns,uart.yaml4 $id: http://devicetree.org/schemas/serial/cdns,uart.yaml#
18 - const: cdns,uart-r1p8
23 - const: cdns,uart-r1p12
67 const: cdns,uart-r1p8
77 compatible = "xlnx,xuartps", "cdns,uart-r1p8";
/linux/Documentation/devicetree/bindings/interrupt-controller/
H A Dcdns,xtensa-pic.yaml6 $id: http://devicetree.org/schemas/interrupt-controller/cdns,xtensa-pic.yaml#
21 - cdns,xtensa-mx
22 - cdns,xtensa-pic
43 compatible = "cdns,xtensa-pic";
/linux/Documentation/devicetree/bindings/timer/
H A Dcdns,ttc.yaml4 $id: http://devicetree.org/schemas/timer/cdns,ttc.yaml#
14 const: cdns,ttc
59 compatible = "cdns,ttc";
67 compatible = "cdns,ttc";
/linux/Documentation/devicetree/bindings/display/bridge/
H A Dcdns,dsi.yaml4 $id: http://devicetree.org/schemas/display/bridge/cdns,dsi.yaml#
13 CDNS DSI is a bridge device which converts DPI to DSI
18 - cdns,dsi
112 compatible = "cdns,dsi";
149 compatible = "cdns,dsi";

12345