69470d5b2b279fdc9e622d5dd020c4c527369721
[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                 /* FixMe: Big real mode for gs, fs? */
198                 //"     mov     %ax, %fs        \n"
199                 //"     mov     %ax, %gs        \n"
200                 "       mov     $0x40, %ax      \n"
201                 "       mov     %ax, %ds        \n"
202                 "       mov     %cx, %ax        \n"
203
204                 /* run VGA BIOS at 0x6000:0020 */
205                 "       lcall   $0x6000, $0x0020\n"
206
207                 /* if we got here, just about done. 
208                  * Need to get back to protected mode */
209                 "       movl    %cr0, %eax      \n"
210                 "       orl     $0x0000001, %eax\n" /* PE = 1 */
211                 "       movl    %eax, %cr0      \n"
212
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
224                 /* restore proper gdt and idt */
225                 "       lgdt    %cs:gdtarg      \n"
226                 "       lidt    idtarg          \n"
227
228                 ".globl vsm_exit                \n"
229                 "vsm_exit:                      \n"
230                 "       mov     __stack, %esp   \n"
231                 "       popal                   \n"
232                 );
233 }
234
235 __asm__ (".text\n""real_mode_switch_end:\n");
236 extern char real_mode_switch_end[];
237
238
239 void do_vsmbios(void)
240 {
241         device_t dev;
242         unsigned long busdevfn;
243         unsigned int rom = 0;
244         unsigned char *buf;
245         unsigned int size = 256*1024;
246         int i;
247         
248         printk_err("do_vsmbios\n");
249         /* clear vsm bios data area */
250         for (i = 0x400; i < 0x500; i++) {
251                 *(unsigned char *) i = 0;
252         }
253
254         /* declare rom address here - keep any config data out of the way
255          * of core LXB stuff */
256
257         /* this is the base of rom on the GX2 at present. At some point, this has to be 
258           * much better parameterized 
259           */
260         //rom = 0xfff80000;
261         rom = 0xfffc0000;
262
263         buf = (unsigned char *) rom;
264         printk_debug("buf %p *buf %d buf[256k] %d\n",
265                      buf, buf[0], buf[256*1024]);
266         printk_debug("buf[0x20] signature is %x:%x:%x:%x\n",
267                      buf[0x20] ,buf[0x21] ,buf[0x22],buf[0x23]);
268         /* check for post code at start of vsainit.bin. If you don't see it,
269            don't bother. */
270         if ((buf[0x20] != 0xb0) || (buf[0x21] != 0x10) ||
271             (buf[0x22] != 0xe6) || (buf[0x23] != 0x80)) {
272                 printk_err("do_vsmbios: no vsainit.bin signature, skipping!\n");
273                 return;
274         }
275
276         memcpy((void *) 0x60000, buf, size);
277
278         /* ecx gets smm, edx gets sysm */
279         printk_err("Call real_mode_switch_call_vsm\n");
280         real_mode_switch_call_vsm(0x10000026, 0x10000028);
281 }
282
283
284 // we had hoped to avoid this. 
285 // this is a stub IDT only. It's main purpose is to ignore calls 
286 // to the BIOS. 
287 // no longer. Dammit. We have to respond to these.
288 struct realidt {
289         unsigned short offset, cs;
290 }; 
291
292 // from a handy writeup that andrey found.
293
294 // handler. 
295 // There are some assumptions we can make here. 
296 // First, the Top Of Stack (TOS) is located on the top of page zero. 
297 // we can share this stack between real and protected mode. 
298 // that simplifies a lot of things ...
299 // we'll just push all the registers on the stack as longwords, 
300 // and pop to protected mode. 
301 // second, since this only ever runs as part of linuxbios, 
302 // we know all the segment register values -- so we don't save any.
303 // keep the handler that calls things small. It can do a call to 
304 // more complex code in linuxbios itself. This helps a lot as we don't
305 // have to do address fixup in this little stub, and calls are absolute
306 // so the handler is relocatable.
307 void handler(void)
308 {
309         __asm__ __volatile__ ( 
310                 "       .code16         \n"
311                 "idthandle:             \n"
312                 "       pushal          \n"
313                 "       movb    $0, %al \n"
314                 "       ljmp    $0, $callbiosint16\n"
315                 "end_idthandle:         \n"
316                 "       .code32         \n"
317                 );
318 }
319
320 void debughandler(void)
321 {
322         __asm__ __volatile__ ( 
323                 "       .code16         \n"
324                 "debughandle:           \n"
325                 "       pushw   %cx     \n"
326                 "       movw    $250, %cx \n"
327                 "dbh1:                  \n"
328                 "       loop    dbh1    \n"
329                 "       popw    %cx     \n"
330                 "       iret            \n"
331                 "end_debughandle:       \n"
332                 ".code32                \n"
333                 );
334 }
335
336 // Calling conventions. The first C function is called with this stuff
337 // on the stack. They look like value parameters, but note that if you
338 // modify them they will go back to the INTx function modified. 
339 // the C function will call the biosint function with these as
340 // REFERENCE parameters. In this way, we can easily get 
341 // returns back to the INTx caller (i.e. vgabios)
342 void callbiosint(void)
343 {
344         __asm__ __volatile__ (
345                 "       .code16         \n"
346                 "callbiosint16:         \n"
347                 "       push    %ds     \n"
348                 "       push    %es     \n"
349                 "       push    %fs     \n"
350                 "       push    %gs     \n"
351                 // clean up the int #. To save space we put it in the lower
352                 // byte. But the top 24 bits are junk. 
353                 "       andl    $0xff, %eax\n"
354                 // this push does two things:
355                 // - put the INT # on the stack as a parameter
356                 // - provides us with a temp for the %cr0 mods.
357                 "       pushl   %eax    \n"
358                 "       movb    $0xbb, %al\n"
359                 "       outb    %al, $0x80\n"
360                 "       movl    %cr0, %eax\n"
361                 "       orl     $0x00000001, %eax\n" /* PE = 1 */
362                 "       movl    %eax, %cr0\n"
363                 /* Now that we are in protected mode jump to a 32 bit code segment. */
364                 "       data32  ljmp    $0x10, $biosprotect\n"
365                 "biosprotect:           \n"
366                 "       .code32         \n"
367                 "       movw    $0x18, %ax          \n"
368                 "       mov     %ax, %ds          \n"
369                 "       mov     %ax, %es          \n"
370                 "       mov     %ax, %fs          \n"
371                 "       mov     %ax, %gs          \n"
372                 "       mov     %ax, %ss          \n"
373                 "       lidt    idtarg          \n"
374                 "       call    biosint         \n"
375                 // back to real mode ...
376                 "       ljmp    $0x28, $__rms_16bit2\n"
377                 "__rms_16bit2:                  \n"
378                 "       .code16                 \n"
379                 /* 16 bit code from here on... */
380                 /* Load the segment registers w/ properly configured segment
381                  * descriptors.  They will retain these configurations (limits,
382                  * writability, etc.) once protected mode is turned off. */
383                 "       mov     $0x30, %ax      \n"
384                 "       mov     %ax, %ds        \n"
385                 "       mov     %ax, %es        \n"
386                 "       mov     %ax, %fs        \n"
387                 "       mov     %ax, %gs        \n"
388                 "       mov     %ax, %ss        \n"
389                 
390                 /* Turn off protection (bit 0 in CR0) */
391                 "       movl    %cr0, %eax              \n"
392                 "       andl    $0xFFFFFFFE, %eax       \n"
393                 "       movl    %eax, %cr0              \n"
394
395                 /* Now really going into real mode */
396                 "       ljmp $0,  $__rms_real2  \n"
397                 "__rms_real2:                   \n"
398
399                 /* Setup a stack
400                  * FixME: where is esp? */
401                 /* no need for a fix here. The esp is shared from 32-bit and 16-bit mode. 
402                   * you have to hack on the ss, but the esp remains the same across 
403                   * modes. 
404                   */
405                 "       mov     $0x0, %ax       \n"
406                 "       mov     %ax, %ss        \n"
407
408                 /* debugging for RGM */
409                 "       mov     $0x11, %al      \n"
410                 "       outb    %al, $0x80      \n"
411
412                 /* Load our 16 bit idt */
413                 "       xor     %ax, %ax        \n"
414                 "       mov     %ax, %ds        \n"
415                 "       lidt    __myidt         \n"
416
417                 /* Dump zeros in the other segregs */
418                 "       mov     %ax, %es        \n"
419                 "       mov     %ax, %fs        \n"
420                 "       mov     %ax, %gs        \n"
421                 "       mov     $0x40, %ax      \n"
422                 "       mov     %ax, %ds        \n"
423
424                 /* pop the INT # that you pushed earlier */
425                 "       popl    %eax            \n"
426                 "       pop     %gs             \n"
427                 "       pop     %fs             \n"
428                 "       pop     %es             \n"
429                 "       pop     %ds             \n"
430                 "       popal                   \n"
431                 "       iret                    \n"
432                 "       .code32                 \n"
433                 );
434 }
435
436 enum {
437         PCIBIOS = 0x1a, 
438         MEMSIZE = 0x12
439 };
440
441 int pcibios(unsigned long *pedi, unsigned long *pesi, unsigned long *pebp,
442             unsigned long *pesp, unsigned long *pebx, unsigned long *pedx,
443             unsigned long *pecx, unsigned long *peax, unsigned long *pflags);
444
445 int handleint21(unsigned long *pedi, unsigned long *pesi, unsigned long *pebp,
446                 unsigned long *pesp, unsigned long *pebx, unsigned long *pedx,
447                 unsigned long *pecx, unsigned long *peax, unsigned long *pflags
448         );
449
450 int biosint(unsigned long intnumber,
451             unsigned long gsfs, unsigned long dses,
452             unsigned long edi, unsigned long esi,
453             unsigned long ebp, unsigned long esp, 
454             unsigned long ebx, unsigned long edx, 
455             unsigned long ecx, unsigned long eax, 
456             unsigned long cs_ip, unsigned short stackflags)
457 {
458         unsigned long ip; 
459         unsigned long cs; 
460         unsigned long flags;
461         int ret = -1;
462
463         ip = cs_ip & 0xffff;
464         cs = cs_ip >> 16;
465         flags = stackflags;
466         
467         printk_debug("biosint: INT# 0x%lx\n", intnumber);
468         printk_debug("biosint: eax 0x%lx ebx 0x%lx ecx 0x%lx edx 0x%lx\n", 
469                       eax, ebx, ecx, edx);
470         printk_debug("biosint: ebp 0x%lx esp 0x%lx edi 0x%lx esi 0x%lx\n",
471                      ebp, esp, edi, esi);
472         printk_debug("biosint:  ip 0x%x   cs 0x%x  flags 0x%x\n",
473                      ip, cs, flags);
474         printk_debug("biosint: gs 0x%x fs 0x%x ds 0x%x es 0x%x\n",
475                      gsfs >> 16, gsfs & 0xffff, dses >> 16, dses & 0xffff);
476
477         // cases in a good compiler are just as good as your own tables. 
478         switch (intnumber) {
479         case 0 ... 15:
480                 // These are not BIOS service, but the CPU-generated exceptions
481                 printk_info("biosint: Oops, exception %u\n", intnumber);
482                 if (esp < 0x1000) {
483                         printk_debug("Stack contents: ");
484                         while (esp < 0x1000) {
485                                 printk_debug("0x%04x ", *(unsigned short *) esp);
486                                 esp += 2;
487                         }
488                         printk_debug("\n");
489                 }
490                 printk_debug("biosint: Bailing out ... not now\n");
491                 // "longjmp"
492                 //vga_exit();
493                 break;
494                 
495         case PCIBIOS:
496                 ret = pcibios( &edi, &esi, &ebp, &esp, 
497                                &ebx, &edx, &ecx, &eax, &flags);
498                 break;
499         case MEMSIZE: 
500                 // who cares. 
501                 eax = 64 * 1024;
502                 ret = 0;
503                 break;
504         case 0x15:
505                 ret=handleint21( &edi, &esi, &ebp, &esp, 
506                                 &ebx, &edx, &ecx, &eax, &flags);
507                 break;
508         default:
509                 printk_info("BIOSINT: Unsupport int #0x%x\n", 
510                             intnumber);
511                 break;
512         }
513         if (ret)
514                 flags |= 1; // carry flags
515         else
516                 flags &= ~1;
517         stackflags = flags;
518         return ret;
519
520
521
522 void setup_realmode_idt(void) 
523 {
524         extern unsigned char idthandle, end_idthandle;
525         extern unsigned char debughandle, end_debughandle;
526
527         int i;
528         struct realidt *idts = (struct realidt *) 0;
529         int codesize = &end_idthandle - &idthandle;
530         unsigned char *intbyte, *codeptr;
531         
532         // for each int, we create a customized little handler
533         // that just pushes %ax, puts the int # in %al, 
534         // then calls the common interrupt handler. 
535         // this necessitated because intel didn't know much about 
536         // architecture when they did the 8086 (it shows)
537         // (hmm do they know anymore even now :-)
538         // obviously you can see I don't really care about memory 
539         // efficiency. If I did I would probe back through the stack
540         // and get it that way. But that's really disgusting.
541         for (i = 0; i < 256; i++) {
542                 idts[i].cs = 0;
543                 codeptr = (char*) 4096 + i * codesize;
544                 idts[i].offset = (unsigned) codeptr;
545                 memcpy(codeptr, &idthandle, codesize);
546                 intbyte = codeptr + 3;
547                 *intbyte = i;
548         }
549         
550         // fixed entry points
551         
552         // VGA BIOSes tend to hardcode f000:f065 as the previous handler of
553         // int10. 
554         // calling convention here is the same as INTs, we can reuse
555         // the int entry code.
556         codeptr = (char*) 0xff065;
557         memcpy(codeptr, &idthandle, codesize);
558         intbyte = codeptr + 3;
559         *intbyte = 0x42; /* int42 is the relocated int10 */
560
561         /* debug handler - useful to set a programmable delay between instructions if the
562            TF bit is set upon call to real mode */
563         idts[1].cs = 0;
564         idts[1].offset = 16384;
565         memcpy(16384, &debughandle, &end_debughandle - &debughandle);
566
567         
568 }
569
570
571
572 enum {
573         CHECK = 0xb001,
574         FINDDEV = 0xb102,
575         READCONFBYTE = 0xb108,
576         READCONFWORD = 0xb109,
577         READCONFDWORD = 0xb10a,
578         WRITECONFBYTE = 0xb10b,
579         WRITECONFWORD = 0xb10c,
580         WRITECONFDWORD = 0xb10d
581 };
582
583 // errors go in AH. Just set these up so that word assigns
584 // will work. KISS. 
585 enum {
586         PCIBIOS_NODEV = 0x8600,
587         PCIBIOS_BADREG = 0x8700
588 };
589
590 int
591 pcibios(unsigned long *pedi, unsigned long *pesi, unsigned long *pebp, 
592         unsigned long *pesp, unsigned long *pebx, unsigned long *pedx, 
593         unsigned long *pecx, unsigned long *peax, unsigned long *pflags)
594 {
595         unsigned long edi = *pedi;
596         unsigned long esi = *pesi;
597         unsigned long ebp = *pebp;
598         unsigned long esp = *pesp;
599         unsigned long ebx = *pebx;
600         unsigned long edx = *pedx;
601         unsigned long ecx = *pecx;
602         unsigned long eax = *peax;
603         unsigned long flags = *pflags;
604         unsigned short func = (unsigned short) eax;
605         int retval = 0;
606         unsigned short devid, vendorid, devfn;
607         short devindex; /* Use short to get rid of gabage in upper half of 32-bit register */
608         unsigned char bus;
609         device_t dev;
610         
611         switch(func) {
612         case  CHECK:
613                 *pedx = 0x4350;
614                 *pecx = 0x2049;
615                 retval = 0;
616                 break;
617         case FINDDEV:
618         {
619                 devid = *pecx;
620                 vendorid = *pedx;
621                 devindex = *pesi;
622                 dev = 0;
623                 while ((dev = dev_find_device(vendorid, devid, dev))) {
624                         if (devindex <= 0)
625                                 break;
626                         devindex--;
627                 }
628                 if (dev) {
629                         unsigned short busdevfn;
630                         *peax = 0;
631                         // busnum is an unsigned char;
632                         // devfn is an int, so we mask it off. 
633                         busdevfn = (dev->bus->secondary << 8)
634                                 | (dev->path.u.pci.devfn & 0xff);
635                         printk_debug("0x%x: return 0x%x\n", func, busdevfn);
636                         *pebx = busdevfn;
637                         retval = 0;
638                 } else {
639                         *peax = PCIBIOS_NODEV;
640                         retval = -1;
641                 }
642         }
643         break;
644         case READCONFDWORD:
645         case READCONFWORD:
646         case READCONFBYTE:
647         case WRITECONFDWORD:
648         case WRITECONFWORD:
649         case WRITECONFBYTE:
650         {
651                 unsigned long dword;
652                 unsigned short word;
653                 unsigned char byte;
654                 unsigned char reg;
655                 
656                 devfn = *pebx & 0xff;
657                 bus = *pebx >> 8;
658                 reg = *pedi;
659                 dev = dev_find_slot(bus, devfn);
660                 if (! dev) {
661                         printk_debug("0x%x: BAD DEVICE bus %d devfn 0x%x\n", func, bus, devfn);
662                         // idiots. the pcibios guys assumed you'd never pass a bad bus/devfn!
663                         *peax = PCIBIOS_BADREG;
664                         retval = -1;
665                 }
666                 switch(func) {
667                 case READCONFBYTE:
668                         byte = pci_read_config8(dev, reg);
669                         *pecx = byte;
670                         break;
671                 case READCONFWORD:
672                         word = pci_read_config16(dev, reg);
673                         *pecx = word;
674                         break;
675                 case READCONFDWORD:
676                         dword = pci_read_config32(dev, reg);
677                         *pecx = dword;
678                         break;
679                 case WRITECONFBYTE:
680                         byte = *pecx;
681                         pci_write_config8(dev, reg, byte);
682                         break;
683                 case WRITECONFWORD:
684                         word = *pecx;
685                         pci_write_config16(dev, reg, word);
686                         break;
687                 case WRITECONFDWORD:
688                         dword = *pecx;
689                         pci_write_config32(dev, reg, dword);
690                         break;
691                 }
692                 
693                 if (retval) 
694                         retval = PCIBIOS_BADREG;
695                 printk_debug("0x%x: bus %d devfn 0x%x reg 0x%x val 0x%lx\n",
696                              func, bus, devfn, reg, *pecx);
697                 *peax = 0;
698                 retval = 0;
699         }
700         break;
701         default:
702                 printk_err("UNSUPPORTED PCIBIOS FUNCTION 0x%x\n",  func);
703                 break;
704         }
705         
706         return retval;
707
708
709 int handleint21(unsigned long *edi, unsigned long *esi, unsigned long *ebp,
710                 unsigned long *esp, unsigned long *ebx, unsigned long *edx,
711                 unsigned long *ecx, unsigned long *eax, unsigned long *flags)
712 {
713         int res=-1;
714         printk_debug("handleint21, eax 0x%x\n", *eax);
715         switch(*eax&0xffff)
716         {
717         case 0x5f19:
718                 break;
719         case 0x5f18:
720                 *eax=0x5f;
721                 *ebx=0x545; // MCLK = 133, 32M frame buffer, 256 M main memory
722                 *ecx=0x060;
723                 res=0;
724                 break;
725         case 0x5f00:
726                 *eax = 0x8600;
727                 break;
728         case 0x5f01:
729                 *eax = 0x5f;
730                 *ecx = (*ecx & 0xffffff00 ) | 2; // panel type =  2 = 1024 * 768
731                 res = 0;
732                 break;
733         case 0x5f02:
734                 *eax=0x5f;
735                 *ebx= (*ebx & 0xffff0000) | 2;
736                 *ecx= (*ecx & 0xffff0000) | 0x401;  // PAL + crt only 
737                 *edx= (*edx & 0xffff0000) | 0;  // TV Layout - default
738                 res=0;
739                 break;
740         case 0x5f0f:
741                 *eax=0x860f;
742                 break;
743         }
744         return res;
745 }