Explorar el Código

Merge "asoc: wcd939x: Disable legacy surge protection"

qctecmdr hace 2 años
padre
commit
a36b2763eb
Se han modificado 1 ficheros con 15 adiciones y 2 borrados
  1. 15 2
      asoc/codecs/wcd939x/wcd939x.c

+ 15 - 2
asoc/codecs/wcd939x/wcd939x.c

@@ -474,10 +474,23 @@ static int wcd939x_init_reg(struct snd_soc_component *component)
 	snd_soc_component_update_bits(component,
 					REG_FIELD_VALUE(TEST_BLK_EN2, TXFE2_MBHC_CLKRST_EN, 0x00));
 
-	snd_soc_component_update_bits(component,
+	if (of_find_property(component->card->dev->of_node, "qcom,wcd-disable-legacy-surge", NULL)) {
+		snd_soc_component_update_bits(component,
+			REG_FIELD_VALUE(HPHLR_SURGE_EN, EN_SURGE_PROTECTION_HPHL, 0x00));
+		snd_soc_component_update_bits(component,
+			REG_FIELD_VALUE(HPHLR_SURGE_EN, EN_SURGE_PROTECTION_HPHR, 0x00));
+	}
+	else {
+		snd_soc_component_update_bits(component,
 			REG_FIELD_VALUE(HPHLR_SURGE_EN, EN_SURGE_PROTECTION_HPHL, 0x01));
-	snd_soc_component_update_bits(component,
+		snd_soc_component_update_bits(component,
 			REG_FIELD_VALUE(HPHLR_SURGE_EN, EN_SURGE_PROTECTION_HPHR, 0x01));
+	}
+
+	snd_soc_component_update_bits(component,
+		REG_FIELD_VALUE(HPH_OCP_CTL, OCP_FSM_EN, 0x01));
+	snd_soc_component_update_bits(component,
+		REG_FIELD_VALUE(HPH_OCP_CTL, SCD_OP_EN, 0x01));
 
 	snd_soc_component_write(component, WCD939X_CFG0, 0x05);