1 | /*
|
---|
2 | * Copyright (c) 2025 Jiri Svoboda
|
---|
3 | * Copyright (c) 2011 Jan Vesely
|
---|
4 | * All rights reserved.
|
---|
5 | *
|
---|
6 | * Redistribution and use in source and binary forms, with or without
|
---|
7 | * modification, are permitted provided that the following conditions
|
---|
8 | * are met:
|
---|
9 | *
|
---|
10 | * - Redistributions of source code must retain the above copyright
|
---|
11 | * notice, this list of conditions and the following disclaimer.
|
---|
12 | * - Redistributions in binary form must reproduce the above copyright
|
---|
13 | * notice, this list of conditions and the following disclaimer in the
|
---|
14 | * documentation and/or other materials provided with the distribution.
|
---|
15 | * - The name of the author may not be used to endorse or promote products
|
---|
16 | * derived from this software without specific prior written permission.
|
---|
17 | *
|
---|
18 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
19 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
20 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
21 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
22 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
23 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
24 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
25 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
26 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
27 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
28 | */
|
---|
29 |
|
---|
30 | /** @addtogroup drvaudiosb16
|
---|
31 | * @{
|
---|
32 | */
|
---|
33 | /** @file
|
---|
34 | * @brief SB16 main structure combining all functionality
|
---|
35 | */
|
---|
36 | #ifndef DRV_AUDIO_SB16_SB16_H
|
---|
37 | #define DRV_AUDIO_SB16_SB16_H
|
---|
38 |
|
---|
39 | #include <ddf/driver.h>
|
---|
40 | #include <ddi.h>
|
---|
41 | #include <device/hw_res_parsed.h>
|
---|
42 |
|
---|
43 | #include "dsp.h"
|
---|
44 | #include "mixer.h"
|
---|
45 | #include "registers.h"
|
---|
46 |
|
---|
47 | typedef struct sb16 {
|
---|
48 | sb16_regs_t *regs;
|
---|
49 | mpu_regs_t *mpu_regs;
|
---|
50 | sb_dsp_t dsp;
|
---|
51 | sb_mixer_t mixer;
|
---|
52 | } sb16_t;
|
---|
53 |
|
---|
54 | size_t sb16_irq_code_size(void);
|
---|
55 | void sb16_irq_code(addr_range_t *regs, int dma8, int dma16, irq_cmd_t cmds[], irq_pio_range_t ranges[]);
|
---|
56 | errno_t sb16_init_sb16(sb16_t *sb, addr_range_t *regs, ddf_dev_t *dev, int dma8, int dma16);
|
---|
57 | errno_t sb16_init_mpu(sb16_t *sb, addr_range_t *regs);
|
---|
58 | errno_t sb16_quiesce(sb16_t *sb);
|
---|
59 | void sb16_interrupt(sb16_t *sb);
|
---|
60 |
|
---|
61 | #endif
|
---|
62 | /**
|
---|
63 | * @}
|
---|
64 | */
|
---|