1 // SPDX-License-Identifier: GPL-2.0
3 // SH7760 ("camelot") DMABRG audio DMA unit support
5 // Copyright (C) 2007 Manuel Lauss <mano@roarinelk.homelinux.net>
7 // The SH7760 DMABRG provides 4 dma channels (2x rec, 2x play), which
8 // trigger an interrupt when one half of the programmed transfer size
11 // FIXME: little-endian only for now
13 #include <linux/module.h>
14 #include <linux/gfp.h>
15 #include <linux/init.h>
16 #include <linux/platform_device.h>
17 #include <linux/dma-mapping.h>
18 #include <sound/core.h>
19 #include <sound/pcm.h>
20 #include <sound/pcm_params.h>
21 #include <sound/soc.h>
22 #include <asm/dmabrg.h>
25 /* registers and bits */
26 #define BRGATXSAR 0x00
27 #define BRGARXDAR 0x04
28 #define BRGATXTCR 0x08
29 #define BRGARXTCR 0x0C
31 #define BRGATXTCNT 0x14
32 #define BRGARXTCNT 0x18
34 #define ACR_RAR (1 << 18)
35 #define ACR_RDS (1 << 17)
36 #define ACR_RDE (1 << 16)
37 #define ACR_TAR (1 << 2)
38 #define ACR_TDS (1 << 1)
39 #define ACR_TDE (1 << 0)
41 /* receiver/transmitter data alignment */
42 #define ACR_RAM_NONE (0 << 24)
43 #define ACR_RAM_4BYTE (1 << 24)
44 #define ACR_RAM_2WORD (2 << 24)
45 #define ACR_TAM_NONE (0 << 8)
46 #define ACR_TAM_4BYTE (1 << 8)
47 #define ACR_TAM_2WORD (2 << 8)
51 unsigned long mmio
; /* DMABRG audio channel control reg MMIO */
52 unsigned int txid
; /* ID of first DMABRG IRQ for this unit */
54 struct snd_pcm_substream
*tx_ss
;
55 unsigned long tx_period_size
;
56 unsigned int tx_period
;
58 struct snd_pcm_substream
*rx_ss
;
59 unsigned long rx_period_size
;
60 unsigned int rx_period
;
65 .txid
= DMABRGIRQ_A0TXF
,
69 .txid
= DMABRGIRQ_A1TXF
,
73 #define BRGREG(x) (*(unsigned long *)(cam->mmio + (x)))
76 * set a minimum of 16kb per period, to avoid interrupt-"storm" and
77 * resulting skipping. In general, the bigger the minimum size, the
78 * better for overall system performance. (The SH7760 is a puny CPU
79 * with a slow SDRAM interface and poor internal bus bandwidth,
80 * *especially* when the LCDC is active). The minimum for the DMAC
81 * is 8 bytes; 16kbytes are enough to get skip-free playback of a
82 * 44kHz/16bit/stereo MP3 on a lightly loaded system, and maintain
83 * reasonable responsiveness in MPlayer.
85 #define DMABRG_PERIOD_MIN 16 * 1024
86 #define DMABRG_PERIOD_MAX 0x03fffffc
87 #define DMABRG_PREALLOC_BUFFER 32 * 1024
88 #define DMABRG_PREALLOC_BUFFER_MAX 32 * 1024
90 static const struct snd_pcm_hardware camelot_pcm_hardware
= {
91 .info
= (SNDRV_PCM_INFO_MMAP
|
92 SNDRV_PCM_INFO_INTERLEAVED
|
93 SNDRV_PCM_INFO_BLOCK_TRANSFER
|
94 SNDRV_PCM_INFO_MMAP_VALID
|
95 SNDRV_PCM_INFO_BATCH
),
96 .buffer_bytes_max
= DMABRG_PERIOD_MAX
,
97 .period_bytes_min
= DMABRG_PERIOD_MIN
,
98 .period_bytes_max
= DMABRG_PERIOD_MAX
/ 2,
104 static void camelot_txdma(void *data
)
106 struct camelot_pcm
*cam
= data
;
108 snd_pcm_period_elapsed(cam
->tx_ss
);
111 static void camelot_rxdma(void *data
)
113 struct camelot_pcm
*cam
= data
;
115 snd_pcm_period_elapsed(cam
->rx_ss
);
118 static int camelot_pcm_open(struct snd_soc_component
*component
,
119 struct snd_pcm_substream
*substream
)
121 struct snd_soc_pcm_runtime
*rtd
= asoc_substream_to_rtd(substream
);
122 struct camelot_pcm
*cam
= &cam_pcm_data
[asoc_rtd_to_cpu(rtd
, 0)->id
];
123 int recv
= substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
? 0:1;
126 snd_soc_set_runtime_hwparams(substream
, &camelot_pcm_hardware
);
128 /* DMABRG buffer half/full events */
129 dmairq
= (recv
) ? cam
->txid
+ 2 : cam
->txid
;
131 cam
->rx_ss
= substream
;
132 ret
= dmabrg_request_irq(dmairq
, camelot_rxdma
, cam
);
134 pr_debug("audio unit %d irqs already taken!\n",
135 asoc_rtd_to_cpu(rtd
, 0)->id
);
138 (void)dmabrg_request_irq(dmairq
+ 1,camelot_rxdma
, cam
);
140 cam
->tx_ss
= substream
;
141 ret
= dmabrg_request_irq(dmairq
, camelot_txdma
, cam
);
143 pr_debug("audio unit %d irqs already taken!\n",
144 asoc_rtd_to_cpu(rtd
, 0)->id
);
147 (void)dmabrg_request_irq(dmairq
+ 1, camelot_txdma
, cam
);
152 static int camelot_pcm_close(struct snd_soc_component
*component
,
153 struct snd_pcm_substream
*substream
)
155 struct snd_soc_pcm_runtime
*rtd
= asoc_substream_to_rtd(substream
);
156 struct camelot_pcm
*cam
= &cam_pcm_data
[asoc_rtd_to_cpu(rtd
, 0)->id
];
157 int recv
= substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
? 0:1;
160 dmairq
= (recv
) ? cam
->txid
+ 2 : cam
->txid
;
167 dmabrg_free_irq(dmairq
+ 1);
168 dmabrg_free_irq(dmairq
);
173 static int camelot_hw_params(struct snd_soc_component
*component
,
174 struct snd_pcm_substream
*substream
,
175 struct snd_pcm_hw_params
*hw_params
)
177 struct snd_soc_pcm_runtime
*rtd
= asoc_substream_to_rtd(substream
);
178 struct camelot_pcm
*cam
= &cam_pcm_data
[asoc_rtd_to_cpu(rtd
, 0)->id
];
179 int recv
= substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
? 0:1;
183 cam
->rx_period_size
= params_period_bytes(hw_params
);
186 cam
->tx_period_size
= params_period_bytes(hw_params
);
192 static int camelot_prepare(struct snd_soc_component
*component
,
193 struct snd_pcm_substream
*substream
)
195 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
196 struct snd_soc_pcm_runtime
*rtd
= asoc_substream_to_rtd(substream
);
197 struct camelot_pcm
*cam
= &cam_pcm_data
[asoc_rtd_to_cpu(rtd
, 0)->id
];
199 pr_debug("PCM data: addr 0x%08lx len %d\n",
200 (u32
)runtime
->dma_addr
, runtime
->dma_bytes
);
202 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
203 BRGREG(BRGATXSAR
) = (unsigned long)runtime
->dma_area
;
204 BRGREG(BRGATXTCR
) = runtime
->dma_bytes
;
206 BRGREG(BRGARXDAR
) = (unsigned long)runtime
->dma_area
;
207 BRGREG(BRGARXTCR
) = runtime
->dma_bytes
;
213 static inline void dmabrg_play_dma_start(struct camelot_pcm
*cam
)
215 unsigned long acr
= BRGREG(BRGACR
) & ~(ACR_TDS
| ACR_RDS
);
216 /* start DMABRG engine: XFER start, auto-addr-reload */
217 BRGREG(BRGACR
) = acr
| ACR_TDE
| ACR_TAR
| ACR_TAM_2WORD
;
220 static inline void dmabrg_play_dma_stop(struct camelot_pcm
*cam
)
222 unsigned long acr
= BRGREG(BRGACR
) & ~(ACR_TDS
| ACR_RDS
);
223 /* forcibly terminate data transmission */
224 BRGREG(BRGACR
) = acr
| ACR_TDS
;
227 static inline void dmabrg_rec_dma_start(struct camelot_pcm
*cam
)
229 unsigned long acr
= BRGREG(BRGACR
) & ~(ACR_TDS
| ACR_RDS
);
230 /* start DMABRG engine: recv start, auto-reload */
231 BRGREG(BRGACR
) = acr
| ACR_RDE
| ACR_RAR
| ACR_RAM_2WORD
;
234 static inline void dmabrg_rec_dma_stop(struct camelot_pcm
*cam
)
236 unsigned long acr
= BRGREG(BRGACR
) & ~(ACR_TDS
| ACR_RDS
);
237 /* forcibly terminate data receiver */
238 BRGREG(BRGACR
) = acr
| ACR_RDS
;
241 static int camelot_trigger(struct snd_soc_component
*component
,
242 struct snd_pcm_substream
*substream
, int cmd
)
244 struct snd_soc_pcm_runtime
*rtd
= asoc_substream_to_rtd(substream
);
245 struct camelot_pcm
*cam
= &cam_pcm_data
[asoc_rtd_to_cpu(rtd
, 0)->id
];
246 int recv
= substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
? 0:1;
249 case SNDRV_PCM_TRIGGER_START
:
251 dmabrg_rec_dma_start(cam
);
253 dmabrg_play_dma_start(cam
);
255 case SNDRV_PCM_TRIGGER_STOP
:
257 dmabrg_rec_dma_stop(cam
);
259 dmabrg_play_dma_stop(cam
);
268 static snd_pcm_uframes_t
camelot_pos(struct snd_soc_component
*component
,
269 struct snd_pcm_substream
*substream
)
271 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
272 struct snd_soc_pcm_runtime
*rtd
= asoc_substream_to_rtd(substream
);
273 struct camelot_pcm
*cam
= &cam_pcm_data
[asoc_rtd_to_cpu(rtd
, 0)->id
];
274 int recv
= substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
? 0:1;
277 /* cannot use the DMABRG pointer register: under load, by the
278 * time ALSA comes around to read the register, it is already
279 * far ahead (or worse, already done with the fragment) of the
280 * position at the time the IRQ was triggered, which results in
281 * fast-playback sound in my test application (ScummVM)
284 pos
= cam
->rx_period
? cam
->rx_period_size
: 0;
286 pos
= cam
->tx_period
? cam
->tx_period_size
: 0;
288 return bytes_to_frames(runtime
, pos
);
291 static int camelot_pcm_new(struct snd_soc_component
*component
,
292 struct snd_soc_pcm_runtime
*rtd
)
294 struct snd_pcm
*pcm
= rtd
->pcm
;
296 /* dont use SNDRV_DMA_TYPE_DEV, since it will oops the SH kernel
297 * in MMAP mode (i.e. aplay -M)
299 snd_pcm_set_managed_buffer_all(pcm
,
300 SNDRV_DMA_TYPE_CONTINUOUS
,
302 DMABRG_PREALLOC_BUFFER
, DMABRG_PREALLOC_BUFFER_MAX
);
307 static const struct snd_soc_component_driver sh7760_soc_component
= {
308 .open
= camelot_pcm_open
,
309 .close
= camelot_pcm_close
,
310 .hw_params
= camelot_hw_params
,
311 .prepare
= camelot_prepare
,
312 .trigger
= camelot_trigger
,
313 .pointer
= camelot_pos
,
314 .pcm_construct
= camelot_pcm_new
,
317 static int sh7760_soc_platform_probe(struct platform_device
*pdev
)
319 return devm_snd_soc_register_component(&pdev
->dev
, &sh7760_soc_component
,
323 static struct platform_driver sh7760_pcm_driver
= {
325 .name
= "sh7760-pcm-audio",
328 .probe
= sh7760_soc_platform_probe
,
331 module_platform_driver(sh7760_pcm_driver
);
333 MODULE_LICENSE("GPL v2");
334 MODULE_DESCRIPTION("SH7760 Audio DMA (DMABRG) driver");
335 MODULE_AUTHOR("Manuel Lauss <mano@roarinelk.homelinux.net>");