blob: 05711fab687abf2be4ca781f6c41925e56ab3193 [file] [log] [blame]
Thomas Gleixner80503b22019-05-24 12:04:09 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Barry Song7eaae412009-08-13 11:59:32 +08002/*
Mike Frysinger42f32c52011-06-15 15:29:23 -04003 * Audio Codec driver supporting:
4 * AD1835A, AD1836, AD1837A, AD1838A, AD1839A
Barry Song7eaae412009-08-13 11:59:32 +08005 *
Mike Frysinger42f32c52011-06-15 15:29:23 -04006 * Copyright 2009-2011 Analog Devices Inc.
Barry Song7eaae412009-08-13 11:59:32 +08007 */
8
9#ifndef __AD1836_H__
10#define __AD1836_H__
11
12#define AD1836_DAC_CTRL1 0
13#define AD1836_DAC_POWERDOWN 2
Mike Frysingerd4d80f52011-06-15 15:29:20 -040014#define AD1836_DAC_SERFMT_MASK 0xE0
Barry Song7eaae412009-08-13 11:59:32 +080015#define AD1836_DAC_SERFMT_PCK256 (0x4 << 5)
16#define AD1836_DAC_SERFMT_PCK128 (0x5 << 5)
17#define AD1836_DAC_WORD_LEN_MASK 0x18
Lars-Peter Clausen8ca695f2011-06-06 13:38:35 +020018#define AD1836_DAC_WORD_LEN_OFFSET 3
Barry Song7eaae412009-08-13 11:59:32 +080019
20#define AD1836_DAC_CTRL2 1
Barry Song7eaae412009-08-13 11:59:32 +080021
Lars-Peter Clausen90bc11d2011-06-06 13:38:36 +020022/* These macros are one-based. So AD183X_MUTE_LEFT(1) will return the mute bit
23 * for the first ADC/DAC */
24#define AD1836_MUTE_LEFT(x) (((x) * 2) - 2)
25#define AD1836_MUTE_RIGHT(x) (((x) * 2) - 1)
26
27#define AD1836_DAC_L_VOL(x) ((x) * 2)
28#define AD1836_DAC_R_VOL(x) (1 + ((x) * 2))
Barry Song7eaae412009-08-13 11:59:32 +080029
30#define AD1836_ADC_CTRL1 12
31#define AD1836_ADC_POWERDOWN 7
32#define AD1836_ADC_HIGHPASS_FILTER 8
33
34#define AD1836_ADC_CTRL2 13
Barry Song7eaae412009-08-13 11:59:32 +080035#define AD1836_ADC_WORD_LEN_MASK 0x30
Axel Lin72531c92011-11-22 09:46:51 +080036#define AD1836_ADC_WORD_OFFSET 4
Mike Frysingerd4d80f52011-06-15 15:29:20 -040037#define AD1836_ADC_SERFMT_MASK (7 << 6)
Barry Song7eaae412009-08-13 11:59:32 +080038#define AD1836_ADC_SERFMT_PCK256 (0x4 << 6)
39#define AD1836_ADC_SERFMT_PCK128 (0x5 << 6)
Barry Song84549d22010-01-25 16:42:25 +080040#define AD1836_ADC_AUX (0x6 << 6)
Barry Song7eaae412009-08-13 11:59:32 +080041
42#define AD1836_ADC_CTRL3 14
43
44#define AD1836_NUM_REGS 16
45
Lars-Peter Clausen8ca695f2011-06-06 13:38:35 +020046#define AD1836_WORD_LEN_24 0x0
47#define AD1836_WORD_LEN_20 0x1
48#define AD1836_WORD_LEN_16 0x2
49
Barry Song7eaae412009-08-13 11:59:32 +080050#endif