source: mainline/uspace/drv/audio/sb16/dsp.c@ b7c080c

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since b7c080c was b7c080c, checked in by Jan Vesely <jano.vesely@…>, 13 years ago

sb16: Implement test_format call.

  • Property mode set to 100644
File size: 11.4 KB
Line 
1/*
2 * Copyright (c) 2011 Jan Vesely
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28/** @addtogroup drvaudiosb16
29 * @{
30 */
31/** @file
32 * @brief DSP helper functions implementation
33 */
34
35#include <bool.h>
36#include <devman.h>
37#include <device/hw_res.h>
38#include <libarch/ddi.h>
39#include <libarch/barrier.h>
40#include <str_error.h>
41#include <audio_pcm_iface.h>
42
43#include "dma.h"
44#include "ddf_log.h"
45#include "dsp_commands.h"
46#include "dsp.h"
47
48#define MAX_BUFFER_SIZE (PAGE_SIZE)
49
50#ifndef DSP_RETRY_COUNT
51#define DSP_RETRY_COUNT 100
52#endif
53
54#define DSP_RESET_RESPONSE 0xaa
55#define DSP_RATE_LIMIT 45000
56
57#define AUTO_DMA_MODE
58
59static inline int sb_dsp_read(sb_dsp_t *dsp, uint8_t *data)
60{
61 assert(data);
62 assert(dsp);
63 uint8_t status;
64 size_t attempts = DSP_RETRY_COUNT;
65 do {
66 status = pio_read_8(&dsp->regs->dsp_read_status);
67 } while (--attempts && ((status & DSP_READ_READY) == 0));
68
69 if ((status & DSP_READ_READY) == 0)
70 return EIO;
71
72 *data = pio_read_8(&dsp->regs->dsp_data_read);
73 return EOK;
74}
75
76static inline int sb_dsp_write(sb_dsp_t *dsp, uint8_t data)
77{
78 assert(dsp);
79 uint8_t status;
80 size_t attempts = DSP_RETRY_COUNT;
81 do {
82 status = pio_read_8(&dsp->regs->dsp_write);
83 } while (--attempts && ((status & DSP_WRITE_BUSY) != 0));
84
85 if ((status & DSP_WRITE_BUSY))
86 return EIO;
87
88 pio_write_8(&dsp->regs->dsp_write, data);
89 return EOK;
90}
91
92static inline void sb_dsp_reset(sb_dsp_t *dsp)
93{
94 assert(dsp);
95 /* Reset DSP, see Chapter 2 of Sound Blaster HW programming guide */
96 pio_write_8(&dsp->regs->dsp_reset, 1);
97 udelay(3); /* Keep reset for 3 us */
98 pio_write_8(&dsp->regs->dsp_reset, 0);
99}
100
101static inline int sb_setup_dma(sb_dsp_t *dsp, uintptr_t pa, size_t size)
102{
103 async_sess_t *sess = devman_parent_device_connect(EXCHANGE_ATOMIC,
104 dsp->sb_dev->handle, IPC_FLAG_BLOCKING);
105 if (!sess)
106 return ENOMEM;
107
108 const int ret = hw_res_dma_channel_setup(sess,
109 dsp->dma16_channel, pa, size,
110 DMA_MODE_READ | DMA_MODE_AUTO | DMA_MODE_ON_DEMAND);
111 async_hangup(sess);
112 return ret;
113}
114
115static inline int sb_setup_buffer(sb_dsp_t *dsp, size_t size)
116{
117 assert(dsp);
118 if (size > MAX_BUFFER_SIZE || size == 0 || (size % 2) == 1)
119 size = MAX_BUFFER_SIZE;
120 uint8_t *buffer = dma_create_buffer24(size);
121 if (buffer == NULL) {
122 ddf_log_error("Failed to allocate DMA buffer.");
123 return ENOMEM;
124 }
125
126 const uintptr_t pa = addr_to_phys(buffer);
127 assert(pa < (1 << 25));
128
129 /* Set 16 bit channel */
130 const int ret = sb_setup_dma(dsp, pa, size);
131 if (ret == EOK) {
132 dsp->buffer.data = buffer;
133 dsp->buffer.size = size;
134 bzero(dsp->buffer.data, dsp->buffer.size);
135 } else {
136 ddf_log_error("Failed to setup DMA16 channel: %s.",
137 str_error(ret));
138 dma_destroy_buffer(buffer);
139 }
140 return ret;
141}
142
143static inline void sb_clear_buffer(sb_dsp_t *dsp)
144{
145 dma_destroy_buffer(dsp->buffer.data);
146 dsp->buffer.data = NULL;
147 dsp->buffer.size = 0;
148}
149
150static inline size_t sample_count(pcm_sample_format_t format, size_t byte_count)
151{
152 return byte_count / pcm_sample_format_size(format);
153}
154
155int sb_dsp_init(sb_dsp_t *dsp, sb16_regs_t *regs, ddf_dev_t *dev,
156 int dma8, int dma16)
157{
158 assert(dsp);
159 dsp->regs = regs;
160 dsp->dma8_channel = dma8;
161 dsp->dma16_channel = dma16;
162 dsp->event_session = NULL;
163 dsp->event_exchange = NULL;
164 dsp->sb_dev = dev;
165 dsp->status = DSP_STOPPED;
166 sb_dsp_reset(dsp);
167 /* "DSP takes about 100 microseconds to initialize itself" */
168 udelay(100);
169 uint8_t response;
170 const int ret = sb_dsp_read(dsp, &response);
171 if (ret != EOK) {
172 ddf_log_error("Failed to read DSP reset response value.");
173 return ret;
174 }
175 if (response != DSP_RESET_RESPONSE) {
176 ddf_log_error("Invalid DSP reset response: %x.", response);
177 return EIO;
178 }
179
180 /* Get DSP version number */
181 sb_dsp_write(dsp, DSP_VERSION);
182 sb_dsp_read(dsp, &dsp->version.major);
183 sb_dsp_read(dsp, &dsp->version.minor);
184
185 return ret;
186}
187
188void sb_dsp_interrupt(sb_dsp_t *dsp)
189{
190 assert(dsp);
191 dsp->active.frame_count +=
192 dsp->active.samples / ((dsp->active.mode & DSP_MODE_STEREO) ? 2 : 1);
193
194 if (dsp->event_exchange) {
195 switch (dsp->status) {
196 case DSP_PLAYBACK:
197 async_msg_1(dsp->event_exchange,
198 PCM_EVENT_FRAMES_PLAYED, dsp->active.frame_count);
199 break;
200 case DSP_RECORDING:
201 async_msg_1(dsp->event_exchange,
202 PCM_EVENT_FRAMES_RECORDED, dsp->active.frame_count);
203 break;
204 default:
205 case DSP_STOPPED:
206 ddf_log_warning("Interrupt while DSP stopped and "
207 "event exchange present. Terminating exchange");
208 async_exchange_end(dsp->event_exchange);
209 dsp->event_exchange = NULL;
210 }
211 } else {
212 ddf_log_warning("Interrupt with no event consumer.");
213 }
214#ifndef AUTO_DMA_MODE
215 if (dsp->active.playing)
216 sb_dsp_write(dsp, SINGLE_DMA_16B_DA);
217 else
218 sb_dsp_write(dsp, SINGLE_DMA_16B_AD);
219
220 sb_dsp_write(dsp, dsp->active.mode);
221 sb_dsp_write(dsp, (dsp->active.samples - 1) & 0xff);
222 sb_dsp_write(dsp, (dsp->active.samples - 1) >> 8);
223#endif
224}
225
226int sb_dsp_test_format(sb_dsp_t *dsp, unsigned *channels, unsigned *rate,
227 pcm_sample_format_t *format)
228{
229 int ret = EOK;
230 if (*channels == 0 || *channels > 2) {
231 *channels = 2;
232 ret = ELIMIT;
233 }
234 if (*rate > DSP_RATE_LIMIT) {
235 *rate = DSP_RATE_LIMIT;
236 ret = ELIMIT;
237 }
238 //TODO 8bit DMA supports 8bit formats
239 if (*format != PCM_SAMPLE_SINT16_LE && *format != PCM_SAMPLE_UINT16_LE) {
240 *format = pcm_sample_format_is_signed(*format) ?
241 PCM_SAMPLE_SINT16_LE : PCM_SAMPLE_UINT16_LE;
242 ret = ELIMIT;
243 }
244 return ret;
245}
246
247int sb_dsp_get_buffer(sb_dsp_t *dsp, void **buffer, size_t *size)
248{
249 assert(dsp);
250 assert(size);
251
252 /* buffer is already setup by for someone, refuse to work until
253 * it's released */
254 if (dsp->buffer.data)
255 return EBUSY;
256
257 const int ret = sb_setup_buffer(dsp, *size);
258 if (ret == EOK) {
259 ddf_log_debug("Providing buffer: %p, %zu B.",
260 dsp->buffer.data, dsp->buffer.size);
261
262 if (buffer)
263 *buffer = dsp->buffer.data;
264 if (size)
265 *size = dsp->buffer.size;
266 }
267 return ret;
268}
269
270int sb_dsp_set_event_session(sb_dsp_t *dsp, async_sess_t *session)
271{
272 assert(dsp);
273 assert(session);
274 if (dsp->event_session)
275 return EBUSY;
276 dsp->event_session = session;
277 ddf_log_debug("Set event session.");
278 return EOK;
279}
280
281int sb_dsp_release_buffer(sb_dsp_t *dsp)
282{
283 assert(dsp);
284 sb_clear_buffer(dsp);
285 async_exchange_end(dsp->event_exchange);
286 dsp->event_exchange = NULL;
287 if (dsp->event_session)
288 async_hangup(dsp->event_session);
289 dsp->event_session = NULL;
290 ddf_log_debug("DSP buffer released.");
291 return EOK;
292}
293
294int sb_dsp_start_playback(sb_dsp_t *dsp, unsigned frames,
295 unsigned channels, unsigned sampling_rate, pcm_sample_format_t format)
296{
297 assert(dsp);
298
299 if (!dsp->event_session)
300 return EINVAL;
301
302 /* Check supported parameters */
303 ddf_log_debug("Requested playback: %u frames, %uHz, %s, %u channel(s).",
304 frames, sampling_rate, pcm_sample_format_str(format), channels);
305 if (channels != 1 && channels != 2)
306 return ENOTSUP;
307 if (sampling_rate > DSP_RATE_LIMIT)
308 return ENOTSUP;
309 // FIXME We only support 16 bit playback
310 if (format != PCM_SAMPLE_UINT16_LE && format != PCM_SAMPLE_SINT16_LE)
311 return ENOTSUP;
312
313 dsp->event_exchange = async_exchange_begin(dsp->event_session);
314 if (!dsp->event_exchange)
315 return ENOMEM;
316
317 const bool sign = (format == PCM_SAMPLE_SINT16_LE);
318
319 sb_dsp_write(dsp, SET_SAMPLING_RATE_OUTPUT);
320 sb_dsp_write(dsp, sampling_rate >> 8);
321 sb_dsp_write(dsp, sampling_rate & 0xff);
322
323 ddf_log_verbose("Sample rate: %hhx:%hhx.",
324 sampling_rate >> 8, sampling_rate & 0xff);
325
326#ifdef AUTO_DMA_MODE
327 sb_dsp_write(dsp, AUTO_DMA_16B_DA_FIFO);
328#else
329 sb_dsp_write(dsp, SINGLE_DMA_16B_DA_FIFO);
330#endif
331
332 dsp->active.mode = 0
333 | (sign ? DSP_MODE_SIGNED : 0)
334 | (channels == 2 ? DSP_MODE_STEREO : 0);
335 dsp->active.samples = frames * channels;
336 dsp->active.frame_count = 0;
337
338 sb_dsp_write(dsp, dsp->active.mode);
339 sb_dsp_write(dsp, (dsp->active.samples - 1) & 0xff);
340 sb_dsp_write(dsp, (dsp->active.samples - 1) >> 8);
341
342 ddf_log_verbose("Playback started, interrupt every %u samples "
343 "(~1/%u sec)", dsp->active.samples,
344 sampling_rate / (dsp->active.samples * channels));
345
346 dsp->status = DSP_PLAYBACK;
347
348 return EOK;
349}
350
351int sb_dsp_stop_playback(sb_dsp_t *dsp)
352{
353 assert(dsp);
354 sb_dsp_write(dsp, DMA_16B_EXIT);
355 ddf_log_debug("Stopping playback on buffer.");
356 async_msg_0(dsp->event_exchange, PCM_EVENT_PLAYBACK_TERMINATED);
357 async_exchange_end(dsp->event_exchange);
358 dsp->event_exchange = NULL;
359 return EOK;
360}
361
362int sb_dsp_start_record(sb_dsp_t *dsp, unsigned frames,
363 unsigned channels, unsigned sampling_rate, pcm_sample_format_t format)
364{
365 assert(dsp);
366
367 if (!dsp->event_session)
368 return EINVAL;
369
370 /* Check supported parameters */
371 ddf_log_debug("Requested record: %u frames, %uHz, %s, %u channel(s).",
372 frames, sampling_rate, pcm_sample_format_str(format), channels);
373 if (channels != 1 && channels != 2)
374 return ENOTSUP;
375 if (sampling_rate > DSP_RATE_LIMIT)
376 return ENOTSUP;
377 // FIXME We only support 16 bit recording
378 if (format != PCM_SAMPLE_UINT16_LE && format != PCM_SAMPLE_SINT16_LE)
379 return ENOTSUP;
380
381 dsp->event_exchange = async_exchange_begin(dsp->event_session);
382 if (!dsp->event_exchange)
383 return ENOMEM;
384
385 const bool sign = (format == PCM_SAMPLE_SINT16_LE);
386
387 sb_dsp_write(dsp, SET_SAMPLING_RATE_OUTPUT);
388 sb_dsp_write(dsp, sampling_rate >> 8);
389 sb_dsp_write(dsp, sampling_rate & 0xff);
390
391 ddf_log_verbose("Sampling rate: %hhx:%hhx.",
392 sampling_rate >> 8, sampling_rate & 0xff);
393
394#ifdef AUTO_DMA_MODE
395 sb_dsp_write(dsp, AUTO_DMA_16B_AD_FIFO);
396#else
397 sb_dsp_write(dsp, SINGLE_DMA_16B_AD_FIFO);
398#endif
399
400 dsp->active.mode = 0 |
401 (sign ? DSP_MODE_SIGNED : 0) |
402 (channels == 2 ? DSP_MODE_STEREO : 0);
403 dsp->active.samples = frames * channels;
404 dsp->active.frame_count = 0;
405
406 sb_dsp_write(dsp, dsp->active.mode);
407 sb_dsp_write(dsp, (dsp->active.samples - 1) & 0xff);
408 sb_dsp_write(dsp, (dsp->active.samples - 1) >> 8);
409
410 ddf_log_verbose("Recording started started, interrupt every %u samples "
411 "(~1/%u sec)", dsp->active.samples,
412 sampling_rate / (dsp->active.samples * channels));
413 dsp->status = DSP_RECORDING;
414
415 return EOK;
416}
417
418int sb_dsp_stop_record(sb_dsp_t *dsp)
419{
420 assert(dsp);
421 sb_dsp_write(dsp, DMA_16B_EXIT);
422 ddf_log_debug("Stopped recording");
423 async_msg_0(dsp->event_exchange, PCM_EVENT_RECORDING_TERMINATED);
424 async_exchange_end(dsp->event_exchange);
425 dsp->event_exchange = NULL;
426 return EOK;
427}
428/**
429 * @}
430 */
Note: See TracBrowser for help on using the repository browser.