xref: /linux/drivers/gpu/drm/i915/display/intel_hti.h (revision fa8a4d3659d0c1ad73d5f59b2e0a6d408de5b317)
1 /* SPDX-License-Identifier: MIT */
2 /*
3  * Copyright © 2022 Intel Corporation
4  */
5 
6 #ifndef __INTEL_HTI_H__
7 #define __INTEL_HTI_H__
8 
9 #include <linux/types.h>
10 
11 struct intel_display;
12 enum phy;
13 
14 void intel_hti_init(struct intel_display *display);
15 bool intel_hti_uses_phy(struct intel_display *display, enum phy phy);
16 u32 intel_hti_dpll_mask(struct intel_display *display);
17 
18 #endif /* __INTEL_HTI_H__ */
19