Ver Fonte

asoc: set card state to online after snd card registration

AGM might get initialized before sound card is populated
with all pcm nodes. This will lead to AGM parsing fewer
nodes and forms incomplete list of backends.

To avoid this, kernel module sets card status to ONLINE,
and AGM waits till the card status is ONLINE before parsing
for the pcm nodes.

Change-Id: I4b7f7085645706ba4351efe23ba048d3a177312c
Signed-off-by: Srinivas Marka <[email protected]>
Srinivas Marka há 3 anos atrás
pai
commit
c315833fa3
3 ficheiros alterados com 20 adições e 4 exclusões
  1. 7 1
      asoc/msm_common.c
  2. 7 1
      asoc/msm_common.h
  3. 6 2
      asoc/waipio.c

+ 7 - 1
asoc/msm_common.c

@@ -150,13 +150,19 @@ done:
 	return ret;
 }
 
-int snd_card_notify_user(int card_status)
+int snd_card_notify_user(snd_card_status_t card_status)
 {
 	snd_card_pdata->card_status = card_status;
 	sysfs_notify(&snd_card_pdata->snd_card_kobj, NULL, "card_state");
 	return 0;
 }
 
+int snd_card_set_card_status(snd_card_status_t card_status)
+{
+	snd_card_pdata->card_status = card_status;
+	return 0;
+}
+
 static ssize_t snd_card_sysfs_show(struct kobject *kobj,
 		struct attribute *attr, char *buf)
 {

+ 7 - 1
asoc/msm_common.h

@@ -31,6 +31,11 @@ enum {
 	MI2S_TDM_AUXPCM_MAX,
 };
 
+typedef enum snd_card_status_t {
+	SND_CARD_STATUS_OFFLINE = 0,
+	SND_CARD_STATUS_ONLINE  = 1,
+} snd_card_status_t;
+
 struct msm_common_pdata {
 	uint8_t *aud_dev_state;
 	struct kobject aud_dev_kobj;
@@ -46,7 +51,8 @@ struct msm_common_pdata {
 	uint32_t is_audio_hw_vote_required[MI2S_TDM_AUXPCM_MAX];
 };
 
-int snd_card_notify_user(int card_status);
+int snd_card_notify_user(snd_card_status_t card_status);
+int snd_card_set_card_status(snd_card_status_t card_status);
 struct msm_common_pdata *msm_common_get_pdata(struct snd_soc_card *card);
 
 void msm_common_set_pdata(struct snd_soc_card *card,

+ 6 - 2
asoc/waipio.c

@@ -1505,7 +1505,7 @@ static int waipio_ssr_enable(struct device *dev, void *data)
 		dev_dbg(dev, "%s: TODO \n", __func__);
 	}
 
-	snd_card_notify_user(1);
+	snd_card_notify_user(SND_CARD_STATUS_ONLINE);
 	dev_dbg(dev, "%s: setting snd_card to ONLINE\n", __func__);
 
 err:
@@ -1523,7 +1523,7 @@ static void waipio_ssr_disable(struct device *dev, void *data)
 	}
 
 	dev_dbg(dev, "%s: setting snd_card to OFFLINE\n", __func__);
-	snd_card_notify_user(0);
+	snd_card_notify_user(SND_CARD_STATUS_OFFLINE);
 
 	if (!strcmp(card->name, "waipio-stub-snd-card")) {
 		/* TODO */
@@ -1713,6 +1713,10 @@ static int msm_asoc_machine_probe(struct platform_device *pdev)
 	/* Add QoS request for audio tasks */
 	msm_audio_add_qos_request();
 
+	/* change card status to ONLINE */
+	dev_dbg(&pdev->dev, "%s: setting snd_card to ONLINE\n", __func__);
+	snd_card_set_card_status(SND_CARD_STATUS_ONLINE);
+
 	return 0;
 err:
 	devm_kfree(&pdev->dev, pdata);