xref: /linux/include/drm/bridge/dw_dp.h (revision b615879dbfea6cf1236acbc3f2fb25ae84e07071)
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /*
3  * Copyright (c) 2025 Rockchip Electronics Co., Ltd.
4  */
5 
6 #ifndef __DW_DP__
7 #define __DW_DP__
8 
9 #include <linux/device.h>
10 
11 struct drm_encoder;
12 struct dw_dp;
13 
14 struct dw_dp_plat_data {
15 	u32 max_link_rate;
16 };
17 
18 struct dw_dp *dw_dp_bind(struct device *dev, struct drm_encoder *encoder,
19 			 const struct dw_dp_plat_data *plat_data);
20 #endif /* __DW_DP__ */
21