diff --git a/include/sound/soc.h b/include/sound/soc.h
index 310a21949a3ede902c9402428f0707097bc14d13..13b117aac5d9bdb2ad328c3df75af4dba1c79201 100644
--- a/include/sound/soc.h
+++ b/include/sound/soc.h
@@ -332,6 +332,8 @@ struct snd_soc_jack_gpio {
 	int debounce_time;
 	struct snd_soc_jack *jack;
 	struct work_struct work;
+
+	int (*jack_status_check)(void);
 };
 #endif
 
diff --git a/sound/soc/soc-jack.c b/sound/soc/soc-jack.c
index 12124149601e627f721a86ec5401935bac1b1eff..3c07a94c2e300cd0f75a60617411894971f81d7d 100644
--- a/sound/soc/soc-jack.c
+++ b/sound/soc/soc-jack.c
@@ -163,6 +163,9 @@ static void snd_soc_jack_gpio_detect(struct snd_soc_jack_gpio *gpio)
 	else
 		report = 0;
 
+	if (gpio->jack_status_check)
+		report = gpio->jack_status_check();
+
 	snd_soc_jack_report(jack, report, gpio->report);
 }