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