{ "EARPIECE", NULL, "Earpiece Amp" },
 };
 
-static int sun50i_a64_codec_suspend(struct snd_soc_component *component)
+static int sun50i_a64_codec_set_bias_level(struct snd_soc_component *component,
+                                          enum snd_soc_bias_level level)
 {
-       return regmap_update_bits(component->regmap, SUN50I_ADDA_HP_CTRL,
-                                 BIT(SUN50I_ADDA_HP_CTRL_PA_CLK_GATE),
-                                 BIT(SUN50I_ADDA_HP_CTRL_PA_CLK_GATE));
-}
+       switch (level) {
+       case SND_SOC_BIAS_OFF:
+               regmap_set_bits(component->regmap, SUN50I_ADDA_HP_CTRL,
+                               BIT(SUN50I_ADDA_HP_CTRL_PA_CLK_GATE));
+               break;
+       case SND_SOC_BIAS_STANDBY:
+               regmap_clear_bits(component->regmap, SUN50I_ADDA_HP_CTRL,
+                                  BIT(SUN50I_ADDA_HP_CTRL_PA_CLK_GATE));
+               break;
+       default:
+               break;
+       }
 
-static int sun50i_a64_codec_resume(struct snd_soc_component *component)
-{
-       return regmap_update_bits(component->regmap, SUN50I_ADDA_HP_CTRL,
-                                 BIT(SUN50I_ADDA_HP_CTRL_PA_CLK_GATE), 0);
+       return 0;
 }
 
 static const struct snd_soc_component_driver sun50i_codec_analog_cmpnt_drv = {
        .num_dapm_widgets       = ARRAY_SIZE(sun50i_a64_codec_widgets),
        .dapm_routes            = sun50i_a64_codec_routes,
        .num_dapm_routes        = ARRAY_SIZE(sun50i_a64_codec_routes),
-       .suspend                = sun50i_a64_codec_suspend,
-       .resume                 = sun50i_a64_codec_resume,
+       .set_bias_level         = sun50i_a64_codec_set_bias_level,
+       .idle_bias_on           = true,
+       .suspend_bias_off       = true,
 };
 
 static const struct of_device_id sun50i_codec_analog_of_match[] = {