diff options
author | Vinod Koul <vinod.koul@intel.com> | 2015-12-18 04:42:02 -0500 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2016-01-10 07:02:47 -0500 |
commit | 6706a19747eb693ff35ce140f5cbee66dcfec0c4 (patch) | |
tree | 51e61839b5e5a72217bb3d642cd64649b2d4b9ce /sound/hda/ext | |
parent | cf8fe58b1066cea668e030d0ab61e4b8eef8b219 (diff) |
ALSA: hdac: add snd_hdac_ext_bus_link_power_up_all
We have an API for powering down all links, we need a similar one
for powering up links, so add for power up as well
Signed-off-by: Jayachandran B <jayachandran.b@intel.com>
Signed-off-by: Subhransu S. Prusty <subhransu.s.prusty@intel.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Reviewed-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/hda/ext')
-rw-r--r-- | sound/hda/ext/hdac_ext_controller.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/sound/hda/ext/hdac_ext_controller.c b/sound/hda/ext/hdac_ext_controller.c index 1a55a781270d..548cc1e4114b 100644 --- a/sound/hda/ext/hdac_ext_controller.c +++ b/sound/hda/ext/hdac_ext_controller.c | |||
@@ -288,6 +288,27 @@ int snd_hdac_ext_bus_link_power_down(struct hdac_ext_link *link) | |||
288 | EXPORT_SYMBOL_GPL(snd_hdac_ext_bus_link_power_down); | 288 | EXPORT_SYMBOL_GPL(snd_hdac_ext_bus_link_power_down); |
289 | 289 | ||
290 | /** | 290 | /** |
291 | * snd_hdac_ext_bus_link_power_up_all -power up all hda link | ||
292 | * @ebus: HD-audio extended bus | ||
293 | */ | ||
294 | int snd_hdac_ext_bus_link_power_up_all(struct hdac_ext_bus *ebus) | ||
295 | { | ||
296 | struct hdac_ext_link *hlink = NULL; | ||
297 | int ret; | ||
298 | |||
299 | list_for_each_entry(hlink, &ebus->hlink_list, list) { | ||
300 | snd_hdac_updatel(hlink->ml_addr, | ||
301 | AZX_REG_ML_LCTL, 0, AZX_MLCTL_SPA); | ||
302 | ret = check_hdac_link_power_active(hlink, true); | ||
303 | if (ret < 0) | ||
304 | return ret; | ||
305 | } | ||
306 | |||
307 | return 0; | ||
308 | } | ||
309 | EXPORT_SYMBOL_GPL(snd_hdac_ext_bus_link_power_up_all); | ||
310 | |||
311 | /** | ||
291 | * snd_hdac_ext_bus_link_power_down_all -power down all hda link | 312 | * snd_hdac_ext_bus_link_power_down_all -power down all hda link |
292 | * @ebus: HD-audio extended bus | 313 | * @ebus: HD-audio extended bus |
293 | */ | 314 | */ |