blob: d230d5cbead32a6d5949ab01b8adc4fad0634d36 [file] [log] [blame]
Angel Ponsc74dae92020-04-02 23:48:16 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Stefan Reinauer38cd29e2009-08-11 21:28:25 +00002
Kyösti Mälkki13f66502019-03-03 08:01:05 +02003#include <device/mmio.h>
Edward O'Callaghan91810dd2014-07-30 13:53:04 +10004#include <arch/interrupt.h>
Stefan Reinauer42dc7212009-10-24 00:47:07 +00005#include <arch/registers.h>
Edward O'Callaghan91810dd2014-07-30 13:53:04 +10006#include <boot/coreboot_tables.h>
Stefan Reinauer38cd29e2009-08-11 21:28:25 +00007#include <console/console.h>
Stefan Reinauerc1efb902011-10-12 14:30:59 -07008#include <delay.h>
Edward O'Callaghan91810dd2014-07-30 13:53:04 +10009#include <device/pci.h>
10#include <device/pci_ids.h>
Edward O'Callaghan91810dd2014-07-30 13:53:04 +100011#include <pc80/i8259.h>
zbao741a0dd2015-06-25 16:58:53 -040012#include <pc80/i8254.h>
Edward O'Callaghan91810dd2014-07-30 13:53:04 +100013#include <string.h>
14#include <vbe.h>
15
Patrick Georgi199b09c2012-11-22 12:46:12 +010016/* we use x86emu's register file representation */
17#include <x86emu/regs.h>
Edward O'Callaghan91810dd2014-07-30 13:53:04 +100018
19#include "x86.h"
Patrick Georgi199b09c2012-11-22 12:46:12 +010020
Subrata Banika2602152019-07-12 17:41:43 +053021typedef struct {
22 char signature[4];
23 u16 version;
24 u8 *oem_string_ptr;
25 u32 capabilities;
26 u32 video_mode_ptr;
27 u16 total_memory;
28 char reserved[236];
29} __packed vbe_info_block;
30
Aaron Durbina146d582013-02-08 16:56:51 -060031/* The following symbols cannot be used directly. They need to be fixed up
32 * to point to the correct address location after the code has been copied
33 * to REALMODE_BASE. Absolute symbols are not used because those symbols are
34 * relocated when a relocatable ramstage is enabled.
35 */
36extern unsigned char __realmode_call, __realmode_interrupt;
37extern unsigned char __realmode_buffer;
38
39#define PTR_TO_REAL_MODE(sym)\
40 (void *)(REALMODE_BASE + ((char *)&(sym) - (char *)&__realmode_code))
41
Patrick Georgi199b09c2012-11-22 12:46:12 +010042/* to have a common register file for interrupt handlers */
43X86EMU_sysEnv _X86EMU_env;
Stefan Reinauer38cd29e2009-08-11 21:28:25 +000044
Subrata Banikc76bfac2019-07-12 16:43:17 +053045unsigned int (*realmode_call)(u32 addr, u32 eax, u32 ebx, u32 ecx, u32 edx,
Aaron Durbina146d582013-02-08 16:56:51 -060046 u32 esi, u32 edi) asmlinkage;
Stefan Reinauer841af5e2010-05-11 15:39:20 +000047
Subrata Banikc76bfac2019-07-12 16:43:17 +053048unsigned int (*realmode_interrupt)(u32 intno, u32 eax, u32 ebx, u32 ecx,
49 u32 edx, u32 esi, u32 edi) asmlinkage;
Aaron Durbina146d582013-02-08 16:56:51 -060050
51static void setup_realmode_code(void)
52{
53 memcpy(REALMODE_BASE, &__realmode_code, __realmode_code_size);
54
55 /* Ensure the global pointers are relocated properly. */
56 realmode_call = PTR_TO_REAL_MODE(__realmode_call);
57 realmode_interrupt = PTR_TO_REAL_MODE(__realmode_interrupt);
58
59 printk(BIOS_SPEW, "Real mode stub @%p: %d bytes\n", REALMODE_BASE,
60 __realmode_code_size);
61}
Stefan Reinauer841af5e2010-05-11 15:39:20 +000062
Stefan Reinauer841af5e2010-05-11 15:39:20 +000063static void setup_rombios(void)
64{
65 const char date[] = "06/11/99";
66 memcpy((void *)0xffff5, &date, 8);
67
68 const char ident[] = "PCI_ISA";
69 memcpy((void *)0xfffd9, &ident, 7);
70
71 /* system model: IBM-AT */
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080072 write8((void *)0xffffe, 0xfc);
Stefan Reinauer841af5e2010-05-11 15:39:20 +000073}
Stefan Reinauer38cd29e2009-08-11 21:28:25 +000074
Patrick Georgi199b09c2012-11-22 12:46:12 +010075static int (*intXX_handler[256])(void) = { NULL };
Stefan Reinauer38cd29e2009-08-11 21:28:25 +000076
Patrick Georgi199b09c2012-11-22 12:46:12 +010077static int intXX_exception_handler(void)
Stefan Reinauer38cd29e2009-08-11 21:28:25 +000078{
Patrick Georgi199b09c2012-11-22 12:46:12 +010079 /* compatibility shim */
80 struct eregs reg_info = {
81 .eax=X86_EAX,
82 .ecx=X86_ECX,
83 .edx=X86_EDX,
84 .ebx=X86_EBX,
85 .esp=X86_ESP,
86 .ebp=X86_EBP,
87 .esi=X86_ESI,
88 .edi=X86_EDI,
89 .vector=M.x86.intno,
90 .error_code=0, // FIXME: fill in
91 .eip=X86_EIP,
92 .cs=X86_CS,
93 .eflags=X86_EFLAGS
94 };
95 struct eregs *regs = &reg_info;
96
Stefan Reinauer14e22772010-04-27 06:56:47 +000097 printk(BIOS_INFO, "Oops, exception %d while executing option rom\n",
Stefan Reinauer38cd29e2009-08-11 21:28:25 +000098 regs->vector);
Stefan Reinauer14e22772010-04-27 06:56:47 +000099 x86_exception(regs); // Call coreboot exception handler
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000100
Stefan Reinauerb6b88712011-10-12 14:35:54 -0700101 return 0; // Never really returns
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000102}
103
Patrick Georgi199b09c2012-11-22 12:46:12 +0100104static int intXX_unknown_handler(void)
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000105{
Myles Watsonf53eaa32010-09-09 14:42:58 +0000106 printk(BIOS_INFO, "Unsupported software interrupt #0x%x eax 0x%x\n",
Patrick Georgi199b09c2012-11-22 12:46:12 +0100107 M.x86.intno, X86_EAX);
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000108
109 return -1;
110}
111
Libra Lic1436932009-12-23 19:16:47 +0000112/* setup interrupt handlers for mainboard */
Aaron Durbin4d7a4c52013-04-23 10:25:34 -0500113void mainboard_interrupt_handlers(int intXX, int (*intXX_func)(void))
Libra Lic1436932009-12-23 19:16:47 +0000114{
115 intXX_handler[intXX] = intXX_func;
116}
117
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000118static void setup_interrupt_handlers(void)
119{
120 int i;
121
Stefan Reinauer14e22772010-04-27 06:56:47 +0000122 /* The first 16 intXX functions are not BIOS services,
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000123 * but the CPU-generated exceptions ("hardware interrupts")
124 */
125 for (i = 0; i < 0x10; i++)
126 intXX_handler[i] = &intXX_exception_handler;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000127
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000128 /* Mark all other intXX calls as unknown first */
129 for (i = 0x10; i < 0x100; i++)
Libra Lic1436932009-12-23 19:16:47 +0000130 {
131 /* If the mainboard_interrupt_handler isn't called first.
132 */
Elyes HAOUAS5ba154a2020-08-04 13:27:52 +0200133 if (!intXX_handler[i])
Libra Lic1436932009-12-23 19:16:47 +0000134 {
135 /* Now set the default functions that are actually
Stefan Reinauerc1efb902011-10-12 14:30:59 -0700136 * needed to initialize the option roms. This is
137 * very slick, as it allows us to implement mainboard
138 * specific interrupt handlers, such as the int15.
Libra Lic1436932009-12-23 19:16:47 +0000139 */
140 switch (i) {
Myles Watsonf53eaa32010-09-09 14:42:58 +0000141 case 0x10:
142 intXX_handler[0x10] = &int10_handler;
143 break;
Libra Lic1436932009-12-23 19:16:47 +0000144 case 0x12:
145 intXX_handler[0x12] = &int12_handler;
146 break;
Myles Watsonf53eaa32010-09-09 14:42:58 +0000147 case 0x16:
148 intXX_handler[0x16] = &int16_handler;
149 break;
Libra Lic1436932009-12-23 19:16:47 +0000150 case 0x1a:
151 intXX_handler[0x1a] = &int1a_handler;
152 break;
153 default:
154 intXX_handler[i] = &intXX_unknown_handler;
155 break;
156 }
157 }
158 }
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000159}
160
161static void write_idt_stub(void *target, u8 intnum)
162{
163 unsigned char *codeptr;
164 codeptr = (unsigned char *) target;
Aaron Durbina146d582013-02-08 16:56:51 -0600165 memcpy(codeptr, &__idt_handler, __idt_handler_size);
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000166 codeptr[3] = intnum; /* modify int# in the code stub. */
167}
168
169static void setup_realmode_idt(void)
170{
171 struct realmode_idt *idts = (struct realmode_idt *) 0;
172 int i;
173
174 /* Copy IDT stub code for each interrupt. This might seem wasteful
175 * but it is really simple
176 */
177 for (i = 0; i < 256; i++) {
178 idts[i].cs = 0;
Aaron Durbina146d582013-02-08 16:56:51 -0600179 idts[i].offset = 0x1000 + (i * __idt_handler_size);
Stefan Reinauer83fa1692015-06-18 22:01:07 -0700180 write_idt_stub((void *)((uintptr_t)idts[i].offset), i);
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000181 }
182
183 /* Many option ROMs use the hard coded interrupt entry points in the
Stefan Reinauer14e22772010-04-27 06:56:47 +0000184 * system bios. So install them at the known locations.
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000185 */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000186
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000187 /* int42 is the relocated int10 */
Stefan Reinauer714e2a12010-04-24 23:15:23 +0000188 write_idt_stub((void *)0xff065, 0x42);
Stefan Reinauer841af5e2010-05-11 15:39:20 +0000189 /* BIOS Int 11 Handler F000:F84D */
190 write_idt_stub((void *)0xff84d, 0x11);
191 /* BIOS Int 12 Handler F000:F841 */
192 write_idt_stub((void *)0xff841, 0x12);
193 /* BIOS Int 13 Handler F000:EC59 */
194 write_idt_stub((void *)0xfec59, 0x13);
195 /* BIOS Int 14 Handler F000:E739 */
196 write_idt_stub((void *)0xfe739, 0x14);
197 /* BIOS Int 15 Handler F000:F859 */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000198 write_idt_stub((void *)0xff859, 0x15);
Stefan Reinauer841af5e2010-05-11 15:39:20 +0000199 /* BIOS Int 16 Handler F000:E82E */
200 write_idt_stub((void *)0xfe82e, 0x16);
201 /* BIOS Int 17 Handler F000:EFD2 */
202 write_idt_stub((void *)0xfefd2, 0x17);
203 /* ROM BIOS Int 1A Handler F000:FE6E */
204 write_idt_stub((void *)0xffe6e, 0x1a);
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000205}
206
Julius Wernercd49cce2019-03-05 16:53:33 -0800207#if CONFIG(FRAMEBUFFER_SET_VESA_MODE)
Johanna Schanderdb7a3ae2019-07-24 10:14:26 +0200208static vbe_mode_info_t mode_info;
Gabe Blackfb8632a2012-09-30 04:47:48 -0700209static int mode_info_valid;
210
Aaron Durbin57e15e62017-05-16 21:50:27 -0500211static int vbe_mode_info_valid(void)
Gabe Blackfb8632a2012-09-30 04:47:48 -0700212{
213 return mode_info_valid;
214}
215
Johanna Schanderdb7a3ae2019-07-24 10:14:26 +0200216const vbe_mode_info_t *vbe_mode_info(void)
217{
218 if (!mode_info_valid || !mode_info.vesa.phys_base_ptr)
219 return NULL;
220 return &mode_info;
221}
222
Subrata Banika2602152019-07-12 17:41:43 +0530223static int vbe_check_for_failure(int ah);
224
225static void vbe_get_ctrl_info(vbe_info_block *info)
226{
227 char *buffer = PTR_TO_REAL_MODE(__realmode_buffer);
228 u16 buffer_seg = (((unsigned long)buffer) >> 4) & 0xff00;
229 u16 buffer_adr = ((unsigned long)buffer) & 0xffff;
230 X86_EAX = realmode_interrupt(0x10, VESA_GET_INFO, 0x0000, 0x0000,
231 0x0000, buffer_seg, buffer_adr);
232 /* If the VBE function completed successfully, 0x0 is returned in AH */
233 if (X86_AH)
234 die("\nError: In %s function\n", __func__);
235 memcpy(info, buffer, sizeof(vbe_info_block));
236}
237
238static void vbe_oprom_list_supported_mode(uint16_t *video_mode_ptr)
239{
240 uint16_t mode;
241 printk(BIOS_DEBUG, "Supported Video Mode list for OpRom:\n");
242 do {
243 mode = *video_mode_ptr++;
244 if (mode != 0xffff)
245 printk(BIOS_DEBUG, "%x\n", mode);
246 } while (mode != 0xffff);
247}
248
249static void vbe_oprom_supported_mode_list(void)
250{
251 uint16_t segment, offset;
252 vbe_info_block info;
253
254 vbe_get_ctrl_info(&info);
255
256 offset = info.video_mode_ptr;
257 segment = info.video_mode_ptr >> 16;
258
259 vbe_oprom_list_supported_mode((uint16_t *)((segment << 4) + offset));
260}
Subrata Banikc76bfac2019-07-12 16:43:17 +0530261/*
262 * EAX register is used to indicate the completion status upon return from
263 * VBE function in real mode.
264 *
265 * If the VBE function completed successfully then 0x0 is returned in the AH
266 * register. Otherwise the AH register is set with the nature of the failure:
267 *
268 * AH == 0x00: Function call successful
269 * AH == 0x01: Function call failed
270 * AH == 0x02: Function is not supported in the current HW configuration
271 * AH == 0x03: Function call invalid in current video mode
272 *
273 * Return 0 on success else -1 for failure
274 */
275static int vbe_check_for_failure(int ah)
276{
277 int status;
278
279 switch (ah) {
280 case 0x0:
281 status = 0;
282 break;
283 case 1:
284 printk(BIOS_DEBUG, "VBE: Function call failed!\n");
285 status = -1;
286 break;
287 case 2:
288 printk(BIOS_DEBUG, "VBE: Function is not supported!\n");
289 status = -1;
290 break;
291 case 3:
292 default:
293 printk(BIOS_DEBUG, "VBE: Unsupported video mode %x!\n",
294 CONFIG_FRAMEBUFFER_VESA_MODE);
Subrata Banika2602152019-07-12 17:41:43 +0530295 vbe_oprom_supported_mode_list();
Subrata Banikc76bfac2019-07-12 16:43:17 +0530296 status = -1;
297 break;
298 }
299
300 return status;
301}
Gabe Blackfb8632a2012-09-30 04:47:48 -0700302static u8 vbe_get_mode_info(vbe_mode_info_t * mi)
Stefan Reinauerc1efb902011-10-12 14:30:59 -0700303{
Stefan Reinauer01c3de92012-08-29 09:28:52 -0700304 printk(BIOS_DEBUG, "VBE: Getting information about VESA mode %04x\n",
Gabe Blackfb8632a2012-09-30 04:47:48 -0700305 mi->video_mode);
Aaron Durbina146d582013-02-08 16:56:51 -0600306 char *buffer = PTR_TO_REAL_MODE(__realmode_buffer);
Stefan Reinauerc1efb902011-10-12 14:30:59 -0700307 u16 buffer_seg = (((unsigned long)buffer) >> 4) & 0xff00;
308 u16 buffer_adr = ((unsigned long)buffer) & 0xffff;
Subrata Banikc76bfac2019-07-12 16:43:17 +0530309 X86_EAX = realmode_interrupt(0x10, VESA_GET_MODE_INFO, 0x0000,
Gabe Blackfb8632a2012-09-30 04:47:48 -0700310 mi->video_mode, 0x0000, buffer_seg, buffer_adr);
Subrata Banikc76bfac2019-07-12 16:43:17 +0530311 if (vbe_check_for_failure(X86_AH))
312 die("\nError: In %s function\n", __func__);
Zhuo-Hao Lee29445dc2014-12-24 11:13:34 +0800313 memcpy(mi->mode_info_block, buffer, sizeof(mi->mode_info_block));
Gabe Blackfb8632a2012-09-30 04:47:48 -0700314 mode_info_valid = 1;
Stefan Reinauerc1efb902011-10-12 14:30:59 -0700315 return 0;
316}
317
Gabe Blackfb8632a2012-09-30 04:47:48 -0700318static u8 vbe_set_mode(vbe_mode_info_t * mi)
Stefan Reinauerc1efb902011-10-12 14:30:59 -0700319{
Gabe Blackfb8632a2012-09-30 04:47:48 -0700320 printk(BIOS_DEBUG, "VBE: Setting VESA mode %04x\n", mi->video_mode);
Stefan Reinauerc1efb902011-10-12 14:30:59 -0700321 // request linear framebuffer mode
Gabe Blackfb8632a2012-09-30 04:47:48 -0700322 mi->video_mode |= (1 << 14);
Stefan Reinauerc1efb902011-10-12 14:30:59 -0700323 // request clearing of framebuffer
Gabe Blackfb8632a2012-09-30 04:47:48 -0700324 mi->video_mode &= ~(1 << 15);
Subrata Banikc76bfac2019-07-12 16:43:17 +0530325 X86_EAX = realmode_interrupt(0x10, VESA_SET_MODE, mi->video_mode,
Stefan Reinauerc1efb902011-10-12 14:30:59 -0700326 0x0000, 0x0000, 0x0000, 0x0000);
Subrata Banikc76bfac2019-07-12 16:43:17 +0530327 if (vbe_check_for_failure(X86_AH))
328 die("\nError: In %s function\n", __func__);
Stefan Reinauerc1efb902011-10-12 14:30:59 -0700329 return 0;
330}
331
Stefan Reinauerc1efb902011-10-12 14:30:59 -0700332/* These two functions could probably even be generic between
333 * yabel and x86 native. TBD later.
334 */
335void vbe_set_graphics(void)
336{
337 mode_info.video_mode = (1 << 14) | CONFIG_FRAMEBUFFER_VESA_MODE;
338 vbe_get_mode_info(&mode_info);
339 unsigned char *framebuffer =
Stefan Reinauerb6b88712011-10-12 14:35:54 -0700340 (unsigned char *)mode_info.vesa.phys_base_ptr;
Stefan Reinauer01c3de92012-08-29 09:28:52 -0700341 printk(BIOS_DEBUG, "VBE: resolution: %dx%d@%d\n",
342 le16_to_cpu(mode_info.vesa.x_resolution),
343 le16_to_cpu(mode_info.vesa.y_resolution),
344 mode_info.vesa.bits_per_pixel);
Johanna Schanderdb7a3ae2019-07-24 10:14:26 +0200345
Stefan Reinauer01c3de92012-08-29 09:28:52 -0700346 printk(BIOS_DEBUG, "VBE: framebuffer: %p\n", framebuffer);
347 if (!framebuffer) {
348 printk(BIOS_DEBUG, "VBE: Mode does not support linear "
349 "framebuffer\n");
350 return;
351 }
352
Stefan Reinauerc1efb902011-10-12 14:30:59 -0700353 vbe_set_mode(&mode_info);
Stefan Reinauerc1efb902011-10-12 14:30:59 -0700354}
355
356void vbe_textmode_console(void)
357{
358 delay(2);
Subrata Banikc76bfac2019-07-12 16:43:17 +0530359 X86_EAX = realmode_interrupt(0x10, 0x0003, 0x0000, 0x0000,
Stefan Reinauerc1efb902011-10-12 14:30:59 -0700360 0x0000, 0x0000, 0x0000);
Subrata Banikc76bfac2019-07-12 16:43:17 +0530361 if (vbe_check_for_failure(X86_AH))
362 die("\nError: In %s function\n", __func__);
Stefan Reinauerc1efb902011-10-12 14:30:59 -0700363}
364
Aaron Durbinbdb5c8f2017-05-16 21:39:50 -0500365int fill_lb_framebuffer(struct lb_framebuffer *framebuffer)
Stefan Reinauerc1efb902011-10-12 14:30:59 -0700366{
Aaron Durbinbdb5c8f2017-05-16 21:39:50 -0500367 if (!vbe_mode_info_valid())
368 return -1;
369
Stefan Reinauerb6b88712011-10-12 14:35:54 -0700370 framebuffer->physical_address = mode_info.vesa.phys_base_ptr;
Stefan Reinauerc1efb902011-10-12 14:30:59 -0700371
372 framebuffer->x_resolution = le16_to_cpu(mode_info.vesa.x_resolution);
373 framebuffer->y_resolution = le16_to_cpu(mode_info.vesa.y_resolution);
374 framebuffer->bytes_per_line =
375 le16_to_cpu(mode_info.vesa.bytes_per_scanline);
376 framebuffer->bits_per_pixel = mode_info.vesa.bits_per_pixel;
377
378 framebuffer->red_mask_pos = mode_info.vesa.red_mask_pos;
379 framebuffer->red_mask_size = mode_info.vesa.red_mask_size;
380
381 framebuffer->green_mask_pos = mode_info.vesa.green_mask_pos;
382 framebuffer->green_mask_size = mode_info.vesa.green_mask_size;
383
384 framebuffer->blue_mask_pos = mode_info.vesa.blue_mask_pos;
385 framebuffer->blue_mask_size = mode_info.vesa.blue_mask_size;
386
387 framebuffer->reserved_mask_pos = mode_info.vesa.reserved_mask_pos;
388 framebuffer->reserved_mask_size = mode_info.vesa.reserved_mask_size;
Vladimir Serbinenkod7374512015-10-10 13:50:30 +0200389
Vladimir Serbinenkod7374512015-10-10 13:50:30 +0200390 return 0;
391}
392
Stefan Reinauerc1efb902011-10-12 14:30:59 -0700393#endif
394
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000395void run_bios(struct device *dev, unsigned long addr)
396{
Stefan Reinauer841af5e2010-05-11 15:39:20 +0000397 u32 num_dev = (dev->bus->secondary << 8) | dev->path.pci.devfn;
398
Stefan Reinauerb6b88712011-10-12 14:35:54 -0700399 /* Setting up required hardware.
400 * Removing this will cause random illegal instruction exceptions
401 * in some option roms.
402 */
403 setup_i8259();
zbao741a0dd2015-06-25 16:58:53 -0400404 setup_i8254();
Stefan Reinauerb6b88712011-10-12 14:35:54 -0700405
Stefan Reinauer841af5e2010-05-11 15:39:20 +0000406 /* Set up some legacy information in the F segment */
407 setup_rombios();
Libra Lic1436932009-12-23 19:16:47 +0000408
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000409 /* Set up C interrupt handlers */
410 setup_interrupt_handlers();
411
Stefan Reinauer841af5e2010-05-11 15:39:20 +0000412 /* Set up real-mode IDT */
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000413 setup_realmode_idt();
414
Aaron Durbina146d582013-02-08 16:56:51 -0600415 /* Make sure the code is placed. */
416 setup_realmode_code();
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000417
418 printk(BIOS_DEBUG, "Calling Option ROM...\n");
Stefan Reinauer841af5e2010-05-11 15:39:20 +0000419 /* TODO ES:DI Pointer to System BIOS PnP Installation Check Structure */
420 /* Option ROM entry point is at OPROM start + 3 */
421 realmode_call(addr + 0x0003, num_dev, 0xffff, 0x0000, 0xffff, 0x0, 0x0);
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000422 printk(BIOS_DEBUG, "... Option ROM returned.\n");
Stefan Reinauerc1efb902011-10-12 14:30:59 -0700423
Julius Wernercd49cce2019-03-05 16:53:33 -0800424#if CONFIG(FRAMEBUFFER_SET_VESA_MODE)
Stefan Reinauer22ae2b92013-02-08 08:48:20 -0800425 if ((dev->class >> 8)== PCI_CLASS_DISPLAY_VGA)
426 vbe_set_graphics();
Stefan Reinauerc1efb902011-10-12 14:30:59 -0700427#endif
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000428}
429
Stefan Reinauer14e22772010-04-27 06:56:47 +0000430/* interrupt_handler() is called from assembler code only,
Stefan Reinauer9839cbd2010-04-21 20:06:10 +0000431 * so there is no use in putting the prototype into a header file.
432 */
Stefan Reinauer399486e2012-12-06 13:54:29 -0800433int asmlinkage interrupt_handler(u32 intnumber,
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000434 u32 gsfs, u32 dses,
435 u32 edi, u32 esi,
436 u32 ebp, u32 esp,
437 u32 ebx, u32 edx,
438 u32 ecx, u32 eax,
Uwe Hermann312673c2009-10-27 21:49:33 +0000439 u32 cs_ip, u16 stackflags);
440
Stefan Reinauer399486e2012-12-06 13:54:29 -0800441int asmlinkage interrupt_handler(u32 intnumber,
Uwe Hermann312673c2009-10-27 21:49:33 +0000442 u32 gsfs, u32 dses,
443 u32 edi, u32 esi,
444 u32 ebp, u32 esp,
445 u32 ebx, u32 edx,
446 u32 ecx, u32 eax,
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000447 u32 cs_ip, u16 stackflags)
448{
449 u32 ip;
450 u32 cs;
451 u32 flags;
Patrick Georgi503af722012-11-22 10:48:18 +0100452 int ret = 0;
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000453
454 ip = cs_ip & 0xffff;
455 cs = cs_ip >> 16;
456 flags = stackflags;
457
Julius Wernercd49cce2019-03-05 16:53:33 -0800458#if CONFIG(REALMODE_DEBUG)
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000459 printk(BIOS_DEBUG, "oprom: INT# 0x%x\n", intnumber);
460 printk(BIOS_DEBUG, "oprom: eax: %08x ebx: %08x ecx: %08x edx: %08x\n",
461 eax, ebx, ecx, edx);
462 printk(BIOS_DEBUG, "oprom: ebp: %08x esp: %08x edi: %08x esi: %08x\n",
463 ebp, esp, edi, esi);
464 printk(BIOS_DEBUG, "oprom: ip: %04x cs: %04x flags: %08x\n",
465 ip, cs, flags);
Myles Watson6c9bc012010-09-07 22:30:15 +0000466#endif
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000467
Patrick Georgi199b09c2012-11-22 12:46:12 +0100468 // Fetch arguments from the stack and put them to a place
469 // suitable for the interrupt handlers
470 X86_EAX = eax;
471 X86_ECX = ecx;
472 X86_EDX = edx;
473 X86_EBX = ebx;
474 X86_ESP = esp;
475 X86_EBP = ebp;
476 X86_ESI = esi;
477 X86_EDI = edi;
478 M.x86.intno = intnumber;
479 /* TODO: error_code must be stored somewhere */
480 X86_EIP = ip;
481 X86_CS = cs;
482 X86_EFLAGS = flags;
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000483
484 // Call the interrupt handler for this int#
Patrick Georgi199b09c2012-11-22 12:46:12 +0100485 ret = intXX_handler[intnumber]();
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000486
487 // Put registers back on the stack. The assembler code
488 // will later pop them.
489 // What happens here is that we force (volatile!) changing
490 // the values of the parameters of this function. We do this
Stefan Reinauer14e22772010-04-27 06:56:47 +0000491 // because we know that they stay alive on the stack after
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000492 // we leave this function. Don't say this is bollocks.
Patrick Georgi199b09c2012-11-22 12:46:12 +0100493 *(volatile u32 *)&eax = X86_EAX;
494 *(volatile u32 *)&ecx = X86_ECX;
495 *(volatile u32 *)&edx = X86_EDX;
496 *(volatile u32 *)&ebx = X86_EBX;
497 *(volatile u32 *)&esi = X86_ESI;
498 *(volatile u32 *)&edi = X86_EDI;
499 flags = X86_EFLAGS;
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000500
Patrick Georgi503af722012-11-22 10:48:18 +0100501 /* Pass success or error back to our caller via the CARRY flag */
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000502 if (ret) {
Patrick Georgi503af722012-11-22 10:48:18 +0100503 flags &= ~1; // no error: clear carry
504 }else{
Stefan Reinauerf75b19a2010-04-22 18:15:32 +0000505 printk(BIOS_DEBUG,"int%02x call returned error.\n", intnumber);
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000506 flags |= 1; // error: set carry
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000507 }
508 *(volatile u16 *)&stackflags = flags;
509
Patrick Georgi503af722012-11-22 10:48:18 +0100510 /* The assembler code doesn't actually care for the return value,
511 * but keep it around so its expectations are met */
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000512 return ret;
513}