Browse Source

Merge "asoc: codecs: Fix PBR Battery stack settings"

qctecmdr 2 years ago
parent
commit
86e51fdfde
1 changed files with 2 additions and 2 deletions
  1. 2 2
      asoc/codecs/lpass-cdc/lpass-cdc-wsa-macro.c

+ 2 - 2
asoc/codecs/lpass-cdc/lpass-cdc-wsa-macro.c

@@ -3022,7 +3022,7 @@ static void lpass_cdc_wsa_macro_init_pbr(struct snd_soc_component *component)
 	snd_soc_component_update_bits(component,
 		LPASS_CDC_WSA_ILIM_CFG1, 0x0F, sys_gain);
 	snd_soc_component_update_bits(component,
-		LPASS_CDC_WSA_ILIM_CFG9, 0xC0, bat_cfg << 0x7);
+		LPASS_CDC_WSA_ILIM_CFG9, 0xC0, (bat_cfg - 1) << 0x6);
 	/* Thesh */
 	vth1 = LPASS_CDC_WSA_MACRO_VTH_TO_REG(pbr_vth1_data[sys_gain][bat_cfg][rload]);
 	vth2 = LPASS_CDC_WSA_MACRO_VTH_TO_REG(pbr_vth2_data[sys_gain][bat_cfg][rload]);
@@ -3084,7 +3084,7 @@ static void lpass_cdc_wsa_macro_init_pbr(struct snd_soc_component *component)
 	snd_soc_component_update_bits(component,
 		LPASS_CDC_WSA_ILIM_CFG1_1, 0x0F, sys_gain);
 	snd_soc_component_update_bits(component,
-		LPASS_CDC_WSA_ILIM_CFG9, 0x30, bat_cfg << 0x5);
+		LPASS_CDC_WSA_ILIM_CFG9, 0x30, (bat_cfg - 1) << 0x4);
 	/* Thesh */
 	vth1 = LPASS_CDC_WSA_MACRO_VTH_TO_REG(pbr_vth1_data[sys_gain][bat_cfg][rload]);
 	vth2 = LPASS_CDC_WSA_MACRO_VTH_TO_REG(pbr_vth2_data[sys_gain][bat_cfg][rload]);