[alsa-devel] [PATCH 1/3] drm/i915: provide interface for audio driver to query cdclk
Takashi Iwai
tiwai at suse.de
Wed Jul 2 16:53:26 CEST 2014
At Wed, 2 Jul 2014 22:43:46 +0800,
mengdong.lin at intel.com wrote:
>
> From: Jani Nikula <jani.nikula at intel.com>
>
> Signed-off-by: Jani Nikula <jani.nikula at intel.com>
If you submit a patch, you need to add your own sign-off.
Just your signed-off-by line after Jani's line.
The code change itself looks OK.
thanks,
Takashi
>
> diff --git a/drivers/gpu/drm/i915/intel_pm.c b/drivers/gpu/drm/i915/intel_pm.c
> index a90fdbd..21170e5 100644
> --- a/drivers/gpu/drm/i915/intel_pm.c
> +++ b/drivers/gpu/drm/i915/intel_pm.c
> @@ -6256,6 +6256,27 @@ int i915_release_power_well(void)
> }
> EXPORT_SYMBOL_GPL(i915_release_power_well);
>
> +/*
> + * Private interface for the audio driver to get CDCLK in kHz.
> + *
> + * Caller must request power well using i915_request_power_well() prior to
> + * making the call.
> + */
> +int i915_get_cdclk_freq(void)
> +{
> + struct drm_i915_private *dev_priv;
> +
> + if (!hsw_pwr)
> + return -ENODEV;
> +
> + dev_priv = container_of(hsw_pwr, struct drm_i915_private,
> + power_domains);
> +
> + return intel_ddi_get_cdclk_freq(dev_priv);
> +}
> +EXPORT_SYMBOL_GPL(i915_get_cdclk_freq);
> +
> +
> #define POWER_DOMAIN_MASK (BIT(POWER_DOMAIN_NUM) - 1)
>
> #define HSW_ALWAYS_ON_POWER_DOMAINS ( \
> diff --git a/include/drm/i915_powerwell.h b/include/drm/i915_powerwell.h
> index 2baba99..baa6f11 100644
> --- a/include/drm/i915_powerwell.h
> +++ b/include/drm/i915_powerwell.h
> @@ -32,5 +32,6 @@
> /* For use by hda_i915 driver */
> extern int i915_request_power_well(void);
> extern int i915_release_power_well(void);
> +extern int i915_get_cdclk_freq(void);
>
> #endif /* _I915_POWERWELL_H_ */
> --
> 1.8.1.2
>
More information about the Alsa-devel
mailing list