blob: dd7be0dbbc58189ff153b1a7b5724967bd4caadd [file] [log] [blame]
Barry Song7eaae412009-08-13 11:59:32 +08001/*
Mike Frysinger42f32c52011-06-15 15:29:23 -04002 * Audio Codec driver supporting:
3 * AD1835A, AD1836, AD1837A, AD1838A, AD1839A
Barry Song7eaae412009-08-13 11:59:32 +08004 *
Mike Frysinger42f32c52011-06-15 15:29:23 -04005 * Copyright 2009-2011 Analog Devices Inc.
Barry Song7eaae412009-08-13 11:59:32 +08006 *
Mike Frysinger42f32c52011-06-15 15:29:23 -04007 * Licensed under the GPL-2 or later.
Barry Song7eaae412009-08-13 11:59:32 +08008 */
9
10#ifndef __AD1836_H__
11#define __AD1836_H__
12
13#define AD1836_DAC_CTRL1 0
14#define AD1836_DAC_POWERDOWN 2
Mike Frysingerd4d80f52011-06-15 15:29:20 -040015#define AD1836_DAC_SERFMT_MASK 0xE0
Barry Song7eaae412009-08-13 11:59:32 +080016#define AD1836_DAC_SERFMT_PCK256 (0x4 << 5)
17#define AD1836_DAC_SERFMT_PCK128 (0x5 << 5)
18#define AD1836_DAC_WORD_LEN_MASK 0x18
Lars-Peter Clausen8ca695f2011-06-06 13:38:35 +020019#define AD1836_DAC_WORD_LEN_OFFSET 3
Barry Song7eaae412009-08-13 11:59:32 +080020
21#define AD1836_DAC_CTRL2 1
Barry Song7eaae412009-08-13 11:59:32 +080022
Lars-Peter Clausen90bc11d2011-06-06 13:38:36 +020023/* These macros are one-based. So AD183X_MUTE_LEFT(1) will return the mute bit
24 * for the first ADC/DAC */
25#define AD1836_MUTE_LEFT(x) (((x) * 2) - 2)
26#define AD1836_MUTE_RIGHT(x) (((x) * 2) - 1)
27
28#define AD1836_DAC_L_VOL(x) ((x) * 2)
29#define AD1836_DAC_R_VOL(x) (1 + ((x) * 2))
Barry Song7eaae412009-08-13 11:59:32 +080030
31#define AD1836_ADC_CTRL1 12
32#define AD1836_ADC_POWERDOWN 7
33#define AD1836_ADC_HIGHPASS_FILTER 8
34
35#define AD1836_ADC_CTRL2 13
Barry Song7eaae412009-08-13 11:59:32 +080036#define AD1836_ADC_WORD_LEN_MASK 0x30
Axel Lin72531c92011-11-22 09:46:51 +080037#define AD1836_ADC_WORD_OFFSET 4
Mike Frysingerd4d80f52011-06-15 15:29:20 -040038#define AD1836_ADC_SERFMT_MASK (7 << 6)
Barry Song7eaae412009-08-13 11:59:32 +080039#define AD1836_ADC_SERFMT_PCK256 (0x4 << 6)
40#define AD1836_ADC_SERFMT_PCK128 (0x5 << 6)
Barry Song84549d22010-01-25 16:42:25 +080041#define AD1836_ADC_AUX (0x6 << 6)
Barry Song7eaae412009-08-13 11:59:32 +080042
43#define AD1836_ADC_CTRL3 14
44
45#define AD1836_NUM_REGS 16
46
Lars-Peter Clausen8ca695f2011-06-06 13:38:35 +020047#define AD1836_WORD_LEN_24 0x0
48#define AD1836_WORD_LEN_20 0x1
49#define AD1836_WORD_LEN_16 0x2
50
Barry Song7eaae412009-08-13 11:59:32 +080051#endif