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-target.h | 30 +++++++++ .../arm/imx233/creative-zenxfi3/audio-zenxfi3.c | 78 ---------------------- 2 files changed, 30 insertions(+), 78 deletions(-) create mode 100644 firmware/target/arm/imx233/creative-zenxfi3/audio-target.h delete mode 100644 firmware/target/arm/imx233/creative-zenxfi3/audio-zenxfi3.c (limited to 'firmware/target/arm') diff --git a/firmware/target/arm/imx233/creative-zenxfi3/audio-target.h b/firmware/target/arm/imx233/creative-zenxfi3/audio-target.h new file mode 100644 index 0000000000..0b4610cd1a --- /dev/null +++ b/firmware/target/arm/imx233/creative-zenxfi3/audio-target.h @@ -0,0 +1,30 @@ +/*************************************************************************** + * __________ __ ___. + * Open \______ \ ____ ____ | | _\_ |__ _______ ___ + * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / + * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < + * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ + * \/ \/ \/ \/ \/ + * $Id$ + * + * Copyright (C) 2013 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. + * + ****************************************************************************/ +#ifndef __audio_target__ +#define __audio_target__ + +#define IMX233_AUDIO_HP_GATE_BANK 1 +#define IMX233_AUDIO_HP_GATE_PIN 30 + +#define IMX233_AUDIO_SPKR_GATE_BANK 1 +#define IMX233_AUDIO_SPKR_GATE_PIN 22 + +#endif /* __audio_target__ */ 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