1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2013 Intel Corporation; author Matt Fleming
6 #include <linux/console.h>
8 #include <linux/font.h>
10 #include <linux/kernel.h>
11 #include <linux/serial_core.h>
12 #include <linux/screen_info.h>
14 #include <asm/early_ioremap.h>
16 static const struct console *earlycon_console __initdata;
17 static const struct font_desc *font;
18 static u32 efi_x, efi_y;
24 * EFI earlycon needs to use early_memremap() to map the framebuffer.
25 * But early_memremap() is not usable for 'earlycon=efifb keep_bootcon',
26 * memremap() should be used instead. memremap() will be available after
27 * paging_init() which is earlier than initcall callbacks. Thus adding this
28 * early initcall function early_efi_map_fb() to map the whole EFI framebuffer.
30 static int __init efi_earlycon_remap_fb(void)
32 /* bail if there is no bootconsole or it was unregistered already */
33 if (!earlycon_console || !console_is_registered(earlycon_console))
36 efi_fb = memremap(fb_base, screen_info.lfb_size,
37 fb_wb ? MEMREMAP_WB : MEMREMAP_WC);
39 return efi_fb ? 0 : -ENOMEM;
41 early_initcall(efi_earlycon_remap_fb);
43 static int __init efi_earlycon_unmap_fb(void)
45 /* unmap the bootconsole fb unless keep_bootcon left it registered */
46 if (efi_fb && !console_is_registered(earlycon_console))
50 late_initcall(efi_earlycon_unmap_fb);
52 static __ref void *efi_earlycon_map(unsigned long start, unsigned long len)
57 return efi_fb + start;
59 fb_prot = fb_wb ? PAGE_KERNEL : pgprot_writecombine(PAGE_KERNEL);
60 return early_memremap_prot(fb_base + start, len, pgprot_val(fb_prot));
63 static __ref void efi_earlycon_unmap(void *addr, unsigned long len)
68 early_memunmap(addr, len);
71 static void efi_earlycon_clear_scanline(unsigned int y)
76 len = screen_info.lfb_linelength;
77 dst = efi_earlycon_map(y*len, len);
82 efi_earlycon_unmap(dst, len);
85 static void efi_earlycon_scroll_up(void)
87 unsigned long *dst, *src;
91 len = screen_info.lfb_linelength;
92 height = screen_info.lfb_height;
94 for (i = 0; i < height - font->height; i++) {
95 dst = efi_earlycon_map(i*len, len);
99 src = efi_earlycon_map((i + font->height) * len, len);
101 efi_earlycon_unmap(dst, len);
105 memmove(dst, src, len);
107 efi_earlycon_unmap(src, len);
108 efi_earlycon_unmap(dst, len);
112 static void efi_earlycon_write_char(u32 *dst, unsigned char c, unsigned int h)
114 const u32 color_black = 0x00000000;
115 const u32 color_white = 0x00ffffff;
120 bytes = BITS_TO_BYTES(font->width);
121 src = font->data + c * font->height * bytes + h * bytes;
123 for (m = 0; m < font->width; m++) {
126 if ((x >> (7 - n)) & 1)
135 efi_earlycon_write(struct console *con, const char *str, unsigned int num)
137 struct screen_info *si;
143 len = si->lfb_linelength;
146 unsigned int linemax;
147 unsigned int h, count = 0;
149 for (s = str; *s && *s != '\n'; s++) {
155 linemax = (si->lfb_width - efi_x) / font->width;
159 for (h = 0; h < font->height; h++) {
162 dst = efi_earlycon_map((efi_y + h) * len, len);
171 efi_earlycon_write_char(dst + x*4, *s, h);
176 efi_earlycon_unmap(dst, len);
180 efi_x += count * font->width;
183 if (num > 0 && *s == '\n') {
185 efi_y += font->height;
190 if (efi_x + font->width > si->lfb_width) {
192 efi_y += font->height;
195 if (efi_y + font->height > si->lfb_height) {
198 efi_y -= font->height;
199 efi_earlycon_scroll_up();
201 for (i = 0; i < font->height; i++)
202 efi_earlycon_clear_scanline(efi_y + i);
207 static int __init efi_earlycon_setup(struct earlycon_device *device,
210 struct screen_info *si;
214 if (screen_info.orig_video_isVGA != VIDEO_TYPE_EFI)
217 fb_base = screen_info.lfb_base;
218 if (screen_info.capabilities & VIDEO_CAPABILITY_64BIT_BASE)
219 fb_base |= (u64)screen_info.ext_lfb_base << 32;
221 fb_wb = opt && !strcmp(opt, "ram");
224 xres = si->lfb_width;
225 yres = si->lfb_height;
228 * efi_earlycon_write_char() implicitly assumes a framebuffer with
231 if (si->lfb_depth != 32)
234 font = get_default_font(xres, yres, -1, -1);
238 efi_y = rounddown(yres, font->height) - font->height;
239 for (i = 0; i < (yres - efi_y) / font->height; i++)
240 efi_earlycon_scroll_up();
242 device->con->write = efi_earlycon_write;
243 earlycon_console = device->con;
246 EARLYCON_DECLARE(efifb, efi_earlycon_setup);