blob: 1d2eda084c87619cd3546da691e099185e08ee77 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Stephen Warren6be3c9f2013-01-29 16:37:40 +00002/*
3 * (C) Copyright 2012 Stephen Warren
Stephen Warren6be3c9f2013-01-29 16:37:40 +00004 */
5
6#include <common.h>
Simon Glassea843b62017-04-05 16:23:44 -06007#include <dm.h>
8#include <video.h>
Stephen Warren6be3c9f2013-01-29 16:37:40 +00009#include <asm/arch/mbox.h>
Simon Glass2e4170b2017-04-05 16:23:40 -060010#include <asm/arch/msg.h>
Stephen Warren6be3c9f2013-01-29 16:37:40 +000011
Simon Glassea843b62017-04-05 16:23:44 -060012static int bcm2835_video_probe(struct udevice *dev)
Stephen Warren6be3c9f2013-01-29 16:37:40 +000013{
Simon Glassea843b62017-04-05 16:23:44 -060014 struct video_uc_platdata *plat = dev_get_uclass_platdata(dev);
15 struct video_priv *uc_priv = dev_get_uclass_priv(dev);
Stephen Warren6be3c9f2013-01-29 16:37:40 +000016 int ret;
Simon Glassea843b62017-04-05 16:23:44 -060017 int w, h, pitch;
Simon Glass7cac2fc2017-04-05 16:23:41 -060018 ulong fb_base, fb_size, fb_start, fb_end;
Stephen Warren6be3c9f2013-01-29 16:37:40 +000019
20 debug("bcm2835: Query resolution...\n");
Simon Glass2e4170b2017-04-05 16:23:40 -060021 ret = bcm2835_get_video_size(&w, &h);
Fabian Vogt970baf12019-07-11 16:56:24 +020022 if (ret || w == 0 || h == 0)
Simon Glassea843b62017-04-05 16:23:44 -060023 return -EIO;
Stephen Warren6be3c9f2013-01-29 16:37:40 +000024
Stephen Warren6be3c9f2013-01-29 16:37:40 +000025 debug("bcm2835: Setting up display for %d x %d\n", w, h);
Simon Glass7cac2fc2017-04-05 16:23:41 -060026 ret = bcm2835_set_video_params(&w, &h, 32, BCM2835_MBOX_PIXEL_ORDER_RGB,
27 BCM2835_MBOX_ALPHA_MODE_IGNORED,
Simon Glassea843b62017-04-05 16:23:44 -060028 &fb_base, &fb_size, &pitch);
Fabian Vogt970baf12019-07-11 16:56:24 +020029 if (ret)
30 return -EIO;
Stephen Warren6be3c9f2013-01-29 16:37:40 +000031
32 debug("bcm2835: Final resolution is %d x %d\n", w, h);
33
Alexander Graf99de2542016-03-24 10:31:11 +010034 /* Enable dcache for the frame buffer */
Simon Glass7cac2fc2017-04-05 16:23:41 -060035 fb_start = fb_base & ~(MMU_SECTION_SIZE - 1);
36 fb_end = fb_base + fb_size;
Alexander Graf99de2542016-03-24 10:31:11 +010037 fb_end = ALIGN(fb_end, 1 << MMU_SECTION_SHIFT);
38 mmu_set_region_dcache_behaviour(fb_start, fb_end - fb_start,
Simon Glass7cac2fc2017-04-05 16:23:41 -060039 DCACHE_WRITEBACK);
Simon Glassea843b62017-04-05 16:23:44 -060040 video_set_flush_dcache(dev, true);
41
42 uc_priv->xsize = w;
43 uc_priv->ysize = h;
44 uc_priv->bpix = VIDEO_BPP32;
45 plat->base = fb_base;
46 plat->size = fb_size;
47
48 return 0;
Stephen Warren6be3c9f2013-01-29 16:37:40 +000049}
50
Simon Glassea843b62017-04-05 16:23:44 -060051static const struct udevice_id bcm2835_video_ids[] = {
52 { .compatible = "brcm,bcm2835-hdmi" },
Emmanuel Vadot425daac2018-07-02 14:33:14 +020053 { .compatible = "brcm,bcm2708-fb" },
Simon Glassea843b62017-04-05 16:23:44 -060054 { }
55};
Andre Heider44376ef2013-11-09 11:07:53 +010056
Simon Glassea843b62017-04-05 16:23:44 -060057U_BOOT_DRIVER(bcm2835_video) = {
58 .name = "bcm2835_video",
59 .id = UCLASS_VIDEO,
60 .of_match = bcm2835_video_ids,
61 .probe = bcm2835_video_probe,
62};