mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-15 14:32:06 +00:00
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
18 lines
477 B
C
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__ */
|