summaryrefslogtreecommitdiffstats
path: root/firmware/drivers/audio/imx233-codec.c
blob: d56eb44d5735961a8f65dbc55ce1f232a029a46e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/***************************************************************************
 *             __________               __   ___.
 *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
 *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
 *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
 *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
 *                     \/            \/     \/    \/            \/
 * $Id$
 *
 * Copyright (C) 2011 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 "audio-imx233.h"

void audiohw_preinit(void)
{
    imx233_audioout_preinit();
    imx233_audioin_preinit();
    imx233_audio_preinit();
}

void audiohw_postinit(void)
{
    imx233_audioout_postinit();
    imx233_audioin_postinit();
    imx233_audio_postinit();
}

void audiohw_close(void)
{
    imx233_audioout_close();
    imx233_audioin_close();
}

/* volume in centibels */
void audiohw_set_volume(int vol_l, int vol_r)
{
    /* convert to half-dB */
    imx233_audioout_set_hp_vol(vol_l / 5, vol_r / 5);
}

void audiohw_set_frequency(int fsel)
{
    imx233_audioout_set_freq(fsel);
}

void audiohw_enable_recording(bool source_mic)
{
    imx233_audioin_open();
    /* if source is microhpone we need to power the microphone too */
    imx233_audioin_enable_mic(source_mic);
    int src = source_mic ? AUDIOIN_SELECT_MICROPHONE : AUDIOIN_SELECT_LINE1;
    imx233_audioin_select_mux_input(false, src);
    imx233_audioin_select_mux_input(true, src);
}

void audiohw_disable_recording(void)
{
    imx233_audioin_close();
}

/* volume in decibels */
void audiohw_set_recvol(int left, int right, int type)
{
    left *= 2; /* convert to half-dB */
    right *= 2;
    if(type == AUDIO_GAIN_LINEIN)
    {
        imx233_audioin_set_vol(false, left, AUDIOIN_SELECT_LINE1);
        imx233_audioin_set_vol(true, right, AUDIOIN_SELECT_LINE1);
        imx233_audioin_set_vol(false, left, AUDIOIN_SELECT_LINE2);
        imx233_audioin_set_vol(true, right, AUDIOIN_SELECT_LINE2);
        imx233_audioin_set_vol(false, left, AUDIOIN_SELECT_HEADPHONE);
        imx233_audioin_set_vol(true, right, AUDIOIN_SELECT_HEADPHONE);
    }
    else
        imx233_audioin_set_vol(false, left, AUDIOIN_SELECT_MICROPHONE);
}

void audiohw_set_depth_3d(int val)
{
    imx233_audioout_set_3d_effect(val);
}

void audiohw_set_monitor(bool enable)
{
    imx233_audioout_select_hp_input(enable);
}

#ifdef HAVE_SPEAKER
void audiohw_enable_speaker(bool en)
{
    imx233_audioout_enable_spkr(en);
    imx233_audio_enable_spkr(en);
}
#endif