Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 1 | // VGA bios implementation |
| 2 | // |
| 3 | // Copyright (C) 2009 Kevin O'Connor <kevin@koconnor.net> |
| 4 | // Copyright (C) 2001-2008 the LGPL VGABios developers Team |
| 5 | // |
| 6 | // This file may be distributed under the terms of the GNU LGPLv3 license. |
| 7 | |
| 8 | |
| 9 | // TODO: |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 10 | // * review correctness of converted asm by comparing with RBIL |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 11 | // |
Kevin O'Connor | 6ace78f | 2009-05-14 19:24:49 -0400 | [diff] [blame] | 12 | // * convert vbe/clext code |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 13 | |
| 14 | #include "bregs.h" // struct bregs |
| 15 | #include "biosvar.h" // GET_BDA |
| 16 | #include "util.h" // memset |
Kevin O'Connor | c0c7df6 | 2009-05-17 18:11:33 -0400 | [diff] [blame] | 17 | #include "vgatables.h" // find_vga_entry |
Julian Pidancet | 7c6509c | 2011-12-19 05:07:55 +0000 | [diff] [blame] | 18 | #include "optionroms.h" // struct pci_data |
| 19 | #include "config.h" // CONFIG_* |
Julian Pidancet | 87879e2 | 2011-12-19 05:08:00 +0000 | [diff] [blame] | 20 | #include "vbe.h" // vbe_* |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 21 | |
| 22 | // XXX |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 23 | #define DEBUG_VGA_POST 1 |
| 24 | #define DEBUG_VGA_10 3 |
| 25 | |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 26 | |
Julian Pidancet | 7c6509c | 2011-12-19 05:07:55 +0000 | [diff] [blame] | 27 | /**************************************************************** |
| 28 | * PCI Data |
| 29 | ****************************************************************/ |
| 30 | #if CONFIG_VGA_PCI == 1 |
| 31 | struct pci_data rom_pci_data VAR16VISIBLE = { |
| 32 | .signature = PCI_ROM_SIGNATURE, |
| 33 | .vendor = CONFIG_VGA_VID, |
| 34 | .device = CONFIG_VGA_DID, |
| 35 | .dlen = 0x18, |
| 36 | .class_hi = 0x300, |
| 37 | .irevision = 1, |
| 38 | .type = PCIROM_CODETYPE_X86, |
| 39 | .indicator = 0x80, |
| 40 | }; |
| 41 | #endif |
Kevin O'Connor | 227a2bb | 2009-05-31 22:00:20 -0400 | [diff] [blame] | 42 | |
| 43 | /**************************************************************** |
| 44 | * Helper functions |
| 45 | ****************************************************************/ |
| 46 | |
Kevin O'Connor | 217f2bc | 2009-05-31 00:46:47 -0400 | [diff] [blame] | 47 | static inline void |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 48 | call16_vgaint(u32 eax, u32 ebx) |
| 49 | { |
| 50 | asm volatile( |
| 51 | "int $0x10\n" |
| 52 | "cli\n" |
| 53 | "cld" |
| 54 | : |
| 55 | : "a"(eax), "b"(ebx) |
| 56 | : "cc", "memory"); |
| 57 | } |
| 58 | |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 59 | static void |
Kevin O'Connor | 227a2bb | 2009-05-31 22:00:20 -0400 | [diff] [blame] | 60 | perform_gray_scale_summing(u16 start, u16 count) |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 61 | { |
Kevin O'Connor | a0ecb05 | 2009-05-18 23:34:00 -0400 | [diff] [blame] | 62 | vgahw_screen_disable(); |
Kevin O'Connor | dd2be77 | 2009-05-16 15:41:23 -0400 | [diff] [blame] | 63 | int i; |
| 64 | for (i = start; i < start+count; i++) { |
Kevin O'Connor | a0ecb05 | 2009-05-18 23:34:00 -0400 | [diff] [blame] | 65 | u8 rgb[3]; |
| 66 | vgahw_get_dac_regs(GET_SEG(SS), rgb, i, 1); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 67 | |
| 68 | // intensity = ( 0.3 * Red ) + ( 0.59 * Green ) + ( 0.11 * Blue ) |
Kevin O'Connor | a0ecb05 | 2009-05-18 23:34:00 -0400 | [diff] [blame] | 69 | u16 intensity = ((77 * rgb[0] + 151 * rgb[1] + 28 * rgb[2]) + 0x80) >> 8; |
Kevin O'Connor | dd2be77 | 2009-05-16 15:41:23 -0400 | [diff] [blame] | 70 | if (intensity > 0x3f) |
| 71 | intensity = 0x3f; |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 72 | |
Kevin O'Connor | a0ecb05 | 2009-05-18 23:34:00 -0400 | [diff] [blame] | 73 | vgahw_set_dac_regs(GET_SEG(SS), rgb, i, 1); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 74 | } |
Kevin O'Connor | a0ecb05 | 2009-05-18 23:34:00 -0400 | [diff] [blame] | 75 | vgahw_screen_enable(); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 76 | } |
| 77 | |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 78 | static void |
Kevin O'Connor | 227a2bb | 2009-05-31 22:00:20 -0400 | [diff] [blame] | 79 | set_cursor_shape(u8 start, u8 end) |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 80 | { |
Kevin O'Connor | 227a2bb | 2009-05-31 22:00:20 -0400 | [diff] [blame] | 81 | start &= 0x3f; |
| 82 | end &= 0x1f; |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 83 | |
Kevin O'Connor | 227a2bb | 2009-05-31 22:00:20 -0400 | [diff] [blame] | 84 | u16 curs = (start << 8) + end; |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 85 | SET_BDA(cursor_type, curs); |
| 86 | |
Kevin O'Connor | dd2be77 | 2009-05-16 15:41:23 -0400 | [diff] [blame] | 87 | u8 modeset_ctl = GET_BDA(modeset_ctl); |
| 88 | u16 cheight = GET_BDA(char_height); |
Kevin O'Connor | 227a2bb | 2009-05-31 22:00:20 -0400 | [diff] [blame] | 89 | if ((modeset_ctl & 0x01) && (cheight > 8) && (end < 8) && (start < 0x20)) { |
| 90 | if (end != (start + 1)) |
| 91 | start = ((start + 1) * cheight / 8) - 1; |
Kevin O'Connor | dd2be77 | 2009-05-16 15:41:23 -0400 | [diff] [blame] | 92 | else |
Kevin O'Connor | 227a2bb | 2009-05-31 22:00:20 -0400 | [diff] [blame] | 93 | start = ((end + 1) * cheight / 8) - 2; |
| 94 | end = ((end + 1) * cheight / 8) - 1; |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 95 | } |
Kevin O'Connor | 227a2bb | 2009-05-31 22:00:20 -0400 | [diff] [blame] | 96 | vgahw_set_cursor_shape(start, end); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 97 | } |
| 98 | |
Kevin O'Connor | 0818e1a | 2009-05-16 18:00:19 -0400 | [diff] [blame] | 99 | static u16 |
Kevin O'Connor | 227a2bb | 2009-05-31 22:00:20 -0400 | [diff] [blame] | 100 | get_cursor_shape(u8 page) |
Kevin O'Connor | 0818e1a | 2009-05-16 18:00:19 -0400 | [diff] [blame] | 101 | { |
| 102 | if (page > 7) |
| 103 | return 0; |
| 104 | // FIXME should handle VGA 14/16 lines |
| 105 | return GET_BDA(cursor_type); |
| 106 | } |
| 107 | |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 108 | static void |
Kevin O'Connor | 918b156 | 2009-05-25 11:05:18 -0400 | [diff] [blame] | 109 | set_cursor_pos(struct cursorpos cp) |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 110 | { |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 111 | // Should not happen... |
Kevin O'Connor | 918b156 | 2009-05-25 11:05:18 -0400 | [diff] [blame] | 112 | if (cp.page > 7) |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 113 | return; |
| 114 | |
| 115 | // Bios cursor pos |
Kevin O'Connor | 918b156 | 2009-05-25 11:05:18 -0400 | [diff] [blame] | 116 | SET_BDA(cursor_pos[cp.page], (cp.y << 8) | cp.x); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 117 | |
| 118 | // Set the hardware cursor |
Kevin O'Connor | dd2be77 | 2009-05-16 15:41:23 -0400 | [diff] [blame] | 119 | u8 current = GET_BDA(video_page); |
Kevin O'Connor | 918b156 | 2009-05-25 11:05:18 -0400 | [diff] [blame] | 120 | if (cp.page != current) |
Kevin O'Connor | dd2be77 | 2009-05-16 15:41:23 -0400 | [diff] [blame] | 121 | return; |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 122 | |
Kevin O'Connor | dd2be77 | 2009-05-16 15:41:23 -0400 | [diff] [blame] | 123 | // Get the dimensions |
| 124 | u16 nbcols = GET_BDA(video_cols); |
| 125 | u16 nbrows = GET_BDA(video_rows) + 1; |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 126 | |
Kevin O'Connor | dd2be77 | 2009-05-16 15:41:23 -0400 | [diff] [blame] | 127 | // Calculate the address knowing nbcols nbrows and page num |
Kevin O'Connor | 918b156 | 2009-05-25 11:05:18 -0400 | [diff] [blame] | 128 | u16 address = (SCREEN_IO_START(nbcols, nbrows, cp.page) |
| 129 | + cp.x + cp.y * nbcols); |
Kevin O'Connor | dd2be77 | 2009-05-16 15:41:23 -0400 | [diff] [blame] | 130 | |
Kevin O'Connor | a0ecb05 | 2009-05-18 23:34:00 -0400 | [diff] [blame] | 131 | vgahw_set_cursor_pos(address); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 132 | } |
| 133 | |
Kevin O'Connor | 217f2bc | 2009-05-31 00:46:47 -0400 | [diff] [blame] | 134 | static struct cursorpos |
Kevin O'Connor | 918b156 | 2009-05-25 11:05:18 -0400 | [diff] [blame] | 135 | get_cursor_pos(u8 page) |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 136 | { |
Kevin O'Connor | 918b156 | 2009-05-25 11:05:18 -0400 | [diff] [blame] | 137 | if (page == 0xff) |
| 138 | // special case - use current page |
| 139 | page = GET_BDA(video_page); |
| 140 | if (page > 7) { |
| 141 | struct cursorpos cp = { 0, 0, 0xfe }; |
| 142 | return cp; |
| 143 | } |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 144 | // FIXME should handle VGA 14/16 lines |
Kevin O'Connor | 918b156 | 2009-05-25 11:05:18 -0400 | [diff] [blame] | 145 | u16 xy = GET_BDA(cursor_pos[page]); |
| 146 | struct cursorpos cp = {xy, xy>>8, page}; |
| 147 | return cp; |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 148 | } |
| 149 | |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 150 | static void |
Kevin O'Connor | 227a2bb | 2009-05-31 22:00:20 -0400 | [diff] [blame] | 151 | set_active_page(u8 page) |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 152 | { |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 153 | if (page > 7) |
| 154 | return; |
| 155 | |
| 156 | // Get the mode |
Kevin O'Connor | 5727c29 | 2009-05-16 17:29:32 -0400 | [diff] [blame] | 157 | struct vgamode_s *vmode_g = find_vga_entry(GET_BDA(video_mode)); |
| 158 | if (!vmode_g) |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 159 | return; |
| 160 | |
| 161 | // Get pos curs pos for the right page |
Kevin O'Connor | 918b156 | 2009-05-25 11:05:18 -0400 | [diff] [blame] | 162 | struct cursorpos cp = get_cursor_pos(page); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 163 | |
Kevin O'Connor | dd2be77 | 2009-05-16 15:41:23 -0400 | [diff] [blame] | 164 | u16 address; |
Kevin O'Connor | e4f220f | 2009-05-25 23:37:13 -0400 | [diff] [blame] | 165 | if (GET_GLOBAL(vmode_g->memmodel) & TEXT) { |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 166 | // Get the dimensions |
Kevin O'Connor | dd2be77 | 2009-05-16 15:41:23 -0400 | [diff] [blame] | 167 | u16 nbcols = GET_BDA(video_cols); |
| 168 | u16 nbrows = GET_BDA(video_rows) + 1; |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 169 | |
| 170 | // Calculate the address knowing nbcols nbrows and page num |
| 171 | address = SCREEN_MEM_START(nbcols, nbrows, page); |
| 172 | SET_BDA(video_pagestart, address); |
| 173 | |
| 174 | // Start address |
| 175 | address = SCREEN_IO_START(nbcols, nbrows, page); |
| 176 | } else { |
Kevin O'Connor | 87233e9 | 2011-12-23 21:40:34 -0500 | [diff] [blame] | 177 | address = page * GET_GLOBAL(vmode_g->slength); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 178 | } |
| 179 | |
Kevin O'Connor | a0ecb05 | 2009-05-18 23:34:00 -0400 | [diff] [blame] | 180 | vgahw_set_active_page(address); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 181 | |
| 182 | // And change the BIOS page |
| 183 | SET_BDA(video_page, page); |
| 184 | |
Kevin O'Connor | a12c215 | 2009-05-13 22:06:16 -0400 | [diff] [blame] | 185 | dprintf(1, "Set active page %02x address %04x\n", page, address); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 186 | |
| 187 | // Display the cursor, now the page is active |
Kevin O'Connor | 918b156 | 2009-05-25 11:05:18 -0400 | [diff] [blame] | 188 | set_cursor_pos(cp); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 189 | } |
| 190 | |
Kevin O'Connor | 227a2bb | 2009-05-31 22:00:20 -0400 | [diff] [blame] | 191 | static void |
| 192 | set_scan_lines(u8 lines) |
| 193 | { |
| 194 | vgahw_set_scan_lines(lines); |
| 195 | if (lines == 8) |
| 196 | set_cursor_shape(0x06, 0x07); |
| 197 | else |
| 198 | set_cursor_shape(lines - 4, lines - 3); |
| 199 | SET_BDA(char_height, lines); |
| 200 | u16 vde = vgahw_get_vde(); |
| 201 | u8 rows = vde / lines; |
| 202 | SET_BDA(video_rows, rows - 1); |
| 203 | u16 cols = GET_BDA(video_cols); |
| 204 | SET_BDA(video_pagesize, rows * cols * 2); |
| 205 | } |
| 206 | |
| 207 | |
| 208 | /**************************************************************** |
| 209 | * Character writing |
| 210 | ****************************************************************/ |
| 211 | |
Kevin O'Connor | afb287d | 2009-05-31 21:15:33 -0400 | [diff] [blame] | 212 | // Scroll the screen one line. This function is designed to be called |
| 213 | // tail-recursive to reduce stack usage. |
| 214 | static void noinline |
| 215 | scroll_one(u16 nbrows, u16 nbcols, u8 page) |
Kevin O'Connor | 0926241 | 2009-05-25 11:44:11 -0400 | [diff] [blame] | 216 | { |
Kevin O'Connor | afb287d | 2009-05-31 21:15:33 -0400 | [diff] [blame] | 217 | struct cursorpos ul = {0, 0, page}; |
| 218 | struct cursorpos lr = {nbcols-1, nbrows-1, page}; |
| 219 | vgafb_scroll(1, -1, ul, lr); |
| 220 | } |
| 221 | |
| 222 | // Write a character to the screen at a given position. Implement |
| 223 | // special characters and scroll the screen if necessary. |
| 224 | static void |
| 225 | write_teletype(struct cursorpos *pcp, struct carattr ca) |
| 226 | { |
| 227 | struct cursorpos cp = *pcp; |
| 228 | |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 229 | // Get the dimensions |
Kevin O'Connor | dd2be77 | 2009-05-16 15:41:23 -0400 | [diff] [blame] | 230 | u16 nbrows = GET_BDA(video_rows) + 1; |
| 231 | u16 nbcols = GET_BDA(video_cols); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 232 | |
Kevin O'Connor | 2e86c6a | 2009-05-31 20:43:06 -0400 | [diff] [blame] | 233 | switch (ca.car) { |
| 234 | case 7: |
| 235 | //FIXME should beep |
| 236 | break; |
| 237 | case 8: |
| 238 | if (cp.x > 0) |
| 239 | cp.x--; |
| 240 | break; |
| 241 | case '\r': |
| 242 | cp.x = 0; |
| 243 | break; |
| 244 | case '\n': |
| 245 | cp.y++; |
| 246 | break; |
| 247 | case '\t': |
| 248 | do { |
| 249 | struct carattr dummyca = {' ', ca.attr, ca.use_attr}; |
| 250 | vgafb_write_char(cp, dummyca); |
| 251 | cp.x++; |
| 252 | } while (cp.x < nbcols && cp.x % 8); |
| 253 | break; |
| 254 | default: |
| 255 | vgafb_write_char(cp, ca); |
| 256 | cp.x++; |
| 257 | } |
| 258 | |
Kevin O'Connor | 82221b2 | 2009-05-26 00:20:40 -0400 | [diff] [blame] | 259 | // Do we need to wrap ? |
| 260 | if (cp.x == nbcols) { |
| 261 | cp.x = 0; |
| 262 | cp.y++; |
| 263 | } |
| 264 | // Do we need to scroll ? |
Kevin O'Connor | afb287d | 2009-05-31 21:15:33 -0400 | [diff] [blame] | 265 | if (cp.y < nbrows) { |
| 266 | *pcp = cp; |
| 267 | return; |
Kevin O'Connor | 82221b2 | 2009-05-26 00:20:40 -0400 | [diff] [blame] | 268 | } |
Kevin O'Connor | afb287d | 2009-05-31 21:15:33 -0400 | [diff] [blame] | 269 | // Scroll screen |
| 270 | cp.y--; |
| 271 | *pcp = cp; |
| 272 | scroll_one(nbrows, nbcols, cp.page); |
Kevin O'Connor | 82221b2 | 2009-05-26 00:20:40 -0400 | [diff] [blame] | 273 | } |
| 274 | |
Kevin O'Connor | afb287d | 2009-05-31 21:15:33 -0400 | [diff] [blame] | 275 | // Write out a buffer of alternating characters and attributes. |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 276 | static void |
Kevin O'Connor | afb287d | 2009-05-31 21:15:33 -0400 | [diff] [blame] | 277 | write_attr_string(struct cursorpos *pcp, u16 count, u16 seg, u8 *offset_far) |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 278 | { |
Kevin O'Connor | 2e86c6a | 2009-05-31 20:43:06 -0400 | [diff] [blame] | 279 | while (count--) { |
Kevin O'Connor | dd2be77 | 2009-05-16 15:41:23 -0400 | [diff] [blame] | 280 | u8 car = GET_FARVAR(seg, *offset_far); |
| 281 | offset_far++; |
Kevin O'Connor | afb287d | 2009-05-31 21:15:33 -0400 | [diff] [blame] | 282 | u8 attr = GET_FARVAR(seg, *offset_far); |
| 283 | offset_far++; |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 284 | |
Kevin O'Connor | 0926241 | 2009-05-25 11:44:11 -0400 | [diff] [blame] | 285 | struct carattr ca = {car, attr, 1}; |
Kevin O'Connor | afb287d | 2009-05-31 21:15:33 -0400 | [diff] [blame] | 286 | write_teletype(pcp, ca); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 287 | } |
Kevin O'Connor | afb287d | 2009-05-31 21:15:33 -0400 | [diff] [blame] | 288 | } |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 289 | |
Kevin O'Connor | afb287d | 2009-05-31 21:15:33 -0400 | [diff] [blame] | 290 | // Write out a buffer of characters. |
| 291 | static void |
| 292 | write_string(struct cursorpos *pcp, u8 attr, u16 count, u16 seg, u8 *offset_far) |
| 293 | { |
| 294 | while (count--) { |
| 295 | u8 car = GET_FARVAR(seg, *offset_far); |
| 296 | offset_far++; |
| 297 | |
| 298 | struct carattr ca = {car, attr, 1}; |
| 299 | write_teletype(pcp, ca); |
| 300 | } |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 301 | } |
| 302 | |
Kevin O'Connor | 227a2bb | 2009-05-31 22:00:20 -0400 | [diff] [blame] | 303 | |
| 304 | /**************************************************************** |
| 305 | * Save and restore bda state |
| 306 | ****************************************************************/ |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 307 | |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 308 | static void |
Kevin O'Connor | 227a2bb | 2009-05-31 22:00:20 -0400 | [diff] [blame] | 309 | save_bda_state(u16 seg, struct saveBDAstate *info) |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 310 | { |
Kevin O'Connor | ca66864 | 2009-05-21 23:06:08 -0400 | [diff] [blame] | 311 | SET_FARVAR(seg, info->video_mode, GET_BDA(video_mode)); |
| 312 | SET_FARVAR(seg, info->video_cols, GET_BDA(video_cols)); |
| 313 | SET_FARVAR(seg, info->video_pagesize, GET_BDA(video_pagesize)); |
| 314 | SET_FARVAR(seg, info->crtc_address, GET_BDA(crtc_address)); |
| 315 | SET_FARVAR(seg, info->video_rows, GET_BDA(video_rows)); |
| 316 | SET_FARVAR(seg, info->char_height, GET_BDA(char_height)); |
| 317 | SET_FARVAR(seg, info->video_ctl, GET_BDA(video_ctl)); |
| 318 | SET_FARVAR(seg, info->video_switches, GET_BDA(video_switches)); |
| 319 | SET_FARVAR(seg, info->modeset_ctl, GET_BDA(modeset_ctl)); |
| 320 | SET_FARVAR(seg, info->cursor_type, GET_BDA(cursor_type)); |
| 321 | u16 i; |
| 322 | for (i=0; i<8; i++) |
| 323 | SET_FARVAR(seg, info->cursor_pos[i], GET_BDA(cursor_pos[i])); |
| 324 | SET_FARVAR(seg, info->video_pagestart, GET_BDA(video_pagestart)); |
| 325 | SET_FARVAR(seg, info->video_page, GET_BDA(video_page)); |
| 326 | /* current font */ |
Kevin O'Connor | 9f98542 | 2009-09-09 11:34:39 -0400 | [diff] [blame] | 327 | SET_FARVAR(seg, info->font0, GET_IVT(0x1f)); |
| 328 | SET_FARVAR(seg, info->font1, GET_IVT(0x43)); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 329 | } |
| 330 | |
Kevin O'Connor | ca66864 | 2009-05-21 23:06:08 -0400 | [diff] [blame] | 331 | static void |
Kevin O'Connor | 227a2bb | 2009-05-31 22:00:20 -0400 | [diff] [blame] | 332 | restore_bda_state(u16 seg, struct saveBDAstate *info) |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 333 | { |
Kevin O'Connor | ca66864 | 2009-05-21 23:06:08 -0400 | [diff] [blame] | 334 | SET_BDA(video_mode, GET_FARVAR(seg, info->video_mode)); |
| 335 | SET_BDA(video_cols, GET_FARVAR(seg, info->video_cols)); |
| 336 | SET_BDA(video_pagesize, GET_FARVAR(seg, info->video_pagesize)); |
| 337 | SET_BDA(crtc_address, GET_FARVAR(seg, info->crtc_address)); |
| 338 | SET_BDA(video_rows, GET_FARVAR(seg, info->video_rows)); |
| 339 | SET_BDA(char_height, GET_FARVAR(seg, info->char_height)); |
| 340 | SET_BDA(video_ctl, GET_FARVAR(seg, info->video_ctl)); |
| 341 | SET_BDA(video_switches, GET_FARVAR(seg, info->video_switches)); |
| 342 | SET_BDA(modeset_ctl, GET_FARVAR(seg, info->modeset_ctl)); |
| 343 | SET_BDA(cursor_type, GET_FARVAR(seg, info->cursor_type)); |
| 344 | u16 i; |
| 345 | for (i = 0; i < 8; i++) |
| 346 | SET_BDA(cursor_pos[i], GET_FARVAR(seg, info->cursor_pos[i])); |
| 347 | SET_BDA(video_pagestart, GET_FARVAR(seg, info->video_pagestart)); |
| 348 | SET_BDA(video_page, GET_FARVAR(seg, info->video_page)); |
| 349 | /* current font */ |
Kevin O'Connor | 9f98542 | 2009-09-09 11:34:39 -0400 | [diff] [blame] | 350 | SET_IVT(0x1f, GET_FARVAR(seg, info->font0)); |
| 351 | SET_IVT(0x43, GET_FARVAR(seg, info->font1)); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 352 | } |
| 353 | |
| 354 | |
| 355 | /**************************************************************** |
| 356 | * VGA int 10 handler |
| 357 | ****************************************************************/ |
| 358 | |
Kevin O'Connor | 85ea07e | 2009-05-25 09:41:07 -0400 | [diff] [blame] | 359 | // set video mode |
Julian Pidancet | 87879e2 | 2011-12-19 05:08:00 +0000 | [diff] [blame] | 360 | void |
| 361 | vga_set_mode(u8 mode, u8 noclearmem) |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 362 | { |
Kevin O'Connor | 85ea07e | 2009-05-25 09:41:07 -0400 | [diff] [blame] | 363 | // find the entry in the video modes |
| 364 | struct vgamode_s *vmode_g = find_vga_entry(mode); |
| 365 | dprintf(1, "mode search %02x found %p\n", mode, vmode_g); |
| 366 | if (!vmode_g) |
| 367 | return; |
| 368 | |
| 369 | // Read the bios mode set control |
| 370 | u8 modeset_ctl = GET_BDA(modeset_ctl); |
| 371 | |
| 372 | // Then we know the number of lines |
| 373 | // FIXME |
| 374 | |
| 375 | // if palette loading (bit 3 of modeset ctl = 0) |
| 376 | if ((modeset_ctl & 0x08) == 0) { // Set the PEL mask |
| 377 | vgahw_set_pel_mask(GET_GLOBAL(vmode_g->pelmask)); |
| 378 | |
| 379 | // From which palette |
| 380 | u8 *palette_g = GET_GLOBAL(vmode_g->dac); |
| 381 | u16 palsize = GET_GLOBAL(vmode_g->dacsize) / 3; |
| 382 | |
| 383 | // Always 256*3 values |
| 384 | vgahw_set_dac_regs(get_global_seg(), palette_g, 0, palsize); |
| 385 | u16 i; |
| 386 | for (i = palsize; i < 0x0100; i++) { |
| 387 | static u8 rgb[3] VAR16; |
| 388 | vgahw_set_dac_regs(get_global_seg(), rgb, i, 1); |
| 389 | } |
| 390 | |
| 391 | if ((modeset_ctl & 0x02) == 0x02) |
Kevin O'Connor | 227a2bb | 2009-05-31 22:00:20 -0400 | [diff] [blame] | 392 | perform_gray_scale_summing(0x00, 0x100); |
Kevin O'Connor | 85ea07e | 2009-05-25 09:41:07 -0400 | [diff] [blame] | 393 | } |
| 394 | |
Kevin O'Connor | 87233e9 | 2011-12-23 21:40:34 -0500 | [diff] [blame] | 395 | vgahw_set_mode(vmode_g); |
Kevin O'Connor | 85ea07e | 2009-05-25 09:41:07 -0400 | [diff] [blame] | 396 | |
| 397 | if (noclearmem == 0x00) |
| 398 | clear_screen(vmode_g); |
| 399 | |
| 400 | // Set CRTC address VGA or MDA |
| 401 | u16 crtc_addr = VGAREG_VGA_CRTC_ADDRESS; |
| 402 | if (GET_GLOBAL(vmode_g->memmodel) == MTEXT) |
| 403 | crtc_addr = VGAREG_MDA_CRTC_ADDRESS; |
| 404 | |
| 405 | // Set the BIOS mem |
Kevin O'Connor | 87233e9 | 2011-12-23 21:40:34 -0500 | [diff] [blame] | 406 | u16 cheight = GET_GLOBAL(vmode_g->cheight); |
Kevin O'Connor | 85ea07e | 2009-05-25 09:41:07 -0400 | [diff] [blame] | 407 | SET_BDA(video_mode, mode); |
Kevin O'Connor | 87233e9 | 2011-12-23 21:40:34 -0500 | [diff] [blame] | 408 | SET_BDA(video_cols, GET_GLOBAL(vmode_g->twidth)); |
| 409 | SET_BDA(video_pagesize, GET_GLOBAL(vmode_g->slength)); |
Kevin O'Connor | 85ea07e | 2009-05-25 09:41:07 -0400 | [diff] [blame] | 410 | SET_BDA(crtc_address, crtc_addr); |
Kevin O'Connor | 87233e9 | 2011-12-23 21:40:34 -0500 | [diff] [blame] | 411 | SET_BDA(video_rows, GET_GLOBAL(vmode_g->theight)-1); |
Kevin O'Connor | 85ea07e | 2009-05-25 09:41:07 -0400 | [diff] [blame] | 412 | SET_BDA(char_height, cheight); |
| 413 | SET_BDA(video_ctl, (0x60 | noclearmem)); |
| 414 | SET_BDA(video_switches, 0xF9); |
| 415 | SET_BDA(modeset_ctl, GET_BDA(modeset_ctl) & 0x7f); |
| 416 | |
| 417 | // FIXME We nearly have the good tables. to be reworked |
| 418 | SET_BDA(dcc_index, 0x08); // 8 is VGA should be ok for now |
Kevin O'Connor | 9f98542 | 2009-09-09 11:34:39 -0400 | [diff] [blame] | 419 | SET_BDA(video_savetable |
Kevin O'Connor | 815e447 | 2011-12-21 09:05:32 -0500 | [diff] [blame] | 420 | , SEGOFF(get_global_seg(), (u32)&video_save_pointer_table)); |
Kevin O'Connor | 85ea07e | 2009-05-25 09:41:07 -0400 | [diff] [blame] | 421 | |
| 422 | // FIXME |
| 423 | SET_BDA(video_msr, 0x00); // Unavailable on vanilla vga, but... |
| 424 | SET_BDA(video_pal, 0x00); // Unavailable on vanilla vga, but... |
| 425 | |
| 426 | // Set cursor shape |
Kevin O'Connor | e4f220f | 2009-05-25 23:37:13 -0400 | [diff] [blame] | 427 | if (GET_GLOBAL(vmode_g->memmodel) & TEXT) |
Kevin O'Connor | 227a2bb | 2009-05-31 22:00:20 -0400 | [diff] [blame] | 428 | set_cursor_shape(0x06, 0x07); |
Kevin O'Connor | 85ea07e | 2009-05-25 09:41:07 -0400 | [diff] [blame] | 429 | // Set cursor pos for page 0..7 |
| 430 | int i; |
Kevin O'Connor | 918b156 | 2009-05-25 11:05:18 -0400 | [diff] [blame] | 431 | for (i = 0; i < 8; i++) { |
| 432 | struct cursorpos cp = {0, 0, i}; |
| 433 | set_cursor_pos(cp); |
| 434 | } |
Kevin O'Connor | 85ea07e | 2009-05-25 09:41:07 -0400 | [diff] [blame] | 435 | |
| 436 | // Set active page 0 |
Kevin O'Connor | 227a2bb | 2009-05-31 22:00:20 -0400 | [diff] [blame] | 437 | set_active_page(0x00); |
Kevin O'Connor | 85ea07e | 2009-05-25 09:41:07 -0400 | [diff] [blame] | 438 | |
| 439 | // Write the fonts in memory |
Kevin O'Connor | e4f220f | 2009-05-25 23:37:13 -0400 | [diff] [blame] | 440 | if (GET_GLOBAL(vmode_g->memmodel) & TEXT) { |
Kevin O'Connor | 85ea07e | 2009-05-25 09:41:07 -0400 | [diff] [blame] | 441 | call16_vgaint(0x1104, 0); |
| 442 | call16_vgaint(0x1103, 0); |
| 443 | } |
| 444 | // Set the ints 0x1F and 0x43 |
Kevin O'Connor | 9f98542 | 2009-09-09 11:34:39 -0400 | [diff] [blame] | 445 | SET_IVT(0x1f, SEGOFF(get_global_seg(), (u32)&vgafont8[128 * 8])); |
Kevin O'Connor | 85ea07e | 2009-05-25 09:41:07 -0400 | [diff] [blame] | 446 | |
| 447 | switch (cheight) { |
| 448 | case 8: |
Kevin O'Connor | 9f98542 | 2009-09-09 11:34:39 -0400 | [diff] [blame] | 449 | SET_IVT(0x43, SEGOFF(get_global_seg(), (u32)vgafont8)); |
Kevin O'Connor | 85ea07e | 2009-05-25 09:41:07 -0400 | [diff] [blame] | 450 | break; |
| 451 | case 14: |
Kevin O'Connor | 9f98542 | 2009-09-09 11:34:39 -0400 | [diff] [blame] | 452 | SET_IVT(0x43, SEGOFF(get_global_seg(), (u32)vgafont14)); |
Kevin O'Connor | 85ea07e | 2009-05-25 09:41:07 -0400 | [diff] [blame] | 453 | break; |
| 454 | case 16: |
Kevin O'Connor | 9f98542 | 2009-09-09 11:34:39 -0400 | [diff] [blame] | 455 | SET_IVT(0x43, SEGOFF(get_global_seg(), (u32)vgafont16)); |
Kevin O'Connor | 85ea07e | 2009-05-25 09:41:07 -0400 | [diff] [blame] | 456 | break; |
| 457 | } |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 458 | } |
| 459 | |
| 460 | static void |
Julian Pidancet | 87879e2 | 2011-12-19 05:08:00 +0000 | [diff] [blame] | 461 | handle_1000(struct bregs *regs) |
| 462 | { |
| 463 | u8 noclearmem = regs->al & 0x80; |
| 464 | u8 mode = regs->al & 0x7f; |
| 465 | |
| 466 | // Set regs->al |
| 467 | if (mode > 7) |
| 468 | regs->al = 0x20; |
| 469 | else if (mode == 6) |
| 470 | regs->al = 0x3f; |
| 471 | else |
| 472 | regs->al = 0x30; |
| 473 | |
Kevin O'Connor | e48a537 | 2011-12-20 23:56:14 -0500 | [diff] [blame] | 474 | if (CONFIG_VGA_CIRRUS) { |
| 475 | int ret = cirrus_set_video_mode(mode, noclearmem); |
| 476 | if (ret) |
| 477 | return; |
| 478 | } |
Julian Pidancet | 87879e2 | 2011-12-19 05:08:00 +0000 | [diff] [blame] | 479 | |
| 480 | if (vbe_enabled()) |
| 481 | vbe_hires_enable(0); |
| 482 | |
| 483 | vga_set_mode(mode, noclearmem); |
| 484 | } |
| 485 | |
| 486 | static void |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 487 | handle_1001(struct bregs *regs) |
| 488 | { |
Kevin O'Connor | 227a2bb | 2009-05-31 22:00:20 -0400 | [diff] [blame] | 489 | set_cursor_shape(regs->ch, regs->cl); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 490 | } |
| 491 | |
| 492 | static void |
| 493 | handle_1002(struct bregs *regs) |
| 494 | { |
Kevin O'Connor | 918b156 | 2009-05-25 11:05:18 -0400 | [diff] [blame] | 495 | struct cursorpos cp = {regs->dl, regs->dh, regs->bh}; |
| 496 | set_cursor_pos(cp); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 497 | } |
| 498 | |
| 499 | static void |
| 500 | handle_1003(struct bregs *regs) |
| 501 | { |
Kevin O'Connor | 227a2bb | 2009-05-31 22:00:20 -0400 | [diff] [blame] | 502 | regs->cx = get_cursor_shape(regs->bh); |
Kevin O'Connor | 918b156 | 2009-05-25 11:05:18 -0400 | [diff] [blame] | 503 | struct cursorpos cp = get_cursor_pos(regs->bh); |
| 504 | regs->dl = cp.x; |
| 505 | regs->dh = cp.y; |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 506 | } |
| 507 | |
| 508 | // Read light pen pos (unimplemented) |
| 509 | static void |
| 510 | handle_1004(struct bregs *regs) |
| 511 | { |
| 512 | debug_stub(regs); |
| 513 | regs->ax = regs->bx = regs->cx = regs->dx = 0; |
| 514 | } |
| 515 | |
| 516 | static void |
| 517 | handle_1005(struct bregs *regs) |
| 518 | { |
Kevin O'Connor | 227a2bb | 2009-05-31 22:00:20 -0400 | [diff] [blame] | 519 | set_active_page(regs->al); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 520 | } |
| 521 | |
| 522 | static void |
Kevin O'Connor | 217f2bc | 2009-05-31 00:46:47 -0400 | [diff] [blame] | 523 | verify_scroll(struct bregs *regs, int dir) |
| 524 | { |
| 525 | u8 page = GET_BDA(video_page); |
| 526 | struct cursorpos ul = {regs->cl, regs->ch, page}; |
| 527 | struct cursorpos lr = {regs->dl, regs->dh, page}; |
| 528 | |
Kevin O'Connor | 217f2bc | 2009-05-31 00:46:47 -0400 | [diff] [blame] | 529 | u16 nbrows = GET_BDA(video_rows) + 1; |
Kevin O'Connor | 217f2bc | 2009-05-31 00:46:47 -0400 | [diff] [blame] | 530 | if (lr.y >= nbrows) |
| 531 | lr.y = nbrows - 1; |
Kevin O'Connor | c3e1587 | 2009-05-31 01:37:54 -0400 | [diff] [blame] | 532 | u16 nbcols = GET_BDA(video_cols); |
Kevin O'Connor | 217f2bc | 2009-05-31 00:46:47 -0400 | [diff] [blame] | 533 | if (lr.x >= nbcols) |
| 534 | lr.x = nbcols - 1; |
| 535 | |
Kevin O'Connor | c3e1587 | 2009-05-31 01:37:54 -0400 | [diff] [blame] | 536 | if (ul.x > lr.x || ul.y > lr.y) |
| 537 | return; |
| 538 | |
| 539 | u16 nblines = regs->al; |
| 540 | if (!nblines || nblines > lr.y - ul.y + 1) |
| 541 | nblines = lr.y - ul.y + 1; |
| 542 | |
| 543 | vgafb_scroll(dir * nblines, regs->bh, ul, lr); |
Kevin O'Connor | 217f2bc | 2009-05-31 00:46:47 -0400 | [diff] [blame] | 544 | } |
| 545 | |
| 546 | static void |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 547 | handle_1006(struct bregs *regs) |
| 548 | { |
Kevin O'Connor | 217f2bc | 2009-05-31 00:46:47 -0400 | [diff] [blame] | 549 | verify_scroll(regs, 1); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 550 | } |
| 551 | |
| 552 | static void |
| 553 | handle_1007(struct bregs *regs) |
| 554 | { |
Kevin O'Connor | 217f2bc | 2009-05-31 00:46:47 -0400 | [diff] [blame] | 555 | verify_scroll(regs, -1); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 556 | } |
| 557 | |
| 558 | static void |
| 559 | handle_1008(struct bregs *regs) |
| 560 | { |
Kevin O'Connor | d3b3815 | 2009-05-26 00:05:37 -0400 | [diff] [blame] | 561 | struct carattr ca = vgafb_read_char(get_cursor_pos(regs->bh)); |
Kevin O'Connor | 0926241 | 2009-05-25 11:44:11 -0400 | [diff] [blame] | 562 | regs->al = ca.car; |
| 563 | regs->ah = ca.attr; |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 564 | } |
| 565 | |
Kevin O'Connor | 0ad77f0 | 2009-05-31 20:46:43 -0400 | [diff] [blame] | 566 | static void noinline |
Kevin O'Connor | d3b3815 | 2009-05-26 00:05:37 -0400 | [diff] [blame] | 567 | write_chars(u8 page, struct carattr ca, u16 count) |
| 568 | { |
| 569 | struct cursorpos cp = get_cursor_pos(page); |
| 570 | while (count--) { |
| 571 | vgafb_write_char(cp, ca); |
| 572 | cp.x++; |
| 573 | } |
| 574 | } |
| 575 | |
| 576 | static void |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 577 | handle_1009(struct bregs *regs) |
| 578 | { |
Kevin O'Connor | 0926241 | 2009-05-25 11:44:11 -0400 | [diff] [blame] | 579 | struct carattr ca = {regs->al, regs->bl, 1}; |
Kevin O'Connor | d3b3815 | 2009-05-26 00:05:37 -0400 | [diff] [blame] | 580 | write_chars(regs->bh, ca, regs->cx); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 581 | } |
| 582 | |
| 583 | static void |
| 584 | handle_100a(struct bregs *regs) |
| 585 | { |
Kevin O'Connor | 0926241 | 2009-05-25 11:44:11 -0400 | [diff] [blame] | 586 | struct carattr ca = {regs->al, regs->bl, 0}; |
Kevin O'Connor | d3b3815 | 2009-05-26 00:05:37 -0400 | [diff] [blame] | 587 | write_chars(regs->bh, ca, regs->cx); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 588 | } |
| 589 | |
| 590 | |
| 591 | static void |
| 592 | handle_100b00(struct bregs *regs) |
| 593 | { |
Kevin O'Connor | 8bc059e | 2009-05-17 21:19:36 -0400 | [diff] [blame] | 594 | vgahw_set_border_color(regs->bl); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 595 | } |
| 596 | |
| 597 | static void |
| 598 | handle_100b01(struct bregs *regs) |
| 599 | { |
Kevin O'Connor | 8bc059e | 2009-05-17 21:19:36 -0400 | [diff] [blame] | 600 | vgahw_set_palette(regs->bl); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 601 | } |
| 602 | |
| 603 | static void |
| 604 | handle_100bXX(struct bregs *regs) |
| 605 | { |
| 606 | debug_stub(regs); |
| 607 | } |
| 608 | |
| 609 | static void |
| 610 | handle_100b(struct bregs *regs) |
| 611 | { |
| 612 | switch (regs->bh) { |
| 613 | case 0x00: handle_100b00(regs); break; |
| 614 | case 0x01: handle_100b01(regs); break; |
| 615 | default: handle_100bXX(regs); break; |
| 616 | } |
| 617 | } |
| 618 | |
| 619 | |
| 620 | static void |
| 621 | handle_100c(struct bregs *regs) |
| 622 | { |
Kevin O'Connor | 227a2bb | 2009-05-31 22:00:20 -0400 | [diff] [blame] | 623 | // XXX - page (regs->bh) is unused |
| 624 | vgafb_write_pixel(regs->al, regs->cx, regs->dx); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 625 | } |
| 626 | |
| 627 | static void |
| 628 | handle_100d(struct bregs *regs) |
| 629 | { |
Kevin O'Connor | 227a2bb | 2009-05-31 22:00:20 -0400 | [diff] [blame] | 630 | // XXX - page (regs->bh) is unused |
| 631 | regs->al = vgafb_read_pixel(regs->cx, regs->dx); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 632 | } |
| 633 | |
Kevin O'Connor | 0ad77f0 | 2009-05-31 20:46:43 -0400 | [diff] [blame] | 634 | static void noinline |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 635 | handle_100e(struct bregs *regs) |
| 636 | { |
| 637 | // Ralf Brown Interrupt list is WRONG on bh(page) |
| 638 | // We do output only on the current page ! |
Kevin O'Connor | 0926241 | 2009-05-25 11:44:11 -0400 | [diff] [blame] | 639 | struct carattr ca = {regs->al, regs->bl, 0}; |
Kevin O'Connor | 116a044 | 2009-05-26 00:47:32 -0400 | [diff] [blame] | 640 | struct cursorpos cp = get_cursor_pos(0xff); |
Kevin O'Connor | afb287d | 2009-05-31 21:15:33 -0400 | [diff] [blame] | 641 | write_teletype(&cp, ca); |
Kevin O'Connor | 116a044 | 2009-05-26 00:47:32 -0400 | [diff] [blame] | 642 | set_cursor_pos(cp); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 643 | } |
| 644 | |
| 645 | static void |
| 646 | handle_100f(struct bregs *regs) |
| 647 | { |
Kevin O'Connor | e713204 | 2009-05-25 00:10:35 -0400 | [diff] [blame] | 648 | regs->bh = GET_BDA(video_page); |
| 649 | regs->al = GET_BDA(video_mode) | (GET_BDA(video_ctl) & 0x80); |
| 650 | regs->ah = GET_BDA(video_cols); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 651 | } |
| 652 | |
| 653 | |
| 654 | static void |
| 655 | handle_101000(struct bregs *regs) |
| 656 | { |
| 657 | if (regs->bl > 0x14) |
| 658 | return; |
Kevin O'Connor | 8bc059e | 2009-05-17 21:19:36 -0400 | [diff] [blame] | 659 | vgahw_set_single_palette_reg(regs->bl, regs->bh); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 660 | } |
| 661 | |
| 662 | static void |
| 663 | handle_101001(struct bregs *regs) |
| 664 | { |
Kevin O'Connor | 8bc059e | 2009-05-17 21:19:36 -0400 | [diff] [blame] | 665 | vgahw_set_overscan_border_color(regs->bh); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 666 | } |
| 667 | |
| 668 | static void |
| 669 | handle_101002(struct bregs *regs) |
| 670 | { |
Kevin O'Connor | 8bc059e | 2009-05-17 21:19:36 -0400 | [diff] [blame] | 671 | vgahw_set_all_palette_reg(regs->es, (u8*)(regs->dx + 0)); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 672 | } |
| 673 | |
| 674 | static void |
| 675 | handle_101003(struct bregs *regs) |
| 676 | { |
Kevin O'Connor | 8bc059e | 2009-05-17 21:19:36 -0400 | [diff] [blame] | 677 | vgahw_toggle_intensity(regs->bl); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 678 | } |
| 679 | |
| 680 | static void |
| 681 | handle_101007(struct bregs *regs) |
| 682 | { |
| 683 | if (regs->bl > 0x14) |
| 684 | return; |
Kevin O'Connor | 8bc059e | 2009-05-17 21:19:36 -0400 | [diff] [blame] | 685 | regs->bh = vgahw_get_single_palette_reg(regs->bl); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 686 | } |
| 687 | |
| 688 | static void |
| 689 | handle_101008(struct bregs *regs) |
| 690 | { |
Kevin O'Connor | 3862b2d | 2010-01-03 17:53:58 -0500 | [diff] [blame] | 691 | regs->bh = vgahw_get_overscan_border_color(); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 692 | } |
| 693 | |
| 694 | static void |
| 695 | handle_101009(struct bregs *regs) |
| 696 | { |
Kevin O'Connor | 8bc059e | 2009-05-17 21:19:36 -0400 | [diff] [blame] | 697 | vgahw_get_all_palette_reg(regs->es, (u8*)(regs->dx + 0)); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 698 | } |
| 699 | |
Kevin O'Connor | 0ad77f0 | 2009-05-31 20:46:43 -0400 | [diff] [blame] | 700 | static void noinline |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 701 | handle_101010(struct bregs *regs) |
| 702 | { |
Kevin O'Connor | 8bc059e | 2009-05-17 21:19:36 -0400 | [diff] [blame] | 703 | u8 rgb[3] = {regs->dh, regs->ch, regs->cl}; |
| 704 | vgahw_set_dac_regs(GET_SEG(SS), rgb, regs->bx, 1); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 705 | } |
| 706 | |
| 707 | static void |
| 708 | handle_101012(struct bregs *regs) |
| 709 | { |
Kevin O'Connor | 8bc059e | 2009-05-17 21:19:36 -0400 | [diff] [blame] | 710 | vgahw_set_dac_regs(regs->es, (u8*)(regs->dx + 0), regs->bx, regs->cx); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 711 | } |
| 712 | |
| 713 | static void |
| 714 | handle_101013(struct bregs *regs) |
| 715 | { |
Kevin O'Connor | 8bc059e | 2009-05-17 21:19:36 -0400 | [diff] [blame] | 716 | vgahw_select_video_dac_color_page(regs->bl, regs->bh); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 717 | } |
| 718 | |
Kevin O'Connor | 0ad77f0 | 2009-05-31 20:46:43 -0400 | [diff] [blame] | 719 | static void noinline |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 720 | handle_101015(struct bregs *regs) |
| 721 | { |
Kevin O'Connor | 8bc059e | 2009-05-17 21:19:36 -0400 | [diff] [blame] | 722 | u8 rgb[3]; |
| 723 | vgahw_get_dac_regs(GET_SEG(SS), rgb, regs->bx, 1); |
| 724 | regs->dh = rgb[0]; |
| 725 | regs->ch = rgb[1]; |
| 726 | regs->cl = rgb[2]; |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 727 | } |
| 728 | |
| 729 | static void |
| 730 | handle_101017(struct bregs *regs) |
| 731 | { |
Kevin O'Connor | 8bc059e | 2009-05-17 21:19:36 -0400 | [diff] [blame] | 732 | vgahw_get_dac_regs(regs->es, (u8*)(regs->dx + 0), regs->bx, regs->cx); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 733 | } |
| 734 | |
| 735 | static void |
| 736 | handle_101018(struct bregs *regs) |
| 737 | { |
Kevin O'Connor | 8bc059e | 2009-05-17 21:19:36 -0400 | [diff] [blame] | 738 | vgahw_set_pel_mask(regs->bl); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 739 | } |
| 740 | |
| 741 | static void |
| 742 | handle_101019(struct bregs *regs) |
| 743 | { |
Kevin O'Connor | 8bc059e | 2009-05-17 21:19:36 -0400 | [diff] [blame] | 744 | regs->bl = vgahw_get_pel_mask(); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 745 | } |
| 746 | |
| 747 | static void |
| 748 | handle_10101a(struct bregs *regs) |
| 749 | { |
Kevin O'Connor | 8bc059e | 2009-05-17 21:19:36 -0400 | [diff] [blame] | 750 | vgahw_read_video_dac_state(®s->bl, ®s->bh); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 751 | } |
| 752 | |
| 753 | static void |
| 754 | handle_10101b(struct bregs *regs) |
| 755 | { |
Kevin O'Connor | 227a2bb | 2009-05-31 22:00:20 -0400 | [diff] [blame] | 756 | perform_gray_scale_summing(regs->bx, regs->cx); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 757 | } |
| 758 | |
| 759 | static void |
| 760 | handle_1010XX(struct bregs *regs) |
| 761 | { |
| 762 | debug_stub(regs); |
| 763 | } |
| 764 | |
| 765 | static void |
| 766 | handle_1010(struct bregs *regs) |
| 767 | { |
| 768 | switch (regs->al) { |
| 769 | case 0x00: handle_101000(regs); break; |
| 770 | case 0x01: handle_101001(regs); break; |
| 771 | case 0x02: handle_101002(regs); break; |
| 772 | case 0x03: handle_101003(regs); break; |
| 773 | case 0x07: handle_101007(regs); break; |
| 774 | case 0x08: handle_101008(regs); break; |
| 775 | case 0x09: handle_101009(regs); break; |
| 776 | case 0x10: handle_101010(regs); break; |
| 777 | case 0x12: handle_101012(regs); break; |
| 778 | case 0x13: handle_101013(regs); break; |
| 779 | case 0x15: handle_101015(regs); break; |
| 780 | case 0x17: handle_101017(regs); break; |
| 781 | case 0x18: handle_101018(regs); break; |
| 782 | case 0x19: handle_101019(regs); break; |
| 783 | case 0x1a: handle_10101a(regs); break; |
| 784 | case 0x1b: handle_10101b(regs); break; |
| 785 | default: handle_1010XX(regs); break; |
| 786 | } |
| 787 | } |
| 788 | |
| 789 | |
| 790 | static void |
| 791 | handle_101100(struct bregs *regs) |
| 792 | { |
Kevin O'Connor | deb9cb9 | 2009-05-25 09:06:50 -0400 | [diff] [blame] | 793 | vgafb_load_font(regs->es, (void*)(regs->bp+0), regs->cx |
| 794 | , regs->dx, regs->bl, regs->bh); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 795 | } |
| 796 | |
| 797 | static void |
| 798 | handle_101101(struct bregs *regs) |
| 799 | { |
Kevin O'Connor | deb9cb9 | 2009-05-25 09:06:50 -0400 | [diff] [blame] | 800 | vgafb_load_font(get_global_seg(), vgafont14, 0x100, 0, regs->bl, 14); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 801 | } |
| 802 | |
| 803 | static void |
| 804 | handle_101102(struct bregs *regs) |
| 805 | { |
Kevin O'Connor | deb9cb9 | 2009-05-25 09:06:50 -0400 | [diff] [blame] | 806 | vgafb_load_font(get_global_seg(), vgafont8, 0x100, 0, regs->bl, 8); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 807 | } |
| 808 | |
| 809 | static void |
| 810 | handle_101103(struct bregs *regs) |
| 811 | { |
Kevin O'Connor | 8bc059e | 2009-05-17 21:19:36 -0400 | [diff] [blame] | 812 | vgahw_set_text_block_specifier(regs->bl); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 813 | } |
| 814 | |
| 815 | static void |
| 816 | handle_101104(struct bregs *regs) |
| 817 | { |
Kevin O'Connor | deb9cb9 | 2009-05-25 09:06:50 -0400 | [diff] [blame] | 818 | vgafb_load_font(get_global_seg(), vgafont16, 0x100, 0, regs->bl, 16); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 819 | } |
| 820 | |
| 821 | static void |
| 822 | handle_101110(struct bregs *regs) |
| 823 | { |
Kevin O'Connor | deb9cb9 | 2009-05-25 09:06:50 -0400 | [diff] [blame] | 824 | vgafb_load_font(regs->es, (void*)(regs->bp+0), regs->cx |
| 825 | , regs->dx, regs->bl, regs->bh); |
Kevin O'Connor | c0c7df6 | 2009-05-17 18:11:33 -0400 | [diff] [blame] | 826 | set_scan_lines(regs->bh); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 827 | } |
| 828 | |
| 829 | static void |
| 830 | handle_101111(struct bregs *regs) |
| 831 | { |
Kevin O'Connor | deb9cb9 | 2009-05-25 09:06:50 -0400 | [diff] [blame] | 832 | vgafb_load_font(get_global_seg(), vgafont14, 0x100, 0, regs->bl, 14); |
Kevin O'Connor | c0c7df6 | 2009-05-17 18:11:33 -0400 | [diff] [blame] | 833 | set_scan_lines(14); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 834 | } |
| 835 | |
| 836 | static void |
| 837 | handle_101112(struct bregs *regs) |
| 838 | { |
Kevin O'Connor | deb9cb9 | 2009-05-25 09:06:50 -0400 | [diff] [blame] | 839 | vgafb_load_font(get_global_seg(), vgafont8, 0x100, 0, regs->bl, 8); |
Kevin O'Connor | c0c7df6 | 2009-05-17 18:11:33 -0400 | [diff] [blame] | 840 | set_scan_lines(8); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 841 | } |
| 842 | |
| 843 | static void |
| 844 | handle_101114(struct bregs *regs) |
| 845 | { |
Kevin O'Connor | deb9cb9 | 2009-05-25 09:06:50 -0400 | [diff] [blame] | 846 | vgafb_load_font(get_global_seg(), vgafont16, 0x100, 0, regs->bl, 16); |
Kevin O'Connor | c0c7df6 | 2009-05-17 18:11:33 -0400 | [diff] [blame] | 847 | set_scan_lines(16); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 848 | } |
| 849 | |
| 850 | static void |
| 851 | handle_101130(struct bregs *regs) |
| 852 | { |
Kevin O'Connor | e713204 | 2009-05-25 00:10:35 -0400 | [diff] [blame] | 853 | switch (regs->bh) { |
| 854 | case 0x00: { |
Kevin O'Connor | c9d3c2d | 2010-01-01 12:53:32 -0500 | [diff] [blame] | 855 | struct segoff_s so = GET_IVT(0x1f); |
| 856 | regs->es = so.seg; |
| 857 | regs->bp = so.offset; |
Kevin O'Connor | e713204 | 2009-05-25 00:10:35 -0400 | [diff] [blame] | 858 | break; |
| 859 | } |
| 860 | case 0x01: { |
Kevin O'Connor | c9d3c2d | 2010-01-01 12:53:32 -0500 | [diff] [blame] | 861 | struct segoff_s so = GET_IVT(0x43); |
| 862 | regs->es = so.seg; |
| 863 | regs->bp = so.offset; |
Kevin O'Connor | e713204 | 2009-05-25 00:10:35 -0400 | [diff] [blame] | 864 | break; |
| 865 | } |
| 866 | case 0x02: |
| 867 | regs->es = get_global_seg(); |
| 868 | regs->bp = (u32)vgafont14; |
| 869 | break; |
| 870 | case 0x03: |
| 871 | regs->es = get_global_seg(); |
| 872 | regs->bp = (u32)vgafont8; |
| 873 | break; |
| 874 | case 0x04: |
| 875 | regs->es = get_global_seg(); |
| 876 | regs->bp = (u32)vgafont8 + 128 * 8; |
| 877 | break; |
| 878 | case 0x05: |
| 879 | regs->es = get_global_seg(); |
| 880 | regs->bp = (u32)vgafont14alt; |
| 881 | break; |
| 882 | case 0x06: |
| 883 | regs->es = get_global_seg(); |
| 884 | regs->bp = (u32)vgafont16; |
| 885 | break; |
| 886 | case 0x07: |
| 887 | regs->es = get_global_seg(); |
| 888 | regs->bp = (u32)vgafont16alt; |
| 889 | break; |
| 890 | default: |
| 891 | dprintf(1, "Get font info BH(%02x) was discarded\n", regs->bh); |
| 892 | return; |
| 893 | } |
| 894 | // Set byte/char of on screen font |
| 895 | regs->cx = GET_BDA(char_height) & 0xff; |
| 896 | |
| 897 | // Set Highest char row |
| 898 | regs->dx = GET_BDA(video_rows); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 899 | } |
| 900 | |
| 901 | static void |
| 902 | handle_1011XX(struct bregs *regs) |
| 903 | { |
| 904 | debug_stub(regs); |
| 905 | } |
| 906 | |
| 907 | static void |
| 908 | handle_1011(struct bregs *regs) |
| 909 | { |
| 910 | switch (regs->al) { |
| 911 | case 0x00: handle_101100(regs); break; |
| 912 | case 0x01: handle_101101(regs); break; |
| 913 | case 0x02: handle_101102(regs); break; |
| 914 | case 0x03: handle_101103(regs); break; |
| 915 | case 0x04: handle_101104(regs); break; |
| 916 | case 0x10: handle_101110(regs); break; |
| 917 | case 0x11: handle_101111(regs); break; |
| 918 | case 0x12: handle_101112(regs); break; |
| 919 | case 0x14: handle_101114(regs); break; |
| 920 | case 0x30: handle_101130(regs); break; |
| 921 | default: handle_1011XX(regs); break; |
| 922 | } |
| 923 | } |
| 924 | |
| 925 | |
| 926 | static void |
| 927 | handle_101210(struct bregs *regs) |
| 928 | { |
Kevin O'Connor | e713204 | 2009-05-25 00:10:35 -0400 | [diff] [blame] | 929 | u16 crtc_addr = GET_BDA(crtc_address); |
| 930 | if (crtc_addr == VGAREG_MDA_CRTC_ADDRESS) |
| 931 | regs->bx = 0x0103; |
| 932 | else |
| 933 | regs->bx = 0x0003; |
| 934 | regs->cx = GET_BDA(video_switches) & 0x0f; |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 935 | } |
| 936 | |
| 937 | static void |
| 938 | handle_101230(struct bregs *regs) |
| 939 | { |
Kevin O'Connor | e713204 | 2009-05-25 00:10:35 -0400 | [diff] [blame] | 940 | u8 mctl = GET_BDA(modeset_ctl); |
| 941 | u8 vswt = GET_BDA(video_switches); |
| 942 | switch (regs->al) { |
| 943 | case 0x00: |
| 944 | // 200 lines |
| 945 | mctl = (mctl & ~0x10) | 0x80; |
| 946 | vswt = (vswt & ~0x0f) | 0x08; |
| 947 | break; |
| 948 | case 0x01: |
| 949 | // 350 lines |
| 950 | mctl &= ~0x90; |
| 951 | vswt = (vswt & ~0x0f) | 0x09; |
| 952 | break; |
| 953 | case 0x02: |
| 954 | // 400 lines |
| 955 | mctl = (mctl & ~0x80) | 0x10; |
| 956 | vswt = (vswt & ~0x0f) | 0x09; |
| 957 | break; |
| 958 | default: |
| 959 | dprintf(1, "Select vert res (%02x) was discarded\n", regs->al); |
| 960 | break; |
| 961 | } |
| 962 | SET_BDA(modeset_ctl, mctl); |
| 963 | SET_BDA(video_switches, vswt); |
| 964 | regs->al = 0x12; |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 965 | } |
| 966 | |
| 967 | static void |
| 968 | handle_101231(struct bregs *regs) |
| 969 | { |
Kevin O'Connor | e713204 | 2009-05-25 00:10:35 -0400 | [diff] [blame] | 970 | u8 v = (regs->al & 0x01) << 3; |
| 971 | u8 mctl = GET_BDA(video_ctl) & ~0x08; |
| 972 | SET_BDA(video_ctl, mctl | v); |
| 973 | regs->al = 0x12; |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 974 | } |
| 975 | |
| 976 | static void |
| 977 | handle_101232(struct bregs *regs) |
| 978 | { |
Kevin O'Connor | 8bc059e | 2009-05-17 21:19:36 -0400 | [diff] [blame] | 979 | vgahw_enable_video_addressing(regs->al); |
| 980 | regs->al = 0x12; |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 981 | } |
| 982 | |
| 983 | static void |
| 984 | handle_101233(struct bregs *regs) |
| 985 | { |
Kevin O'Connor | e713204 | 2009-05-25 00:10:35 -0400 | [diff] [blame] | 986 | u8 v = ((regs->al << 1) & 0x02) ^ 0x02; |
| 987 | u8 v2 = GET_BDA(modeset_ctl) & ~0x02; |
| 988 | SET_BDA(modeset_ctl, v | v2); |
| 989 | regs->al = 0x12; |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 990 | } |
| 991 | |
| 992 | static void |
| 993 | handle_101234(struct bregs *regs) |
| 994 | { |
Kevin O'Connor | e713204 | 2009-05-25 00:10:35 -0400 | [diff] [blame] | 995 | u8 v = (regs->al & 0x01) ^ 0x01; |
| 996 | u8 v2 = GET_BDA(modeset_ctl) & ~0x01; |
| 997 | SET_BDA(modeset_ctl, v | v2); |
| 998 | regs->al = 0x12; |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 999 | } |
| 1000 | |
| 1001 | static void |
| 1002 | handle_101235(struct bregs *regs) |
| 1003 | { |
| 1004 | debug_stub(regs); |
| 1005 | regs->al = 0x12; |
| 1006 | } |
| 1007 | |
| 1008 | static void |
| 1009 | handle_101236(struct bregs *regs) |
| 1010 | { |
| 1011 | debug_stub(regs); |
| 1012 | regs->al = 0x12; |
| 1013 | } |
| 1014 | |
| 1015 | static void |
| 1016 | handle_1012XX(struct bregs *regs) |
| 1017 | { |
| 1018 | debug_stub(regs); |
| 1019 | } |
| 1020 | |
| 1021 | static void |
| 1022 | handle_1012(struct bregs *regs) |
| 1023 | { |
| 1024 | switch (regs->bl) { |
| 1025 | case 0x10: handle_101210(regs); break; |
| 1026 | case 0x30: handle_101230(regs); break; |
| 1027 | case 0x31: handle_101231(regs); break; |
| 1028 | case 0x32: handle_101232(regs); break; |
| 1029 | case 0x33: handle_101233(regs); break; |
| 1030 | case 0x34: handle_101234(regs); break; |
| 1031 | case 0x35: handle_101235(regs); break; |
| 1032 | case 0x36: handle_101236(regs); break; |
| 1033 | default: handle_1012XX(regs); break; |
| 1034 | } |
| 1035 | |
| 1036 | // XXX - cirrus has 1280, 1281, 1282, 1285, 129a, 12a0, 12a1, 12a2, 12ae |
| 1037 | } |
| 1038 | |
| 1039 | |
Kevin O'Connor | afb287d | 2009-05-31 21:15:33 -0400 | [diff] [blame] | 1040 | // Write string |
Kevin O'Connor | 0ad77f0 | 2009-05-31 20:46:43 -0400 | [diff] [blame] | 1041 | static void noinline |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 1042 | handle_1013(struct bregs *regs) |
| 1043 | { |
Kevin O'Connor | 918b156 | 2009-05-25 11:05:18 -0400 | [diff] [blame] | 1044 | struct cursorpos cp = {regs->dl, regs->dh, regs->bh}; |
Kevin O'Connor | 2e86c6a | 2009-05-31 20:43:06 -0400 | [diff] [blame] | 1045 | // if row=0xff special case : use current cursor position |
| 1046 | if (cp.y == 0xff) |
| 1047 | cp = get_cursor_pos(cp.page); |
Kevin O'Connor | afb287d | 2009-05-31 21:15:33 -0400 | [diff] [blame] | 1048 | u8 flag = regs->al; |
| 1049 | if (flag & 2) |
| 1050 | write_attr_string(&cp, regs->cx, regs->es, (void*)(regs->bp + 0)); |
| 1051 | else |
| 1052 | write_string(&cp, regs->bl, regs->cx, regs->es, (void*)(regs->bp + 0)); |
| 1053 | |
| 1054 | if (flag & 1) |
| 1055 | set_cursor_pos(cp); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 1056 | } |
| 1057 | |
| 1058 | |
| 1059 | static void |
| 1060 | handle_101a00(struct bregs *regs) |
| 1061 | { |
Kevin O'Connor | e713204 | 2009-05-25 00:10:35 -0400 | [diff] [blame] | 1062 | regs->bx = GET_BDA(dcc_index); |
| 1063 | regs->al = 0x1a; |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 1064 | } |
| 1065 | |
| 1066 | static void |
| 1067 | handle_101a01(struct bregs *regs) |
| 1068 | { |
Kevin O'Connor | e713204 | 2009-05-25 00:10:35 -0400 | [diff] [blame] | 1069 | SET_BDA(dcc_index, regs->bl); |
| 1070 | dprintf(1, "Alternate Display code (%02x) was discarded\n", regs->bh); |
| 1071 | regs->al = 0x1a; |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 1072 | } |
| 1073 | |
| 1074 | static void |
| 1075 | handle_101aXX(struct bregs *regs) |
| 1076 | { |
| 1077 | debug_stub(regs); |
| 1078 | } |
| 1079 | |
| 1080 | static void |
| 1081 | handle_101a(struct bregs *regs) |
| 1082 | { |
| 1083 | switch (regs->al) { |
| 1084 | case 0x00: handle_101a00(regs); break; |
| 1085 | case 0x01: handle_101a01(regs); break; |
| 1086 | default: handle_101aXX(regs); break; |
| 1087 | } |
| 1088 | } |
| 1089 | |
| 1090 | |
Kevin O'Connor | ca66864 | 2009-05-21 23:06:08 -0400 | [diff] [blame] | 1091 | struct funcInfo { |
Kevin O'Connor | 87dfad3 | 2011-12-23 21:18:49 -0500 | [diff] [blame] | 1092 | struct segoff_s static_functionality; |
Kevin O'Connor | ca66864 | 2009-05-21 23:06:08 -0400 | [diff] [blame] | 1093 | u8 bda_0x49[30]; |
| 1094 | u8 bda_0x84[3]; |
| 1095 | u8 dcc_index; |
| 1096 | u8 dcc_alt; |
| 1097 | u16 colors; |
| 1098 | u8 pages; |
| 1099 | u8 scan_lines; |
| 1100 | u8 primary_char; |
| 1101 | u8 secondar_char; |
| 1102 | u8 misc; |
| 1103 | u8 non_vga_mode; |
| 1104 | u8 reserved_2f[2]; |
| 1105 | u8 video_mem; |
| 1106 | u8 save_flags; |
| 1107 | u8 disp_info; |
| 1108 | u8 reserved_34[12]; |
| 1109 | }; |
| 1110 | |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 1111 | static void |
| 1112 | handle_101b(struct bregs *regs) |
| 1113 | { |
Kevin O'Connor | ca66864 | 2009-05-21 23:06:08 -0400 | [diff] [blame] | 1114 | u16 seg = regs->es; |
| 1115 | struct funcInfo *info = (void*)(regs->di+0); |
| 1116 | memset_far(seg, info, 0, sizeof(*info)); |
| 1117 | // Address of static functionality table |
Kevin O'Connor | 87dfad3 | 2011-12-23 21:18:49 -0500 | [diff] [blame] | 1118 | SET_FARVAR(seg, info->static_functionality |
| 1119 | , SEGOFF(get_global_seg(), (u32)static_functionality)); |
Kevin O'Connor | ca66864 | 2009-05-21 23:06:08 -0400 | [diff] [blame] | 1120 | |
| 1121 | // Hard coded copy from BIOS area. Should it be cleaner ? |
Kevin O'Connor | 9f98542 | 2009-09-09 11:34:39 -0400 | [diff] [blame] | 1122 | memcpy_far(seg, info->bda_0x49, SEG_BDA, (void*)0x49 |
| 1123 | , sizeof(info->bda_0x49)); |
| 1124 | memcpy_far(seg, info->bda_0x84, SEG_BDA, (void*)0x84 |
| 1125 | , sizeof(info->bda_0x84)); |
Kevin O'Connor | ca66864 | 2009-05-21 23:06:08 -0400 | [diff] [blame] | 1126 | |
| 1127 | SET_FARVAR(seg, info->dcc_index, GET_BDA(dcc_index)); |
| 1128 | SET_FARVAR(seg, info->colors, 16); |
| 1129 | SET_FARVAR(seg, info->pages, 8); |
| 1130 | SET_FARVAR(seg, info->scan_lines, 2); |
| 1131 | SET_FARVAR(seg, info->video_mem, 3); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 1132 | regs->al = 0x1B; |
| 1133 | } |
| 1134 | |
| 1135 | |
| 1136 | static void |
| 1137 | handle_101c00(struct bregs *regs) |
| 1138 | { |
Kevin O'Connor | ca66864 | 2009-05-21 23:06:08 -0400 | [diff] [blame] | 1139 | u16 flags = regs->cx; |
| 1140 | u16 size = 0; |
| 1141 | if (flags & 1) |
| 1142 | size += sizeof(struct saveVideoHardware); |
| 1143 | if (flags & 2) |
| 1144 | size += sizeof(struct saveBDAstate); |
| 1145 | if (flags & 4) |
| 1146 | size += sizeof(struct saveDACcolors); |
| 1147 | regs->bx = size; |
| 1148 | regs->al = 0x1c; |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 1149 | } |
| 1150 | |
| 1151 | static void |
| 1152 | handle_101c01(struct bregs *regs) |
| 1153 | { |
Kevin O'Connor | ca66864 | 2009-05-21 23:06:08 -0400 | [diff] [blame] | 1154 | u16 flags = regs->cx; |
| 1155 | u16 seg = regs->es; |
| 1156 | void *data = (void*)(regs->bx+0); |
| 1157 | if (flags & 1) { |
| 1158 | vgahw_save_state(seg, data); |
| 1159 | data += sizeof(struct saveVideoHardware); |
| 1160 | } |
| 1161 | if (flags & 2) { |
Kevin O'Connor | 227a2bb | 2009-05-31 22:00:20 -0400 | [diff] [blame] | 1162 | save_bda_state(seg, data); |
Kevin O'Connor | ca66864 | 2009-05-21 23:06:08 -0400 | [diff] [blame] | 1163 | data += sizeof(struct saveBDAstate); |
| 1164 | } |
| 1165 | if (flags & 4) |
| 1166 | vgahw_save_dac_state(seg, data); |
| 1167 | regs->al = 0x1c; |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 1168 | } |
| 1169 | |
| 1170 | static void |
| 1171 | handle_101c02(struct bregs *regs) |
| 1172 | { |
Kevin O'Connor | ca66864 | 2009-05-21 23:06:08 -0400 | [diff] [blame] | 1173 | u16 flags = regs->cx; |
| 1174 | u16 seg = regs->es; |
| 1175 | void *data = (void*)(regs->bx+0); |
| 1176 | if (flags & 1) { |
| 1177 | vgahw_restore_state(seg, data); |
| 1178 | data += sizeof(struct saveVideoHardware); |
| 1179 | } |
| 1180 | if (flags & 2) { |
Kevin O'Connor | 227a2bb | 2009-05-31 22:00:20 -0400 | [diff] [blame] | 1181 | restore_bda_state(seg, data); |
Kevin O'Connor | ca66864 | 2009-05-21 23:06:08 -0400 | [diff] [blame] | 1182 | data += sizeof(struct saveBDAstate); |
| 1183 | } |
| 1184 | if (flags & 4) |
| 1185 | vgahw_restore_dac_state(seg, data); |
| 1186 | regs->al = 0x1c; |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 1187 | } |
| 1188 | |
| 1189 | static void |
| 1190 | handle_101cXX(struct bregs *regs) |
| 1191 | { |
| 1192 | debug_stub(regs); |
| 1193 | } |
| 1194 | |
| 1195 | static void |
| 1196 | handle_101c(struct bregs *regs) |
| 1197 | { |
| 1198 | switch (regs->al) { |
| 1199 | case 0x00: handle_101c00(regs); break; |
| 1200 | case 0x01: handle_101c01(regs); break; |
| 1201 | case 0x02: handle_101c02(regs); break; |
| 1202 | default: handle_101cXX(regs); break; |
| 1203 | } |
| 1204 | } |
| 1205 | |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 1206 | static void |
| 1207 | handle_104f00(struct bregs *regs) |
| 1208 | { |
Julian Pidancet | 87879e2 | 2011-12-19 05:08:00 +0000 | [diff] [blame] | 1209 | u16 seg = regs->es; |
| 1210 | struct vbe_info *info = (void*)(regs->di+0); |
| 1211 | |
| 1212 | if (GET_FARVAR(seg, info->signature) == VBE2_SIGNATURE) { |
| 1213 | dprintf(4, "Get VBE Controller: VBE2 Signature found\n"); |
| 1214 | } else if (GET_FARVAR(seg, info->signature) == VESA_SIGNATURE) { |
| 1215 | dprintf(4, "Get VBE Controller: VESA Signature found\n"); |
| 1216 | } else { |
| 1217 | dprintf(4, "Get VBE Controller: Invalid Signature\n"); |
| 1218 | } |
| 1219 | |
| 1220 | memset_far(seg, info, 0, sizeof(*info)); |
| 1221 | |
| 1222 | SET_FARVAR(seg, info->signature, VESA_SIGNATURE); |
| 1223 | |
| 1224 | SET_FARVAR(seg, info->version, 0x0200); |
| 1225 | |
| 1226 | SET_FARVAR(seg, info->oem_string, |
| 1227 | SEGOFF(get_global_seg(), (u32)VBE_OEM_STRING)); |
| 1228 | SET_FARVAR(seg, info->capabilities[0], 0x1); /* 8BIT DAC */ |
| 1229 | |
| 1230 | /* We generate our mode list in the reserved field of the info block */ |
| 1231 | SET_FARVAR(seg, info->video_mode, SEGOFF(seg, regs->di + 34)); |
| 1232 | |
| 1233 | /* Total memory (in 64 blocks) */ |
| 1234 | SET_FARVAR(seg, info->total_memory, vbe_total_mem()); |
| 1235 | |
| 1236 | SET_FARVAR(seg, info->oem_vendor_string, |
| 1237 | SEGOFF(get_global_seg(), (u32)VBE_VENDOR_STRING)); |
| 1238 | SET_FARVAR(seg, info->oem_product_string, |
| 1239 | SEGOFF(get_global_seg(), (u32)VBE_PRODUCT_STRING)); |
| 1240 | SET_FARVAR(seg, info->oem_revision_string, |
| 1241 | SEGOFF(get_global_seg(), (u32)VBE_REVISION_STRING)); |
| 1242 | |
| 1243 | /* Fill list of modes */ |
| 1244 | vbe_list_modes(seg, regs->di + 32); |
| 1245 | |
| 1246 | regs->al = regs->ah; /* 0x4F, Function supported */ |
| 1247 | regs->ah = 0x0; /* 0x0, Function call successful */ |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 1248 | } |
| 1249 | |
| 1250 | static void |
| 1251 | handle_104f01(struct bregs *regs) |
| 1252 | { |
Julian Pidancet | 87879e2 | 2011-12-19 05:08:00 +0000 | [diff] [blame] | 1253 | u16 seg = regs->es; |
| 1254 | struct vbe_mode_info *info = (void*)(regs->di+0); |
| 1255 | u16 mode = regs->cx; |
| 1256 | struct vbe_modeinfo modeinfo; |
| 1257 | int rc; |
| 1258 | |
| 1259 | dprintf(1, "VBE mode info request: %x\n", mode); |
| 1260 | |
| 1261 | rc = vbe_mode_info(mode, &modeinfo); |
| 1262 | if (rc) { |
| 1263 | dprintf(1, "VBE mode %x not found\n", mode); |
| 1264 | regs->ax = 0x100; |
| 1265 | return; |
| 1266 | } |
| 1267 | |
| 1268 | u16 mode_attr = VBE_MODE_ATTRIBUTE_SUPPORTED | |
| 1269 | VBE_MODE_ATTRIBUTE_EXTENDED_INFORMATION_AVAILABLE | |
| 1270 | VBE_MODE_ATTRIBUTE_COLOR_MODE | |
| 1271 | VBE_MODE_ATTRIBUTE_GRAPHICS_MODE; |
| 1272 | if (modeinfo.depth == 4) |
| 1273 | mode_attr |= VBE_MODE_ATTRIBUTE_TTY_BIOS_SUPPORT; |
| 1274 | else |
| 1275 | mode_attr |= VBE_MODE_ATTRIBUTE_LINEAR_FRAME_BUFFER_MODE; |
| 1276 | SET_FARVAR(seg, info->mode_attributes, mode_attr); |
| 1277 | SET_FARVAR(seg, info->winA_attributes, |
| 1278 | VBE_WINDOW_ATTRIBUTE_RELOCATABLE | |
| 1279 | VBE_WINDOW_ATTRIBUTE_READABLE | |
| 1280 | VBE_WINDOW_ATTRIBUTE_WRITEABLE); |
| 1281 | SET_FARVAR(seg, info->winB_attributes, 0); |
| 1282 | SET_FARVAR(seg, info->win_granularity, 64); /* Bank size 64K */ |
| 1283 | SET_FARVAR(seg, info->win_size, 64); /* Bank size 64K */ |
| 1284 | SET_FARVAR(seg, info->winA_seg, 0xA000); |
| 1285 | SET_FARVAR(seg, info->winB_seg, 0x0); |
| 1286 | SET_FARVAR(seg, info->win_func_ptr, 0x0); |
| 1287 | SET_FARVAR(seg, info->bytes_per_scanline, modeinfo.linesize); |
| 1288 | SET_FARVAR(seg, info->xres, modeinfo.width); |
| 1289 | SET_FARVAR(seg, info->yres, modeinfo.height); |
| 1290 | SET_FARVAR(seg, info->xcharsize, 8); |
| 1291 | SET_FARVAR(seg, info->ycharsize, 16); |
| 1292 | if (modeinfo.depth == 4) |
| 1293 | SET_FARVAR(seg, info->planes, 4); |
| 1294 | else |
| 1295 | SET_FARVAR(seg, info->planes, 1); |
| 1296 | SET_FARVAR(seg, info->bits_per_pixel, modeinfo.depth); |
| 1297 | SET_FARVAR(seg, info->banks, |
| 1298 | (modeinfo.linesize * modeinfo.height + 65535) / 65536); |
| 1299 | if (modeinfo.depth == 4) |
| 1300 | SET_FARVAR(seg, info->mem_model, VBE_MEMORYMODEL_PLANAR); |
| 1301 | else if (modeinfo.depth == 8) |
| 1302 | SET_FARVAR(seg, info->mem_model, VBE_MEMORYMODEL_PACKED_PIXEL); |
| 1303 | else |
| 1304 | SET_FARVAR(seg, info->mem_model, VBE_MEMORYMODEL_DIRECT_COLOR); |
| 1305 | SET_FARVAR(seg, info->bank_size, 0); |
| 1306 | u32 pages = modeinfo.vram_size / (modeinfo.height * modeinfo.linesize); |
| 1307 | if (modeinfo.depth == 4) |
| 1308 | SET_FARVAR(seg, info->pages, (pages / 4) - 1); |
| 1309 | else |
| 1310 | SET_FARVAR(seg, info->pages, pages - 1); |
| 1311 | SET_FARVAR(seg, info->reserved0, 1); |
| 1312 | |
| 1313 | u8 r_size, r_pos, g_size, g_pos, b_size, b_pos, a_size, a_pos; |
| 1314 | |
| 1315 | switch (modeinfo.depth) { |
| 1316 | case 15: r_size = 5; r_pos = 10; g_size = 5; g_pos = 5; |
| 1317 | b_size = 5; b_pos = 0; a_size = 1; a_pos = 15; break; |
| 1318 | case 16: r_size = 5; r_pos = 11; g_size = 6; g_pos = 5; |
| 1319 | b_size = 5; b_pos = 0; a_size = 0; a_pos = 0; break; |
| 1320 | case 24: r_size = 8; r_pos = 16; g_size = 8; g_pos = 8; |
| 1321 | b_size = 8; b_pos = 0; a_size = 0; a_pos = 0; break; |
| 1322 | case 32: r_size = 8; r_pos = 16; g_size = 8; g_pos = 8; |
| 1323 | b_size = 8; b_pos = 0; a_size = 8; a_pos = 24; break; |
| 1324 | default: r_size = 0; r_pos = 0; g_size = 0; g_pos = 0; |
| 1325 | b_size = 0; b_pos = 0; a_size = 0; a_pos = 0; break; |
| 1326 | } |
| 1327 | |
| 1328 | SET_FARVAR(seg, info->red_size, r_size); |
| 1329 | SET_FARVAR(seg, info->red_pos, r_pos); |
| 1330 | SET_FARVAR(seg, info->green_size, g_size); |
| 1331 | SET_FARVAR(seg, info->green_pos, g_pos); |
| 1332 | SET_FARVAR(seg, info->blue_size, b_size); |
| 1333 | SET_FARVAR(seg, info->blue_pos, b_pos); |
| 1334 | SET_FARVAR(seg, info->alpha_size, a_size); |
| 1335 | SET_FARVAR(seg, info->alpha_pos, a_pos); |
| 1336 | |
| 1337 | if (modeinfo.depth == 32) |
| 1338 | SET_FARVAR(seg, info->directcolor_info, |
| 1339 | VBE_DIRECTCOLOR_RESERVED_BITS_AVAILABLE); |
| 1340 | else |
| 1341 | SET_FARVAR(seg, info->directcolor_info, 0); |
| 1342 | |
| 1343 | if (modeinfo.depth > 4) |
| 1344 | SET_FARVAR(seg, info->phys_base, modeinfo.phys_base); |
| 1345 | else |
| 1346 | SET_FARVAR(seg, info->phys_base, 0); |
| 1347 | |
| 1348 | SET_FARVAR(seg, info->reserved1, 0); |
| 1349 | SET_FARVAR(seg, info->reserved2, 0); |
| 1350 | SET_FARVAR(seg, info->linear_bytes_per_scanline, modeinfo.linesize); |
| 1351 | SET_FARVAR(seg, info->bank_pages, 0); |
| 1352 | SET_FARVAR(seg, info->linear_pages, 0); |
| 1353 | SET_FARVAR(seg, info->linear_red_size, r_size); |
| 1354 | SET_FARVAR(seg, info->linear_red_pos, r_pos); |
| 1355 | SET_FARVAR(seg, info->linear_green_size, g_size); |
| 1356 | SET_FARVAR(seg, info->linear_green_pos, g_pos); |
| 1357 | SET_FARVAR(seg, info->linear_blue_size, b_size); |
| 1358 | SET_FARVAR(seg, info->linear_blue_pos, b_pos); |
| 1359 | SET_FARVAR(seg, info->linear_alpha_size, a_size); |
| 1360 | SET_FARVAR(seg, info->linear_alpha_pos, a_pos); |
| 1361 | SET_FARVAR(seg, info->pixclock_max, 0); |
| 1362 | |
| 1363 | regs->al = regs->ah; /* 0x4F, Function supported */ |
| 1364 | regs->ah = 0x0; /* 0x0, Function call successful */ |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 1365 | } |
| 1366 | |
| 1367 | static void |
| 1368 | handle_104f02(struct bregs *regs) |
| 1369 | { |
Julian Pidancet | 87879e2 | 2011-12-19 05:08:00 +0000 | [diff] [blame] | 1370 | //u16 seg = regs->es; |
| 1371 | //struct vbe_crtc_info *crtc_info = (void*)(regs->di+0); |
| 1372 | u16 mode = regs->bx; |
| 1373 | struct vbe_modeinfo modeinfo; |
| 1374 | int rc; |
| 1375 | |
| 1376 | dprintf(1, "VBE mode set: %x\n", mode); |
| 1377 | |
| 1378 | if (mode < 0x100) { /* VGA */ |
| 1379 | dprintf(1, "set VGA mode %x\n", mode); |
| 1380 | |
| 1381 | vbe_hires_enable(0); |
| 1382 | vga_set_mode(mode, 0); |
| 1383 | } else { /* VBE */ |
| 1384 | rc = vbe_mode_info(mode & 0x1ff, &modeinfo); |
| 1385 | if (rc) { |
| 1386 | dprintf(1, "VBE mode %x not found\n", mode & 0x1ff); |
| 1387 | regs->ax = 0x100; |
| 1388 | return; |
| 1389 | } |
| 1390 | vbe_hires_enable(1); |
| 1391 | vbe_set_mode(mode & 0x1ff, &modeinfo); |
| 1392 | |
| 1393 | if (mode & 0x4000) { |
| 1394 | /* Linear frame buffer */ |
| 1395 | /* XXX: ??? */ |
| 1396 | } |
| 1397 | if (!(mode & 0x8000)) { |
| 1398 | vbe_clear_scr(); |
| 1399 | } |
| 1400 | } |
| 1401 | |
| 1402 | regs->al = regs->ah; /* 0x4F, Function supported */ |
| 1403 | regs->ah = 0x0; /* 0x0, Function call successful */ |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 1404 | } |
| 1405 | |
| 1406 | static void |
| 1407 | handle_104f03(struct bregs *regs) |
| 1408 | { |
Julian Pidancet | 87879e2 | 2011-12-19 05:08:00 +0000 | [diff] [blame] | 1409 | if (!vbe_hires_enabled()) { |
| 1410 | regs->bx = GET_BDA(video_mode); |
| 1411 | } else { |
| 1412 | regs->bx = vbe_curr_mode(); |
| 1413 | } |
| 1414 | |
| 1415 | dprintf(1, "VBE current mode=%x\n", regs->bx); |
| 1416 | |
| 1417 | regs->al = regs->ah; /* 0x4F, Function supported */ |
| 1418 | regs->ah = 0x0; /* 0x0, Function call successful */ |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 1419 | } |
| 1420 | |
| 1421 | static void |
| 1422 | handle_104f04(struct bregs *regs) |
| 1423 | { |
Julian Pidancet | 87879e2 | 2011-12-19 05:08:00 +0000 | [diff] [blame] | 1424 | debug_enter(regs, DEBUG_VGA_10); |
| 1425 | regs->ax = 0x0100; |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 1426 | } |
| 1427 | |
| 1428 | static void |
| 1429 | handle_104f05(struct bregs *regs) |
| 1430 | { |
Julian Pidancet | 87879e2 | 2011-12-19 05:08:00 +0000 | [diff] [blame] | 1431 | debug_enter(regs, DEBUG_VGA_10); |
| 1432 | regs->ax = 0x0100; |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 1433 | } |
| 1434 | |
| 1435 | static void |
| 1436 | handle_104f06(struct bregs *regs) |
| 1437 | { |
Julian Pidancet | 87879e2 | 2011-12-19 05:08:00 +0000 | [diff] [blame] | 1438 | debug_enter(regs, DEBUG_VGA_10); |
| 1439 | regs->ax = 0x0100; |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 1440 | } |
| 1441 | |
| 1442 | static void |
| 1443 | handle_104f07(struct bregs *regs) |
| 1444 | { |
Julian Pidancet | 87879e2 | 2011-12-19 05:08:00 +0000 | [diff] [blame] | 1445 | debug_enter(regs, DEBUG_VGA_10); |
| 1446 | regs->ax = 0x0100; |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 1447 | } |
| 1448 | |
| 1449 | static void |
| 1450 | handle_104f08(struct bregs *regs) |
| 1451 | { |
Julian Pidancet | 87879e2 | 2011-12-19 05:08:00 +0000 | [diff] [blame] | 1452 | debug_enter(regs, DEBUG_VGA_10); |
| 1453 | regs->ax = 0x0100; |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 1454 | } |
| 1455 | |
| 1456 | static void |
| 1457 | handle_104f0a(struct bregs *regs) |
| 1458 | { |
Julian Pidancet | 87879e2 | 2011-12-19 05:08:00 +0000 | [diff] [blame] | 1459 | debug_enter(regs, DEBUG_VGA_10); |
| 1460 | regs->ax = 0x0100; |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 1461 | } |
| 1462 | |
| 1463 | static void |
| 1464 | handle_104fXX(struct bregs *regs) |
| 1465 | { |
| 1466 | debug_stub(regs); |
| 1467 | regs->ax = 0x0100; |
| 1468 | } |
| 1469 | |
| 1470 | static void |
| 1471 | handle_104f(struct bregs *regs) |
| 1472 | { |
Julian Pidancet | 87879e2 | 2011-12-19 05:08:00 +0000 | [diff] [blame] | 1473 | if (!vbe_enabled()) { |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 1474 | handle_104fXX(regs); |
| 1475 | return; |
| 1476 | } |
| 1477 | |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 1478 | switch (regs->al) { |
| 1479 | case 0x00: handle_104f00(regs); break; |
| 1480 | case 0x01: handle_104f01(regs); break; |
| 1481 | case 0x02: handle_104f02(regs); break; |
| 1482 | case 0x03: handle_104f03(regs); break; |
| 1483 | case 0x04: handle_104f04(regs); break; |
| 1484 | case 0x05: handle_104f05(regs); break; |
| 1485 | case 0x06: handle_104f06(regs); break; |
| 1486 | case 0x07: handle_104f07(regs); break; |
| 1487 | case 0x08: handle_104f08(regs); break; |
| 1488 | case 0x0a: handle_104f0a(regs); break; |
| 1489 | default: handle_104fXX(regs); break; |
| 1490 | } |
| 1491 | } |
| 1492 | |
| 1493 | |
| 1494 | static void |
| 1495 | handle_10XX(struct bregs *regs) |
| 1496 | { |
| 1497 | debug_stub(regs); |
| 1498 | } |
| 1499 | |
| 1500 | // INT 10h Video Support Service Entry Point |
| 1501 | void VISIBLE16 |
| 1502 | handle_10(struct bregs *regs) |
| 1503 | { |
| 1504 | debug_enter(regs, DEBUG_VGA_10); |
| 1505 | switch (regs->ah) { |
| 1506 | case 0x00: handle_1000(regs); break; |
| 1507 | case 0x01: handle_1001(regs); break; |
| 1508 | case 0x02: handle_1002(regs); break; |
| 1509 | case 0x03: handle_1003(regs); break; |
| 1510 | case 0x04: handle_1004(regs); break; |
| 1511 | case 0x05: handle_1005(regs); break; |
| 1512 | case 0x06: handle_1006(regs); break; |
| 1513 | case 0x07: handle_1007(regs); break; |
| 1514 | case 0x08: handle_1008(regs); break; |
| 1515 | case 0x09: handle_1009(regs); break; |
| 1516 | case 0x0a: handle_100a(regs); break; |
| 1517 | case 0x0b: handle_100b(regs); break; |
| 1518 | case 0x0c: handle_100c(regs); break; |
| 1519 | case 0x0d: handle_100d(regs); break; |
| 1520 | case 0x0e: handle_100e(regs); break; |
| 1521 | case 0x0f: handle_100f(regs); break; |
| 1522 | case 0x10: handle_1010(regs); break; |
| 1523 | case 0x11: handle_1011(regs); break; |
| 1524 | case 0x12: handle_1012(regs); break; |
| 1525 | case 0x13: handle_1013(regs); break; |
| 1526 | case 0x1a: handle_101a(regs); break; |
| 1527 | case 0x1b: handle_101b(regs); break; |
| 1528 | case 0x1c: handle_101c(regs); break; |
| 1529 | case 0x4f: handle_104f(regs); break; |
| 1530 | default: handle_10XX(regs); break; |
| 1531 | } |
| 1532 | } |
| 1533 | |
| 1534 | |
| 1535 | /**************************************************************** |
| 1536 | * VGA post |
| 1537 | ****************************************************************/ |
| 1538 | |
| 1539 | static void |
Kevin O'Connor | 1ca05b0 | 2010-01-03 17:43:37 -0500 | [diff] [blame] | 1540 | init_bios_area(void) |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 1541 | { |
| 1542 | // init detected hardware BIOS Area |
| 1543 | // set 80x25 color (not clear from RBIL but usual) |
| 1544 | u16 eqf = GET_BDA(equipment_list_flags); |
| 1545 | SET_BDA(equipment_list_flags, (eqf & 0xffcf) | 0x20); |
| 1546 | |
| 1547 | // Just for the first int10 find its children |
| 1548 | |
| 1549 | // the default char height |
| 1550 | SET_BDA(char_height, 0x10); |
| 1551 | |
| 1552 | // Clear the screen |
| 1553 | SET_BDA(video_ctl, 0x60); |
| 1554 | |
| 1555 | // Set the basic screen we have |
| 1556 | SET_BDA(video_switches, 0xf9); |
| 1557 | |
| 1558 | // Set the basic modeset options |
| 1559 | SET_BDA(modeset_ctl, 0x51); |
| 1560 | |
| 1561 | // Set the default MSR |
| 1562 | SET_BDA(video_msr, 0x09); |
| 1563 | } |
| 1564 | |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 1565 | void VISIBLE16 |
| 1566 | vga_post(struct bregs *regs) |
| 1567 | { |
| 1568 | debug_enter(regs, DEBUG_VGA_POST); |
| 1569 | |
Kevin O'Connor | 8bc059e | 2009-05-17 21:19:36 -0400 | [diff] [blame] | 1570 | vgahw_init(); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 1571 | |
| 1572 | init_bios_area(); |
| 1573 | |
Julian Pidancet | 87879e2 | 2011-12-19 05:08:00 +0000 | [diff] [blame] | 1574 | vbe_init(regs->ah, regs->al); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 1575 | |
| 1576 | extern void entry_10(void); |
Kevin O'Connor | 9f98542 | 2009-09-09 11:34:39 -0400 | [diff] [blame] | 1577 | SET_IVT(0x10, SEGOFF(get_global_seg(), (u32)entry_10)); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 1578 | |
Julian Pidancet | 677631f | 2011-12-19 05:07:53 +0000 | [diff] [blame] | 1579 | if (CONFIG_VGA_CIRRUS) |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 1580 | cirrus_init(); |
| 1581 | |
| 1582 | // XXX - clear screen and display info |
| 1583 | |
Kevin O'Connor | f376037 | 2011-12-23 22:41:08 -0500 | [diff] [blame^] | 1584 | build_video_param(); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 1585 | |
| 1586 | // Fixup checksum |
| 1587 | extern u8 _rom_header_size, _rom_header_checksum; |
| 1588 | SET_VGA(_rom_header_checksum, 0); |
Kevin O'Connor | d113a99 | 2009-05-16 21:05:02 -0400 | [diff] [blame] | 1589 | u8 sum = -checksum_far(get_global_seg(), 0, _rom_header_size * 512); |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 1590 | SET_VGA(_rom_header_checksum, sum); |
| 1591 | } |