blob: f6f0c062205c39862958347ef76d52af9a0f7dba [file] [log] [blame]
Yakir Yang3424e3a2016-03-29 09:57:03 +08001/*
2 * Analogix DP (Display Port) Core interface driver.
3 *
4 * Copyright (C) 2015 Rockchip Electronics Co., Ltd.
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version.
10 */
11#ifndef _ANALOGIX_DP_H_
12#define _ANALOGIX_DP_H_
13
14#include <drm/drm_crtc.h>
15
16enum analogix_dp_devtype {
17 EXYNOS_DP,
Yakir Yang9e32e162016-03-29 09:57:30 +080018 RK3288_DP,
Yakir Yang82872e42016-06-29 17:15:26 +080019 RK3399_EDP,
Yakir Yang3424e3a2016-03-29 09:57:03 +080020};
21
Yakir Yang7bdc0722016-06-29 17:15:18 +080022static inline bool is_rockchip(enum analogix_dp_devtype type)
23{
Yakir Yang82872e42016-06-29 17:15:26 +080024 return type == RK3288_DP || type == RK3399_EDP;
Yakir Yang7bdc0722016-06-29 17:15:18 +080025}
26
Yakir Yang3424e3a2016-03-29 09:57:03 +080027struct analogix_dp_plat_data {
28 enum analogix_dp_devtype dev_type;
29 struct drm_panel *panel;
30 struct drm_encoder *encoder;
31 struct drm_connector *connector;
32
33 int (*power_on)(struct analogix_dp_plat_data *);
34 int (*power_off)(struct analogix_dp_plat_data *);
35 int (*attach)(struct analogix_dp_plat_data *, struct drm_bridge *,
36 struct drm_connector *);
Yakir Yangfcc150c2016-06-29 17:15:35 +080037 int (*get_modes)(struct analogix_dp_plat_data *,
38 struct drm_connector *);
Yakir Yang3424e3a2016-03-29 09:57:03 +080039};
40
Tomeu Vizoso561b0692016-09-23 16:06:39 +020041int analogix_dp_psr_supported(struct device *dev);
Yakir Yang5b3f84f2016-07-24 14:57:48 +080042int analogix_dp_enable_psr(struct device *dev);
43int analogix_dp_disable_psr(struct device *dev);
44
Yakir Yang3424e3a2016-03-29 09:57:03 +080045int analogix_dp_resume(struct device *dev);
46int analogix_dp_suspend(struct device *dev);
47
48int analogix_dp_bind(struct device *dev, struct drm_device *drm_dev,
49 struct analogix_dp_plat_data *plat_data);
50void analogix_dp_unbind(struct device *dev, struct device *master, void *data);
51
52#endif /* _ANALOGIX_DP_H_ */