This patch unifies the use of config options in v2 to all start with CONFIG_
[coreboot.git] / src / cpu / amd / model_lx / vsmsetup.c
1 #include <console/console.h>
2 #include <device/pci.h>
3 #include <device/pci_ids.h>
4 #include <device/pci_ops.h>
5 #undef __KERNEL__
6 #include <arch/io.h>
7 #include <string.h>
8 #include <cpu/amd/lxdef.h>
9 #include <cpu/amd/vr.h>
10
11 // andrei: use the /lib copy of nrv2b
12 #include "../lib/nrv2b.c"
13
14 #define VSA2_BUFFER                     0x60000
15 #define VSA2_ENTRY_POINT        0x60020
16
17 /* vsmsetup.c derived from vgabios.c. Derived from: */
18
19 /*------------------------------------------------------------ -*- C -*-
20  *  2 Kernel Monte a.k.a. Linux loading Linux on x86
21  *
22  *  Erik Arjan Hendriks <hendriks@lanl.gov>
23  *
24  *  This version is a derivative of the original two kernel monte
25  *  which is (C) 2000 Scyld.
26  *
27  *  Copyright (C) 2000 Scyld Computing Corporation
28  *
29  *  This program is free software; you can redistribute it and/or modify
30  *  it under the terms of the GNU General Public License as published by
31  *  the Free Software Foundation; either version 2 of the License, or
32  *  (at your option) any later version.
33  *
34  *  This program is distributed in the hope that it will be useful,
35  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
36  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
37  *  GNU General Public License for more details.
38  *
39  *  You should have received a copy of the GNU General Public License
40  *  along with this program; if not, write to the Free Software
41  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
42  *
43  * Portions related to the alpha architecture are:
44  *
45  *  Copyright(C) 2001 University of California.  LA-CC Number 01-67.
46  *  This software has been authored by an employee or employees of the
47  *  University of California, operator of the Los Alamos National
48  *  Laboratory under Contract No.  W-7405-ENG-36 with the U.S.
49  *  Department of Energy.  The U.S. Government has rights to use,
50  *  reproduce, and distribute this software. If the software is
51  *  modified to produce derivative works, such modified software should
52  *  be clearly marked, so as not to confuse it with the version
53  *  available from LANL.
54  *
55  *  This software may be used and distributed according to the terms
56  *  of the GNU General Public License, incorporated herein by
57  *  reference to http://www.gnu.org/licenses/gpl.html.
58  *
59  *  This software is provided by the author(s) "as is" and any express
60  *  or implied warranties, including, but not limited to, the implied
61  *  warranties of merchantability and fitness for a particular purpose
62  *  are disclaimed.  In no event shall the author(s) be liable for any
63  *  direct, indirect, incidental, special, exemplary, or consequential
64  *  damages (including, but not limited to, procurement of substitute
65  *  goods or services; loss of use, data, or profits; or business
66  *  interruption) however caused and on any theory of liability,
67  *  whether in contract, strict liability, or tort (including
68  *  negligence or otherwise) arising in any way out of the use of this
69  *  software, even if advised of the possibility of such damage.
70  *
71  *  $Id: vsmsetup.c,v 1.8 2006/09/08 12:47:57 andrei Exp $
72  *
73  * Copyright (C) 2007 Advanced Micro Devices, Inc.
74  *
75  *--------------------------------------------------------------------*/
76
77 /* Modified to be a self sufficient plug in so that it can be used
78    without reliance on other parts of core coreboot
79    (C) 2005 Nick.Barker9@btinternet.com
80
81   Used initially for epia-m where there are problems getting the bios
82   emulator to successfully run this bios.
83 */
84
85 /* Declare a temporary global descriptor table - necessary because the
86    Core part of the bios no longer sets up any 16 bit segments */
87 __asm__(
88        /* pointer to original gdt */
89        "gdtarg:                 \n"
90        "        .word   gdt_limit       \n"
91        "        .long   gdt             \n"
92        /* compute the table limit */
93        "__mygdt_limit = __mygdt_end - __mygdt - 1       \n"
94        "__mygdtaddr:                    \n"
95        "        .word   __mygdt_limit   \n"
96        "        .long   __mygdt         \n"
97        "__mygdt:                        \n"
98        /* selgdt 0, unused */
99        "        .word   0x0000, 0x0000  \n"
100        "        .byte   0x00, 0x00, 0x00, 0x00  \n"
101        /* selgdt 8, unused */
102        "        .word   0x0000, 0x0000          \n"
103        "        .byte   0x00, 0x00, 0x00, 0x00  \n"
104        /* selgdt 0x10, flat code segment */
105        "        .word   0xffff, 0x0000          \n"
106        "        .byte   0x00, 0x9b, 0xcf, 0x00  \n"
107        /* selgdt 0x18, flat data segment */
108        "        .word   0xffff, 0x0000          \n"
109        "        .byte   0x00, 0x93, 0xcf, 0x00  \n"
110        /* selgdt 0x20, unused */
111        "        .word   0x0000, 0x0000          \n"
112        "        .byte   0x00, 0x00, 0x00, 0x00  \n"
113        /* selgdt 0x28 16-bit 64k code at 0x00000000 */
114        "        .word   0xffff, 0x0000          \n"
115        "        .byte   0, 0x9a, 0, 0           \n"
116        /* selgdt 0x30 16-bit 64k data at 0x00000000 */
117        "        .word   0xffff, 0x0000          \n"
118        "        .byte   0, 0x92, 0, 0           \n"
119        "__mygdt_end:                            \n"
120 );
121
122 /* Declare a pointer to where our idt is going to be i.e. at mem zero */
123 __asm__(
124         "__myidt:               \n"
125         /* 16-bit limit */
126         "       .word 1023      \n"
127         /* 24-bit base */
128         "       .long 0         \n" 
129         "       .word 0         \n"
130 );
131
132 /* The address arguments to this function are PHYSICAL ADDRESSES */
133 static void real_mode_switch_call_vsm(unsigned long smm, unsigned long sysm)
134 {
135         uint16_t entryHi = (VSA2_ENTRY_POINT & 0xffff0000) >> 4;
136         uint16_t entryLo = (VSA2_ENTRY_POINT & 0xffff);
137
138         __asm__ __volatile__(
139                 // paranoia -- does ecx get saved? not sure. This is
140                 // the easiest safe thing to do.
141                 "       pushal                  \n"
142                 /* save the stack */
143                 "       mov     %%esp, __stack  \n"
144                 "       jmp     1f              \n"
145                 "__stack: .long 0               \n" 
146                 "1:\n"
147                 /* get devfn into %%ecx */
148                 "       movl    %%esp, %%ebp    \n"
149 #if 0
150                 /* I'm not happy about that pushal followed by esp-relative
151                  * references. Just do hard-codes for now
152                  */
153                 "       movl    8(%%ebp), %%ecx \n"
154                 "       movl    12(%%ebp), %%edx        \n"
155 #endif
156                 "       movl    %0, %%ecx       \n"
157                 "       movl    %1, %%edx       \n"
158                 /* load 'our' gdt */
159                 "       lgdt    %%cs:__mygdtaddr        \n"
160                 /*  This configures CS properly for real mode. */
161                 "       ljmp    $0x28, $__rms_16bit\n"
162                 "__rms_16bit:                   \n"
163                 "       .code16                 \n"
164                 /* 16 bit code from here on... */
165                 /* Load the segment registers w/ properly configured segment
166                  * descriptors.  They will retain these configurations (limits,
167                  * writability, etc.) once protected mode is turned off. */
168                 "       mov     $0x30, %%ax     \n"
169                 "       mov     %%ax, %%ds              \n"
170                 "       mov     %%ax, %%es              \n"
171                 "       mov     %%ax, %%fs              \n"
172                 "       mov     %%ax, %%gs              \n"
173                 "       mov     %%ax, %%ss              \n"
174                 /* Turn off protection (bit 0 in CR0) */
175                 "       movl    %%cr0, %%eax    \n"
176                 "       andl    $0xFFFFFFFE, %%eax \n"
177                 "       movl    %%eax, %%cr0    \n"
178                 /* Now really going into real mode */
179                 "       ljmp    $0,  $__rms_real\n"
180                 "__rms_real:                    \n"
181
182                 /* put the stack at the end of page zero.
183                  * that way we can easily share it between real and protected,
184                  * since the 16-bit ESP at segment 0 will work for any case. 
185                  */
186
187                 /* Setup a stack */
188                 "       mov     $0x0, %%ax      \n"
189                 "       mov     %%ax, %%ss      \n"
190                 "       movl    $0x1000, %%eax  \n"
191                 "       movl    %%eax, %%esp    \n"
192                 /* Load our 16 it idt */
193                 "       xor     %%ax, %%ax      \n"
194                 "       mov     %%ax, %%ds      \n"
195                 "       lidt    __myidt         \n"
196                 /* Dump zeros in the other segregs */
197                 "       mov     %%ax, %%es      \n"
198                 /* FixMe: Big real mode for gs, fs? */
199                 "       mov     %%ax, %%fs      \n"
200                 "       mov     %%ax, %%gs      \n"
201                 "       mov     $0x40, %%ax     \n"
202                 "       mov     %%ax, %%ds      \n"
203                 //"     mov     %%cx, %%ax      \n"
204                 "       movl    %0, %%ecx       \n"
205                 "       movl    %1, %%edx       \n"
206                 /* call the VSA2 entry point address */
207                 "       lcall   %2, %3\n"
208                 /* if we got here, just about done.
209                  * Need to get back to protected mode */
210                 "       movl    %%cr0, %%eax    \n" 
211                 "       orl     $0x0000001, %%eax\n"    /* PE = 1 */
212                 "       movl    %%eax, %%cr0    \n"
213                 /* Now that we are in protected mode jump to a 32 bit code segment. */
214                 "       data32  ljmp    $0x10, $vsmrestart\n"
215                 "vsmrestart:\n"
216                 "       .code32\n"
217                 "       movw    $0x18, %%ax     \n"
218                 "       mov     %%ax, %%ds      \n"
219                 "       mov     %%ax, %%es      \n"
220                 "       mov     %%ax, %%fs      \n"
221                 "       mov     %%ax, %%gs      \n"
222                 "       mov     %%ax, %%ss      \n"
223                 /* restore proper gdt and idt */
224                 "       lgdt    %%cs:gdtarg     \n"
225                 "       lidt    idtarg          \n"
226                 ".globl vsm_exit                \n"
227                 "vsm_exit:                      \n"
228                 "       mov     __stack, %%esp  \n"
229                 "       popal                   \n"::
230                 "g" (smm), "g"(sysm), "g"(entryHi), "g"(entryLo)
231         );
232 }
233
234 __asm__(".text\n" "real_mode_switch_end:\n");
235 extern char real_mode_switch_end[];
236
237 // andrei: some VSA virtual register helpers: raw read and MSR read
238
239 uint32_t VSA_vrRead(uint16_t classIndex)
240 {
241         unsigned eax, ebx, ecx, edx;
242         asm volatile (
243                 "movw   $0x0AC1C, %%dx          \n"
244                 "orl    $0x0FC530000, %%eax     \n"
245                 "outl   %%eax, %%dx             \n"
246                 "addb   $2, %%dl                \n"
247                 "inw    %%dx, %%ax              \n"
248                 : "=a" (eax), "=b"(ebx), "=c"(ecx), "=d"(edx) 
249                 : "a"(classIndex)
250         );
251
252         return eax;
253 }
254
255 uint32_t VSA_msrRead(uint32_t msrAddr)
256 {
257         unsigned eax, ebx, ecx, edx;
258         asm volatile (
259                 "movw   $0x0AC1C, %%dx                  \n"
260                 "movl   $0x0FC530007, %%eax             \n"
261                 "outl   %%eax, %%dx                             \n"
262                 "addb   $2, %%dl                                \n"
263                 "inw    %%dx, %%ax                              \n"
264                 : "=a" (eax), "=b"(ebx), "=c"(ecx), "=d"(edx)
265                 : "c"(msrAddr)
266         );
267
268         return eax;
269 }
270
271 void do_vsmbios(void)
272 {
273         device_t dev;
274         unsigned long busdevfn;
275         unsigned int rom = 0;
276         unsigned char *buf;
277         unsigned int size = SMM_SIZE * 1024;
278         int i;
279         unsigned long ilen, olen;
280
281         printk_err("do_vsmbios\n");
282         /* clear vsm bios data area */
283         for (i = 0x400; i < 0x500; i++) {
284                 *(volatile unsigned char *)i = 0;
285         }
286
287         /* declare rom address here - keep any config data out of the way
288          * of core LXB stuff */
289
290         /* this is the base of rom on the LX at present. At some point, this has to be
291          * much better parameterized
292          */
293
294         //VSA is cat onto the end after LB builds
295         rom = ((unsigned long)0) - (CONFIG_ROM_SIZE + 36 * 1024);
296         buf = (unsigned char *)VSA2_BUFFER;
297         olen = unrv2b((uint8_t *) rom, buf, &ilen);
298         printk_debug("buf ilen %d olen%d\n", ilen, olen);
299         printk_debug("buf %p *buf %d buf[256k] %d\n",
300                      buf, buf[0], buf[SMM_SIZE * 1024]);
301         printk_debug("buf[0x20] signature is %x:%x:%x:%x\n",
302                      buf[0x20], buf[0x21], buf[0x22], buf[0x23]);
303         /* check for post code at start of vsainit.bin. If you don't see it,
304            don't bother. */
305         if ((buf[0x20] != 0xb0) || (buf[0x21] != 0x10) ||
306             (buf[0x22] != 0xe6) || (buf[0x23] != 0x80)) {
307                 printk_err("do_vsmbios: no vsainit.bin signature, skipping!\n");
308                 return;
309         }
310
311         /* ecx gets smm, edx gets sysm */
312         printk_err("Call real_mode_switch_call_vsm\n");
313         real_mode_switch_call_vsm(MSR_GLIU0_SMM, MSR_GLIU0_SYSMEM);
314
315         /* restart timer 1 */
316         outb(0x56, 0x43);
317         outb(0x12, 0x41);
318
319         // check that VSA is running OK
320         if (VSA_vrRead(SIGNATURE) == VSA2_SIGNATURE)
321                 printk_debug("do_vsmbios: VSA2 VR signature verified\n");
322         else
323                 printk_err
324                     ("do_vsmbios: VSA2 VR signature not valid, install failed!\n");
325 }
326
327 // we had hoped to avoid this.
328 // this is a stub IDT only. It's main purpose is to ignore calls
329 // to the BIOS.
330 // no longer. Dammit. We have to respond to these.
331 struct realidt {
332         unsigned short offset, cs;
333 };
334
335 // from a handy writeup that andrey found.
336
337 // handler.
338 // There are some assumptions we can make here.
339 // First, the Top Of Stack (TOS) is located on the top of page zero.
340 // we can share this stack between real and protected mode.
341 // that simplifies a lot of things ...
342 // we'll just push all the registers on the stack as longwords,
343 // and pop to protected mode.
344 // second, since this only ever runs as part of coreboot,
345 // we know all the segment register values -- so we don't save any.
346 // keep the handler that calls things small. It can do a call to
347 // more complex code in coreboot itself. This helps a lot as we don't
348 // have to do address fixup in this little stub, and calls are absolute
349 // so the handler is relocatable.
350 void handler(void)
351 {
352         __asm__ __volatile__(
353                 "       .code16         \n"
354                 "idthandle:             \n"
355                 "       pushal          \n"
356                 "       movb    $0, %al \n"
357                 "       ljmp    $0, $callbiosint16\n"
358                 "end_idthandle:         \n"
359                 "       .code32         \n"
360         );
361 }
362
363 void debughandler(void)
364 {
365         __asm__ __volatile__(
366                 "       .code16         \n"
367                 "debughandle:           \n"
368                 "       pushw   %cx     \n"
369                 "       movw    $250, %cx \n"
370                 "dbh1:                  \n"
371                 "       loop    dbh1    \n"
372                 "       popw    %cx     \n"
373                 "       iret            \n"
374                 "end_debughandle:       \n" 
375                 ".code32                \n"
376         );
377 }
378
379 // Calling conventions. The first C function is called with this stuff
380 // on the stack. They look like value parameters, but note that if you
381 // modify them they will go back to the INTx function modified.
382 // the C function will call the biosint function with these as
383 // REFERENCE parameters. In this way, we can easily get
384 // returns back to the INTx caller (i.e. vgabios)
385 void callbiosint(void)
386 {
387         __asm__ __volatile__(
388                 "       .code16         \n"
389                 "callbiosint16:         \n"
390                 "       push    %ds     \n"
391                 "       push    %es     \n"
392                 "       push    %fs     \n"
393                 "       push    %gs     \n"
394                 // clean up the int #. To save space we put it in the lower
395                 // byte. But the top 24 bits are junk.
396                 "       andl    $0xff, %eax\n"
397                 // this push does two things:
398                 // - put the INT # on the stack as a parameter
399                 // - provides us with a temp for the %cr0 mods.
400                 "       pushl   %eax    \n" 
401                 "       movb    $0xbb, %al\n" 
402                 "       outb    %al, $0x80\n" 
403                 "       movl    %cr0, %eax\n" 
404                 "       orl     $0x00000001, %eax\n"    /* PE = 1 */
405                 "       movl    %eax, %cr0\n"
406                 /* Now that we are in protected mode jump to a 32 bit code segment. */
407                 "       data32  ljmp    $0x10, $biosprotect\n"
408                 "biosprotect:           \n"
409                 "       .code32         \n"
410                 "       movw    $0x18, %ax\n"
411                 "       mov     %ax, %ds\n"
412                 "       mov     %ax, %es\n"
413                 "       mov     %ax, %fs\n"
414                 "       mov     %ax, %gs\n"
415                 "       mov     %ax, %ss\n"
416                 "       lidt    idtarg  \n"
417                 "       call    biosint \n"
418                 // back to real mode ...
419                 "       ljmp    $0x28, $__rms_16bit2\n"
420                 "__rms_16bit2:          \n"
421                 "       .code16         \n"
422                 /* 16 bit code from here on... */
423                 /* Load the segment registers w/ properly configured segment
424                  * descriptors.  They will retain these configurations (limits,
425                  * writability, etc.) once protected mode is turned off. */
426                 "       mov     $0x30, %ax\n"
427                 "       mov     %ax, %ds\n"
428                 "       mov     %ax, %es\n"
429                 "       mov     %ax, %fs\n"
430                 "       mov     %ax, %gs\n"
431                 "       mov     %ax, %ss\n"
432                 /* Turn off protection (bit 0 in CR0) */
433                 "       movl    %cr0, %eax              \n"
434                 "       andl    $0xFFFFFFFE, %eax       \n"
435                 "       movl    %eax, %cr0              \n"
436                 /* Now really going into real mode */
437                 "       ljmp $0,  $__rms_real2  \n"
438                 "__rms_real2:                   \n"
439                 /* Setup a stack
440                  * FixME: where is esp? */
441                 /* no need for a fix here. The esp is shared from 32-bit and 16-bit mode.
442                  * you have to hack on the ss, but the esp remains the same across
443                  * modes.
444                  */
445                 "       mov     $0x0, %ax       \n"
446                 "       mov     %ax, %ss        \n"
447                 /* debugging for RGM */
448                 "       mov     $0x11, %al      \n"
449                 "       outb    %al, $0x80      \n"
450                 /* Load our 16 bit idt */
451                 "       xor     %ax, %ax        \n"
452                 "       mov     %ax, %ds        \n"
453                 "       lidt    __myidt         \n"
454                 /* Dump zeros in the other segregs */
455                 "       mov     %ax, %es        \n"
456                 "       mov     %ax, %fs        \n"
457                 "       mov     %ax, %gs        \n"
458                 "       mov     $0x40, %ax      \n"
459                 "       mov     %ax, %ds        \n"
460                 /* pop the INT # that you pushed earlier */
461                 "       popl    %eax            \n"
462                 "       pop     %gs             \n"
463                 "       pop     %fs             \n"
464                 "       pop     %es             \n"
465                 "       pop     %ds             \n"
466                 "       popal                   \n"
467                 "       iret                    \n"
468                 "       .code32                 \n"
469         );
470 }
471
472 enum {
473         PCIBIOS = 0x1a,
474         MEMSIZE = 0x12
475 };
476
477 int pcibios(unsigned long *pedi, unsigned long *pesi, unsigned long *pebp,
478             unsigned long *pesp, unsigned long *pebx, unsigned long *pedx,
479             unsigned long *pecx, unsigned long *peax, unsigned long *pflags);
480
481 int handleint21(unsigned long *pedi, unsigned long *pesi, unsigned long *pebp,
482                 unsigned long *pesp, unsigned long *pebx, unsigned long *pedx,
483                 unsigned long *pecx, unsigned long *peax,
484                 unsigned long *pflags);
485
486 int biosint(unsigned long intnumber,
487             unsigned long gsfs, unsigned long dses,
488             unsigned long edi, unsigned long esi,
489             unsigned long ebp, unsigned long esp,
490             unsigned long ebx, unsigned long edx,
491             unsigned long ecx, unsigned long eax,
492             unsigned long cs_ip, unsigned short stackflags)
493 {
494         unsigned long ip;
495         unsigned long cs;
496         unsigned long flags;
497         int ret = -1;
498
499         ip = cs_ip & 0xffff;
500         cs = cs_ip >> 16;
501         flags = stackflags;
502
503         printk_debug("biosint: INT# 0x%lx\n", intnumber);
504         printk_debug("biosint: eax 0x%lx ebx 0x%lx ecx 0x%lx edx 0x%lx\n",
505                      eax, ebx, ecx, edx);
506         printk_debug("biosint: ebp 0x%lx esp 0x%lx edi 0x%lx esi 0x%lx\n",
507                      ebp, esp, edi, esi);
508         printk_debug("biosint:  ip 0x%x   cs 0x%x  flags 0x%x\n",
509                      ip, cs, flags);
510         printk_debug("biosint: gs 0x%x fs 0x%x ds 0x%x es 0x%x\n",
511                      gsfs >> 16, gsfs & 0xffff, dses >> 16, dses & 0xffff);
512
513         // cases in a good compiler are just as good as your own tables.
514         switch (intnumber) {
515         case 0 ... 15:
516                 // These are not BIOS service, but the CPU-generated exceptions
517                 printk_info("biosint: Oops, exception %u\n", intnumber);
518                 if (esp < 0x1000) {
519                         printk_debug("Stack contents: ");
520                         while (esp < 0x1000) {
521                                 printk_debug("0x%04x ", *(unsigned short *)esp);
522                                 esp += 2;
523                         }
524                         printk_debug("\n");
525                 }
526                 printk_debug("biosint: Bailing out ... not now\n");
527                 // "longjmp"
528                 //vga_exit();
529                 break;
530
531         case PCIBIOS:
532                 ret = pcibios(&edi, &esi, &ebp, &esp,
533                               &ebx, &edx, &ecx, &eax, &flags);
534                 break;
535         case MEMSIZE:
536                 // who cares.
537                 eax = 128 * 1024;
538                 ret = 0;
539                 break;
540         case 0x15:
541                 ret = handleint21(&edi, &esi, &ebp, &esp,
542                                   &ebx, &edx, &ecx, &eax, &flags);
543                 break;
544         default:
545                 printk_info("BIOSINT: Unsupport int #0x%x\n", intnumber);
546                 break;
547         }
548         if (ret)
549                 flags |= 1;     // carry flags
550         else
551                 flags &= ~1;
552         stackflags = flags;
553         return ret;
554 }
555
556 void setup_realmode_idt(void)
557 {
558         extern unsigned char idthandle, end_idthandle;
559         extern unsigned char debughandle, end_debughandle;
560
561         int i;
562         struct realidt *idts = (struct realidt *)0;
563         int codesize = &end_idthandle - &idthandle;
564         unsigned char *intbyte, *codeptr;
565
566         // for each int, we create a customized little handler
567         // that just pushes %ax, puts the int # in %al,
568         // then calls the common interrupt handler.
569         // this necessitated because intel didn't know much about
570         // architecture when they did the 8086 (it shows)
571         // (hmm do they know anymore even now :-)
572         // obviously you can see I don't really care about memory
573         // efficiency. If I did I would probe back through the stack
574         // and get it that way. But that's really disgusting.
575         for (i = 0; i < 256; i++) {
576                 idts[i].cs = 0;
577                 codeptr = (unsigned char *)4096 + i * codesize;
578                 idts[i].offset = (unsigned)codeptr;
579                 memcpy(codeptr, &idthandle, codesize);
580                 intbyte = codeptr + 3;
581                 *intbyte = i;
582         }
583
584         // fixed entry points
585
586         // VGA BIOSes tend to hardcode f000:f065 as the previous handler of
587         // int10.
588         // calling convention here is the same as INTs, we can reuse
589         // the int entry code.
590         codeptr = (unsigned char *)0xff065;
591         memcpy(codeptr, &idthandle, codesize);
592         intbyte = codeptr + 3;
593         *intbyte = 0x42;        /* int42 is the relocated int10 */
594
595         /* debug handler - useful to set a programmable delay between instructions if the
596            TF bit is set upon call to real mode */
597         idts[1].cs = 0;
598         idts[1].offset = 16384;
599         memcpy((void *)16384, &debughandle, &end_debughandle - &debughandle);
600 }
601
602 enum {
603         CHECK = 0xb001,
604         FINDDEV = 0xb102,
605         READCONFBYTE = 0xb108,
606         READCONFWORD = 0xb109,
607         READCONFDWORD = 0xb10a,
608         WRITECONFBYTE = 0xb10b,
609         WRITECONFWORD = 0xb10c,
610         WRITECONFDWORD = 0xb10d
611 };
612
613 // errors go in AH. Just set these up so that word assigns
614 // will work. KISS.
615 enum {
616         PCIBIOS_NODEV = 0x8600,
617         PCIBIOS_BADREG = 0x8700
618 };
619
620 int
621 pcibios(unsigned long *pedi, unsigned long *pesi, unsigned long *pebp,
622         unsigned long *pesp, unsigned long *pebx, unsigned long *pedx,
623         unsigned long *pecx, unsigned long *peax, unsigned long *pflags)
624 {
625         unsigned long edi = *pedi;
626         unsigned long esi = *pesi;
627         unsigned long ebp = *pebp;
628         unsigned long esp = *pesp;
629         unsigned long ebx = *pebx;
630         unsigned long edx = *pedx;
631         unsigned long ecx = *pecx;
632         unsigned long eax = *peax;
633         unsigned long flags = *pflags;
634         unsigned short func = (unsigned short)eax;
635         int retval = 0;
636         unsigned short devid, vendorid, devfn;
637         short devindex;         /* Use short to get rid of gabage in upper half of 32-bit register */
638         unsigned char bus;
639         device_t dev;
640
641         switch (func) {
642         case CHECK:
643                 *pedx = 0x4350;
644                 *pecx = 0x2049;
645                 retval = 0;
646                 break;
647         case FINDDEV:
648                 {
649                         devid = *pecx;
650                         vendorid = *pedx;
651                         devindex = *pesi;
652                         dev = 0;
653                         while ((dev = dev_find_device(vendorid, devid, dev))) {
654                                 if (devindex <= 0)
655                                         break;
656                                 devindex--;
657                         }
658                         if (dev) {
659                                 unsigned short busdevfn;
660                                 *peax = 0;
661                                 // busnum is an unsigned char;
662                                 // devfn is an int, so we mask it off.
663                                 busdevfn = (dev->bus->secondary << 8)
664                                     | (dev->path.pci.devfn & 0xff);
665                                 printk_debug("0x%x: return 0x%x\n", func,
666                                              busdevfn);
667                                 *pebx = busdevfn;
668                                 retval = 0;
669                         } else {
670                                 *peax = PCIBIOS_NODEV;
671                                 retval = -1;
672                         }
673                 }
674                 break;
675         case READCONFDWORD:
676         case READCONFWORD:
677         case READCONFBYTE:
678         case WRITECONFDWORD:
679         case WRITECONFWORD:
680         case WRITECONFBYTE:
681                 {
682                         unsigned long dword;
683                         unsigned short word;
684                         unsigned char byte;
685                         unsigned char reg;
686
687                         devfn = *pebx & 0xff;
688                         bus = *pebx >> 8;
689                         reg = *pedi;
690                         dev = dev_find_slot(bus, devfn);
691                         if (!dev) {
692                                 printk_debug
693                                     ("0x%x: BAD DEVICE bus %d devfn 0x%x\n",
694                                      func, bus, devfn);
695                                 // idiots. the pcibios guys assumed you'd never pass a bad bus/devfn!
696                                 *peax = PCIBIOS_BADREG;
697                                 retval = -1;
698                         }
699                         switch (func) {
700                         case READCONFBYTE:
701                                 byte = pci_read_config8(dev, reg);
702                                 *pecx = byte;
703                                 break;
704                         case READCONFWORD:
705                                 word = pci_read_config16(dev, reg);
706                                 *pecx = word;
707                                 break;
708                         case READCONFDWORD:
709                                 dword = pci_read_config32(dev, reg);
710                                 *pecx = dword;
711                                 break;
712                         case WRITECONFBYTE:
713                                 byte = *pecx;
714                                 pci_write_config8(dev, reg, byte);
715                                 break;
716                         case WRITECONFWORD:
717                                 word = *pecx;
718                                 pci_write_config16(dev, reg, word);
719                                 break;
720                         case WRITECONFDWORD:
721                                 dword = *pecx;
722                                 pci_write_config32(dev, reg, dword);
723                                 break;
724                         }
725
726                         if (retval)
727                                 retval = PCIBIOS_BADREG;
728                         printk_debug
729                             ("0x%x: bus %d devfn 0x%x reg 0x%x val 0x%lx\n",
730                              func, bus, devfn, reg, *pecx);
731                         *peax = 0;
732                         retval = 0;
733                 }
734                 break;
735         default:
736                 printk_err("UNSUPPORTED PCIBIOS FUNCTION 0x%x\n", func);
737                 break;
738         }
739
740         return retval;
741 }
742
743 int handleint21(unsigned long *edi, unsigned long *esi, unsigned long *ebp,
744                 unsigned long *esp, unsigned long *ebx, unsigned long *edx,
745                 unsigned long *ecx, unsigned long *eax, unsigned long *flags)
746 {
747         int res = -1;
748         printk_debug("handleint21, eax 0x%x\n", *eax);
749         switch (*eax & 0xffff) {
750         case 0x5f19:
751                 break;
752         case 0x5f18:
753                 *eax = 0x5f;
754                 *ebx = 0x545;   // MCLK = 133, 32M frame buffer, 256 M main memory
755                 *ecx = 0x060;
756                 res = 0;
757                 break;
758         case 0x5f00:
759                 *eax = 0x8600;
760                 break;
761         case 0x5f01:
762                 *eax = 0x5f;
763                 *ecx = (*ecx & 0xffffff00) | 2; // panel type =  2 = 1024 * 768
764                 res = 0;
765                 break;
766         case 0x5f02:
767                 *eax = 0x5f;
768                 *ebx = (*ebx & 0xffff0000) | 2;
769                 *ecx = (*ecx & 0xffff0000) | 0x401;     // PAL + crt only
770                 *edx = (*edx & 0xffff0000) | 0; // TV Layout - default
771                 res = 0;
772                 break;
773         case 0x5f0f:
774                 *eax = 0x860f;
775                 break;
776         case 0xBEA7:
777                 *eax = 66;
778                 break;
779         case 0xBEA4:
780                 *eax = 500;
781                 break;
782         }
783         return res;
784 }