Skip to content

Commit

Permalink
ALSA: hda - Always do delayed probes for HD-audio devices
Browse files Browse the repository at this point in the history
HD-audio devices tend to take long time for finishing the whole
probing procedure.  In this patch, the time-consuming part of the
probing procedure, the codec probe and the rest initializations, are
moved in the work, so that they can be done asynchronously in parallel
with probes of other devices.

Since we already have this mechanism in the driver code for the
firmware and i915 request_symbol() stuff, we just need to enable it
always; the resultant patch even reduces more lines, which is an
additional bonus.

Credit goes to David Henningsson, who suggested this workaround.

Reported-by: Mengdong Lin <mengdong.lin@intel.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
  • Loading branch information
Takashi Iwai committed Dec 2, 2013
1 parent b95ff8e commit aad730d
Showing 1 changed file with 7 additions and 21 deletions.
28 changes: 7 additions & 21 deletions sound/pci/hda/hda_intel.c
Original file line number Diff line number Diff line change
Expand Up @@ -543,9 +543,7 @@ struct azx {
/* for pending irqs */
struct work_struct irq_pending_work;

#ifdef CONFIG_SND_HDA_I915
struct work_struct probe_work;
#endif

/* reboot notifier (for mysterious hangup problem at power-down) */
struct notifier_block reboot_notifier;
Expand Down Expand Up @@ -3500,12 +3498,10 @@ static void azx_check_snoop_available(struct azx *chip)
}
}

#ifdef CONFIG_SND_HDA_I915
static void azx_probe_work(struct work_struct *work)
{
azx_probe_continue(container_of(work, struct azx, probe_work));
}
#endif

/*
* constructor
Expand Down Expand Up @@ -3582,10 +3578,8 @@ static int azx_create(struct snd_card *card, struct pci_dev *pci,
return err;
}

#ifdef CONFIG_SND_HDA_I915
/* continue probing in work context as may trigger request module */
INIT_WORK(&chip->probe_work, azx_probe_work);
#endif

*rchip = chip;

Expand Down Expand Up @@ -3805,7 +3799,7 @@ static int azx_probe(struct pci_dev *pci,
static int dev;
struct snd_card *card;
struct azx *chip;
bool probe_now;
bool schedule_probe;
int err;

if (dev >= SNDRV_CARDS)
Expand Down Expand Up @@ -3844,7 +3838,7 @@ static int azx_probe(struct pci_dev *pci,
chip->disabled = true;
}

probe_now = !chip->disabled;
schedule_probe = !chip->disabled;

#ifdef CONFIG_SND_HDA_PATCH_LOADER
if (patch[dev] && *patch[dev]) {
Expand All @@ -3855,25 +3849,17 @@ static int azx_probe(struct pci_dev *pci,
azx_firmware_cb);
if (err < 0)
goto out_free;
probe_now = false; /* continued in azx_firmware_cb() */
schedule_probe = false; /* continued in azx_firmware_cb() */
}
#endif /* CONFIG_SND_HDA_PATCH_LOADER */

/* continue probing in work context, avoid request_module deadlock */
if (probe_now && (chip->driver_caps & AZX_DCAPS_I915_POWERWELL)) {
#ifdef CONFIG_SND_HDA_I915
probe_now = false;
schedule_work(&chip->probe_work);
#else
#ifndef CONFIG_SND_HDA_I915
if (chip->driver_caps & AZX_DCAPS_I915_POWERWELL)
snd_printk(KERN_ERR SFX "Haswell must build in CONFIG_SND_HDA_I915\n");
#endif
}

if (probe_now) {
err = azx_probe_continue(chip);
if (err < 0)
goto out_free;
}
if (schedule_probe)
schedule_work(&chip->probe_work);

dev++;
if (chip->disabled)
Expand Down

0 comments on commit aad730d

Please sign in to comment.