1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2005 by Linus Nielsen Feltzing
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
21 #ifndef PCM_PLAYBACK_H
22 #define PCM_PLAYBACK_H
24 #include <sys/types.h>
26 #define DMA_REC_ERROR_DMA (-1)
28 #define DMA_REC_ERROR_SPDIF (-2)
32 /* pcm (dma) buffer has overflowed */
33 #define PCMREC_W_PCM_BUFFER_OVF 0x00000001
34 /* encoder output buffer has overflowed */
35 #define PCMREC_W_ENC_BUFFER_OVF 0x00000002
37 /* failed to load encoder */
38 #define PCMREC_E_LOAD_ENCODER 0x80001000
39 /* error originating in encoder */
40 #define PCMREC_E_ENCODER 0x80002000
41 /* filename queue has desynced from stream markers */
42 #define PCMREC_E_FNQ_DESYNC 0x80004000
43 /* I/O error has occurred */
44 #define PCMREC_E_IO 0x80008000
46 /* encoder has written past end of allotted space */
47 #define PCMREC_E_CHUNK_OVF 0x80010000
50 /** RAW PCM routines used with playback and recording **/
52 /* Typedef for registered callback */
53 typedef void (*pcm_more_callback_type
)(unsigned char **start
,
55 typedef int (*pcm_more_callback_type2
)(int status
);
57 /* set the pcm frequency - use values in hw_sampr_list
58 * use -1 for the default frequency
60 void pcm_set_frequency(unsigned int samplerate
);
61 /* apply settings to hardware immediately */
62 void pcm_apply_settings(void);
64 /** RAW PCM playback routines **/
66 /* Reenterable locks for locking and unlocking the playback interrupt */
67 void pcm_play_lock(void);
68 void pcm_play_unlock(void);
71 void pcm_postinit(void);
73 /* This is for playing "raw" PCM data */
74 void pcm_play_data(pcm_more_callback_type get_more
,
75 unsigned char* start
, size_t size
);
77 void pcm_calculate_peaks(int *left
, int *right
);
78 size_t pcm_get_bytes_waiting(void);
80 void pcm_play_stop(void);
81 void pcm_mute(bool mute
);
82 void pcm_play_pause(bool play
);
83 bool pcm_is_paused(void);
84 bool pcm_is_playing(void);
86 /** The following are for internal use between pcm.c and target-
89 extern unsigned long pcm_curr_sampr
;
90 extern unsigned long pcm_sampr
;
93 /* the registered callback function to ask for more mp3 data */
94 extern volatile pcm_more_callback_type pcm_callback_for_more
;
95 extern volatile bool pcm_playing
;
96 extern volatile bool pcm_paused
;
98 void pcm_play_dma_lock(void);
99 void pcm_play_dma_unlock(void);
100 void pcm_play_dma_init(void);
101 void pcm_play_dma_start(const void *addr
, size_t size
);
102 void pcm_play_dma_stop(void);
103 void pcm_play_dma_pause(bool pause
);
104 void pcm_play_dma_stopped_callback(void);
105 const void * pcm_play_dma_get_peak_buffer(int *count
);
107 void pcm_dma_apply_settings(void);
109 #ifdef HAVE_RECORDING
111 /** RAW PCM recording routines **/
113 /* Reenterable locks for locking and unlocking the recording interrupt */
114 void pcm_rec_lock(void);
115 void pcm_rec_unlock(void);
117 /* Initialize pcm recording interface */
118 void pcm_init_recording(void);
119 /* Uninitialze pcm recording interface */
120 void pcm_close_recording(void);
122 /* Start recording "raw" PCM data */
123 void pcm_record_data(pcm_more_callback_type2 more_ready
,
124 void *start
, size_t size
);
126 /* Stop tranferring data into supplied buffer */
127 void pcm_stop_recording(void);
129 /* Is pcm currently recording? */
130 bool pcm_is_recording(void);
132 /* Continue transferring data in - call during interrupt handler */
133 void pcm_record_more(void *start
, size_t size
);
135 void pcm_calculate_rec_peaks(int *left
, int *right
);
137 /** The following are for internal use between pcm.c and target-
139 extern volatile const void *pcm_rec_peak_addr
;
140 /* the registered callback function for when more data is available */
141 extern volatile pcm_more_callback_type2 pcm_callback_more_ready
;
142 /* DMA transfer in is currently active */
143 extern volatile bool pcm_recording
;
145 /* APIs implemented in the target-specific portion */
146 void pcm_rec_dma_init(void);
147 void pcm_rec_dma_close(void);
148 void pcm_rec_dma_start(void *addr
, size_t size
);
149 void pcm_rec_dma_stop(void);
150 void pcm_rec_dma_stopped_callback(void);
151 const void * pcm_rec_dma_get_peak_buffer(int *count
);
153 #endif /* HAVE_RECORDING */
155 #endif /* PCM_PLAYBACK_H */