summaryrefslogtreecommitdiffstats
path: root/firmware/drivers/audio/as3514.c
blob: 771275e8fae9760844bed3dc9c51956cd980c47c (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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
/***************************************************************************
 *             __________               __   ___.
 *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
 *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
 *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
 *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
 *                     \/            \/     \/    \/            \/
 * $Id$
 *
 * Driver for AS3514 audio codec
 *
 * Copyright (c) 2007 Daniel Ankers
 * Copyright (c) 2007 Christian Gmeiner
 *
 * All files in this archive are subject to the GNU General Public License.
 * See the file COPYING in the source tree root for full license agreement.
 *
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
 * KIND, either express or implied.
 *
 ****************************************************************************/
#include "cpu.h"
#include "debug.h"
#include "system.h"

#include "as3514.h"
#include "i2s.h"
#include "i2c-pp.h"

/* Shadow registers */
int as3514_regs[0x1E]; /* last audio register: PLLMODE 0x1d */

/*
 * little helper method to set register values.
 * With the help of as3514_regs, we minimize i2c
 * traffic.
 */
static void as3514_write(int reg, int value)
{
    if (pp_i2c_send(AS3514_I2C_ADDR, reg, value) != 2)
    {
        DEBUGF("as3514 error reg=0x%x", reg);
    }

    if ((unsigned int)reg < sizeof(as3514_regs) / sizeof(int))
    {
        as3514_regs[reg] = value;
    }
    else
    {
        DEBUGF("as3514 error reg=0x%x", reg);
    }
}

/* convert tenth of dB volume to master volume register value */
int tenthdb2master(int db)
{
    /* +6 to -73.5dB in 1.5dB steps == 53 levels */
    if (db < VOLUME_MIN) {
        return 0x0;
    } else if (db >= VOLUME_MAX) {
        return 0x35;
    } else {
        return((db-VOLUME_MIN)/15); /* VOLUME_MIN is negative */
    }
}

void audiohw_reset(void);

/*
 * Initialise the PP I2C and I2S.
 */
int audiohw_init(void)
{
    unsigned int i;

    /* reset I2C */
    i2c_init();

    /* normal outputs for CDI and I2S pin groups */
    DEV_INIT &= ~0x300;

    /*mini2?*/
    outl(inl(0x70000010) & ~0x3000000, 0x70000010);
    /*mini2?*/

    /* device reset */
    DEV_RS |= 0x800;
    DEV_RS &=~0x800;

    /* device enable */
    DEV_EN |= 0x807;

    /* enable external dev clock clocks */
    DEV_EN |= 0x2;

    /* external dev clock to 24MHz */
    outl(inl(0x70000018) & ~0xc, 0x70000018);

    i2s_reset();

    /* Set ADC off, mixer on, DAC on, line out off, line in off, mic off */
    as3514_write(AUDIOSET1, 0x64); /* Turn on SUM, DAC, LineIn 1 */
    as3514_write(AUDIOSET3, 0x5); /* Set HPCM off, ZCU off*/
    as3514_write(HPH_OUT_R, 0xc0 | 0x16); /* set vol and set speaker over-current to 0 */
    as3514_write(HPH_OUT_L, 0x16); /* set default vol for headphone */
    as3514_write(LINE_IN1_R, 0x36); /* unmute lineIn 1 and set gain */
    as3514_write(LINE_IN1_L, 0x36); /* unmute lineIn 1 and set gain */
    as3514_write(PLLMODE, 0x04);

    /* read all reg values */
    for (i = 0; i < sizeof(as3514_regs) / sizeof(int); i++)
    {
        as3514_regs[i] = i2c_readbyte(AS3514_I2C_ADDR, i);
    }

    return 0;
}

void audiohw_postinit(void)
{
}

/* Silently enable / disable audio output */
void audiohw_enable_output(bool enable)
{
    int curr;
    curr = as3514_regs[HPH_OUT_L];

    if (enable)
    {
        /* reset the I2S controller into known state */
        i2s_reset();

        as3514_write(HPH_OUT_L, curr | 0x40); /* power on */
        audiohw_mute(0);
    } else {
        audiohw_mute(1);
        as3514_write(HPH_OUT_L, curr & ~(0x40)); /* power off */
    }
}

int audiohw_set_master_vol(int vol_l, int vol_r)
{
    int hph_r = as3514_regs[HPH_OUT_R] & ~0x1f;
    int hph_l = as3514_regs[HPH_OUT_L] & ~0x1f;

    /* we are controling dac volume instead of headphone volume,
       as the volume is bigger.
       HDP: 1.07 dB gain
       DAC: 6 dB gain
    */
    if(vol_r <= 0x16)
    {
        as3514_write(DAC_R, vol_r);
        as3514_write(HPH_OUT_R, hph_r);  /* set 0 */
    }
    else
    {
        as3514_write(DAC_R, 0x16);
        as3514_write(HPH_OUT_R, hph_r + (vol_r - 0x16));
    }

    if(vol_l <= 0x16)
    {
        as3514_write(DAC_L, 0x40 + vol_l);
        as3514_write(HPH_OUT_L, hph_l);  /* set 0 */
    }
    else
    {
        as3514_write(DAC_L, 0x40 + 0x16);
        as3514_write(HPH_OUT_L, hph_l + (vol_l - 0x16));
    }

    return 0;
}

int audiohw_set_lineout_vol(int vol_l, int vol_r)
{
    as3514_write(LINE_OUT_R, vol_r);
    as3514_write(LINE_OUT_L, 0x40 | vol_l);

    return 0;
}

int audiohw_mute(int mute)
{
    int curr;
    curr = as3514_regs[HPH_OUT_L];

    if (mute)
    {
        as3514_write(HPH_OUT_L, curr | 0x80);
    } else {
        as3514_write(HPH_OUT_L, curr & ~(0x80));
    }

    return 0;
}

/* Nice shutdown of WM8758 codec */
void audiohw_close(void)
{
    /* mute headphones */
    audiohw_mute(1);

    /* turn off everything */
    as3514_write(AUDIOSET1, 0x0);
}

void audiohw_set_sample_rate(int sampling_control)
{
    (void)sampling_control;
}

void audiohw_enable_recording(bool source_mic)
{
    (void)source_mic;
}

void audiohw_disable_recording(void)
{
}

void audiohw_set_recvol(int left, int right, int type)
{
    (void)left;
    (void)right;
    (void)type;
}

void audiohw_set_monitor(int enable)
{
    (void)enable;
}