From ea8b22a9b67b6db6ae6975d995999f9322071ead Mon Sep 17 00:00:00 2001 From: Amaury Pouly Date: Tue, 18 Jun 2013 16:19:28 +0200 Subject: zenxfi3: drop audio routing driver in favor of the generic one Change-Id: Ia104c148f9139434d2c70190d2834b06de20de23 --- .../arm/imx233/creative-zenxfi3/audio-zenxfi3.c | 78 ---------------------- 1 file changed, 78 deletions(-) delete mode 100644 firmware/target/arm/imx233/creative-zenxfi3/audio-zenxfi3.c (limited to 'firmware/target/arm/imx233/creative-zenxfi3/audio-zenxfi3.c') 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(); -} - -- cgit v1.2.3