blob: 053280b955b8fbdbeb3c878f3708e7ee949197dc [file] [log] [blame]
wdenk2262cfe2002-11-18 00:14:45 +00001/*
2 * (C) Copyright 2002
Albert ARIBAUDfa82f872011-08-04 18:45:45 +02003 * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
wdenk8bde7f72003-06-27 21:31:46 +00004 *
wdenk2262cfe2002-11-18 00:14:45 +00005 * 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
wdenk2262cfe2002-11-18 00:14:45 +000024/*
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>
wdenk7a8e9bed2003-05-31 18:35:21 +000034#include <pci.h>
wdenk2262cfe2002-11-18 00:14:45 +000035#include <asm/realmode.h>
36#include <asm/io.h>
Graeme Russ83088af2011-11-08 02:33:15 +000037#include "bios.h"
wdenk2262cfe2002-11-18 00:14:45 +000038
Wolfgang Denkd87080b2006-03-31 18:32:53 +020039DECLARE_GLOBAL_DATA_PTR;
40
wdenk2262cfe2002-11-18 00:14:45 +000041#define NUMVECTS 256
42
wdenk8bde7f72003-06-27 21:31:46 +000043static int set_jmp_vector(int entry_point, void *target)
wdenk7a8e9bed2003-05-31 18:35:21 +000044{
Graeme Russ83088af2011-11-08 02:33:15 +000045 if (entry_point & ~0xffff)
wdenk7a8e9bed2003-05-31 18:35:21 +000046 return -1;
wdenk8bde7f72003-06-27 21:31:46 +000047
Graeme Russ83088af2011-11-08 02:33:15 +000048 if (((u32)target - 0xf0000) & ~0xffff)
wdenk7a8e9bed2003-05-31 18:35:21 +000049 return -1;
Graeme Russ83088af2011-11-08 02:33:15 +000050
wdenk7a8e9bed2003-05-31 18:35:21 +000051 printf("set_jmp_vector: 0xf000:%04x -> %p\n",
Graeme Russ83088af2011-11-08 02:33:15 +000052 entry_point, target);
wdenk8bde7f72003-06-27 21:31:46 +000053
wdenk7a8e9bed2003-05-31 18:35:21 +000054 /* jmp opcode */
55 writeb(0xea, 0xf0000 + entry_point);
wdenk8bde7f72003-06-27 21:31:46 +000056
wdenk7a8e9bed2003-05-31 18:35:21 +000057 /* offset */
58 writew(((u32)target-0xf0000), 0xf0000 + entry_point + 1);
wdenk8bde7f72003-06-27 21:31:46 +000059
wdenk7a8e9bed2003-05-31 18:35:21 +000060 /* segment */
61 writew(0xf000, 0xf0000 + entry_point + 3);
wdenk8bde7f72003-06-27 21:31:46 +000062
wdenk7a8e9bed2003-05-31 18:35:21 +000063 return 0;
64}
65
Graeme Russ83088af2011-11-08 02:33:15 +000066/* Install an interrupt vector */
wdenk2262cfe2002-11-18 00:14:45 +000067static void setvector(int vector, u16 segment, void *handler)
68{
Graeme Russ83088af2011-11-08 02:33:15 +000069 u16 *ptr = (u16 *)(vector * 4);
70 ptr[0] = ((u32)handler - (segment << 4)) & 0xffff;
wdenk2262cfe2002-11-18 00:14:45 +000071 ptr[1] = segment;
wdenk8bde7f72003-06-27 21:31:46 +000072
73#if 0
wdenk2262cfe2002-11-18 00:14:45 +000074 printf("setvector: int%02x -> %04x:%04x\n",
Graeme Russ83088af2011-11-08 02:33:15 +000075 vector, ptr[1], ptr[0]);
wdenk8bde7f72003-06-27 21:31:46 +000076#endif
wdenk2262cfe2002-11-18 00:14:45 +000077}
78
79int bios_setup(void)
80{
Graeme Russ067f9b12010-10-07 20:03:31 +110081 ulong bios_start = (ulong)&__bios_start + gd->reloc_off;
82 ulong bios_size = (ulong)&__bios_size;
Graeme Russcabe5792009-11-24 20:04:20 +110083
Graeme Russ83088af2011-11-08 02:33:15 +000084 static int done;
wdenk2262cfe2002-11-18 00:14:45 +000085 int vector;
Graeme Russ3ef96de2008-09-07 07:08:42 +100086#ifdef CONFIG_PCI
wdenk7a8e9bed2003-05-31 18:35:21 +000087 struct pci_controller *pri_hose;
Graeme Russ3ef96de2008-09-07 07:08:42 +100088#endif
Graeme Russ83088af2011-11-08 02:33:15 +000089 if (done)
wdenk2262cfe2002-11-18 00:14:45 +000090 return 0;
Graeme Russ83088af2011-11-08 02:33:15 +000091
wdenk2262cfe2002-11-18 00:14:45 +000092 done = 1;
wdenk8bde7f72003-06-27 21:31:46 +000093
Graeme Russ067f9b12010-10-07 20:03:31 +110094 if (bios_size > 65536) {
wdenk8bde7f72003-06-27 21:31:46 +000095 printf("BIOS too large (%ld bytes, max is 65536)\n",
Graeme Russ83088af2011-11-08 02:33:15 +000096 bios_size);
wdenk2262cfe2002-11-18 00:14:45 +000097 return -1;
98 }
wdenk8bde7f72003-06-27 21:31:46 +000099
Graeme Russ83088af2011-11-08 02:33:15 +0000100 memcpy(BIOS_BASE, (void *)bios_start, bios_size);
wdenk2262cfe2002-11-18 00:14:45 +0000101
102 /* clear bda */
103 memset(BIOS_DATA, 0, BIOS_DATA_SIZE);
wdenk8bde7f72003-06-27 21:31:46 +0000104
wdenk2262cfe2002-11-18 00:14:45 +0000105 /* enter some values to the bda */
106 writew(0x3f8, BIOS_DATA); /* com1 addr */
107 writew(0x2f8, BIOS_DATA+2); /* com2 addr */
108 writew(0x3e8, BIOS_DATA+4); /* com3 addr */
109 writew(0x2e8, BIOS_DATA+6); /* com4 addr */
110 writew(0x278, BIOS_DATA+8); /* lpt1 addr */
111 /*
112 * The kernel wants to read the base memory size
113 * from 40:13. Put a zero there to avoid an error message
114 */
115 writew(0, BIOS_DATA+0x13); /* base memory size */
116
wdenk8bde7f72003-06-27 21:31:46 +0000117
118 /* setup realmode interrupt vectors */
Graeme Russ83088af2011-11-08 02:33:15 +0000119 for (vector = 0; vector < NUMVECTS; vector++)
wdenk2262cfe2002-11-18 00:14:45 +0000120 setvector(vector, BIOS_CS, &rm_def_int);
wdenk8bde7f72003-06-27 21:31:46 +0000121
wdenk2262cfe2002-11-18 00:14:45 +0000122 setvector(0x00, BIOS_CS, &rm_int00);
123 setvector(0x01, BIOS_CS, &rm_int01);
124 setvector(0x02, BIOS_CS, &rm_int02);
125 setvector(0x03, BIOS_CS, &rm_int03);
126 setvector(0x04, BIOS_CS, &rm_int04);
127 setvector(0x05, BIOS_CS, &rm_int05);
128 setvector(0x06, BIOS_CS, &rm_int06);
129 setvector(0x07, BIOS_CS, &rm_int07);
130 setvector(0x08, BIOS_CS, &rm_int08);
131 setvector(0x09, BIOS_CS, &rm_int09);
132 setvector(0x0a, BIOS_CS, &rm_int0a);
133 setvector(0x0b, BIOS_CS, &rm_int0b);
134 setvector(0x0c, BIOS_CS, &rm_int0c);
135 setvector(0x0d, BIOS_CS, &rm_int0d);
136 setvector(0x0e, BIOS_CS, &rm_int0e);
137 setvector(0x0f, BIOS_CS, &rm_int0f);
138 setvector(0x10, BIOS_CS, &rm_int10);
139 setvector(0x11, BIOS_CS, &rm_int11);
140 setvector(0x12, BIOS_CS, &rm_int12);
141 setvector(0x13, BIOS_CS, &rm_int13);
142 setvector(0x14, BIOS_CS, &rm_int14);
143 setvector(0x15, BIOS_CS, &rm_int15);
144 setvector(0x16, BIOS_CS, &rm_int16);
145 setvector(0x17, BIOS_CS, &rm_int17);
146 setvector(0x18, BIOS_CS, &rm_int18);
147 setvector(0x19, BIOS_CS, &rm_int19);
148 setvector(0x1a, BIOS_CS, &rm_int1a);
149 setvector(0x1b, BIOS_CS, &rm_int1b);
150 setvector(0x1c, BIOS_CS, &rm_int1c);
151 setvector(0x1d, BIOS_CS, &rm_int1d);
152 setvector(0x1e, BIOS_CS, &rm_int1e);
153 setvector(0x1f, BIOS_CS, &rm_int1f);
154
wdenk7a8e9bed2003-05-31 18:35:21 +0000155 set_jmp_vector(0xfff0, &realmode_reset);
156 set_jmp_vector(0xfe6e, &realmode_pci_bios_call_entry);
wdenk8bde7f72003-06-27 21:31:46 +0000157
wdenk2262cfe2002-11-18 00:14:45 +0000158 /* fill in data area */
wdenk7a8e9bed2003-05-31 18:35:21 +0000159 RELOC_16_WORD(0xf000, ram_in_64kb_chunks) = gd->ram_size >> 16;
160 RELOC_16_WORD(0xf000, bios_equipment) = 0; /* FixMe */
wdenk8bde7f72003-06-27 21:31:46 +0000161
wdenk7a8e9bed2003-05-31 18:35:21 +0000162 /* If we assume only one PCI hose, this PCI hose
wdenk8bde7f72003-06-27 21:31:46 +0000163 * will own PCI bus #0, and the last PCI bus of
164 * that PCI hose will be the last PCI bus in the
165 * system.
wdenk7a8e9bed2003-05-31 18:35:21 +0000166 * (This, ofcause break on multi hose systems,
wdenk8bde7f72003-06-27 21:31:46 +0000167 * but our PCI BIOS only support one hose anyway)
wdenk7a8e9bed2003-05-31 18:35:21 +0000168 */
Graeme Russ3ef96de2008-09-07 07:08:42 +1000169#ifdef CONFIG_PCI
wdenk7a8e9bed2003-05-31 18:35:21 +0000170 pri_hose = pci_bus_to_hose(0);
171 if (NULL != pri_hose) {
wdenk8bde7f72003-06-27 21:31:46 +0000172 /* fill in last pci bus number for use by the realmode
wdenk7a8e9bed2003-05-31 18:35:21 +0000173 * PCI BIOS */
174 RELOC_16_BYTE(0xf000, pci_last_bus) = pri_hose->last_busno;
175 }
Graeme Russ3ef96de2008-09-07 07:08:42 +1000176#endif
wdenk2262cfe2002-11-18 00:14:45 +0000177 return 0;
178}