summaryrefslogtreecommitdiffstats
path: root/firmware/target/arm/imx233/creative-zenxfi3/audio-zenxfi3.c
diff options
context:
space:
mode:
authorAmaury Pouly <amaury.pouly@gmail.com>2013-06-18 16:19:28 +0200
committerAmaury Pouly <amaury.pouly@gmail.com>2013-06-18 16:19:28 +0200
commitea8b22a9b67b6db6ae6975d995999f9322071ead (patch)
treef9c74752c408f481462f4a1cef80a626023543c0 /firmware/target/arm/imx233/creative-zenxfi3/audio-zenxfi3.c
parent11c907a83c9081d587b27db32fafafe912812563 (diff)
downloadrockbox-ea8b22a9b67b6db6ae6975d995999f9322071ead.tar.gz
rockbox-ea8b22a9b67b6db6ae6975d995999f9322071ead.zip
zenxfi3: drop audio routing driver in favor of the generic one
Change-Id: Ia104c148f9139434d2c70190d2834b06de20de23
Diffstat (limited to 'firmware/target/arm/imx233/creative-zenxfi3/audio-zenxfi3.c')
-rw-r--r--firmware/target/arm/imx233/creative-zenxfi3/audio-zenxfi3.c78
1 files changed, 0 insertions, 78 deletions
diff --git a/firmware/target/arm/imx233/creative-zenxfi3/audio-zenxfi3.c b/firmware/target/arm/imx233/creative-zenxfi3/audio-zenxfi3.c
deleted file mode 100644
index 3ea757aedb..0000000000
--- a/firmware/target/arm/imx233/creative-zenxfi3/audio-zenxfi3.c
+++ /dev/null
@@ -1,78 +0,0 @@
-/***************************************************************************
- * __________ __ ___.
- * Open \______ \ ____ ____ | | _\_ |__ _______ ___
- * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
- * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
- * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
- * \/ \/ \/ \/ \/
- * $Id$
- *
- * Copyright (C) 2012 by Amaury Pouly
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
- * KIND, either express or implied.
- *
- ****************************************************************************/
-#include "config.h"
-#include "system.h"
-#include "audiohw.h"
-#include "audio.h"
-#include "audioout-imx233.h"
-#include "audioin-imx233.h"
-#include "pinctrl-imx233.h"
-
-static int input_source = AUDIO_SRC_PLAYBACK;
-static unsigned input_flags = 0;
-static int output_source = AUDIO_SRC_PLAYBACK;
-static bool initialized = false;
-
-static void init(void)
-{
- /* HP gate */
- imx233_pinctrl_acquire(1, 30, "hp gate");
- imx233_pinctrl_set_function(1, 30, PINCTRL_FUNCTION_GPIO);
- imx233_pinctrl_enable_gpio(1, 30, true);
- imx233_pinctrl_set_gpio(1, 30, false);
- /* SPKR gate */
- imx233_pinctrl_acquire(1, 22, "spkr gate");
- imx233_pinctrl_set_function(1, 22, PINCTRL_FUNCTION_GPIO);
- imx233_pinctrl_enable_gpio(1, 22, true);
- imx233_pinctrl_set_gpio(1, 22, false);
-
- initialized = true;
-}
-
-static void select_audio_path(void)
-{
- if(!initialized)
- init();
- /* route audio to HP */
- imx233_pinctrl_set_gpio(1, 30, true);
-
- if(input_source == AUDIO_SRC_PLAYBACK)
- imx233_audioout_select_hp_input(false);
- else
- imx233_audioout_select_hp_input(true);
-}
-
-void audio_input_mux(int source, unsigned flags)
-{
- (void) source;
- (void) flags;
- input_source = source;
- input_flags = flags;
- select_audio_path();
-}
-
-void audio_set_output_source(int source)
-{
- (void) source;
- output_source = source;
- select_audio_path();
-}
-