Home
last modified time | relevance | path

Searched refs:ssi_np (Results 1 – 6 of 6) sorted by relevance

/Linux-v4.19/sound/soc/fsl/
Deukrea-tlv320.c90 struct device_node *ssi_np = NULL, *codec_np = NULL; in eukrea_tlv320_probe() local
102 ssi_np = of_parse_phandle(pdev->dev.of_node, in eukrea_tlv320_probe()
104 if (!ssi_np) { in eukrea_tlv320_probe()
111 codec_np = of_parse_phandle(ssi_np, "codec-handle", 0); in eukrea_tlv320_probe()
137 eukrea_tlv320_dai.cpu_of_node = ssi_np; in eukrea_tlv320_probe()
138 eukrea_tlv320_dai.platform_of_node = ssi_np; in eukrea_tlv320_probe()
202 of_node_put(ssi_np); in eukrea_tlv320_probe()
Dimx-sgtl5000.c54 struct device_node *ssi_np, *codec_np; in imx_sgtl5000_probe() local
97 ssi_np = of_parse_phandle(pdev->dev.of_node, "ssi-controller", 0); in imx_sgtl5000_probe()
99 if (!ssi_np || !codec_np) { in imx_sgtl5000_probe()
105 ssi_pdev = of_find_device_by_node(ssi_np); in imx_sgtl5000_probe()
135 data->dai.cpu_of_node = ssi_np; in imx_sgtl5000_probe()
136 data->dai.platform_of_node = ssi_np; in imx_sgtl5000_probe()
163 of_node_put(ssi_np); in imx_sgtl5000_probe()
171 of_node_put(ssi_np); in imx_sgtl5000_probe()
Dimx-es8328.c81 struct device_node *ssi_np = NULL, *codec_np = NULL; in imx_es8328_probe() local
136 ssi_np = of_parse_phandle(pdev->dev.of_node, "ssi-controller", 0); in imx_es8328_probe()
138 if (!ssi_np || !codec_np) { in imx_es8328_probe()
144 ssi_pdev = of_find_device_by_node(ssi_np); in imx_es8328_probe()
165 data->dai.cpu_of_node = ssi_np; in imx_es8328_probe()
166 data->dai.platform_of_node = ssi_np; in imx_es8328_probe()
196 of_node_put(ssi_np); in imx_es8328_probe()
Dfsl_dma.c859 struct device_node *ssi_np, *np; in find_ssi_node() local
861 for_each_compatible_node(ssi_np, NULL, "fsl,mpc8610-ssi") { in find_ssi_node()
865 np = of_parse_phandle(ssi_np, "fsl,playback-dma", 0); in find_ssi_node()
868 return ssi_np; in find_ssi_node()
870 np = of_parse_phandle(ssi_np, "fsl,capture-dma", 0); in find_ssi_node()
873 return ssi_np; in find_ssi_node()
892 struct device_node *ssi_np; in fsl_soc_dma_probe() local
898 ssi_np = find_ssi_node(np); in fsl_soc_dma_probe()
899 if (!ssi_np) { in fsl_soc_dma_probe()
904 ret = of_address_to_resource(ssi_np, 0, &res); in fsl_soc_dma_probe()
[all …]
Dfsl_utils.c27 int fsl_asoc_get_dma_channel(struct device_node *ssi_np, in fsl_asoc_get_dma_channel() argument
38 dma_channel_np = of_parse_phandle(ssi_np, name, 0); in fsl_asoc_get_dma_channel()
Dfsl_utils.h18 int fsl_asoc_get_dma_channel(struct device_node *ssi_np, const char *name,