Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at v5.12 23 lines 651 B view raw
1/* SPDX-License-Identifier: MIT */ 2/* 3 * Copyright © 2020 Intel Corporation 4 */ 5 6#ifndef _INTEL_DPLL_H_ 7#define _INTEL_DPLL_H_ 8 9struct dpll; 10struct drm_i915_private; 11struct intel_crtc; 12struct intel_crtc_state; 13 14void intel_dpll_init_clock_hook(struct drm_i915_private *dev_priv); 15int vlv_calc_dpll_params(int refclk, struct dpll *clock); 16int pnv_calc_dpll_params(int refclk, struct dpll *clock); 17int i9xx_calc_dpll_params(int refclk, struct dpll *clock); 18void vlv_compute_dpll(struct intel_crtc *crtc, 19 struct intel_crtc_state *pipe_config); 20void chv_compute_dpll(struct intel_crtc *crtc, 21 struct intel_crtc_state *pipe_config); 22 23#endif