Going forward, struct intel_display shall replace struct drm_i915_private as the main display device data pointer type. Convert intel_hti.[ch] to struct intel_display. Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20240813164123.2674462-7-jani.nikula@intel.com Signed-off-by: Jani Nikula <jani.nikula@intel.com>
18 lines
398 B
C
18 lines
398 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2022 Intel Corporation
|
|
*/
|
|
|
|
#ifndef __INTEL_HTI_H__
|
|
#define __INTEL_HTI_H__
|
|
|
|
#include <linux/types.h>
|
|
|
|
struct intel_display;
|
|
enum phy;
|
|
|
|
void intel_hti_init(struct intel_display *display);
|
|
bool intel_hti_uses_phy(struct intel_display *display, enum phy phy);
|
|
u32 intel_hti_dpll_mask(struct intel_display *display);
|
|
|
|
#endif /* __INTEL_HTI_H__ */
|