foo
[bootcensus] / src / kmain.c
index 8af7cc3..ad76287 100644 (file)
@@ -26,12 +26,16 @@ along with this program.  If not, see <https://www.gnu.org/licenses/>.
 #include "timer.h"
 #include "contty.h"
 #include "video.h"
+#include "vbe.h"
 #include "audio.h"
-#include "pci.h"
-#include "vbetest.h"
+#include "panic.h"
 
+static int video_init(void);
+static int modecmp(const void *a, const void *b);
+
+static struct video_mode vmode;
+static void *fbptr;
 
-void logohack(void);
 
 void pcboot_main(void)
 {
@@ -44,8 +48,6 @@ void pcboot_main(void)
 
        init_mem();
 
-       init_pci();
-
        /* initialize the timer */
        init_timer();
 
@@ -55,30 +57,87 @@ void pcboot_main(void)
 
        printf("PCBoot kernel initialized\n");
 
+       if(video_init() == -1) {
+               panic("Failed to find suitable video mode");
+       }
+
        for(;;) {
-               int c;
-
-               halt_cpu();
-               while((c = kb_getkey()) >= 0) {
-                       switch(c) {
-                       case KB_F1:
-                               set_vga_mode(0x13);
-                               logohack();
-                               set_vga_mode(3);
-                               break;
+               wait_vsync();
+               memset(fbptr, 0x80, vmode.width * vmode.height * vmode.bpp / 8);
+       }
+}
+
+static int video_init(void)
+{
+       struct vbe_edid edid;
+       struct video_mode vinf, *vmodes;
+       int i, xres, yres, nmodes, mode_idx = -1;
+       const char *vendor;
+
+       if(mode_idx == -1 && (vendor = get_video_vendor()) && strstr(vendor, "SeaBIOS")) {
+               mode_idx = find_video_mode_idx(800, 600, 0);
+       }
+
+       if(mode_idx == -1 && vbe_get_edid(&edid) == 0 && edid_preferred_resolution(&edid, &xres, &yres) == 0) {
+               printf("EDID: preferred resolution: %dx%d\n", xres, yres);
+               mode_idx = find_video_mode_idx(xres, yres, 0);
+       }
+
+       nmodes = video_mode_count();
+       if(!(vmodes = malloc(nmodes * sizeof *vmodes))) {
+               printf("failed to allocate video modes array (%d modes)\n", nmodes);
+               return -1;
+       }
 
-                       case KB_F2:
-                               vbetest();
+       for(i=0; i<nmodes; i++) {
+               video_mode_info(i, &vinf);
+               vmodes[i] = vinf;
+       }
+
+       if(mode_idx >= 0) {
+               if(!(fbptr = set_video_mode(vmodes[mode_idx].mode))) {
+                       printf("failed to set video mode: %x (%dx%d %dbpp)\n", mode_idx,
+                                       vmodes[mode_idx].width, vmodes[mode_idx].height, vmodes[mode_idx].bpp);
+                       mode_idx = -1;
+               } else {
+                       vmode = vmodes[mode_idx];
+                       printf("video mode: %x (%dx%d %dbpp)\n", vmode.mode, vmode.width,
+                                       vmode.height, vmode.bpp);
+               }
+       }
+
+       if(mode_idx == -1) {
+               qsort(vmodes, nmodes, sizeof *vmodes, modecmp);
+
+               for(i=0; i<nmodes; i++) {
+                       if((fbptr = set_video_mode(vmodes[i].mode))) {
+                               vmode = vmodes[i];
+                               printf("video mode: %x (%dx%d %dbpp)\n", vmode.mode, vmode.width,
+                                               vmode.height, vmode.bpp);
                                break;
                        }
-                       if(isprint(c)) {
-                               printf("key: %d '%c'\n", c, (char)c);
-                       } else {
-                               printf("key: %d\n", c);
-                       }
                }
-               if((nticks % 250) == 0) {
-                       con_printf(71, 0, "[%ld]", nticks);
+               if(i >= nmodes) {
+                       printf("failed to find a suitable video mode\n");
+                       return -1;
                }
        }
+       free(vmodes);
+
+       return 0;
+}
+
+
+
+static int modecmp(const void *a, const void *b)
+{
+       const struct video_mode *ma = a;
+       const struct video_mode *mb = b;
+       unsigned long aval = ma->width | (ma->height << 16);
+       unsigned long bval = mb->width | (mb->height << 16);
+
+       if(aval != bval) {
+               return bval - aval;
+       }
+       return mb->bpp - ma->bpp;
 }