summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
authorMaurus Cuelenaere <mcuelenaere@gmail.com>2009-03-02 18:18:24 +0000
committerMaurus Cuelenaere <mcuelenaere@gmail.com>2009-03-02 18:18:24 +0000
commit6c252a67519c49f365b354e00625a521c86dd29d (patch)
treedba18bcdfb4493a589392f34408eb3509babf210 /firmware
parent69ffd7c84ffae0999d2a4f10b840f33f67d67a60 (diff)
downloadrockbox-6c252a67519c49f365b354e00625a521c86dd29d.tar.gz
rockbox-6c252a67519c49f365b354e00625a521c86dd29d.zip
Onda VX747:
* Add speaker en-/disable driver * Add apps/ setting to en-/disable the speaker git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20174 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r--firmware/export/audiohw.h6
-rw-r--r--firmware/target/mips/ingenic_jz47xx/onda_vx747/speaker-onda_vx747.c34
2 files changed, 40 insertions, 0 deletions
diff --git a/firmware/export/audiohw.h b/firmware/export/audiohw.h
index 423b520dc5..e53db7e7b9 100644
--- a/firmware/export/audiohw.h
+++ b/firmware/export/audiohw.h
@@ -305,4 +305,10 @@ void audiohw_set_stereo_width(int val);
305 305
306#endif /* CONFIG_CODEC != SWCODEC */ 306#endif /* CONFIG_CODEC != SWCODEC */
307 307
308#ifdef HAVE_SPEAKER
309
310void audiohw_enable_speaker(bool on);
311
312#endif /* HAVE_SPEAKER */
313
308#endif /* _AUDIOHW_H_ */ 314#endif /* _AUDIOHW_H_ */
diff --git a/firmware/target/mips/ingenic_jz47xx/onda_vx747/speaker-onda_vx747.c b/firmware/target/mips/ingenic_jz47xx/onda_vx747/speaker-onda_vx747.c
new file mode 100644
index 0000000000..12dd03e8c7
--- /dev/null
+++ b/firmware/target/mips/ingenic_jz47xx/onda_vx747/speaker-onda_vx747.c
@@ -0,0 +1,34 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2009 by Maurus Cuelenaere
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 "jz4740.h"
23#include "audiohw.h"
24
25#define SPEAKER_PIN (32*2 + 27)
26
27void audiohw_enable_speaker(bool on)
28{
29 __gpio_as_output(SPEAKER_PIN);
30 if(on)
31 __gpio_set_pin(SPEAKER_PIN);
32 else
33 __gpio_clear_pin(SPEAKER_PIN);
34}