Simon Glass | 6b1ba98 | 2014-12-29 19:32:28 -0700 | [diff] [blame] | 1 | /* |
Bin Meng | b018a8c | 2015-07-06 16:31:26 +0800 | [diff] [blame] | 2 | * VESA frame buffer driver |
Simon Glass | 6b1ba98 | 2014-12-29 19:32:28 -0700 | [diff] [blame] | 3 | * |
| 4 | * Copyright (C) 2014 Google, Inc |
| 5 | * |
| 6 | * SPDX-License-Identifier: GPL-2.0+ |
| 7 | */ |
| 8 | |
| 9 | #include <common.h> |
| 10 | #include <pci_rom.h> |
| 11 | #include <video_fb.h> |
| 12 | #include <vbe.h> |
| 13 | |
| 14 | /* |
| 15 | * The Graphic Device |
| 16 | */ |
| 17 | GraphicDevice ctfb; |
| 18 | |
Simon Glass | 6b1ba98 | 2014-12-29 19:32:28 -0700 | [diff] [blame] | 19 | void *video_hw_init(void) |
| 20 | { |
| 21 | GraphicDevice *gdev = &ctfb; |
| 22 | int bits_per_pixel; |
| 23 | pci_dev_t dev; |
| 24 | int ret; |
| 25 | |
| 26 | printf("Video: "); |
Simon Glass | ad11dbf | 2015-08-04 12:34:04 -0600 | [diff] [blame] | 27 | if (!ll_boot_init()) { |
| 28 | /* |
| 29 | * If we are running from EFI or coreboot, this driver can't |
| 30 | * work. |
| 31 | */ |
| 32 | printf("Not available (previous bootloader prevents it)\n"); |
| 33 | return NULL; |
| 34 | } |
Simon Glass | 6b1ba98 | 2014-12-29 19:32:28 -0700 | [diff] [blame] | 35 | if (vbe_get_video_info(gdev)) { |
Bin Meng | b018a8c | 2015-07-06 16:31:26 +0800 | [diff] [blame] | 36 | dev = pci_find_class(PCI_CLASS_DISPLAY_VGA << 8, 0); |
Simon Glass | 6b1ba98 | 2014-12-29 19:32:28 -0700 | [diff] [blame] | 37 | if (dev == -1) { |
| 38 | printf("no card detected\n"); |
| 39 | return NULL; |
| 40 | } |
Simon Glass | ef565a5 | 2015-01-27 22:13:35 -0700 | [diff] [blame] | 41 | bootstage_start(BOOTSTAGE_ID_ACCUM_LCD, "vesa display"); |
Simon Glass | bc17d8f | 2015-01-27 22:13:34 -0700 | [diff] [blame] | 42 | ret = pci_run_vga_bios(dev, NULL, PCI_ROM_USE_NATIVE | |
| 43 | PCI_ROM_ALLOW_FALLBACK); |
Simon Glass | ef565a5 | 2015-01-27 22:13:35 -0700 | [diff] [blame] | 44 | bootstage_accum(BOOTSTAGE_ID_ACCUM_LCD); |
Simon Glass | 6b1ba98 | 2014-12-29 19:32:28 -0700 | [diff] [blame] | 45 | if (ret) { |
| 46 | printf("failed to run video BIOS: %d\n", ret); |
| 47 | return NULL; |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | if (vbe_get_video_info(gdev)) { |
| 52 | printf("No video mode configured\n"); |
| 53 | return NULL; |
| 54 | } |
| 55 | |
| 56 | bits_per_pixel = gdev->gdfBytesPP * 8; |
| 57 | sprintf(gdev->modeIdent, "%dx%dx%d", gdev->winSizeX, gdev->winSizeY, |
| 58 | bits_per_pixel); |
| 59 | printf("%s\n", gdev->modeIdent); |
Simon Glass | bc17d8f | 2015-01-27 22:13:34 -0700 | [diff] [blame] | 60 | debug("Frame buffer at %x\n", gdev->pciBase); |
Simon Glass | 6b1ba98 | 2014-12-29 19:32:28 -0700 | [diff] [blame] | 61 | |
| 62 | return (void *)gdev; |
| 63 | } |