diff options
author | Nicolas Saenz Julienne <nsaenzjulienne@suse.de> | 2021-01-12 13:55:31 +0100 |
---|---|---|
committer | Matthias Brugger <mbrugger@suse.com> | 2021-02-18 11:59:08 +0100 |
commit | 0059ef0be903a1f0a9afe5259fb2e0874f78a8ac (patch) | |
tree | d587eafbc09d7ec51a9b12dca023ddce60507876 /drivers/video | |
parent | 74a9f68f7fbe709dca0b20d39a214ae38834b3e8 (diff) | |
download | u-boot-0059ef0be903a1f0a9afe5259fb2e0874f78a8ac.tar.gz u-boot-0059ef0be903a1f0a9afe5259fb2e0874f78a8ac.tar.bz2 u-boot-0059ef0be903a1f0a9afe5259fb2e0874f78a8ac.zip |
video: arm: rpi: Add brcm,bcm2711-hdmi0 compatible
The 'brcm,bcm2711-hdmi0' compatible string is used on RPi4 instead of
'brcm,bcm2835-hdmi' since the IP core was upgraded (now called VC6
instead of VC4). This has no functional change as far as u-boot driver
is concerned. So simply add the compatible string.
Signed-off-by: Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
Tested-by: Peter Robinson <pbrobinson@gmail.com>
Signed-off-by: Matthias Brugger <mbrugger@suse.com>
Diffstat (limited to 'drivers/video')
-rw-r--r-- | drivers/video/bcm2835.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/video/bcm2835.c b/drivers/video/bcm2835.c index 9326999cd3..c2962932c9 100644 --- a/drivers/video/bcm2835.c +++ b/drivers/video/bcm2835.c @@ -52,6 +52,7 @@ static int bcm2835_video_probe(struct udevice *dev) static const struct udevice_id bcm2835_video_ids[] = { { .compatible = "brcm,bcm2835-hdmi" }, + { .compatible = "brcm,bcm2711-hdmi0" }, { .compatible = "brcm,bcm2708-fb" }, { } }; |