aiu-fifo.c (03ab8e6297acd1bc0eedaa050e2a1635c576fd11) | aiu-fifo.c (c765ceda78f0bd9df1217f9beaefea58ecf3865c) |
---|---|
1// SPDX-License-Identifier: GPL-2.0 2// 3// Copyright (c) 2020 BayLibre, SAS. 4// Author: Jerome Brunet <jbrunet@baylibre.com> 5 6#include <linux/bitfield.h> 7#include <linux/clk.h> 8#include <linux/dma-mapping.h> --- 20 unchanged lines hidden (view full) --- 29 30 return asoc_rtd_to_cpu(rtd, 0); 31} 32 33snd_pcm_uframes_t aiu_fifo_pointer(struct snd_soc_component *component, 34 struct snd_pcm_substream *substream) 35{ 36 struct snd_soc_dai *dai = aiu_fifo_dai(substream); | 1// SPDX-License-Identifier: GPL-2.0 2// 3// Copyright (c) 2020 BayLibre, SAS. 4// Author: Jerome Brunet <jbrunet@baylibre.com> 5 6#include <linux/bitfield.h> 7#include <linux/clk.h> 8#include <linux/dma-mapping.h> --- 20 unchanged lines hidden (view full) --- 29 30 return asoc_rtd_to_cpu(rtd, 0); 31} 32 33snd_pcm_uframes_t aiu_fifo_pointer(struct snd_soc_component *component, 34 struct snd_pcm_substream *substream) 35{ 36 struct snd_soc_dai *dai = aiu_fifo_dai(substream); |
37 struct aiu_fifo *fifo = dai->playback_dma_data; | 37 struct aiu_fifo *fifo = snd_soc_dai_dma_data_get_playback(dai); |
38 struct snd_pcm_runtime *runtime = substream->runtime; 39 unsigned int addr; 40 41 addr = snd_soc_component_read(component, fifo->mem_offset + AIU_MEM_RD); 42 43 return bytes_to_frames(runtime, addr - (unsigned int)runtime->dma_addr); 44} 45 46static void aiu_fifo_enable(struct snd_soc_dai *dai, bool enable) 47{ 48 struct snd_soc_component *component = dai->component; | 38 struct snd_pcm_runtime *runtime = substream->runtime; 39 unsigned int addr; 40 41 addr = snd_soc_component_read(component, fifo->mem_offset + AIU_MEM_RD); 42 43 return bytes_to_frames(runtime, addr - (unsigned int)runtime->dma_addr); 44} 45 46static void aiu_fifo_enable(struct snd_soc_dai *dai, bool enable) 47{ 48 struct snd_soc_component *component = dai->component; |
49 struct aiu_fifo *fifo = dai->playback_dma_data; | 49 struct aiu_fifo *fifo = snd_soc_dai_dma_data_get_playback(dai); |
50 unsigned int en_mask = (AIU_MEM_CONTROL_FILL_EN | 51 AIU_MEM_CONTROL_EMPTY_EN); 52 53 snd_soc_component_update_bits(component, 54 fifo->mem_offset + AIU_MEM_CONTROL, 55 en_mask, enable ? en_mask : 0); 56} 57 --- 17 unchanged lines hidden (view full) --- 75 76 return 0; 77} 78 79int aiu_fifo_prepare(struct snd_pcm_substream *substream, 80 struct snd_soc_dai *dai) 81{ 82 struct snd_soc_component *component = dai->component; | 50 unsigned int en_mask = (AIU_MEM_CONTROL_FILL_EN | 51 AIU_MEM_CONTROL_EMPTY_EN); 52 53 snd_soc_component_update_bits(component, 54 fifo->mem_offset + AIU_MEM_CONTROL, 55 en_mask, enable ? en_mask : 0); 56} 57 --- 17 unchanged lines hidden (view full) --- 75 76 return 0; 77} 78 79int aiu_fifo_prepare(struct snd_pcm_substream *substream, 80 struct snd_soc_dai *dai) 81{ 82 struct snd_soc_component *component = dai->component; |
83 struct aiu_fifo *fifo = dai->playback_dma_data; | 83 struct aiu_fifo *fifo = snd_soc_dai_dma_data_get_playback(dai); |
84 85 snd_soc_component_update_bits(component, 86 fifo->mem_offset + AIU_MEM_CONTROL, 87 AIU_MEM_CONTROL_INIT, 88 AIU_MEM_CONTROL_INIT); 89 snd_soc_component_update_bits(component, 90 fifo->mem_offset + AIU_MEM_CONTROL, 91 AIU_MEM_CONTROL_INIT, 0); 92 return 0; 93} 94 95int aiu_fifo_hw_params(struct snd_pcm_substream *substream, 96 struct snd_pcm_hw_params *params, 97 struct snd_soc_dai *dai) 98{ 99 struct snd_pcm_runtime *runtime = substream->runtime; 100 struct snd_soc_component *component = dai->component; | 84 85 snd_soc_component_update_bits(component, 86 fifo->mem_offset + AIU_MEM_CONTROL, 87 AIU_MEM_CONTROL_INIT, 88 AIU_MEM_CONTROL_INIT); 89 snd_soc_component_update_bits(component, 90 fifo->mem_offset + AIU_MEM_CONTROL, 91 AIU_MEM_CONTROL_INIT, 0); 92 return 0; 93} 94 95int aiu_fifo_hw_params(struct snd_pcm_substream *substream, 96 struct snd_pcm_hw_params *params, 97 struct snd_soc_dai *dai) 98{ 99 struct snd_pcm_runtime *runtime = substream->runtime; 100 struct snd_soc_component *component = dai->component; |
101 struct aiu_fifo *fifo = dai->playback_dma_data; | 101 struct aiu_fifo *fifo = snd_soc_dai_dma_data_get_playback(dai); |
102 dma_addr_t end; 103 104 /* Setup the fifo boundaries */ 105 end = runtime->dma_addr + runtime->dma_bytes - fifo->fifo_block; 106 snd_soc_component_write(component, fifo->mem_offset + AIU_MEM_START, 107 runtime->dma_addr); 108 snd_soc_component_write(component, fifo->mem_offset + AIU_MEM_RD, 109 runtime->dma_addr); --- 17 unchanged lines hidden (view full) --- 127 snd_pcm_period_elapsed(playback); 128 129 return IRQ_HANDLED; 130} 131 132int aiu_fifo_startup(struct snd_pcm_substream *substream, 133 struct snd_soc_dai *dai) 134{ | 102 dma_addr_t end; 103 104 /* Setup the fifo boundaries */ 105 end = runtime->dma_addr + runtime->dma_bytes - fifo->fifo_block; 106 snd_soc_component_write(component, fifo->mem_offset + AIU_MEM_START, 107 runtime->dma_addr); 108 snd_soc_component_write(component, fifo->mem_offset + AIU_MEM_RD, 109 runtime->dma_addr); --- 17 unchanged lines hidden (view full) --- 127 snd_pcm_period_elapsed(playback); 128 129 return IRQ_HANDLED; 130} 131 132int aiu_fifo_startup(struct snd_pcm_substream *substream, 133 struct snd_soc_dai *dai) 134{ |
135 struct aiu_fifo *fifo = dai->playback_dma_data; | 135 struct aiu_fifo *fifo = snd_soc_dai_dma_data_get_playback(dai); |
136 int ret; 137 138 snd_soc_set_runtime_hwparams(substream, fifo->pcm); 139 140 /* 141 * Make sure the buffer and period size are multiple of the fifo burst 142 * size 143 */ --- 19 unchanged lines hidden (view full) --- 163 clk_disable_unprepare(fifo->pclk); 164 165 return ret; 166} 167 168void aiu_fifo_shutdown(struct snd_pcm_substream *substream, 169 struct snd_soc_dai *dai) 170{ | 136 int ret; 137 138 snd_soc_set_runtime_hwparams(substream, fifo->pcm); 139 140 /* 141 * Make sure the buffer and period size are multiple of the fifo burst 142 * size 143 */ --- 19 unchanged lines hidden (view full) --- 163 clk_disable_unprepare(fifo->pclk); 164 165 return ret; 166} 167 168void aiu_fifo_shutdown(struct snd_pcm_substream *substream, 169 struct snd_soc_dai *dai) 170{ |
171 struct aiu_fifo *fifo = dai->playback_dma_data; | 171 struct aiu_fifo *fifo = snd_soc_dai_dma_data_get_playback(dai); |
172 173 free_irq(fifo->irq, substream); 174 clk_disable_unprepare(fifo->pclk); 175} 176 177int aiu_fifo_pcm_new(struct snd_soc_pcm_runtime *rtd, 178 struct snd_soc_dai *dai) 179{ 180 struct snd_card *card = rtd->card->snd_card; | 172 173 free_irq(fifo->irq, substream); 174 clk_disable_unprepare(fifo->pclk); 175} 176 177int aiu_fifo_pcm_new(struct snd_soc_pcm_runtime *rtd, 178 struct snd_soc_dai *dai) 179{ 180 struct snd_card *card = rtd->card->snd_card; |
181 struct aiu_fifo *fifo = dai->playback_dma_data; | 181 struct aiu_fifo *fifo = snd_soc_dai_dma_data_get_playback(dai); |
182 size_t size = fifo->pcm->buffer_bytes_max; 183 int ret; 184 185 ret = dma_coerce_mask_and_coherent(card->dev, DMA_BIT_MASK(32)); 186 if (ret) 187 return ret; 188 189 snd_pcm_set_managed_buffer_all(rtd->pcm, SNDRV_DMA_TYPE_DEV, --- 5 unchanged lines hidden (view full) --- 195int aiu_fifo_dai_probe(struct snd_soc_dai *dai) 196{ 197 struct aiu_fifo *fifo; 198 199 fifo = kzalloc(sizeof(*fifo), GFP_KERNEL); 200 if (!fifo) 201 return -ENOMEM; 202 | 182 size_t size = fifo->pcm->buffer_bytes_max; 183 int ret; 184 185 ret = dma_coerce_mask_and_coherent(card->dev, DMA_BIT_MASK(32)); 186 if (ret) 187 return ret; 188 189 snd_pcm_set_managed_buffer_all(rtd->pcm, SNDRV_DMA_TYPE_DEV, --- 5 unchanged lines hidden (view full) --- 195int aiu_fifo_dai_probe(struct snd_soc_dai *dai) 196{ 197 struct aiu_fifo *fifo; 198 199 fifo = kzalloc(sizeof(*fifo), GFP_KERNEL); 200 if (!fifo) 201 return -ENOMEM; 202 |
203 dai->playback_dma_data = fifo; | 203 snd_soc_dai_dma_data_set_playback(dai, fifo); |
204 205 return 0; 206} 207 208int aiu_fifo_dai_remove(struct snd_soc_dai *dai) 209{ | 204 205 return 0; 206} 207 208int aiu_fifo_dai_remove(struct snd_soc_dai *dai) 209{ |
210 kfree(dai->playback_dma_data); | 210 struct aiu_fifo *fifo = snd_soc_dai_dma_data_get_playback(dai); |
211 | 211 |
212 kfree(fifo); 213 |
|
212 return 0; 213} | 214 return 0; 215} |
214 | |