// SPDX-License-Identifier: GPL-2.0-only
/*
* rt5663.c -- RT5663 ALSA SoC audio codec driver
*
* Copyright 2016 Realtek Semiconductor Corp.
* Author: Jack Yu <jack.yu@realtek.com>
*/
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/init.h>
#include <linux/delay.h>
#include <linux/pm.h>
#include <linux/i2c.h>
#include <linux/platform_device.h>
#include <linux/spi/spi.h>
#include <linux/acpi.h>
#include <linux/regulator/consumer.h>
#include <linux/workqueue.h>
#include <sound/core.h>
#include <sound/pcm.h>
#include <sound/pcm_params.h>
#include <sound/jack.h>
#include <sound/soc.h>
#include <sound/soc-dapm.h>
#include <sound/initval.h>
#include <sound/tlv.h>
#include "rt5663.h"
#include "rl6231.h"
#define RT5663_DEVICE_ID_2 0 x6451
#define RT5663_DEVICE_ID_1 0 x6406
#define RT5663_POWER_ON_DELAY_MS 300
#define RT5663_SUPPLY_CURRENT_UA 500000
enum {
CODEC_VER_1,
CODEC_VER_0,
};
struct impedance_mapping_table {
unsigned int imp_min;
unsigned int imp_max;
unsigned int vol;
unsigned int dc_offset_l_manual;
unsigned int dc_offset_r_manual;
unsigned int dc_offset_l_manual_mic;
unsigned int dc_offset_r_manual_mic;
};
static const char *const rt5663_supply_names[] = {
"avdd" ,
"cpvdd" ,
};
struct rt5663_priv {
struct snd_soc_component *component;
struct rt5663_platform_data pdata;
struct regmap *regmap;
struct delayed_work jack_detect_work, jd_unplug_work;
struct snd_soc_jack *hs_jack;
struct timer_list btn_check_timer;
struct impedance_mapping_table *imp_table;
struct regulator_bulk_data supplies[ARRAY_SIZE(rt5663_supply_names)];
int codec_ver;
int sysclk;
int sysclk_src;
int lrck;
int pll_src;
int pll_in;
int pll_out;
int jack_type;
unsigned int irq;
};
static const struct reg_sequence rt5663_patch_list[] = {
{ 0 x002a, 0 x8020 },
{ 0 x0086, 0 x0028 },
{ 0 x0100, 0 xa020 },
{ 0 x0117, 0 x0f28 },
{ 0 x02fb, 0 x8089 },
};
static const struct reg_default rt5663_v2_reg[] = {
{ 0 x0000, 0 x0000 },
{ 0 x0001, 0 xc8c8 },
{ 0 x0002, 0 x8080 },
{ 0 x0003, 0 x8000 },
{ 0 x0004, 0 xc80a },
{ 0 x0005, 0 x0000 },
{ 0 x0006, 0 x0000 },
{ 0 x0007, 0 x0000 },
{ 0 x000a, 0 x0000 },
{ 0 x000b, 0 x0000 },
{ 0 x000c, 0 x0000 },
{ 0 x000d, 0 x0000 },
{ 0 x000f, 0 x0808 },
{ 0 x0010, 0 x4000 },
{ 0 x0011, 0 x0000 },
{ 0 x0012, 0 x1404 },
{ 0 x0013, 0 x1000 },
{ 0 x0014, 0 xa00a },
{ 0 x0015, 0 x0404 },
{ 0 x0016, 0 x0404 },
{ 0 x0017, 0 x0011 },
{ 0 x0018, 0 xafaf },
{ 0 x0019, 0 xafaf },
{ 0 x001a, 0 xafaf },
{ 0 x001b, 0 x0011 },
{ 0 x001c, 0 x2f2f },
{ 0 x001d, 0 x2f2f },
{ 0 x001e, 0 x2f2f },
{ 0 x001f, 0 x0000 },
{ 0 x0020, 0 x0000 },
{ 0 x0021, 0 x0000 },
{ 0 x0022, 0 x5757 },
{ 0 x0023, 0 x0039 },
{ 0 x0024, 0 x000b },
{ 0 x0026, 0 xc0c0 },
{ 0 x0027, 0 xc0c0 },
{ 0 x0028, 0 xc0c0 },
{ 0 x0029, 0 x8080 },
{ 0 x002a, 0 xaaaa },
{ 0 x002b, 0 xaaaa },
{ 0 x002c, 0 xaba8 },
{ 0 x002d, 0 x0000 },
{ 0 x002e, 0 x0000 },
{ 0 x002f, 0 x0000 },
{ 0 x0030, 0 x0000 },
{ 0 x0031, 0 x5000 },
{ 0 x0032, 0 x0000 },
{ 0 x0033, 0 x0000 },
{ 0 x0034, 0 x0000 },
{ 0 x0035, 0 x0000 },
{ 0 x003a, 0 x0000 },
{ 0 x003b, 0 x0000 },
{ 0 x003c, 0 x00ff },
{ 0 x003d, 0 x0000 },
{ 0 x003e, 0 x00ff },
{ 0 x003f, 0 x0000 },
{ 0 x0040, 0 x0000 },
{ 0 x0041, 0 x00ff },
{ 0 x0042, 0 x0000 },
{ 0 x0043, 0 x00ff },
{ 0 x0044, 0 x0c0c },
{ 0 x0049, 0 xc00b },
{ 0 x004a, 0 x0000 },
{ 0 x004b, 0 x031f },
{ 0 x004d, 0 x0000 },
{ 0 x004e, 0 x001f },
{ 0 x004f, 0 x0000 },
{ 0 x0050, 0 x001f },
{ 0 x0052, 0 xf000 },
{ 0 x0061, 0 x0000 },
{ 0 x0062, 0 x0000 },
{ 0 x0063, 0 x003e },
{ 0 x0064, 0 x0000 },
{ 0 x0065, 0 x0000 },
{ 0 x0066, 0 x003f },
{ 0 x0067, 0 x0000 },
{ 0 x006b, 0 x0000 },
{ 0 x006d, 0 xff00 },
{ 0 x006e, 0 x2808 },
{ 0 x006f, 0 x000a },
{ 0 x0070, 0 x8000 },
{ 0 x0071, 0 x8000 },
{ 0 x0072, 0 x8000 },
{ 0 x0073, 0 x7000 },
{ 0 x0074, 0 x7770 },
{ 0 x0075, 0 x0002 },
{ 0 x0076, 0 x0001 },
{ 0 x0078, 0 x00f0 },
{ 0 x0079, 0 x0000 },
{ 0 x007a, 0 x0000 },
{ 0 x007b, 0 x0000 },
{ 0 x007c, 0 x0000 },
{ 0 x007d, 0 x0123 },
{ 0 x007e, 0 x4500 },
{ 0 x007f, 0 x8003 },
{ 0 x0080, 0 x0000 },
{ 0 x0081, 0 x0000 },
{ 0 x0082, 0 x0000 },
{ 0 x0083, 0 x0000 },
{ 0 x0084, 0 x0000 },
{ 0 x0085, 0 x0000 },
{ 0 x0086, 0 x0008 },
{ 0 x0087, 0 x0000 },
{ 0 x0088, 0 x0000 },
{ 0 x0089, 0 x0000 },
{ 0 x008a, 0 x0000 },
{ 0 x008b, 0 x0000 },
{ 0 x008c, 0 x0003 },
{ 0 x008e, 0 x0060 },
{ 0 x008f, 0 x1000 },
{ 0 x0091, 0 x0c26 },
{ 0 x0092, 0 x0073 },
{ 0 x0093, 0 x0000 },
{ 0 x0094, 0 x0080 },
{ 0 x0098, 0 x0000 },
{ 0 x0099, 0 x0000 },
{ 0 x009a, 0 x0007 },
{ 0 x009f, 0 x0000 },
{ 0 x00a0, 0 x0000 },
{ 0 x00a1, 0 x0002 },
{ 0 x00a2, 0 x0001 },
{ 0 x00a3, 0 x0002 },
{ 0 x00a4, 0 x0001 },
{ 0 x00ae, 0 x2040 },
{ 0 x00af, 0 x0000 },
{ 0 x00b6, 0 x0000 },
{ 0 x00b7, 0 x0000 },
{ 0 x00b8, 0 x0000 },
{ 0 x00b9, 0 x0000 },
{ 0 x00ba, 0 x0002 },
{ 0 x00bb, 0 x0000 },
{ 0 x00be, 0 x0000 },
{ 0 x00c0, 0 x0000 },
{ 0 x00c1, 0 x0aaa },
{ 0 x00c2, 0 xaa80 },
{ 0 x00c3, 0 x0003 },
{ 0 x00c4, 0 x0000 },
{ 0 x00d0, 0 x0000 },
{ 0 x00d1, 0 x2244 },
{ 0 x00d2, 0 x0000 },
{ 0 x00d3, 0 x3300 },
{ 0 x00d4, 0 x2200 },
{ 0 x00d9, 0 x0809 },
{ 0 x00da, 0 x0000 },
{ 0 x00db, 0 x0008 },
{ 0 x00dc, 0 x00c0 },
{ 0 x00dd, 0 x6724 },
{ 0 x00de, 0 x3131 },
{ 0 x00df, 0 x0008 },
{ 0 x00e0, 0 x4000 },
{ 0 x00e1, 0 x3131 },
{ 0 x00e2, 0 x600c },
{ 0 x00ea, 0 xb320 },
{ 0 x00eb, 0 x0000 },
{ 0 x00ec, 0 xb300 },
{ 0 x00ed, 0 x0000 },
{ 0 x00ee, 0 xb320 },
{ 0 x00ef, 0 x0000 },
{ 0 x00f0, 0 x0201 },
{ 0 x00f1, 0 x0ddd },
{ 0 x00f2, 0 x0ddd },
{ 0 x00f6, 0 x0000 },
{ 0 x00f7, 0 x0000 },
{ 0 x00f8, 0 x0000 },
{ 0 x00fa, 0 x0000 },
{ 0 x00fb, 0 x0000 },
{ 0 x00fc, 0 x0000 },
{ 0 x00fd, 0 x0000 },
{ 0 x00fe, 0 x10ec },
{ 0 x00ff, 0 x6451 },
{ 0 x0100, 0 xaaaa },
{ 0 x0101, 0 x000a },
{ 0 x010a, 0 xaaaa },
{ 0 x010b, 0 xa0a0 },
{ 0 x010c, 0 xaeae },
{ 0 x010d, 0 xaaaa },
{ 0 x010e, 0 xaaaa },
{ 0 x010f, 0 xaaaa },
{ 0 x0110, 0 xe002 },
{ 0 x0111, 0 xa602 },
{ 0 x0112, 0 xaaaa },
{ 0 x0113, 0 x2000 },
{ 0 x0117, 0 x0f00 },
{ 0 x0125, 0 x0420 },
{ 0 x0132, 0 x0000 },
{ 0 x0133, 0 x0000 },
{ 0 x0136, 0 x5555 },
{ 0 x0137, 0 x5540 },
{ 0 x0138, 0 x3700 },
{ 0 x0139, 0 x79a1 },
{ 0 x013a, 0 x2020 },
{ 0 x013b, 0 x2020 },
{ 0 x013c, 0 x2005 },
{ 0 x013f, 0 x0000 },
{ 0 x0145, 0 x0002 },
{ 0 x0146, 0 x0000 },
{ 0 x0147, 0 x0000 },
{ 0 x0148, 0 x0000 },
{ 0 x0160, 0 x4ec0 },
{ 0 x0161, 0 x0080 },
{ 0 x0162, 0 x0200 },
{ 0 x0163, 0 x0800 },
{ 0 x0164, 0 x0000 },
{ 0 x0165, 0 x0000 },
{ 0 x0166, 0 x0000 },
{ 0 x0167, 0 x000f },
{ 0 x0168, 0 x000f },
{ 0 x0170, 0 x4e80 },
{ 0 x0171, 0 x0080 },
{ 0 x0172, 0 x0200 },
{ 0 x0173, 0 x0800 },
{ 0 x0174, 0 x00ff },
{ 0 x0175, 0 x0000 },
{ 0 x0190, 0 x4131 },
{ 0 x0191, 0 x4131 },
{ 0 x0192, 0 x4131 },
{ 0 x0193, 0 x4131 },
{ 0 x0194, 0 x0000 },
{ 0 x0195, 0 x0000 },
{ 0 x0196, 0 x0000 },
{ 0 x0197, 0 x0000 },
{ 0 x0198, 0 x0000 },
{ 0 x0199, 0 x0000 },
{ 0 x01a0, 0 x1e64 },
{ 0 x01a1, 0 x06a3 },
{ 0 x01a2, 0 x0000 },
{ 0 x01a3, 0 x0000 },
{ 0 x01a4, 0 x0000 },
{ 0 x01a5, 0 x0000 },
{ 0 x01a6, 0 x0000 },
{ 0 x01a7, 0 x0000 },
{ 0 x01a8, 0 x0000 },
{ 0 x01a9, 0 x0000 },
{ 0 x01aa, 0 x0000 },
{ 0 x01ab, 0 x0000 },
{ 0 x01b5, 0 x0000 },
{ 0 x01b6, 0 x01c3 },
{ 0 x01b7, 0 x02a0 },
{ 0 x01b8, 0 x03e9 },
{ 0 x01b9, 0 x1389 },
{ 0 x01ba, 0 xc351 },
{ 0 x01bb, 0 x0009 },
{ 0 x01bc, 0 x0018 },
{ 0 x01bd, 0 x002a },
{ 0 x01be, 0 x004c },
{ 0 x01bf, 0 x0097 },
{ 0 x01c0, 0 x433d },
{ 0 x01c1, 0 x0000 },
{ 0 x01c2, 0 x0000 },
{ 0 x01c3, 0 x0000 },
{ 0 x01c4, 0 x0000 },
{ 0 x01c5, 0 x0000 },
{ 0 x01c6, 0 x0000 },
{ 0 x01c7, 0 x0000 },
{ 0 x01c8, 0 x40af },
{ 0 x01c9, 0 x0702 },
{ 0 x01ca, 0 x0000 },
{ 0 x01cb, 0 x0000 },
{ 0 x01cc, 0 x5757 },
{ 0 x01cd, 0 x5757 },
{ 0 x01ce, 0 x5757 },
{ 0 x01cf, 0 x5757 },
{ 0 x01d0, 0 x5757 },
{ 0 x01d1, 0 x5757 },
{ 0 x01d2, 0 x5757 },
{ 0 x01d3, 0 x5757 },
{ 0 x01d4, 0 x5757 },
{ 0 x01d5, 0 x5757 },
{ 0 x01d6, 0 x003c },
{ 0 x01da, 0 x0000 },
{ 0 x01db, 0 x0000 },
{ 0 x01dc, 0 x0000 },
{ 0 x01de, 0 x7c00 },
{ 0 x01df, 0 x0320 },
{ 0 x01e0, 0 x06a1 },
{ 0 x01e1, 0 x0000 },
{ 0 x01e2, 0 x0000 },
{ 0 x01e3, 0 x0000 },
{ 0 x01e4, 0 x0000 },
{ 0 x01e5, 0 x0000 },
{ 0 x01e6, 0 x0001 },
{ 0 x01e7, 0 x0000 },
{ 0 x01e8, 0 x0000 },
{ 0 x01ea, 0 x0000 },
{ 0 x01eb, 0 x0000 },
{ 0 x01ec, 0 x0000 },
{ 0 x01ed, 0 x0000 },
{ 0 x01ee, 0 x0000 },
{ 0 x01ef, 0 x0000 },
{ 0 x01f0, 0 x0000 },
{ 0 x01f1, 0 x0000 },
{ 0 x01f2, 0 x0000 },
{ 0 x01f3, 0 x0000 },
{ 0 x01f4, 0 x0000 },
{ 0 x0200, 0 x0000 },
{ 0 x0201, 0 x0000 },
{ 0 x0202, 0 x0000 },
{ 0 x0203, 0 x0000 },
{ 0 x0204, 0 x0000 },
{ 0 x0205, 0 x0000 },
{ 0 x0206, 0 x0000 },
{ 0 x0207, 0 x0000 },
{ 0 x0208, 0 x0000 },
{ 0 x0210, 0 x60b1 },
{ 0 x0211, 0 xa000 },
{ 0 x0212, 0 x024c },
{ 0 x0213, 0 xf7ff },
{ 0 x0214, 0 x024c },
{ 0 x0215, 0 x0102 },
{ 0 x0216, 0 x00a3 },
{ 0 x0217, 0 x0048 },
{ 0 x0218, 0 x92c0 },
{ 0 x0219, 0 x0000 },
{ 0 x021a, 0 x00c8 },
{ 0 x021b, 0 x0020 },
{ 0 x02fa, 0 x0000 },
{ 0 x02fb, 0 x0000 },
{ 0 x02fc, 0 x0000 },
{ 0 x02ff, 0 x0110 },
{ 0 x0300, 0 x001f },
{ 0 x0301, 0 x032c },
{ 0 x0302, 0 x5f21 },
{ 0 x0303, 0 x4000 },
{ 0 x0304, 0 x4000 },
{ 0 x0305, 0 x06d5 },
{ 0 x0306, 0 x8000 },
{ 0 x0307, 0 x0700 },
{ 0 x0310, 0 x4560 },
{ 0 x0311, 0 xa4a8 },
{ 0 x0312, 0 x7418 },
{ 0 x0313, 0 x0000 },
{ 0 x0314, 0 x0006 },
{ 0 x0315, 0 xffff },
{ 0 x0316, 0 xc400 },
{ 0 x0317, 0 x0000 },
{ 0 x0330, 0 x00a6 },
{ 0 x0331, 0 x04c3 },
{ 0 x0332, 0 x27c8 },
{ 0 x0333, 0 xbf50 },
{ 0 x0334, 0 x0045 },
{ 0 x0335, 0 x0007 },
{ 0 x0336, 0 x7418 },
{ 0 x0337, 0 x0501 },
{ 0 x0338, 0 x0000 },
{ 0 x0339, 0 x0010 },
{ 0 x033a, 0 x1010 },
{ 0 x03c0, 0 x7e00 },
{ 0 x03c1, 0 x8000 },
{ 0 x03c2, 0 x8000 },
{ 0 x03c3, 0 x8000 },
{ 0 x03c4, 0 x8000 },
{ 0 x03c5, 0 x8000 },
{ 0 x03c6, 0 x8000 },
{ 0 x03c7, 0 x8000 },
{ 0 x03c8, 0 x8000 },
{ 0 x03c9, 0 x8000 },
{ 0 x03ca, 0 x8000 },
{ 0 x03cb, 0 x8000 },
{ 0 x03cc, 0 x8000 },
{ 0 x03d0, 0 x0000 },
{ 0 x03d1, 0 x0000 },
{ 0 x03d2, 0 x0000 },
{ 0 x03d3, 0 x0000 },
{ 0 x03d4, 0 x2000 },
{ 0 x03d5, 0 x2000 },
{ 0 x03d6, 0 x0000 },
{ 0 x03d7, 0 x0000 },
{ 0 x03d8, 0 x2000 },
{ 0 x03d9, 0 x2000 },
{ 0 x03da, 0 x2000 },
{ 0 x03db, 0 x2000 },
{ 0 x03dc, 0 x0000 },
{ 0 x03dd, 0 x0000 },
{ 0 x03de, 0 x0000 },
{ 0 x03df, 0 x2000 },
{ 0 x03e0, 0 x0000 },
{ 0 x03e1, 0 x0000 },
{ 0 x03e2, 0 x0000 },
{ 0 x03e3, 0 x0000 },
{ 0 x03e4, 0 x0000 },
{ 0 x03e5, 0 x0000 },
{ 0 x03e6, 0 x0000 },
{ 0 x03e7, 0 x0000 },
{ 0 x03e8, 0 x0000 },
{ 0 x03e9, 0 x0000 },
{ 0 x03ea, 0 x0000 },
{ 0 x03eb, 0 x0000 },
{ 0 x03ec, 0 x0000 },
{ 0 x03ed, 0 x0000 },
{ 0 x03ee, 0 x0000 },
{ 0 x03ef, 0 x0000 },
{ 0 x03f0, 0 x0800 },
{ 0 x03f1, 0 x0800 },
{ 0 x03f2, 0 x0800 },
{ 0 x03f3, 0 x0800 },
{ 0 x03fe, 0 x0000 },
{ 0 x03ff, 0 x0000 },
{ 0 x07f0, 0 x0000 },
{ 0 x07fa, 0 x0000 },
};
static const struct reg_default rt5663_reg[] = {
{ 0 x0000, 0 x0000 },
{ 0 x0002, 0 x0008 },
{ 0 x0005, 0 x1000 },
{ 0 x0006, 0 x1000 },
{ 0 x000a, 0 x0000 },
{ 0 x0010, 0 x000f },
{ 0 x0015, 0 x42f1 },
{ 0 x0016, 0 x0000 },
{ 0 x0018, 0 x000b },
{ 0 x0019, 0 xafaf },
{ 0 x001c, 0 x2f2f },
{ 0 x001f, 0 x0000 },
{ 0 x0022, 0 x5757 },
{ 0 x0023, 0 x0039 },
{ 0 x0026, 0 xc0c0 },
{ 0 x0029, 0 x8080 },
{ 0 x002a, 0 x8020 },
{ 0 x002c, 0 x000c },
{ 0 x002d, 0 x0000 },
{ 0 x0040, 0 x0808 },
{ 0 x0061, 0 x0000 },
{ 0 x0062, 0 x0000 },
{ 0 x0063, 0 x003e },
{ 0 x0064, 0 x0000 },
{ 0 x0065, 0 x0000 },
{ 0 x0066, 0 x0000 },
{ 0 x006b, 0 x0000 },
{ 0 x006e, 0 x0000 },
{ 0 x006f, 0 x0000 },
{ 0 x0070, 0 x8020 },
{ 0 x0073, 0 x1000 },
{ 0 x0074, 0 xe400 },
{ 0 x0075, 0 x0002 },
{ 0 x0076, 0 x0001 },
{ 0 x0077, 0 x00f0 },
{ 0 x0078, 0 x0000 },
{ 0 x0079, 0 x0000 },
{ 0 x007a, 0 x0123 },
{ 0 x007b, 0 x8003 },
{ 0 x0080, 0 x0000 },
{ 0 x0081, 0 x0000 },
{ 0 x0082, 0 x0000 },
{ 0 x0083, 0 x0000 },
{ 0 x0084, 0 x0000 },
{ 0 x0086, 0 x0028 },
{ 0 x0087, 0 x0000 },
{ 0 x008a, 0 x0000 },
{ 0 x008b, 0 x0000 },
{ 0 x008c, 0 x0003 },
{ 0 x008e, 0 x0008 },
{ 0 x008f, 0 x1000 },
{ 0 x0090, 0 x0646 },
{ 0 x0091, 0 x0e3e },
{ 0 x0092, 0 x1071 },
{ 0 x0093, 0 x0000 },
{ 0 x0094, 0 x0080 },
{ 0 x0097, 0 x0000 },
{ 0 x0098, 0 x0000 },
{ 0 x009a, 0 x0000 },
{ 0 x009f, 0 x0000 },
{ 0 x00ae, 0 x6000 },
{ 0 x00af, 0 x0000 },
{ 0 x00b6, 0 x0000 },
{ 0 x00b7, 0 x0000 },
{ 0 x00b8, 0 x0000 },
{ 0 x00ba, 0 x0000 },
{ 0 x00bb, 0 x0000 },
{ 0 x00be, 0 x0000 },
{ 0 x00bf, 0 x0000 },
{ 0 x00c0, 0 x0000 },
{ 0 x00c1, 0 x0000 },
{ 0 x00c5, 0 x0000 },
{ 0 x00cb, 0 xa02f },
{ 0 x00cc, 0 x0000 },
{ 0 x00cd, 0 x0e02 },
{ 0 x00d9, 0 x08f9 },
{ 0 x00db, 0 x0008 },
{ 0 x00dc, 0 x00c0 },
{ 0 x00dd, 0 x6729 },
{ 0 x00de, 0 x3131 },
{ 0 x00df, 0 x0008 },
{ 0 x00e0, 0 x4000 },
{ 0 x00e1, 0 x3131 },
{ 0 x00e2, 0 x0043 },
{ 0 x00e4, 0 x400b },
{ 0 x00e5, 0 x8031 },
{ 0 x00e6, 0 x3080 },
{ 0 x00e7, 0 x4100 },
{ 0 x00e8, 0 x1400 },
{ 0 x00e9, 0 xe00a },
{ 0 x00ea, 0 x0404 },
{ 0 x00eb, 0 x0404 },
{ 0 x00ec, 0 xb320 },
{ 0 x00ed, 0 x0000 },
{ 0 x00f4, 0 x0000 },
{ 0 x00f6, 0 x0000 },
{ 0 x00f8, 0 x0000 },
{ 0 x00fa, 0 x8000 },
{ 0 x00fd, 0 x0001 },
{ 0 x00fe, 0 x10ec },
{ 0 x00ff, 0 x6406 },
{ 0 x0100, 0 xa020 },
{ 0 x0108, 0 x4444 },
{ 0 x0109, 0 x4444 },
{ 0 x010a, 0 xaaaa },
{ 0 x010b, 0 x00a0 },
{ 0 x010c, 0 x8aaa },
{ 0 x010d, 0 xaaaa },
{ 0 x010e, 0 x2aaa },
{ 0 x010f, 0 x002a },
{ 0 x0110, 0 xa0a4 },
{ 0 x0111, 0 x4602 },
{ 0 x0112, 0 x0101 },
{ 0 x0113, 0 x2000 },
{ 0 x0114, 0 x0000 },
{ 0 x0116, 0 x0000 },
{ 0 x0117, 0 x0f28 },
{ 0 x0118, 0 x0006 },
{ 0 x0125, 0 x2424 },
{ 0 x0126, 0 x5550 },
{ 0 x0127, 0 x0400 },
{ 0 x0128, 0 x7711 },
{ 0 x0132, 0 x0004 },
{ 0 x0137, 0 x5441 },
{ 0 x0139, 0 x79a1 },
{ 0 x013a, 0 x30c0 },
{ 0 x013b, 0 x2000 },
{ 0 x013c, 0 x2005 },
{ 0 x013d, 0 x30c0 },
{ 0 x013e, 0 x0000 },
{ 0 x0140, 0 x3700 },
{ 0 x0141, 0 x1f00 },
{ 0 x0144, 0 x0000 },
{ 0 x0145, 0 x0002 },
{ 0 x0146, 0 x0000 },
{ 0 x0160, 0 x0e80 },
{ 0 x0161, 0 x0080 },
{ 0 x0162, 0 x0200 },
{ 0 x0163, 0 x0800 },
{ 0 x0164, 0 x0000 },
{ 0 x0165, 0 x0000 },
{ 0 x0166, 0 x0000 },
{ 0 x0167, 0 x1417 },
{ 0 x0168, 0 x0017 },
{ 0 x0169, 0 x0017 },
{ 0 x0180, 0 x2000 },
{ 0 x0181, 0 x0000 },
{ 0 x0182, 0 x0000 },
{ 0 x0183, 0 x2000 },
{ 0 x0184, 0 x0000 },
{ 0 x0185, 0 x0000 },
{ 0 x01b0, 0 x4b30 },
{ 0 x01b1, 0 x0000 },
{ 0 x01b2, 0 xd870 },
{ 0 x01b3, 0 x0000 },
{ 0 x01b4, 0 x0030 },
{ 0 x01b5, 0 x5757 },
{ 0 x01b6, 0 x5757 },
{ 0 x01b7, 0 x5757 },
{ 0 x01b8, 0 x5757 },
{ 0 x01c0, 0 x433d },
{ 0 x01c1, 0 x0540 },
{ 0 x01c2, 0 x0000 },
{ 0 x01c3, 0 x0000 },
{ 0 x01c4, 0 x0000 },
{ 0 x01c5, 0 x0009 },
{ 0 x01c6, 0 x0018 },
{ 0 x01c7, 0 x002a },
{ 0 x01c8, 0 x004c },
{ 0 x01c9, 0 x0097 },
{ 0 x01ca, 0 x01c3 },
{ 0 x01cb, 0 x03e9 },
{ 0 x01cc, 0 x1389 },
{ 0 x01cd, 0 xc351 },
{ 0 x01ce, 0 x0000 },
{ 0 x01cf, 0 x0000 },
{ 0 x01d0, 0 x0000 },
{ 0 x01d1, 0 x0000 },
{ 0 x01d2, 0 x0000 },
{ 0 x01d3, 0 x003c },
{ 0 x01d4, 0 x5757 },
{ 0 x01d5, 0 x5757 },
{ 0 x01d6, 0 x5757 },
{ 0 x01d7, 0 x5757 },
{ 0 x01d8, 0 x5757 },
{ 0 x01d9, 0 x5757 },
{ 0 x01da, 0 x0000 },
{ 0 x01db, 0 x0000 },
{ 0 x01dd, 0 x0009 },
{ 0 x01de, 0 x7f00 },
{ 0 x01df, 0 x00c8 },
{ 0 x01e0, 0 x0691 },
{ 0 x01e1, 0 x0000 },
{ 0 x01e2, 0 x0000 },
{ 0 x01e3, 0 x0000 },
{ 0 x01e4, 0 x0000 },
{ 0 x01e5, 0 x0040 },
{ 0 x01e6, 0 x0000 },
{ 0 x01e7, 0 x0000 },
{ 0 x01e8, 0 x0000 },
{ 0 x01ea, 0 x0000 },
{ 0 x01eb, 0 x0000 },
{ 0 x01ec, 0 x0000 },
{ 0 x01ed, 0 x0000 },
{ 0 x01ee, 0 x0000 },
{ 0 x01ef, 0 x0000 },
{ 0 x01f0, 0 x0000 },
{ 0 x01f1, 0 x0000 },
{ 0 x01f2, 0 x0000 },
{ 0 x0200, 0 x0000 },
{ 0 x0201, 0 x2244 },
{ 0 x0202, 0 xaaaa },
{ 0 x0250, 0 x8010 },
{ 0 x0251, 0 x0000 },
{ 0 x0252, 0 x028a },
{ 0 x02fa, 0 x0000 },
{ 0 x02fb, 0 x8089 },
{ 0 x02fc, 0 x0300 },
{ 0 x0300, 0 x0000 },
{ 0 x03d0, 0 x0000 },
{ 0 x03d1, 0 x0000 },
{ 0 x03d2, 0 x0000 },
{ 0 x03d3, 0 x0000 },
{ 0 x03d4, 0 x2000 },
{ 0 x03d5, 0 x2000 },
{ 0 x03d6, 0 x0000 },
{ 0 x03d7, 0 x0000 },
{ 0 x03d8, 0 x2000 },
{ 0 x03d9, 0 x2000 },
{ 0 x03da, 0 x2000 },
{ 0 x03db, 0 x2000 },
{ 0 x03dc, 0 x0000 },
{ 0 x03dd, 0 x0000 },
{ 0 x03de, 0 x0000 },
{ 0 x03df, 0 x2000 },
{ 0 x03e0, 0 x0000 },
{ 0 x03e1, 0 x0000 },
{ 0 x03e2, 0 x0000 },
{ 0 x03e3, 0 x0000 },
{ 0 x03e4, 0 x0000 },
{ 0 x03e5, 0 x0000 },
{ 0 x03e6, 0 x0000 },
{ 0 x03e7, 0 x0000 },
{ 0 x03e8, 0 x0000 },
{ 0 x03e9, 0 x0000 },
{ 0 x03ea, 0 x0000 },
{ 0 x03eb, 0 x0000 },
{ 0 x03ec, 0 x0000 },
{ 0 x03ed, 0 x0000 },
{ 0 x03ee, 0 x0000 },
{ 0 x03ef, 0 x0000 },
{ 0 x03f0, 0 x0800 },
{ 0 x03f1, 0 x0800 },
{ 0 x03f2, 0 x0800 },
{ 0 x03f3, 0 x0800 },
};
static bool rt5663_volatile_register(struct device *dev, unsigned int reg)
{
switch (reg) {
case RT5663_RESET:
case RT5663_SIL_DET_CTL:
case RT5663_HP_IMP_GAIN_2:
case RT5663_AD_DA_MIXER:
case RT5663_FRAC_DIV_2:
case RT5663_MICBIAS_1:
case RT5663_ASRC_11_2:
case RT5663_ADC_EQ_1:
case RT5663_INT_ST_1:
case RT5663_INT_ST_2:
case RT5663_GPIO_STA1:
case RT5663_SIN_GEN_1:
case RT5663_IL_CMD_1:
case RT5663_IL_CMD_5:
case RT5663_IL_CMD_PWRSAV1:
case RT5663_EM_JACK_TYPE_1:
case RT5663_EM_JACK_TYPE_2:
case RT5663_EM_JACK_TYPE_3:
case RT5663_JD_CTRL2:
case RT5663_VENDOR_ID:
case RT5663_VENDOR_ID_1:
case RT5663_VENDOR_ID_2:
case RT5663_PLL_INT_REG:
case RT5663_SOFT_RAMP:
case RT5663_STO_DRE_1:
case RT5663_STO_DRE_5:
case RT5663_STO_DRE_6:
case RT5663_STO_DRE_7:
case RT5663_MIC_DECRO_1:
case RT5663_MIC_DECRO_4:
case RT5663_HP_IMP_SEN_1:
case RT5663_HP_IMP_SEN_3:
case RT5663_HP_IMP_SEN_4:
case RT5663_HP_IMP_SEN_5:
case RT5663_HP_CALIB_1_1:
case RT5663_HP_CALIB_9:
case RT5663_HP_CALIB_ST1:
case RT5663_HP_CALIB_ST2:
case RT5663_HP_CALIB_ST3:
case RT5663_HP_CALIB_ST4:
case RT5663_HP_CALIB_ST5:
case RT5663_HP_CALIB_ST6:
case RT5663_HP_CALIB_ST7:
case RT5663_HP_CALIB_ST8:
case RT5663_HP_CALIB_ST9:
case RT5663_ANA_JD:
return true ;
default :
return false ;
}
}
static bool rt5663_readable_register(struct device *dev, unsigned int reg)
{
switch (reg) {
case RT5663_RESET:
case RT5663_HP_OUT_EN:
case RT5663_HP_LCH_DRE:
case RT5663_HP_RCH_DRE:
case RT5663_CALIB_BST:
case RT5663_RECMIX:
case RT5663_SIL_DET_CTL:
case RT5663_PWR_SAV_SILDET:
case RT5663_SIDETONE_CTL:
case RT5663_STO1_DAC_DIG_VOL:
case RT5663_STO1_ADC_DIG_VOL:
case RT5663_STO1_BOOST:
case RT5663_HP_IMP_GAIN_1:
case RT5663_HP_IMP_GAIN_2:
case RT5663_STO1_ADC_MIXER:
case RT5663_AD_DA_MIXER:
case RT5663_STO_DAC_MIXER:
case RT5663_DIG_SIDE_MIXER:
case RT5663_BYPASS_STO_DAC:
case RT5663_CALIB_REC_MIX:
case RT5663_PWR_DIG_1:
case RT5663_PWR_DIG_2:
case RT5663_PWR_ANLG_1:
case RT5663_PWR_ANLG_2:
case RT5663_PWR_ANLG_3:
case RT5663_PWR_MIXER:
case RT5663_SIG_CLK_DET:
case RT5663_PRE_DIV_GATING_1:
case RT5663_PRE_DIV_GATING_2:
case RT5663_I2S1_SDP:
case RT5663_ADDA_CLK_1:
case RT5663_ADDA_RST:
case RT5663_FRAC_DIV_1:
case RT5663_FRAC_DIV_2:
case RT5663_TDM_1:
case RT5663_TDM_2:
case RT5663_TDM_3:
case RT5663_TDM_4:
case RT5663_TDM_5:
case RT5663_GLB_CLK:
case RT5663_PLL_1:
case RT5663_PLL_2:
case RT5663_ASRC_1:
case RT5663_ASRC_2:
case RT5663_ASRC_4:
case RT5663_DUMMY_REG:
case RT5663_ASRC_8:
case RT5663_ASRC_9:
case RT5663_ASRC_11:
case RT5663_DEPOP_1:
case RT5663_DEPOP_2:
case RT5663_DEPOP_3:
case RT5663_HP_CHARGE_PUMP_1:
case RT5663_HP_CHARGE_PUMP_2:
case RT5663_MICBIAS_1:
case RT5663_RC_CLK:
case RT5663_ASRC_11_2:
case RT5663_DUMMY_REG_2:
case RT5663_REC_PATH_GAIN:
case RT5663_AUTO_1MRC_CLK:
case RT5663_ADC_EQ_1:
case RT5663_ADC_EQ_2:
case RT5663_IRQ_1:
case RT5663_IRQ_2:
case RT5663_IRQ_3:
case RT5663_IRQ_4:
case RT5663_IRQ_5:
case RT5663_INT_ST_1:
case RT5663_INT_ST_2:
case RT5663_GPIO_1:
case RT5663_GPIO_2:
case RT5663_GPIO_STA1:
case RT5663_SIN_GEN_1:
case RT5663_SIN_GEN_2:
case RT5663_SIN_GEN_3:
case RT5663_SOF_VOL_ZC1:
case RT5663_IL_CMD_1:
case RT5663_IL_CMD_2:
case RT5663_IL_CMD_3:
case RT5663_IL_CMD_4:
case RT5663_IL_CMD_5:
case RT5663_IL_CMD_6:
case RT5663_IL_CMD_7:
case RT5663_IL_CMD_8:
case RT5663_IL_CMD_PWRSAV1:
case RT5663_IL_CMD_PWRSAV2:
case RT5663_EM_JACK_TYPE_1:
case RT5663_EM_JACK_TYPE_2:
case RT5663_EM_JACK_TYPE_3:
case RT5663_EM_JACK_TYPE_4:
case RT5663_EM_JACK_TYPE_5:
case RT5663_EM_JACK_TYPE_6:
case RT5663_STO1_HPF_ADJ1:
case RT5663_STO1_HPF_ADJ2:
case RT5663_FAST_OFF_MICBIAS:
case RT5663_JD_CTRL1:
case RT5663_JD_CTRL2:
case RT5663_DIG_MISC:
case RT5663_VENDOR_ID:
case RT5663_VENDOR_ID_1:
case RT5663_VENDOR_ID_2:
case RT5663_DIG_VOL_ZCD:
case RT5663_ANA_BIAS_CUR_1:
case RT5663_ANA_BIAS_CUR_2:
case RT5663_ANA_BIAS_CUR_3:
case RT5663_ANA_BIAS_CUR_4:
case RT5663_ANA_BIAS_CUR_5:
case RT5663_ANA_BIAS_CUR_6:
case RT5663_BIAS_CUR_5:
case RT5663_BIAS_CUR_6:
case RT5663_BIAS_CUR_7:
case RT5663_BIAS_CUR_8:
case RT5663_DACREF_LDO:
case RT5663_DUMMY_REG_3:
case RT5663_BIAS_CUR_9:
case RT5663_DUMMY_REG_4:
case RT5663_VREFADJ_OP:
case RT5663_VREF_RECMIX:
case RT5663_CHARGE_PUMP_1:
case RT5663_CHARGE_PUMP_1_2:
case RT5663_CHARGE_PUMP_1_3:
case RT5663_CHARGE_PUMP_2:
case RT5663_DIG_IN_PIN1:
case RT5663_PAD_DRV_CTL:
case RT5663_PLL_INT_REG:
case RT5663_CHOP_DAC_L:
case RT5663_CHOP_ADC:
case RT5663_CALIB_ADC:
case RT5663_CHOP_DAC_R:
case RT5663_DUMMY_CTL_DACLR:
case RT5663_DUMMY_REG_5:
case RT5663_SOFT_RAMP:
case RT5663_TEST_MODE_1:
case RT5663_TEST_MODE_2:
case RT5663_TEST_MODE_3:
case RT5663_STO_DRE_1:
case RT5663_STO_DRE_2:
case RT5663_STO_DRE_3:
case RT5663_STO_DRE_4:
case RT5663_STO_DRE_5:
case RT5663_STO_DRE_6:
case RT5663_STO_DRE_7:
case RT5663_STO_DRE_8:
case RT5663_STO_DRE_9:
case RT5663_STO_DRE_10:
case RT5663_MIC_DECRO_1:
case RT5663_MIC_DECRO_2:
case RT5663_MIC_DECRO_3:
case RT5663_MIC_DECRO_4:
case RT5663_MIC_DECRO_5:
case RT5663_MIC_DECRO_6:
case RT5663_HP_DECRO_1:
case RT5663_HP_DECRO_2:
case RT5663_HP_DECRO_3:
case RT5663_HP_DECRO_4:
case RT5663_HP_DECOUP:
case RT5663_HP_IMP_SEN_MAP8:
case RT5663_HP_IMP_SEN_MAP9:
case RT5663_HP_IMP_SEN_MAP10:
case RT5663_HP_IMP_SEN_MAP11:
case RT5663_HP_IMP_SEN_1:
case RT5663_HP_IMP_SEN_2:
case RT5663_HP_IMP_SEN_3:
case RT5663_HP_IMP_SEN_4:
case RT5663_HP_IMP_SEN_5:
case RT5663_HP_IMP_SEN_6:
case RT5663_HP_IMP_SEN_7:
case RT5663_HP_IMP_SEN_8:
case RT5663_HP_IMP_SEN_9:
case RT5663_HP_IMP_SEN_10:
case RT5663_HP_IMP_SEN_11:
case RT5663_HP_IMP_SEN_12:
case RT5663_HP_IMP_SEN_13:
case RT5663_HP_IMP_SEN_14:
case RT5663_HP_IMP_SEN_15:
case RT5663_HP_IMP_SEN_16:
case RT5663_HP_IMP_SEN_17:
case RT5663_HP_IMP_SEN_18:
case RT5663_HP_IMP_SEN_19:
case RT5663_HP_IMPSEN_DIG5:
case RT5663_HP_IMPSEN_MAP1:
case RT5663_HP_IMPSEN_MAP2:
case RT5663_HP_IMPSEN_MAP3:
case RT5663_HP_IMPSEN_MAP4:
case RT5663_HP_IMPSEN_MAP5:
case RT5663_HP_IMPSEN_MAP7:
case RT5663_HP_LOGIC_1:
case RT5663_HP_LOGIC_2:
case RT5663_HP_CALIB_1:
case RT5663_HP_CALIB_1_1:
case RT5663_HP_CALIB_2:
case RT5663_HP_CALIB_3:
case RT5663_HP_CALIB_4:
case RT5663_HP_CALIB_5:
case RT5663_HP_CALIB_5_1:
case RT5663_HP_CALIB_6:
case RT5663_HP_CALIB_7:
case RT5663_HP_CALIB_9:
case RT5663_HP_CALIB_10:
case RT5663_HP_CALIB_11:
case RT5663_HP_CALIB_ST1:
case RT5663_HP_CALIB_ST2:
case RT5663_HP_CALIB_ST3:
case RT5663_HP_CALIB_ST4:
case RT5663_HP_CALIB_ST5:
case RT5663_HP_CALIB_ST6:
case RT5663_HP_CALIB_ST7:
case RT5663_HP_CALIB_ST8:
case RT5663_HP_CALIB_ST9:
case RT5663_HP_AMP_DET:
case RT5663_DUMMY_REG_6:
case RT5663_HP_BIAS:
case RT5663_CBJ_1:
case RT5663_CBJ_2:
case RT5663_CBJ_3:
case RT5663_DUMMY_1:
case RT5663_DUMMY_2:
case RT5663_DUMMY_3:
case RT5663_ANA_JD:
case RT5663_ADC_LCH_LPF1_A1:
case RT5663_ADC_RCH_LPF1_A1:
case RT5663_ADC_LCH_LPF1_H0:
case RT5663_ADC_RCH_LPF1_H0:
case RT5663_ADC_LCH_BPF1_A1:
case RT5663_ADC_RCH_BPF1_A1:
case RT5663_ADC_LCH_BPF1_A2:
case RT5663_ADC_RCH_BPF1_A2:
case RT5663_ADC_LCH_BPF1_H0:
case RT5663_ADC_RCH_BPF1_H0:
case RT5663_ADC_LCH_BPF2_A1:
case RT5663_ADC_RCH_BPF2_A1:
case RT5663_ADC_LCH_BPF2_A2:
case RT5663_ADC_RCH_BPF2_A2:
case RT5663_ADC_LCH_BPF2_H0:
case RT5663_ADC_RCH_BPF2_H0:
case RT5663_ADC_LCH_BPF3_A1:
case RT5663_ADC_RCH_BPF3_A1:
case RT5663_ADC_LCH_BPF3_A2:
case RT5663_ADC_RCH_BPF3_A2:
case RT5663_ADC_LCH_BPF3_H0:
case RT5663_ADC_RCH_BPF3_H0:
case RT5663_ADC_LCH_BPF4_A1:
case RT5663_ADC_RCH_BPF4_A1:
case RT5663_ADC_LCH_BPF4_A2:
case RT5663_ADC_RCH_BPF4_A2:
case RT5663_ADC_LCH_BPF4_H0:
case RT5663_ADC_RCH_BPF4_H0:
case RT5663_ADC_LCH_HPF1_A1:
case RT5663_ADC_RCH_HPF1_A1:
case RT5663_ADC_LCH_HPF1_H0:
case RT5663_ADC_RCH_HPF1_H0:
case RT5663_ADC_EQ_PRE_VOL_L:
case RT5663_ADC_EQ_PRE_VOL_R:
case RT5663_ADC_EQ_POST_VOL_L:
case RT5663_ADC_EQ_POST_VOL_R:
return true ;
default :
return false ;
}
}
static bool rt5663_v2_volatile_register(struct device *dev, unsigned int reg)
{
switch (reg) {
case RT5663_RESET:
case RT5663_CBJ_TYPE_2:
case RT5663_PDM_OUT_CTL:
case RT5663_PDM_I2C_DATA_CTL1:
case RT5663_PDM_I2C_DATA_CTL4:
case RT5663_ALC_BK_GAIN:
case RT5663_PLL_2:
case RT5663_MICBIAS_1:
case RT5663_ADC_EQ_1:
case RT5663_INT_ST_1:
case RT5663_GPIO_STA2:
case RT5663_IL_CMD_1:
case RT5663_IL_CMD_5:
case RT5663_A_JD_CTRL:
case RT5663_JD_CTRL2:
case RT5663_VENDOR_ID:
case RT5663_VENDOR_ID_1:
case RT5663_VENDOR_ID_2:
case RT5663_STO_DRE_1:
case RT5663_STO_DRE_5:
case RT5663_STO_DRE_6:
case RT5663_STO_DRE_7:
case RT5663_MONO_DYNA_6:
case RT5663_STO1_SIL_DET:
case RT5663_MONOL_SIL_DET:
case RT5663_MONOR_SIL_DET:
case RT5663_STO2_DAC_SIL:
case RT5663_MONO_AMP_CAL_ST1:
case RT5663_MONO_AMP_CAL_ST2:
case RT5663_MONO_AMP_CAL_ST3:
case RT5663_MONO_AMP_CAL_ST4:
case RT5663_HP_IMP_SEN_2:
case RT5663_HP_IMP_SEN_3:
case RT5663_HP_IMP_SEN_4:
case RT5663_HP_IMP_SEN_10:
case RT5663_HP_CALIB_1:
case RT5663_HP_CALIB_10:
case RT5663_HP_CALIB_ST1:
case RT5663_HP_CALIB_ST4:
case RT5663_HP_CALIB_ST5:
case RT5663_HP_CALIB_ST6:
case RT5663_HP_CALIB_ST7:
case RT5663_HP_CALIB_ST8:
case RT5663_HP_CALIB_ST9:
case RT5663_HP_CALIB_ST10:
case RT5663_HP_CALIB_ST11:
return true ;
default :
return false ;
}
}
static bool rt5663_v2_readable_register(struct device *dev, unsigned int reg)
{
switch (reg) {
case RT5663_LOUT_CTRL:
case RT5663_HP_AMP_2:
case RT5663_MONO_OUT:
case RT5663_MONO_GAIN:
case RT5663_AEC_BST:
case RT5663_IN1_IN2:
case RT5663_IN3_IN4:
case RT5663_INL1_INR1:
case RT5663_CBJ_TYPE_2:
case RT5663_CBJ_TYPE_3:
case RT5663_CBJ_TYPE_4:
case RT5663_CBJ_TYPE_5:
case RT5663_CBJ_TYPE_8:
case RT5663_DAC3_DIG_VOL:
case RT5663_DAC3_CTRL:
case RT5663_MONO_ADC_DIG_VOL:
case RT5663_STO2_ADC_DIG_VOL:
case RT5663_MONO_ADC_BST_GAIN:
case RT5663_STO2_ADC_BST_GAIN:
case RT5663_SIDETONE_CTRL:
case RT5663_MONO1_ADC_MIXER:
case RT5663_STO2_ADC_MIXER:
case RT5663_MONO_DAC_MIXER:
case RT5663_DAC2_SRC_CTRL:
case RT5663_IF_3_4_DATA_CTL:
case RT5663_IF_5_DATA_CTL:
case RT5663_PDM_OUT_CTL:
case RT5663_PDM_I2C_DATA_CTL1:
case RT5663_PDM_I2C_DATA_CTL2:
case RT5663_PDM_I2C_DATA_CTL3:
case RT5663_PDM_I2C_DATA_CTL4:
case RT5663_RECMIX1_NEW:
case RT5663_RECMIX1L_0:
case RT5663_RECMIX1L:
case RT5663_RECMIX1R_0:
case RT5663_RECMIX1R:
case RT5663_RECMIX2_NEW:
case RT5663_RECMIX2_L_2:
case RT5663_RECMIX2_R:
case RT5663_RECMIX2_R_2:
case RT5663_CALIB_REC_LR:
case RT5663_ALC_BK_GAIN:
case RT5663_MONOMIX_GAIN:
case RT5663_MONOMIX_IN_GAIN:
case RT5663_OUT_MIXL_GAIN:
case RT5663_OUT_LMIX_IN_GAIN:
case RT5663_OUT_RMIX_IN_GAIN:
case RT5663_OUT_RMIX_IN_GAIN1:
case RT5663_LOUT_MIXER_CTRL:
case RT5663_PWR_VOL:
case RT5663_ADCDAC_RST:
case RT5663_I2S34_SDP:
case RT5663_I2S5_SDP:
case RT5663_TDM_6:
case RT5663_TDM_7:
case RT5663_TDM_8:
case RT5663_TDM_9:
case RT5663_ASRC_3:
case RT5663_ASRC_6:
case RT5663_ASRC_7:
case RT5663_PLL_TRK_13:
case RT5663_I2S_M_CLK_CTL:
case RT5663_FDIV_I2S34_M_CLK:
case RT5663_FDIV_I2S34_M_CLK2:
case RT5663_FDIV_I2S5_M_CLK:
case RT5663_FDIV_I2S5_M_CLK2:
case RT5663_V2_IRQ_4:
case RT5663_GPIO_3:
case RT5663_GPIO_4:
case RT5663_GPIO_STA2:
case RT5663_HP_AMP_DET1:
case RT5663_HP_AMP_DET2:
case RT5663_HP_AMP_DET3:
case RT5663_MID_BD_HP_AMP:
case RT5663_LOW_BD_HP_AMP:
case RT5663_SOF_VOL_ZC2:
case RT5663_ADC_STO2_ADJ1:
case RT5663_ADC_STO2_ADJ2:
case RT5663_A_JD_CTRL:
case RT5663_JD1_TRES_CTRL:
case RT5663_JD2_TRES_CTRL:
case RT5663_V2_JD_CTRL2:
case RT5663_DUM_REG_2:
case RT5663_DUM_REG_3:
case RT5663_VENDOR_ID:
case RT5663_VENDOR_ID_1:
case RT5663_VENDOR_ID_2:
case RT5663_DACADC_DIG_VOL2:
case RT5663_DIG_IN_PIN2:
case RT5663_PAD_DRV_CTL1:
case RT5663_SOF_RAM_DEPOP:
case RT5663_VOL_TEST:
case RT5663_TEST_MODE_4:
case RT5663_TEST_MODE_5:
case RT5663_STO_DRE_9:
case RT5663_MONO_DYNA_1:
case RT5663_MONO_DYNA_2:
case RT5663_MONO_DYNA_3:
case RT5663_MONO_DYNA_4:
case RT5663_MONO_DYNA_5:
case RT5663_MONO_DYNA_6:
case RT5663_STO1_SIL_DET:
case RT5663_MONOL_SIL_DET:
case RT5663_MONOR_SIL_DET:
case RT5663_STO2_DAC_SIL:
case RT5663_PWR_SAV_CTL1:
case RT5663_PWR_SAV_CTL2:
case RT5663_PWR_SAV_CTL3:
case RT5663_PWR_SAV_CTL4:
case RT5663_PWR_SAV_CTL5:
case RT5663_PWR_SAV_CTL6:
case RT5663_MONO_AMP_CAL1:
case RT5663_MONO_AMP_CAL2:
case RT5663_MONO_AMP_CAL3:
case RT5663_MONO_AMP_CAL4:
case RT5663_MONO_AMP_CAL5:
case RT5663_MONO_AMP_CAL6:
case RT5663_MONO_AMP_CAL7:
case RT5663_MONO_AMP_CAL_ST1:
case RT5663_MONO_AMP_CAL_ST2:
case RT5663_MONO_AMP_CAL_ST3:
case RT5663_MONO_AMP_CAL_ST4:
case RT5663_MONO_AMP_CAL_ST5:
case RT5663_V2_HP_IMP_SEN_13:
case RT5663_V2_HP_IMP_SEN_14:
case RT5663_V2_HP_IMP_SEN_6:
case RT5663_V2_HP_IMP_SEN_7:
case RT5663_V2_HP_IMP_SEN_8:
case RT5663_V2_HP_IMP_SEN_9:
case RT5663_V2_HP_IMP_SEN_10:
case RT5663_HP_LOGIC_3:
case RT5663_HP_CALIB_ST10:
case RT5663_HP_CALIB_ST11:
case RT5663_PRO_REG_TBL_4:
case RT5663_PRO_REG_TBL_5:
case RT5663_PRO_REG_TBL_6:
case RT5663_PRO_REG_TBL_7:
case RT5663_PRO_REG_TBL_8:
case RT5663_PRO_REG_TBL_9:
case RT5663_SAR_ADC_INL_1:
case RT5663_SAR_ADC_INL_2:
case RT5663_SAR_ADC_INL_3:
case RT5663_SAR_ADC_INL_4:
case RT5663_SAR_ADC_INL_5:
case RT5663_SAR_ADC_INL_6:
case RT5663_SAR_ADC_INL_7:
case RT5663_SAR_ADC_INL_8:
case RT5663_SAR_ADC_INL_9:
case RT5663_SAR_ADC_INL_10:
case RT5663_SAR_ADC_INL_11:
case RT5663_SAR_ADC_INL_12:
case RT5663_DRC_CTRL_1:
case RT5663_DRC1_CTRL_2:
case RT5663_DRC1_CTRL_3:
case RT5663_DRC1_CTRL_4:
case RT5663_DRC1_CTRL_5:
case RT5663_DRC1_CTRL_6:
case RT5663_DRC1_HD_CTRL_1:
case RT5663_DRC1_HD_CTRL_2:
case RT5663_DRC1_PRI_REG_1:
case RT5663_DRC1_PRI_REG_2:
case RT5663_DRC1_PRI_REG_3:
case RT5663_DRC1_PRI_REG_4:
case RT5663_DRC1_PRI_REG_5:
case RT5663_DRC1_PRI_REG_6:
case RT5663_DRC1_PRI_REG_7:
case RT5663_DRC1_PRI_REG_8:
case RT5663_ALC_PGA_CTL_1:
case RT5663_ALC_PGA_CTL_2:
case RT5663_ALC_PGA_CTL_3:
case RT5663_ALC_PGA_CTL_4:
case RT5663_ALC_PGA_CTL_5:
case RT5663_ALC_PGA_CTL_6:
case RT5663_ALC_PGA_CTL_7:
case RT5663_ALC_PGA_CTL_8:
case RT5663_ALC_PGA_REG_1:
case RT5663_ALC_PGA_REG_2:
case RT5663_ALC_PGA_REG_3:
case RT5663_ADC_EQ_RECOV_1:
case RT5663_ADC_EQ_RECOV_2:
case RT5663_ADC_EQ_RECOV_3:
case RT5663_ADC_EQ_RECOV_4:
case RT5663_ADC_EQ_RECOV_5:
case RT5663_ADC_EQ_RECOV_6:
case RT5663_ADC_EQ_RECOV_7:
case RT5663_ADC_EQ_RECOV_8:
case RT5663_ADC_EQ_RECOV_9:
case RT5663_ADC_EQ_RECOV_10:
case RT5663_ADC_EQ_RECOV_11:
case RT5663_ADC_EQ_RECOV_12:
case RT5663_ADC_EQ_RECOV_13:
case RT5663_VID_HIDDEN:
case RT5663_VID_CUSTOMER:
case RT5663_SCAN_MODE:
case RT5663_I2C_BYPA:
return true ;
case RT5663_TDM_1:
case RT5663_DEPOP_3:
case RT5663_ASRC_11_2:
case RT5663_INT_ST_2:
case RT5663_GPIO_STA1:
case RT5663_SIN_GEN_1:
case RT5663_SIN_GEN_2:
case RT5663_SIN_GEN_3:
case RT5663_IL_CMD_PWRSAV1:
case RT5663_IL_CMD_PWRSAV2:
case RT5663_EM_JACK_TYPE_1:
case RT5663_EM_JACK_TYPE_2:
case RT5663_EM_JACK_TYPE_3:
case RT5663_EM_JACK_TYPE_4:
case RT5663_FAST_OFF_MICBIAS:
case RT5663_ANA_BIAS_CUR_1:
case RT5663_ANA_BIAS_CUR_2:
case RT5663_BIAS_CUR_9:
case RT5663_DUMMY_REG_4:
case RT5663_VREF_RECMIX:
case RT5663_CHARGE_PUMP_1_2:
case RT5663_CHARGE_PUMP_1_3:
case RT5663_CHARGE_PUMP_2:
case RT5663_CHOP_DAC_R:
case RT5663_DUMMY_CTL_DACLR:
case RT5663_DUMMY_REG_5:
case RT5663_SOFT_RAMP:
case RT5663_TEST_MODE_1:
case RT5663_STO_DRE_10:
case RT5663_MIC_DECRO_1:
case RT5663_MIC_DECRO_2:
case RT5663_MIC_DECRO_3:
case RT5663_MIC_DECRO_4:
case RT5663_MIC_DECRO_5:
case RT5663_MIC_DECRO_6:
case RT5663_HP_DECRO_1:
case RT5663_HP_DECRO_2:
case RT5663_HP_DECRO_3:
case RT5663_HP_DECRO_4:
case RT5663_HP_DECOUP:
case RT5663_HP_IMPSEN_MAP4:
case RT5663_HP_IMPSEN_MAP5:
case RT5663_HP_IMPSEN_MAP7:
case RT5663_HP_CALIB_1:
case RT5663_CBJ_1:
case RT5663_CBJ_2:
case RT5663_CBJ_3:
return false ;
default :
return rt5663_readable_register(dev, reg);
}
}
static const DECLARE_TLV_DB_SCALE(rt5663_hp_vol_tlv, -2400 , 150 , 0 );
static const DECLARE_TLV_DB_SCALE(rt5663_v2_hp_vol_tlv, -2250 , 150 , 0 );
static const DECLARE_TLV_DB_SCALE(dac_vol_tlv, -6525 , 75 , 0 );
static const DECLARE_TLV_DB_SCALE(adc_vol_tlv, -1725 , 75 , 0 );
/* {0, +20, +24, +30, +35, +40, +44, +50, +52} dB */
static const DECLARE_TLV_DB_RANGE(in_bst_tlv,
0 , 0 , TLV_DB_SCALE_ITEM(0 , 0 , 0 ),
1 , 1 , TLV_DB_SCALE_ITEM(2000 , 0 , 0 ),
2 , 2 , TLV_DB_SCALE_ITEM(2400 , 0 , 0 ),
3 , 5 , TLV_DB_SCALE_ITEM(3000 , 500 , 0 ),
6 , 6 , TLV_DB_SCALE_ITEM(4400 , 0 , 0 ),
7 , 7 , TLV_DB_SCALE_ITEM(5000 , 0 , 0 ),
8 , 8 , TLV_DB_SCALE_ITEM(5200 , 0 , 0 )
);
/* Interface data select */
static const char * const rt5663_if1_adc_data_select[] = {
"L/R" , "R/L" , "L/L" , "R/R"
};
static SOC_ENUM_SINGLE_DECL(rt5663_if1_adc_enum, RT5663_TDM_2,
RT5663_DATA_SWAP_ADCDAT1_SHIFT, rt5663_if1_adc_data_select);
static void rt5663_enable_push_button_irq(struct snd_soc_component *component,
bool enable)
{
struct rt5663_priv *rt5663 = snd_soc_component_get_drvdata(component);
if (enable) {
snd_soc_component_update_bits(component, RT5663_IL_CMD_6,
RT5663_EN_4BTN_INL_MASK, RT5663_EN_4BTN_INL_EN);
/* reset in-line command */
snd_soc_component_update_bits(component, RT5663_IL_CMD_6,
RT5663_RESET_4BTN_INL_MASK,
RT5663_RESET_4BTN_INL_RESET);
snd_soc_component_update_bits(component, RT5663_IL_CMD_6,
RT5663_RESET_4BTN_INL_MASK,
RT5663_RESET_4BTN_INL_NOR);
switch (rt5663->codec_ver) {
case CODEC_VER_1:
snd_soc_component_update_bits(component, RT5663_IRQ_3,
RT5663_V2_EN_IRQ_INLINE_MASK,
RT5663_V2_EN_IRQ_INLINE_NOR);
break ;
case CODEC_VER_0:
snd_soc_component_update_bits(component, RT5663_IRQ_2,
RT5663_EN_IRQ_INLINE_MASK,
RT5663_EN_IRQ_INLINE_NOR);
break ;
default :
dev_err(component->dev, "Unknown CODEC Version\n" );
}
} else {
switch (rt5663->codec_ver) {
case CODEC_VER_1:
snd_soc_component_update_bits(component, RT5663_IRQ_3,
RT5663_V2_EN_IRQ_INLINE_MASK,
RT5663_V2_EN_IRQ_INLINE_BYP);
break ;
case CODEC_VER_0:
snd_soc_component_update_bits(component, RT5663_IRQ_2,
RT5663_EN_IRQ_INLINE_MASK,
RT5663_EN_IRQ_INLINE_BYP);
break ;
default :
dev_err(component->dev, "Unknown CODEC Version\n" );
}
snd_soc_component_update_bits(component, RT5663_IL_CMD_6,
RT5663_EN_4BTN_INL_MASK, RT5663_EN_4BTN_INL_DIS);
/* reset in-line command */
snd_soc_component_update_bits(component, RT5663_IL_CMD_6,
RT5663_RESET_4BTN_INL_MASK,
RT5663_RESET_4BTN_INL_RESET);
snd_soc_component_update_bits(component, RT5663_IL_CMD_6,
RT5663_RESET_4BTN_INL_MASK,
RT5663_RESET_4BTN_INL_NOR);
}
}
/**
* rt5663_v2_jack_detect - Detect headset.
* @component: SoC audio component device.
* @jack_insert: Jack insert or not.
*
* Detect whether is headset or not when jack inserted.
*
* Returns detect status.
*/
static int rt5663_v2_jack_detect(struct snd_soc_component *component, int jack_insert)
{
struct snd_soc_dapm_context *dapm = snd_soc_component_get_dapm(component);
struct rt5663_priv *rt5663 = snd_soc_component_get_drvdata(component);
int val, i = 0 , sleep_time[5 ] = {300 , 150 , 100 , 50 , 30 };
dev_dbg(component->dev, "%s jack_insert:%d\n" , __func__, jack_insert);
if (jack_insert) {
snd_soc_component_write(component, RT5663_CBJ_TYPE_2, 0 x8040);
snd_soc_component_write(component, RT5663_CBJ_TYPE_3, 0 x1484);
snd_soc_dapm_force_enable_pin(dapm, "MICBIAS1" );
snd_soc_dapm_force_enable_pin(dapm, "MICBIAS2" );
snd_soc_dapm_force_enable_pin(dapm, "Mic Det Power" );
snd_soc_dapm_force_enable_pin(dapm, "CBJ Power" );
snd_soc_dapm_sync(dapm);
snd_soc_component_update_bits(component, RT5663_RC_CLK,
RT5663_DIG_1M_CLK_MASK, RT5663_DIG_1M_CLK_EN);
snd_soc_component_update_bits(component, RT5663_RECMIX, 0 x8, 0 x8);
while (i < 5 ) {
msleep(sleep_time[i]);
val = snd_soc_component_read(component, RT5663_CBJ_TYPE_2) & 0 x0003;
if (val == 0 x1 || val == 0 x2 || val == 0 x3)
break ;
dev_dbg(component->dev, "%s: MX-0011 val=%x sleep %d\n" ,
__func__, val, sleep_time[i]);
i++;
}
dev_dbg(component->dev, "%s val = %d\n" , __func__, val);
switch (val) {
case 1 :
case 2 :
rt5663->jack_type = SND_JACK_HEADSET;
rt5663_enable_push_button_irq(component, true );
break ;
default :
snd_soc_dapm_disable_pin(dapm, "MICBIAS1" );
snd_soc_dapm_disable_pin(dapm, "MICBIAS2" );
snd_soc_dapm_disable_pin(dapm, "Mic Det Power" );
snd_soc_dapm_disable_pin(dapm, "CBJ Power" );
snd_soc_dapm_sync(dapm);
rt5663->jack_type = SND_JACK_HEADPHONE;
break ;
}
} else {
snd_soc_component_update_bits(component, RT5663_RECMIX, 0 x8, 0 x0);
if (rt5663->jack_type == SND_JACK_HEADSET) {
rt5663_enable_push_button_irq(component, false );
snd_soc_dapm_disable_pin(dapm, "MICBIAS1" );
snd_soc_dapm_disable_pin(dapm, "MICBIAS2" );
snd_soc_dapm_disable_pin(dapm, "Mic Det Power" );
snd_soc_dapm_disable_pin(dapm, "CBJ Power" );
snd_soc_dapm_sync(dapm);
}
rt5663->jack_type = 0 ;
}
dev_dbg(component->dev, "jack_type = %d\n" , rt5663->jack_type);
return rt5663->jack_type;
}
/**
* rt5663_jack_detect - Detect headset.
* @component: SoC audio component device.
* @jack_insert: Jack insert or not.
*
* Detect whether is headset or not when jack inserted.
*
* Returns detect status.
*/
static int rt5663_jack_detect(struct snd_soc_component *component, int jack_insert)
{
struct rt5663_priv *rt5663 = snd_soc_component_get_drvdata(component);
int val, i = 0 ;
dev_dbg(component->dev, "%s jack_insert:%d\n" , __func__, jack_insert);
if (jack_insert) {
snd_soc_component_update_bits(component, RT5663_DIG_MISC,
RT5663_DIG_GATE_CTRL_MASK, RT5663_DIG_GATE_CTRL_EN);
snd_soc_component_update_bits(component, RT5663_HP_CHARGE_PUMP_1,
RT5663_SI_HP_MASK | RT5663_OSW_HP_L_MASK |
RT5663_OSW_HP_R_MASK, RT5663_SI_HP_EN |
RT5663_OSW_HP_L_DIS | RT5663_OSW_HP_R_DIS);
snd_soc_component_update_bits(component, RT5663_DUMMY_1,
RT5663_EMB_CLK_MASK | RT5663_HPA_CPL_BIAS_MASK |
RT5663_HPA_CPR_BIAS_MASK, RT5663_EMB_CLK_EN |
RT5663_HPA_CPL_BIAS_1 | RT5663_HPA_CPR_BIAS_1);
snd_soc_component_update_bits(component, RT5663_CBJ_1,
RT5663_INBUF_CBJ_BST1_MASK | RT5663_CBJ_SENSE_BST1_MASK,
RT5663_INBUF_CBJ_BST1_ON | RT5663_CBJ_SENSE_BST1_L);
snd_soc_component_update_bits(component, RT5663_IL_CMD_2,
RT5663_PWR_MIC_DET_MASK, RT5663_PWR_MIC_DET_ON);
/* BST1 power on for JD */
snd_soc_component_update_bits(component, RT5663_PWR_ANLG_2,
RT5663_PWR_BST1_MASK, RT5663_PWR_BST1_ON);
snd_soc_component_update_bits(component, RT5663_EM_JACK_TYPE_1,
RT5663_CBJ_DET_MASK | RT5663_EXT_JD_MASK |
RT5663_POL_EXT_JD_MASK, RT5663_CBJ_DET_EN |
RT5663_EXT_JD_EN | RT5663_POL_EXT_JD_EN);
snd_soc_component_update_bits(component, RT5663_PWR_ANLG_1,
RT5663_PWR_MB_MASK | RT5663_LDO1_DVO_MASK |
RT5663_AMP_HP_MASK, RT5663_PWR_MB |
RT5663_LDO1_DVO_0_9V | RT5663_AMP_HP_3X);
snd_soc_component_update_bits(component, RT5663_PWR_ANLG_1,
RT5663_PWR_VREF1_MASK | RT5663_PWR_VREF2_MASK |
RT5663_PWR_FV1_MASK | RT5663_PWR_FV2_MASK,
RT5663_PWR_VREF1 | RT5663_PWR_VREF2);
msleep(20 );
snd_soc_component_update_bits(component, RT5663_PWR_ANLG_1,
RT5663_PWR_FV1_MASK | RT5663_PWR_FV2_MASK,
RT5663_PWR_FV1 | RT5663_PWR_FV2);
snd_soc_component_update_bits(component, RT5663_AUTO_1MRC_CLK,
RT5663_IRQ_POW_SAV_MASK, RT5663_IRQ_POW_SAV_EN);
snd_soc_component_update_bits(component, RT5663_IRQ_1,
RT5663_EN_IRQ_JD1_MASK, RT5663_EN_IRQ_JD1_EN);
snd_soc_component_update_bits(component, RT5663_EM_JACK_TYPE_1,
RT5663_EM_JD_MASK, RT5663_EM_JD_RST);
snd_soc_component_update_bits(component, RT5663_EM_JACK_TYPE_1,
RT5663_EM_JD_MASK, RT5663_EM_JD_NOR);
while (true ) {
regmap_read(rt5663->regmap, RT5663_INT_ST_2, &val);
if (!(val & 0 x80))
usleep_range(10000 , 10005 );
else
break ;
if (i > 200 )
break ;
i++;
}
val = snd_soc_component_read(component, RT5663_EM_JACK_TYPE_2) & 0 x0003;
dev_dbg(component->dev, "%s val = %d\n" , __func__, val);
snd_soc_component_update_bits(component, RT5663_HP_CHARGE_PUMP_1,
RT5663_OSW_HP_L_MASK | RT5663_OSW_HP_R_MASK,
RT5663_OSW_HP_L_EN | RT5663_OSW_HP_R_EN);
switch (val) {
case 1 :
case 2 :
rt5663->jack_type = SND_JACK_HEADSET;
rt5663_enable_push_button_irq(component, true );
if (rt5663->pdata.impedance_sensing_num)
break ;
if (rt5663->pdata.dc_offset_l_manual_mic) {
regmap_write(rt5663->regmap, RT5663_MIC_DECRO_2,
rt5663->pdata.dc_offset_l_manual_mic >>
16 );
regmap_write(rt5663->regmap, RT5663_MIC_DECRO_3,
rt5663->pdata.dc_offset_l_manual_mic &
0 xffff);
}
if (rt5663->pdata.dc_offset_r_manual_mic) {
regmap_write(rt5663->regmap, RT5663_MIC_DECRO_5,
rt5663->pdata.dc_offset_r_manual_mic >>
16 );
regmap_write(rt5663->regmap, RT5663_MIC_DECRO_6,
rt5663->pdata.dc_offset_r_manual_mic &
0 xffff);
}
break ;
default :
rt5663->jack_type = SND_JACK_HEADPHONE;
snd_soc_component_update_bits(component,
RT5663_PWR_ANLG_1,
RT5663_PWR_MB_MASK | RT5663_PWR_VREF1_MASK |
RT5663_PWR_VREF2_MASK, 0 );
if (rt5663->pdata.impedance_sensing_num)
break ;
if (rt5663->pdata.dc_offset_l_manual) {
regmap_write(rt5663->regmap, RT5663_MIC_DECRO_2,
rt5663->pdata.dc_offset_l_manual >> 16 );
regmap_write(rt5663->regmap, RT5663_MIC_DECRO_3,
rt5663->pdata.dc_offset_l_manual &
0 xffff);
}
if (rt5663->pdata.dc_offset_r_manual) {
regmap_write(rt5663->regmap, RT5663_MIC_DECRO_5,
rt5663->pdata.dc_offset_r_manual >> 16 );
regmap_write(rt5663->regmap, RT5663_MIC_DECRO_6,
rt5663->pdata.dc_offset_r_manual &
0 xffff);
}
break ;
}
} else {
if (rt5663->jack_type == SND_JACK_HEADSET)
rt5663_enable_push_button_irq(component, false );
rt5663->jack_type = 0 ;
snd_soc_component_update_bits(component, RT5663_PWR_ANLG_1,
RT5663_PWR_MB_MASK | RT5663_PWR_VREF1_MASK |
RT5663_PWR_VREF2_MASK, 0 );
}
dev_dbg(component->dev, "jack_type = %d\n" , rt5663->jack_type);
return rt5663->jack_type;
}
static int rt5663_impedance_sensing(struct snd_soc_component *component)
{
struct rt5663_priv *rt5663 = snd_soc_component_get_drvdata(component);
unsigned int value, i, reg84, reg26, reg2fa, reg91, reg10, reg80;
for (i = 0 ; i < rt5663->pdata.impedance_sensing_num; i++) {
if (rt5663->imp_table[i].vol == 7 )
break ;
}
if (rt5663->jack_type == SND_JACK_HEADSET) {
snd_soc_component_write(component, RT5663_MIC_DECRO_2,
rt5663->imp_table[i].dc_offset_l_manual_mic >> 16 );
snd_soc_component_write(component, RT5663_MIC_DECRO_3,
rt5663->imp_table[i].dc_offset_l_manual_mic & 0 xffff);
snd_soc_component_write(component, RT5663_MIC_DECRO_5,
rt5663->imp_table[i].dc_offset_r_manual_mic >> 16 );
snd_soc_component_write(component, RT5663_MIC_DECRO_6,
rt5663->imp_table[i].dc_offset_r_manual_mic & 0 xffff);
} else {
snd_soc_component_write(component, RT5663_MIC_DECRO_2,
rt5663->imp_table[i].dc_offset_l_manual >> 16 );
snd_soc_component_write(component, RT5663_MIC_DECRO_3,
rt5663->imp_table[i].dc_offset_l_manual & 0 xffff);
snd_soc_component_write(component, RT5663_MIC_DECRO_5,
rt5663->imp_table[i].dc_offset_r_manual >> 16 );
snd_soc_component_write(component, RT5663_MIC_DECRO_6,
rt5663->imp_table[i].dc_offset_r_manual & 0 xffff);
}
reg84 = snd_soc_component_read(component, RT5663_ASRC_2);
reg26 = snd_soc_component_read(component, RT5663_STO1_ADC_MIXER);
reg2fa = snd_soc_component_read(component, RT5663_DUMMY_1);
reg91 = snd_soc_component_read(component, RT5663_HP_CHARGE_PUMP_1);
reg10 = snd_soc_component_read(component, RT5663_RECMIX);
reg80 = snd_soc_component_read(component, RT5663_GLB_CLK);
snd_soc_component_update_bits(component, RT5663_STO_DRE_1, 0 x8000, 0 );
snd_soc_component_write(component, RT5663_ASRC_2, 0 );
snd_soc_component_write(component, RT5663_STO1_ADC_MIXER, 0 x4040);
snd_soc_component_update_bits(component, RT5663_PWR_ANLG_1,
RT5663_PWR_VREF1_MASK | RT5663_PWR_VREF2_MASK |
RT5663_PWR_FV1_MASK | RT5663_PWR_FV2_MASK,
RT5663_PWR_VREF1 | RT5663_PWR_VREF2);
usleep_range(10000 , 10005 );
snd_soc_component_update_bits(component, RT5663_PWR_ANLG_1,
RT5663_PWR_FV1_MASK | RT5663_PWR_FV2_MASK,
RT5663_PWR_FV1 | RT5663_PWR_FV2);
snd_soc_component_update_bits(component, RT5663_GLB_CLK, RT5663_SCLK_SRC_MASK,
RT5663_SCLK_SRC_RCCLK);
snd_soc_component_update_bits(component, RT5663_RC_CLK, RT5663_DIG_25M_CLK_MASK,
RT5663_DIG_25M_CLK_EN);
snd_soc_component_update_bits(component, RT5663_ADDA_CLK_1, RT5663_I2S_PD1_MASK, 0 );
snd_soc_component_write(component, RT5663_PRE_DIV_GATING_1, 0 xff00);
snd_soc_component_write(component, RT5663_PRE_DIV_GATING_2, 0 xfffc);
snd_soc_component_write(component, RT5663_HP_CHARGE_PUMP_1, 0 x1232);
snd_soc_component_write(component, RT5663_HP_LOGIC_2, 0 x0005);
snd_soc_component_write(component, RT5663_DEPOP_2, 0 x3003);
snd_soc_component_update_bits(component, RT5663_DEPOP_1, 0 x0030, 0 x0030);
snd_soc_component_update_bits(component, RT5663_DEPOP_1, 0 x0003, 0 x0003);
snd_soc_component_update_bits(component, RT5663_PWR_DIG_2,
RT5663_PWR_ADC_S1F | RT5663_PWR_DAC_S1F,
RT5663_PWR_ADC_S1F | RT5663_PWR_DAC_S1F);
snd_soc_component_update_bits(component, RT5663_PWR_DIG_1,
RT5663_PWR_DAC_L1 | RT5663_PWR_DAC_R1 |
RT5663_PWR_LDO_DACREF_MASK | RT5663_PWR_ADC_L1 |
RT5663_PWR_ADC_R1,
RT5663_PWR_DAC_L1 | RT5663_PWR_DAC_R1 |
RT5663_PWR_LDO_DACREF_ON | RT5663_PWR_ADC_L1 |
RT5663_PWR_ADC_R1);
msleep(40 );
snd_soc_component_update_bits(component, RT5663_PWR_ANLG_2,
RT5663_PWR_RECMIX1 | RT5663_PWR_RECMIX2,
RT5663_PWR_RECMIX1 | RT5663_PWR_RECMIX2);
msleep(30 );
snd_soc_component_write(component, RT5663_HP_CHARGE_PUMP_2, 0 x1371);
snd_soc_component_write(component, RT5663_STO_DAC_MIXER, 0 );
snd_soc_component_write(component, RT5663_BYPASS_STO_DAC, 0 x000c);
snd_soc_component_write(component, RT5663_HP_BIAS, 0 xafaa);
snd_soc_component_write(component, RT5663_CHARGE_PUMP_1, 0 x2224);
snd_soc_component_write(component, RT5663_HP_OUT_EN, 0 x8088);
snd_soc_component_write(component, RT5663_CHOP_ADC, 0 x3000);
snd_soc_component_write(component, RT5663_ADDA_RST, 0 xc000);
snd_soc_component_write(component, RT5663_STO1_HPF_ADJ1, 0 x3320);
snd_soc_component_write(component, RT5663_HP_CALIB_2, 0 x00c9);
snd_soc_component_write(component, RT5663_DUMMY_1, 0 x004c);
snd_soc_component_write(component, RT5663_ANA_BIAS_CUR_1, 0 x7733);
snd_soc_component_write(component, RT5663_CHARGE_PUMP_2, 0 x7777);
snd_soc_component_write(component, RT5663_STO_DRE_9, 0 x0007);
snd_soc_component_write(component, RT5663_STO_DRE_10, 0 x0007);
snd_soc_component_write(component, RT5663_DUMMY_2, 0 x02a4);
snd_soc_component_write(component, RT5663_RECMIX, 0 x0005);
snd_soc_component_write(component, RT5663_HP_IMP_SEN_1, 0 x4334);
snd_soc_component_update_bits(component, RT5663_IRQ_3, 0 x0004, 0 x0004);
snd_soc_component_write(component, RT5663_HP_LOGIC_1, 0 x2200);
snd_soc_component_update_bits(component, RT5663_DEPOP_1, 0 x3000, 0 x3000);
snd_soc_component_write(component, RT5663_HP_LOGIC_1, 0 x6200);
for (i = 0 ; i < 100 ; i++) {
msleep(20 );
if (snd_soc_component_read(component, RT5663_INT_ST_1) & 0 x2)
break ;
}
value = snd_soc_component_read(component, RT5663_HP_IMP_SEN_4);
snd_soc_component_update_bits(component, RT5663_DEPOP_1, 0 x3000, 0 );
snd_soc_component_write(component, RT5663_INT_ST_1, 0 );
snd_soc_component_write(component, RT5663_HP_LOGIC_1, 0 );
snd_soc_component_update_bits(component, RT5663_RC_CLK, RT5663_DIG_25M_CLK_MASK,
RT5663_DIG_25M_CLK_DIS);
snd_soc_component_write(component, RT5663_GLB_CLK, reg80);
snd_soc_component_write(component, RT5663_RECMIX, reg10);
snd_soc_component_write(component, RT5663_DUMMY_2, 0 x00a4);
snd_soc_component_write(component, RT5663_DUMMY_1, reg2fa);
snd_soc_component_write(component, RT5663_HP_CALIB_2, 0 x00c8);
snd_soc_component_write(component, RT5663_STO1_HPF_ADJ1, 0 xb320);
snd_soc_component_write(component, RT5663_ADDA_RST, 0 xe400);
snd_soc_component_write(component, RT5663_CHOP_ADC, 0 x2000);
snd_soc_component_write(component, RT5663_HP_OUT_EN, 0 x0008);
snd_soc_component_update_bits(component, RT5663_PWR_ANLG_2,
RT5663_PWR_RECMIX1 | RT5663_PWR_RECMIX2, 0 );
snd_soc_component_update_bits(component, RT5663_PWR_DIG_1,
RT5663_PWR_DAC_L1 | RT5663_PWR_DAC_R1 |
RT5663_PWR_LDO_DACREF_MASK | RT5663_PWR_ADC_L1 |
RT5663_PWR_ADC_R1, 0 );
snd_soc_component_update_bits(component, RT5663_PWR_DIG_2,
RT5663_PWR_ADC_S1F | RT5663_PWR_DAC_S1F, 0 );
snd_soc_component_update_bits(component, RT5663_DEPOP_1, 0 x0003, 0 );
snd_soc_component_update_bits(component, RT5663_DEPOP_1, 0 x0030, 0 );
snd_soc_component_write(component, RT5663_HP_LOGIC_2, 0 );
snd_soc_component_write(component, RT5663_HP_CHARGE_PUMP_1, reg91);
snd_soc_component_update_bits(component, RT5663_PWR_ANLG_1,
RT5663_PWR_VREF1_MASK | RT5663_PWR_VREF2_MASK, 0 );
snd_soc_component_write(component, RT5663_STO1_ADC_MIXER, reg26);
snd_soc_component_write(component, RT5663_ASRC_2, reg84);
for (i = 0 ; i < rt5663->pdata.impedance_sensing_num; i++) {
if (value >= rt5663->imp_table[i].imp_min &&
value <= rt5663->imp_table[i].imp_max)
break ;
}
snd_soc_component_update_bits(component, RT5663_STO_DRE_9, RT5663_DRE_GAIN_HP_MASK,
rt5663->imp_table[i].vol);
snd_soc_component_update_bits(component, RT5663_STO_DRE_10, RT5663_DRE_GAIN_HP_MASK,
rt5663->imp_table[i].vol);
if (rt5663->jack_type == SND_JACK_HEADSET) {
snd_soc_component_write(component, RT5663_MIC_DECRO_2,
rt5663->imp_table[i].dc_offset_l_manual_mic >> 16 );
snd_soc_component_write(component, RT5663_MIC_DECRO_3,
rt5663->imp_table[i].dc_offset_l_manual_mic & 0 xffff);
snd_soc_component_write(component, RT5663_MIC_DECRO_5,
rt5663->imp_table[i].dc_offset_r_manual_mic >> 16 );
snd_soc_component_write(component, RT5663_MIC_DECRO_6,
rt5663->imp_table[i].dc_offset_r_manual_mic & 0 xffff);
} else {
snd_soc_component_write(component, RT5663_MIC_DECRO_2,
rt5663->imp_table[i].dc_offset_l_manual >> 16 );
snd_soc_component_write(component, RT5663_MIC_DECRO_3,
rt5663->imp_table[i].dc_offset_l_manual & 0 xffff);
snd_soc_component_write(component, RT5663_MIC_DECRO_5,
rt5663->imp_table[i].dc_offset_r_manual >> 16 );
snd_soc_component_write(component, RT5663_MIC_DECRO_6,
rt5663->imp_table[i].dc_offset_r_manual & 0 xffff);
}
return 0 ;
}
static int rt5663_button_detect(struct snd_soc_component *component)
{
int btn_type, val;
val = snd_soc_component_read(component, RT5663_IL_CMD_5);
dev_dbg(component->dev, "%s: val=0x%x\n" , __func__, val);
btn_type = val & 0 xfff0;
snd_soc_component_write(component, RT5663_IL_CMD_5, val);
return btn_type;
}
static irqreturn_t rt5663_irq(int irq, void *data)
{
struct rt5663_priv *rt5663 = data;
dev_dbg(regmap_get_device(rt5663->regmap), "%s IRQ queue work\n" ,
__func__);
queue_delayed_work(system_wq, &rt5663->jack_detect_work,
msecs_to_jiffies(250 ));
return IRQ_HANDLED;
}
static int rt5663_set_jack_detect(struct snd_soc_component *component,
struct snd_soc_jack *hs_jack, void *data)
{
struct rt5663_priv *rt5663 = snd_soc_component_get_drvdata(component);
rt5663->hs_jack = hs_jack;
rt5663_irq(0 , rt5663);
return 0 ;
}
static bool rt5663_check_jd_status(struct snd_soc_component *component)
{
struct rt5663_priv *rt5663 = snd_soc_component_get_drvdata(component);
int val = snd_soc_component_read(component, RT5663_INT_ST_1);
dev_dbg(component->dev, "%s val=%x\n" , __func__, val);
/* JD1 */
switch (rt5663->codec_ver) {
case CODEC_VER_1:
return !(val & 0 x2000);
case CODEC_VER_0:
return !(val & 0 x1000);
default :
dev_err(component->dev, "Unknown CODEC Version\n" );
}
return false ;
}
static void rt5663_jack_detect_work(struct work_struct *work)
{
struct rt5663_priv *rt5663 =
container_of(work, struct rt5663_priv, jack_detect_work.work);
struct snd_soc_component *component = rt5663->component;
int btn_type, report = 0 ;
if (!component)
return ;
if (rt5663_check_jd_status(component)) {
/* jack in */
if (rt5663->jack_type == 0 ) {
/* jack was out, report jack type */
switch (rt5663->codec_ver) {
case CODEC_VER_1:
report = rt5663_v2_jack_detect(
rt5663->component, 1 );
break ;
case CODEC_VER_0:
report = rt5663_jack_detect(rt5663->component, 1 );
if (rt5663->pdata.impedance_sensing_num)
rt5663_impedance_sensing(rt5663->component);
break ;
default :
dev_err(component->dev, "Unknown CODEC Version\n" );
}
/* Delay the jack insert report to avoid pop noise */
msleep(30 );
} else {
/* jack is already in, report button event */
report = SND_JACK_HEADSET;
btn_type = rt5663_button_detect(rt5663->component);
/**
* rt5663 can report three kinds of button behavior,
* one click, double click and hold. However,
* currently we will report button pressed/released
* event. So all the three button behaviors are
* treated as button pressed.
*/
switch (btn_type) {
case 0 x8000:
case 0 x4000:
case 0 x2000:
report |= SND_JACK_BTN_0;
break ;
case 0 x1000:
case 0 x0800:
case 0 x0400:
report |= SND_JACK_BTN_1;
break ;
case 0 x0200:
case 0 x0100:
case 0 x0080:
report |= SND_JACK_BTN_2;
break ;
case 0 x0040:
case 0 x0020:
case 0 x0010:
report |= SND_JACK_BTN_3;
break ;
case 0 x0000: /* unpressed */
break ;
default :
btn_type = 0 ;
dev_err(rt5663->component->dev,
"Unexpected button code 0x%04x\n" ,
btn_type);
break ;
}
/* button release or spurious interrput*/
if (btn_type == 0 ) {
report = rt5663->jack_type;
cancel_delayed_work_sync(
&rt5663->jd_unplug_work);
} else {
queue_delayed_work(system_wq,
&rt5663->jd_unplug_work,
msecs_to_jiffies(500 ));
}
}
} else {
/* jack out */
switch (rt5663->codec_ver) {
case CODEC_VER_1:
report = rt5663_v2_jack_detect(rt5663->component, 0 );
break ;
case CODEC_VER_0:
report = rt5663_jack_detect(rt5663->component, 0 );
break ;
default :
dev_err(component->dev, "Unknown CODEC Version\n" );
}
}
dev_dbg(component->dev, "%s jack report: 0x%04x\n" , __func__, report);
snd_soc_jack_report(rt5663->hs_jack, report, SND_JACK_HEADSET |
SND_JACK_BTN_0 | SND_JACK_BTN_1 |
SND_JACK_BTN_2 | SND_JACK_BTN_3);
}
static void rt5663_jd_unplug_work(struct work_struct *work)
{
struct rt5663_priv *rt5663 =
container_of(work, struct rt5663_priv, jd_unplug_work.work);
struct snd_soc_component *component = rt5663->component;
if (!component)
return ;
if (!rt5663_check_jd_status(component)) {
/* jack out */
switch (rt5663->codec_ver) {
case CODEC_VER_1:
rt5663_v2_jack_detect(rt5663->component, 0 );
break ;
case CODEC_VER_0:
rt5663_jack_detect(rt5663->component, 0 );
break ;
default :
dev_err(component->dev, "Unknown CODEC Version\n" );
}
snd_soc_jack_report(rt5663->hs_jack, 0 , SND_JACK_HEADSET |
SND_JACK_BTN_0 | SND_JACK_BTN_1 |
SND_JACK_BTN_2 | SND_JACK_BTN_3);
} else {
queue_delayed_work(system_wq, &rt5663->jd_unplug_work,
msecs_to_jiffies(500 ));
}
}
static const struct snd_kcontrol_new rt5663_snd_controls[] = {
/* DAC Digital Volume */
SOC_DOUBLE_TLV("DAC Playback Volume" , RT5663_STO1_DAC_DIG_VOL,
RT5663_DAC_L1_VOL_SHIFT + 1 , RT5663_DAC_R1_VOL_SHIFT + 1 ,
87 , 0 , dac_vol_tlv),
/* ADC Digital Volume Control */
SOC_DOUBLE("ADC Capture Switch" , RT5663_STO1_ADC_DIG_VOL,
RT5663_ADC_L_MUTE_SHIFT, RT5663_ADC_R_MUTE_SHIFT, 1 , 1 ),
SOC_DOUBLE_TLV("ADC Capture Volume" , RT5663_STO1_ADC_DIG_VOL,
RT5663_ADC_L_VOL_SHIFT + 1 , RT5663_ADC_R_VOL_SHIFT + 1 ,
63 , 0 , adc_vol_tlv),
};
static const struct snd_kcontrol_new rt5663_v2_specific_controls[] = {
/* Headphone Output Volume */
SOC_DOUBLE_R_TLV("Headphone Playback Volume" , RT5663_HP_LCH_DRE,
RT5663_HP_RCH_DRE, RT5663_GAIN_HP_SHIFT, 15 , 1 ,
rt5663_v2_hp_vol_tlv),
/* Mic Boost Volume */
SOC_SINGLE_TLV("IN1 Capture Volume" , RT5663_AEC_BST,
RT5663_GAIN_CBJ_SHIFT, 8 , 0 , in_bst_tlv),
};
static const struct snd_kcontrol_new rt5663_specific_controls[] = {
/* Mic Boost Volume*/
SOC_SINGLE_TLV("IN1 Capture Volume" , RT5663_CBJ_2,
RT5663_GAIN_BST1_SHIFT, 8 , 0 , in_bst_tlv),
/* Data Swap for Slot0/1 in ADCDAT1 */
SOC_ENUM("IF1 ADC Data Swap" , rt5663_if1_adc_enum),
};
static const struct snd_kcontrol_new rt5663_hpvol_controls[] = {
/* Headphone Output Volume */
SOC_DOUBLE_R_TLV("Headphone Playback Volume" , RT5663_STO_DRE_9,
RT5663_STO_DRE_10, RT5663_DRE_GAIN_HP_SHIFT, 23 , 1 ,
rt5663_hp_vol_tlv),
};
static int rt5663_is_sys_clk_from_pll(struct snd_soc_dapm_widget *w,
struct snd_soc_dapm_widget *sink)
{
unsigned int val;
struct snd_soc_component *component = snd_soc_dapm_to_component(w->dapm);
val = snd_soc_component_read(component, RT5663_GLB_CLK);
val &= RT5663_SCLK_SRC_MASK;
if (val == RT5663_SCLK_SRC_PLL1)
return 1 ;
else
return 0 ;
}
static int rt5663_is_using_asrc(struct snd_soc_dapm_widget *w,
struct snd_soc_dapm_widget *sink)
{
unsigned int reg, shift, val;
struct snd_soc_component *component = snd_soc_dapm_to_component(w->dapm);
struct rt5663_priv *rt5663 = snd_soc_component_get_drvdata(component);
if (rt5663->codec_ver == CODEC_VER_1) {
switch (w->shift) {
case RT5663_ADC_STO1_ASRC_SHIFT:
reg = RT5663_ASRC_3;
shift = RT5663_V2_AD_STO1_TRACK_SHIFT;
break ;
case RT5663_DAC_STO1_ASRC_SHIFT:
reg = RT5663_ASRC_2;
shift = RT5663_DA_STO1_TRACK_SHIFT;
break ;
default :
return 0 ;
}
} else {
switch (w->shift) {
case RT5663_ADC_STO1_ASRC_SHIFT:
reg = RT5663_ASRC_2;
shift = RT5663_AD_STO1_TRACK_SHIFT;
break ;
case RT5663_DAC_STO1_ASRC_SHIFT:
reg = RT5663_ASRC_2;
shift = RT5663_DA_STO1_TRACK_SHIFT;
break ;
default :
return 0 ;
}
}
val = (snd_soc_component_read(component, reg) >> shift) & 0 x7;
if (val)
return 1 ;
return 0 ;
}
static int rt5663_i2s_use_asrc(struct snd_soc_dapm_widget *source,
struct snd_soc_dapm_widget *sink)
{
struct snd_soc_component *component = snd_soc_dapm_to_component(source->dapm);
struct rt5663_priv *rt5663 = snd_soc_component_get_drvdata(component);
int da_asrc_en, ad_asrc_en;
da_asrc_en = (snd_soc_component_read(component, RT5663_ASRC_2) &
RT5663_DA_STO1_TRACK_MASK) ? 1 : 0 ;
switch (rt5663->codec_ver) {
case CODEC_VER_1:
ad_asrc_en = (snd_soc_component_read(component, RT5663_ASRC_3) &
RT5663_V2_AD_STO1_TRACK_MASK) ? 1 : 0 ;
break ;
case CODEC_VER_0:
ad_asrc_en = (snd_soc_component_read(component, RT5663_ASRC_2) &
RT5663_AD_STO1_TRACK_MASK) ? 1 : 0 ;
break ;
default :
dev_err(component->dev, "Unknown CODEC Version\n" );
return 1 ;
}
if (da_asrc_en || ad_asrc_en)
if (rt5663->sysclk > rt5663->lrck * 384 )
return 1 ;
dev_err(component->dev, "sysclk < 384 x fs, disable i2s asrc\n" );
return 0 ;
}
/**
* rt5663_sel_asrc_clk_src - select ASRC clock source for a set of filters
* @component: SoC audio component device.
* @filter_mask: mask of filters.
* @clk_src: clock source
*
* The ASRC function is for asynchronous MCLK and LRCK. Also, since RT5663 can
* only support standard 32fs or 64fs i2s format, ASRC should be enabled to
* support special i2s clock format such as Intel's 100fs(100 * sampling rate).
* ASRC function will track i2s clock and generate a corresponding system clock
* for codec. This function provides an API to select the clock source for a
* set of filters specified by the mask. And the codec driver will turn on ASRC
* for these filters if ASRC is selected as their clock source.
*/
int rt5663_sel_asrc_clk_src(struct snd_soc_component *component,
unsigned int filter_mask, unsigned int clk_src)
{
struct rt5663_priv *rt5663 = snd_soc_component_get_drvdata(component);
unsigned int asrc2_mask = 0 ;
unsigned int asrc2_value = 0 ;
unsigned int asrc3_mask = 0 ;
unsigned int asrc3_value = 0 ;
switch (clk_src) {
case RT5663_CLK_SEL_SYS:
case RT5663_CLK_SEL_I2S1_ASRC:
break ;
default :
return -EINVAL;
}
if (filter_mask & RT5663_DA_STEREO_FILTER) {
asrc2_mask |= RT5663_DA_STO1_TRACK_MASK;
asrc2_value |= clk_src << RT5663_DA_STO1_TRACK_SHIFT;
}
if (filter_mask & RT5663_AD_STEREO_FILTER) {
switch (rt5663->codec_ver) {
case CODEC_VER_1:
asrc3_mask |= RT5663_V2_AD_STO1_TRACK_MASK;
asrc3_value |= clk_src << RT5663_V2_AD_STO1_TRACK_SHIFT;
break ;
case CODEC_VER_0:
asrc2_mask |= RT5663_AD_STO1_TRACK_MASK;
asrc2_value |= clk_src << RT5663_AD_STO1_TRACK_SHIFT;
break ;
default :
dev_err(component->dev, "Unknown CODEC Version\n" );
}
}
if (asrc2_mask)
snd_soc_component_update_bits(component, RT5663_ASRC_2, asrc2_mask,
asrc2_value);
if (asrc3_mask)
snd_soc_component_update_bits(component, RT5663_ASRC_3, asrc3_mask,
asrc3_value);
return 0 ;
}
EXPORT_SYMBOL_GPL(rt5663_sel_asrc_clk_src);
/* Analog Mixer */
static const struct snd_kcontrol_new rt5663_recmix1l[] = {
SOC_DAPM_SINGLE("BST2 Switch" , RT5663_RECMIX1L,
RT5663_RECMIX1L_BST2_SHIFT, 1 , 1 ),
SOC_DAPM_SINGLE("BST1 CBJ Switch" , RT5663_RECMIX1L,
RT5663_RECMIX1L_BST1_CBJ_SHIFT, 1 , 1 ),
};
static const struct snd_kcontrol_new rt5663_recmix1r[] = {
SOC_DAPM_SINGLE("BST2 Switch" , RT5663_RECMIX1R,
RT5663_RECMIX1R_BST2_SHIFT, 1 , 1 ),
};
/* Digital Mixer */
static const struct snd_kcontrol_new rt5663_sto1_adc_l_mix[] = {
SOC_DAPM_SINGLE("ADC1 Switch" , RT5663_STO1_ADC_MIXER,
RT5663_M_STO1_ADC_L1_SHIFT, 1 , 1 ),
SOC_DAPM_SINGLE("ADC2 Switch" , RT5663_STO1_ADC_MIXER,
RT5663_M_STO1_ADC_L2_SHIFT, 1 , 1 ),
};
static const struct snd_kcontrol_new rt5663_sto1_adc_r_mix[] = {
SOC_DAPM_SINGLE("ADC1 Switch" , RT5663_STO1_ADC_MIXER,
RT5663_M_STO1_ADC_R1_SHIFT, 1 , 1 ),
SOC_DAPM_SINGLE("ADC2 Switch" , RT5663_STO1_ADC_MIXER,
RT5663_M_STO1_ADC_R2_SHIFT, 1 , 1 ),
};
static const struct snd_kcontrol_new rt5663_adda_l_mix[] = {
SOC_DAPM_SINGLE("ADC L Switch" , RT5663_AD_DA_MIXER,
RT5663_M_ADCMIX_L_SHIFT, 1 , 1 ),
SOC_DAPM_SINGLE("DAC L Switch" , RT5663_AD_DA_MIXER,
RT5663_M_DAC1_L_SHIFT, 1 , 1 ),
};
static const struct snd_kcontrol_new rt5663_adda_r_mix[] = {
SOC_DAPM_SINGLE("ADC R Switch" , RT5663_AD_DA_MIXER,
RT5663_M_ADCMIX_R_SHIFT, 1 , 1 ),
SOC_DAPM_SINGLE("DAC R Switch" , RT5663_AD_DA_MIXER,
RT5663_M_DAC1_R_SHIFT, 1 , 1 ),
};
static const struct snd_kcontrol_new rt5663_sto1_dac_l_mix[] = {
SOC_DAPM_SINGLE("DAC L Switch" , RT5663_STO_DAC_MIXER,
RT5663_M_DAC_L1_STO_L_SHIFT, 1 , 1 ),
};
static const struct snd_kcontrol_new rt5663_sto1_dac_r_mix[] = {
SOC_DAPM_SINGLE("DAC R Switch" , RT5663_STO_DAC_MIXER,
RT5663_M_DAC_R1_STO_R_SHIFT, 1 , 1 ),
};
/* Out Switch */
static const struct snd_kcontrol_new rt5663_hpo_switch =
SOC_DAPM_SINGLE_AUTODISABLE("Switch" , RT5663_HP_AMP_2,
RT5663_EN_DAC_HPO_SHIFT, 1 , 0 );
/* Stereo ADC source */
static const char * const rt5663_sto1_adc_src[] = {
"ADC L" , "ADC R"
};
static SOC_ENUM_SINGLE_DECL(rt5663_sto1_adcl_enum, RT5663_STO1_ADC_MIXER,
RT5663_STO1_ADC_L_SRC_SHIFT, rt5663_sto1_adc_src);
static const struct snd_kcontrol_new rt5663_sto1_adcl_mux =
SOC_DAPM_ENUM("STO1 ADC L Mux" , rt5663_sto1_adcl_enum);
static SOC_ENUM_SINGLE_DECL(rt5663_sto1_adcr_enum, RT5663_STO1_ADC_MIXER,
RT5663_STO1_ADC_R_SRC_SHIFT, rt5663_sto1_adc_src);
static const struct snd_kcontrol_new rt5663_sto1_adcr_mux =
SOC_DAPM_ENUM("STO1 ADC R Mux" , rt5663_sto1_adcr_enum);
/* RT5663: Analog DACL1 input source */
static const char * const rt5663_alg_dacl_src[] = {
"DAC L" , "STO DAC MIXL"
};
static SOC_ENUM_SINGLE_DECL(rt5663_alg_dacl_enum, RT5663_BYPASS_STO_DAC,
RT5663_DACL1_SRC_SHIFT, rt5663_alg_dacl_src);
static const struct snd_kcontrol_new rt5663_alg_dacl_mux =
SOC_DAPM_ENUM("DAC L Mux" , rt5663_alg_dacl_enum);
/* RT5663: Analog DACR1 input source */
static const char * const rt5663_alg_dacr_src[] = {
"DAC R" , "STO DAC MIXR"
};
static SOC_ENUM_SINGLE_DECL(rt5663_alg_dacr_enum, RT5663_BYPASS_STO_DAC,
RT5663_DACR1_SRC_SHIFT, rt5663_alg_dacr_src);
static const struct snd_kcontrol_new rt5663_alg_dacr_mux =
SOC_DAPM_ENUM("DAC R Mux" , rt5663_alg_dacr_enum);
static int rt5663_hp_event(struct snd_soc_dapm_widget *w,
struct snd_kcontrol *kcontrol, int event)
{
struct snd_soc_component *component = snd_soc_dapm_to_component(w->dapm);
struct rt5663_priv *rt5663 = snd_soc_component_get_drvdata(component);
switch (event) {
case SND_SOC_DAPM_POST_PMU:
if (rt5663->codec_ver == CODEC_VER_1) {
snd_soc_component_update_bits(component, RT5663_HP_CHARGE_PUMP_1,
RT5663_SEL_PM_HP_SHIFT, RT5663_SEL_PM_HP_HIGH);
snd_soc_component_update_bits(component, RT5663_HP_LOGIC_2,
RT5663_HP_SIG_SRC1_MASK,
RT5663_HP_SIG_SRC1_SILENCE);
} else {
snd_soc_component_update_bits(component,
RT5663_DACREF_LDO, 0 x3e0e, 0 x3a0a);
snd_soc_component_write(component, RT5663_DEPOP_2, 0 x3003);
snd_soc_component_update_bits(component, RT5663_HP_CHARGE_PUMP_1,
RT5663_OVCD_HP_MASK, RT5663_OVCD_HP_DIS);
snd_soc_component_write(component, RT5663_HP_CHARGE_PUMP_2, 0 x1371);
snd_soc_component_write(component, RT5663_HP_BIAS, 0 xabba);
snd_soc_component_write(component, RT5663_CHARGE_PUMP_1, 0 x2224);
snd_soc_component_write(component, RT5663_ANA_BIAS_CUR_1, 0 x7766);
snd_soc_component_write(component, RT5663_HP_BIAS, 0 xafaa);
snd_soc_component_write(component, RT5663_CHARGE_PUMP_2, 0 x7777);
snd_soc_component_update_bits(component, RT5663_STO_DRE_1, 0 x8000,
0 x8000);
snd_soc_component_update_bits(component, RT5663_DEPOP_1, 0 x3000,
0 x3000);
snd_soc_component_update_bits(component,
RT5663_DIG_VOL_ZCD, 0 x00c0, 0 x0080);
}
break ;
case SND_SOC_DAPM_PRE_PMD:
if (rt5663->codec_ver == CODEC_VER_1) {
snd_soc_component_update_bits(component, RT5663_HP_LOGIC_2,
RT5663_HP_SIG_SRC1_MASK,
RT5663_HP_SIG_SRC1_REG);
} else {
snd_soc_component_update_bits(component, RT5663_DEPOP_1, 0 x3000, 0 x0);
snd_soc_component_update_bits(component, RT5663_HP_CHARGE_PUMP_1,
RT5663_OVCD_HP_MASK, RT5663_OVCD_HP_EN);
snd_soc_component_update_bits(component,
RT5663_DACREF_LDO, 0 x3e0e, 0 );
snd_soc_component_update_bits(component,
RT5663_DIG_VOL_ZCD, 0 x00c0, 0 );
}
break ;
default :
return 0 ;
}
return 0 ;
}
static int rt5663_charge_pump_event(struct snd_soc_dapm_widget *w,
struct snd_kcontrol *kcontrol, int event)
{
struct snd_soc_component *component = snd_soc_dapm_to_component(w->dapm);
struct rt5663_priv *rt5663 = snd_soc_component_get_drvdata(component);
switch (event) {
case SND_SOC_DAPM_PRE_PMU:
if (rt5663->codec_ver == CODEC_VER_0) {
snd_soc_component_update_bits(component, RT5663_DEPOP_1, 0 x0030,
0 x0030);
snd_soc_component_update_bits(component, RT5663_DEPOP_1, 0 x0003,
0 x0003);
}
break ;
case SND_SOC_DAPM_POST_PMD:
if (rt5663->codec_ver == CODEC_VER_0) {
snd_soc_component_update_bits(component, RT5663_DEPOP_1, 0 x0003, 0 );
snd_soc_component_update_bits(component, RT5663_DEPOP_1, 0 x0030, 0 );
}
break ;
default :
return 0 ;
}
return 0 ;
}
static int rt5663_bst2_power(struct snd_soc_dapm_widget *w,
struct snd_kcontrol *kcontrol, int event)
{
struct snd_soc_component *component = snd_soc_dapm_to_component(w->dapm);
switch (event) {
case SND_SOC_DAPM_POST_PMU:
snd_soc_component_update_bits(component, RT5663_PWR_ANLG_2,
RT5663_PWR_BST2_MASK | RT5663_PWR_BST2_OP_MASK,
RT5663_PWR_BST2 | RT5663_PWR_BST2_OP);
break ;
case SND_SOC_DAPM_PRE_PMD:
snd_soc_component_update_bits(component, RT5663_PWR_ANLG_2,
RT5663_PWR_BST2_MASK | RT5663_PWR_BST2_OP_MASK, 0 );
break ;
default :
return 0 ;
}
return 0 ;
}
static int rt5663_pre_div_power(struct snd_soc_dapm_widget *w,
struct snd_kcontrol *kcontrol, int event)
{
struct snd_soc_component *component = snd_soc_dapm_to_component(w->dapm);
switch (event) {
case SND_SOC_DAPM_POST_PMU:
snd_soc_component_write(component, RT5663_PRE_DIV_GATING_1, 0 xff00);
snd_soc_component_write(component, RT5663_PRE_DIV_GATING_2, 0 xfffc);
break ;
case SND_SOC_DAPM_PRE_PMD:
snd_soc_component_write(component, RT5663_PRE_DIV_GATING_1, 0 x0000);
snd_soc_component_write(component, RT5663_PRE_DIV_GATING_2, 0 x0000);
break ;
default :
return 0 ;
}
return 0 ;
}
static const struct snd_soc_dapm_widget rt5663_dapm_widgets[] = {
SND_SOC_DAPM_SUPPLY("PLL" , RT5663_PWR_ANLG_3, RT5663_PWR_PLL_SHIFT, 0 ,
NULL, 0 ),
/* micbias */
SND_SOC_DAPM_MICBIAS("MICBIAS1" , RT5663_PWR_ANLG_2,
RT5663_PWR_MB1_SHIFT, 0 ),
SND_SOC_DAPM_MICBIAS("MICBIAS2" , RT5663_PWR_ANLG_2,
RT5663_PWR_MB2_SHIFT, 0 ),
/* Input Lines */
SND_SOC_DAPM_INPUT("IN1P" ),
SND_SOC_DAPM_INPUT("IN1N" ),
/* REC Mixer Power */
SND_SOC_DAPM_SUPPLY("RECMIX1L Power" , RT5663_PWR_ANLG_2,
RT5663_PWR_RECMIX1_SHIFT, 0 , NULL, 0 ),
/* ADCs */
SND_SOC_DAPM_ADC("ADC L" , NULL, SND_SOC_NOPM, 0 , 0 ),
SND_SOC_DAPM_SUPPLY("ADC L Power" , RT5663_PWR_DIG_1,
RT5663_PWR_ADC_L1_SHIFT, 0 , NULL, 0 ),
SND_SOC_DAPM_SUPPLY("ADC Clock" , RT5663_CHOP_ADC,
RT5663_CKGEN_ADCC_SHIFT, 0 , NULL, 0 ),
/* ADC Mixer */
SND_SOC_DAPM_MIXER("STO1 ADC MIXL" , SND_SOC_NOPM,
0 , 0 , rt5663_sto1_adc_l_mix,
ARRAY_SIZE(rt5663_sto1_adc_l_mix)),
/* ADC Filter Power */
SND_SOC_DAPM_SUPPLY("STO1 ADC Filter" , RT5663_PWR_DIG_2,
RT5663_PWR_ADC_S1F_SHIFT, 0 , NULL, 0 ),
/* Digital Interface */
SND_SOC_DAPM_SUPPLY("I2S" , RT5663_PWR_DIG_1, RT5663_PWR_I2S1_SHIFT, 0 ,
NULL, 0 ),
SND_SOC_DAPM_PGA("IF DAC" , SND_SOC_NOPM, 0 , 0 , NULL, 0 ),
SND_SOC_DAPM_PGA("IF1 DAC1 L" , SND_SOC_NOPM, 0 , 0 , NULL, 0 ),
SND_SOC_DAPM_PGA("IF1 DAC1 R" , SND_SOC_NOPM, 0 , 0 , NULL, 0 ),
SND_SOC_DAPM_PGA("IF1 ADC1" , SND_SOC_NOPM, 0 , 0 , NULL, 0 ),
SND_SOC_DAPM_PGA("IF ADC" , SND_SOC_NOPM, 0 , 0 , NULL, 0 ),
/* Audio Interface */
SND_SOC_DAPM_AIF_IN("AIFRX" , "AIF Playback" , 0 , SND_SOC_NOPM, 0 , 0 ),
SND_SOC_DAPM_AIF_OUT("AIFTX" , "AIF Capture" , 0 , SND_SOC_NOPM, 0 , 0 ),
/* DAC mixer before sound effect */
SND_SOC_DAPM_MIXER("ADDA MIXL" , SND_SOC_NOPM, 0 , 0 , rt5663_adda_l_mix,
ARRAY_SIZE(rt5663_adda_l_mix)),
SND_SOC_DAPM_MIXER("ADDA MIXR" , SND_SOC_NOPM, 0 , 0 , rt5663_adda_r_mix,
ARRAY_SIZE(rt5663_adda_r_mix)),
SND_SOC_DAPM_PGA("DAC L1" , SND_SOC_NOPM, 0 , 0 , NULL, 0 ),
SND_SOC_DAPM_PGA("DAC R1" , SND_SOC_NOPM, 0 , 0 , NULL, 0 ),
/* DAC Mixer */
SND_SOC_DAPM_SUPPLY("STO1 DAC Filter" , RT5663_PWR_DIG_2,
RT5663_PWR_DAC_S1F_SHIFT, 0 , NULL, 0 ),
SND_SOC_DAPM_MIXER("STO1 DAC MIXL" , SND_SOC_NOPM, 0 , 0 ,
rt5663_sto1_dac_l_mix, ARRAY_SIZE(rt5663_sto1_dac_l_mix)),
SND_SOC_DAPM_MIXER("STO1 DAC MIXR" , SND_SOC_NOPM, 0 , 0 ,
rt5663_sto1_dac_r_mix, ARRAY_SIZE(rt5663_sto1_dac_r_mix)),
/* DACs */
SND_SOC_DAPM_SUPPLY("STO1 DAC L Power" , RT5663_PWR_DIG_1,
RT5663_PWR_DAC_L1_SHIFT, 0 , NULL, 0 ),
SND_SOC_DAPM_SUPPLY("STO1 DAC R Power" , RT5663_PWR_DIG_1,
RT5663_PWR_DAC_R1_SHIFT, 0 , NULL, 0 ),
SND_SOC_DAPM_DAC("DAC L" , NULL, SND_SOC_NOPM, 0 , 0 ),
SND_SOC_DAPM_DAC("DAC R" , NULL, SND_SOC_NOPM, 0 , 0 ),
/* Headphone*/
SND_SOC_DAPM_SUPPLY("HP Charge Pump" , SND_SOC_NOPM, 0 , 0 ,
rt5663_charge_pump_event, SND_SOC_DAPM_PRE_PMU |
SND_SOC_DAPM_POST_PMD),
SND_SOC_DAPM_PGA_S("HP Amp" , 1 , SND_SOC_NOPM, 0 , 0 , rt5663_hp_event,
SND_SOC_DAPM_PRE_PMD | SND_SOC_DAPM_POST_PMU),
/* Output Lines */
SND_SOC_DAPM_OUTPUT("HPOL" ),
SND_SOC_DAPM_OUTPUT("HPOR" ),
};
static const struct snd_soc_dapm_widget rt5663_v2_specific_dapm_widgets[] = {
SND_SOC_DAPM_SUPPLY("LDO2" , RT5663_PWR_ANLG_3,
RT5663_PWR_LDO2_SHIFT, 0 , NULL, 0 ),
SND_SOC_DAPM_SUPPLY("Mic Det Power" , RT5663_PWR_VOL,
RT5663_V2_PWR_MIC_DET_SHIFT, 0 , NULL, 0 ),
SND_SOC_DAPM_SUPPLY("LDO DAC" , RT5663_PWR_DIG_1,
RT5663_PWR_LDO_DACREF_SHIFT, 0 , NULL, 0 ),
/* ASRC */
SND_SOC_DAPM_SUPPLY("I2S ASRC" , RT5663_ASRC_1,
RT5663_I2S1_ASRC_SHIFT, 0 , NULL, 0 ),
SND_SOC_DAPM_SUPPLY("DAC ASRC" , RT5663_ASRC_1,
RT5663_DAC_STO1_ASRC_SHIFT, 0 , NULL, 0 ),
SND_SOC_DAPM_SUPPLY("ADC ASRC" , RT5663_ASRC_1,
RT5663_ADC_STO1_ASRC_SHIFT, 0 , NULL, 0 ),
/* Input Lines */
SND_SOC_DAPM_INPUT("IN2P" ),
SND_SOC_DAPM_INPUT("IN2N" ),
/* Boost */
SND_SOC_DAPM_PGA("BST1 CBJ" , SND_SOC_NOPM, 0 , 0 , NULL, 0 ),
SND_SOC_DAPM_SUPPLY("CBJ Power" , RT5663_PWR_ANLG_3,
RT5663_PWR_CBJ_SHIFT, 0 , NULL, 0 ),
SND_SOC_DAPM_PGA("BST2" , SND_SOC_NOPM, 0 , 0 , NULL, 0 ),
SND_SOC_DAPM_SUPPLY("BST2 Power" , SND_SOC_NOPM, 0 , 0 ,
rt5663_bst2_power, SND_SOC_DAPM_PRE_PMD |
SND_SOC_DAPM_POST_PMU),
/* REC Mixer */
SND_SOC_DAPM_MIXER("RECMIX1L" , SND_SOC_NOPM, 0 , 0 , rt5663_recmix1l,
ARRAY_SIZE(rt5663_recmix1l)),
SND_SOC_DAPM_MIXER("RECMIX1R" , SND_SOC_NOPM, 0 , 0 , rt5663_recmix1r,
ARRAY_SIZE(rt5663_recmix1r)),
SND_SOC_DAPM_SUPPLY("RECMIX1R Power" , RT5663_PWR_ANLG_2,
RT5663_PWR_RECMIX2_SHIFT, 0 , NULL, 0 ),
/* ADC */
SND_SOC_DAPM_ADC("ADC R" , NULL, SND_SOC_NOPM, 0 , 0 ),
SND_SOC_DAPM_SUPPLY("ADC R Power" , RT5663_PWR_DIG_1,
RT5663_PWR_ADC_R1_SHIFT, 0 , NULL, 0 ),
/* ADC Mux */
SND_SOC_DAPM_PGA("STO1 ADC L1" , RT5663_STO1_ADC_MIXER,
RT5663_STO1_ADC_L1_SRC_SHIFT, 0 , NULL, 0 ),
SND_SOC_DAPM_PGA("STO1 ADC R1" , RT5663_STO1_ADC_MIXER,
RT5663_STO1_ADC_R1_SRC_SHIFT, 0 , NULL, 0 ),
SND_SOC_DAPM_PGA("STO1 ADC L2" , RT5663_STO1_ADC_MIXER,
RT5663_STO1_ADC_L2_SRC_SHIFT, 1 , NULL, 0 ),
SND_SOC_DAPM_PGA("STO1 ADC R2" , RT5663_STO1_ADC_MIXER,
RT5663_STO1_ADC_R2_SRC_SHIFT, 1 , NULL, 0 ),
SND_SOC_DAPM_MUX("STO1 ADC L Mux" , SND_SOC_NOPM, 0 , 0 ,
&rt5663_sto1_adcl_mux),
SND_SOC_DAPM_MUX("STO1 ADC R Mux" , SND_SOC_NOPM, 0 , 0 ,
&rt5663_sto1_adcr_mux),
/* ADC Mix */
SND_SOC_DAPM_MIXER("STO1 ADC MIXR" , SND_SOC_NOPM, 0 , 0 ,
rt5663_sto1_adc_r_mix, ARRAY_SIZE(rt5663_sto1_adc_r_mix)),
/* Analog DAC Clock */
SND_SOC_DAPM_SUPPLY("DAC Clock" , RT5663_CHOP_DAC_L,
RT5663_CKGEN_DAC1_SHIFT, 0 , NULL, 0 ),
/* Headphone out */
SND_SOC_DAPM_SWITCH("HPO Playback" , SND_SOC_NOPM, 0 , 0 ,
&rt5663_hpo_switch),
};
static const struct snd_soc_dapm_widget rt5663_specific_dapm_widgets[] = {
/* System Clock Pre Divider Gating */
SND_SOC_DAPM_SUPPLY("Pre Div Power" , SND_SOC_NOPM, 0 , 0 ,
rt5663_pre_div_power, SND_SOC_DAPM_POST_PMU |
SND_SOC_DAPM_PRE_PMD),
/* LDO */
SND_SOC_DAPM_SUPPLY("LDO ADC" , RT5663_PWR_DIG_1,
RT5663_PWR_LDO_DACREF_SHIFT, 0 , NULL, 0 ),
/* ASRC */
SND_SOC_DAPM_SUPPLY("I2S ASRC" , RT5663_ASRC_1,
RT5663_I2S1_ASRC_SHIFT, 0 , NULL, 0 ),
SND_SOC_DAPM_SUPPLY("DAC ASRC" , RT5663_ASRC_1,
RT5663_DAC_STO1_ASRC_SHIFT, 0 , NULL, 0 ),
SND_SOC_DAPM_SUPPLY("ADC ASRC" , RT5663_ASRC_1,
RT5663_ADC_STO1_ASRC_SHIFT, 0 , NULL, 0 ),
/* Boost */
SND_SOC_DAPM_PGA("BST1" , SND_SOC_NOPM, 0 , 0 , NULL, 0 ),
/* STO ADC */
SND_SOC_DAPM_PGA("STO1 ADC L1" , SND_SOC_NOPM, 0 , 0 , NULL, 0 ),
SND_SOC_DAPM_PGA("STO1 ADC L2" , SND_SOC_NOPM, 0 , 0 , NULL, 0 ),
/* Analog DAC source */
SND_SOC_DAPM_MUX("DAC L Mux" , SND_SOC_NOPM, 0 , 0 , &rt5663_alg_dacl_mux),
SND_SOC_DAPM_MUX("DAC R Mux" , SND_SOC_NOPM, 0 , 0 , &rt5663_alg_dacr_mux),
};
static const struct snd_soc_dapm_route rt5663_dapm_routes[] = {
/* PLL */
{ "I2S" , NULL, "PLL" , rt5663_is_sys_clk_from_pll },
/* ASRC */
{ "STO1 ADC Filter" , NULL, "ADC ASRC" , rt5663_is_using_asrc },
{ "STO1 DAC Filter" , NULL, "DAC ASRC" , rt5663_is_using_asrc },
{ "I2S" , NULL, "I2S ASRC" , rt5663_i2s_use_asrc },
{ "ADC L" , NULL, "ADC L Power" },
{ "ADC L" , NULL, "ADC Clock" },
{ "STO1 ADC L2" , NULL, "STO1 DAC MIXL" },
{ "STO1 ADC MIXL" , "ADC1 Switch" , "STO1 ADC L1" },
{ "STO1 ADC MIXL" , "ADC2 Switch" , "STO1 ADC L2" },
{ "STO1 ADC MIXL" , NULL, "STO1 ADC Filter" },
{ "IF1 ADC1" , NULL, "STO1 ADC MIXL" },
{ "IF ADC" , NULL, "IF1 ADC1" },
{ "AIFTX" , NULL, "IF ADC" },
{ "AIFTX" , NULL, "I2S" },
{ "AIFRX" , NULL, "I2S" },
{ "IF DAC" , NULL, "AIFRX" },
{ "IF1 DAC1 L" , NULL, "IF DAC" },
{ "IF1 DAC1 R" , NULL, "IF DAC" },
{ "ADDA MIXL" , "ADC L Switch" , "STO1 ADC MIXL" },
{ "ADDA MIXL" , "DAC L Switch" , "IF1 DAC1 L" },
{ "ADDA MIXL" , NULL, "STO1 DAC Filter" },
{ "ADDA MIXL" , NULL, "STO1 DAC L Power" },
{ "ADDA MIXR" , "DAC R Switch" , "IF1 DAC1 R" },
{ "ADDA MIXR" , NULL, "STO1 DAC Filter" },
{ "ADDA MIXR" , NULL, "STO1 DAC R Power" },
{ "DAC L1" , NULL, "ADDA MIXL" },
{ "DAC R1" , NULL, "ADDA MIXR" },
{ "STO1 DAC MIXL" , "DAC L Switch" , "DAC L1" },
{ "STO1 DAC MIXL" , NULL, "STO1 DAC L Power" },
{ "STO1 DAC MIXL" , NULL, "STO1 DAC Filter" },
{ "STO1 DAC MIXR" , "DAC R Switch" , "DAC R1" },
{ "STO1 DAC MIXR" , NULL, "STO1 DAC R Power" },
{ "STO1 DAC MIXR" , NULL, "STO1 DAC Filter" },
{ "HP Amp" , NULL, "HP Charge Pump" },
{ "HP Amp" , NULL, "DAC L" },
{ "HP Amp" , NULL, "DAC R" },
};
static const struct snd_soc_dapm_route rt5663_v2_specific_dapm_routes[] = {
{ "MICBIAS1" , NULL, "LDO2" },
{ "MICBIAS2" , NULL, "LDO2" },
{ "BST1 CBJ" , NULL, "IN1P" },
{ "BST1 CBJ" , NULL, "IN1N" },
{ "BST1 CBJ" , NULL, "CBJ Power" },
{ "BST2" , NULL, "IN2P" },
{ "BST2" , NULL, "IN2N" },
{ "BST2" , NULL, "BST2 Power" },
{ "RECMIX1L" , "BST2 Switch" , "BST2" },
{ "RECMIX1L" , "BST1 CBJ Switch" , "BST1 CBJ" },
{ "RECMIX1L" , NULL, "RECMIX1L Power" },
{ "RECMIX1R" , "BST2 Switch" , "BST2" },
{ "RECMIX1R" , NULL, "RECMIX1R Power" },
{ "ADC L" , NULL, "RECMIX1L" },
{ "ADC R" , NULL, "RECMIX1R" },
{ "ADC R" , NULL, "ADC R Power" },
{ "ADC R" , NULL, "ADC Clock" },
{ "STO1 ADC L Mux" , "ADC L" , "ADC L" },
{ "STO1 ADC L Mux" , "ADC R" , "ADC R" },
{ "STO1 ADC L1" , NULL, "STO1 ADC L Mux" },
{ "STO1 ADC R Mux" , "ADC L" , "ADC L" },
{ "STO1 ADC R Mux" , "ADC R" , "ADC R" },
{ "STO1 ADC R1" , NULL, "STO1 ADC R Mux" },
{ "STO1 ADC R2" , NULL, "STO1 DAC MIXR" },
{ "STO1 ADC MIXR" , "ADC1 Switch" , "STO1 ADC R1" },
{ "STO1 ADC MIXR" , "ADC2 Switch" , "STO1 ADC R2" },
{ "STO1 ADC MIXR" , NULL, "STO1 ADC Filter" },
{ "IF1 ADC1" , NULL, "STO1 ADC MIXR" },
{ "ADDA MIXR" , "ADC R Switch" , "STO1 ADC MIXR" },
{ "DAC L" , NULL, "STO1 DAC MIXL" },
{ "DAC L" , NULL, "LDO DAC" },
{ "DAC L" , NULL, "DAC Clock" },
{ "DAC R" , NULL, "STO1 DAC MIXR" },
{ "DAC R" , NULL, "LDO DAC" },
{ "DAC R" , NULL, "DAC Clock" },
{ "HPO Playback" , "Switch" , "HP Amp" },
{ "HPOL" , NULL, "HPO Playback" },
{ "HPOR" , NULL, "HPO Playback" },
};
static const struct snd_soc_dapm_route rt5663_specific_dapm_routes[] = {
{ "I2S" , NULL, "Pre Div Power" },
{ "BST1" , NULL, "IN1P" },
{ "BST1" , NULL, "IN1N" },
{ "BST1" , NULL, "RECMIX1L Power" },
{ "ADC L" , NULL, "BST1" },
{ "STO1 ADC L1" , NULL, "ADC L" },
{ "DAC L Mux" , "DAC L" , "DAC L1" },
{ "DAC L Mux" , "STO DAC MIXL" , "STO1 DAC MIXL" },
{ "DAC R Mux" , "DAC R" , "DAC R1" },
{ "DAC R Mux" , "STO DAC MIXR" , "STO1 DAC MIXR" },
{ "DAC L" , NULL, "DAC L Mux" },
{ "DAC R" , NULL, "DAC R Mux" },
{ "HPOL" , NULL, "HP Amp" },
{ "HPOR" , NULL, "HP Amp" },
};
static int rt5663_hw_params(struct snd_pcm_substream *substream,
struct snd_pcm_hw_params *params, struct snd_soc_dai *dai)
{
struct snd_soc_component *component = dai->component;
struct rt5663_priv *rt5663 = snd_soc_component_get_drvdata(component);
unsigned int val_len = 0 ;
int pre_div;
rt5663->lrck = params_rate(params);
dev_dbg(dai->dev, "bclk is %dHz and sysclk is %dHz\n" ,
rt5663->lrck, rt5663->sysclk);
pre_div = rl6231_get_clk_info(rt5663->sysclk, rt5663->lrck);
if (pre_div < 0 ) {
dev_err(component->dev, "Unsupported clock setting %d for DAI %d\n" ,
rt5663->lrck, dai->id);
return -EINVAL;
}
dev_dbg(dai->dev, "pre_div is %d for iis %d\n" , pre_div, dai->id);
switch (params_width(params)) {
case 8 :
val_len = RT5663_I2S_DL_8;
break ;
case 16 :
val_len = RT5663_I2S_DL_16;
break ;
case 20 :
val_len = RT5663_I2S_DL_20;
break ;
case 24 :
val_len = RT5663_I2S_DL_24;
break ;
default :
return -EINVAL;
}
snd_soc_component_update_bits(component, RT5663_I2S1_SDP,
RT5663_I2S_DL_MASK, val_len);
snd_soc_component_update_bits(component, RT5663_ADDA_CLK_1,
RT5663_I2S_PD1_MASK, pre_div << RT5663_I2S_PD1_SHIFT);
return 0 ;
}
static int rt5663_set_dai_fmt(struct snd_soc_dai *dai, unsigned int fmt)
{
struct snd_soc_component *component = dai->component;
unsigned int reg_val = 0 ;
switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
case SND_SOC_DAIFMT_CBP_CFP:
break ;
case SND_SOC_DAIFMT_CBC_CFC:
reg_val |= RT5663_I2S_MS_S;
break ;
default :
return -EINVAL;
}
switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
case SND_SOC_DAIFMT_NB_NF:
break ;
case SND_SOC_DAIFMT_IB_NF:
reg_val |= RT5663_I2S_BP_INV;
break ;
default :
return -EINVAL;
}
switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
case SND_SOC_DAIFMT_I2S:
break ;
case SND_SOC_DAIFMT_LEFT_J:
reg_val |= RT5663_I2S_DF_LEFT;
break ;
case SND_SOC_DAIFMT_DSP_A:
reg_val |= RT5663_I2S_DF_PCM_A;
break ;
case SND_SOC_DAIFMT_DSP_B:
reg_val |= RT5663_I2S_DF_PCM_B;
break ;
default :
return -EINVAL;
}
snd_soc_component_update_bits(component, RT5663_I2S1_SDP, RT5663_I2S_MS_MASK |
RT5663_I2S_BP_MASK | RT5663_I2S_DF_MASK, reg_val);
return 0 ;
}
static int rt5663_set_dai_sysclk(struct snd_soc_dai *dai, int clk_id,
unsigned int freq, int dir)
{
struct snd_soc_component *component = dai->component;
struct rt5663_priv *rt5663 = snd_soc_component_get_drvdata(component);
unsigned int reg_val = 0 ;
if (freq == rt5663->sysclk && clk_id == rt5663->sysclk_src)
return 0 ;
switch (clk_id) {
case RT5663_SCLK_S_MCLK:
reg_val |= RT5663_SCLK_SRC_MCLK;
break ;
case RT5663_SCLK_S_PLL1:
reg_val |= RT5663_SCLK_SRC_PLL1;
break ;
case RT5663_SCLK_S_RCCLK:
reg_val |= RT5663_SCLK_SRC_RCCLK;
break ;
default :
dev_err(component->dev, "Invalid clock id (%d)\n" , clk_id);
return -EINVAL;
}
snd_soc_component_update_bits(component, RT5663_GLB_CLK, RT5663_SCLK_SRC_MASK,
reg_val);
rt5663->sysclk = freq;
rt5663->sysclk_src = clk_id;
dev_dbg(component->dev, "Sysclk is %dHz and clock id is %d\n" ,
freq, clk_id);
return 0 ;
}
static int rt5663_set_dai_pll(struct snd_soc_dai *dai, int pll_id, int source,
unsigned int freq_in, unsigned int freq_out)
{
struct snd_soc_component *component = dai->component;
struct rt5663_priv *rt5663 = snd_soc_component_get_drvdata(component);
struct rl6231_pll_code pll_code;
int ret;
int mask, shift, val;
if (source == rt5663->pll_src && freq_in == rt5663->pll_in &&
freq_out == rt5663->pll_out)
return 0 ;
if (!freq_in || !freq_out) {
dev_dbg(component->dev, "PLL disabled\n" );
rt5663->pll_in = 0 ;
rt5663->pll_out = 0 ;
snd_soc_component_update_bits(component, RT5663_GLB_CLK,
RT5663_SCLK_SRC_MASK, RT5663_SCLK_SRC_MCLK);
return 0 ;
}
switch (rt5663->codec_ver) {
case CODEC_VER_1:
mask = RT5663_V2_PLL1_SRC_MASK;
shift = RT5663_V2_PLL1_SRC_SHIFT;
break ;
case CODEC_VER_0:
mask = RT5663_PLL1_SRC_MASK;
shift = RT5663_PLL1_SRC_SHIFT;
break ;
default :
dev_err(component->dev, "Unknown CODEC Version\n" );
return -EINVAL;
}
switch (source) {
case RT5663_PLL1_S_MCLK:
val = 0 x0;
break ;
case RT5663_PLL1_S_BCLK1:
val = 0 x1;
break ;
default :
dev_err(component->dev, "Unknown PLL source %d\n" , source);
return -EINVAL;
}
snd_soc_component_update_bits(component, RT5663_GLB_CLK, mask, (val << shift));
ret = rl6231_pll_calc(freq_in, freq_out, &pll_code);
if (ret < 0 ) {
dev_err(component->dev, "Unsupported input clock %d\n" , freq_in);
return ret;
}
dev_dbg(component->dev, "bypass=%d m=%d n=%d k=%d\n" , pll_code.m_bp,
(pll_code.m_bp ? 0 : pll_code.m_code), pll_code.n_code,
pll_code.k_code);
snd_soc_component_write(component, RT5663_PLL_1,
pll_code.n_code << RT5663_PLL_N_SHIFT | pll_code.k_code);
snd_soc_component_write(component, RT5663_PLL_2,
((pll_code.m_bp ? 0 : pll_code.m_code) << RT5663_PLL_M_SHIFT) |
(pll_code.m_bp << RT5663_PLL_M_BP_SHIFT));
rt5663->pll_in = freq_in;
rt5663->pll_out = freq_out;
rt5663->pll_src = source;
return 0 ;
}
static int rt5663_set_tdm_slot(struct snd_soc_dai *dai, unsigned int tx_mask,
unsigned int rx_mask, int slots, int slot_width)
{
struct snd_soc_component *component = dai->component;
struct rt5663_priv *rt5663 = snd_soc_component_get_drvdata(component);
unsigned int val = 0 , reg;
if (rx_mask || tx_mask)
val |= RT5663_TDM_MODE_TDM;
switch (slots) {
case 4 :
val |= RT5663_TDM_IN_CH_4;
val |= RT5663_TDM_OUT_CH_4;
break ;
case 6 :
val |= RT5663_TDM_IN_CH_6;
val |= RT5663_TDM_OUT_CH_6;
break ;
case 8 :
val |= RT5663_TDM_IN_CH_8;
val |= RT5663_TDM_OUT_CH_8;
break ;
case 2 :
break ;
default :
return -EINVAL;
}
switch (slot_width) {
case 20 :
val |= RT5663_TDM_IN_LEN_20;
val |= RT5663_TDM_OUT_LEN_20;
break ;
case 24 :
val |= RT5663_TDM_IN_LEN_24;
val |= RT5663_TDM_OUT_LEN_24;
break ;
case 32 :
val |= RT5663_TDM_IN_LEN_32;
val |= RT5663_TDM_OUT_LEN_32;
break ;
case 16 :
break ;
default :
return -EINVAL;
}
switch (rt5663->codec_ver) {
case CODEC_VER_1:
reg = RT5663_TDM_2;
break ;
case CODEC_VER_0:
reg = RT5663_TDM_1;
break ;
default :
dev_err(component->dev, "Unknown CODEC Version\n" );
return -EINVAL;
}
snd_soc_component_update_bits(component, reg, RT5663_TDM_MODE_MASK |
RT5663_TDM_IN_CH_MASK | RT5663_TDM_OUT_CH_MASK |
RT5663_TDM_IN_LEN_MASK | RT5663_TDM_OUT_LEN_MASK, val);
return 0 ;
}
static int rt5663_set_bclk_ratio(struct snd_soc_dai *dai, unsigned int ratio)
{
struct snd_soc_component *component = dai->component;
struct rt5663_priv *rt5663 = snd_soc_component_get_drvdata(component);
unsigned int reg;
dev_dbg(component->dev, "%s ratio = %d\n" , __func__, ratio);
if (rt5663->codec_ver == CODEC_VER_1)
reg = RT5663_TDM_9;
else
reg = RT5663_TDM_5;
switch (ratio) {
case 32 :
snd_soc_component_update_bits(component, reg,
RT5663_TDM_LENGTN_MASK,
RT5663_TDM_LENGTN_16);
break ;
case 40 :
snd_soc_component_update_bits(component, reg,
RT5663_TDM_LENGTN_MASK,
RT5663_TDM_LENGTN_20);
break ;
case 48 :
snd_soc_component_update_bits(component, reg,
RT5663_TDM_LENGTN_MASK,
RT5663_TDM_LENGTN_24);
break ;
case 64 :
snd_soc_component_update_bits(component, reg,
RT5663_TDM_LENGTN_MASK,
RT5663_TDM_LENGTN_32);
break ;
default :
dev_err(component->dev, "Invalid ratio!\n" );
return -EINVAL;
}
return 0 ;
}
static int rt5663_set_bias_level(struct snd_soc_component *component,
enum snd_soc_bias_level level)
{
struct rt5663_priv *rt5663 = snd_soc_component_get_drvdata(component);
switch (level) {
case SND_SOC_BIAS_ON:
snd_soc_component_update_bits(component, RT5663_PWR_ANLG_1,
RT5663_PWR_FV1_MASK | RT5663_PWR_FV2_MASK,
RT5663_PWR_FV1 | RT5663_PWR_FV2);
break ;
case SND_SOC_BIAS_PREPARE:
if (rt5663->codec_ver == CODEC_VER_1) {
snd_soc_component_update_bits(component, RT5663_DIG_MISC,
RT5663_DIG_GATE_CTRL_MASK,
RT5663_DIG_GATE_CTRL_EN);
snd_soc_component_update_bits(component, RT5663_SIG_CLK_DET,
RT5663_EN_ANA_CLK_DET_MASK |
RT5663_PWR_CLK_DET_MASK,
RT5663_EN_ANA_CLK_DET_AUTO |
RT5663_PWR_CLK_DET_EN);
}
break ;
case SND_SOC_BIAS_STANDBY:
if (rt5663->codec_ver == CODEC_VER_1)
snd_soc_component_update_bits(component, RT5663_DIG_MISC,
RT5663_DIG_GATE_CTRL_MASK,
RT5663_DIG_GATE_CTRL_DIS);
snd_soc_component_update_bits(component, RT5663_PWR_ANLG_1,
RT5663_PWR_VREF1_MASK | RT5663_PWR_VREF2_MASK |
RT5663_PWR_FV1_MASK | RT5663_PWR_FV2_MASK |
RT5663_PWR_MB_MASK, RT5663_PWR_VREF1 |
RT5663_PWR_VREF2 | RT5663_PWR_MB);
usleep_range(10000 , 10005 );
if (rt5663->codec_ver == CODEC_VER_1) {
snd_soc_component_update_bits(component, RT5663_SIG_CLK_DET,
RT5663_EN_ANA_CLK_DET_MASK |
RT5663_PWR_CLK_DET_MASK,
RT5663_EN_ANA_CLK_DET_DIS |
RT5663_PWR_CLK_DET_DIS);
}
break ;
case SND_SOC_BIAS_OFF:
if (rt5663->jack_type != SND_JACK_HEADSET)
snd_soc_component_update_bits(component,
RT5663_PWR_ANLG_1,
RT5663_PWR_VREF1_MASK | RT5663_PWR_VREF2_MASK |
RT5663_PWR_FV1 | RT5663_PWR_FV2 |
RT5663_PWR_MB_MASK, 0 );
else
snd_soc_component_update_bits(component,
RT5663_PWR_ANLG_1,
RT5663_PWR_FV1_MASK | RT5663_PWR_FV2_MASK,
RT5663_PWR_FV1 | RT5663_PWR_FV2);
break ;
default :
break ;
}
return 0 ;
}
static int rt5663_probe(struct snd_soc_component *component)
{
struct snd_soc_dapm_context *dapm = snd_soc_component_get_dapm(component);
struct rt5663_priv *rt5663 = snd_soc_component_get_drvdata(component);
rt5663->component = component;
switch (rt5663->codec_ver) {
case CODEC_VER_1:
snd_soc_dapm_new_controls(dapm,
rt5663_v2_specific_dapm_widgets,
ARRAY_SIZE(rt5663_v2_specific_dapm_widgets));
snd_soc_dapm_add_routes(dapm,
rt5663_v2_specific_dapm_routes,
ARRAY_SIZE(rt5663_v2_specific_dapm_routes));
snd_soc_add_component_controls(component, rt5663_v2_specific_controls,
ARRAY_SIZE(rt5663_v2_specific_controls));
break ;
case CODEC_VER_0:
snd_soc_dapm_new_controls(dapm,
rt5663_specific_dapm_widgets,
ARRAY_SIZE(rt5663_specific_dapm_widgets));
snd_soc_dapm_add_routes(dapm,
rt5663_specific_dapm_routes,
ARRAY_SIZE(rt5663_specific_dapm_routes));
snd_soc_add_component_controls(component, rt5663_specific_controls,
ARRAY_SIZE(rt5663_specific_controls));
if (!rt5663->imp_table)
snd_soc_add_component_controls(component, rt5663_hpvol_controls,
ARRAY_SIZE(rt5663_hpvol_controls));
break ;
}
return 0 ;
}
static void rt5663_remove(struct snd_soc_component *component)
{
struct rt5663_priv *rt5663 = snd_soc_component_get_drvdata(component);
regmap_write(rt5663->regmap, RT5663_RESET, 0 );
}
#ifdef CONFIG_PM
static int rt5663_suspend(struct snd_soc_component *component)
{
struct rt5663_priv *rt5663 = snd_soc_component_get_drvdata(component);
if (rt5663->irq)
disable_irq(rt5663->irq);
cancel_delayed_work_sync(&rt5663->jack_detect_work);
cancel_delayed_work_sync(&rt5663->jd_unplug_work);
regcache_cache_only(rt5663->regmap, true );
regcache_mark_dirty(rt5663->regmap);
return 0 ;
}
static int rt5663_resume(struct snd_soc_component *component)
{
struct rt5663_priv *rt5663 = snd_soc_component_get_drvdata(component);
regcache_cache_only(rt5663->regmap, false );
regcache_sync(rt5663->regmap);
rt5663_irq(0 , rt5663);
if (rt5663->irq)
enable_irq(rt5663->irq);
return 0 ;
}
#else
#define rt5663_suspend NULL
#define rt5663_resume NULL
#endif
#define RT5663_STEREO_RATES SNDRV_PCM_RATE_8000_192000
#define RT5663_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE | \
SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S8)
static const struct snd_soc_dai_ops rt5663_aif_dai_ops = {
.hw_params = rt5663_hw_params,
.set_fmt = rt5663_set_dai_fmt,
.set_sysclk = rt5663_set_dai_sysclk,
.set_pll = rt5663_set_dai_pll,
.set_tdm_slot = rt5663_set_tdm_slot,
.set_bclk_ratio = rt5663_set_bclk_ratio,
};
static struct snd_soc_dai_driver rt5663_dai[] = {
{
.name = "rt5663-aif" ,
.id = RT5663_AIF,
.playback = {
.stream_name = "AIF Playback" ,
.channels_min = 1 ,
.channels_max = 2 ,
.rates = RT5663_STEREO_RATES,
.formats = RT5663_FORMATS,
},
.capture = {
.stream_name = "AIF Capture" ,
.channels_min = 1 ,
.channels_max = 2 ,
.rates = RT5663_STEREO_RATES,
.formats = RT5663_FORMATS,
},
.ops = &rt5663_aif_dai_ops,
},
};
static const struct snd_soc_component_driver soc_component_dev_rt5663 = {
.probe = rt5663_probe,
.remove = rt5663_remove,
.suspend = rt5663_suspend,
.resume = rt5663_resume,
.set_bias_level = rt5663_set_bias_level,
.controls = rt5663_snd_controls,
.num_controls = ARRAY_SIZE(rt5663_snd_controls),
.dapm_widgets = rt5663_dapm_widgets,
.num_dapm_widgets = ARRAY_SIZE(rt5663_dapm_widgets),
.dapm_routes = rt5663_dapm_routes,
.num_dapm_routes = ARRAY_SIZE(rt5663_dapm_routes),
.set_jack = rt5663_set_jack_detect,
.use_pmdown_time = 1 ,
.endianness = 1 ,
};
static const struct regmap_config rt5663_v2_regmap = {
.reg_bits = 16 ,
.val_bits = 16 ,
.use_single_read = true ,
.use_single_write = true ,
.max_register = 0 x07fa,
.volatile_reg = rt5663_v2_volatile_register,
.readable_reg = rt5663_v2_readable_register,
.cache_type = REGCACHE_MAPLE,
.reg_defaults = rt5663_v2_reg,
.num_reg_defaults = ARRAY_SIZE(rt5663_v2_reg),
};
static const struct regmap_config rt5663_regmap = {
.reg_bits = 16 ,
.val_bits = 16 ,
.use_single_read = true ,
.use_single_write = true ,
.max_register = 0 x03f3,
.volatile_reg = rt5663_volatile_register,
.readable_reg = rt5663_readable_register,
.cache_type = REGCACHE_MAPLE,
.reg_defaults = rt5663_reg,
.num_reg_defaults = ARRAY_SIZE(rt5663_reg),
};
static const struct regmap_config temp_regmap = {
.name = "nocache" ,
.reg_bits = 16 ,
.val_bits = 16 ,
.use_single_read = true ,
.use_single_write = true ,
.max_register = 0 x03f3,
.cache_type = REGCACHE_NONE,
};
static const struct i2c_device_id rt5663_i2c_id[] = {
{ "rt5663" },
{}
};
MODULE_DEVICE_TABLE(i2c, rt5663_i2c_id);
#if defined (CONFIG_OF)
static const struct of_device_id rt5663_of_match[] = {
{ .compatible = "realtek,rt5663" , },
{ }
};
MODULE_DEVICE_TABLE(of, rt5663_of_match);
#endif
#ifdef CONFIG_ACPI
static const struct acpi_device_id rt5663_acpi_match[] = {
{ "10EC5663" },
{ }
};
MODULE_DEVICE_TABLE(acpi, rt5663_acpi_match);
#endif
static void rt5663_v2_calibrate(struct rt5663_priv *rt5663)
{
regmap_write(rt5663->regmap, RT5663_BIAS_CUR_8, 0 xa402);
regmap_write(rt5663->regmap, RT5663_PWR_DIG_1, 0 x0100);
regmap_write(rt5663->regmap, RT5663_RECMIX, 0 x4040);
regmap_write(rt5663->regmap, RT5663_DIG_MISC, 0 x0001);
regmap_write(rt5663->regmap, RT5663_RC_CLK, 0 x0380);
regmap_write(rt5663->regmap, RT5663_GLB_CLK, 0 x8000);
regmap_write(rt5663->regmap, RT5663_ADDA_CLK_1, 0 x1000);
regmap_write(rt5663->regmap, RT5663_CHOP_DAC_L, 0 x3030);
regmap_write(rt5663->regmap, RT5663_CALIB_ADC, 0 x3c05);
regmap_write(rt5663->regmap, RT5663_PWR_ANLG_1, 0 xa23e);
msleep(40 );
regmap_write(rt5663->regmap, RT5663_PWR_ANLG_1, 0 xf23e);
regmap_write(rt5663->regmap, RT5663_HP_CALIB_2, 0 x0321);
regmap_write(rt5663->regmap, RT5663_HP_CALIB_1, 0 xfc00);
msleep(500 );
}
static void rt5663_calibrate(struct rt5663_priv *rt5663)
{
int value, count;
regmap_write(rt5663->regmap, RT5663_RESET, 0 x0000);
msleep(20 );
regmap_write(rt5663->regmap, RT5663_ANA_BIAS_CUR_4, 0 x00a1);
regmap_write(rt5663->regmap, RT5663_RC_CLK, 0 x0380);
regmap_write(rt5663->regmap, RT5663_GLB_CLK, 0 x8000);
regmap_write(rt5663->regmap, RT5663_ADDA_CLK_1, 0 x1000);
regmap_write(rt5663->regmap, RT5663_VREF_RECMIX, 0 x0032);
regmap_write(rt5663->regmap, RT5663_HP_IMP_SEN_19, 0 x000c);
regmap_write(rt5663->regmap, RT5663_DUMMY_1, 0 x0324);
regmap_write(rt5663->regmap, RT5663_DIG_MISC, 0 x8001);
regmap_write(rt5663->regmap, RT5663_VREFADJ_OP, 0 x0f28);
regmap_write(rt5663->regmap, RT5663_PWR_ANLG_1, 0 xa23b);
msleep(30 );
regmap_write(rt5663->regmap, RT5663_PWR_ANLG_1, 0 xf23b);
regmap_write(rt5663->regmap, RT5663_PWR_ANLG_2, 0 x8000);
regmap_write(rt5663->regmap, RT5663_PWR_ANLG_3, 0 x0008);
regmap_write(rt5663->regmap, RT5663_PRE_DIV_GATING_1, 0 xffff);
regmap_write(rt5663->regmap, RT5663_PRE_DIV_GATING_2, 0 xffff);
regmap_write(rt5663->regmap, RT5663_CBJ_1, 0 x8c10);
regmap_write(rt5663->regmap, RT5663_IL_CMD_2, 0 x00c1);
regmap_write(rt5663->regmap, RT5663_EM_JACK_TYPE_1, 0 xb880);
regmap_write(rt5663->regmap, RT5663_EM_JACK_TYPE_2, 0 x4110);
regmap_write(rt5663->regmap, RT5663_EM_JACK_TYPE_2, 0 x4118);
count = 0 ;
while (true ) {
regmap_read(rt5663->regmap, RT5663_INT_ST_2, &value);
if (!(value & 0 x80))
usleep_range(10000 , 10005 );
else
break ;
if (++count > 200 )
break ;
}
regmap_write(rt5663->regmap, RT5663_HP_IMP_SEN_19, 0 x0000);
regmap_write(rt5663->regmap, RT5663_DEPOP_2, 0 x3003);
regmap_write(rt5663->regmap, RT5663_DEPOP_1, 0 x0038);
regmap_write(rt5663->regmap, RT5663_DEPOP_1, 0 x003b);
regmap_write(rt5663->regmap, RT5663_PWR_DIG_2, 0 x8400);
regmap_write(rt5663->regmap, RT5663_PWR_DIG_1, 0 x8df8);
regmap_write(rt5663->regmap, RT5663_PWR_ANLG_2, 0 x8003);
regmap_write(rt5663->regmap, RT5663_PWR_ANLG_3, 0 x018c);
regmap_write(rt5663->regmap, RT5663_HP_CHARGE_PUMP_1, 0 x1e32);
regmap_write(rt5663->regmap, RT5663_DUMMY_2, 0 x8089);
regmap_write(rt5663->regmap, RT5663_DACREF_LDO, 0 x3b0b);
msleep(40 );
regmap_write(rt5663->regmap, RT5663_STO_DAC_MIXER, 0 x0000);
regmap_write(rt5663->regmap, RT5663_BYPASS_STO_DAC, 0 x000c);
regmap_write(rt5663->regmap, RT5663_HP_BIAS, 0 xafaa);
regmap_write(rt5663->regmap, RT5663_CHARGE_PUMP_1, 0 x2224);
regmap_write(rt5663->regmap, RT5663_HP_OUT_EN, 0 x8088);
regmap_write(rt5663->regmap, RT5663_STO_DRE_9, 0 x0017);
regmap_write(rt5663->regmap, RT5663_STO_DRE_10, 0 x0017);
regmap_write(rt5663->regmap, RT5663_STO1_ADC_MIXER, 0 x4040);
regmap_write(rt5663->regmap, RT5663_CHOP_ADC, 0 x3000);
regmap_write(rt5663->regmap, RT5663_RECMIX, 0 x0005);
regmap_write(rt5663->regmap, RT5663_ADDA_RST, 0 xc000);
regmap_write(rt5663->regmap, RT5663_STO1_HPF_ADJ1, 0 x3320);
regmap_write(rt5663->regmap, RT5663_HP_CALIB_2, 0 x00c9);
regmap_write(rt5663->regmap, RT5663_DUMMY_1, 0 x004c);
regmap_write(rt5663->regmap, RT5663_ANA_BIAS_CUR_1, 0 x1111);
regmap_write(rt5663->regmap, RT5663_BIAS_CUR_8, 0 x4402);
regmap_write(rt5663->regmap, RT5663_CHARGE_PUMP_2, 0 x3311);
regmap_write(rt5663->regmap, RT5663_HP_CALIB_1, 0 x0069);
regmap_write(rt5663->regmap, RT5663_HP_CALIB_3, 0 x06ce);
regmap_write(rt5663->regmap, RT5663_HP_CALIB_1_1, 0 x6800);
regmap_write(rt5663->regmap, RT5663_CHARGE_PUMP_2, 0 x1100);
regmap_write(rt5663->regmap, RT5663_HP_CALIB_7, 0 x0057);
regmap_write(rt5663->regmap, RT5663_HP_CALIB_1_1, 0 xe800);
count = 0 ;
while (true ) {
regmap_read(rt5663->regmap, RT5663_HP_CALIB_1_1, &value);
if (value & 0 x8000)
usleep_range(10000 , 10005 );
else
break ;
if (count > 200 )
return ;
count++;
}
regmap_write(rt5663->regmap, RT5663_HP_CALIB_1_1, 0 x6200);
regmap_write(rt5663->regmap, RT5663_HP_CALIB_7, 0 x0059);
regmap_write(rt5663->regmap, RT5663_HP_CALIB_1_1, 0 xe200);
count = 0 ;
while (true ) {
regmap_read(rt5663->regmap, RT5663_HP_CALIB_1_1, &value);
if (value & 0 x8000)
usleep_range(10000 , 10005 );
else
break ;
if (count > 200 )
return ;
count++;
}
regmap_write(rt5663->regmap, RT5663_EM_JACK_TYPE_1, 0 xb8e0);
usleep_range(10000 , 10005 );
regmap_write(rt5663->regmap, RT5663_PWR_ANLG_1, 0 x003b);
usleep_range(10000 , 10005 );
regmap_write(rt5663->regmap, RT5663_PWR_DIG_1, 0 x0000);
usleep_range(10000 , 10005 );
regmap_write(rt5663->regmap, RT5663_DEPOP_1, 0 x000b);
usleep_range(10000 , 10005 );
regmap_write(rt5663->regmap, RT5663_DEPOP_1, 0 x0008);
usleep_range(10000 , 10005 );
regmap_write(rt5663->regmap, RT5663_PWR_ANLG_2, 0 x0000);
usleep_range(10000 , 10005 );
}
static int rt5663_parse_dp(struct rt5663_priv *rt5663, struct device *dev)
{
int table_size;
int ret;
device_property_read_u32(dev, "realtek,dc_offset_l_manual" ,
&rt5663->pdata.dc_offset_l_manual);
device_property_read_u32(dev, "realtek,dc_offset_r_manual" ,
&rt5663->pdata.dc_offset_r_manual);
device_property_read_u32(dev, "realtek,dc_offset_l_manual_mic" ,
&rt5663->pdata.dc_offset_l_manual_mic);
device_property_read_u32(dev, "realtek,dc_offset_r_manual_mic" ,
&rt5663->pdata.dc_offset_r_manual_mic);
device_property_read_u32(dev, "realtek,impedance_sensing_num" ,
&rt5663->pdata.impedance_sensing_num);
if (rt5663->pdata.impedance_sensing_num) {
table_size = sizeof (struct impedance_mapping_table) *
rt5663->pdata.impedance_sensing_num;
rt5663->imp_table = devm_kzalloc(dev, table_size, GFP_KERNEL);
if (!rt5663->imp_table)
return -ENOMEM;
ret = device_property_read_u32_array(dev,
"realtek,impedance_sensing_table" ,
(u32 *)rt5663->imp_table, table_size);
if (ret)
return ret;
}
return 0 ;
}
static int rt5663_i2c_probe(struct i2c_client *i2c)
{
struct rt5663_platform_data *pdata = dev_get_platdata(&i2c->dev);
struct rt5663_priv *rt5663;
int ret, i;
unsigned int val;
struct regmap *regmap;
rt5663 = devm_kzalloc(&i2c->dev, sizeof (struct rt5663_priv),
GFP_KERNEL);
if (rt5663 == NULL)
return -ENOMEM;
i2c_set_clientdata(i2c, rt5663);
if (pdata)
rt5663->pdata = *pdata;
else {
ret = rt5663_parse_dp(rt5663, &i2c->dev);
if (ret)
return ret;
}
for (i = 0 ; i < ARRAY_SIZE(rt5663->supplies); i++)
rt5663->supplies[i].supply = rt5663_supply_names[i];
ret = devm_regulator_bulk_get(&i2c->dev,
ARRAY_SIZE(rt5663->supplies),
rt5663->supplies);
if (ret) {
dev_err(&i2c->dev, "Failed to request supplies: %d\n" , ret);
return ret;
}
/* Set load for regulator. */
for (i = 0 ; i < ARRAY_SIZE(rt5663->supplies); i++) {
ret = regulator_set_load(rt5663->supplies[i].consumer,
RT5663_SUPPLY_CURRENT_UA);
if (ret < 0 ) {
dev_err(&i2c->dev,
"Failed to set regulator load on %s, ret: %d\n" ,
rt5663->supplies[i].supply, ret);
return ret;
}
}
ret = regulator_bulk_enable(ARRAY_SIZE(rt5663->supplies),
rt5663->supplies);
if (ret) {
dev_err(&i2c->dev, "Failed to enable supplies: %d\n" , ret);
return ret;
}
msleep(RT5663_POWER_ON_DELAY_MS);
regmap = devm_regmap_init_i2c(i2c, &temp_regmap);
if (IS_ERR(regmap)) {
ret = PTR_ERR(regmap);
dev_err(&i2c->dev, "Failed to allocate temp register map: %d\n" ,
ret);
goto err_enable;
}
ret = regmap_read(regmap, RT5663_VENDOR_ID_2, &val);
if (ret || (val != RT5663_DEVICE_ID_2 && val != RT5663_DEVICE_ID_1)) {
dev_err(&i2c->dev,
"Device with ID register %#x is not rt5663, retry one time.\n" ,
val);
msleep(100 );
regmap_read(regmap, RT5663_VENDOR_ID_2, &val);
}
switch (val) {
case RT5663_DEVICE_ID_2:
rt5663->regmap = devm_regmap_init_i2c(i2c, &rt5663_v2_regmap);
rt5663->codec_ver = CODEC_VER_1;
break ;
case RT5663_DEVICE_ID_1:
rt5663->regmap = devm_regmap_init_i2c(i2c, &rt5663_regmap);
rt5663->codec_ver = CODEC_VER_0;
break ;
default :
dev_err(&i2c->dev,
"Device with ID register %#x is not rt5663\n" ,
val);
ret = -ENODEV;
goto err_enable;
}
if (IS_ERR(rt5663->regmap)) {
ret = PTR_ERR(rt5663->regmap);
dev_err(&i2c->dev, "Failed to allocate register map: %d\n" ,
ret);
goto err_enable;
}
/* reset and calibrate */
regmap_write(rt5663->regmap, RT5663_RESET, 0 );
regcache_cache_bypass(rt5663->regmap, true );
switch (rt5663->codec_ver) {
case CODEC_VER_1:
rt5663_v2_calibrate(rt5663);
break ;
case CODEC_VER_0:
rt5663_calibrate(rt5663);
break ;
default :
dev_err(&i2c->dev, "%s:Unknown codec type\n" , __func__);
}
regcache_cache_bypass(rt5663->regmap, false );
regmap_write(rt5663->regmap, RT5663_RESET, 0 );
dev_dbg(&i2c->dev, "calibrate done\n" );
switch (rt5663->codec_ver) {
case CODEC_VER_1:
break ;
case CODEC_VER_0:
ret = regmap_register_patch(rt5663->regmap, rt5663_patch_list,
ARRAY_SIZE(rt5663_patch_list));
if (ret != 0 )
dev_warn(&i2c->dev,
"Failed to apply regmap patch: %d\n" , ret);
break ;
default :
dev_err(&i2c->dev, "%s:Unknown codec type\n" , __func__);
}
/* GPIO1 as IRQ */
regmap_update_bits(rt5663->regmap, RT5663_GPIO_1, RT5663_GP1_PIN_MASK,
RT5663_GP1_PIN_IRQ);
/* 4btn inline command debounce */
regmap_update_bits(rt5663->regmap, RT5663_IL_CMD_5,
RT5663_4BTN_CLK_DEB_MASK, RT5663_4BTN_CLK_DEB_65MS);
switch (rt5663->codec_ver) {
case CODEC_VER_1:
regmap_write(rt5663->regmap, RT5663_BIAS_CUR_8, 0 xa402);
/* JD1 */
regmap_update_bits(rt5663->regmap, RT5663_AUTO_1MRC_CLK,
RT5663_IRQ_POW_SAV_MASK | RT5663_IRQ_POW_SAV_JD1_MASK,
RT5663_IRQ_POW_SAV_EN | RT5663_IRQ_POW_SAV_JD1_EN);
regmap_update_bits(rt5663->regmap, RT5663_PWR_ANLG_2,
RT5663_PWR_JD1_MASK, RT5663_PWR_JD1);
regmap_update_bits(rt5663->regmap, RT5663_IRQ_1,
RT5663_EN_CB_JD_MASK, RT5663_EN_CB_JD_EN);
regmap_update_bits(rt5663->regmap, RT5663_HP_LOGIC_2,
RT5663_HP_SIG_SRC1_MASK, RT5663_HP_SIG_SRC1_REG);
regmap_update_bits(rt5663->regmap, RT5663_RECMIX,
RT5663_VREF_BIAS_MASK | RT5663_CBJ_DET_MASK |
RT5663_DET_TYPE_MASK, RT5663_VREF_BIAS_REG |
RT5663_CBJ_DET_EN | RT5663_DET_TYPE_QFN);
/* Set GPIO4 and GPIO8 as input for combo jack */
regmap_update_bits(rt5663->regmap, RT5663_GPIO_2,
RT5663_GP4_PIN_CONF_MASK, RT5663_GP4_PIN_CONF_INPUT);
regmap_update_bits(rt5663->regmap, RT5663_GPIO_3,
RT5663_GP8_PIN_CONF_MASK, RT5663_GP8_PIN_CONF_INPUT);
regmap_update_bits(rt5663->regmap, RT5663_PWR_ANLG_1,
RT5663_LDO1_DVO_MASK | RT5663_AMP_HP_MASK,
RT5663_LDO1_DVO_0_9V | RT5663_AMP_HP_3X);
break ;
case CODEC_VER_0:
regmap_update_bits(rt5663->regmap, RT5663_DIG_MISC,
RT5663_DIG_GATE_CTRL_MASK, RT5663_DIG_GATE_CTRL_EN);
regmap_update_bits(rt5663->regmap, RT5663_AUTO_1MRC_CLK,
RT5663_IRQ_MANUAL_MASK, RT5663_IRQ_MANUAL_EN);
regmap_update_bits(rt5663->regmap, RT5663_IRQ_1,
RT5663_EN_IRQ_JD1_MASK, RT5663_EN_IRQ_JD1_EN);
regmap_update_bits(rt5663->regmap, RT5663_GPIO_1,
RT5663_GPIO1_TYPE_MASK, RT5663_GPIO1_TYPE_EN);
regmap_write(rt5663->regmap, RT5663_VREF_RECMIX, 0 x0032);
regmap_update_bits(rt5663->regmap, RT5663_GPIO_2,
RT5663_GP1_PIN_CONF_MASK | RT5663_SEL_GPIO1_MASK,
RT5663_GP1_PIN_CONF_OUTPUT | RT5663_SEL_GPIO1_EN);
regmap_update_bits(rt5663->regmap, RT5663_RECMIX,
RT5663_RECMIX1_BST1_MASK, RT5663_RECMIX1_BST1_ON);
regmap_update_bits(rt5663->regmap, RT5663_TDM_2,
RT5663_DATA_SWAP_ADCDAT1_MASK,
RT5663_DATA_SWAP_ADCDAT1_LL);
break ;
default :
dev_err(&i2c->dev, "%s:Unknown codec type\n" , __func__);
}
INIT_DELAYED_WORK(&rt5663->jack_detect_work, rt5663_jack_detect_work);
INIT_DELAYED_WORK(&rt5663->jd_unplug_work, rt5663_jd_unplug_work);
if (i2c->irq) {
ret = request_irq(i2c->irq, rt5663_irq,
IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING
| IRQF_ONESHOT, "rt5663" , rt5663);
if (ret) {
dev_err(&i2c->dev, "%s Failed to request IRQ: %d\n" ,
__func__, ret);
goto err_enable;
}
rt5663->irq = i2c->irq;
}
ret = devm_snd_soc_register_component(&i2c->dev,
&soc_component_dev_rt5663,
rt5663_dai, ARRAY_SIZE(rt5663_dai));
if (ret)
goto err_enable;
return 0 ;
/*
* Error after enabling regulators should goto err_enable
* to disable regulators.
*/
err_enable:
if (i2c->irq)
free_irq(i2c->irq, rt5663);
regulator_bulk_disable(ARRAY_SIZE(rt5663->supplies), rt5663->supplies);
return ret;
}
static void rt5663_i2c_remove(struct i2c_client *i2c)
{
struct rt5663_priv *rt5663 = i2c_get_clientdata(i2c);
if (i2c->irq)
free_irq(i2c->irq, rt5663);
regulator_bulk_disable(ARRAY_SIZE(rt5663->supplies), rt5663->supplies);
}
static void rt5663_i2c_shutdown(struct i2c_client *client)
{
struct rt5663_priv *rt5663 = i2c_get_clientdata(client);
regmap_write(rt5663->regmap, RT5663_RESET, 0 );
}
static struct i2c_driver rt5663_i2c_driver = {
.driver = {
.name = "rt5663" ,
.acpi_match_table = ACPI_PTR(rt5663_acpi_match),
.of_match_table = of_match_ptr(rt5663_of_match),
},
.probe = rt5663_i2c_probe,
.remove = rt5663_i2c_remove,
.shutdown = rt5663_i2c_shutdown,
.id_table = rt5663_i2c_id,
};
module_i2c_driver(rt5663_i2c_driver);
MODULE_DESCRIPTION("ASoC RT5663 driver" );
MODULE_AUTHOR("Jack Yu <jack.yu@realtek.com>" );
MODULE_LICENSE("GPL v2" );
Messung V0.5 in Prozent C=99 H=99 G=98
¤ Dauer der Verarbeitung: 0.49 Sekunden
(vorverarbeitet am 2026-06-07)
¤
*© Formatika GbR, Deutschland