Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 193 lines 4.8 kB view raw
1/* SPDX-License-Identifier: GPL-2.0-only */ 2/* 3 * rt1320-sdw.h -- RT1320 SDCA ALSA SoC audio driver header 4 * 5 * Copyright(c) 2024 Realtek Semiconductor Corp. 6 */ 7 8#ifndef __RT1320_SDW_H__ 9#define __RT1320_SDW_H__ 10 11#include <linux/regmap.h> 12#include <linux/soundwire/sdw.h> 13#include <linux/soundwire/sdw_type.h> 14#include <linux/soundwire/sdw_registers.h> 15#include <sound/soc.h> 16#include "../../../drivers/soundwire/bus.h" 17 18#define RT1320_DEV_ID 0x6981 19#define RT1321_DEV_ID 0x7045 20 21/* imp-defined registers */ 22#define RT1320_DEV_VERSION_ID_1 0xc404 23#define RT1320_DEV_ID_1 0xc405 24#define RT1320_DEV_ID_0 0xc406 25 26#define RT1320_POWER_STATE 0xc560 27 28#define RT1321_PATCH_MAIN_VER 0x1000cffe 29#define RT1321_PATCH_BETA_VER 0x1000cfff 30 31#define RT1320_KR0_STATUS_CNT 0x1000f008 32#define RT1320_KR0_INT_READY 0x1000f021 33#define RT1320_HIFI_VER_0 0x3fe2e000 34#define RT1320_HIFI_VER_1 0x3fe2e001 35#define RT1320_HIFI_VER_2 0x3fe2e002 36#define RT1320_HIFI_VER_3 0x3fe2e003 37 38/* RT1320 SDCA Control - function number */ 39#define FUNC_NUM_AMP 0x04 40#define FUNC_NUM_MIC 0x02 41 42/* RT1320 SDCA entity */ 43#define RT1320_SDCA_ENT0 0x00 44#define RT1320_SDCA_ENT_PDE11 0x2a 45#define RT1320_SDCA_ENT_PDE23 0x33 46#define RT1320_SDCA_ENT_PDE27 0x27 47#define RT1320_SDCA_ENT_FU14 0x32 48#define RT1320_SDCA_ENT_FU21 0x03 49#define RT1320_SDCA_ENT_FU113 0x30 50#define RT1320_SDCA_ENT_CS14 0x13 51#define RT1320_SDCA_ENT_CS21 0x21 52#define RT1320_SDCA_ENT_CS113 0x12 53#define RT1320_SDCA_ENT_SAPU 0x29 54#define RT1320_SDCA_ENT_PPU21 0x04 55 56/* RT1320 SDCA control */ 57#define RT1320_SDCA_CTL_SAMPLE_FREQ_INDEX 0x10 58#define RT1320_SDCA_CTL_REQ_POWER_STATE 0x01 59#define RT1320_SDCA_CTL_ACTUAL_POWER_STATE 0x10 60#define RT1320_SDCA_CTL_FU_MUTE 0x01 61#define RT1320_SDCA_CTL_FU_VOLUME 0x02 62#define RT1320_SDCA_CTL_SAPU_PROTECTION_MODE 0x10 63#define RT1320_SDCA_CTL_SAPU_PROTECTION_STATUS 0x11 64#define RT1320_SDCA_CTL_POSTURE_NUMBER 0x10 65#define RT1320_SDCA_CTL_FUNC_STATUS 0x10 66 67/* RT1320 SDCA channel */ 68#define CH_01 0x01 69#define CH_02 0x02 70 71/* Function_Status */ 72#define FUNCTION_NEEDS_INITIALIZATION BIT(5) 73 74/* Sample Frequency Index */ 75#define RT1320_SDCA_RATE_16000HZ 0x04 76#define RT1320_SDCA_RATE_32000HZ 0x07 77#define RT1320_SDCA_RATE_44100HZ 0x08 78#define RT1320_SDCA_RATE_48000HZ 0x09 79#define RT1320_SDCA_RATE_96000HZ 0x0b 80#define RT1320_SDCA_RATE_192000HZ 0x0d 81 82enum { 83 RT1320_AIF1, 84 RT1320_AIF2, 85}; 86 87/* 88 * The version id will be useful to distinguish the capability between the different IC versions. 89 * Currently, VA and VB have different DSP FW versions. 90 */ 91enum rt1320_version_id { 92 RT1320_VA, 93 RT1320_VB, 94 RT1320_VC, 95}; 96 97#define RT1320_VER_B_ID 0x07392238 98#define RT1320_VAB_MCU_PATCH "realtek/rt1320/rt1320-patch-code-vab.bin" 99#define RT1320_VC_MCU_PATCH "realtek/rt1320/rt1320-patch-code-vc.bin" 100#define RT1321_VA_MCU_PATCH "realtek/rt1320/rt1321-patch-code-va.bin" 101 102#define RT1320_FW_PARAM_ADDR 0x3fc2ab80 103#define RT1320_CMD_ID 0x3fc2ab81 104#define RT1320_CMD_PARAM_ADDR 0x3fc2ab90 105#define RT1320_DSPFW_STATUS_ADDR 0x3fc2bfc4 106 107#define RT1321_FW_PARAM_ADDR 0x3fc2d300 108#define RT1321_CMD_ID 0x3fc2d301 109#define RT1321_CMD_PARAM_ADDR 0x3fc2d310 110#define RT1321_DSPFW_STATUS_ADDR 0x3fc2dfc4 111 112/* FW parameter id 6, 7 */ 113struct rt1320_datafixpoint { 114 int silencedetect; 115 int r0; 116 int meanr0; 117 int advancegain; 118 int ts; 119 int re; 120 int t; 121 int invrs; 122}; 123 124typedef struct FwPara_HwSwGain { 125 unsigned int SwAdvGain; 126 unsigned int SwBasGain; 127 unsigned int HwAdvGain; 128 unsigned int HwBasGain; 129 unsigned int reserve0; 130 unsigned int reserve1; 131 unsigned int reserve2; 132 unsigned int reserve3; 133 unsigned int reserve4; 134 unsigned int reserve5; 135} __attribute__((packed)) FwPara_Get_HwSwGain; 136 137struct rt1320_paramcmd { 138 unsigned char moudleid; 139 unsigned char commandtype; 140 unsigned short reserved1; 141 unsigned int commandlength; 142 long long reserved2; 143 unsigned int paramid; 144 unsigned int paramlength; 145}; 146 147enum rt1320_fw_cmdid { 148 RT1320_FW_READY, 149 RT1320_SET_PARAM, 150 RT1320_GET_PARAM, 151 RT1320_GET_POOLSIZE, 152}; 153 154enum rt1320_power_state { 155 RT1320_NORMAL_STATE = 0x18, 156 RT1320_K_R0_STATE = 0x1b, 157}; 158 159enum rt1320_rw_type { 160 RT1320_BRA_WRITE = 0, 161 RT1320_BRA_READ = 1, 162 RT1320_PARAM_WRITE = 2, 163 RT1320_PARAM_READ = 3, 164}; 165 166struct rt1320_sdw_priv { 167 struct snd_soc_component *component; 168 struct regmap *regmap; 169 struct regmap *mbq_regmap; 170 struct sdw_slave *sdw_slave; 171 struct sdw_bus_params params; 172 bool hw_init; 173 bool first_hw_init; 174 int version_id; 175 int brown_out; 176 unsigned int dev_id; 177 bool fu_dapm_mute; 178 bool fu_mixer_mute[4]; 179 unsigned long long r0_l_reg; 180 unsigned long long r0_r_reg; 181 unsigned int r0_l_calib; 182 unsigned int r0_r_calib; 183 unsigned int temp_l_calib; 184 unsigned int temp_r_calib; 185 const char *dspfw_name; 186 bool cali_done; 187 bool fw_load_done; 188 bool rae_update_done; 189 struct work_struct load_dspfw_work; 190 struct sdw_bpt_msg bra_msg; 191}; 192 193#endif /* __RT1320_SDW_H__ */