video: arm: rpi: Add brcm,bcm2711-hdmi0 compatible 54/267754/3
authorNicolas Saenz Julienne <nsaenzjulienne@suse.de>
Tue, 12 Jan 2021 12:55:31 +0000 (13:55 +0100)
committerSeung-Woo Kim <sw0312.kim@samsung.com>
Mon, 13 Dec 2021 02:01:15 +0000 (02:01 +0000)
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.

Change-Id: Icbcb9eaa22108bf8051628b3aa2f7bafb64e04c5
Signed-off-by: Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
Tested-by: Peter Robinson <pbrobinson@gmail.com>
Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
drivers/video/bcm2835.c

index 0888cb0..51941c4 100644 (file)
@@ -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" },
        { }
 };