drm/rockchip: analogix_dp: add rk3399 eDP support

RK3399 and RK3288 shared the same eDP IP controller, so this time we
just need to append the RK3399 compatible name to analogix_dp documentation
and driver code.

Change-Id: I3fee6893c56698ee2948b9df2f3ffb7729fe75ef
Signed-off-by: Yakir Yang <ykk@rock-chips.com>
This commit is contained in:
Yakir Yang
2016-03-18 15:26:46 +08:00
committed by Huang, Tao
parent 455be1a2af
commit f70d99fdb6
3 changed files with 3 additions and 1 deletions

View File

@@ -5,6 +5,7 @@ Required properties for dp-controller:
platform specific such as:
* "samsung,exynos5-dp"
* "rockchip,rk3288-dp"
* "rockchip,rk3399-edp"
-reg:
physical base address of the controller and length
of memory mapped region.

View File

@@ -2,7 +2,7 @@ Rockchip RK3288 specific extensions to the Analogix Display Port
================================
Required properties:
- compatible: "rockchip,rk3288-edp";
- compatible: "rockchip,rk3288-dp" or "rockchip,rk3399-edp"
- reg: physical base address of the controller and length

View File

@@ -361,6 +361,7 @@ static const struct dev_pm_ops rockchip_dp_pm_ops = {
static const struct of_device_id rockchip_dp_dt_ids[] = {
{.compatible = "rockchip,rk3288-dp",},
{.compatible = "rockchip,rk3399-edp",},
{}
};
MODULE_DEVICE_TABLE(of, rockchip_dp_dt_ids);