summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmaury Pouly <pamaury@rockbox.org>2011-09-13 23:40:12 +0000
committerAmaury Pouly <pamaury@rockbox.org>2011-09-13 23:40:12 +0000
commite55394521b32ce22aa431826e51c61a4b33589d8 (patch)
tree04d1ee0a88ffabb300bd1c57324ff9cca52ef5bd
parent696b9d146b69b36fc309233f62d43f4f57f26823 (diff)
downloadrockbox-e55394521b32ce22aa431826e51c61a4b33589d8.tar.gz
rockbox-e55394521b32ce22aa431826e51c61a4b33589d8.zip
imx233/fuze+: implement various audio stubs and update source
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30535 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/SOURCES8
-rw-r--r--firmware/target/arm/imx233/audiohw-imx233.c61
-rw-r--r--firmware/target/arm/imx233/audioin-imx233.h27
-rw-r--r--firmware/target/arm/imx233/audioout-imx233.h27
-rw-r--r--firmware/target/arm/imx233/pcm-imx233.c114
-rw-r--r--firmware/target/arm/imx233/sansa-fuzeplus/audio-fuzeplus.c35
6 files changed, 272 insertions, 0 deletions
diff --git a/firmware/SOURCES b/firmware/SOURCES
index ef57afc52b..5295b3512f 100644
--- a/firmware/SOURCES
+++ b/firmware/SOURCES
@@ -513,12 +513,16 @@ target/arm/imx233/pinctrl-imx233.c
513target/arm/imx233/power-imx233.c 513target/arm/imx233/power-imx233.c
514target/arm/imx233/powermgmt-imx233.c 514target/arm/imx233/powermgmt-imx233.c
515target/arm/imx233/adc-imx233.c 515target/arm/imx233/adc-imx233.c
516target/arm/imx233/lradc-imx233.c
516target/arm/imx233/debug-imx233.c 517target/arm/imx233/debug-imx233.c
517#if !defined(BOOTLOADER) || defined(HAVE_BOOTLOADER_USB_MODE) 518#if !defined(BOOTLOADER) || defined(HAVE_BOOTLOADER_USB_MODE)
518target/arm/imx233/usb-imx233.c 519target/arm/imx233/usb-imx233.c
519#endif 520#endif
520#ifndef BOOTLOADER 521#ifndef BOOTLOADER
522#ifdef HAVE_IMX233_CODEC
521target/arm/imx233/pcm-imx233.c 523target/arm/imx233/pcm-imx233.c
524target/arm/imx233/audiohw-imx233.c
525#endif
522target/arm/imx233/timer-imx233.c 526target/arm/imx233/timer-imx233.c
523#endif 527#endif
524#endif /* IMX233 */ 528#endif /* IMX233 */
@@ -1482,6 +1486,10 @@ target/arm/imx233/sansa-fuzeplus/lcd-fuzeplus.c
1482target/arm/imx233/sansa-fuzeplus/button-fuzeplus.c 1486target/arm/imx233/sansa-fuzeplus/button-fuzeplus.c
1483target/arm/imx233/sansa-fuzeplus/debug-fuzeplus.c 1487target/arm/imx233/sansa-fuzeplus/debug-fuzeplus.c
1484target/arm/imx233/sansa-fuzeplus/power-fuzeplus.c 1488target/arm/imx233/sansa-fuzeplus/power-fuzeplus.c
1489target/arm/imx233/sansa-fuzeplus/adc-fuzeplus.c
1490#ifndef BOOTLOADER
1491target/arm/imx233/sansa-fuzeplus/audio-fuzeplus.c
1492#endif
1485#endif /* SIMULATOR */ 1493#endif /* SIMULATOR */
1486#endif 1494#endif
1487 1495
diff --git a/firmware/target/arm/imx233/audiohw-imx233.c b/firmware/target/arm/imx233/audiohw-imx233.c
new file mode 100644
index 0000000000..e5bb093b2f
--- /dev/null
+++ b/firmware/target/arm/imx233/audiohw-imx233.c
@@ -0,0 +1,61 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2011 by Amaury Pouly
11 *
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.
16 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ****************************************************************************/
21#include "config.h"
22#include "system.h"
23#include "audiohw.h"
24#include "audio.h"
25
26/* TO FILL */
27const struct sound_settings_info audiohw_settings[] =
28{
29 [SOUND_VOLUME] = {"dB", 0, 1, -74, 6, -25},
30 [SOUND_BASS] = {"dB", 0, 1, -24, 24, 0},
31 [SOUND_TREBLE] = {"dB", 0, 1, -24, 24, 0},
32 [SOUND_BALANCE] = {"%", 0, 1,-100, 100, 0},
33 [SOUND_CHANNELS] = {"", 0, 1, 0, 5, 0},
34 [SOUND_STEREO_WIDTH] = {"%", 0, 5, 0, 250, 100},
35 [SOUND_LEFT_GAIN] = {"dB", 1, 1, 0, 31, 23},
36 [SOUND_RIGHT_GAIN] = {"dB", 1, 1, 0, 31, 23},
37 [SOUND_MIC_GAIN] = {"dB", 1, 1, 0, 1, 0},
38};
39
40void audiohw_init(void)
41{
42}
43
44void audiohw_preinit(void)
45{
46}
47
48void audiohw_postinit(void)
49{
50}
51
52void audiohw_close(void)
53{
54}
55
56void audiohw_set_recvol(int left, int right, int type)
57{
58 (void) left;
59 (void) right;
60 (void) type;
61}
diff --git a/firmware/target/arm/imx233/audioin-imx233.h b/firmware/target/arm/imx233/audioin-imx233.h
new file mode 100644
index 0000000000..d4468f8d4a
--- /dev/null
+++ b/firmware/target/arm/imx233/audioin-imx233.h
@@ -0,0 +1,27 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2011 by Amaury Pouly
11 *
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.
16 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ****************************************************************************/
21#ifndef __audioin_imx233__
22#define __audioin_imx233__
23
24#include "config.h"
25#include "cpu.h"
26
27#endif /* __audioin_imx233__ */
diff --git a/firmware/target/arm/imx233/audioout-imx233.h b/firmware/target/arm/imx233/audioout-imx233.h
new file mode 100644
index 0000000000..913e633de0
--- /dev/null
+++ b/firmware/target/arm/imx233/audioout-imx233.h
@@ -0,0 +1,27 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2011 by Amaury Pouly
11 *
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.
16 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ****************************************************************************/
21#ifndef __audioout_imx233__
22#define __audioout_imx233__
23
24#include "config.h"
25#include "cpu.h"
26
27#endif /* __audioout_imx233__ */
diff --git a/firmware/target/arm/imx233/pcm-imx233.c b/firmware/target/arm/imx233/pcm-imx233.c
new file mode 100644
index 0000000000..6dd678f506
--- /dev/null
+++ b/firmware/target/arm/imx233/pcm-imx233.c
@@ -0,0 +1,114 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2011 by Amaury Pouly
11 *
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.
16 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ****************************************************************************/
21
22#include "config.h"
23#include "audiohw.h"
24#include "pcm.h"
25#include "audioin-imx233.h"
26#include "audioout-imx233.h"
27
28void pcm_play_lock(void)
29{
30}
31
32void pcm_play_unlock(void)
33{
34}
35
36void pcm_play_dma_stop(void)
37{
38}
39
40void pcm_play_dma_start(const void *addr, size_t size)
41{
42 pcm_play_dma_stop();
43
44 (void) addr;
45 (void) size;
46}
47
48void pcm_play_dma_pause(bool pause)
49{
50 (void) pause;
51}
52
53void pcm_play_dma_init(void)
54{
55 audiohw_preinit();
56}
57
58void pcm_play_dma_postinit(void)
59{
60 audiohw_postinit();
61}
62
63void pcm_dma_apply_settings(void)
64{
65 return;
66}
67
68size_t pcm_get_bytes_waiting(void)
69{
70 return 0;
71}
72
73const void *pcm_play_dma_get_peak_buffer(int *count)
74{
75 (void) count;
76 return NULL;
77}
78
79void pcm_rec_lock(void)
80{
81}
82
83void pcm_rec_unlock(void)
84{
85}
86
87void pcm_rec_dma_init(void)
88{
89}
90
91void pcm_rec_dma_close(void)
92{
93}
94
95void pcm_rec_dma_start(void *addr, size_t size)
96{
97 (void) addr;
98 (void) size;
99}
100
101/*
102void pcm_rec_dma_record_more(void *start, size_t size)
103{
104}
105*/
106
107void pcm_rec_dma_stop(void)
108{
109}
110
111const void * pcm_rec_dma_get_peak_buffer(void)
112{
113 return NULL;
114}
diff --git a/firmware/target/arm/imx233/sansa-fuzeplus/audio-fuzeplus.c b/firmware/target/arm/imx233/sansa-fuzeplus/audio-fuzeplus.c
new file mode 100644
index 0000000000..fa4294fff1
--- /dev/null
+++ b/firmware/target/arm/imx233/sansa-fuzeplus/audio-fuzeplus.c
@@ -0,0 +1,35 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2011 by Amaury Pouly
11 *
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.
16 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ****************************************************************************/
21#include "config.h"
22#include "system.h"
23#include "audiohw.h"
24#include "audio.h"
25
26void audio_input_mux(int source, unsigned flags)
27{
28 (void) source;
29 (void) flags;
30}
31
32void audio_set_output_source(int source)
33{
34 (void) source;
35}