Loading...
Note: File does not exist in v3.1.
1/* SPDX-License-Identifier: MIT */
2/* Copyright © 2024 Intel Corporation */
3
4#ifndef __INTEL_DP_TEST_H__
5#define __INTEL_DP_TEST_H__
6
7#include <linux/types.h>
8
9struct intel_crtc_state;
10struct intel_display;
11struct intel_dp;
12struct link_config_limits;
13
14void intel_dp_test_reset(struct intel_dp *intel_dp);
15void intel_dp_test_request(struct intel_dp *intel_dp);
16void intel_dp_test_compute_config(struct intel_dp *intel_dp,
17 struct intel_crtc_state *pipe_config,
18 struct link_config_limits *limits);
19bool intel_dp_test_phy(struct intel_dp *intel_dp);
20bool intel_dp_test_short_pulse(struct intel_dp *intel_dp);
21void intel_dp_test_debugfs_register(struct intel_display *display);
22
23#endif /* __INTEL_DP_TEST_H__ */