Hi tech@,

Currently, we set the maximum size for the EFI framebuffer console to
100 columns and 31 rows.

Now that efifb(4) supports remapping the framebuffer in write combining
mode, it's now fast enough to consider increasing those values to 160
columns and 160 rows, to match the values in inteldrm and radeondrm.

Comments? OK?

Index: sys/arch/amd64/amd64/efifb.c
===================================================================
RCS file: /cvs/src/sys/arch/amd64/amd64/efifb.c,v
retrieving revision 1.20
diff -u -p -r1.20 efifb.c
--- sys/arch/amd64/amd64/efifb.c        15 Mar 2019 10:38:14 -0000      1.20
+++ sys/arch/amd64/amd64/efifb.c        15 Mar 2019 14:52:11 -0000
@@ -114,8 +114,8 @@ const struct cfattach efifb_ca = {
        sizeof(struct efifb_softc), efifb_match, efifb_attach, NULL
 };
 
-#define        EFIFB_WIDTH     100
-#define        EFIFB_HEIGHT    31
+#define        EFIFB_WIDTH     160
+#define        EFIFB_HEIGHT    160
 
 struct wsscreen_descr efifb_std_descr = { "std" };
 

Reply via email to