/linux-6.1.9/sound/soc/img/ |
D | img-spdif-in.c | 92 struct img_spdif_in *spdif = dev_get_drvdata(dev); in img_spdif_in_runtime_suspend() local 94 clk_disable_unprepare(spdif->clk_sys); in img_spdif_in_runtime_suspend() 101 struct img_spdif_in *spdif = dev_get_drvdata(dev); in img_spdif_in_runtime_resume() local 104 ret = clk_prepare_enable(spdif->clk_sys); in img_spdif_in_runtime_resume() 113 static inline void img_spdif_in_writel(struct img_spdif_in *spdif, in img_spdif_in_writel() argument 116 writel(val, spdif->base + reg); in img_spdif_in_writel() 119 static inline u32 img_spdif_in_readl(struct img_spdif_in *spdif, u32 reg) in img_spdif_in_readl() argument 121 return readl(spdif->base + reg); in img_spdif_in_readl() 124 static inline void img_spdif_in_aclkgen_writel(struct img_spdif_in *spdif, in img_spdif_in_aclkgen_writel() argument 127 img_spdif_in_writel(spdif, spdif->aclkgen_regs[index], in img_spdif_in_aclkgen_writel() [all …]
|
D | img-spdif-out.c | 54 struct img_spdif_out *spdif = dev_get_drvdata(dev); in img_spdif_out_runtime_suspend() local 56 clk_disable_unprepare(spdif->clk_ref); in img_spdif_out_runtime_suspend() 57 clk_disable_unprepare(spdif->clk_sys); in img_spdif_out_runtime_suspend() 64 struct img_spdif_out *spdif = dev_get_drvdata(dev); in img_spdif_out_runtime_resume() local 67 ret = clk_prepare_enable(spdif->clk_sys); in img_spdif_out_runtime_resume() 73 ret = clk_prepare_enable(spdif->clk_ref); in img_spdif_out_runtime_resume() 76 clk_disable_unprepare(spdif->clk_sys); in img_spdif_out_runtime_resume() 83 static inline void img_spdif_out_writel(struct img_spdif_out *spdif, u32 val, in img_spdif_out_writel() argument 86 writel(val, spdif->base + reg); in img_spdif_out_writel() 89 static inline u32 img_spdif_out_readl(struct img_spdif_out *spdif, u32 reg) in img_spdif_out_readl() argument [all …]
|
/linux-6.1.9/sound/soc/samsung/ |
D | spdif.c | 105 static void spdif_snd_txctrl(struct samsung_spdif_info *spdif, int on) in spdif_snd_txctrl() argument 107 void __iomem *regs = spdif->regs; in spdif_snd_txctrl() 110 dev_dbg(spdif->dev, "Entered %s\n", __func__); in spdif_snd_txctrl() 122 struct samsung_spdif_info *spdif = to_info(cpu_dai); in spdif_set_sysclk() local 125 dev_dbg(spdif->dev, "Entered %s\n", __func__); in spdif_set_sysclk() 127 clkcon = readl(spdif->regs + CLKCON); in spdif_set_sysclk() 134 writel(clkcon, spdif->regs + CLKCON); in spdif_set_sysclk() 136 spdif->clk_rate = freq; in spdif_set_sysclk() 145 struct samsung_spdif_info *spdif = to_info(asoc_rtd_to_cpu(rtd, 0)); in spdif_trigger() local 148 dev_dbg(spdif->dev, "Entered %s\n", __func__); in spdif_trigger() [all …]
|
/linux-6.1.9/sound/soc/adi/ |
D | axi-spdif.c | 51 struct axi_spdif *spdif = snd_soc_dai_get_drvdata(dai); in axi_spdif_trigger() local 69 regmap_update_bits(spdif->regmap, AXI_SPDIF_REG_CTRL, in axi_spdif_trigger() 78 struct axi_spdif *spdif = snd_soc_dai_get_drvdata(dai); in axi_spdif_hw_params() local 97 clkdiv = DIV_ROUND_CLOSEST(clk_get_rate(spdif->clk_ref), in axi_spdif_hw_params() 101 regmap_write(spdif->regmap, AXI_SPDIF_REG_STAT, stat); in axi_spdif_hw_params() 102 regmap_update_bits(spdif->regmap, AXI_SPDIF_REG_CTRL, in axi_spdif_hw_params() 110 struct axi_spdif *spdif = snd_soc_dai_get_drvdata(dai); in axi_spdif_dai_probe() local 112 snd_soc_dai_init_dma_data(dai, &spdif->dma_data, NULL); in axi_spdif_dai_probe() 120 struct axi_spdif *spdif = snd_soc_dai_get_drvdata(dai); in axi_spdif_startup() local 125 &spdif->rate_constraints); in axi_spdif_startup() [all …]
|
D | Makefile | 3 snd-soc-adi-axi-spdif-objs := axi-spdif.o 6 obj-$(CONFIG_SND_SOC_ADI_AXI_SPDIF) += snd-soc-adi-axi-spdif.o
|
/linux-6.1.9/sound/soc/rockchip/ |
D | rockchip_spdif.c | 69 struct rk_spdif_dev *spdif = dev_get_drvdata(dev); in rk_spdif_runtime_suspend() local 71 regcache_cache_only(spdif->regmap, true); in rk_spdif_runtime_suspend() 72 clk_disable_unprepare(spdif->mclk); in rk_spdif_runtime_suspend() 73 clk_disable_unprepare(spdif->hclk); in rk_spdif_runtime_suspend() 80 struct rk_spdif_dev *spdif = dev_get_drvdata(dev); in rk_spdif_runtime_resume() local 83 ret = clk_prepare_enable(spdif->mclk); in rk_spdif_runtime_resume() 85 dev_err(spdif->dev, "mclk clock enable failed %d\n", ret); in rk_spdif_runtime_resume() 89 ret = clk_prepare_enable(spdif->hclk); in rk_spdif_runtime_resume() 91 clk_disable_unprepare(spdif->mclk); in rk_spdif_runtime_resume() 92 dev_err(spdif->dev, "hclk clock enable failed %d\n", ret); in rk_spdif_runtime_resume() [all …]
|
/linux-6.1.9/sound/soc/tegra/ |
D | tegra20_spdif.c | 30 struct tegra20_spdif *spdif = dev_get_drvdata(dev); in tegra20_spdif_runtime_suspend() local 32 regcache_cache_only(spdif->regmap, true); in tegra20_spdif_runtime_suspend() 34 clk_disable_unprepare(spdif->clk_spdif_out); in tegra20_spdif_runtime_suspend() 41 struct tegra20_spdif *spdif = dev_get_drvdata(dev); in tegra20_spdif_runtime_resume() local 44 ret = reset_control_assert(spdif->reset); in tegra20_spdif_runtime_resume() 48 ret = clk_prepare_enable(spdif->clk_spdif_out); in tegra20_spdif_runtime_resume() 56 ret = reset_control_deassert(spdif->reset); in tegra20_spdif_runtime_resume() 60 regcache_cache_only(spdif->regmap, false); in tegra20_spdif_runtime_resume() 61 regcache_mark_dirty(spdif->regmap); in tegra20_spdif_runtime_resume() 63 ret = regcache_sync(spdif->regmap); in tegra20_spdif_runtime_resume() [all …]
|
/linux-6.1.9/Documentation/devicetree/bindings/sound/ |
D | allwinner,sun4i-a10-spdif.yaml | 4 $id: http://devicetree.org/schemas/sound/allwinner,sun4i-a10-spdif.yaml# 21 - const: allwinner,sun4i-a10-spdif 22 - const: allwinner,sun6i-a31-spdif 23 - const: allwinner,sun8i-h3-spdif 24 - const: allwinner,sun50i-h6-spdif 26 - const: allwinner,sun8i-a83t-spdif 27 - const: allwinner,sun8i-h3-spdif 29 - const: allwinner,sun50i-a64-spdif 30 - const: allwinner,sun8i-h3-spdif 46 - const: spdif [all …]
|
D | rockchip-spdif.yaml | 4 $id: http://devicetree.org/schemas/sound/rockchip-spdif.yaml# 20 - const: rockchip,rk3066-spdif 21 - const: rockchip,rk3228-spdif 22 - const: rockchip,rk3328-spdif 23 - const: rockchip,rk3366-spdif 24 - const: rockchip,rk3368-spdif 25 - const: rockchip,rk3399-spdif 26 - const: rockchip,rk3568-spdif 29 - rockchip,rk3188-spdif 30 - rockchip,rk3288-spdif [all …]
|
D | imx-audio-spdif.txt | 5 - compatible : "fsl,imx-audio-spdif" 9 - spdif-controller : The phandle of the i.MX S/PDIF controller 14 - spdif-out : This is a boolean property. If present, the 21 - spdif-in : This is a boolean property. If present, the receiving 30 sound-spdif { 31 compatible = "fsl,imx-audio-spdif"; 32 model = "imx-spdif"; 33 spdif-controller = <&spdif>; 34 spdif-out; 35 spdif-in;
|
D | fsl,spdif.yaml | 4 $id: http://devicetree.org/schemas/sound/fsl,spdif.yaml# 20 - fsl,imx35-spdif 21 - fsl,vf610-spdif 22 - fsl,imx6sx-spdif 23 - fsl,imx8qm-spdif 24 - fsl,imx8qxp-spdif 25 - fsl,imx8mq-spdif 26 - fsl,imx8mm-spdif 27 - fsl,imx8mn-spdif 28 - fsl,imx8ulp-spdif [all …]
|
D | spdif-receiver.txt | 1 Device-Tree bindings for dummy spdif receiver 4 - compatible: should be "linux,spdif-dir". 8 codec: spdif-receiver { 9 compatible = "linux,spdif-dir";
|
D | xlnx,spdif.txt | 6 - compatible: "xlnx,spdif-2.0" 13 - xlnx,spdif-mode: 0 :- receiver mode 18 spdif_0: spdif@80010000 { 21 compatible = "xlnx,spdif-2.0"; 26 xlnx,spdif-mode = <1>;
|
D | img,spdif-in.txt | 5 - compatible : Compatible list, must contain "img,spdif-in" 23 - resets: Should contain a phandle to the spdif in reset signal, if any 28 - interrupts : Contains the spdif in interrupt, if present 32 spdif_in: spdif-in@18100e00 { 33 compatible = "img,spdif-in";
|
D | linux,spdif-dit.yaml | 4 $id: http://devicetree.org/schemas/sound/linux,spdif-dit.yaml# 17 const: linux,spdif-dit 32 spdif-out { 34 compatible = "linux,spdif-dit";
|
D | img,spdif-out.txt | 5 - compatible : Compatible list, must contain "img,spdif-out" 22 - resets: Contains a phandle to the spdif out reset signal 32 spdif_out: spdif-out@18100d00 { 33 compatible = "img,spdif-out";
|
D | adi,axi-spdif-tx.txt | 4 - compatible : Must be "adi,axi-spdif-tx-1.00.a" 23 spdif: spdif@77400000 { 24 compatible = "adi,axi-spdif-tx-1.00.a";
|
D | nvidia,tegra20-spdif.yaml | 4 $id: http://devicetree.org/schemas/sound/nvidia,tegra20-spdif.yaml# 21 const: nvidia,tegra20-spdif 73 spdif@70002400 { 74 compatible = "nvidia,tegra20-spdif";
|
/linux-6.1.9/sound/soc/spear/ |
D | Makefile | 4 snd-soc-spear-spdif-in-objs := spdif_in.o 5 snd-soc-spear-spdif-out-objs := spdif_out.o 8 obj-$(CONFIG_SND_SPEAR_SPDIF_IN) += snd-soc-spear-spdif-in.o 9 obj-$(CONFIG_SND_SPEAR_SPDIF_OUT) += snd-soc-spear-spdif-out.o
|
/linux-6.1.9/sound/pci/ice1712/ |
D | delta.c | 199 snd_cs8403_decode_spdif_bits(&ucontrol->value.iec958, ice->spdif.cs8403_bits); in delta_spdif_default_get() 209 change = ice->spdif.cs8403_bits != val; in delta_spdif_default_put() 210 ice->spdif.cs8403_bits = val; in delta_spdif_default_put() 222 snd_cs8403_decode_spdif_bits(&ucontrol->value.iec958, ice->spdif.cs8403_stream_bits); in delta_spdif_stream_get() 232 change = ice->spdif.cs8403_stream_bits != val; in delta_spdif_stream_put() 233 ice->spdif.cs8403_stream_bits = val; in delta_spdif_stream_put() 376 ice->spdif.cs8403_stream_bits = ice->spdif.cs8403_bits; in delta_open_spdif() 387 tmp = ice->spdif.cs8403_stream_bits; in delta_setup_spdif() 396 change = ice->spdif.cs8403_stream_bits != tmp; in delta_setup_spdif() 397 ice->spdif.cs8403_stream_bits = tmp; in delta_setup_spdif() [all …]
|
D | ews.c | 254 snd_cs8404_decode_spdif_bits(&ucontrol->value.iec958, ice->spdif.cs8403_bits); in ews88_spdif_default_get() 264 change = ice->spdif.cs8403_bits != val; in ews88_spdif_default_put() 265 ice->spdif.cs8403_bits = val; in ews88_spdif_default_put() 277 snd_cs8404_decode_spdif_bits(&ucontrol->value.iec958, ice->spdif.cs8403_stream_bits); in ews88_spdif_stream_get() 287 change = ice->spdif.cs8403_stream_bits != val; in ews88_spdif_stream_put() 288 ice->spdif.cs8403_stream_bits = val; in ews88_spdif_stream_put() 302 ice->spdif.cs8403_stream_bits = ice->spdif.cs8403_bits; in ews88_open_spdif() 313 tmp = ice->spdif.cs8403_stream_bits; in ews88_setup_spdif() 322 change = ice->spdif.cs8403_stream_bits != tmp; in ews88_setup_spdif() 323 ice->spdif.cs8403_stream_bits = tmp; in ews88_setup_spdif() [all …]
|
/linux-6.1.9/sound/soc/meson/ |
D | aiu-encoder-spdif.c | 144 ret = clk_set_rate(aiu->spdif.clks[MCLK].clk, mrate); in aiu_encoder_spdif_hw_params() 183 ret = clk_set_parent(aiu->spdif.clks[MCLK].clk, in aiu_encoder_spdif_startup() 188 ret = clk_bulk_prepare_enable(aiu->spdif.clk_num, aiu->spdif.clks); in aiu_encoder_spdif_startup() 200 clk_bulk_disable_unprepare(aiu->spdif.clk_num, aiu->spdif.clks); in aiu_encoder_spdif_shutdown()
|
/linux-6.1.9/arch/arm64/boot/dts/allwinner/ |
D | sun50i-h6-tanix.dtsi | 61 sound-spdif { 63 simple-audio-card,name = "sun50i-h6-spdif"; 66 sound-dai = <&spdif>; 74 spdif_out: spdif-out { 76 compatible = "linux,spdif-dit"; 168 &spdif {
|
/linux-6.1.9/drivers/staging/vc04_services/bcm2835-audio/ |
D | bcm2835-pcm.c | 85 static int snd_bcm2835_playback_open_generic(struct snd_pcm_substream *substream, int spdif) in snd_bcm2835_playback_open_generic() argument 96 if (spdif && chip->opened) { in snd_bcm2835_playback_open_generic() 99 } else if (!spdif && (chip->opened & (1 << idx))) { in snd_bcm2835_playback_open_generic() 129 if (spdif) { in snd_bcm2835_playback_open_generic() 325 u32 numchannels, bool spdif) in snd_bcm2835_new_pcm() argument 337 if (!spdif) { in snd_bcm2835_new_pcm() 344 spdif ? &snd_bcm2835_playback_spdif_ops : in snd_bcm2835_new_pcm() 350 if (spdif) in snd_bcm2835_new_pcm()
|
/linux-6.1.9/arch/arm/boot/dts/ |
D | uniphier-pxs2-vodka.dts | 42 spdif-out { 43 compatible = "linux,spdif-dit"; 53 comp-spdif-out { 54 compatible = "linux,spdif-dit";
|