blob: 67e550cd5eaae96ccc628fa599492d2c2c68bf33 [file] [log] [blame]
Stefan Reinauer38cd29e2009-08-11 21:28:25 +00001/*
2 * This file is part of the coreboot project.
3 *
Stefan Reinauer9839cbd2010-04-21 20:06:10 +00004 * Copyright (C) 2007 Advanced Micro Devices, Inc.
5 * Copyright (C) 2009-2010 coresystems GmbH
Stefan Reinauer38cd29e2009-08-11 21:28:25 +00006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
Stefan Reinauer38cd29e2009-08-11 21:28:25 +000015 */
16
Kyösti Mälkki13f66502019-03-03 08:01:05 +020017#include <device/mmio.h>
Edward O'Callaghan91810dd2014-07-30 13:53:04 +100018#include <arch/interrupt.h>
Stefan Reinauer42dc7212009-10-24 00:47:07 +000019#include <arch/registers.h>
Edward O'Callaghan91810dd2014-07-30 13:53:04 +100020#include <boot/coreboot_tables.h>
Edward O'Callaghan7842eb22014-07-29 22:28:19 +100021#include <cbfs.h>
Stefan Reinauer38cd29e2009-08-11 21:28:25 +000022#include <console/console.h>
Edward O'Callaghan91810dd2014-07-30 13:53:04 +100023#include <cpu/amd/lxdef.h>
24#include <cpu/amd/vr.h>
Stefan Reinauerc1efb902011-10-12 14:30:59 -070025#include <delay.h>
Edward O'Callaghan91810dd2014-07-30 13:53:04 +100026#include <device/pci.h>
27#include <device/pci_ids.h>
Patrick Georgi3e77eb62012-11-22 10:39:16 +010028#include <lib/jpeg.h>
Edward O'Callaghan91810dd2014-07-30 13:53:04 +100029#include <pc80/i8259.h>
zbao741a0dd2015-06-25 16:58:53 -040030#include <pc80/i8254.h>
Edward O'Callaghan91810dd2014-07-30 13:53:04 +100031#include <string.h>
32#include <vbe.h>
33
Patrick Georgi199b09c2012-11-22 12:46:12 +010034/* we use x86emu's register file representation */
35#include <x86emu/regs.h>
Edward O'Callaghan91810dd2014-07-30 13:53:04 +100036
37#include "x86.h"
Patrick Georgi199b09c2012-11-22 12:46:12 +010038
Subrata Banika2602152019-07-12 17:41:43 +053039typedef struct {
40 char signature[4];
41 u16 version;
42 u8 *oem_string_ptr;
43 u32 capabilities;
44 u32 video_mode_ptr;
45 u16 total_memory;
46 char reserved[236];
47} __packed vbe_info_block;
48
Aaron Durbina146d582013-02-08 16:56:51 -060049/* The following symbols cannot be used directly. They need to be fixed up
50 * to point to the correct address location after the code has been copied
51 * to REALMODE_BASE. Absolute symbols are not used because those symbols are
52 * relocated when a relocatable ramstage is enabled.
53 */
54extern unsigned char __realmode_call, __realmode_interrupt;
55extern unsigned char __realmode_buffer;
56
57#define PTR_TO_REAL_MODE(sym)\
58 (void *)(REALMODE_BASE + ((char *)&(sym) - (char *)&__realmode_code))
59
Patrick Georgi199b09c2012-11-22 12:46:12 +010060/* to have a common register file for interrupt handlers */
61X86EMU_sysEnv _X86EMU_env;
Stefan Reinauer38cd29e2009-08-11 21:28:25 +000062
Subrata Banikc76bfac2019-07-12 16:43:17 +053063unsigned int (*realmode_call)(u32 addr, u32 eax, u32 ebx, u32 ecx, u32 edx,
Aaron Durbina146d582013-02-08 16:56:51 -060064 u32 esi, u32 edi) asmlinkage;
Stefan Reinauer841af5e2010-05-11 15:39:20 +000065
Subrata Banikc76bfac2019-07-12 16:43:17 +053066unsigned int (*realmode_interrupt)(u32 intno, u32 eax, u32 ebx, u32 ecx,
67 u32 edx, u32 esi, u32 edi) asmlinkage;
Aaron Durbina146d582013-02-08 16:56:51 -060068
69static void setup_realmode_code(void)
70{
71 memcpy(REALMODE_BASE, &__realmode_code, __realmode_code_size);
72
73 /* Ensure the global pointers are relocated properly. */
74 realmode_call = PTR_TO_REAL_MODE(__realmode_call);
75 realmode_interrupt = PTR_TO_REAL_MODE(__realmode_interrupt);
76
77 printk(BIOS_SPEW, "Real mode stub @%p: %d bytes\n", REALMODE_BASE,
78 __realmode_code_size);
79}
Stefan Reinauer841af5e2010-05-11 15:39:20 +000080
Stefan Reinauer841af5e2010-05-11 15:39:20 +000081static void setup_rombios(void)
82{
83 const char date[] = "06/11/99";
84 memcpy((void *)0xffff5, &date, 8);
85
86 const char ident[] = "PCI_ISA";
87 memcpy((void *)0xfffd9, &ident, 7);
88
89 /* system model: IBM-AT */
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080090 write8((void *)0xffffe, 0xfc);
Stefan Reinauer841af5e2010-05-11 15:39:20 +000091}
Stefan Reinauer38cd29e2009-08-11 21:28:25 +000092
Patrick Georgi199b09c2012-11-22 12:46:12 +010093static int (*intXX_handler[256])(void) = { NULL };
Stefan Reinauer38cd29e2009-08-11 21:28:25 +000094
Patrick Georgi199b09c2012-11-22 12:46:12 +010095static int intXX_exception_handler(void)
Stefan Reinauer38cd29e2009-08-11 21:28:25 +000096{
Patrick Georgi199b09c2012-11-22 12:46:12 +010097 /* compatibility shim */
98 struct eregs reg_info = {
99 .eax=X86_EAX,
100 .ecx=X86_ECX,
101 .edx=X86_EDX,
102 .ebx=X86_EBX,
103 .esp=X86_ESP,
104 .ebp=X86_EBP,
105 .esi=X86_ESI,
106 .edi=X86_EDI,
107 .vector=M.x86.intno,
108 .error_code=0, // FIXME: fill in
109 .eip=X86_EIP,
110 .cs=X86_CS,
111 .eflags=X86_EFLAGS
112 };
113 struct eregs *regs = &reg_info;
114
Stefan Reinauer14e22772010-04-27 06:56:47 +0000115 printk(BIOS_INFO, "Oops, exception %d while executing option rom\n",
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000116 regs->vector);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000117 x86_exception(regs); // Call coreboot exception handler
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000118
Stefan Reinauerb6b88712011-10-12 14:35:54 -0700119 return 0; // Never really returns
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000120}
121
Patrick Georgi199b09c2012-11-22 12:46:12 +0100122static int intXX_unknown_handler(void)
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000123{
Myles Watsonf53eaa32010-09-09 14:42:58 +0000124 printk(BIOS_INFO, "Unsupported software interrupt #0x%x eax 0x%x\n",
Patrick Georgi199b09c2012-11-22 12:46:12 +0100125 M.x86.intno, X86_EAX);
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000126
127 return -1;
128}
129
Libra Lic1436932009-12-23 19:16:47 +0000130/* setup interrupt handlers for mainboard */
Aaron Durbin4d7a4c52013-04-23 10:25:34 -0500131void mainboard_interrupt_handlers(int intXX, int (*intXX_func)(void))
Libra Lic1436932009-12-23 19:16:47 +0000132{
133 intXX_handler[intXX] = intXX_func;
134}
135
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000136static void setup_interrupt_handlers(void)
137{
138 int i;
139
Stefan Reinauer14e22772010-04-27 06:56:47 +0000140 /* The first 16 intXX functions are not BIOS services,
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000141 * but the CPU-generated exceptions ("hardware interrupts")
142 */
143 for (i = 0; i < 0x10; i++)
144 intXX_handler[i] = &intXX_exception_handler;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000145
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000146 /* Mark all other intXX calls as unknown first */
147 for (i = 0x10; i < 0x100; i++)
Libra Lic1436932009-12-23 19:16:47 +0000148 {
149 /* If the mainboard_interrupt_handler isn't called first.
150 */
151 if(!intXX_handler[i])
152 {
153 /* Now set the default functions that are actually
Stefan Reinauerc1efb902011-10-12 14:30:59 -0700154 * needed to initialize the option roms. This is
155 * very slick, as it allows us to implement mainboard
156 * specific interrupt handlers, such as the int15.
Libra Lic1436932009-12-23 19:16:47 +0000157 */
158 switch (i) {
Myles Watsonf53eaa32010-09-09 14:42:58 +0000159 case 0x10:
160 intXX_handler[0x10] = &int10_handler;
161 break;
Libra Lic1436932009-12-23 19:16:47 +0000162 case 0x12:
163 intXX_handler[0x12] = &int12_handler;
164 break;
Myles Watsonf53eaa32010-09-09 14:42:58 +0000165 case 0x16:
166 intXX_handler[0x16] = &int16_handler;
167 break;
Libra Lic1436932009-12-23 19:16:47 +0000168 case 0x1a:
169 intXX_handler[0x1a] = &int1a_handler;
170 break;
171 default:
172 intXX_handler[i] = &intXX_unknown_handler;
173 break;
174 }
175 }
176 }
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000177}
178
179static void write_idt_stub(void *target, u8 intnum)
180{
181 unsigned char *codeptr;
182 codeptr = (unsigned char *) target;
Aaron Durbina146d582013-02-08 16:56:51 -0600183 memcpy(codeptr, &__idt_handler, __idt_handler_size);
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000184 codeptr[3] = intnum; /* modify int# in the code stub. */
185}
186
187static void setup_realmode_idt(void)
188{
189 struct realmode_idt *idts = (struct realmode_idt *) 0;
190 int i;
191
192 /* Copy IDT stub code for each interrupt. This might seem wasteful
193 * but it is really simple
194 */
195 for (i = 0; i < 256; i++) {
196 idts[i].cs = 0;
Aaron Durbina146d582013-02-08 16:56:51 -0600197 idts[i].offset = 0x1000 + (i * __idt_handler_size);
Stefan Reinauer83fa1692015-06-18 22:01:07 -0700198 write_idt_stub((void *)((uintptr_t)idts[i].offset), i);
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000199 }
200
201 /* Many option ROMs use the hard coded interrupt entry points in the
Stefan Reinauer14e22772010-04-27 06:56:47 +0000202 * system bios. So install them at the known locations.
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000203 */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000204
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000205 /* int42 is the relocated int10 */
Stefan Reinauer714e2a12010-04-24 23:15:23 +0000206 write_idt_stub((void *)0xff065, 0x42);
Stefan Reinauer841af5e2010-05-11 15:39:20 +0000207 /* BIOS Int 11 Handler F000:F84D */
208 write_idt_stub((void *)0xff84d, 0x11);
209 /* BIOS Int 12 Handler F000:F841 */
210 write_idt_stub((void *)0xff841, 0x12);
211 /* BIOS Int 13 Handler F000:EC59 */
212 write_idt_stub((void *)0xfec59, 0x13);
213 /* BIOS Int 14 Handler F000:E739 */
214 write_idt_stub((void *)0xfe739, 0x14);
215 /* BIOS Int 15 Handler F000:F859 */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000216 write_idt_stub((void *)0xff859, 0x15);
Stefan Reinauer841af5e2010-05-11 15:39:20 +0000217 /* BIOS Int 16 Handler F000:E82E */
218 write_idt_stub((void *)0xfe82e, 0x16);
219 /* BIOS Int 17 Handler F000:EFD2 */
220 write_idt_stub((void *)0xfefd2, 0x17);
221 /* ROM BIOS Int 1A Handler F000:FE6E */
222 write_idt_stub((void *)0xffe6e, 0x1a);
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000223}
224
Julius Wernercd49cce2019-03-05 16:53:33 -0800225#if CONFIG(FRAMEBUFFER_SET_VESA_MODE)
Gabe Blackfb8632a2012-09-30 04:47:48 -0700226vbe_mode_info_t mode_info;
227static int mode_info_valid;
228
Aaron Durbin57e15e62017-05-16 21:50:27 -0500229static int vbe_mode_info_valid(void)
Gabe Blackfb8632a2012-09-30 04:47:48 -0700230{
231 return mode_info_valid;
232}
233
Subrata Banika2602152019-07-12 17:41:43 +0530234static int vbe_check_for_failure(int ah);
235
236static void vbe_get_ctrl_info(vbe_info_block *info)
237{
238 char *buffer = PTR_TO_REAL_MODE(__realmode_buffer);
239 u16 buffer_seg = (((unsigned long)buffer) >> 4) & 0xff00;
240 u16 buffer_adr = ((unsigned long)buffer) & 0xffff;
241 X86_EAX = realmode_interrupt(0x10, VESA_GET_INFO, 0x0000, 0x0000,
242 0x0000, buffer_seg, buffer_adr);
243 /* If the VBE function completed successfully, 0x0 is returned in AH */
244 if (X86_AH)
245 die("\nError: In %s function\n", __func__);
246 memcpy(info, buffer, sizeof(vbe_info_block));
247}
248
249static void vbe_oprom_list_supported_mode(uint16_t *video_mode_ptr)
250{
251 uint16_t mode;
252 printk(BIOS_DEBUG, "Supported Video Mode list for OpRom:\n");
253 do {
254 mode = *video_mode_ptr++;
255 if (mode != 0xffff)
256 printk(BIOS_DEBUG, "%x\n", mode);
257 } while (mode != 0xffff);
258}
259
260static void vbe_oprom_supported_mode_list(void)
261{
262 uint16_t segment, offset;
263 vbe_info_block info;
264
265 vbe_get_ctrl_info(&info);
266
267 offset = info.video_mode_ptr;
268 segment = info.video_mode_ptr >> 16;
269
270 vbe_oprom_list_supported_mode((uint16_t *)((segment << 4) + offset));
271}
Subrata Banikc76bfac2019-07-12 16:43:17 +0530272/*
273 * EAX register is used to indicate the completion status upon return from
274 * VBE function in real mode.
275 *
276 * If the VBE function completed successfully then 0x0 is returned in the AH
277 * register. Otherwise the AH register is set with the nature of the failure:
278 *
279 * AH == 0x00: Function call successful
280 * AH == 0x01: Function call failed
281 * AH == 0x02: Function is not supported in the current HW configuration
282 * AH == 0x03: Function call invalid in current video mode
283 *
284 * Return 0 on success else -1 for failure
285 */
286static int vbe_check_for_failure(int ah)
287{
288 int status;
289
290 switch (ah) {
291 case 0x0:
292 status = 0;
293 break;
294 case 1:
295 printk(BIOS_DEBUG, "VBE: Function call failed!\n");
296 status = -1;
297 break;
298 case 2:
299 printk(BIOS_DEBUG, "VBE: Function is not supported!\n");
300 status = -1;
301 break;
302 case 3:
303 default:
304 printk(BIOS_DEBUG, "VBE: Unsupported video mode %x!\n",
305 CONFIG_FRAMEBUFFER_VESA_MODE);
Subrata Banika2602152019-07-12 17:41:43 +0530306 vbe_oprom_supported_mode_list();
Subrata Banikc76bfac2019-07-12 16:43:17 +0530307 status = -1;
308 break;
309 }
310
311 return status;
312}
Gabe Blackfb8632a2012-09-30 04:47:48 -0700313static u8 vbe_get_mode_info(vbe_mode_info_t * mi)
Stefan Reinauerc1efb902011-10-12 14:30:59 -0700314{
Stefan Reinauer01c3de92012-08-29 09:28:52 -0700315 printk(BIOS_DEBUG, "VBE: Getting information about VESA mode %04x\n",
Gabe Blackfb8632a2012-09-30 04:47:48 -0700316 mi->video_mode);
Aaron Durbina146d582013-02-08 16:56:51 -0600317 char *buffer = PTR_TO_REAL_MODE(__realmode_buffer);
Stefan Reinauerc1efb902011-10-12 14:30:59 -0700318 u16 buffer_seg = (((unsigned long)buffer) >> 4) & 0xff00;
319 u16 buffer_adr = ((unsigned long)buffer) & 0xffff;
Subrata Banikc76bfac2019-07-12 16:43:17 +0530320 X86_EAX = realmode_interrupt(0x10, VESA_GET_MODE_INFO, 0x0000,
Gabe Blackfb8632a2012-09-30 04:47:48 -0700321 mi->video_mode, 0x0000, buffer_seg, buffer_adr);
Subrata Banikc76bfac2019-07-12 16:43:17 +0530322 if (vbe_check_for_failure(X86_AH))
323 die("\nError: In %s function\n", __func__);
Zhuo-Hao Lee29445dc2014-12-24 11:13:34 +0800324 memcpy(mi->mode_info_block, buffer, sizeof(mi->mode_info_block));
Gabe Blackfb8632a2012-09-30 04:47:48 -0700325 mode_info_valid = 1;
Stefan Reinauerc1efb902011-10-12 14:30:59 -0700326 return 0;
327}
328
Gabe Blackfb8632a2012-09-30 04:47:48 -0700329static u8 vbe_set_mode(vbe_mode_info_t * mi)
Stefan Reinauerc1efb902011-10-12 14:30:59 -0700330{
Gabe Blackfb8632a2012-09-30 04:47:48 -0700331 printk(BIOS_DEBUG, "VBE: Setting VESA mode %04x\n", mi->video_mode);
Stefan Reinauerc1efb902011-10-12 14:30:59 -0700332 // request linear framebuffer mode
Gabe Blackfb8632a2012-09-30 04:47:48 -0700333 mi->video_mode |= (1 << 14);
Stefan Reinauerc1efb902011-10-12 14:30:59 -0700334 // request clearing of framebuffer
Gabe Blackfb8632a2012-09-30 04:47:48 -0700335 mi->video_mode &= ~(1 << 15);
Subrata Banikc76bfac2019-07-12 16:43:17 +0530336 X86_EAX = realmode_interrupt(0x10, VESA_SET_MODE, mi->video_mode,
Stefan Reinauerc1efb902011-10-12 14:30:59 -0700337 0x0000, 0x0000, 0x0000, 0x0000);
Subrata Banikc76bfac2019-07-12 16:43:17 +0530338 if (vbe_check_for_failure(X86_AH))
339 die("\nError: In %s function\n", __func__);
Stefan Reinauerc1efb902011-10-12 14:30:59 -0700340 return 0;
341}
342
Stefan Reinauerc1efb902011-10-12 14:30:59 -0700343/* These two functions could probably even be generic between
344 * yabel and x86 native. TBD later.
345 */
346void vbe_set_graphics(void)
347{
348 mode_info.video_mode = (1 << 14) | CONFIG_FRAMEBUFFER_VESA_MODE;
349 vbe_get_mode_info(&mode_info);
350 unsigned char *framebuffer =
Stefan Reinauerb6b88712011-10-12 14:35:54 -0700351 (unsigned char *)mode_info.vesa.phys_base_ptr;
Stefan Reinauer01c3de92012-08-29 09:28:52 -0700352 printk(BIOS_DEBUG, "VBE: resolution: %dx%d@%d\n",
353 le16_to_cpu(mode_info.vesa.x_resolution),
354 le16_to_cpu(mode_info.vesa.y_resolution),
355 mode_info.vesa.bits_per_pixel);
356 printk(BIOS_DEBUG, "VBE: framebuffer: %p\n", framebuffer);
357 if (!framebuffer) {
358 printk(BIOS_DEBUG, "VBE: Mode does not support linear "
359 "framebuffer\n");
360 return;
361 }
362
Stefan Reinauerc1efb902011-10-12 14:30:59 -0700363 vbe_set_mode(&mode_info);
Julius Wernercd49cce2019-03-05 16:53:33 -0800364#if CONFIG(BOOTSPLASH)
Stefan Reinauerc1efb902011-10-12 14:30:59 -0700365 struct jpeg_decdata *decdata;
Aaron Durbin899d13d2015-05-15 23:39:23 -0500366 unsigned char *jpeg = cbfs_boot_map_with_leak("bootsplash.jpg",
367 CBFS_TYPE_BOOTSPLASH,
368 NULL);
Stefan Reinauerc1efb902011-10-12 14:30:59 -0700369 if (!jpeg) {
Stefan Reinauer01c3de92012-08-29 09:28:52 -0700370 printk(BIOS_DEBUG, "VBE: No bootsplash found.\n");
Stefan Reinauerc1efb902011-10-12 14:30:59 -0700371 return;
372 }
Daniele Forsif9ce88e2014-07-26 11:32:16 +0200373 decdata = malloc(sizeof(*decdata));
Stefan Reinauerc1efb902011-10-12 14:30:59 -0700374 int ret = 0;
375 ret = jpeg_decode(jpeg, framebuffer, 1024, 768, 16, decdata);
376#endif
377}
378
379void vbe_textmode_console(void)
380{
381 delay(2);
Subrata Banikc76bfac2019-07-12 16:43:17 +0530382 X86_EAX = realmode_interrupt(0x10, 0x0003, 0x0000, 0x0000,
Stefan Reinauerc1efb902011-10-12 14:30:59 -0700383 0x0000, 0x0000, 0x0000);
Subrata Banikc76bfac2019-07-12 16:43:17 +0530384 if (vbe_check_for_failure(X86_AH))
385 die("\nError: In %s function\n", __func__);
Stefan Reinauerc1efb902011-10-12 14:30:59 -0700386}
387
Aaron Durbinbdb5c8f2017-05-16 21:39:50 -0500388int fill_lb_framebuffer(struct lb_framebuffer *framebuffer)
Stefan Reinauerc1efb902011-10-12 14:30:59 -0700389{
Aaron Durbinbdb5c8f2017-05-16 21:39:50 -0500390 if (!vbe_mode_info_valid())
391 return -1;
392
Stefan Reinauerb6b88712011-10-12 14:35:54 -0700393 framebuffer->physical_address = mode_info.vesa.phys_base_ptr;
Stefan Reinauerc1efb902011-10-12 14:30:59 -0700394
395 framebuffer->x_resolution = le16_to_cpu(mode_info.vesa.x_resolution);
396 framebuffer->y_resolution = le16_to_cpu(mode_info.vesa.y_resolution);
397 framebuffer->bytes_per_line =
398 le16_to_cpu(mode_info.vesa.bytes_per_scanline);
399 framebuffer->bits_per_pixel = mode_info.vesa.bits_per_pixel;
400
401 framebuffer->red_mask_pos = mode_info.vesa.red_mask_pos;
402 framebuffer->red_mask_size = mode_info.vesa.red_mask_size;
403
404 framebuffer->green_mask_pos = mode_info.vesa.green_mask_pos;
405 framebuffer->green_mask_size = mode_info.vesa.green_mask_size;
406
407 framebuffer->blue_mask_pos = mode_info.vesa.blue_mask_pos;
408 framebuffer->blue_mask_size = mode_info.vesa.blue_mask_size;
409
410 framebuffer->reserved_mask_pos = mode_info.vesa.reserved_mask_pos;
411 framebuffer->reserved_mask_size = mode_info.vesa.reserved_mask_size;
Vladimir Serbinenkod7374512015-10-10 13:50:30 +0200412
Vladimir Serbinenkod7374512015-10-10 13:50:30 +0200413 return 0;
414}
415
Stefan Reinauerc1efb902011-10-12 14:30:59 -0700416#endif
417
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000418void run_bios(struct device *dev, unsigned long addr)
419{
Stefan Reinauer841af5e2010-05-11 15:39:20 +0000420 u32 num_dev = (dev->bus->secondary << 8) | dev->path.pci.devfn;
421
Stefan Reinauerb6b88712011-10-12 14:35:54 -0700422 /* Setting up required hardware.
423 * Removing this will cause random illegal instruction exceptions
424 * in some option roms.
425 */
426 setup_i8259();
zbao741a0dd2015-06-25 16:58:53 -0400427 setup_i8254();
Stefan Reinauerb6b88712011-10-12 14:35:54 -0700428
Stefan Reinauer841af5e2010-05-11 15:39:20 +0000429 /* Set up some legacy information in the F segment */
430 setup_rombios();
Libra Lic1436932009-12-23 19:16:47 +0000431
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000432 /* Set up C interrupt handlers */
433 setup_interrupt_handlers();
434
Stefan Reinauer841af5e2010-05-11 15:39:20 +0000435 /* Set up real-mode IDT */
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000436 setup_realmode_idt();
437
Aaron Durbina146d582013-02-08 16:56:51 -0600438 /* Make sure the code is placed. */
439 setup_realmode_code();
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000440
441 printk(BIOS_DEBUG, "Calling Option ROM...\n");
Stefan Reinauer841af5e2010-05-11 15:39:20 +0000442 /* TODO ES:DI Pointer to System BIOS PnP Installation Check Structure */
443 /* Option ROM entry point is at OPROM start + 3 */
444 realmode_call(addr + 0x0003, num_dev, 0xffff, 0x0000, 0xffff, 0x0, 0x0);
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000445 printk(BIOS_DEBUG, "... Option ROM returned.\n");
Stefan Reinauerc1efb902011-10-12 14:30:59 -0700446
Julius Wernercd49cce2019-03-05 16:53:33 -0800447#if CONFIG(FRAMEBUFFER_SET_VESA_MODE)
Stefan Reinauer22ae2b92013-02-08 08:48:20 -0800448 if ((dev->class >> 8)== PCI_CLASS_DISPLAY_VGA)
449 vbe_set_graphics();
Stefan Reinauerc1efb902011-10-12 14:30:59 -0700450#endif
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000451}
452
Stefan Reinauer14e22772010-04-27 06:56:47 +0000453/* interrupt_handler() is called from assembler code only,
Stefan Reinauer9839cbd2010-04-21 20:06:10 +0000454 * so there is no use in putting the prototype into a header file.
455 */
Stefan Reinauer399486e2012-12-06 13:54:29 -0800456int asmlinkage interrupt_handler(u32 intnumber,
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000457 u32 gsfs, u32 dses,
458 u32 edi, u32 esi,
459 u32 ebp, u32 esp,
460 u32 ebx, u32 edx,
461 u32 ecx, u32 eax,
Uwe Hermann312673c2009-10-27 21:49:33 +0000462 u32 cs_ip, u16 stackflags);
463
Stefan Reinauer399486e2012-12-06 13:54:29 -0800464int asmlinkage interrupt_handler(u32 intnumber,
Uwe Hermann312673c2009-10-27 21:49:33 +0000465 u32 gsfs, u32 dses,
466 u32 edi, u32 esi,
467 u32 ebp, u32 esp,
468 u32 ebx, u32 edx,
469 u32 ecx, u32 eax,
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000470 u32 cs_ip, u16 stackflags)
471{
472 u32 ip;
473 u32 cs;
474 u32 flags;
Patrick Georgi503af722012-11-22 10:48:18 +0100475 int ret = 0;
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000476
477 ip = cs_ip & 0xffff;
478 cs = cs_ip >> 16;
479 flags = stackflags;
480
Julius Wernercd49cce2019-03-05 16:53:33 -0800481#if CONFIG(REALMODE_DEBUG)
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000482 printk(BIOS_DEBUG, "oprom: INT# 0x%x\n", intnumber);
483 printk(BIOS_DEBUG, "oprom: eax: %08x ebx: %08x ecx: %08x edx: %08x\n",
484 eax, ebx, ecx, edx);
485 printk(BIOS_DEBUG, "oprom: ebp: %08x esp: %08x edi: %08x esi: %08x\n",
486 ebp, esp, edi, esi);
487 printk(BIOS_DEBUG, "oprom: ip: %04x cs: %04x flags: %08x\n",
488 ip, cs, flags);
Myles Watson6c9bc012010-09-07 22:30:15 +0000489#endif
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000490
Patrick Georgi199b09c2012-11-22 12:46:12 +0100491 // Fetch arguments from the stack and put them to a place
492 // suitable for the interrupt handlers
493 X86_EAX = eax;
494 X86_ECX = ecx;
495 X86_EDX = edx;
496 X86_EBX = ebx;
497 X86_ESP = esp;
498 X86_EBP = ebp;
499 X86_ESI = esi;
500 X86_EDI = edi;
501 M.x86.intno = intnumber;
502 /* TODO: error_code must be stored somewhere */
503 X86_EIP = ip;
504 X86_CS = cs;
505 X86_EFLAGS = flags;
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000506
507 // Call the interrupt handler for this int#
Patrick Georgi199b09c2012-11-22 12:46:12 +0100508 ret = intXX_handler[intnumber]();
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000509
510 // Put registers back on the stack. The assembler code
511 // will later pop them.
512 // What happens here is that we force (volatile!) changing
513 // the values of the parameters of this function. We do this
Stefan Reinauer14e22772010-04-27 06:56:47 +0000514 // because we know that they stay alive on the stack after
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000515 // we leave this function. Don't say this is bollocks.
Patrick Georgi199b09c2012-11-22 12:46:12 +0100516 *(volatile u32 *)&eax = X86_EAX;
517 *(volatile u32 *)&ecx = X86_ECX;
518 *(volatile u32 *)&edx = X86_EDX;
519 *(volatile u32 *)&ebx = X86_EBX;
520 *(volatile u32 *)&esi = X86_ESI;
521 *(volatile u32 *)&edi = X86_EDI;
522 flags = X86_EFLAGS;
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000523
Patrick Georgi503af722012-11-22 10:48:18 +0100524 /* Pass success or error back to our caller via the CARRY flag */
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000525 if (ret) {
Patrick Georgi503af722012-11-22 10:48:18 +0100526 flags &= ~1; // no error: clear carry
527 }else{
Stefan Reinauerf75b19a2010-04-22 18:15:32 +0000528 printk(BIOS_DEBUG,"int%02x call returned error.\n", intnumber);
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000529 flags |= 1; // error: set carry
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000530 }
531 *(volatile u16 *)&stackflags = flags;
532
Patrick Georgi503af722012-11-22 10:48:18 +0100533 /* The assembler code doesn't actually care for the return value,
534 * but keep it around so its expectations are met */
Stefan Reinauer38cd29e2009-08-11 21:28:25 +0000535 return ret;
536}