Files
linux/drivers/gpu/drm/i915/display/intel_snps_hdmi_pll.h
Ankit Nautiyal 82ecaae236 drm/i915/intel_snps_hdmi_pll: Compute C10 HDMI PLLs with algorithm
Add support for computing C10 HDMI PLLS using the HDMI PLL algorithm.

v2: Fix styling issues. (Jani)
v3: Rename function to align with filename. (Jani)
v4: Add Bspec reference. (Suraj)

Bspec: 74166
Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Reviewed-by: Suraj Kandpal <suraj.kandpal@intel.com>
Acked-by: Jani Nikula <jani.nikula@intel.com>
Tested-by: Khaled Almahallawy <khaled.almahallawy@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20250120042122.1029481-5-ankit.k.nautiyal@intel.com
2025-01-23 09:57:27 +05:30

18 lines
477 B
C

/* SPDX-License-Identifier: MIT */
/*
* Copyright © 2025 Synopsys, Inc., Intel Corporation
*/
#ifndef __INTEL_SNPS_HDMI_PLL_H__
#define __INTEL_SNPS_HDMI_PLL_H__
#include <linux/types.h>
struct intel_c10pll_state;
struct intel_mpllb_state;
void intel_snps_hdmi_pll_compute_mpllb(struct intel_mpllb_state *pll_state, u64 pixel_clock);
void intel_snps_hdmi_pll_compute_c10pll(struct intel_c10pll_state *pll_state, u64 pixel_clock);
#endif /* __INTEL_SNPS_HDMI_PLL_H__ */