dw_dp.h 400 B

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