]> git.ipfire.org Git - thirdparty/u-boot.git/blame - drivers/video/vesa.c
Revert "Merge patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet""
[thirdparty/u-boot.git] / drivers / video / vesa.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
02c57abd
BM
2/*
3 * Copyright (C) 2016, Bin Meng <bmeng.cn@gmail.com>
02c57abd
BM
4 */
5
d678a59d 6#include <common.h>
02c57abd 7#include <dm.h>
6c74ee30 8#include <log.h>
02c57abd 9#include <pci.h>
cafe8712 10#include <vesa.h>
6c74ee30
SG
11#include <video.h>
12#include <asm/mtrr.h>
02c57abd
BM
13
14static int vesa_video_probe(struct udevice *dev)
15{
8a8d24bd 16 struct video_uc_plat *plat = dev_get_uclass_plat(dev);
6c74ee30
SG
17 ulong fbbase;
18 int ret;
19
da62e1e8 20 ret = vesa_setup_video(dev, NULL);
6c74ee30
SG
21 if (ret)
22 return log_ret(ret);
23
24 /* Use write-combining for the graphics memory, 256MB */
25 fbbase = IS_ENABLED(CONFIG_VIDEO_COPY) ? plat->copy_base : plat->base;
bff002d4 26 mtrr_set_next_var(MTRR_TYPE_WRCOMB, fbbase, 256 << 20);
6c74ee30
SG
27
28 return 0;
29}
30
31static int vesa_video_bind(struct udevice *dev)
32{
8a8d24bd 33 struct video_uc_plat *uc_plat = dev_get_uclass_plat(dev);
6c74ee30
SG
34
35 /* Set the maximum supported resolution */
36 uc_plat->size = 2560 * 1600 * 4;
37 log_debug("%s: Frame buffer size %x\n", __func__, uc_plat->size);
38
39 return 0;
02c57abd
BM
40}
41
42static const struct udevice_id vesa_video_ids[] = {
43 { .compatible = "vesa-fb" },
44 { }
45};
46
47U_BOOT_DRIVER(vesa_video) = {
48 .name = "vesa_video",
49 .id = UCLASS_VIDEO,
50 .of_match = vesa_video_ids,
6c74ee30 51 .bind = vesa_video_bind,
02c57abd
BM
52 .probe = vesa_video_probe,
53};
54
55static struct pci_device_id vesa_video_supported[] = {
56 { PCI_DEVICE_CLASS(PCI_CLASS_DISPLAY_VGA << 8, ~0) },
57 { },
58};
59
60U_BOOT_PCI_DEVICE(vesa_video, vesa_video_supported);