]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/x86/lib/bios_setup.c
0dfe4a103187bd54aee9e37dc24bdbefa5af5408
[karo-tx-uboot.git] / arch / x86 / lib / bios_setup.c
1 /*
2  * (C) Copyright 2002
3  * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
4  *
5  * See file CREDITS for list of people who contributed to this
6  * project.
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License as
10  * published by the Free Software Foundation; either version 2 of
11  * the License, or (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21  * MA 02111-1307 USA
22  */
23
24 /*
25  * Partly based on msbios.c from rolo 1.6:
26  *----------------------------------------------------------------------
27  * (C) Copyright 2000
28  * Sysgo Real-Time Solutions GmbH
29  * Klein-Winternheim, Germany
30  *----------------------------------------------------------------------
31  */
32
33 #include <common.h>
34 #include <pci.h>
35 #include <asm/realmode.h>
36 #include <asm/io.h>
37 #include "bios.h"
38
39 DECLARE_GLOBAL_DATA_PTR;
40
41 #define NUMVECTS        256
42
43 static int set_jmp_vector(int entry_point, void *target)
44 {
45         if (entry_point & ~0xffff)
46                 return -1;
47
48         if (((u32)target - 0xf0000) & ~0xffff)
49                 return -1;
50
51         printf("set_jmp_vector: 0xf000:%04x -> %p\n",
52                         entry_point, target);
53
54         /* jmp opcode */
55         writeb(0xea, 0xf0000 + entry_point);
56
57         /* offset */
58         writew(((u32)target-0xf0000), 0xf0000 + entry_point + 1);
59
60         /* segment */
61         writew(0xf000, 0xf0000 + entry_point + 3);
62
63         return 0;
64 }
65
66 /* Install an interrupt vector */
67 static void setvector(int vector, u16 segment, void *handler)
68 {
69         u16 *ptr = (u16 *)(vector * 4);
70         ptr[0] = ((u32)handler - (segment << 4)) & 0xffff;
71         ptr[1] = segment;
72
73 #if 0
74         printf("setvector: int%02x -> %04x:%04x\n",
75                         vector, ptr[1], ptr[0]);
76 #endif
77 }
78
79 int bios_setup(void)
80 {
81         /*
82          * The BIOS section is not relocated and still in the ROM. The
83          * __bios_start symbol was adjusted, though, so adjust it back.
84          */
85         ulong bios_start = (ulong)&__bios_start - gd->reloc_off;
86         ulong bios_size = (ulong)&__bios_size;
87
88         static int done;
89         int vector;
90 #ifdef CONFIG_PCI
91         struct pci_controller *pri_hose;
92 #endif
93         if (done)
94                 return 0;
95
96         done = 1;
97
98         if (bios_size > 65536) {
99                 printf("BIOS too large (%ld bytes, max is 65536)\n",
100                                 bios_size);
101                 return -1;
102         }
103
104         memcpy(BIOS_BASE, (void *)bios_start, bios_size);
105
106         /* clear bda */
107         memset(BIOS_DATA, 0, BIOS_DATA_SIZE);
108
109         /* enter some values to the bda */
110         writew(0x3f8, BIOS_DATA);   /* com1 addr */
111         writew(0x2f8, BIOS_DATA+2); /* com2 addr */
112         writew(0x3e8, BIOS_DATA+4); /* com3 addr */
113         writew(0x2e8, BIOS_DATA+6); /* com4 addr */
114         writew(0x278, BIOS_DATA+8); /* lpt1 addr */
115         /*
116          * The kernel wants to read the base memory size
117          * from 40:13. Put a zero there to avoid an error message
118          */
119         writew(0, BIOS_DATA+0x13);  /* base memory size */
120
121
122         /* setup realmode interrupt vectors */
123         for (vector = 0; vector < NUMVECTS; vector++)
124                 setvector(vector, BIOS_CS, &rm_def_int);
125
126         setvector(0x00, BIOS_CS, &rm_int00);
127         setvector(0x01, BIOS_CS, &rm_int01);
128         setvector(0x02, BIOS_CS, &rm_int02);
129         setvector(0x03, BIOS_CS, &rm_int03);
130         setvector(0x04, BIOS_CS, &rm_int04);
131         setvector(0x05, BIOS_CS, &rm_int05);
132         setvector(0x06, BIOS_CS, &rm_int06);
133         setvector(0x07, BIOS_CS, &rm_int07);
134         setvector(0x08, BIOS_CS, &rm_int08);
135         setvector(0x09, BIOS_CS, &rm_int09);
136         setvector(0x0a, BIOS_CS, &rm_int0a);
137         setvector(0x0b, BIOS_CS, &rm_int0b);
138         setvector(0x0c, BIOS_CS, &rm_int0c);
139         setvector(0x0d, BIOS_CS, &rm_int0d);
140         setvector(0x0e, BIOS_CS, &rm_int0e);
141         setvector(0x0f, BIOS_CS, &rm_int0f);
142         setvector(0x10, BIOS_CS, &rm_int10);
143         setvector(0x11, BIOS_CS, &rm_int11);
144         setvector(0x12, BIOS_CS, &rm_int12);
145         setvector(0x13, BIOS_CS, &rm_int13);
146         setvector(0x14, BIOS_CS, &rm_int14);
147         setvector(0x15, BIOS_CS, &rm_int15);
148         setvector(0x16, BIOS_CS, &rm_int16);
149         setvector(0x17, BIOS_CS, &rm_int17);
150         setvector(0x18, BIOS_CS, &rm_int18);
151         setvector(0x19, BIOS_CS, &rm_int19);
152         setvector(0x1a, BIOS_CS, &rm_int1a);
153         setvector(0x1b, BIOS_CS, &rm_int1b);
154         setvector(0x1c, BIOS_CS, &rm_int1c);
155         setvector(0x1d, BIOS_CS, &rm_int1d);
156         setvector(0x1e, BIOS_CS, &rm_int1e);
157         setvector(0x1f, BIOS_CS, &rm_int1f);
158
159         set_jmp_vector(0xfff0, &realmode_reset);
160         set_jmp_vector(0xfe6e, &realmode_pci_bios_call_entry);
161
162         /* fill in data area */
163         RELOC_16_WORD(0xf000, ram_in_64kb_chunks) = gd->ram_size >> 16;
164         RELOC_16_WORD(0xf000, bios_equipment) = 0; /* FixMe */
165
166         /* If we assume only one PCI hose, this PCI hose
167          * will own PCI bus #0, and the last PCI bus of
168          * that PCI hose will be the last PCI bus in the
169          * system.
170          * (This, ofcause break on multi hose systems,
171          *  but our PCI BIOS only support one hose anyway)
172          */
173 #ifdef CONFIG_PCI
174         pri_hose = pci_bus_to_hose(0);
175         if (NULL != pri_hose) {
176                 /* fill in last pci bus number for use by the realmode
177                  * PCI BIOS */
178                 RELOC_16_BYTE(0xf000, pci_last_bus) = pri_hose->last_busno;
179         }
180 #endif
181         return 0;
182 }