drm/i915/dsi: split out vlv_dsi_pll.h
Follow the convention of corresponding .h for .c. Signed-off-by: Jani Nikula <jani.nikula@intel.com> Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> Reviewed-by: Hans de Goede <hdegoede@redhat.com> Link: https://patchwork.freedesktop.org/patch/msgid/20211122111504.223248-2-jani.nikula@intel.com
This commit is contained in:
parent
aebdd7428c
commit
01e526285a
|
@ -26,7 +26,7 @@
|
|||
#include "intel_de.h"
|
||||
#include "intel_display_types.h"
|
||||
#include "intel_dpll.h"
|
||||
#include "intel_dsi.h"
|
||||
#include "vlv_dsi_pll.h"
|
||||
|
||||
#define CTM_COEFF_SIGN (1ULL << 63)
|
||||
|
||||
|
|
|
@ -109,6 +109,7 @@
|
|||
#include "i9xx_plane.h"
|
||||
#include "skl_scaler.h"
|
||||
#include "skl_universal_plane.h"
|
||||
#include "vlv_dsi_pll.h"
|
||||
#include "vlv_sideband.h"
|
||||
|
||||
static void intel_set_transcoder_timings(const struct intel_crtc_state *crtc_state);
|
||||
|
|
|
@ -187,27 +187,4 @@ struct intel_dsi_host *intel_dsi_host_init(struct intel_dsi *intel_dsi,
|
|||
enum port port);
|
||||
void vlv_dsi_init(struct drm_i915_private *dev_priv);
|
||||
|
||||
/* vlv_dsi_pll.c */
|
||||
int vlv_dsi_pll_compute(struct intel_encoder *encoder,
|
||||
struct intel_crtc_state *config);
|
||||
void vlv_dsi_pll_enable(struct intel_encoder *encoder,
|
||||
const struct intel_crtc_state *config);
|
||||
void vlv_dsi_pll_disable(struct intel_encoder *encoder);
|
||||
u32 vlv_dsi_get_pclk(struct intel_encoder *encoder,
|
||||
struct intel_crtc_state *config);
|
||||
void vlv_dsi_reset_clocks(struct intel_encoder *encoder, enum port port);
|
||||
|
||||
bool bxt_dsi_pll_is_enabled(struct drm_i915_private *dev_priv);
|
||||
int bxt_dsi_pll_compute(struct intel_encoder *encoder,
|
||||
struct intel_crtc_state *config);
|
||||
void bxt_dsi_pll_enable(struct intel_encoder *encoder,
|
||||
const struct intel_crtc_state *config);
|
||||
void bxt_dsi_pll_disable(struct intel_encoder *encoder);
|
||||
u32 bxt_dsi_get_pclk(struct intel_encoder *encoder,
|
||||
struct intel_crtc_state *config);
|
||||
void bxt_dsi_reset_clocks(struct intel_encoder *encoder, enum port port);
|
||||
|
||||
void assert_dsi_pll_enabled(struct drm_i915_private *i915);
|
||||
void assert_dsi_pll_disabled(struct drm_i915_private *i915);
|
||||
|
||||
#endif /* _INTEL_DSI_H */
|
||||
|
|
|
@ -42,6 +42,7 @@
|
|||
#include "intel_fifo_underrun.h"
|
||||
#include "intel_panel.h"
|
||||
#include "skl_scaler.h"
|
||||
#include "vlv_dsi_pll.h"
|
||||
#include "vlv_sideband.h"
|
||||
|
||||
/* return pixels in terms of txbyteclkhs */
|
||||
|
|
|
@ -31,6 +31,7 @@
|
|||
#include "intel_de.h"
|
||||
#include "intel_display_types.h"
|
||||
#include "intel_dsi.h"
|
||||
#include "vlv_dsi_pll.h"
|
||||
#include "vlv_sideband.h"
|
||||
|
||||
static const u16 lfsr_converts[] = {
|
||||
|
|
|
@ -0,0 +1,38 @@
|
|||
/* SPDX-License-Identifier: MIT */
|
||||
/*
|
||||
* Copyright © 2021 Intel Corporation
|
||||
*/
|
||||
|
||||
#ifndef __VLV_DSI_PLL_H__
|
||||
#define __VLV_DSI_PLL_H__
|
||||
|
||||
#include <linux/types.h>
|
||||
|
||||
enum port;
|
||||
struct drm_i915_private;
|
||||
struct intel_crtc_state;
|
||||
struct intel_encoder;
|
||||
|
||||
int vlv_dsi_pll_compute(struct intel_encoder *encoder,
|
||||
struct intel_crtc_state *config);
|
||||
void vlv_dsi_pll_enable(struct intel_encoder *encoder,
|
||||
const struct intel_crtc_state *config);
|
||||
void vlv_dsi_pll_disable(struct intel_encoder *encoder);
|
||||
u32 vlv_dsi_get_pclk(struct intel_encoder *encoder,
|
||||
struct intel_crtc_state *config);
|
||||
void vlv_dsi_reset_clocks(struct intel_encoder *encoder, enum port port);
|
||||
|
||||
bool bxt_dsi_pll_is_enabled(struct drm_i915_private *dev_priv);
|
||||
int bxt_dsi_pll_compute(struct intel_encoder *encoder,
|
||||
struct intel_crtc_state *config);
|
||||
void bxt_dsi_pll_enable(struct intel_encoder *encoder,
|
||||
const struct intel_crtc_state *config);
|
||||
void bxt_dsi_pll_disable(struct intel_encoder *encoder);
|
||||
u32 bxt_dsi_get_pclk(struct intel_encoder *encoder,
|
||||
struct intel_crtc_state *config);
|
||||
void bxt_dsi_reset_clocks(struct intel_encoder *encoder, enum port port);
|
||||
|
||||
void assert_dsi_pll_enabled(struct drm_i915_private *i915);
|
||||
void assert_dsi_pll_disabled(struct drm_i915_private *i915);
|
||||
|
||||
#endif /* __VLV_DSI_PLL_H__ */
|
Loading…
Reference in New Issue