162306a36Sopenharmony_ci// SPDX-License-Identifier: GPL-2.0-only 262306a36Sopenharmony_ci/* 362306a36Sopenharmony_ci * wm8998-tables.c -- data tables for wm8998-class codecs 462306a36Sopenharmony_ci * 562306a36Sopenharmony_ci * Copyright 2014 Wolfson Microelectronics plc 662306a36Sopenharmony_ci * 762306a36Sopenharmony_ci * Author: Richard Fitzgerald <rf@opensource.wolfsonmicro.com> 862306a36Sopenharmony_ci */ 962306a36Sopenharmony_ci 1062306a36Sopenharmony_ci#include <linux/module.h> 1162306a36Sopenharmony_ci 1262306a36Sopenharmony_ci#include <linux/mfd/arizona/core.h> 1362306a36Sopenharmony_ci#include <linux/mfd/arizona/registers.h> 1462306a36Sopenharmony_ci#include <linux/device.h> 1562306a36Sopenharmony_ci 1662306a36Sopenharmony_ci#include "arizona.h" 1762306a36Sopenharmony_ci 1862306a36Sopenharmony_ci#define WM8998_NUM_AOD_ISR 2 1962306a36Sopenharmony_ci#define WM8998_NUM_ISR 5 2062306a36Sopenharmony_ci 2162306a36Sopenharmony_cistatic const struct reg_sequence wm8998_rev_a_patch[] = { 2262306a36Sopenharmony_ci { 0x0212, 0x0000 }, 2362306a36Sopenharmony_ci { 0x0211, 0x0014 }, 2462306a36Sopenharmony_ci { 0x04E4, 0x0E0D }, 2562306a36Sopenharmony_ci { 0x04E5, 0x0E0D }, 2662306a36Sopenharmony_ci { 0x04E6, 0x0E0D }, 2762306a36Sopenharmony_ci { 0x04EB, 0x060E }, 2862306a36Sopenharmony_ci { 0x0441, 0xC759 }, 2962306a36Sopenharmony_ci { 0x0442, 0x2A08 }, 3062306a36Sopenharmony_ci { 0x0443, 0x5CFA }, 3162306a36Sopenharmony_ci { 0x026E, 0x0064 }, 3262306a36Sopenharmony_ci { 0x026F, 0x00EA }, 3362306a36Sopenharmony_ci { 0x0270, 0x1F16 }, 3462306a36Sopenharmony_ci { 0x0410, 0x2080 }, 3562306a36Sopenharmony_ci { 0x0418, 0x2080 }, 3662306a36Sopenharmony_ci { 0x0420, 0x2080 }, 3762306a36Sopenharmony_ci { 0x04B8, 0x1120 }, 3862306a36Sopenharmony_ci { 0x047E, 0x080E }, 3962306a36Sopenharmony_ci { 0x0448, 0x03EF }, 4062306a36Sopenharmony_ci}; 4162306a36Sopenharmony_ci 4262306a36Sopenharmony_ci/* We use a function so we can use ARRAY_SIZE() */ 4362306a36Sopenharmony_ciint wm8998_patch(struct arizona *arizona) 4462306a36Sopenharmony_ci{ 4562306a36Sopenharmony_ci return regmap_register_patch(arizona->regmap, 4662306a36Sopenharmony_ci wm8998_rev_a_patch, 4762306a36Sopenharmony_ci ARRAY_SIZE(wm8998_rev_a_patch)); 4862306a36Sopenharmony_ci} 4962306a36Sopenharmony_ci 5062306a36Sopenharmony_cistatic const struct regmap_irq wm8998_aod_irqs[ARIZONA_NUM_IRQ] = { 5162306a36Sopenharmony_ci [ARIZONA_IRQ_MICD_CLAMP_FALL] = { 5262306a36Sopenharmony_ci .mask = ARIZONA_MICD_CLAMP_FALL_EINT1 5362306a36Sopenharmony_ci }, 5462306a36Sopenharmony_ci [ARIZONA_IRQ_MICD_CLAMP_RISE] = { 5562306a36Sopenharmony_ci .mask = ARIZONA_MICD_CLAMP_RISE_EINT1 5662306a36Sopenharmony_ci }, 5762306a36Sopenharmony_ci [ARIZONA_IRQ_GP5_FALL] = { .mask = ARIZONA_GP5_FALL_EINT1 }, 5862306a36Sopenharmony_ci [ARIZONA_IRQ_GP5_RISE] = { .mask = ARIZONA_GP5_RISE_EINT1 }, 5962306a36Sopenharmony_ci [ARIZONA_IRQ_JD_FALL] = { .mask = ARIZONA_JD1_FALL_EINT1 }, 6062306a36Sopenharmony_ci [ARIZONA_IRQ_JD_RISE] = { .mask = ARIZONA_JD1_RISE_EINT1 }, 6162306a36Sopenharmony_ci}; 6262306a36Sopenharmony_ci 6362306a36Sopenharmony_cistruct regmap_irq_chip wm8998_aod = { 6462306a36Sopenharmony_ci .name = "wm8998 AOD", 6562306a36Sopenharmony_ci .status_base = ARIZONA_AOD_IRQ1, 6662306a36Sopenharmony_ci .mask_base = ARIZONA_AOD_IRQ_MASK_IRQ1, 6762306a36Sopenharmony_ci .ack_base = ARIZONA_AOD_IRQ1, 6862306a36Sopenharmony_ci .wake_base = ARIZONA_WAKE_CONTROL, 6962306a36Sopenharmony_ci .wake_invert = 1, 7062306a36Sopenharmony_ci .num_regs = 1, 7162306a36Sopenharmony_ci .irqs = wm8998_aod_irqs, 7262306a36Sopenharmony_ci .num_irqs = ARRAY_SIZE(wm8998_aod_irqs), 7362306a36Sopenharmony_ci}; 7462306a36Sopenharmony_ci 7562306a36Sopenharmony_cistatic const struct regmap_irq wm8998_irqs[ARIZONA_NUM_IRQ] = { 7662306a36Sopenharmony_ci [ARIZONA_IRQ_GP4] = { .reg_offset = 0, .mask = ARIZONA_GP4_EINT1 }, 7762306a36Sopenharmony_ci [ARIZONA_IRQ_GP3] = { .reg_offset = 0, .mask = ARIZONA_GP3_EINT1 }, 7862306a36Sopenharmony_ci [ARIZONA_IRQ_GP2] = { .reg_offset = 0, .mask = ARIZONA_GP2_EINT1 }, 7962306a36Sopenharmony_ci [ARIZONA_IRQ_GP1] = { .reg_offset = 0, .mask = ARIZONA_GP1_EINT1 }, 8062306a36Sopenharmony_ci 8162306a36Sopenharmony_ci [ARIZONA_IRQ_SPK_OVERHEAT_WARN] = { 8262306a36Sopenharmony_ci .reg_offset = 2, .mask = ARIZONA_SPK_OVERHEAT_WARN_EINT1 8362306a36Sopenharmony_ci }, 8462306a36Sopenharmony_ci [ARIZONA_IRQ_SPK_OVERHEAT] = { 8562306a36Sopenharmony_ci .reg_offset = 2, .mask = ARIZONA_SPK_OVERHEAT_EINT1 8662306a36Sopenharmony_ci }, 8762306a36Sopenharmony_ci [ARIZONA_IRQ_HPDET] = { 8862306a36Sopenharmony_ci .reg_offset = 2, .mask = ARIZONA_HPDET_EINT1 8962306a36Sopenharmony_ci }, 9062306a36Sopenharmony_ci [ARIZONA_IRQ_MICDET] = { 9162306a36Sopenharmony_ci .reg_offset = 2, .mask = ARIZONA_MICDET_EINT1 9262306a36Sopenharmony_ci }, 9362306a36Sopenharmony_ci [ARIZONA_IRQ_WSEQ_DONE] = { 9462306a36Sopenharmony_ci .reg_offset = 2, .mask = ARIZONA_WSEQ_DONE_EINT1 9562306a36Sopenharmony_ci }, 9662306a36Sopenharmony_ci [ARIZONA_IRQ_DRC1_SIG_DET] = { 9762306a36Sopenharmony_ci .reg_offset = 2, .mask = ARIZONA_DRC1_SIG_DET_EINT1 9862306a36Sopenharmony_ci }, 9962306a36Sopenharmony_ci [ARIZONA_IRQ_ASRC2_LOCK] = { 10062306a36Sopenharmony_ci .reg_offset = 2, .mask = ARIZONA_ASRC2_LOCK_EINT1 10162306a36Sopenharmony_ci }, 10262306a36Sopenharmony_ci [ARIZONA_IRQ_ASRC1_LOCK] = { 10362306a36Sopenharmony_ci .reg_offset = 2, .mask = ARIZONA_ASRC1_LOCK_EINT1 10462306a36Sopenharmony_ci }, 10562306a36Sopenharmony_ci [ARIZONA_IRQ_UNDERCLOCKED] = { 10662306a36Sopenharmony_ci .reg_offset = 2, .mask = ARIZONA_UNDERCLOCKED_EINT1 10762306a36Sopenharmony_ci }, 10862306a36Sopenharmony_ci [ARIZONA_IRQ_OVERCLOCKED] = { 10962306a36Sopenharmony_ci .reg_offset = 2, .mask = ARIZONA_OVERCLOCKED_EINT1 11062306a36Sopenharmony_ci }, 11162306a36Sopenharmony_ci [ARIZONA_IRQ_FLL2_LOCK] = { 11262306a36Sopenharmony_ci .reg_offset = 2, .mask = ARIZONA_FLL2_LOCK_EINT1 11362306a36Sopenharmony_ci }, 11462306a36Sopenharmony_ci [ARIZONA_IRQ_FLL1_LOCK] = { 11562306a36Sopenharmony_ci .reg_offset = 2, .mask = ARIZONA_FLL1_LOCK_EINT1 11662306a36Sopenharmony_ci }, 11762306a36Sopenharmony_ci [ARIZONA_IRQ_CLKGEN_ERR] = { 11862306a36Sopenharmony_ci .reg_offset = 2, .mask = ARIZONA_CLKGEN_ERR_EINT1 11962306a36Sopenharmony_ci }, 12062306a36Sopenharmony_ci [ARIZONA_IRQ_CLKGEN_ERR_ASYNC] = { 12162306a36Sopenharmony_ci .reg_offset = 2, .mask = ARIZONA_CLKGEN_ERR_ASYNC_EINT1 12262306a36Sopenharmony_ci }, 12362306a36Sopenharmony_ci 12462306a36Sopenharmony_ci [ARIZONA_IRQ_ASRC_CFG_ERR] = { 12562306a36Sopenharmony_ci .reg_offset = 3, .mask = ARIZONA_ASRC_CFG_ERR_EINT1 12662306a36Sopenharmony_ci }, 12762306a36Sopenharmony_ci [ARIZONA_IRQ_AIF3_ERR] = { 12862306a36Sopenharmony_ci .reg_offset = 3, .mask = ARIZONA_AIF3_ERR_EINT1 12962306a36Sopenharmony_ci }, 13062306a36Sopenharmony_ci [ARIZONA_IRQ_AIF2_ERR] = { 13162306a36Sopenharmony_ci .reg_offset = 3, .mask = ARIZONA_AIF2_ERR_EINT1 13262306a36Sopenharmony_ci }, 13362306a36Sopenharmony_ci [ARIZONA_IRQ_AIF1_ERR] = { 13462306a36Sopenharmony_ci .reg_offset = 3, .mask = ARIZONA_AIF1_ERR_EINT1 13562306a36Sopenharmony_ci }, 13662306a36Sopenharmony_ci [ARIZONA_IRQ_CTRLIF_ERR] = { 13762306a36Sopenharmony_ci .reg_offset = 3, .mask = ARIZONA_CTRLIF_ERR_EINT1 13862306a36Sopenharmony_ci }, 13962306a36Sopenharmony_ci [ARIZONA_IRQ_MIXER_DROPPED_SAMPLES] = { 14062306a36Sopenharmony_ci .reg_offset = 3, .mask = ARIZONA_MIXER_DROPPED_SAMPLE_EINT1 14162306a36Sopenharmony_ci }, 14262306a36Sopenharmony_ci [ARIZONA_IRQ_ASYNC_CLK_ENA_LOW] = { 14362306a36Sopenharmony_ci .reg_offset = 3, .mask = ARIZONA_ASYNC_CLK_ENA_LOW_EINT1 14462306a36Sopenharmony_ci }, 14562306a36Sopenharmony_ci [ARIZONA_IRQ_SYSCLK_ENA_LOW] = { 14662306a36Sopenharmony_ci .reg_offset = 3, .mask = ARIZONA_SYSCLK_ENA_LOW_EINT1 14762306a36Sopenharmony_ci }, 14862306a36Sopenharmony_ci [ARIZONA_IRQ_ISRC1_CFG_ERR] = { 14962306a36Sopenharmony_ci .reg_offset = 3, .mask = ARIZONA_ISRC1_CFG_ERR_EINT1 15062306a36Sopenharmony_ci }, 15162306a36Sopenharmony_ci [ARIZONA_IRQ_ISRC2_CFG_ERR] = { 15262306a36Sopenharmony_ci .reg_offset = 3, .mask = ARIZONA_ISRC2_CFG_ERR_EINT1 15362306a36Sopenharmony_ci }, 15462306a36Sopenharmony_ci 15562306a36Sopenharmony_ci [ARIZONA_IRQ_BOOT_DONE] = { 15662306a36Sopenharmony_ci .reg_offset = 4, .mask = ARIZONA_BOOT_DONE_EINT1 15762306a36Sopenharmony_ci }, 15862306a36Sopenharmony_ci [ARIZONA_IRQ_FLL2_CLOCK_OK] = { 15962306a36Sopenharmony_ci .reg_offset = 4, .mask = ARIZONA_FLL2_CLOCK_OK_EINT1 16062306a36Sopenharmony_ci }, 16162306a36Sopenharmony_ci [ARIZONA_IRQ_FLL1_CLOCK_OK] = { 16262306a36Sopenharmony_ci .reg_offset = 4, .mask = ARIZONA_FLL1_CLOCK_OK_EINT1 16362306a36Sopenharmony_ci }, 16462306a36Sopenharmony_ci}; 16562306a36Sopenharmony_ci 16662306a36Sopenharmony_cistruct regmap_irq_chip wm8998_irq = { 16762306a36Sopenharmony_ci .name = "wm8998 IRQ", 16862306a36Sopenharmony_ci .status_base = ARIZONA_INTERRUPT_STATUS_1, 16962306a36Sopenharmony_ci .mask_base = ARIZONA_INTERRUPT_STATUS_1_MASK, 17062306a36Sopenharmony_ci .ack_base = ARIZONA_INTERRUPT_STATUS_1, 17162306a36Sopenharmony_ci .num_regs = 5, 17262306a36Sopenharmony_ci .irqs = wm8998_irqs, 17362306a36Sopenharmony_ci .num_irqs = ARRAY_SIZE(wm8998_irqs), 17462306a36Sopenharmony_ci}; 17562306a36Sopenharmony_ci 17662306a36Sopenharmony_cistatic const struct reg_default wm8998_reg_default[] = { 17762306a36Sopenharmony_ci { 0x00000009, 0x0001 }, /* R9 - Ctrl IF I2C1 CFG 1 */ 17862306a36Sopenharmony_ci { 0x0000000B, 0x001A }, /* R11 - Ctrl IF I2C1 CFG 2 */ 17962306a36Sopenharmony_ci { 0x00000020, 0x0000 }, /* R32 - Tone Generator 1 */ 18062306a36Sopenharmony_ci { 0x00000021, 0x1000 }, /* R33 - Tone Generator 2 */ 18162306a36Sopenharmony_ci { 0x00000022, 0x0000 }, /* R34 - Tone Generator 3 */ 18262306a36Sopenharmony_ci { 0x00000023, 0x1000 }, /* R35 - Tone Generator 4 */ 18362306a36Sopenharmony_ci { 0x00000024, 0x0000 }, /* R36 - Tone Generator 5 */ 18462306a36Sopenharmony_ci { 0x00000030, 0x0000 }, /* R48 - PWM Drive 1 */ 18562306a36Sopenharmony_ci { 0x00000031, 0x0100 }, /* R49 - PWM Drive 2 */ 18662306a36Sopenharmony_ci { 0x00000032, 0x0100 }, /* R50 - PWM Drive 3 */ 18762306a36Sopenharmony_ci { 0x00000040, 0x0000 }, /* R64 - Wake control */ 18862306a36Sopenharmony_ci { 0x00000041, 0x0000 }, /* R65 - Sequence control */ 18962306a36Sopenharmony_ci { 0x00000061, 0x01FF }, /* R97 - Sample Rate Sequence Select 1 */ 19062306a36Sopenharmony_ci { 0x00000062, 0x01FF }, /* R98 - Sample Rate Sequence Select 2 */ 19162306a36Sopenharmony_ci { 0x00000063, 0x01FF }, /* R99 - Sample Rate Sequence Select 3 */ 19262306a36Sopenharmony_ci { 0x00000064, 0x01FF }, /* R100 - Sample Rate Sequence Select 4 */ 19362306a36Sopenharmony_ci { 0x00000066, 0x01FF }, /* R102 - Always On Triggers Sequence Select 1 */ 19462306a36Sopenharmony_ci { 0x00000067, 0x01FF }, /* R103 - Always On Triggers Sequence Select 2 */ 19562306a36Sopenharmony_ci { 0x00000068, 0x01FF }, /* R104 - Always On Triggers Sequence Select 3 */ 19662306a36Sopenharmony_ci { 0x00000069, 0x01FF }, /* R105 - Always On Triggers Sequence Select 4 */ 19762306a36Sopenharmony_ci { 0x0000006A, 0x01FF }, /* R106 - Always On Triggers Sequence Select 5 */ 19862306a36Sopenharmony_ci { 0x0000006B, 0x01FF }, /* R107 - Always On Triggers Sequence Select 6 */ 19962306a36Sopenharmony_ci { 0x00000090, 0x0000 }, /* R144 - Haptics Control 1 */ 20062306a36Sopenharmony_ci { 0x00000091, 0x7FFF }, /* R145 - Haptics Control 2 */ 20162306a36Sopenharmony_ci { 0x00000092, 0x0000 }, /* R146 - Haptics phase 1 intensity */ 20262306a36Sopenharmony_ci { 0x00000093, 0x0000 }, /* R147 - Haptics phase 1 duration */ 20362306a36Sopenharmony_ci { 0x00000094, 0x0000 }, /* R148 - Haptics phase 2 intensity */ 20462306a36Sopenharmony_ci { 0x00000095, 0x0000 }, /* R149 - Haptics phase 2 duration */ 20562306a36Sopenharmony_ci { 0x00000096, 0x0000 }, /* R150 - Haptics phase 3 intensity */ 20662306a36Sopenharmony_ci { 0x00000097, 0x0000 }, /* R151 - Haptics phase 3 duration */ 20762306a36Sopenharmony_ci { 0x00000100, 0x0002 }, /* R256 - Clock 32k 1 */ 20862306a36Sopenharmony_ci { 0x00000101, 0x0304 }, /* R257 - System Clock 1 */ 20962306a36Sopenharmony_ci { 0x00000102, 0x0011 }, /* R258 - Sample rate 1 */ 21062306a36Sopenharmony_ci { 0x00000103, 0x0011 }, /* R259 - Sample rate 2 */ 21162306a36Sopenharmony_ci { 0x00000104, 0x0011 }, /* R260 - Sample rate 3 */ 21262306a36Sopenharmony_ci { 0x00000112, 0x0305 }, /* R274 - Async clock 1 */ 21362306a36Sopenharmony_ci { 0x00000113, 0x0011 }, /* R275 - Async sample rate 1 */ 21462306a36Sopenharmony_ci { 0x00000114, 0x0011 }, /* R276 - Async sample rate 2 */ 21562306a36Sopenharmony_ci { 0x00000149, 0x0000 }, /* R329 - Output system clock */ 21662306a36Sopenharmony_ci { 0x0000014A, 0x0000 }, /* R330 - Output async clock */ 21762306a36Sopenharmony_ci { 0x00000152, 0x0000 }, /* R338 - Rate Estimator 1 */ 21862306a36Sopenharmony_ci { 0x00000153, 0x0000 }, /* R339 - Rate Estimator 2 */ 21962306a36Sopenharmony_ci { 0x00000154, 0x0000 }, /* R340 - Rate Estimator 3 */ 22062306a36Sopenharmony_ci { 0x00000155, 0x0000 }, /* R341 - Rate Estimator 4 */ 22162306a36Sopenharmony_ci { 0x00000156, 0x0000 }, /* R342 - Rate Estimator 5 */ 22262306a36Sopenharmony_ci { 0x00000161, 0x0000 }, /* R353 - Dynamic Frequency Scaling 1 */ 22362306a36Sopenharmony_ci { 0x00000171, 0x0002 }, /* R369 - FLL1 Control 1 */ 22462306a36Sopenharmony_ci { 0x00000172, 0x0008 }, /* R370 - FLL1 Control 2 */ 22562306a36Sopenharmony_ci { 0x00000173, 0x0018 }, /* R371 - FLL1 Control 3 */ 22662306a36Sopenharmony_ci { 0x00000174, 0x007D }, /* R372 - FLL1 Control 4 */ 22762306a36Sopenharmony_ci { 0x00000175, 0x0004 }, /* R373 - FLL1 Control 5 */ 22862306a36Sopenharmony_ci { 0x00000176, 0x0000 }, /* R374 - FLL1 Control 6 */ 22962306a36Sopenharmony_ci { 0x00000179, 0x0000 }, /* R377 - FLL1 Control 7 */ 23062306a36Sopenharmony_ci { 0x00000181, 0x0000 }, /* R385 - FLL1 Synchroniser 1 */ 23162306a36Sopenharmony_ci { 0x00000182, 0x0000 }, /* R386 - FLL1 Synchroniser 2 */ 23262306a36Sopenharmony_ci { 0x00000183, 0x0000 }, /* R387 - FLL1 Synchroniser 3 */ 23362306a36Sopenharmony_ci { 0x00000184, 0x0000 }, /* R388 - FLL1 Synchroniser 4 */ 23462306a36Sopenharmony_ci { 0x00000185, 0x0000 }, /* R389 - FLL1 Synchroniser 5 */ 23562306a36Sopenharmony_ci { 0x00000186, 0x0000 }, /* R390 - FLL1 Synchroniser 6 */ 23662306a36Sopenharmony_ci { 0x00000187, 0x0001 }, /* R391 - FLL1 Synchroniser 7 */ 23762306a36Sopenharmony_ci { 0x00000189, 0x0000 }, /* R393 - FLL1 Spread Spectrum */ 23862306a36Sopenharmony_ci { 0x0000018A, 0x0004 }, /* R394 - FLL1 GPIO Clock */ 23962306a36Sopenharmony_ci { 0x00000191, 0x0000 }, /* R401 - FLL2 Control 1 */ 24062306a36Sopenharmony_ci { 0x00000192, 0x0008 }, /* R402 - FLL2 Control 2 */ 24162306a36Sopenharmony_ci { 0x00000193, 0x0018 }, /* R403 - FLL2 Control 3 */ 24262306a36Sopenharmony_ci { 0x00000194, 0x007D }, /* R404 - FLL2 Control 4 */ 24362306a36Sopenharmony_ci { 0x00000195, 0x0004 }, /* R405 - FLL2 Control 5 */ 24462306a36Sopenharmony_ci { 0x00000196, 0x0000 }, /* R406 - FLL2 Control 6 */ 24562306a36Sopenharmony_ci { 0x00000199, 0x0000 }, /* R409 - FLL2 Control 7 */ 24662306a36Sopenharmony_ci { 0x000001A1, 0x0000 }, /* R417 - FLL2 Synchroniser 1 */ 24762306a36Sopenharmony_ci { 0x000001A2, 0x0000 }, /* R418 - FLL2 Synchroniser 2 */ 24862306a36Sopenharmony_ci { 0x000001A3, 0x0000 }, /* R419 - FLL2 Synchroniser 3 */ 24962306a36Sopenharmony_ci { 0x000001A4, 0x0000 }, /* R420 - FLL2 Synchroniser 4 */ 25062306a36Sopenharmony_ci { 0x000001A5, 0x0000 }, /* R421 - FLL2 Synchroniser 5 */ 25162306a36Sopenharmony_ci { 0x000001A6, 0x0000 }, /* R422 - FLL2 Synchroniser 6 */ 25262306a36Sopenharmony_ci { 0x000001A7, 0x0001 }, /* R423 - FLL2 Synchroniser 7 */ 25362306a36Sopenharmony_ci { 0x000001A9, 0x0000 }, /* R425 - FLL2 Spread Spectrum */ 25462306a36Sopenharmony_ci { 0x000001AA, 0x0004 }, /* R426 - FLL2 GPIO Clock */ 25562306a36Sopenharmony_ci { 0x00000200, 0x0006 }, /* R512 - Mic Charge Pump 1 */ 25662306a36Sopenharmony_ci { 0x00000210, 0x00D4 }, /* R528 - LDO1 Control 1 */ 25762306a36Sopenharmony_ci { 0x00000212, 0x0000 }, /* R530 - LDO1 Control 2 */ 25862306a36Sopenharmony_ci { 0x00000213, 0x0344 }, /* R531 - LDO2 Control 1 */ 25962306a36Sopenharmony_ci { 0x00000218, 0x01A6 }, /* R536 - Mic Bias Ctrl 1 */ 26062306a36Sopenharmony_ci { 0x00000219, 0x01A6 }, /* R537 - Mic Bias Ctrl 2 */ 26162306a36Sopenharmony_ci { 0x0000021A, 0x01A6 }, /* R538 - Mic Bias Ctrl 3 */ 26262306a36Sopenharmony_ci { 0x00000293, 0x0080 }, /* R659 - Accessory Detect Mode 1 */ 26362306a36Sopenharmony_ci { 0x0000029B, 0x0000 }, /* R667 - Headphone Detect 1 */ 26462306a36Sopenharmony_ci { 0x000002A2, 0x0000 }, /* R674 - Micd Clamp control */ 26562306a36Sopenharmony_ci { 0x000002A3, 0x1102 }, /* R675 - Mic Detect 1 */ 26662306a36Sopenharmony_ci { 0x000002A4, 0x009F }, /* R676 - Mic Detect 2 */ 26762306a36Sopenharmony_ci { 0x000002A6, 0x3737 }, /* R678 - Mic Detect Level 1 */ 26862306a36Sopenharmony_ci { 0x000002A7, 0x2C37 }, /* R679 - Mic Detect Level 2 */ 26962306a36Sopenharmony_ci { 0x000002A8, 0x1422 }, /* R680 - Mic Detect Level 3 */ 27062306a36Sopenharmony_ci { 0x000002A9, 0x030A }, /* R681 - Mic Detect Level 4 */ 27162306a36Sopenharmony_ci { 0x000002CB, 0x0000 }, /* R715 - Isolation control */ 27262306a36Sopenharmony_ci { 0x000002D3, 0x0000 }, /* R723 - Jack detect analogue */ 27362306a36Sopenharmony_ci { 0x00000300, 0x0000 }, /* R768 - Input Enables */ 27462306a36Sopenharmony_ci { 0x00000308, 0x0000 }, /* R776 - Input Rate */ 27562306a36Sopenharmony_ci { 0x00000309, 0x0022 }, /* R777 - Input Volume Ramp */ 27662306a36Sopenharmony_ci { 0x0000030C, 0x0002 }, /* R780 - HPF Control */ 27762306a36Sopenharmony_ci { 0x00000310, 0x2080 }, /* R784 - IN1L Control */ 27862306a36Sopenharmony_ci { 0x00000311, 0x0180 }, /* R785 - ADC Digital Volume 1L */ 27962306a36Sopenharmony_ci { 0x00000312, 0x0000 }, /* R786 - DMIC1L Control */ 28062306a36Sopenharmony_ci { 0x00000314, 0x0080 }, /* R788 - IN1R Control */ 28162306a36Sopenharmony_ci { 0x00000315, 0x0180 }, /* R789 - ADC Digital Volume 1R */ 28262306a36Sopenharmony_ci { 0x00000316, 0x0000 }, /* R790 - DMIC1R Control */ 28362306a36Sopenharmony_ci { 0x00000318, 0x2080 }, /* R792 - IN2L Control */ 28462306a36Sopenharmony_ci { 0x00000319, 0x0180 }, /* R793 - ADC Digital Volume 2L */ 28562306a36Sopenharmony_ci { 0x0000031A, 0x0000 }, /* R794 - DMIC2L Control */ 28662306a36Sopenharmony_ci { 0x00000400, 0x0000 }, /* R1024 - Output Enables 1 */ 28762306a36Sopenharmony_ci { 0x00000408, 0x0000 }, /* R1032 - Output Rate 1 */ 28862306a36Sopenharmony_ci { 0x00000409, 0x0022 }, /* R1033 - Output Volume Ramp */ 28962306a36Sopenharmony_ci { 0x00000410, 0x2080 }, /* R1040 - Output Path Config 1L */ 29062306a36Sopenharmony_ci { 0x00000411, 0x0180 }, /* R1041 - DAC Digital Volume 1L */ 29162306a36Sopenharmony_ci { 0x00000413, 0x0001 }, /* R1043 - Noise Gate Select 1L */ 29262306a36Sopenharmony_ci { 0x00000414, 0x0080 }, /* R1044 - Output Path Config 1R */ 29362306a36Sopenharmony_ci { 0x00000415, 0x0180 }, /* R1045 - DAC Digital Volume 1R */ 29462306a36Sopenharmony_ci { 0x00000417, 0x0002 }, /* R1047 - Noise Gate Select 1R */ 29562306a36Sopenharmony_ci { 0x00000418, 0x2080 }, /* R1048 - Output Path Config 2L */ 29662306a36Sopenharmony_ci { 0x00000419, 0x0180 }, /* R1049 - DAC Digital Volume 2L */ 29762306a36Sopenharmony_ci { 0x0000041B, 0x0004 }, /* R1051 - Noise Gate Select 2L */ 29862306a36Sopenharmony_ci { 0x0000041C, 0x0080 }, /* R1052 - Output Path Config 2R */ 29962306a36Sopenharmony_ci { 0x0000041D, 0x0180 }, /* R1053 - DAC Digital Volume 2R */ 30062306a36Sopenharmony_ci { 0x0000041F, 0x0008 }, /* R1055 - Noise Gate Select 2R */ 30162306a36Sopenharmony_ci { 0x00000420, 0x2080 }, /* R1056 - Output Path Config 3L */ 30262306a36Sopenharmony_ci { 0x00000421, 0x0180 }, /* R1057 - DAC Digital Volume 3L */ 30362306a36Sopenharmony_ci { 0x00000423, 0x0010 }, /* R1059 - Noise Gate Select 3L */ 30462306a36Sopenharmony_ci { 0x00000428, 0x0000 }, /* R1064 - Output Path Config 4L */ 30562306a36Sopenharmony_ci { 0x00000429, 0x0180 }, /* R1065 - DAC Digital Volume 4L */ 30662306a36Sopenharmony_ci { 0x0000042B, 0x0040 }, /* R1067 - Noise Gate Select 4L */ 30762306a36Sopenharmony_ci { 0x0000042C, 0x0000 }, /* R1068 - Output Path Config 4R */ 30862306a36Sopenharmony_ci { 0x0000042D, 0x0180 }, /* R1069 - DAC Digital Volume 4R */ 30962306a36Sopenharmony_ci { 0x0000042F, 0x0080 }, /* R1071 - Noise Gate Select 4R */ 31062306a36Sopenharmony_ci { 0x00000430, 0x0000 }, /* R1072 - Output Path Config 5L */ 31162306a36Sopenharmony_ci { 0x00000431, 0x0180 }, /* R1073 - DAC Digital Volume 5L */ 31262306a36Sopenharmony_ci { 0x00000433, 0x0100 }, /* R1075 - Noise Gate Select 5L */ 31362306a36Sopenharmony_ci { 0x00000434, 0x0000 }, /* R1076 - Output Path Config 5R */ 31462306a36Sopenharmony_ci { 0x00000435, 0x0180 }, /* R1077 - DAC Digital Volume 5R */ 31562306a36Sopenharmony_ci { 0x00000437, 0x0200 }, /* R1079 - Noise Gate Select 5R */ 31662306a36Sopenharmony_ci { 0x00000440, 0x002F }, /* R1088 - DRE Enable */ 31762306a36Sopenharmony_ci { 0x00000441, 0xC759 }, /* R1089 - DRE Control 1 */ 31862306a36Sopenharmony_ci { 0x00000442, 0x2A08 }, /* R1089 - DRE Control 2 */ 31962306a36Sopenharmony_ci { 0x00000443, 0x5CFA }, /* R1089 - DRE Control 3 */ 32062306a36Sopenharmony_ci { 0x00000448, 0x03EF }, /* R1096 - EDRE Enable */ 32162306a36Sopenharmony_ci { 0x00000450, 0x0000 }, /* R1104 - DAC AEC Control 1 */ 32262306a36Sopenharmony_ci { 0x00000451, 0x0000 }, /* R1105 - DAC AEC Control 2 */ 32362306a36Sopenharmony_ci { 0x00000458, 0x0000 }, /* R1112 - Noise Gate Control */ 32462306a36Sopenharmony_ci { 0x00000490, 0x0069 }, /* R1168 - PDM SPK1 CTRL 1 */ 32562306a36Sopenharmony_ci { 0x00000491, 0x0000 }, /* R1169 - PDM SPK1 CTRL 2 */ 32662306a36Sopenharmony_ci { 0x0000049A, 0x0000 }, /* R1178 - HP_TEST_CTRL_13 */ 32762306a36Sopenharmony_ci { 0x00000500, 0x000C }, /* R1280 - AIF1 BCLK Ctrl */ 32862306a36Sopenharmony_ci { 0x00000501, 0x0008 }, /* R1281 - AIF1 Tx Pin Ctrl */ 32962306a36Sopenharmony_ci { 0x00000502, 0x0000 }, /* R1282 - AIF1 Rx Pin Ctrl */ 33062306a36Sopenharmony_ci { 0x00000503, 0x0000 }, /* R1283 - AIF1 Rate Ctrl */ 33162306a36Sopenharmony_ci { 0x00000504, 0x0000 }, /* R1284 - AIF1 Format */ 33262306a36Sopenharmony_ci { 0x00000506, 0x0040 }, /* R1286 - AIF1 Rx BCLK Rate */ 33362306a36Sopenharmony_ci { 0x00000507, 0x1818 }, /* R1287 - AIF1 Frame Ctrl 1 */ 33462306a36Sopenharmony_ci { 0x00000508, 0x1818 }, /* R1288 - AIF1 Frame Ctrl 2 */ 33562306a36Sopenharmony_ci { 0x00000509, 0x0000 }, /* R1289 - AIF1 Frame Ctrl 3 */ 33662306a36Sopenharmony_ci { 0x0000050A, 0x0001 }, /* R1290 - AIF1 Frame Ctrl 4 */ 33762306a36Sopenharmony_ci { 0x0000050B, 0x0002 }, /* R1291 - AIF1 Frame Ctrl 5 */ 33862306a36Sopenharmony_ci { 0x0000050C, 0x0003 }, /* R1292 - AIF1 Frame Ctrl 6 */ 33962306a36Sopenharmony_ci { 0x0000050D, 0x0004 }, /* R1293 - AIF1 Frame Ctrl 7 */ 34062306a36Sopenharmony_ci { 0x0000050E, 0x0005 }, /* R1294 - AIF1 Frame Ctrl 8 */ 34162306a36Sopenharmony_ci { 0x00000511, 0x0000 }, /* R1297 - AIF1 Frame Ctrl 11 */ 34262306a36Sopenharmony_ci { 0x00000512, 0x0001 }, /* R1298 - AIF1 Frame Ctrl 12 */ 34362306a36Sopenharmony_ci { 0x00000513, 0x0002 }, /* R1299 - AIF1 Frame Ctrl 13 */ 34462306a36Sopenharmony_ci { 0x00000514, 0x0003 }, /* R1300 - AIF1 Frame Ctrl 14 */ 34562306a36Sopenharmony_ci { 0x00000515, 0x0004 }, /* R1301 - AIF1 Frame Ctrl 15 */ 34662306a36Sopenharmony_ci { 0x00000516, 0x0005 }, /* R1302 - AIF1 Frame Ctrl 16 */ 34762306a36Sopenharmony_ci { 0x00000519, 0x0000 }, /* R1305 - AIF1 Tx Enables */ 34862306a36Sopenharmony_ci { 0x0000051A, 0x0000 }, /* R1306 - AIF1 Rx Enables */ 34962306a36Sopenharmony_ci { 0x00000540, 0x000C }, /* R1344 - AIF2 BCLK Ctrl */ 35062306a36Sopenharmony_ci { 0x00000541, 0x0008 }, /* R1345 - AIF2 Tx Pin Ctrl */ 35162306a36Sopenharmony_ci { 0x00000542, 0x0000 }, /* R1346 - AIF2 Rx Pin Ctrl */ 35262306a36Sopenharmony_ci { 0x00000543, 0x0000 }, /* R1347 - AIF2 Rate Ctrl */ 35362306a36Sopenharmony_ci { 0x00000544, 0x0000 }, /* R1348 - AIF2 Format */ 35462306a36Sopenharmony_ci { 0x00000546, 0x0040 }, /* R1350 - AIF2 Rx BCLK Rate */ 35562306a36Sopenharmony_ci { 0x00000547, 0x1818 }, /* R1351 - AIF2 Frame Ctrl 1 */ 35662306a36Sopenharmony_ci { 0x00000548, 0x1818 }, /* R1352 - AIF2 Frame Ctrl 2 */ 35762306a36Sopenharmony_ci { 0x00000549, 0x0000 }, /* R1353 - AIF2 Frame Ctrl 3 */ 35862306a36Sopenharmony_ci { 0x0000054A, 0x0001 }, /* R1354 - AIF2 Frame Ctrl 4 */ 35962306a36Sopenharmony_ci { 0x0000054B, 0x0002 }, /* R1355 - AIF2 Frame Ctrl 5 */ 36062306a36Sopenharmony_ci { 0x0000054C, 0x0003 }, /* R1356 - AIF2 Frame Ctrl 6 */ 36162306a36Sopenharmony_ci { 0x0000054D, 0x0004 }, /* R1357 - AIF2 Frame Ctrl 7 */ 36262306a36Sopenharmony_ci { 0x0000054E, 0x0005 }, /* R1358 - AIF2 Frame Ctrl 8 */ 36362306a36Sopenharmony_ci { 0x00000551, 0x0000 }, /* R1361 - AIF2 Frame Ctrl 11 */ 36462306a36Sopenharmony_ci { 0x00000552, 0x0001 }, /* R1362 - AIF2 Frame Ctrl 12 */ 36562306a36Sopenharmony_ci { 0x00000553, 0x0002 }, /* R1363 - AIF2 Frame Ctrl 13 */ 36662306a36Sopenharmony_ci { 0x00000554, 0x0003 }, /* R1364 - AIF2 Frame Ctrl 14 */ 36762306a36Sopenharmony_ci { 0x00000555, 0x0004 }, /* R1365 - AIF2 Frame Ctrl 15 */ 36862306a36Sopenharmony_ci { 0x00000556, 0x0005 }, /* R1366 - AIF2 Frame Ctrl 16 */ 36962306a36Sopenharmony_ci { 0x00000559, 0x0000 }, /* R1369 - AIF2 Tx Enables */ 37062306a36Sopenharmony_ci { 0x0000055A, 0x0000 }, /* R1370 - AIF2 Rx Enables */ 37162306a36Sopenharmony_ci { 0x00000580, 0x000C }, /* R1408 - AIF3 BCLK Ctrl */ 37262306a36Sopenharmony_ci { 0x00000581, 0x0008 }, /* R1409 - AIF3 Tx Pin Ctrl */ 37362306a36Sopenharmony_ci { 0x00000582, 0x0000 }, /* R1410 - AIF3 Rx Pin Ctrl */ 37462306a36Sopenharmony_ci { 0x00000583, 0x0000 }, /* R1411 - AIF3 Rate Ctrl */ 37562306a36Sopenharmony_ci { 0x00000584, 0x0000 }, /* R1412 - AIF3 Format */ 37662306a36Sopenharmony_ci { 0x00000586, 0x0040 }, /* R1414 - AIF3 Rx BCLK Rate */ 37762306a36Sopenharmony_ci { 0x00000587, 0x1818 }, /* R1415 - AIF3 Frame Ctrl 1 */ 37862306a36Sopenharmony_ci { 0x00000588, 0x1818 }, /* R1416 - AIF3 Frame Ctrl 2 */ 37962306a36Sopenharmony_ci { 0x00000589, 0x0000 }, /* R1417 - AIF3 Frame Ctrl 3 */ 38062306a36Sopenharmony_ci { 0x0000058A, 0x0001 }, /* R1418 - AIF3 Frame Ctrl 4 */ 38162306a36Sopenharmony_ci { 0x00000591, 0x0000 }, /* R1425 - AIF3 Frame Ctrl 11 */ 38262306a36Sopenharmony_ci { 0x00000592, 0x0001 }, /* R1426 - AIF3 Frame Ctrl 12 */ 38362306a36Sopenharmony_ci { 0x00000599, 0x0000 }, /* R1433 - AIF3 Tx Enables */ 38462306a36Sopenharmony_ci { 0x0000059A, 0x0000 }, /* R1434 - AIF3 Rx Enables */ 38562306a36Sopenharmony_ci { 0x000005C2, 0x0000 }, /* R1474 - SPD1 TX Control */ 38662306a36Sopenharmony_ci { 0x000005C3, 0x0000 }, /* R1475 - SPD1 TX Channel Status 1 */ 38762306a36Sopenharmony_ci { 0x000005C4, 0x0B01 }, /* R1476 - SPD1 TX Channel Status 2 */ 38862306a36Sopenharmony_ci { 0x000005C5, 0x0000 }, /* R1477 - SPD1 TX Channel Status 3 */ 38962306a36Sopenharmony_ci { 0x000005E3, 0x0004 }, /* R1507 - SLIMbus Framer Ref Gear */ 39062306a36Sopenharmony_ci { 0x000005E5, 0x0000 }, /* R1509 - SLIMbus Rates 1 */ 39162306a36Sopenharmony_ci { 0x000005E6, 0x0000 }, /* R1510 - SLIMbus Rates 2 */ 39262306a36Sopenharmony_ci { 0x000005E9, 0x0000 }, /* R1513 - SLIMbus Rates 5 */ 39362306a36Sopenharmony_ci { 0x000005EA, 0x0000 }, /* R1514 - SLIMbus Rates 6 */ 39462306a36Sopenharmony_ci { 0x000005EB, 0x0000 }, /* R1515 - SLIMbus Rates 7 */ 39562306a36Sopenharmony_ci { 0x000005F5, 0x0000 }, /* R1525 - SLIMbus RX Channel Enable */ 39662306a36Sopenharmony_ci { 0x000005F6, 0x0000 }, /* R1526 - SLIMbus TX Channel Enable */ 39762306a36Sopenharmony_ci { 0x00000640, 0x0000 }, /* R1600 - PWM1MIX Input 1 Source */ 39862306a36Sopenharmony_ci { 0x00000641, 0x0080 }, /* R1601 - PWM1MIX Input 1 Volume */ 39962306a36Sopenharmony_ci { 0x00000642, 0x0000 }, /* R1602 - PWM1MIX Input 2 Source */ 40062306a36Sopenharmony_ci { 0x00000643, 0x0080 }, /* R1603 - PWM1MIX Input 2 Volume */ 40162306a36Sopenharmony_ci { 0x00000644, 0x0000 }, /* R1604 - PWM1MIX Input 3 Source */ 40262306a36Sopenharmony_ci { 0x00000645, 0x0080 }, /* R1605 - PWM1MIX Input 3 Volume */ 40362306a36Sopenharmony_ci { 0x00000646, 0x0000 }, /* R1606 - PWM1MIX Input 4 Source */ 40462306a36Sopenharmony_ci { 0x00000647, 0x0080 }, /* R1607 - PWM1MIX Input 4 Volume */ 40562306a36Sopenharmony_ci { 0x00000648, 0x0000 }, /* R1608 - PWM2MIX Input 1 Source */ 40662306a36Sopenharmony_ci { 0x00000649, 0x0080 }, /* R1609 - PWM2MIX Input 1 Volume */ 40762306a36Sopenharmony_ci { 0x0000064A, 0x0000 }, /* R1610 - PWM2MIX Input 2 Source */ 40862306a36Sopenharmony_ci { 0x0000064B, 0x0080 }, /* R1611 - PWM2MIX Input 2 Volume */ 40962306a36Sopenharmony_ci { 0x0000064C, 0x0000 }, /* R1612 - PWM2MIX Input 3 Source */ 41062306a36Sopenharmony_ci { 0x0000064D, 0x0080 }, /* R1613 - PWM2MIX Input 3 Volume */ 41162306a36Sopenharmony_ci { 0x0000064E, 0x0000 }, /* R1614 - PWM2MIX Input 4 Source */ 41262306a36Sopenharmony_ci { 0x0000064F, 0x0080 }, /* R1615 - PWM2MIX Input 4 Volume */ 41362306a36Sopenharmony_ci { 0x00000680, 0x0000 }, /* R1664 - OUT1LMIX Input 1 Source */ 41462306a36Sopenharmony_ci { 0x00000681, 0x0080 }, /* R1665 - OUT1LMIX Input 1 Volume */ 41562306a36Sopenharmony_ci { 0x00000682, 0x0000 }, /* R1666 - OUT1LMIX Input 2 Source */ 41662306a36Sopenharmony_ci { 0x00000683, 0x0080 }, /* R1667 - OUT1LMIX Input 2 Volume */ 41762306a36Sopenharmony_ci { 0x00000684, 0x0000 }, /* R1668 - OUT1LMIX Input 3 Source */ 41862306a36Sopenharmony_ci { 0x00000685, 0x0080 }, /* R1669 - OUT1LMIX Input 3 Volume */ 41962306a36Sopenharmony_ci { 0x00000686, 0x0000 }, /* R1670 - OUT1LMIX Input 4 Source */ 42062306a36Sopenharmony_ci { 0x00000687, 0x0080 }, /* R1671 - OUT1LMIX Input 4 Volume */ 42162306a36Sopenharmony_ci { 0x00000688, 0x0000 }, /* R1672 - OUT1RMIX Input 1 Source */ 42262306a36Sopenharmony_ci { 0x00000689, 0x0080 }, /* R1673 - OUT1RMIX Input 1 Volume */ 42362306a36Sopenharmony_ci { 0x0000068A, 0x0000 }, /* R1674 - OUT1RMIX Input 2 Source */ 42462306a36Sopenharmony_ci { 0x0000068B, 0x0080 }, /* R1675 - OUT1RMIX Input 2 Volume */ 42562306a36Sopenharmony_ci { 0x0000068C, 0x0000 }, /* R1676 - OUT1RMIX Input 3 Source */ 42662306a36Sopenharmony_ci { 0x0000068D, 0x0080 }, /* R1677 - OUT1RMIX Input 3 Volume */ 42762306a36Sopenharmony_ci { 0x0000068E, 0x0000 }, /* R1678 - OUT1RMIX Input 4 Source */ 42862306a36Sopenharmony_ci { 0x0000068F, 0x0080 }, /* R1679 - OUT1RMIX Input 4 Volume */ 42962306a36Sopenharmony_ci { 0x00000690, 0x0000 }, /* R1680 - OUT2LMIX Input 1 Source */ 43062306a36Sopenharmony_ci { 0x00000691, 0x0080 }, /* R1681 - OUT2LMIX Input 1 Volume */ 43162306a36Sopenharmony_ci { 0x00000692, 0x0000 }, /* R1682 - OUT2LMIX Input 2 Source */ 43262306a36Sopenharmony_ci { 0x00000693, 0x0080 }, /* R1683 - OUT2LMIX Input 2 Volume */ 43362306a36Sopenharmony_ci { 0x00000694, 0x0000 }, /* R1684 - OUT2LMIX Input 3 Source */ 43462306a36Sopenharmony_ci { 0x00000695, 0x0080 }, /* R1685 - OUT2LMIX Input 3 Volume */ 43562306a36Sopenharmony_ci { 0x00000696, 0x0000 }, /* R1686 - OUT2LMIX Input 4 Source */ 43662306a36Sopenharmony_ci { 0x00000697, 0x0080 }, /* R1687 - OUT2LMIX Input 4 Volume */ 43762306a36Sopenharmony_ci { 0x00000698, 0x0000 }, /* R1688 - OUT2RMIX Input 1 Source */ 43862306a36Sopenharmony_ci { 0x00000699, 0x0080 }, /* R1689 - OUT2RMIX Input 1 Volume */ 43962306a36Sopenharmony_ci { 0x0000069A, 0x0000 }, /* R1690 - OUT2RMIX Input 2 Source */ 44062306a36Sopenharmony_ci { 0x0000069B, 0x0080 }, /* R1691 - OUT2RMIX Input 2 Volume */ 44162306a36Sopenharmony_ci { 0x0000069C, 0x0000 }, /* R1692 - OUT2RMIX Input 3 Source */ 44262306a36Sopenharmony_ci { 0x0000069D, 0x0080 }, /* R1693 - OUT2RMIX Input 3 Volume */ 44362306a36Sopenharmony_ci { 0x0000069E, 0x0000 }, /* R1694 - OUT2RMIX Input 4 Source */ 44462306a36Sopenharmony_ci { 0x0000069F, 0x0080 }, /* R1695 - OUT2RMIX Input 4 Volume */ 44562306a36Sopenharmony_ci { 0x000006A0, 0x0000 }, /* R1696 - OUT3LMIX Input 1 Source */ 44662306a36Sopenharmony_ci { 0x000006A1, 0x0080 }, /* R1697 - OUT3LMIX Input 1 Volume */ 44762306a36Sopenharmony_ci { 0x000006A2, 0x0000 }, /* R1698 - OUT3LMIX Input 2 Source */ 44862306a36Sopenharmony_ci { 0x000006A3, 0x0080 }, /* R1699 - OUT3LMIX Input 2 Volume */ 44962306a36Sopenharmony_ci { 0x000006A4, 0x0000 }, /* R1700 - OUT3LMIX Input 3 Source */ 45062306a36Sopenharmony_ci { 0x000006A5, 0x0080 }, /* R1701 - OUT3LMIX Input 3 Volume */ 45162306a36Sopenharmony_ci { 0x000006A6, 0x0000 }, /* R1702 - OUT3LMIX Input 4 Source */ 45262306a36Sopenharmony_ci { 0x000006A7, 0x0080 }, /* R1703 - OUT3LMIX Input 4 Volume */ 45362306a36Sopenharmony_ci { 0x000006B0, 0x0000 }, /* R1712 - OUT4LMIX Input 1 Source */ 45462306a36Sopenharmony_ci { 0x000006B1, 0x0080 }, /* R1713 - OUT4LMIX Input 1 Volume */ 45562306a36Sopenharmony_ci { 0x000006B2, 0x0000 }, /* R1714 - OUT4LMIX Input 2 Source */ 45662306a36Sopenharmony_ci { 0x000006B3, 0x0080 }, /* R1715 - OUT4LMIX Input 2 Volume */ 45762306a36Sopenharmony_ci { 0x000006B4, 0x0000 }, /* R1716 - OUT4LMIX Input 3 Source */ 45862306a36Sopenharmony_ci { 0x000006B5, 0x0080 }, /* R1717 - OUT4LMIX Input 3 Volume */ 45962306a36Sopenharmony_ci { 0x000006B6, 0x0000 }, /* R1718 - OUT4LMIX Input 4 Source */ 46062306a36Sopenharmony_ci { 0x000006B7, 0x0080 }, /* R1719 - OUT4LMIX Input 4 Volume */ 46162306a36Sopenharmony_ci { 0x000006B8, 0x0000 }, /* R1720 - OUT4RMIX Input 1 Source */ 46262306a36Sopenharmony_ci { 0x000006B9, 0x0080 }, /* R1721 - OUT4RMIX Input 1 Volume */ 46362306a36Sopenharmony_ci { 0x000006BA, 0x0000 }, /* R1722 - OUT4RMIX Input 2 Source */ 46462306a36Sopenharmony_ci { 0x000006BB, 0x0080 }, /* R1723 - OUT4RMIX Input 2 Volume */ 46562306a36Sopenharmony_ci { 0x000006BC, 0x0000 }, /* R1724 - OUT4RMIX Input 3 Source */ 46662306a36Sopenharmony_ci { 0x000006BD, 0x0080 }, /* R1725 - OUT4RMIX Input 3 Volume */ 46762306a36Sopenharmony_ci { 0x000006BE, 0x0000 }, /* R1726 - OUT4RMIX Input 4 Source */ 46862306a36Sopenharmony_ci { 0x000006BF, 0x0080 }, /* R1727 - OUT4RMIX Input 4 Volume */ 46962306a36Sopenharmony_ci { 0x000006C0, 0x0000 }, /* R1728 - OUT5LMIX Input 1 Source */ 47062306a36Sopenharmony_ci { 0x000006C1, 0x0080 }, /* R1729 - OUT5LMIX Input 1 Volume */ 47162306a36Sopenharmony_ci { 0x000006C2, 0x0000 }, /* R1730 - OUT5LMIX Input 2 Source */ 47262306a36Sopenharmony_ci { 0x000006C3, 0x0080 }, /* R1731 - OUT5LMIX Input 2 Volume */ 47362306a36Sopenharmony_ci { 0x000006C4, 0x0000 }, /* R1732 - OUT5LMIX Input 3 Source */ 47462306a36Sopenharmony_ci { 0x000006C5, 0x0080 }, /* R1733 - OUT5LMIX Input 3 Volume */ 47562306a36Sopenharmony_ci { 0x000006C6, 0x0000 }, /* R1734 - OUT5LMIX Input 4 Source */ 47662306a36Sopenharmony_ci { 0x000006C7, 0x0080 }, /* R1735 - OUT5LMIX Input 4 Volume */ 47762306a36Sopenharmony_ci { 0x000006C8, 0x0000 }, /* R1736 - OUT5RMIX Input 1 Source */ 47862306a36Sopenharmony_ci { 0x000006C9, 0x0080 }, /* R1737 - OUT5RMIX Input 1 Volume */ 47962306a36Sopenharmony_ci { 0x000006CA, 0x0000 }, /* R1738 - OUT5RMIX Input 2 Source */ 48062306a36Sopenharmony_ci { 0x000006CB, 0x0080 }, /* R1739 - OUT5RMIX Input 2 Volume */ 48162306a36Sopenharmony_ci { 0x000006CC, 0x0000 }, /* R1740 - OUT5RMIX Input 3 Source */ 48262306a36Sopenharmony_ci { 0x000006CD, 0x0080 }, /* R1741 - OUT5RMIX Input 3 Volume */ 48362306a36Sopenharmony_ci { 0x000006CE, 0x0000 }, /* R1742 - OUT5RMIX Input 4 Source */ 48462306a36Sopenharmony_ci { 0x000006CF, 0x0080 }, /* R1743 - OUT5RMIX Input 4 Volume */ 48562306a36Sopenharmony_ci { 0x00000700, 0x0000 }, /* R1792 - AIF1TX1MIX Input 1 Source */ 48662306a36Sopenharmony_ci { 0x00000701, 0x0080 }, /* R1793 - AIF1TX1MIX Input 1 Volume */ 48762306a36Sopenharmony_ci { 0x00000702, 0x0000 }, /* R1794 - AIF1TX1MIX Input 2 Source */ 48862306a36Sopenharmony_ci { 0x00000703, 0x0080 }, /* R1795 - AIF1TX1MIX Input 2 Volume */ 48962306a36Sopenharmony_ci { 0x00000704, 0x0000 }, /* R1796 - AIF1TX1MIX Input 3 Source */ 49062306a36Sopenharmony_ci { 0x00000705, 0x0080 }, /* R1797 - AIF1TX1MIX Input 3 Volume */ 49162306a36Sopenharmony_ci { 0x00000706, 0x0000 }, /* R1798 - AIF1TX1MIX Input 4 Source */ 49262306a36Sopenharmony_ci { 0x00000707, 0x0080 }, /* R1799 - AIF1TX1MIX Input 4 Volume */ 49362306a36Sopenharmony_ci { 0x00000708, 0x0000 }, /* R1800 - AIF1TX2MIX Input 1 Source */ 49462306a36Sopenharmony_ci { 0x00000709, 0x0080 }, /* R1801 - AIF1TX2MIX Input 1 Volume */ 49562306a36Sopenharmony_ci { 0x0000070A, 0x0000 }, /* R1802 - AIF1TX2MIX Input 2 Source */ 49662306a36Sopenharmony_ci { 0x0000070B, 0x0080 }, /* R1803 - AIF1TX2MIX Input 2 Volume */ 49762306a36Sopenharmony_ci { 0x0000070C, 0x0000 }, /* R1804 - AIF1TX2MIX Input 3 Source */ 49862306a36Sopenharmony_ci { 0x0000070D, 0x0080 }, /* R1805 - AIF1TX2MIX Input 3 Volume */ 49962306a36Sopenharmony_ci { 0x0000070E, 0x0000 }, /* R1806 - AIF1TX2MIX Input 4 Source */ 50062306a36Sopenharmony_ci { 0x0000070F, 0x0080 }, /* R1807 - AIF1TX2MIX Input 4 Volume */ 50162306a36Sopenharmony_ci { 0x00000710, 0x0000 }, /* R1808 - AIF1TX3MIX Input 1 Source */ 50262306a36Sopenharmony_ci { 0x00000711, 0x0080 }, /* R1809 - AIF1TX3MIX Input 1 Volume */ 50362306a36Sopenharmony_ci { 0x00000712, 0x0000 }, /* R1810 - AIF1TX3MIX Input 2 Source */ 50462306a36Sopenharmony_ci { 0x00000713, 0x0080 }, /* R1811 - AIF1TX3MIX Input 2 Volume */ 50562306a36Sopenharmony_ci { 0x00000714, 0x0000 }, /* R1812 - AIF1TX3MIX Input 3 Source */ 50662306a36Sopenharmony_ci { 0x00000715, 0x0080 }, /* R1813 - AIF1TX3MIX Input 3 Volume */ 50762306a36Sopenharmony_ci { 0x00000716, 0x0000 }, /* R1814 - AIF1TX3MIX Input 4 Source */ 50862306a36Sopenharmony_ci { 0x00000717, 0x0080 }, /* R1815 - AIF1TX3MIX Input 4 Volume */ 50962306a36Sopenharmony_ci { 0x00000718, 0x0000 }, /* R1816 - AIF1TX4MIX Input 1 Source */ 51062306a36Sopenharmony_ci { 0x00000719, 0x0080 }, /* R1817 - AIF1TX4MIX Input 1 Volume */ 51162306a36Sopenharmony_ci { 0x0000071A, 0x0000 }, /* R1818 - AIF1TX4MIX Input 2 Source */ 51262306a36Sopenharmony_ci { 0x0000071B, 0x0080 }, /* R1819 - AIF1TX4MIX Input 2 Volume */ 51362306a36Sopenharmony_ci { 0x0000071C, 0x0000 }, /* R1820 - AIF1TX4MIX Input 3 Source */ 51462306a36Sopenharmony_ci { 0x0000071D, 0x0080 }, /* R1821 - AIF1TX4MIX Input 3 Volume */ 51562306a36Sopenharmony_ci { 0x0000071E, 0x0000 }, /* R1822 - AIF1TX4MIX Input 4 Source */ 51662306a36Sopenharmony_ci { 0x0000071F, 0x0080 }, /* R1823 - AIF1TX4MIX Input 4 Volume */ 51762306a36Sopenharmony_ci { 0x00000720, 0x0000 }, /* R1824 - AIF1TX5MIX Input 1 Source */ 51862306a36Sopenharmony_ci { 0x00000721, 0x0080 }, /* R1825 - AIF1TX5MIX Input 1 Volume */ 51962306a36Sopenharmony_ci { 0x00000722, 0x0000 }, /* R1826 - AIF1TX5MIX Input 2 Source */ 52062306a36Sopenharmony_ci { 0x00000723, 0x0080 }, /* R1827 - AIF1TX5MIX Input 2 Volume */ 52162306a36Sopenharmony_ci { 0x00000724, 0x0000 }, /* R1828 - AIF1TX5MIX Input 3 Source */ 52262306a36Sopenharmony_ci { 0x00000725, 0x0080 }, /* R1829 - AIF1TX5MIX Input 3 Volume */ 52362306a36Sopenharmony_ci { 0x00000726, 0x0000 }, /* R1830 - AIF1TX5MIX Input 4 Source */ 52462306a36Sopenharmony_ci { 0x00000727, 0x0080 }, /* R1831 - AIF1TX5MIX Input 4 Volume */ 52562306a36Sopenharmony_ci { 0x00000728, 0x0000 }, /* R1832 - AIF1TX6MIX Input 1 Source */ 52662306a36Sopenharmony_ci { 0x00000729, 0x0080 }, /* R1833 - AIF1TX6MIX Input 1 Volume */ 52762306a36Sopenharmony_ci { 0x0000072A, 0x0000 }, /* R1834 - AIF1TX6MIX Input 2 Source */ 52862306a36Sopenharmony_ci { 0x0000072B, 0x0080 }, /* R1835 - AIF1TX6MIX Input 2 Volume */ 52962306a36Sopenharmony_ci { 0x0000072C, 0x0000 }, /* R1836 - AIF1TX6MIX Input 3 Source */ 53062306a36Sopenharmony_ci { 0x0000072D, 0x0080 }, /* R1837 - AIF1TX6MIX Input 3 Volume */ 53162306a36Sopenharmony_ci { 0x0000072E, 0x0000 }, /* R1838 - AIF1TX6MIX Input 4 Source */ 53262306a36Sopenharmony_ci { 0x0000072F, 0x0080 }, /* R1839 - AIF1TX6MIX Input 4 Volume */ 53362306a36Sopenharmony_ci { 0x00000740, 0x0000 }, /* R1856 - AIF2TX1MIX Input 1 Source */ 53462306a36Sopenharmony_ci { 0x00000741, 0x0080 }, /* R1857 - AIF2TX1MIX Input 1 Volume */ 53562306a36Sopenharmony_ci { 0x00000742, 0x0000 }, /* R1858 - AIF2TX1MIX Input 2 Source */ 53662306a36Sopenharmony_ci { 0x00000743, 0x0080 }, /* R1859 - AIF2TX1MIX Input 2 Volume */ 53762306a36Sopenharmony_ci { 0x00000744, 0x0000 }, /* R1860 - AIF2TX1MIX Input 3 Source */ 53862306a36Sopenharmony_ci { 0x00000745, 0x0080 }, /* R1861 - AIF2TX1MIX Input 3 Volume */ 53962306a36Sopenharmony_ci { 0x00000746, 0x0000 }, /* R1862 - AIF2TX1MIX Input 4 Source */ 54062306a36Sopenharmony_ci { 0x00000747, 0x0080 }, /* R1863 - AIF2TX1MIX Input 4 Volume */ 54162306a36Sopenharmony_ci { 0x00000748, 0x0000 }, /* R1864 - AIF2TX2MIX Input 1 Source */ 54262306a36Sopenharmony_ci { 0x00000749, 0x0080 }, /* R1865 - AIF2TX2MIX Input 1 Volume */ 54362306a36Sopenharmony_ci { 0x0000074A, 0x0000 }, /* R1866 - AIF2TX2MIX Input 2 Source */ 54462306a36Sopenharmony_ci { 0x0000074B, 0x0080 }, /* R1867 - AIF2TX2MIX Input 2 Volume */ 54562306a36Sopenharmony_ci { 0x0000074C, 0x0000 }, /* R1868 - AIF2TX2MIX Input 3 Source */ 54662306a36Sopenharmony_ci { 0x0000074D, 0x0080 }, /* R1869 - AIF2TX2MIX Input 3 Volume */ 54762306a36Sopenharmony_ci { 0x0000074E, 0x0000 }, /* R1870 - AIF2TX2MIX Input 4 Source */ 54862306a36Sopenharmony_ci { 0x0000074F, 0x0080 }, /* R1871 - AIF2TX2MIX Input 4 Volume */ 54962306a36Sopenharmony_ci { 0x00000750, 0x0000 }, /* R1872 - AIF2TX3MIX Input 1 Source */ 55062306a36Sopenharmony_ci { 0x00000751, 0x0080 }, /* R1873 - AIF2TX3MIX Input 1 Volume */ 55162306a36Sopenharmony_ci { 0x00000752, 0x0000 }, /* R1874 - AIF2TX3MIX Input 2 Source */ 55262306a36Sopenharmony_ci { 0x00000753, 0x0080 }, /* R1875 - AIF2TX3MIX Input 2 Volume */ 55362306a36Sopenharmony_ci { 0x00000754, 0x0000 }, /* R1876 - AIF2TX3MIX Input 3 Source */ 55462306a36Sopenharmony_ci { 0x00000755, 0x0080 }, /* R1877 - AIF2TX3MIX Input 3 Volume */ 55562306a36Sopenharmony_ci { 0x00000756, 0x0000 }, /* R1878 - AIF2TX3MIX Input 4 Source */ 55662306a36Sopenharmony_ci { 0x00000757, 0x0080 }, /* R1879 - AIF2TX3MIX Input 4 Volume */ 55762306a36Sopenharmony_ci { 0x00000758, 0x0000 }, /* R1880 - AIF2TX4MIX Input 1 Source */ 55862306a36Sopenharmony_ci { 0x00000759, 0x0080 }, /* R1881 - AIF2TX4MIX Input 1 Volume */ 55962306a36Sopenharmony_ci { 0x0000075A, 0x0000 }, /* R1882 - AIF2TX4MIX Input 2 Source */ 56062306a36Sopenharmony_ci { 0x0000075B, 0x0080 }, /* R1883 - AIF2TX4MIX Input 2 Volume */ 56162306a36Sopenharmony_ci { 0x0000075C, 0x0000 }, /* R1884 - AIF2TX4MIX Input 3 Source */ 56262306a36Sopenharmony_ci { 0x0000075D, 0x0080 }, /* R1885 - AIF2TX4MIX Input 3 Volume */ 56362306a36Sopenharmony_ci { 0x0000075E, 0x0000 }, /* R1886 - AIF2TX4MIX Input 4 Source */ 56462306a36Sopenharmony_ci { 0x0000075F, 0x0080 }, /* R1887 - AIF2TX4MIX Input 4 Volume */ 56562306a36Sopenharmony_ci { 0x00000760, 0x0000 }, /* R1888 - AIF2TX5MIX Input 1 Source */ 56662306a36Sopenharmony_ci { 0x00000761, 0x0080 }, /* R1889 - AIF2TX5MIX Input 1 Volume */ 56762306a36Sopenharmony_ci { 0x00000762, 0x0000 }, /* R1890 - AIF2TX5MIX Input 2 Source */ 56862306a36Sopenharmony_ci { 0x00000763, 0x0080 }, /* R1891 - AIF2TX5MIX Input 2 Volume */ 56962306a36Sopenharmony_ci { 0x00000764, 0x0000 }, /* R1892 - AIF2TX5MIX Input 3 Source */ 57062306a36Sopenharmony_ci { 0x00000765, 0x0080 }, /* R1893 - AIF2TX5MIX Input 3 Volume */ 57162306a36Sopenharmony_ci { 0x00000766, 0x0000 }, /* R1894 - AIF2TX5MIX Input 4 Source */ 57262306a36Sopenharmony_ci { 0x00000767, 0x0080 }, /* R1895 - AIF2TX5MIX Input 4 Volume */ 57362306a36Sopenharmony_ci { 0x00000768, 0x0000 }, /* R1896 - AIF2TX6MIX Input 1 Source */ 57462306a36Sopenharmony_ci { 0x00000769, 0x0080 }, /* R1897 - AIF2TX6MIX Input 1 Volume */ 57562306a36Sopenharmony_ci { 0x0000076A, 0x0000 }, /* R1898 - AIF2TX6MIX Input 2 Source */ 57662306a36Sopenharmony_ci { 0x0000076B, 0x0080 }, /* R1899 - AIF2TX6MIX Input 2 Volume */ 57762306a36Sopenharmony_ci { 0x0000076C, 0x0000 }, /* R1900 - AIF2TX6MIX Input 3 Source */ 57862306a36Sopenharmony_ci { 0x0000076D, 0x0080 }, /* R1901 - AIF2TX6MIX Input 3 Volume */ 57962306a36Sopenharmony_ci { 0x0000076E, 0x0000 }, /* R1902 - AIF2TX6MIX Input 4 Source */ 58062306a36Sopenharmony_ci { 0x0000076F, 0x0080 }, /* R1903 - AIF2TX6MIX Input 4 Volume */ 58162306a36Sopenharmony_ci { 0x00000780, 0x0000 }, /* R1920 - AIF3TX1MIX Input 1 Source */ 58262306a36Sopenharmony_ci { 0x00000781, 0x0080 }, /* R1921 - AIF3TX1MIX Input 1 Volume */ 58362306a36Sopenharmony_ci { 0x00000782, 0x0000 }, /* R1922 - AIF3TX1MIX Input 2 Source */ 58462306a36Sopenharmony_ci { 0x00000783, 0x0080 }, /* R1923 - AIF3TX1MIX Input 2 Volume */ 58562306a36Sopenharmony_ci { 0x00000784, 0x0000 }, /* R1924 - AIF3TX1MIX Input 3 Source */ 58662306a36Sopenharmony_ci { 0x00000785, 0x0080 }, /* R1925 - AIF3TX1MIX Input 3 Volume */ 58762306a36Sopenharmony_ci { 0x00000786, 0x0000 }, /* R1926 - AIF3TX1MIX Input 4 Source */ 58862306a36Sopenharmony_ci { 0x00000787, 0x0080 }, /* R1927 - AIF3TX1MIX Input 4 Volume */ 58962306a36Sopenharmony_ci { 0x00000788, 0x0000 }, /* R1928 - AIF3TX2MIX Input 1 Source */ 59062306a36Sopenharmony_ci { 0x00000789, 0x0080 }, /* R1929 - AIF3TX2MIX Input 1 Volume */ 59162306a36Sopenharmony_ci { 0x0000078A, 0x0000 }, /* R1930 - AIF3TX2MIX Input 2 Source */ 59262306a36Sopenharmony_ci { 0x0000078B, 0x0080 }, /* R1931 - AIF3TX2MIX Input 2 Volume */ 59362306a36Sopenharmony_ci { 0x0000078C, 0x0000 }, /* R1932 - AIF3TX2MIX Input 3 Source */ 59462306a36Sopenharmony_ci { 0x0000078D, 0x0080 }, /* R1933 - AIF3TX2MIX Input 3 Volume */ 59562306a36Sopenharmony_ci { 0x0000078E, 0x0000 }, /* R1934 - AIF3TX2MIX Input 4 Source */ 59662306a36Sopenharmony_ci { 0x0000078F, 0x0080 }, /* R1935 - AIF3TX2MIX Input 4 Volume */ 59762306a36Sopenharmony_ci { 0x000007C0, 0x0000 }, /* R1984 - SLIMTX1MIX Input 1 Source */ 59862306a36Sopenharmony_ci { 0x000007C1, 0x0080 }, /* R1985 - SLIMTX1MIX Input 1 Volume */ 59962306a36Sopenharmony_ci { 0x000007C8, 0x0000 }, /* R1992 - SLIMTX2MIX Input 1 Source */ 60062306a36Sopenharmony_ci { 0x000007C9, 0x0080 }, /* R1993 - SLIMTX2MIX Input 1 Volume */ 60162306a36Sopenharmony_ci { 0x000007D0, 0x0000 }, /* R2000 - SLIMTX3MIX Input 1 Source */ 60262306a36Sopenharmony_ci { 0x000007D1, 0x0080 }, /* R2001 - SLIMTX3MIX Input 1 Volume */ 60362306a36Sopenharmony_ci { 0x000007D8, 0x0000 }, /* R2008 - SLIMTX4MIX Input 1 Source */ 60462306a36Sopenharmony_ci { 0x000007D9, 0x0080 }, /* R2009 - SLIMTX4MIX Input 1 Volume */ 60562306a36Sopenharmony_ci { 0x000007E0, 0x0000 }, /* R2016 - SLIMTX5MIX Input 1 Source */ 60662306a36Sopenharmony_ci { 0x000007E1, 0x0080 }, /* R2017 - SLIMTX5MIX Input 1 Volume */ 60762306a36Sopenharmony_ci { 0x000007E8, 0x0000 }, /* R2024 - SLIMTX6MIX Input 1 Source */ 60862306a36Sopenharmony_ci { 0x000007E9, 0x0080 }, /* R2025 - SLIMTX6MIX Input 1 Volume */ 60962306a36Sopenharmony_ci { 0x00000800, 0x0000 }, /* R2048 - SPDIF1TX1MIX Input 1 Source */ 61062306a36Sopenharmony_ci { 0x00000801, 0x0080 }, /* R2049 - SPDIF1TX1MIX Input 1 Volume */ 61162306a36Sopenharmony_ci { 0x00000808, 0x0000 }, /* R2056 - SPDIF1TX2MIX Input 1 Source */ 61262306a36Sopenharmony_ci { 0x00000809, 0x0080 }, /* R2057 - SPDIF1TX2MIX Input 1 Volume */ 61362306a36Sopenharmony_ci { 0x00000880, 0x0000 }, /* R2176 - EQ1MIX Input 1 Source */ 61462306a36Sopenharmony_ci { 0x00000881, 0x0080 }, /* R2177 - EQ1MIX Input 1 Volume */ 61562306a36Sopenharmony_ci { 0x00000888, 0x0000 }, /* R2184 - EQ2MIX Input 1 Source */ 61662306a36Sopenharmony_ci { 0x00000889, 0x0080 }, /* R2185 - EQ2MIX Input 1 Volume */ 61762306a36Sopenharmony_ci { 0x00000890, 0x0000 }, /* R2192 - EQ3MIX Input 1 Source */ 61862306a36Sopenharmony_ci { 0x00000891, 0x0080 }, /* R2193 - EQ3MIX Input 1 Volume */ 61962306a36Sopenharmony_ci { 0x00000898, 0x0000 }, /* R2200 - EQ4MIX Input 1 Source */ 62062306a36Sopenharmony_ci { 0x00000899, 0x0080 }, /* R2201 - EQ4MIX Input 1 Volume */ 62162306a36Sopenharmony_ci { 0x000008C0, 0x0000 }, /* R2240 - DRC1LMIX Input 1 Source */ 62262306a36Sopenharmony_ci { 0x000008C1, 0x0080 }, /* R2241 - DRC1LMIX Input 1 Volume */ 62362306a36Sopenharmony_ci { 0x000008C8, 0x0000 }, /* R2248 - DRC1RMIX Input 1 Source */ 62462306a36Sopenharmony_ci { 0x000008C9, 0x0080 }, /* R2249 - DRC1RMIX Input 1 Volume */ 62562306a36Sopenharmony_ci { 0x00000900, 0x0000 }, /* R2304 - HPLP1MIX Input 1 Source */ 62662306a36Sopenharmony_ci { 0x00000901, 0x0080 }, /* R2305 - HPLP1MIX Input 1 Volume */ 62762306a36Sopenharmony_ci { 0x00000902, 0x0000 }, /* R2306 - HPLP1MIX Input 2 Source */ 62862306a36Sopenharmony_ci { 0x00000903, 0x0080 }, /* R2307 - HPLP1MIX Input 2 Volume */ 62962306a36Sopenharmony_ci { 0x00000904, 0x0000 }, /* R2308 - HPLP1MIX Input 3 Source */ 63062306a36Sopenharmony_ci { 0x00000905, 0x0080 }, /* R2309 - HPLP1MIX Input 3 Volume */ 63162306a36Sopenharmony_ci { 0x00000906, 0x0000 }, /* R2310 - HPLP1MIX Input 4 Source */ 63262306a36Sopenharmony_ci { 0x00000907, 0x0080 }, /* R2311 - HPLP1MIX Input 4 Volume */ 63362306a36Sopenharmony_ci { 0x00000908, 0x0000 }, /* R2312 - HPLP2MIX Input 1 Source */ 63462306a36Sopenharmony_ci { 0x00000909, 0x0080 }, /* R2313 - HPLP2MIX Input 1 Volume */ 63562306a36Sopenharmony_ci { 0x0000090A, 0x0000 }, /* R2314 - HPLP2MIX Input 2 Source */ 63662306a36Sopenharmony_ci { 0x0000090B, 0x0080 }, /* R2315 - HPLP2MIX Input 2 Volume */ 63762306a36Sopenharmony_ci { 0x0000090C, 0x0000 }, /* R2316 - HPLP2MIX Input 3 Source */ 63862306a36Sopenharmony_ci { 0x0000090D, 0x0080 }, /* R2317 - HPLP2MIX Input 3 Volume */ 63962306a36Sopenharmony_ci { 0x0000090E, 0x0000 }, /* R2318 - HPLP2MIX Input 4 Source */ 64062306a36Sopenharmony_ci { 0x0000090F, 0x0080 }, /* R2319 - HPLP2MIX Input 4 Volume */ 64162306a36Sopenharmony_ci { 0x00000910, 0x0000 }, /* R2320 - HPLP3MIX Input 1 Source */ 64262306a36Sopenharmony_ci { 0x00000911, 0x0080 }, /* R2321 - HPLP3MIX Input 1 Volume */ 64362306a36Sopenharmony_ci { 0x00000912, 0x0000 }, /* R2322 - HPLP3MIX Input 2 Source */ 64462306a36Sopenharmony_ci { 0x00000913, 0x0080 }, /* R2323 - HPLP3MIX Input 2 Volume */ 64562306a36Sopenharmony_ci { 0x00000914, 0x0000 }, /* R2324 - HPLP3MIX Input 3 Source */ 64662306a36Sopenharmony_ci { 0x00000915, 0x0080 }, /* R2325 - HPLP3MIX Input 3 Volume */ 64762306a36Sopenharmony_ci { 0x00000916, 0x0000 }, /* R2326 - HPLP3MIX Input 4 Source */ 64862306a36Sopenharmony_ci { 0x00000917, 0x0080 }, /* R2327 - HPLP3MIX Input 4 Volume */ 64962306a36Sopenharmony_ci { 0x00000918, 0x0000 }, /* R2328 - HPLP4MIX Input 1 Source */ 65062306a36Sopenharmony_ci { 0x00000919, 0x0080 }, /* R2329 - HPLP4MIX Input 1 Volume */ 65162306a36Sopenharmony_ci { 0x0000091A, 0x0000 }, /* R2330 - HPLP4MIX Input 2 Source */ 65262306a36Sopenharmony_ci { 0x0000091B, 0x0080 }, /* R2331 - HPLP4MIX Input 2 Volume */ 65362306a36Sopenharmony_ci { 0x0000091C, 0x0000 }, /* R2332 - HPLP4MIX Input 3 Source */ 65462306a36Sopenharmony_ci { 0x0000091D, 0x0080 }, /* R2333 - HPLP4MIX Input 3 Volume */ 65562306a36Sopenharmony_ci { 0x0000091E, 0x0000 }, /* R2334 - HPLP4MIX Input 4 Source */ 65662306a36Sopenharmony_ci { 0x0000091F, 0x0080 }, /* R2335 - HPLP4MIX Input 4 Volume */ 65762306a36Sopenharmony_ci { 0x00000A80, 0x0000 }, /* R2688 - ASRC1LMIX Input 1 Source */ 65862306a36Sopenharmony_ci { 0x00000A88, 0x0000 }, /* R2696 - ASRC1RMIX Input 1 Source */ 65962306a36Sopenharmony_ci { 0x00000A90, 0x0000 }, /* R2704 - ASRC2LMIX Input 1 Source */ 66062306a36Sopenharmony_ci { 0x00000A98, 0x0000 }, /* R2712 - ASRC2RMIX Input 1 Source */ 66162306a36Sopenharmony_ci { 0x00000B00, 0x0000 }, /* R2816 - ISRC1DEC1MIX Input 1 Source */ 66262306a36Sopenharmony_ci { 0x00000B08, 0x0000 }, /* R2824 - ISRC1DEC2MIX Input 1 Source */ 66362306a36Sopenharmony_ci { 0x00000B10, 0x0000 }, /* R2832 - ISRC1DEC3MIX Input 1 Source */ 66462306a36Sopenharmony_ci { 0x00000B18, 0x0000 }, /* R2840 - ISRC1DEC4MIX Input 1 Source */ 66562306a36Sopenharmony_ci { 0x00000B20, 0x0000 }, /* R2848 - ISRC1INT1MIX Input 1 Source */ 66662306a36Sopenharmony_ci { 0x00000B28, 0x0000 }, /* R2856 - ISRC1INT2MIX Input 1 Source */ 66762306a36Sopenharmony_ci { 0x00000B30, 0x0000 }, /* R2864 - ISRC1INT3MIX Input 1 Source */ 66862306a36Sopenharmony_ci { 0x00000B38, 0x0000 }, /* R2872 - ISRC1INT4MIX Input 1 Source */ 66962306a36Sopenharmony_ci { 0x00000B40, 0x0000 }, /* R2880 - ISRC2DEC1MIX Input 1 Source */ 67062306a36Sopenharmony_ci { 0x00000B48, 0x0000 }, /* R2888 - ISRC2DEC2MIX Input 1 Source */ 67162306a36Sopenharmony_ci { 0x00000B60, 0x0000 }, /* R2912 - ISRC2INT1MIX Input 1 Source */ 67262306a36Sopenharmony_ci { 0x00000B68, 0x0000 }, /* R2920 - ISRC2INT2MIX Input 1 Source */ 67362306a36Sopenharmony_ci { 0x00000C00, 0xA101 }, /* R3072 - GPIO1 CTRL */ 67462306a36Sopenharmony_ci { 0x00000C01, 0xA101 }, /* R3073 - GPIO2 CTRL */ 67562306a36Sopenharmony_ci { 0x00000C02, 0xA101 }, /* R3074 - GPIO3 CTRL */ 67662306a36Sopenharmony_ci { 0x00000C03, 0xA101 }, /* R3075 - GPIO4 CTRL */ 67762306a36Sopenharmony_ci { 0x00000C04, 0xA101 }, /* R3076 - GPIO5 CTRL */ 67862306a36Sopenharmony_ci { 0x00000C0F, 0x0400 }, /* R3087 - IRQ CTRL 1 */ 67962306a36Sopenharmony_ci { 0x00000C10, 0x1000 }, /* R3088 - GPIO Debounce Config */ 68062306a36Sopenharmony_ci { 0x00000C18, 0x0000 }, /* R3096 - GP Switch 1 */ 68162306a36Sopenharmony_ci { 0x00000C20, 0x8002 }, /* R3104 - Misc Pad Ctrl 1 */ 68262306a36Sopenharmony_ci { 0x00000C21, 0x0001 }, /* R3105 - Misc Pad Ctrl 2 */ 68362306a36Sopenharmony_ci { 0x00000C22, 0x0000 }, /* R3106 - Misc Pad Ctrl 3 */ 68462306a36Sopenharmony_ci { 0x00000C23, 0x0000 }, /* R3107 - Misc Pad Ctrl 4 */ 68562306a36Sopenharmony_ci { 0x00000C24, 0x0000 }, /* R3108 - Misc Pad Ctrl 5 */ 68662306a36Sopenharmony_ci { 0x00000C25, 0x0000 }, /* R3109 - Misc Pad Ctrl 6 */ 68762306a36Sopenharmony_ci { 0x00000D08, 0xFFFF }, /* R3336 - Interrupt Status 1 Mask */ 68862306a36Sopenharmony_ci { 0x00000D09, 0xFFFF }, /* R3337 - Interrupt Status 2 Mask */ 68962306a36Sopenharmony_ci { 0x00000D0A, 0xFFFF }, /* R3338 - Interrupt Status 3 Mask */ 69062306a36Sopenharmony_ci { 0x00000D0B, 0xFFFF }, /* R3339 - Interrupt Status 4 Mask */ 69162306a36Sopenharmony_ci { 0x00000D0C, 0xFEFF }, /* R3340 - Interrupt Status 5 Mask */ 69262306a36Sopenharmony_ci { 0x00000D0F, 0x0000 }, /* R3343 - Interrupt Control */ 69362306a36Sopenharmony_ci { 0x00000D18, 0xFFFF }, /* R3352 - IRQ2 Status 1 Mask */ 69462306a36Sopenharmony_ci { 0x00000D19, 0xFFFF }, /* R3353 - IRQ2 Status 2 Mask */ 69562306a36Sopenharmony_ci { 0x00000D1A, 0xFFFF }, /* R3354 - IRQ2 Status 3 Mask */ 69662306a36Sopenharmony_ci { 0x00000D1B, 0xFFFF }, /* R3355 - IRQ2 Status 4 Mask */ 69762306a36Sopenharmony_ci { 0x00000D1C, 0xFEFF }, /* R3356 - IRQ2 Status 5 Mask */ 69862306a36Sopenharmony_ci { 0x00000D1F, 0x0000 }, /* R3359 - IRQ2 Control */ 69962306a36Sopenharmony_ci { 0x00000D53, 0xFFFF }, /* R3411 - AOD IRQ Mask IRQ1 */ 70062306a36Sopenharmony_ci { 0x00000D54, 0xFFFF }, /* R3412 - AOD IRQ Mask IRQ2 */ 70162306a36Sopenharmony_ci { 0x00000D56, 0x0000 }, /* R3414 - Jack detect debounce */ 70262306a36Sopenharmony_ci { 0x00000E00, 0x0000 }, /* R3584 - FX_Ctrl1 */ 70362306a36Sopenharmony_ci { 0x00000E10, 0x6318 }, /* R3600 - EQ1_1 */ 70462306a36Sopenharmony_ci { 0x00000E11, 0x6300 }, /* R3601 - EQ1_2 */ 70562306a36Sopenharmony_ci { 0x00000E12, 0x0FC8 }, /* R3602 - EQ1_3 */ 70662306a36Sopenharmony_ci { 0x00000E13, 0x03FE }, /* R3603 - EQ1_4 */ 70762306a36Sopenharmony_ci { 0x00000E14, 0x00E0 }, /* R3604 - EQ1_5 */ 70862306a36Sopenharmony_ci { 0x00000E15, 0x1EC4 }, /* R3605 - EQ1_6 */ 70962306a36Sopenharmony_ci { 0x00000E16, 0xF136 }, /* R3606 - EQ1_7 */ 71062306a36Sopenharmony_ci { 0x00000E17, 0x0409 }, /* R3607 - EQ1_8 */ 71162306a36Sopenharmony_ci { 0x00000E18, 0x04CC }, /* R3608 - EQ1_9 */ 71262306a36Sopenharmony_ci { 0x00000E19, 0x1C9B }, /* R3609 - EQ1_10 */ 71362306a36Sopenharmony_ci { 0x00000E1A, 0xF337 }, /* R3610 - EQ1_11 */ 71462306a36Sopenharmony_ci { 0x00000E1B, 0x040B }, /* R3611 - EQ1_12 */ 71562306a36Sopenharmony_ci { 0x00000E1C, 0x0CBB }, /* R3612 - EQ1_13 */ 71662306a36Sopenharmony_ci { 0x00000E1D, 0x16F8 }, /* R3613 - EQ1_14 */ 71762306a36Sopenharmony_ci { 0x00000E1E, 0xF7D9 }, /* R3614 - EQ1_15 */ 71862306a36Sopenharmony_ci { 0x00000E1F, 0x040A }, /* R3615 - EQ1_16 */ 71962306a36Sopenharmony_ci { 0x00000E20, 0x1F14 }, /* R3616 - EQ1_17 */ 72062306a36Sopenharmony_ci { 0x00000E21, 0x058C }, /* R3617 - EQ1_18 */ 72162306a36Sopenharmony_ci { 0x00000E22, 0x0563 }, /* R3618 - EQ1_19 */ 72262306a36Sopenharmony_ci { 0x00000E23, 0x4000 }, /* R3619 - EQ1_20 */ 72362306a36Sopenharmony_ci { 0x00000E24, 0x0B75 }, /* R3620 - EQ1_21 */ 72462306a36Sopenharmony_ci { 0x00000E26, 0x6318 }, /* R3622 - EQ2_1 */ 72562306a36Sopenharmony_ci { 0x00000E27, 0x6300 }, /* R3623 - EQ2_2 */ 72662306a36Sopenharmony_ci { 0x00000E28, 0x0FC8 }, /* R3624 - EQ2_3 */ 72762306a36Sopenharmony_ci { 0x00000E29, 0x03FE }, /* R3625 - EQ2_4 */ 72862306a36Sopenharmony_ci { 0x00000E2A, 0x00E0 }, /* R3626 - EQ2_5 */ 72962306a36Sopenharmony_ci { 0x00000E2B, 0x1EC4 }, /* R3627 - EQ2_6 */ 73062306a36Sopenharmony_ci { 0x00000E2C, 0xF136 }, /* R3628 - EQ2_7 */ 73162306a36Sopenharmony_ci { 0x00000E2D, 0x0409 }, /* R3629 - EQ2_8 */ 73262306a36Sopenharmony_ci { 0x00000E2E, 0x04CC }, /* R3630 - EQ2_9 */ 73362306a36Sopenharmony_ci { 0x00000E2F, 0x1C9B }, /* R3631 - EQ2_10 */ 73462306a36Sopenharmony_ci { 0x00000E30, 0xF337 }, /* R3632 - EQ2_11 */ 73562306a36Sopenharmony_ci { 0x00000E31, 0x040B }, /* R3633 - EQ2_12 */ 73662306a36Sopenharmony_ci { 0x00000E32, 0x0CBB }, /* R3634 - EQ2_13 */ 73762306a36Sopenharmony_ci { 0x00000E33, 0x16F8 }, /* R3635 - EQ2_14 */ 73862306a36Sopenharmony_ci { 0x00000E34, 0xF7D9 }, /* R3636 - EQ2_15 */ 73962306a36Sopenharmony_ci { 0x00000E35, 0x040A }, /* R3637 - EQ2_16 */ 74062306a36Sopenharmony_ci { 0x00000E36, 0x1F14 }, /* R3638 - EQ2_17 */ 74162306a36Sopenharmony_ci { 0x00000E37, 0x058C }, /* R3639 - EQ2_18 */ 74262306a36Sopenharmony_ci { 0x00000E38, 0x0563 }, /* R3640 - EQ2_19 */ 74362306a36Sopenharmony_ci { 0x00000E39, 0x4000 }, /* R3641 - EQ2_20 */ 74462306a36Sopenharmony_ci { 0x00000E3A, 0x0B75 }, /* R3642 - EQ2_21 */ 74562306a36Sopenharmony_ci { 0x00000E3C, 0x6318 }, /* R3644 - EQ3_1 */ 74662306a36Sopenharmony_ci { 0x00000E3D, 0x6300 }, /* R3645 - EQ3_2 */ 74762306a36Sopenharmony_ci { 0x00000E3E, 0x0FC8 }, /* R3646 - EQ3_3 */ 74862306a36Sopenharmony_ci { 0x00000E3F, 0x03FE }, /* R3647 - EQ3_4 */ 74962306a36Sopenharmony_ci { 0x00000E40, 0x00E0 }, /* R3648 - EQ3_5 */ 75062306a36Sopenharmony_ci { 0x00000E41, 0x1EC4 }, /* R3649 - EQ3_6 */ 75162306a36Sopenharmony_ci { 0x00000E42, 0xF136 }, /* R3650 - EQ3_7 */ 75262306a36Sopenharmony_ci { 0x00000E43, 0x0409 }, /* R3651 - EQ3_8 */ 75362306a36Sopenharmony_ci { 0x00000E44, 0x04CC }, /* R3652 - EQ3_9 */ 75462306a36Sopenharmony_ci { 0x00000E45, 0x1C9B }, /* R3653 - EQ3_10 */ 75562306a36Sopenharmony_ci { 0x00000E46, 0xF337 }, /* R3654 - EQ3_11 */ 75662306a36Sopenharmony_ci { 0x00000E47, 0x040B }, /* R3655 - EQ3_12 */ 75762306a36Sopenharmony_ci { 0x00000E48, 0x0CBB }, /* R3656 - EQ3_13 */ 75862306a36Sopenharmony_ci { 0x00000E49, 0x16F8 }, /* R3657 - EQ3_14 */ 75962306a36Sopenharmony_ci { 0x00000E4A, 0xF7D9 }, /* R3658 - EQ3_15 */ 76062306a36Sopenharmony_ci { 0x00000E4B, 0x040A }, /* R3659 - EQ3_16 */ 76162306a36Sopenharmony_ci { 0x00000E4C, 0x1F14 }, /* R3660 - EQ3_17 */ 76262306a36Sopenharmony_ci { 0x00000E4D, 0x058C }, /* R3661 - EQ3_18 */ 76362306a36Sopenharmony_ci { 0x00000E4E, 0x0563 }, /* R3662 - EQ3_19 */ 76462306a36Sopenharmony_ci { 0x00000E4F, 0x4000 }, /* R3663 - EQ3_20 */ 76562306a36Sopenharmony_ci { 0x00000E50, 0x0B75 }, /* R3664 - EQ3_21 */ 76662306a36Sopenharmony_ci { 0x00000E52, 0x6318 }, /* R3666 - EQ4_1 */ 76762306a36Sopenharmony_ci { 0x00000E53, 0x6300 }, /* R3667 - EQ4_2 */ 76862306a36Sopenharmony_ci { 0x00000E54, 0x0FC8 }, /* R3668 - EQ4_3 */ 76962306a36Sopenharmony_ci { 0x00000E55, 0x03FE }, /* R3669 - EQ4_4 */ 77062306a36Sopenharmony_ci { 0x00000E56, 0x00E0 }, /* R3670 - EQ4_5 */ 77162306a36Sopenharmony_ci { 0x00000E57, 0x1EC4 }, /* R3671 - EQ4_6 */ 77262306a36Sopenharmony_ci { 0x00000E58, 0xF136 }, /* R3672 - EQ4_7 */ 77362306a36Sopenharmony_ci { 0x00000E59, 0x0409 }, /* R3673 - EQ4_8 */ 77462306a36Sopenharmony_ci { 0x00000E5A, 0x04CC }, /* R3674 - EQ4_9 */ 77562306a36Sopenharmony_ci { 0x00000E5B, 0x1C9B }, /* R3675 - EQ4_10 */ 77662306a36Sopenharmony_ci { 0x00000E5C, 0xF337 }, /* R3676 - EQ4_11 */ 77762306a36Sopenharmony_ci { 0x00000E5D, 0x040B }, /* R3677 - EQ4_12 */ 77862306a36Sopenharmony_ci { 0x00000E5E, 0x0CBB }, /* R3678 - EQ4_13 */ 77962306a36Sopenharmony_ci { 0x00000E5F, 0x16F8 }, /* R3679 - EQ4_14 */ 78062306a36Sopenharmony_ci { 0x00000E60, 0xF7D9 }, /* R3680 - EQ4_15 */ 78162306a36Sopenharmony_ci { 0x00000E61, 0x040A }, /* R3681 - EQ4_16 */ 78262306a36Sopenharmony_ci { 0x00000E62, 0x1F14 }, /* R3682 - EQ4_17 */ 78362306a36Sopenharmony_ci { 0x00000E63, 0x058C }, /* R3683 - EQ4_18 */ 78462306a36Sopenharmony_ci { 0x00000E64, 0x0563 }, /* R3684 - EQ4_19 */ 78562306a36Sopenharmony_ci { 0x00000E65, 0x4000 }, /* R3685 - EQ4_20 */ 78662306a36Sopenharmony_ci { 0x00000E66, 0x0B75 }, /* R3686 - EQ4_21 */ 78762306a36Sopenharmony_ci { 0x00000E80, 0x0018 }, /* R3712 - DRC1 ctrl1 */ 78862306a36Sopenharmony_ci { 0x00000E81, 0x0933 }, /* R3713 - DRC1 ctrl2 */ 78962306a36Sopenharmony_ci { 0x00000E82, 0x0018 }, /* R3714 - DRC1 ctrl3 */ 79062306a36Sopenharmony_ci { 0x00000E83, 0x0000 }, /* R3715 - DRC1 ctrl4 */ 79162306a36Sopenharmony_ci { 0x00000E84, 0x0000 }, /* R3716 - DRC1 ctrl5 */ 79262306a36Sopenharmony_ci { 0x00000EC0, 0x0000 }, /* R3776 - HPLPF1_1 */ 79362306a36Sopenharmony_ci { 0x00000EC1, 0x0000 }, /* R3777 - HPLPF1_2 */ 79462306a36Sopenharmony_ci { 0x00000EC4, 0x0000 }, /* R3780 - HPLPF2_1 */ 79562306a36Sopenharmony_ci { 0x00000EC5, 0x0000 }, /* R3781 - HPLPF2_2 */ 79662306a36Sopenharmony_ci { 0x00000EC8, 0x0000 }, /* R3784 - HPLPF3_1 */ 79762306a36Sopenharmony_ci { 0x00000EC9, 0x0000 }, /* R3785 - HPLPF3_2 */ 79862306a36Sopenharmony_ci { 0x00000ECC, 0x0000 }, /* R3788 - HPLPF4_1 */ 79962306a36Sopenharmony_ci { 0x00000ECD, 0x0000 }, /* R3789 - HPLPF4_2 */ 80062306a36Sopenharmony_ci { 0x00000EE0, 0x0000 }, /* R3808 - ASRC_ENABLE */ 80162306a36Sopenharmony_ci { 0x00000EE2, 0x0000 }, /* R3810 - ASRC_RATE1 */ 80262306a36Sopenharmony_ci { 0x00000EE3, 0x4000 }, /* R3811 - ASRC_RATE2 */ 80362306a36Sopenharmony_ci { 0x00000EF0, 0x0000 }, /* R3824 - ISRC 1 CTRL 1 */ 80462306a36Sopenharmony_ci { 0x00000EF1, 0x0001 }, /* R3825 - ISRC 1 CTRL 2 */ 80562306a36Sopenharmony_ci { 0x00000EF2, 0x0000 }, /* R3826 - ISRC 1 CTRL 3 */ 80662306a36Sopenharmony_ci { 0x00000EF3, 0x0000 }, /* R3827 - ISRC 2 CTRL 1 */ 80762306a36Sopenharmony_ci { 0x00000EF4, 0x0001 }, /* R3828 - ISRC 2 CTRL 2 */ 80862306a36Sopenharmony_ci { 0x00000EF5, 0x0000 }, /* R3829 - ISRC 2 CTRL 3 */ 80962306a36Sopenharmony_ci}; 81062306a36Sopenharmony_ci 81162306a36Sopenharmony_cistatic bool wm8998_readable_register(struct device *dev, unsigned int reg) 81262306a36Sopenharmony_ci{ 81362306a36Sopenharmony_ci switch (reg) { 81462306a36Sopenharmony_ci case ARIZONA_SOFTWARE_RESET: 81562306a36Sopenharmony_ci case ARIZONA_DEVICE_REVISION: 81662306a36Sopenharmony_ci case ARIZONA_CTRL_IF_I2C1_CFG_1: 81762306a36Sopenharmony_ci case ARIZONA_CTRL_IF_I2C1_CFG_2: 81862306a36Sopenharmony_ci case ARIZONA_WRITE_SEQUENCER_CTRL_0: 81962306a36Sopenharmony_ci case ARIZONA_WRITE_SEQUENCER_CTRL_1: 82062306a36Sopenharmony_ci case ARIZONA_WRITE_SEQUENCER_CTRL_2: 82162306a36Sopenharmony_ci case ARIZONA_TONE_GENERATOR_1: 82262306a36Sopenharmony_ci case ARIZONA_TONE_GENERATOR_2: 82362306a36Sopenharmony_ci case ARIZONA_TONE_GENERATOR_3: 82462306a36Sopenharmony_ci case ARIZONA_TONE_GENERATOR_4: 82562306a36Sopenharmony_ci case ARIZONA_TONE_GENERATOR_5: 82662306a36Sopenharmony_ci case ARIZONA_PWM_DRIVE_1: 82762306a36Sopenharmony_ci case ARIZONA_PWM_DRIVE_2: 82862306a36Sopenharmony_ci case ARIZONA_PWM_DRIVE_3: 82962306a36Sopenharmony_ci case ARIZONA_WAKE_CONTROL: 83062306a36Sopenharmony_ci case ARIZONA_SEQUENCE_CONTROL: 83162306a36Sopenharmony_ci case ARIZONA_SAMPLE_RATE_SEQUENCE_SELECT_1: 83262306a36Sopenharmony_ci case ARIZONA_SAMPLE_RATE_SEQUENCE_SELECT_2: 83362306a36Sopenharmony_ci case ARIZONA_SAMPLE_RATE_SEQUENCE_SELECT_3: 83462306a36Sopenharmony_ci case ARIZONA_SAMPLE_RATE_SEQUENCE_SELECT_4: 83562306a36Sopenharmony_ci case ARIZONA_ALWAYS_ON_TRIGGERS_SEQUENCE_SELECT_1: 83662306a36Sopenharmony_ci case ARIZONA_ALWAYS_ON_TRIGGERS_SEQUENCE_SELECT_2: 83762306a36Sopenharmony_ci case ARIZONA_ALWAYS_ON_TRIGGERS_SEQUENCE_SELECT_3: 83862306a36Sopenharmony_ci case ARIZONA_ALWAYS_ON_TRIGGERS_SEQUENCE_SELECT_4: 83962306a36Sopenharmony_ci case ARIZONA_ALWAYS_ON_TRIGGERS_SEQUENCE_SELECT_5: 84062306a36Sopenharmony_ci case ARIZONA_ALWAYS_ON_TRIGGERS_SEQUENCE_SELECT_6: 84162306a36Sopenharmony_ci case ARIZONA_HAPTICS_CONTROL_1: 84262306a36Sopenharmony_ci case ARIZONA_HAPTICS_CONTROL_2: 84362306a36Sopenharmony_ci case ARIZONA_HAPTICS_PHASE_1_INTENSITY: 84462306a36Sopenharmony_ci case ARIZONA_HAPTICS_PHASE_1_DURATION: 84562306a36Sopenharmony_ci case ARIZONA_HAPTICS_PHASE_2_INTENSITY: 84662306a36Sopenharmony_ci case ARIZONA_HAPTICS_PHASE_2_DURATION: 84762306a36Sopenharmony_ci case ARIZONA_HAPTICS_PHASE_3_INTENSITY: 84862306a36Sopenharmony_ci case ARIZONA_HAPTICS_PHASE_3_DURATION: 84962306a36Sopenharmony_ci case ARIZONA_HAPTICS_STATUS: 85062306a36Sopenharmony_ci case ARIZONA_CLOCK_32K_1: 85162306a36Sopenharmony_ci case ARIZONA_SYSTEM_CLOCK_1: 85262306a36Sopenharmony_ci case ARIZONA_SAMPLE_RATE_1: 85362306a36Sopenharmony_ci case ARIZONA_SAMPLE_RATE_2: 85462306a36Sopenharmony_ci case ARIZONA_SAMPLE_RATE_3: 85562306a36Sopenharmony_ci case ARIZONA_SAMPLE_RATE_1_STATUS: 85662306a36Sopenharmony_ci case ARIZONA_SAMPLE_RATE_2_STATUS: 85762306a36Sopenharmony_ci case ARIZONA_SAMPLE_RATE_3_STATUS: 85862306a36Sopenharmony_ci case ARIZONA_ASYNC_CLOCK_1: 85962306a36Sopenharmony_ci case ARIZONA_ASYNC_SAMPLE_RATE_1: 86062306a36Sopenharmony_ci case ARIZONA_ASYNC_SAMPLE_RATE_1_STATUS: 86162306a36Sopenharmony_ci case ARIZONA_ASYNC_SAMPLE_RATE_2: 86262306a36Sopenharmony_ci case ARIZONA_ASYNC_SAMPLE_RATE_2_STATUS: 86362306a36Sopenharmony_ci case ARIZONA_OUTPUT_SYSTEM_CLOCK: 86462306a36Sopenharmony_ci case ARIZONA_OUTPUT_ASYNC_CLOCK: 86562306a36Sopenharmony_ci case ARIZONA_RATE_ESTIMATOR_1: 86662306a36Sopenharmony_ci case ARIZONA_RATE_ESTIMATOR_2: 86762306a36Sopenharmony_ci case ARIZONA_RATE_ESTIMATOR_3: 86862306a36Sopenharmony_ci case ARIZONA_RATE_ESTIMATOR_4: 86962306a36Sopenharmony_ci case ARIZONA_RATE_ESTIMATOR_5: 87062306a36Sopenharmony_ci case ARIZONA_DYNAMIC_FREQUENCY_SCALING_1: 87162306a36Sopenharmony_ci case ARIZONA_FLL1_CONTROL_1: 87262306a36Sopenharmony_ci case ARIZONA_FLL1_CONTROL_2: 87362306a36Sopenharmony_ci case ARIZONA_FLL1_CONTROL_3: 87462306a36Sopenharmony_ci case ARIZONA_FLL1_CONTROL_4: 87562306a36Sopenharmony_ci case ARIZONA_FLL1_CONTROL_5: 87662306a36Sopenharmony_ci case ARIZONA_FLL1_CONTROL_6: 87762306a36Sopenharmony_ci case ARIZONA_FLL1_CONTROL_7: 87862306a36Sopenharmony_ci case ARIZONA_FLL1_SYNCHRONISER_1: 87962306a36Sopenharmony_ci case ARIZONA_FLL1_SYNCHRONISER_2: 88062306a36Sopenharmony_ci case ARIZONA_FLL1_SYNCHRONISER_3: 88162306a36Sopenharmony_ci case ARIZONA_FLL1_SYNCHRONISER_4: 88262306a36Sopenharmony_ci case ARIZONA_FLL1_SYNCHRONISER_5: 88362306a36Sopenharmony_ci case ARIZONA_FLL1_SYNCHRONISER_6: 88462306a36Sopenharmony_ci case ARIZONA_FLL1_SYNCHRONISER_7: 88562306a36Sopenharmony_ci case ARIZONA_FLL1_SPREAD_SPECTRUM: 88662306a36Sopenharmony_ci case ARIZONA_FLL1_GPIO_CLOCK: 88762306a36Sopenharmony_ci case ARIZONA_FLL2_CONTROL_1: 88862306a36Sopenharmony_ci case ARIZONA_FLL2_CONTROL_2: 88962306a36Sopenharmony_ci case ARIZONA_FLL2_CONTROL_3: 89062306a36Sopenharmony_ci case ARIZONA_FLL2_CONTROL_4: 89162306a36Sopenharmony_ci case ARIZONA_FLL2_CONTROL_5: 89262306a36Sopenharmony_ci case ARIZONA_FLL2_CONTROL_6: 89362306a36Sopenharmony_ci case ARIZONA_FLL2_CONTROL_7: 89462306a36Sopenharmony_ci case ARIZONA_FLL2_SYNCHRONISER_1: 89562306a36Sopenharmony_ci case ARIZONA_FLL2_SYNCHRONISER_2: 89662306a36Sopenharmony_ci case ARIZONA_FLL2_SYNCHRONISER_3: 89762306a36Sopenharmony_ci case ARIZONA_FLL2_SYNCHRONISER_4: 89862306a36Sopenharmony_ci case ARIZONA_FLL2_SYNCHRONISER_5: 89962306a36Sopenharmony_ci case ARIZONA_FLL2_SYNCHRONISER_6: 90062306a36Sopenharmony_ci case ARIZONA_FLL2_SYNCHRONISER_7: 90162306a36Sopenharmony_ci case ARIZONA_FLL2_SPREAD_SPECTRUM: 90262306a36Sopenharmony_ci case ARIZONA_FLL2_GPIO_CLOCK: 90362306a36Sopenharmony_ci case ARIZONA_MIC_CHARGE_PUMP_1: 90462306a36Sopenharmony_ci case ARIZONA_LDO1_CONTROL_1: 90562306a36Sopenharmony_ci case ARIZONA_LDO1_CONTROL_2: 90662306a36Sopenharmony_ci case ARIZONA_LDO2_CONTROL_1: 90762306a36Sopenharmony_ci case ARIZONA_MIC_BIAS_CTRL_1: 90862306a36Sopenharmony_ci case ARIZONA_MIC_BIAS_CTRL_2: 90962306a36Sopenharmony_ci case ARIZONA_MIC_BIAS_CTRL_3: 91062306a36Sopenharmony_ci case ARIZONA_ACCESSORY_DETECT_MODE_1: 91162306a36Sopenharmony_ci case ARIZONA_HEADPHONE_DETECT_1: 91262306a36Sopenharmony_ci case ARIZONA_HEADPHONE_DETECT_2: 91362306a36Sopenharmony_ci case ARIZONA_MICD_CLAMP_CONTROL: 91462306a36Sopenharmony_ci case ARIZONA_MIC_DETECT_1: 91562306a36Sopenharmony_ci case ARIZONA_MIC_DETECT_2: 91662306a36Sopenharmony_ci case ARIZONA_MIC_DETECT_3: 91762306a36Sopenharmony_ci case ARIZONA_MIC_DETECT_4: 91862306a36Sopenharmony_ci case ARIZONA_MIC_DETECT_LEVEL_1: 91962306a36Sopenharmony_ci case ARIZONA_MIC_DETECT_LEVEL_2: 92062306a36Sopenharmony_ci case ARIZONA_MIC_DETECT_LEVEL_3: 92162306a36Sopenharmony_ci case ARIZONA_MIC_DETECT_LEVEL_4: 92262306a36Sopenharmony_ci case ARIZONA_ISOLATION_CONTROL: 92362306a36Sopenharmony_ci case ARIZONA_JACK_DETECT_ANALOGUE: 92462306a36Sopenharmony_ci case ARIZONA_INPUT_ENABLES: 92562306a36Sopenharmony_ci case ARIZONA_INPUT_ENABLES_STATUS: 92662306a36Sopenharmony_ci case ARIZONA_INPUT_RATE: 92762306a36Sopenharmony_ci case ARIZONA_INPUT_VOLUME_RAMP: 92862306a36Sopenharmony_ci case ARIZONA_HPF_CONTROL: 92962306a36Sopenharmony_ci case ARIZONA_IN1L_CONTROL: 93062306a36Sopenharmony_ci case ARIZONA_ADC_DIGITAL_VOLUME_1L: 93162306a36Sopenharmony_ci case ARIZONA_DMIC1L_CONTROL: 93262306a36Sopenharmony_ci case ARIZONA_IN1R_CONTROL: 93362306a36Sopenharmony_ci case ARIZONA_ADC_DIGITAL_VOLUME_1R: 93462306a36Sopenharmony_ci case ARIZONA_DMIC1R_CONTROL: 93562306a36Sopenharmony_ci case ARIZONA_IN2L_CONTROL: 93662306a36Sopenharmony_ci case ARIZONA_ADC_DIGITAL_VOLUME_2L: 93762306a36Sopenharmony_ci case ARIZONA_DMIC2L_CONTROL: 93862306a36Sopenharmony_ci case ARIZONA_OUTPUT_ENABLES_1: 93962306a36Sopenharmony_ci case ARIZONA_OUTPUT_STATUS_1: 94062306a36Sopenharmony_ci case ARIZONA_RAW_OUTPUT_STATUS_1: 94162306a36Sopenharmony_ci case ARIZONA_OUTPUT_RATE_1: 94262306a36Sopenharmony_ci case ARIZONA_OUTPUT_VOLUME_RAMP: 94362306a36Sopenharmony_ci case ARIZONA_OUTPUT_PATH_CONFIG_1L: 94462306a36Sopenharmony_ci case ARIZONA_DAC_DIGITAL_VOLUME_1L: 94562306a36Sopenharmony_ci case ARIZONA_NOISE_GATE_SELECT_1L: 94662306a36Sopenharmony_ci case ARIZONA_OUTPUT_PATH_CONFIG_1R: 94762306a36Sopenharmony_ci case ARIZONA_DAC_DIGITAL_VOLUME_1R: 94862306a36Sopenharmony_ci case ARIZONA_NOISE_GATE_SELECT_1R: 94962306a36Sopenharmony_ci case ARIZONA_OUTPUT_PATH_CONFIG_2L: 95062306a36Sopenharmony_ci case ARIZONA_DAC_DIGITAL_VOLUME_2L: 95162306a36Sopenharmony_ci case ARIZONA_NOISE_GATE_SELECT_2L: 95262306a36Sopenharmony_ci case ARIZONA_OUTPUT_PATH_CONFIG_2R: 95362306a36Sopenharmony_ci case ARIZONA_DAC_DIGITAL_VOLUME_2R: 95462306a36Sopenharmony_ci case ARIZONA_NOISE_GATE_SELECT_2R: 95562306a36Sopenharmony_ci case ARIZONA_OUTPUT_PATH_CONFIG_3L: 95662306a36Sopenharmony_ci case ARIZONA_DAC_DIGITAL_VOLUME_3L: 95762306a36Sopenharmony_ci case ARIZONA_NOISE_GATE_SELECT_3L: 95862306a36Sopenharmony_ci case ARIZONA_OUTPUT_PATH_CONFIG_4L: 95962306a36Sopenharmony_ci case ARIZONA_DAC_DIGITAL_VOLUME_4L: 96062306a36Sopenharmony_ci case ARIZONA_NOISE_GATE_SELECT_4L: 96162306a36Sopenharmony_ci case ARIZONA_OUTPUT_PATH_CONFIG_4R: 96262306a36Sopenharmony_ci case ARIZONA_DAC_DIGITAL_VOLUME_4R: 96362306a36Sopenharmony_ci case ARIZONA_NOISE_GATE_SELECT_4R: 96462306a36Sopenharmony_ci case ARIZONA_OUTPUT_PATH_CONFIG_5L: 96562306a36Sopenharmony_ci case ARIZONA_DAC_DIGITAL_VOLUME_5L: 96662306a36Sopenharmony_ci case ARIZONA_NOISE_GATE_SELECT_5L: 96762306a36Sopenharmony_ci case ARIZONA_OUTPUT_PATH_CONFIG_5R: 96862306a36Sopenharmony_ci case ARIZONA_DAC_DIGITAL_VOLUME_5R: 96962306a36Sopenharmony_ci case ARIZONA_NOISE_GATE_SELECT_5R: 97062306a36Sopenharmony_ci case ARIZONA_DRE_ENABLE: 97162306a36Sopenharmony_ci case ARIZONA_DRE_CONTROL_1: 97262306a36Sopenharmony_ci case ARIZONA_DRE_CONTROL_2: 97362306a36Sopenharmony_ci case ARIZONA_DRE_CONTROL_3: 97462306a36Sopenharmony_ci case ARIZONA_EDRE_ENABLE: 97562306a36Sopenharmony_ci case ARIZONA_DAC_AEC_CONTROL_1: 97662306a36Sopenharmony_ci case ARIZONA_DAC_AEC_CONTROL_2: 97762306a36Sopenharmony_ci case ARIZONA_NOISE_GATE_CONTROL: 97862306a36Sopenharmony_ci case ARIZONA_PDM_SPK1_CTRL_1: 97962306a36Sopenharmony_ci case ARIZONA_PDM_SPK1_CTRL_2: 98062306a36Sopenharmony_ci case ARIZONA_HP_TEST_CTRL_13: 98162306a36Sopenharmony_ci case ARIZONA_AIF1_BCLK_CTRL: 98262306a36Sopenharmony_ci case ARIZONA_AIF1_TX_PIN_CTRL: 98362306a36Sopenharmony_ci case ARIZONA_AIF1_RX_PIN_CTRL: 98462306a36Sopenharmony_ci case ARIZONA_AIF1_RATE_CTRL: 98562306a36Sopenharmony_ci case ARIZONA_AIF1_FORMAT: 98662306a36Sopenharmony_ci case ARIZONA_AIF1_RX_BCLK_RATE: 98762306a36Sopenharmony_ci case ARIZONA_AIF1_FRAME_CTRL_1: 98862306a36Sopenharmony_ci case ARIZONA_AIF1_FRAME_CTRL_2: 98962306a36Sopenharmony_ci case ARIZONA_AIF1_FRAME_CTRL_3: 99062306a36Sopenharmony_ci case ARIZONA_AIF1_FRAME_CTRL_4: 99162306a36Sopenharmony_ci case ARIZONA_AIF1_FRAME_CTRL_5: 99262306a36Sopenharmony_ci case ARIZONA_AIF1_FRAME_CTRL_6: 99362306a36Sopenharmony_ci case ARIZONA_AIF1_FRAME_CTRL_7: 99462306a36Sopenharmony_ci case ARIZONA_AIF1_FRAME_CTRL_8: 99562306a36Sopenharmony_ci case ARIZONA_AIF1_FRAME_CTRL_11: 99662306a36Sopenharmony_ci case ARIZONA_AIF1_FRAME_CTRL_12: 99762306a36Sopenharmony_ci case ARIZONA_AIF1_FRAME_CTRL_13: 99862306a36Sopenharmony_ci case ARIZONA_AIF1_FRAME_CTRL_14: 99962306a36Sopenharmony_ci case ARIZONA_AIF1_FRAME_CTRL_15: 100062306a36Sopenharmony_ci case ARIZONA_AIF1_FRAME_CTRL_16: 100162306a36Sopenharmony_ci case ARIZONA_AIF1_TX_ENABLES: 100262306a36Sopenharmony_ci case ARIZONA_AIF1_RX_ENABLES: 100362306a36Sopenharmony_ci case ARIZONA_AIF2_BCLK_CTRL: 100462306a36Sopenharmony_ci case ARIZONA_AIF2_TX_PIN_CTRL: 100562306a36Sopenharmony_ci case ARIZONA_AIF2_RX_PIN_CTRL: 100662306a36Sopenharmony_ci case ARIZONA_AIF2_RATE_CTRL: 100762306a36Sopenharmony_ci case ARIZONA_AIF2_FORMAT: 100862306a36Sopenharmony_ci case ARIZONA_AIF2_RX_BCLK_RATE: 100962306a36Sopenharmony_ci case ARIZONA_AIF2_FRAME_CTRL_1: 101062306a36Sopenharmony_ci case ARIZONA_AIF2_FRAME_CTRL_2: 101162306a36Sopenharmony_ci case ARIZONA_AIF2_FRAME_CTRL_3: 101262306a36Sopenharmony_ci case ARIZONA_AIF2_FRAME_CTRL_4: 101362306a36Sopenharmony_ci case ARIZONA_AIF2_FRAME_CTRL_5: 101462306a36Sopenharmony_ci case ARIZONA_AIF2_FRAME_CTRL_6: 101562306a36Sopenharmony_ci case ARIZONA_AIF2_FRAME_CTRL_7: 101662306a36Sopenharmony_ci case ARIZONA_AIF2_FRAME_CTRL_8: 101762306a36Sopenharmony_ci case ARIZONA_AIF2_FRAME_CTRL_11: 101862306a36Sopenharmony_ci case ARIZONA_AIF2_FRAME_CTRL_12: 101962306a36Sopenharmony_ci case ARIZONA_AIF2_FRAME_CTRL_13: 102062306a36Sopenharmony_ci case ARIZONA_AIF2_FRAME_CTRL_14: 102162306a36Sopenharmony_ci case ARIZONA_AIF2_FRAME_CTRL_15: 102262306a36Sopenharmony_ci case ARIZONA_AIF2_FRAME_CTRL_16: 102362306a36Sopenharmony_ci case ARIZONA_AIF2_TX_ENABLES: 102462306a36Sopenharmony_ci case ARIZONA_AIF2_RX_ENABLES: 102562306a36Sopenharmony_ci case ARIZONA_AIF3_BCLK_CTRL: 102662306a36Sopenharmony_ci case ARIZONA_AIF3_TX_PIN_CTRL: 102762306a36Sopenharmony_ci case ARIZONA_AIF3_RX_PIN_CTRL: 102862306a36Sopenharmony_ci case ARIZONA_AIF3_RATE_CTRL: 102962306a36Sopenharmony_ci case ARIZONA_AIF3_FORMAT: 103062306a36Sopenharmony_ci case ARIZONA_AIF3_RX_BCLK_RATE: 103162306a36Sopenharmony_ci case ARIZONA_AIF3_FRAME_CTRL_1: 103262306a36Sopenharmony_ci case ARIZONA_AIF3_FRAME_CTRL_2: 103362306a36Sopenharmony_ci case ARIZONA_AIF3_FRAME_CTRL_3: 103462306a36Sopenharmony_ci case ARIZONA_AIF3_FRAME_CTRL_4: 103562306a36Sopenharmony_ci case ARIZONA_AIF3_FRAME_CTRL_11: 103662306a36Sopenharmony_ci case ARIZONA_AIF3_FRAME_CTRL_12: 103762306a36Sopenharmony_ci case ARIZONA_AIF3_TX_ENABLES: 103862306a36Sopenharmony_ci case ARIZONA_AIF3_RX_ENABLES: 103962306a36Sopenharmony_ci case ARIZONA_SPD1_TX_CONTROL: 104062306a36Sopenharmony_ci case ARIZONA_SPD1_TX_CHANNEL_STATUS_1: 104162306a36Sopenharmony_ci case ARIZONA_SPD1_TX_CHANNEL_STATUS_2: 104262306a36Sopenharmony_ci case ARIZONA_SPD1_TX_CHANNEL_STATUS_3: 104362306a36Sopenharmony_ci case ARIZONA_SLIMBUS_FRAMER_REF_GEAR: 104462306a36Sopenharmony_ci case ARIZONA_SLIMBUS_RATES_1: 104562306a36Sopenharmony_ci case ARIZONA_SLIMBUS_RATES_2: 104662306a36Sopenharmony_ci case ARIZONA_SLIMBUS_RATES_5: 104762306a36Sopenharmony_ci case ARIZONA_SLIMBUS_RATES_6: 104862306a36Sopenharmony_ci case ARIZONA_SLIMBUS_RATES_7: 104962306a36Sopenharmony_ci case ARIZONA_SLIMBUS_RX_CHANNEL_ENABLE: 105062306a36Sopenharmony_ci case ARIZONA_SLIMBUS_TX_CHANNEL_ENABLE: 105162306a36Sopenharmony_ci case ARIZONA_SLIMBUS_RX_PORT_STATUS: 105262306a36Sopenharmony_ci case ARIZONA_SLIMBUS_TX_PORT_STATUS: 105362306a36Sopenharmony_ci case ARIZONA_PWM1MIX_INPUT_1_SOURCE: 105462306a36Sopenharmony_ci case ARIZONA_PWM1MIX_INPUT_1_VOLUME: 105562306a36Sopenharmony_ci case ARIZONA_PWM1MIX_INPUT_2_SOURCE: 105662306a36Sopenharmony_ci case ARIZONA_PWM1MIX_INPUT_2_VOLUME: 105762306a36Sopenharmony_ci case ARIZONA_PWM1MIX_INPUT_3_SOURCE: 105862306a36Sopenharmony_ci case ARIZONA_PWM1MIX_INPUT_3_VOLUME: 105962306a36Sopenharmony_ci case ARIZONA_PWM1MIX_INPUT_4_SOURCE: 106062306a36Sopenharmony_ci case ARIZONA_PWM1MIX_INPUT_4_VOLUME: 106162306a36Sopenharmony_ci case ARIZONA_PWM2MIX_INPUT_1_SOURCE: 106262306a36Sopenharmony_ci case ARIZONA_PWM2MIX_INPUT_1_VOLUME: 106362306a36Sopenharmony_ci case ARIZONA_PWM2MIX_INPUT_2_SOURCE: 106462306a36Sopenharmony_ci case ARIZONA_PWM2MIX_INPUT_2_VOLUME: 106562306a36Sopenharmony_ci case ARIZONA_PWM2MIX_INPUT_3_SOURCE: 106662306a36Sopenharmony_ci case ARIZONA_PWM2MIX_INPUT_3_VOLUME: 106762306a36Sopenharmony_ci case ARIZONA_PWM2MIX_INPUT_4_SOURCE: 106862306a36Sopenharmony_ci case ARIZONA_PWM2MIX_INPUT_4_VOLUME: 106962306a36Sopenharmony_ci case ARIZONA_OUT1LMIX_INPUT_1_SOURCE: 107062306a36Sopenharmony_ci case ARIZONA_OUT1LMIX_INPUT_1_VOLUME: 107162306a36Sopenharmony_ci case ARIZONA_OUT1LMIX_INPUT_2_SOURCE: 107262306a36Sopenharmony_ci case ARIZONA_OUT1LMIX_INPUT_2_VOLUME: 107362306a36Sopenharmony_ci case ARIZONA_OUT1LMIX_INPUT_3_SOURCE: 107462306a36Sopenharmony_ci case ARIZONA_OUT1LMIX_INPUT_3_VOLUME: 107562306a36Sopenharmony_ci case ARIZONA_OUT1LMIX_INPUT_4_SOURCE: 107662306a36Sopenharmony_ci case ARIZONA_OUT1LMIX_INPUT_4_VOLUME: 107762306a36Sopenharmony_ci case ARIZONA_OUT1RMIX_INPUT_1_SOURCE: 107862306a36Sopenharmony_ci case ARIZONA_OUT1RMIX_INPUT_1_VOLUME: 107962306a36Sopenharmony_ci case ARIZONA_OUT1RMIX_INPUT_2_SOURCE: 108062306a36Sopenharmony_ci case ARIZONA_OUT1RMIX_INPUT_2_VOLUME: 108162306a36Sopenharmony_ci case ARIZONA_OUT1RMIX_INPUT_3_SOURCE: 108262306a36Sopenharmony_ci case ARIZONA_OUT1RMIX_INPUT_3_VOLUME: 108362306a36Sopenharmony_ci case ARIZONA_OUT1RMIX_INPUT_4_SOURCE: 108462306a36Sopenharmony_ci case ARIZONA_OUT1RMIX_INPUT_4_VOLUME: 108562306a36Sopenharmony_ci case ARIZONA_OUT2LMIX_INPUT_1_SOURCE: 108662306a36Sopenharmony_ci case ARIZONA_OUT2LMIX_INPUT_1_VOLUME: 108762306a36Sopenharmony_ci case ARIZONA_OUT2LMIX_INPUT_2_SOURCE: 108862306a36Sopenharmony_ci case ARIZONA_OUT2LMIX_INPUT_2_VOLUME: 108962306a36Sopenharmony_ci case ARIZONA_OUT2LMIX_INPUT_3_SOURCE: 109062306a36Sopenharmony_ci case ARIZONA_OUT2LMIX_INPUT_3_VOLUME: 109162306a36Sopenharmony_ci case ARIZONA_OUT2LMIX_INPUT_4_SOURCE: 109262306a36Sopenharmony_ci case ARIZONA_OUT2LMIX_INPUT_4_VOLUME: 109362306a36Sopenharmony_ci case ARIZONA_OUT2RMIX_INPUT_1_SOURCE: 109462306a36Sopenharmony_ci case ARIZONA_OUT2RMIX_INPUT_1_VOLUME: 109562306a36Sopenharmony_ci case ARIZONA_OUT2RMIX_INPUT_2_SOURCE: 109662306a36Sopenharmony_ci case ARIZONA_OUT2RMIX_INPUT_2_VOLUME: 109762306a36Sopenharmony_ci case ARIZONA_OUT2RMIX_INPUT_3_SOURCE: 109862306a36Sopenharmony_ci case ARIZONA_OUT2RMIX_INPUT_3_VOLUME: 109962306a36Sopenharmony_ci case ARIZONA_OUT2RMIX_INPUT_4_SOURCE: 110062306a36Sopenharmony_ci case ARIZONA_OUT2RMIX_INPUT_4_VOLUME: 110162306a36Sopenharmony_ci case ARIZONA_OUT3LMIX_INPUT_1_SOURCE: 110262306a36Sopenharmony_ci case ARIZONA_OUT3LMIX_INPUT_1_VOLUME: 110362306a36Sopenharmony_ci case ARIZONA_OUT3LMIX_INPUT_2_SOURCE: 110462306a36Sopenharmony_ci case ARIZONA_OUT3LMIX_INPUT_2_VOLUME: 110562306a36Sopenharmony_ci case ARIZONA_OUT3LMIX_INPUT_3_SOURCE: 110662306a36Sopenharmony_ci case ARIZONA_OUT3LMIX_INPUT_3_VOLUME: 110762306a36Sopenharmony_ci case ARIZONA_OUT3LMIX_INPUT_4_SOURCE: 110862306a36Sopenharmony_ci case ARIZONA_OUT3LMIX_INPUT_4_VOLUME: 110962306a36Sopenharmony_ci case ARIZONA_OUT4LMIX_INPUT_1_SOURCE: 111062306a36Sopenharmony_ci case ARIZONA_OUT4LMIX_INPUT_1_VOLUME: 111162306a36Sopenharmony_ci case ARIZONA_OUT4LMIX_INPUT_2_SOURCE: 111262306a36Sopenharmony_ci case ARIZONA_OUT4LMIX_INPUT_2_VOLUME: 111362306a36Sopenharmony_ci case ARIZONA_OUT4LMIX_INPUT_3_SOURCE: 111462306a36Sopenharmony_ci case ARIZONA_OUT4LMIX_INPUT_3_VOLUME: 111562306a36Sopenharmony_ci case ARIZONA_OUT4LMIX_INPUT_4_SOURCE: 111662306a36Sopenharmony_ci case ARIZONA_OUT4LMIX_INPUT_4_VOLUME: 111762306a36Sopenharmony_ci case ARIZONA_OUT4RMIX_INPUT_1_SOURCE: 111862306a36Sopenharmony_ci case ARIZONA_OUT4RMIX_INPUT_1_VOLUME: 111962306a36Sopenharmony_ci case ARIZONA_OUT4RMIX_INPUT_2_SOURCE: 112062306a36Sopenharmony_ci case ARIZONA_OUT4RMIX_INPUT_2_VOLUME: 112162306a36Sopenharmony_ci case ARIZONA_OUT4RMIX_INPUT_3_SOURCE: 112262306a36Sopenharmony_ci case ARIZONA_OUT4RMIX_INPUT_3_VOLUME: 112362306a36Sopenharmony_ci case ARIZONA_OUT4RMIX_INPUT_4_SOURCE: 112462306a36Sopenharmony_ci case ARIZONA_OUT4RMIX_INPUT_4_VOLUME: 112562306a36Sopenharmony_ci case ARIZONA_OUT5LMIX_INPUT_1_SOURCE: 112662306a36Sopenharmony_ci case ARIZONA_OUT5LMIX_INPUT_1_VOLUME: 112762306a36Sopenharmony_ci case ARIZONA_OUT5LMIX_INPUT_2_SOURCE: 112862306a36Sopenharmony_ci case ARIZONA_OUT5LMIX_INPUT_2_VOLUME: 112962306a36Sopenharmony_ci case ARIZONA_OUT5LMIX_INPUT_3_SOURCE: 113062306a36Sopenharmony_ci case ARIZONA_OUT5LMIX_INPUT_3_VOLUME: 113162306a36Sopenharmony_ci case ARIZONA_OUT5LMIX_INPUT_4_SOURCE: 113262306a36Sopenharmony_ci case ARIZONA_OUT5LMIX_INPUT_4_VOLUME: 113362306a36Sopenharmony_ci case ARIZONA_OUT5RMIX_INPUT_1_SOURCE: 113462306a36Sopenharmony_ci case ARIZONA_OUT5RMIX_INPUT_1_VOLUME: 113562306a36Sopenharmony_ci case ARIZONA_OUT5RMIX_INPUT_2_SOURCE: 113662306a36Sopenharmony_ci case ARIZONA_OUT5RMIX_INPUT_2_VOLUME: 113762306a36Sopenharmony_ci case ARIZONA_OUT5RMIX_INPUT_3_SOURCE: 113862306a36Sopenharmony_ci case ARIZONA_OUT5RMIX_INPUT_3_VOLUME: 113962306a36Sopenharmony_ci case ARIZONA_OUT5RMIX_INPUT_4_SOURCE: 114062306a36Sopenharmony_ci case ARIZONA_OUT5RMIX_INPUT_4_VOLUME: 114162306a36Sopenharmony_ci case ARIZONA_AIF1TX1MIX_INPUT_1_SOURCE: 114262306a36Sopenharmony_ci case ARIZONA_AIF1TX1MIX_INPUT_1_VOLUME: 114362306a36Sopenharmony_ci case ARIZONA_AIF1TX1MIX_INPUT_2_SOURCE: 114462306a36Sopenharmony_ci case ARIZONA_AIF1TX1MIX_INPUT_2_VOLUME: 114562306a36Sopenharmony_ci case ARIZONA_AIF1TX1MIX_INPUT_3_SOURCE: 114662306a36Sopenharmony_ci case ARIZONA_AIF1TX1MIX_INPUT_3_VOLUME: 114762306a36Sopenharmony_ci case ARIZONA_AIF1TX1MIX_INPUT_4_SOURCE: 114862306a36Sopenharmony_ci case ARIZONA_AIF1TX1MIX_INPUT_4_VOLUME: 114962306a36Sopenharmony_ci case ARIZONA_AIF1TX2MIX_INPUT_1_SOURCE: 115062306a36Sopenharmony_ci case ARIZONA_AIF1TX2MIX_INPUT_1_VOLUME: 115162306a36Sopenharmony_ci case ARIZONA_AIF1TX2MIX_INPUT_2_SOURCE: 115262306a36Sopenharmony_ci case ARIZONA_AIF1TX2MIX_INPUT_2_VOLUME: 115362306a36Sopenharmony_ci case ARIZONA_AIF1TX2MIX_INPUT_3_SOURCE: 115462306a36Sopenharmony_ci case ARIZONA_AIF1TX2MIX_INPUT_3_VOLUME: 115562306a36Sopenharmony_ci case ARIZONA_AIF1TX2MIX_INPUT_4_SOURCE: 115662306a36Sopenharmony_ci case ARIZONA_AIF1TX2MIX_INPUT_4_VOLUME: 115762306a36Sopenharmony_ci case ARIZONA_AIF1TX3MIX_INPUT_1_SOURCE: 115862306a36Sopenharmony_ci case ARIZONA_AIF1TX3MIX_INPUT_1_VOLUME: 115962306a36Sopenharmony_ci case ARIZONA_AIF1TX3MIX_INPUT_2_SOURCE: 116062306a36Sopenharmony_ci case ARIZONA_AIF1TX3MIX_INPUT_2_VOLUME: 116162306a36Sopenharmony_ci case ARIZONA_AIF1TX3MIX_INPUT_3_SOURCE: 116262306a36Sopenharmony_ci case ARIZONA_AIF1TX3MIX_INPUT_3_VOLUME: 116362306a36Sopenharmony_ci case ARIZONA_AIF1TX3MIX_INPUT_4_SOURCE: 116462306a36Sopenharmony_ci case ARIZONA_AIF1TX3MIX_INPUT_4_VOLUME: 116562306a36Sopenharmony_ci case ARIZONA_AIF1TX4MIX_INPUT_1_SOURCE: 116662306a36Sopenharmony_ci case ARIZONA_AIF1TX4MIX_INPUT_1_VOLUME: 116762306a36Sopenharmony_ci case ARIZONA_AIF1TX4MIX_INPUT_2_SOURCE: 116862306a36Sopenharmony_ci case ARIZONA_AIF1TX4MIX_INPUT_2_VOLUME: 116962306a36Sopenharmony_ci case ARIZONA_AIF1TX4MIX_INPUT_3_SOURCE: 117062306a36Sopenharmony_ci case ARIZONA_AIF1TX4MIX_INPUT_3_VOLUME: 117162306a36Sopenharmony_ci case ARIZONA_AIF1TX4MIX_INPUT_4_SOURCE: 117262306a36Sopenharmony_ci case ARIZONA_AIF1TX4MIX_INPUT_4_VOLUME: 117362306a36Sopenharmony_ci case ARIZONA_AIF1TX5MIX_INPUT_1_SOURCE: 117462306a36Sopenharmony_ci case ARIZONA_AIF1TX5MIX_INPUT_1_VOLUME: 117562306a36Sopenharmony_ci case ARIZONA_AIF1TX5MIX_INPUT_2_SOURCE: 117662306a36Sopenharmony_ci case ARIZONA_AIF1TX5MIX_INPUT_2_VOLUME: 117762306a36Sopenharmony_ci case ARIZONA_AIF1TX5MIX_INPUT_3_SOURCE: 117862306a36Sopenharmony_ci case ARIZONA_AIF1TX5MIX_INPUT_3_VOLUME: 117962306a36Sopenharmony_ci case ARIZONA_AIF1TX5MIX_INPUT_4_SOURCE: 118062306a36Sopenharmony_ci case ARIZONA_AIF1TX5MIX_INPUT_4_VOLUME: 118162306a36Sopenharmony_ci case ARIZONA_AIF1TX6MIX_INPUT_1_SOURCE: 118262306a36Sopenharmony_ci case ARIZONA_AIF1TX6MIX_INPUT_1_VOLUME: 118362306a36Sopenharmony_ci case ARIZONA_AIF1TX6MIX_INPUT_2_SOURCE: 118462306a36Sopenharmony_ci case ARIZONA_AIF1TX6MIX_INPUT_2_VOLUME: 118562306a36Sopenharmony_ci case ARIZONA_AIF1TX6MIX_INPUT_3_SOURCE: 118662306a36Sopenharmony_ci case ARIZONA_AIF1TX6MIX_INPUT_3_VOLUME: 118762306a36Sopenharmony_ci case ARIZONA_AIF1TX6MIX_INPUT_4_SOURCE: 118862306a36Sopenharmony_ci case ARIZONA_AIF1TX6MIX_INPUT_4_VOLUME: 118962306a36Sopenharmony_ci case ARIZONA_AIF2TX1MIX_INPUT_1_SOURCE: 119062306a36Sopenharmony_ci case ARIZONA_AIF2TX1MIX_INPUT_1_VOLUME: 119162306a36Sopenharmony_ci case ARIZONA_AIF2TX1MIX_INPUT_2_SOURCE: 119262306a36Sopenharmony_ci case ARIZONA_AIF2TX1MIX_INPUT_2_VOLUME: 119362306a36Sopenharmony_ci case ARIZONA_AIF2TX1MIX_INPUT_3_SOURCE: 119462306a36Sopenharmony_ci case ARIZONA_AIF2TX1MIX_INPUT_3_VOLUME: 119562306a36Sopenharmony_ci case ARIZONA_AIF2TX1MIX_INPUT_4_SOURCE: 119662306a36Sopenharmony_ci case ARIZONA_AIF2TX1MIX_INPUT_4_VOLUME: 119762306a36Sopenharmony_ci case ARIZONA_AIF2TX2MIX_INPUT_1_SOURCE: 119862306a36Sopenharmony_ci case ARIZONA_AIF2TX2MIX_INPUT_1_VOLUME: 119962306a36Sopenharmony_ci case ARIZONA_AIF2TX2MIX_INPUT_2_SOURCE: 120062306a36Sopenharmony_ci case ARIZONA_AIF2TX2MIX_INPUT_2_VOLUME: 120162306a36Sopenharmony_ci case ARIZONA_AIF2TX2MIX_INPUT_3_SOURCE: 120262306a36Sopenharmony_ci case ARIZONA_AIF2TX2MIX_INPUT_3_VOLUME: 120362306a36Sopenharmony_ci case ARIZONA_AIF2TX2MIX_INPUT_4_SOURCE: 120462306a36Sopenharmony_ci case ARIZONA_AIF2TX2MIX_INPUT_4_VOLUME: 120562306a36Sopenharmony_ci case ARIZONA_AIF2TX3MIX_INPUT_1_SOURCE: 120662306a36Sopenharmony_ci case ARIZONA_AIF2TX3MIX_INPUT_1_VOLUME: 120762306a36Sopenharmony_ci case ARIZONA_AIF2TX3MIX_INPUT_2_SOURCE: 120862306a36Sopenharmony_ci case ARIZONA_AIF2TX3MIX_INPUT_2_VOLUME: 120962306a36Sopenharmony_ci case ARIZONA_AIF2TX3MIX_INPUT_3_SOURCE: 121062306a36Sopenharmony_ci case ARIZONA_AIF2TX3MIX_INPUT_3_VOLUME: 121162306a36Sopenharmony_ci case ARIZONA_AIF2TX3MIX_INPUT_4_SOURCE: 121262306a36Sopenharmony_ci case ARIZONA_AIF2TX3MIX_INPUT_4_VOLUME: 121362306a36Sopenharmony_ci case ARIZONA_AIF2TX4MIX_INPUT_1_SOURCE: 121462306a36Sopenharmony_ci case ARIZONA_AIF2TX4MIX_INPUT_1_VOLUME: 121562306a36Sopenharmony_ci case ARIZONA_AIF2TX4MIX_INPUT_2_SOURCE: 121662306a36Sopenharmony_ci case ARIZONA_AIF2TX4MIX_INPUT_2_VOLUME: 121762306a36Sopenharmony_ci case ARIZONA_AIF2TX4MIX_INPUT_3_SOURCE: 121862306a36Sopenharmony_ci case ARIZONA_AIF2TX4MIX_INPUT_3_VOLUME: 121962306a36Sopenharmony_ci case ARIZONA_AIF2TX4MIX_INPUT_4_SOURCE: 122062306a36Sopenharmony_ci case ARIZONA_AIF2TX4MIX_INPUT_4_VOLUME: 122162306a36Sopenharmony_ci case ARIZONA_AIF2TX5MIX_INPUT_1_SOURCE: 122262306a36Sopenharmony_ci case ARIZONA_AIF2TX5MIX_INPUT_1_VOLUME: 122362306a36Sopenharmony_ci case ARIZONA_AIF2TX5MIX_INPUT_2_SOURCE: 122462306a36Sopenharmony_ci case ARIZONA_AIF2TX5MIX_INPUT_2_VOLUME: 122562306a36Sopenharmony_ci case ARIZONA_AIF2TX5MIX_INPUT_3_SOURCE: 122662306a36Sopenharmony_ci case ARIZONA_AIF2TX5MIX_INPUT_3_VOLUME: 122762306a36Sopenharmony_ci case ARIZONA_AIF2TX5MIX_INPUT_4_SOURCE: 122862306a36Sopenharmony_ci case ARIZONA_AIF2TX5MIX_INPUT_4_VOLUME: 122962306a36Sopenharmony_ci case ARIZONA_AIF2TX6MIX_INPUT_1_SOURCE: 123062306a36Sopenharmony_ci case ARIZONA_AIF2TX6MIX_INPUT_1_VOLUME: 123162306a36Sopenharmony_ci case ARIZONA_AIF2TX6MIX_INPUT_2_SOURCE: 123262306a36Sopenharmony_ci case ARIZONA_AIF2TX6MIX_INPUT_2_VOLUME: 123362306a36Sopenharmony_ci case ARIZONA_AIF2TX6MIX_INPUT_3_SOURCE: 123462306a36Sopenharmony_ci case ARIZONA_AIF2TX6MIX_INPUT_3_VOLUME: 123562306a36Sopenharmony_ci case ARIZONA_AIF2TX6MIX_INPUT_4_SOURCE: 123662306a36Sopenharmony_ci case ARIZONA_AIF2TX6MIX_INPUT_4_VOLUME: 123762306a36Sopenharmony_ci case ARIZONA_AIF3TX1MIX_INPUT_1_SOURCE: 123862306a36Sopenharmony_ci case ARIZONA_AIF3TX1MIX_INPUT_1_VOLUME: 123962306a36Sopenharmony_ci case ARIZONA_AIF3TX1MIX_INPUT_2_SOURCE: 124062306a36Sopenharmony_ci case ARIZONA_AIF3TX1MIX_INPUT_2_VOLUME: 124162306a36Sopenharmony_ci case ARIZONA_AIF3TX1MIX_INPUT_3_SOURCE: 124262306a36Sopenharmony_ci case ARIZONA_AIF3TX1MIX_INPUT_3_VOLUME: 124362306a36Sopenharmony_ci case ARIZONA_AIF3TX1MIX_INPUT_4_SOURCE: 124462306a36Sopenharmony_ci case ARIZONA_AIF3TX1MIX_INPUT_4_VOLUME: 124562306a36Sopenharmony_ci case ARIZONA_AIF3TX2MIX_INPUT_1_SOURCE: 124662306a36Sopenharmony_ci case ARIZONA_AIF3TX2MIX_INPUT_1_VOLUME: 124762306a36Sopenharmony_ci case ARIZONA_AIF3TX2MIX_INPUT_2_SOURCE: 124862306a36Sopenharmony_ci case ARIZONA_AIF3TX2MIX_INPUT_2_VOLUME: 124962306a36Sopenharmony_ci case ARIZONA_AIF3TX2MIX_INPUT_3_SOURCE: 125062306a36Sopenharmony_ci case ARIZONA_AIF3TX2MIX_INPUT_3_VOLUME: 125162306a36Sopenharmony_ci case ARIZONA_AIF3TX2MIX_INPUT_4_SOURCE: 125262306a36Sopenharmony_ci case ARIZONA_AIF3TX2MIX_INPUT_4_VOLUME: 125362306a36Sopenharmony_ci case ARIZONA_SLIMTX1MIX_INPUT_1_SOURCE: 125462306a36Sopenharmony_ci case ARIZONA_SLIMTX1MIX_INPUT_1_VOLUME: 125562306a36Sopenharmony_ci case ARIZONA_SLIMTX2MIX_INPUT_1_SOURCE: 125662306a36Sopenharmony_ci case ARIZONA_SLIMTX2MIX_INPUT_1_VOLUME: 125762306a36Sopenharmony_ci case ARIZONA_SLIMTX3MIX_INPUT_1_SOURCE: 125862306a36Sopenharmony_ci case ARIZONA_SLIMTX3MIX_INPUT_1_VOLUME: 125962306a36Sopenharmony_ci case ARIZONA_SLIMTX4MIX_INPUT_1_SOURCE: 126062306a36Sopenharmony_ci case ARIZONA_SLIMTX4MIX_INPUT_1_VOLUME: 126162306a36Sopenharmony_ci case ARIZONA_SLIMTX5MIX_INPUT_1_SOURCE: 126262306a36Sopenharmony_ci case ARIZONA_SLIMTX5MIX_INPUT_1_VOLUME: 126362306a36Sopenharmony_ci case ARIZONA_SLIMTX6MIX_INPUT_1_SOURCE: 126462306a36Sopenharmony_ci case ARIZONA_SLIMTX6MIX_INPUT_1_VOLUME: 126562306a36Sopenharmony_ci case ARIZONA_SPDIFTX1MIX_INPUT_1_SOURCE: 126662306a36Sopenharmony_ci case ARIZONA_SPDIFTX1MIX_INPUT_1_VOLUME: 126762306a36Sopenharmony_ci case ARIZONA_SPDIFTX2MIX_INPUT_1_SOURCE: 126862306a36Sopenharmony_ci case ARIZONA_SPDIFTX2MIX_INPUT_1_VOLUME: 126962306a36Sopenharmony_ci case ARIZONA_EQ1MIX_INPUT_1_SOURCE: 127062306a36Sopenharmony_ci case ARIZONA_EQ1MIX_INPUT_1_VOLUME: 127162306a36Sopenharmony_ci case ARIZONA_EQ2MIX_INPUT_1_SOURCE: 127262306a36Sopenharmony_ci case ARIZONA_EQ2MIX_INPUT_1_VOLUME: 127362306a36Sopenharmony_ci case ARIZONA_EQ3MIX_INPUT_1_SOURCE: 127462306a36Sopenharmony_ci case ARIZONA_EQ3MIX_INPUT_1_VOLUME: 127562306a36Sopenharmony_ci case ARIZONA_EQ4MIX_INPUT_1_SOURCE: 127662306a36Sopenharmony_ci case ARIZONA_EQ4MIX_INPUT_1_VOLUME: 127762306a36Sopenharmony_ci case ARIZONA_DRC1LMIX_INPUT_1_SOURCE: 127862306a36Sopenharmony_ci case ARIZONA_DRC1LMIX_INPUT_1_VOLUME: 127962306a36Sopenharmony_ci case ARIZONA_DRC1RMIX_INPUT_1_SOURCE: 128062306a36Sopenharmony_ci case ARIZONA_DRC1RMIX_INPUT_1_VOLUME: 128162306a36Sopenharmony_ci case ARIZONA_HPLP1MIX_INPUT_1_SOURCE: 128262306a36Sopenharmony_ci case ARIZONA_HPLP1MIX_INPUT_1_VOLUME: 128362306a36Sopenharmony_ci case ARIZONA_HPLP1MIX_INPUT_2_SOURCE: 128462306a36Sopenharmony_ci case ARIZONA_HPLP1MIX_INPUT_2_VOLUME: 128562306a36Sopenharmony_ci case ARIZONA_HPLP1MIX_INPUT_3_SOURCE: 128662306a36Sopenharmony_ci case ARIZONA_HPLP1MIX_INPUT_3_VOLUME: 128762306a36Sopenharmony_ci case ARIZONA_HPLP1MIX_INPUT_4_SOURCE: 128862306a36Sopenharmony_ci case ARIZONA_HPLP1MIX_INPUT_4_VOLUME: 128962306a36Sopenharmony_ci case ARIZONA_HPLP2MIX_INPUT_1_SOURCE: 129062306a36Sopenharmony_ci case ARIZONA_HPLP2MIX_INPUT_1_VOLUME: 129162306a36Sopenharmony_ci case ARIZONA_HPLP2MIX_INPUT_2_SOURCE: 129262306a36Sopenharmony_ci case ARIZONA_HPLP2MIX_INPUT_2_VOLUME: 129362306a36Sopenharmony_ci case ARIZONA_HPLP2MIX_INPUT_3_SOURCE: 129462306a36Sopenharmony_ci case ARIZONA_HPLP2MIX_INPUT_3_VOLUME: 129562306a36Sopenharmony_ci case ARIZONA_HPLP2MIX_INPUT_4_SOURCE: 129662306a36Sopenharmony_ci case ARIZONA_HPLP2MIX_INPUT_4_VOLUME: 129762306a36Sopenharmony_ci case ARIZONA_HPLP3MIX_INPUT_1_SOURCE: 129862306a36Sopenharmony_ci case ARIZONA_HPLP3MIX_INPUT_1_VOLUME: 129962306a36Sopenharmony_ci case ARIZONA_HPLP3MIX_INPUT_2_SOURCE: 130062306a36Sopenharmony_ci case ARIZONA_HPLP3MIX_INPUT_2_VOLUME: 130162306a36Sopenharmony_ci case ARIZONA_HPLP3MIX_INPUT_3_SOURCE: 130262306a36Sopenharmony_ci case ARIZONA_HPLP3MIX_INPUT_3_VOLUME: 130362306a36Sopenharmony_ci case ARIZONA_HPLP3MIX_INPUT_4_SOURCE: 130462306a36Sopenharmony_ci case ARIZONA_HPLP3MIX_INPUT_4_VOLUME: 130562306a36Sopenharmony_ci case ARIZONA_HPLP4MIX_INPUT_1_SOURCE: 130662306a36Sopenharmony_ci case ARIZONA_HPLP4MIX_INPUT_1_VOLUME: 130762306a36Sopenharmony_ci case ARIZONA_HPLP4MIX_INPUT_2_SOURCE: 130862306a36Sopenharmony_ci case ARIZONA_HPLP4MIX_INPUT_2_VOLUME: 130962306a36Sopenharmony_ci case ARIZONA_HPLP4MIX_INPUT_3_SOURCE: 131062306a36Sopenharmony_ci case ARIZONA_HPLP4MIX_INPUT_3_VOLUME: 131162306a36Sopenharmony_ci case ARIZONA_HPLP4MIX_INPUT_4_SOURCE: 131262306a36Sopenharmony_ci case ARIZONA_HPLP4MIX_INPUT_4_VOLUME: 131362306a36Sopenharmony_ci case ARIZONA_ASRC1LMIX_INPUT_1_SOURCE: 131462306a36Sopenharmony_ci case ARIZONA_ASRC1RMIX_INPUT_1_SOURCE: 131562306a36Sopenharmony_ci case ARIZONA_ASRC2LMIX_INPUT_1_SOURCE: 131662306a36Sopenharmony_ci case ARIZONA_ASRC2RMIX_INPUT_1_SOURCE: 131762306a36Sopenharmony_ci case ARIZONA_ISRC1DEC1MIX_INPUT_1_SOURCE: 131862306a36Sopenharmony_ci case ARIZONA_ISRC1DEC2MIX_INPUT_1_SOURCE: 131962306a36Sopenharmony_ci case ARIZONA_ISRC1DEC3MIX_INPUT_1_SOURCE: 132062306a36Sopenharmony_ci case ARIZONA_ISRC1DEC4MIX_INPUT_1_SOURCE: 132162306a36Sopenharmony_ci case ARIZONA_ISRC1INT1MIX_INPUT_1_SOURCE: 132262306a36Sopenharmony_ci case ARIZONA_ISRC1INT2MIX_INPUT_1_SOURCE: 132362306a36Sopenharmony_ci case ARIZONA_ISRC1INT3MIX_INPUT_1_SOURCE: 132462306a36Sopenharmony_ci case ARIZONA_ISRC1INT4MIX_INPUT_1_SOURCE: 132562306a36Sopenharmony_ci case ARIZONA_ISRC2DEC1MIX_INPUT_1_SOURCE: 132662306a36Sopenharmony_ci case ARIZONA_ISRC2DEC2MIX_INPUT_1_SOURCE: 132762306a36Sopenharmony_ci case ARIZONA_ISRC2INT1MIX_INPUT_1_SOURCE: 132862306a36Sopenharmony_ci case ARIZONA_ISRC2INT2MIX_INPUT_1_SOURCE: 132962306a36Sopenharmony_ci case ARIZONA_GPIO1_CTRL: 133062306a36Sopenharmony_ci case ARIZONA_GPIO2_CTRL: 133162306a36Sopenharmony_ci case ARIZONA_GPIO3_CTRL: 133262306a36Sopenharmony_ci case ARIZONA_GPIO4_CTRL: 133362306a36Sopenharmony_ci case ARIZONA_GPIO5_CTRL: 133462306a36Sopenharmony_ci case ARIZONA_IRQ_CTRL_1: 133562306a36Sopenharmony_ci case ARIZONA_GPIO_DEBOUNCE_CONFIG: 133662306a36Sopenharmony_ci case ARIZONA_GP_SWITCH_1: 133762306a36Sopenharmony_ci case ARIZONA_MISC_PAD_CTRL_1: 133862306a36Sopenharmony_ci case ARIZONA_MISC_PAD_CTRL_2: 133962306a36Sopenharmony_ci case ARIZONA_MISC_PAD_CTRL_3: 134062306a36Sopenharmony_ci case ARIZONA_MISC_PAD_CTRL_4: 134162306a36Sopenharmony_ci case ARIZONA_MISC_PAD_CTRL_5: 134262306a36Sopenharmony_ci case ARIZONA_MISC_PAD_CTRL_6: 134362306a36Sopenharmony_ci case ARIZONA_INTERRUPT_STATUS_1: 134462306a36Sopenharmony_ci case ARIZONA_INTERRUPT_STATUS_2: 134562306a36Sopenharmony_ci case ARIZONA_INTERRUPT_STATUS_3: 134662306a36Sopenharmony_ci case ARIZONA_INTERRUPT_STATUS_4: 134762306a36Sopenharmony_ci case ARIZONA_INTERRUPT_STATUS_5: 134862306a36Sopenharmony_ci case ARIZONA_INTERRUPT_STATUS_1_MASK: 134962306a36Sopenharmony_ci case ARIZONA_INTERRUPT_STATUS_2_MASK: 135062306a36Sopenharmony_ci case ARIZONA_INTERRUPT_STATUS_3_MASK: 135162306a36Sopenharmony_ci case ARIZONA_INTERRUPT_STATUS_4_MASK: 135262306a36Sopenharmony_ci case ARIZONA_INTERRUPT_STATUS_5_MASK: 135362306a36Sopenharmony_ci case ARIZONA_INTERRUPT_CONTROL: 135462306a36Sopenharmony_ci case ARIZONA_IRQ2_STATUS_1: 135562306a36Sopenharmony_ci case ARIZONA_IRQ2_STATUS_2: 135662306a36Sopenharmony_ci case ARIZONA_IRQ2_STATUS_3: 135762306a36Sopenharmony_ci case ARIZONA_IRQ2_STATUS_4: 135862306a36Sopenharmony_ci case ARIZONA_IRQ2_STATUS_5: 135962306a36Sopenharmony_ci case ARIZONA_IRQ2_STATUS_1_MASK: 136062306a36Sopenharmony_ci case ARIZONA_IRQ2_STATUS_2_MASK: 136162306a36Sopenharmony_ci case ARIZONA_IRQ2_STATUS_3_MASK: 136262306a36Sopenharmony_ci case ARIZONA_IRQ2_STATUS_4_MASK: 136362306a36Sopenharmony_ci case ARIZONA_IRQ2_STATUS_5_MASK: 136462306a36Sopenharmony_ci case ARIZONA_IRQ2_CONTROL: 136562306a36Sopenharmony_ci case ARIZONA_INTERRUPT_RAW_STATUS_2: 136662306a36Sopenharmony_ci case ARIZONA_INTERRUPT_RAW_STATUS_3: 136762306a36Sopenharmony_ci case ARIZONA_INTERRUPT_RAW_STATUS_4: 136862306a36Sopenharmony_ci case ARIZONA_INTERRUPT_RAW_STATUS_5: 136962306a36Sopenharmony_ci case ARIZONA_INTERRUPT_RAW_STATUS_6: 137062306a36Sopenharmony_ci case ARIZONA_INTERRUPT_RAW_STATUS_7: 137162306a36Sopenharmony_ci case ARIZONA_INTERRUPT_RAW_STATUS_8: 137262306a36Sopenharmony_ci case ARIZONA_IRQ_PIN_STATUS: 137362306a36Sopenharmony_ci case ARIZONA_AOD_WKUP_AND_TRIG: 137462306a36Sopenharmony_ci case ARIZONA_AOD_IRQ1: 137562306a36Sopenharmony_ci case ARIZONA_AOD_IRQ2: 137662306a36Sopenharmony_ci case ARIZONA_AOD_IRQ_MASK_IRQ1: 137762306a36Sopenharmony_ci case ARIZONA_AOD_IRQ_MASK_IRQ2: 137862306a36Sopenharmony_ci case ARIZONA_AOD_IRQ_RAW_STATUS: 137962306a36Sopenharmony_ci case ARIZONA_JACK_DETECT_DEBOUNCE: 138062306a36Sopenharmony_ci case ARIZONA_FX_CTRL1: 138162306a36Sopenharmony_ci case ARIZONA_FX_CTRL2: 138262306a36Sopenharmony_ci case ARIZONA_EQ1_1: 138362306a36Sopenharmony_ci case ARIZONA_EQ1_2: 138462306a36Sopenharmony_ci case ARIZONA_EQ1_3: 138562306a36Sopenharmony_ci case ARIZONA_EQ1_4: 138662306a36Sopenharmony_ci case ARIZONA_EQ1_5: 138762306a36Sopenharmony_ci case ARIZONA_EQ1_6: 138862306a36Sopenharmony_ci case ARIZONA_EQ1_7: 138962306a36Sopenharmony_ci case ARIZONA_EQ1_8: 139062306a36Sopenharmony_ci case ARIZONA_EQ1_9: 139162306a36Sopenharmony_ci case ARIZONA_EQ1_10: 139262306a36Sopenharmony_ci case ARIZONA_EQ1_11: 139362306a36Sopenharmony_ci case ARIZONA_EQ1_12: 139462306a36Sopenharmony_ci case ARIZONA_EQ1_13: 139562306a36Sopenharmony_ci case ARIZONA_EQ1_14: 139662306a36Sopenharmony_ci case ARIZONA_EQ1_15: 139762306a36Sopenharmony_ci case ARIZONA_EQ1_16: 139862306a36Sopenharmony_ci case ARIZONA_EQ1_17: 139962306a36Sopenharmony_ci case ARIZONA_EQ1_18: 140062306a36Sopenharmony_ci case ARIZONA_EQ1_19: 140162306a36Sopenharmony_ci case ARIZONA_EQ1_20: 140262306a36Sopenharmony_ci case ARIZONA_EQ1_21: 140362306a36Sopenharmony_ci case ARIZONA_EQ2_1: 140462306a36Sopenharmony_ci case ARIZONA_EQ2_2: 140562306a36Sopenharmony_ci case ARIZONA_EQ2_3: 140662306a36Sopenharmony_ci case ARIZONA_EQ2_4: 140762306a36Sopenharmony_ci case ARIZONA_EQ2_5: 140862306a36Sopenharmony_ci case ARIZONA_EQ2_6: 140962306a36Sopenharmony_ci case ARIZONA_EQ2_7: 141062306a36Sopenharmony_ci case ARIZONA_EQ2_8: 141162306a36Sopenharmony_ci case ARIZONA_EQ2_9: 141262306a36Sopenharmony_ci case ARIZONA_EQ2_10: 141362306a36Sopenharmony_ci case ARIZONA_EQ2_11: 141462306a36Sopenharmony_ci case ARIZONA_EQ2_12: 141562306a36Sopenharmony_ci case ARIZONA_EQ2_13: 141662306a36Sopenharmony_ci case ARIZONA_EQ2_14: 141762306a36Sopenharmony_ci case ARIZONA_EQ2_15: 141862306a36Sopenharmony_ci case ARIZONA_EQ2_16: 141962306a36Sopenharmony_ci case ARIZONA_EQ2_17: 142062306a36Sopenharmony_ci case ARIZONA_EQ2_18: 142162306a36Sopenharmony_ci case ARIZONA_EQ2_19: 142262306a36Sopenharmony_ci case ARIZONA_EQ2_20: 142362306a36Sopenharmony_ci case ARIZONA_EQ2_21: 142462306a36Sopenharmony_ci case ARIZONA_EQ3_1: 142562306a36Sopenharmony_ci case ARIZONA_EQ3_2: 142662306a36Sopenharmony_ci case ARIZONA_EQ3_3: 142762306a36Sopenharmony_ci case ARIZONA_EQ3_4: 142862306a36Sopenharmony_ci case ARIZONA_EQ3_5: 142962306a36Sopenharmony_ci case ARIZONA_EQ3_6: 143062306a36Sopenharmony_ci case ARIZONA_EQ3_7: 143162306a36Sopenharmony_ci case ARIZONA_EQ3_8: 143262306a36Sopenharmony_ci case ARIZONA_EQ3_9: 143362306a36Sopenharmony_ci case ARIZONA_EQ3_10: 143462306a36Sopenharmony_ci case ARIZONA_EQ3_11: 143562306a36Sopenharmony_ci case ARIZONA_EQ3_12: 143662306a36Sopenharmony_ci case ARIZONA_EQ3_13: 143762306a36Sopenharmony_ci case ARIZONA_EQ3_14: 143862306a36Sopenharmony_ci case ARIZONA_EQ3_15: 143962306a36Sopenharmony_ci case ARIZONA_EQ3_16: 144062306a36Sopenharmony_ci case ARIZONA_EQ3_17: 144162306a36Sopenharmony_ci case ARIZONA_EQ3_18: 144262306a36Sopenharmony_ci case ARIZONA_EQ3_19: 144362306a36Sopenharmony_ci case ARIZONA_EQ3_20: 144462306a36Sopenharmony_ci case ARIZONA_EQ3_21: 144562306a36Sopenharmony_ci case ARIZONA_EQ4_1: 144662306a36Sopenharmony_ci case ARIZONA_EQ4_2: 144762306a36Sopenharmony_ci case ARIZONA_EQ4_3: 144862306a36Sopenharmony_ci case ARIZONA_EQ4_4: 144962306a36Sopenharmony_ci case ARIZONA_EQ4_5: 145062306a36Sopenharmony_ci case ARIZONA_EQ4_6: 145162306a36Sopenharmony_ci case ARIZONA_EQ4_7: 145262306a36Sopenharmony_ci case ARIZONA_EQ4_8: 145362306a36Sopenharmony_ci case ARIZONA_EQ4_9: 145462306a36Sopenharmony_ci case ARIZONA_EQ4_10: 145562306a36Sopenharmony_ci case ARIZONA_EQ4_11: 145662306a36Sopenharmony_ci case ARIZONA_EQ4_12: 145762306a36Sopenharmony_ci case ARIZONA_EQ4_13: 145862306a36Sopenharmony_ci case ARIZONA_EQ4_14: 145962306a36Sopenharmony_ci case ARIZONA_EQ4_15: 146062306a36Sopenharmony_ci case ARIZONA_EQ4_16: 146162306a36Sopenharmony_ci case ARIZONA_EQ4_17: 146262306a36Sopenharmony_ci case ARIZONA_EQ4_18: 146362306a36Sopenharmony_ci case ARIZONA_EQ4_19: 146462306a36Sopenharmony_ci case ARIZONA_EQ4_20: 146562306a36Sopenharmony_ci case ARIZONA_EQ4_21: 146662306a36Sopenharmony_ci case ARIZONA_DRC1_CTRL1: 146762306a36Sopenharmony_ci case ARIZONA_DRC1_CTRL2: 146862306a36Sopenharmony_ci case ARIZONA_DRC1_CTRL3: 146962306a36Sopenharmony_ci case ARIZONA_DRC1_CTRL4: 147062306a36Sopenharmony_ci case ARIZONA_DRC1_CTRL5: 147162306a36Sopenharmony_ci case ARIZONA_HPLPF1_1: 147262306a36Sopenharmony_ci case ARIZONA_HPLPF1_2: 147362306a36Sopenharmony_ci case ARIZONA_HPLPF2_1: 147462306a36Sopenharmony_ci case ARIZONA_HPLPF2_2: 147562306a36Sopenharmony_ci case ARIZONA_HPLPF3_1: 147662306a36Sopenharmony_ci case ARIZONA_HPLPF3_2: 147762306a36Sopenharmony_ci case ARIZONA_HPLPF4_1: 147862306a36Sopenharmony_ci case ARIZONA_HPLPF4_2: 147962306a36Sopenharmony_ci case ARIZONA_ASRC_ENABLE: 148062306a36Sopenharmony_ci case ARIZONA_ASRC_STATUS: 148162306a36Sopenharmony_ci case ARIZONA_ASRC_RATE1: 148262306a36Sopenharmony_ci case ARIZONA_ASRC_RATE2: 148362306a36Sopenharmony_ci case ARIZONA_ISRC_1_CTRL_1: 148462306a36Sopenharmony_ci case ARIZONA_ISRC_1_CTRL_2: 148562306a36Sopenharmony_ci case ARIZONA_ISRC_1_CTRL_3: 148662306a36Sopenharmony_ci case ARIZONA_ISRC_2_CTRL_1: 148762306a36Sopenharmony_ci case ARIZONA_ISRC_2_CTRL_2: 148862306a36Sopenharmony_ci case ARIZONA_ISRC_2_CTRL_3: 148962306a36Sopenharmony_ci return true; 149062306a36Sopenharmony_ci default: 149162306a36Sopenharmony_ci return false; 149262306a36Sopenharmony_ci } 149362306a36Sopenharmony_ci} 149462306a36Sopenharmony_ci 149562306a36Sopenharmony_cistatic bool wm8998_volatile_register(struct device *dev, unsigned int reg) 149662306a36Sopenharmony_ci{ 149762306a36Sopenharmony_ci switch (reg) { 149862306a36Sopenharmony_ci case ARIZONA_SOFTWARE_RESET: 149962306a36Sopenharmony_ci case ARIZONA_DEVICE_REVISION: 150062306a36Sopenharmony_ci case ARIZONA_WRITE_SEQUENCER_CTRL_0: 150162306a36Sopenharmony_ci case ARIZONA_WRITE_SEQUENCER_CTRL_1: 150262306a36Sopenharmony_ci case ARIZONA_WRITE_SEQUENCER_CTRL_2: 150362306a36Sopenharmony_ci case ARIZONA_HAPTICS_STATUS: 150462306a36Sopenharmony_ci case ARIZONA_SAMPLE_RATE_1_STATUS: 150562306a36Sopenharmony_ci case ARIZONA_SAMPLE_RATE_2_STATUS: 150662306a36Sopenharmony_ci case ARIZONA_SAMPLE_RATE_3_STATUS: 150762306a36Sopenharmony_ci case ARIZONA_ASYNC_SAMPLE_RATE_1_STATUS: 150862306a36Sopenharmony_ci case ARIZONA_ASYNC_SAMPLE_RATE_2_STATUS: 150962306a36Sopenharmony_ci case ARIZONA_MIC_DETECT_3: 151062306a36Sopenharmony_ci case ARIZONA_MIC_DETECT_4: 151162306a36Sopenharmony_ci case ARIZONA_HEADPHONE_DETECT_2: 151262306a36Sopenharmony_ci case ARIZONA_INPUT_ENABLES_STATUS: 151362306a36Sopenharmony_ci case ARIZONA_OUTPUT_STATUS_1: 151462306a36Sopenharmony_ci case ARIZONA_RAW_OUTPUT_STATUS_1: 151562306a36Sopenharmony_ci case ARIZONA_SLIMBUS_RX_PORT_STATUS: 151662306a36Sopenharmony_ci case ARIZONA_SLIMBUS_TX_PORT_STATUS: 151762306a36Sopenharmony_ci case ARIZONA_INTERRUPT_STATUS_1: 151862306a36Sopenharmony_ci case ARIZONA_INTERRUPT_STATUS_2: 151962306a36Sopenharmony_ci case ARIZONA_INTERRUPT_STATUS_3: 152062306a36Sopenharmony_ci case ARIZONA_INTERRUPT_STATUS_4: 152162306a36Sopenharmony_ci case ARIZONA_INTERRUPT_STATUS_5: 152262306a36Sopenharmony_ci case ARIZONA_IRQ2_STATUS_1: 152362306a36Sopenharmony_ci case ARIZONA_IRQ2_STATUS_2: 152462306a36Sopenharmony_ci case ARIZONA_IRQ2_STATUS_3: 152562306a36Sopenharmony_ci case ARIZONA_IRQ2_STATUS_4: 152662306a36Sopenharmony_ci case ARIZONA_IRQ2_STATUS_5: 152762306a36Sopenharmony_ci case ARIZONA_INTERRUPT_RAW_STATUS_2: 152862306a36Sopenharmony_ci case ARIZONA_INTERRUPT_RAW_STATUS_3: 152962306a36Sopenharmony_ci case ARIZONA_INTERRUPT_RAW_STATUS_4: 153062306a36Sopenharmony_ci case ARIZONA_INTERRUPT_RAW_STATUS_5: 153162306a36Sopenharmony_ci case ARIZONA_INTERRUPT_RAW_STATUS_6: 153262306a36Sopenharmony_ci case ARIZONA_INTERRUPT_RAW_STATUS_7: 153362306a36Sopenharmony_ci case ARIZONA_INTERRUPT_RAW_STATUS_8: 153462306a36Sopenharmony_ci case ARIZONA_IRQ_PIN_STATUS: 153562306a36Sopenharmony_ci case ARIZONA_AOD_WKUP_AND_TRIG: 153662306a36Sopenharmony_ci case ARIZONA_AOD_IRQ1: 153762306a36Sopenharmony_ci case ARIZONA_AOD_IRQ2: 153862306a36Sopenharmony_ci case ARIZONA_AOD_IRQ_RAW_STATUS: 153962306a36Sopenharmony_ci case ARIZONA_FX_CTRL2: 154062306a36Sopenharmony_ci case ARIZONA_ASRC_STATUS: 154162306a36Sopenharmony_ci return true; 154262306a36Sopenharmony_ci default: 154362306a36Sopenharmony_ci return false; 154462306a36Sopenharmony_ci } 154562306a36Sopenharmony_ci} 154662306a36Sopenharmony_ci 154762306a36Sopenharmony_ci#define WM8998_MAX_REGISTER 0x31ff 154862306a36Sopenharmony_ci 154962306a36Sopenharmony_ciconst struct regmap_config wm8998_i2c_regmap = { 155062306a36Sopenharmony_ci .reg_bits = 32, 155162306a36Sopenharmony_ci .val_bits = 16, 155262306a36Sopenharmony_ci .reg_format_endian = REGMAP_ENDIAN_BIG, 155362306a36Sopenharmony_ci .val_format_endian = REGMAP_ENDIAN_BIG, 155462306a36Sopenharmony_ci 155562306a36Sopenharmony_ci .max_register = WM8998_MAX_REGISTER, 155662306a36Sopenharmony_ci .readable_reg = wm8998_readable_register, 155762306a36Sopenharmony_ci .volatile_reg = wm8998_volatile_register, 155862306a36Sopenharmony_ci 155962306a36Sopenharmony_ci .cache_type = REGCACHE_MAPLE, 156062306a36Sopenharmony_ci .reg_defaults = wm8998_reg_default, 156162306a36Sopenharmony_ci .num_reg_defaults = ARRAY_SIZE(wm8998_reg_default), 156262306a36Sopenharmony_ci}; 156362306a36Sopenharmony_ciEXPORT_SYMBOL_GPL(wm8998_i2c_regmap); 1564