hc
2023-11-22 f743a7adbd6e230d66a6206fa115b59fec2d88eb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
 * Copyright (C) 2016, Bin Meng <bmeng.cn@gmail.com>
 *
 * SPDX-License-Identifier:    GPL-2.0+
 */
 
#include <common.h>
#include <dm.h>
#include <pci.h>
#include <vbe.h>
 
static int vesa_video_probe(struct udevice *dev)
{
   return vbe_setup_video(dev, NULL);
}
 
static const struct udevice_id vesa_video_ids[] = {
   { .compatible = "vesa-fb" },
   { }
};
 
U_BOOT_DRIVER(vesa_video) = {
   .name    = "vesa_video",
   .id    = UCLASS_VIDEO,
   .of_match = vesa_video_ids,
   .probe    = vesa_video_probe,
};
 
static struct pci_device_id vesa_video_supported[] = {
   { PCI_DEVICE_CLASS(PCI_CLASS_DISPLAY_VGA << 8, ~0) },
   { },
};
 
U_BOOT_PCI_DEVICE(vesa_video, vesa_video_supported);