1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2005 by Linus Nielsen Feltzing
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
24 #if CONFIG_CPU == PNX0101
26 #endif /* CONFIG_CPU == PNX0101 */
29 * APIs implemented in the target-specific portion:
32 * pcm_get_bytes_waiting
37 * pcm_play_pause_pause
38 * pcm_play_pause_unpause
41 /** These items may be implemented target specifically or need to
42 be shared semi-privately **/
44 /* the registered callback function to ask for more mp3 data */
45 volatile pcm_more_callback_type pcm_callback_for_more
= NULL
;
46 volatile bool pcm_playing
= false;
47 volatile bool pcm_paused
= false;
49 void pcm_play_dma_start(const void *addr
, size_t size
);
50 void pcm_play_dma_stop(void);
51 void pcm_play_pause_pause(void);
52 void pcm_play_pause_unpause(void);
54 /** Functions that require targeted implementation **/
56 #if !defined(CPU_COLDFIRE) && (CONFIG_CPU != S3C2440)
58 #if (CONFIG_CPU == PNX0101)
60 #define DMA_BUF_SAMPLES 0x100
62 short __attribute__((section(".dmabuf"))) dma_buf_left
[DMA_BUF_SAMPLES
];
63 short __attribute__((section(".dmabuf"))) dma_buf_right
[DMA_BUF_SAMPLES
];
65 static int pcm_freq
= HW_SAMPR_DEFAULT
; /* 44.1 is default */
67 unsigned short* p IBSS_ATTR
;
68 size_t p_size IBSS_ATTR
;
70 void pcm_play_dma_start(const void *addr
, size_t size
)
72 p
= (unsigned short*)addr
;
78 void pcm_play_dma_stop(void)
85 void pcm_play_pause_pause(void)
89 void pcm_play_pause_unpause(void)
93 static inline void fill_dma_buf(int offset
)
97 l
= dma_buf_left
+ offset
;
98 lend
= l
+ DMA_BUF_SAMPLES
/ 2;
99 r
= dma_buf_right
+ offset
;
101 if (pcm_playing
&& !pcm_paused
)
106 unsigned short *tmp_p
;
107 count
= MIN(p_size
/ 4, (size_t)(lend
- l
));
119 asm("ldmia %0!, {r0, r1, r2, r3}\n\t"
121 "orr r4, r4, r1, lsl #16\n\t"
123 "orr r5, r5, r3, lsl #16\n\t"
124 "stmia %1!, {r4, r5}\n\t"
126 "orr r4, r4, r0, lsr #16\n\t"
128 "orr r5, r5, r2, lsr #16\n\t"
129 "stmia %2!, {r4, r5}"
130 : "+r" (tmp_p
), "+r" (l
), "+r" (r
)
132 : "r0", "r1", "r2", "r3", "r4", "r5", "memory");
144 else if (pcm_callback_for_more
)
145 pcm_callback_for_more((unsigned char**)&p
,
154 memset(l
, 0, sizeof(short) * (lend
- l
));
155 memset(r
, 0, sizeof(short) * (lend
- l
));
159 static void audio_irq(void)
161 unsigned long st
= DMAINTSTAT
& ~DMAINTEN
;
163 for (i
= 0; i
< 2; i
++)
166 fill_dma_buf((i
== 1) ? 0 : DMA_BUF_SAMPLES
/ 2);
171 unsigned long physical_address(void *p
)
173 unsigned long adr
= (unsigned long)p
;
174 return (MMUBLOCK((adr
>> 21) & 0xf) << 21) | (adr
& ((1 << 21) - 1));
183 pcm_callback_for_more
= NULL
;
185 memset(dma_buf_left
, 0, sizeof(dma_buf_left
));
186 memset(dma_buf_right
, 0, sizeof(dma_buf_right
));
188 for (i
= 0; i
< 8; i
++)
198 DMAINTSTAT
= 0xc000ffff;
199 DMAINTEN
= 0xc000ffff;
201 DMASRC(0) = physical_address(dma_buf_left
);
202 DMADEST(0) = 0x80200280;
207 DMASRC(1) = physical_address(dma_buf_right
);
208 DMADEST(1) = 0x80200284;
213 irq_set_int_handler(0x1b, audio_irq
);
214 irq_enable_int(0x1b);
223 void pcm_postinit(void)
228 void pcm_set_frequency(unsigned int frequency
)
231 pcm_freq
= HW_SAMPR_DEFAULT
;
233 size_t pcm_get_bytes_waiting(void)
237 #endif /* CONFIG_CPU == */
239 /* dummy functions for those not actually supporting all this yet */
240 void pcm_apply_settings(void)
245 void pcm_mute(bool mute
)
247 #if defined(HAVE_WM8975) || defined(HAVE_WM8758) \
248 || defined(HAVE_WM8731) || defined(HAVE_WM8721)
256 * This function goes directly into the DMA buffer to calculate the left and
257 * right peak values. To avoid missing peaks it tries to look forward two full
258 * peek periods (2/HZ sec, 100% overlap), although it's always possible that
259 * the entire period will not be visible. To reduce CPU load it only looks at
260 * every third sample, and this can be reduced even further if needed (even
261 * every tenth sample would still be pretty accurate).
264 /* Check for a peak every PEAK_STRIDE samples */
265 #define PEAK_STRIDE 3
266 /* Up to 1/50th of a second of audio for peak calculation */
267 /* This should use NATIVE_FREQUENCY, or eventually an adjustable freq. value */
268 #define PEAK_SAMPLES (44100/50)
269 void pcm_calculate_peaks(int *left
, int *right
)
274 #if CONFIG_CPU == PNX0101
275 size_t samples
= p_size
/ 4;
277 #endif /* CONFIG_CPU */.
279 if (samples
> PEAK_SAMPLES
)
280 samples
= PEAK_SAMPLES
- (PEAK_STRIDE
- 1);
282 samples
-= MIN(PEAK_STRIDE
- 1, samples
);
284 end
= &addr
[samples
* 2];
288 int left_peak
= 0, right_peak
= 0;
292 if ((value
= addr
[0]) > left_peak
)
294 else if (-value
> left_peak
)
297 if ((value
= addr
[PEAK_STRIDE
| 1]) > right_peak
)
299 else if (-value
> right_peak
)
302 addr
= &addr
[PEAK_STRIDE
* 2];
308 else if (left
|| right
) {
309 int peak_value
= 0, value
;
312 addr
+= (PEAK_STRIDE
| 1);
315 if ((value
= addr
[0]) > peak_value
)
317 else if (-value
> peak_value
)
320 addr
+= PEAK_STRIDE
* 2;
329 #endif /* !defined(CPU_PP) */
331 #endif /* !defined(CPU_COLDFIRE) && (CONFIG_CPU != S3C2440) */
333 /****************************************************************************
334 * Functions that do not require targeted implementation but only a targeted
338 /* Common code to pcm_play_data and pcm_play_pause
339 Returns true if DMA playback was started, else false. */
340 bool pcm_play_data_start(pcm_more_callback_type get_more
,
341 unsigned char *start
, size_t size
)
343 if (!(start
&& size
))
347 get_more(&start
, &size
);
352 pcm_play_dma_start(start
, size
);
359 void pcm_play_data(pcm_more_callback_type get_more
,
360 unsigned char *start
, size_t size
)
362 pcm_callback_for_more
= get_more
;
364 if (pcm_play_data_start(get_more
, start
, size
) && pcm_paused
)
367 pcm_play_pause(false);
371 void pcm_play_pause(bool play
)
373 bool needs_change
= pcm_paused
== play
;
375 /* This needs to be done ahead of the rest to prevent infinite
376 recursion from pcm_play_data */
379 if (pcm_playing
&& needs_change
)
383 if (pcm_get_bytes_waiting())
386 pcm_play_pause_unpause();
390 logf("unpause, no data waiting");
391 if (!pcm_play_data_start(pcm_callback_for_more
, NULL
, 0))
394 logf("unpause attempted, no data");
401 pcm_play_pause_pause();
403 } /* pcm_playing && needs_change */
406 void pcm_play_stop(void)
412 bool pcm_is_playing(void)
417 bool pcm_is_paused(void)