|
@@ -247,8 +247,9 @@ out:
|
|
|
*/
|
|
|
static void close_delayed_work(struct work_struct *work)
|
|
|
{
|
|
|
- struct snd_soc_device *socdev =
|
|
|
- container_of(work, struct snd_soc_device, delayed_work.work);
|
|
|
+ struct snd_soc_card *card = container_of(work, struct snd_soc_card,
|
|
|
+ delayed_work.work);
|
|
|
+ struct snd_soc_device *socdev = card->socdev;
|
|
|
struct snd_soc_codec *codec = socdev->codec;
|
|
|
struct snd_soc_dai *codec_dai;
|
|
|
int i;
|
|
@@ -299,6 +300,7 @@ static int soc_codec_close(struct snd_pcm_substream *substream)
|
|
|
{
|
|
|
struct snd_soc_pcm_runtime *rtd = substream->private_data;
|
|
|
struct snd_soc_device *socdev = rtd->socdev;
|
|
|
+ struct snd_soc_card *card = socdev->card;
|
|
|
struct snd_soc_dai_link *machine = rtd->dai;
|
|
|
struct snd_soc_platform *platform = socdev->platform;
|
|
|
struct snd_soc_dai *cpu_dai = machine->cpu_dai;
|
|
@@ -340,7 +342,7 @@ static int soc_codec_close(struct snd_pcm_substream *substream)
|
|
|
if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
|
|
|
/* start delayed pop wq here for playback streams */
|
|
|
codec_dai->pop_wait = 1;
|
|
|
- schedule_delayed_work(&socdev->delayed_work,
|
|
|
+ schedule_delayed_work(&card->delayed_work,
|
|
|
msecs_to_jiffies(pmdown_time));
|
|
|
} else {
|
|
|
/* capture streams can be powered down now */
|
|
@@ -366,6 +368,7 @@ static int soc_pcm_prepare(struct snd_pcm_substream *substream)
|
|
|
{
|
|
|
struct snd_soc_pcm_runtime *rtd = substream->private_data;
|
|
|
struct snd_soc_device *socdev = rtd->socdev;
|
|
|
+ struct snd_soc_card *card = socdev->card;
|
|
|
struct snd_soc_dai_link *machine = rtd->dai;
|
|
|
struct snd_soc_platform *platform = socdev->platform;
|
|
|
struct snd_soc_dai *cpu_dai = machine->cpu_dai;
|
|
@@ -411,7 +414,7 @@ static int soc_pcm_prepare(struct snd_pcm_substream *substream)
|
|
|
if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
|
|
|
codec_dai->pop_wait) {
|
|
|
codec_dai->pop_wait = 0;
|
|
|
- cancel_delayed_work(&socdev->delayed_work);
|
|
|
+ cancel_delayed_work(&card->delayed_work);
|
|
|
}
|
|
|
|
|
|
/* do we need to power up codec */
|
|
@@ -645,7 +648,7 @@ static int soc_suspend(struct platform_device *pdev, pm_message_t state)
|
|
|
}
|
|
|
|
|
|
/* close any waiting streams and save state */
|
|
|
- run_delayed_work(&socdev->delayed_work);
|
|
|
+ run_delayed_work(&card->delayed_work);
|
|
|
codec->suspend_bias_level = codec->bias_level;
|
|
|
|
|
|
for (i = 0; i < codec->num_dai; i++) {
|
|
@@ -679,10 +682,10 @@ static int soc_suspend(struct platform_device *pdev, pm_message_t state)
|
|
|
*/
|
|
|
static void soc_resume_deferred(struct work_struct *work)
|
|
|
{
|
|
|
- struct snd_soc_device *socdev = container_of(work,
|
|
|
- struct snd_soc_device,
|
|
|
- deferred_resume_work);
|
|
|
- struct snd_soc_card *card = socdev->card;
|
|
|
+ struct snd_soc_card *card = container_of(work,
|
|
|
+ struct snd_soc_card,
|
|
|
+ deferred_resume_work);
|
|
|
+ struct snd_soc_device *socdev = card->socdev;
|
|
|
struct snd_soc_platform *platform = socdev->platform;
|
|
|
struct snd_soc_codec_device *codec_dev = socdev->codec_dev;
|
|
|
struct snd_soc_codec *codec = socdev->codec;
|
|
@@ -746,10 +749,11 @@ static void soc_resume_deferred(struct work_struct *work)
|
|
|
static int soc_resume(struct platform_device *pdev)
|
|
|
{
|
|
|
struct snd_soc_device *socdev = platform_get_drvdata(pdev);
|
|
|
+ struct snd_soc_card *card = socdev->card;
|
|
|
|
|
|
dev_dbg(socdev->dev, "scheduling resume work\n");
|
|
|
|
|
|
- if (!schedule_work(&socdev->deferred_resume_work))
|
|
|
+ if (!schedule_work(&card->deferred_resume_work))
|
|
|
dev_err(socdev->dev, "resume work item may be lost\n");
|
|
|
|
|
|
return 0;
|
|
@@ -769,6 +773,9 @@ static int soc_probe(struct platform_device *pdev)
|
|
|
struct snd_soc_platform *platform = socdev->platform;
|
|
|
struct snd_soc_codec_device *codec_dev = socdev->codec_dev;
|
|
|
|
|
|
+ /* Bodge while we push things out of socdev */
|
|
|
+ card->socdev = socdev;
|
|
|
+
|
|
|
if (card->probe) {
|
|
|
ret = card->probe(pdev);
|
|
|
if (ret < 0)
|
|
@@ -797,10 +804,10 @@ static int soc_probe(struct platform_device *pdev)
|
|
|
}
|
|
|
|
|
|
/* DAPM stream work */
|
|
|
- INIT_DELAYED_WORK(&socdev->delayed_work, close_delayed_work);
|
|
|
+ INIT_DELAYED_WORK(&card->delayed_work, close_delayed_work);
|
|
|
#ifdef CONFIG_PM
|
|
|
/* deferred resume work */
|
|
|
- INIT_WORK(&socdev->deferred_resume_work, soc_resume_deferred);
|
|
|
+ INIT_WORK(&card->deferred_resume_work, soc_resume_deferred);
|
|
|
#endif
|
|
|
|
|
|
return 0;
|
|
@@ -831,7 +838,7 @@ static int soc_remove(struct platform_device *pdev)
|
|
|
struct snd_soc_platform *platform = socdev->platform;
|
|
|
struct snd_soc_codec_device *codec_dev = socdev->codec_dev;
|
|
|
|
|
|
- run_delayed_work(&socdev->delayed_work);
|
|
|
+ run_delayed_work(&card->delayed_work);
|
|
|
|
|
|
if (platform->remove)
|
|
|
platform->remove(pdev);
|