mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
rockchip: video: rk_edp: add more rk3288 edp node options
The rk3288 DT synced from Linux contains some different properties in the edp node then origanal used in U-boot. Allow both options to be backwards compatible and to be able to handle recent rk3288.dtsi files. Signed-off-by: Johan Jonker <jbx6244@gmail.com> Reviewed-by: Kever Yang <kever.yang@rock-chips.com>
This commit is contained in:
parent
8f47414466
commit
0944e77fde
1 changed files with 6 additions and 2 deletions
|
@ -1069,10 +1069,13 @@ static int rk_edp_probe(struct udevice *dev)
|
|||
}
|
||||
|
||||
ret = reset_get_by_name(dev, "dp", &dp_rst);
|
||||
if (ret) {
|
||||
ret = reset_get_by_name(dev, "edp", &dp_rst);
|
||||
if (ret) {
|
||||
dev_err(dev, "failed to get dp reset (ret=%d)\n", ret);
|
||||
return ret;
|
||||
}
|
||||
}
|
||||
|
||||
ret = reset_assert(&dp_rst);
|
||||
if (ret) {
|
||||
|
@ -1156,6 +1159,7 @@ static const struct rockchip_dp_data rk3288_dp = {
|
|||
};
|
||||
|
||||
static const struct udevice_id rockchip_dp_ids[] = {
|
||||
{ .compatible = "rockchip,rk3288-dp", .data = (ulong)&rk3288_dp },
|
||||
{ .compatible = "rockchip,rk3288-edp", .data = (ulong)&rk3288_dp },
|
||||
{ .compatible = "rockchip,rk3399-edp", .data = (ulong)&rk3399_edp },
|
||||
{ }
|
||||
|
|
Loading…
Reference in a new issue