2003-04-22 21:02:15 +02:00
|
|
|
/*
|
|
|
|
This software and ancillary information (herein called SOFTWARE )
|
|
|
|
called LinuxBIOS is made available under the terms described
|
|
|
|
here. The SOFTWARE has been approved for release with associated
|
|
|
|
LA-CC Number 00-34 . Unless otherwise indicated, this SOFTWARE has
|
|
|
|
been authored by an employee or employees of the University of
|
|
|
|
California, operator of the Los Alamos National Laboratory under
|
|
|
|
Contract No. W-7405-ENG-36 with the U.S. Department of Energy. The
|
|
|
|
U.S. Government has rights to use, reproduce, and distribute this
|
|
|
|
SOFTWARE. The public may copy, distribute, prepare derivative works
|
|
|
|
and publicly display this SOFTWARE without charge, provided that this
|
|
|
|
Notice and any statement of authorship are reproduced on all copies.
|
|
|
|
Neither the Government nor the University makes any warranty, express
|
|
|
|
or implied, or assumes any liability or responsibility for the use of
|
|
|
|
this SOFTWARE. If SOFTWARE is modified to produce derivative works,
|
|
|
|
such modified SOFTWARE should be clearly marked, so as not to confuse
|
|
|
|
it with the version available from LANL.
|
|
|
|
*/
|
|
|
|
/* Copyright 2000, Ron Minnich, Advanced Computing Lab, LANL
|
|
|
|
* rminnich@lanl.gov
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* C Bootstrap code for the LinuxBIOS
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <console/console.h>
|
|
|
|
#include <version.h>
|
|
|
|
#include <boot/tables.h>
|
2003-04-24 08:25:08 +02:00
|
|
|
#include <device/device.h>
|
|
|
|
#include <device/pci.h>
|
2003-07-19 06:28:22 +02:00
|
|
|
#include <delay.h>
|
2004-10-14 22:54:17 +02:00
|
|
|
#include <stdlib.h>
|
2003-04-22 21:02:15 +02:00
|
|
|
#include <part/hard_reset.h>
|
2004-10-27 10:53:57 +02:00
|
|
|
#include <part/init_timer.h>
|
2003-04-22 21:02:15 +02:00
|
|
|
#include <boot/elf.h>
|
|
|
|
|
|
|
|
void hardwaremain(int boot_complete)
|
|
|
|
{
|
2004-10-14 22:54:17 +02:00
|
|
|
/* the order here is a bit tricky. We don't want to do much of
|
|
|
|
* anything that uses config registers until after PciAllocateResources
|
|
|
|
* since that function also figures out what kind of config strategy
|
|
|
|
* to use (type 1 or type 2).
|
|
|
|
* so we turn on cache, then worry about PCI setup, then do other
|
|
|
|
* things, so that the other work can use the PciRead* and PciWrite*
|
|
|
|
* functions.
|
|
|
|
*/
|
2003-04-22 21:02:15 +02:00
|
|
|
struct lb_memory *lb_mem;
|
|
|
|
|
|
|
|
post_code(0x80);
|
2004-05-13 22:39:07 +02:00
|
|
|
|
2003-04-22 21:02:15 +02:00
|
|
|
/* displayinit MUST PRECEDE ALL PRINTK! */
|
|
|
|
console_init();
|
|
|
|
|
|
|
|
post_code(0x39);
|
|
|
|
printk_notice("LinuxBIOS-%s%s %s %s...\n",
|
2004-10-14 22:54:17 +02:00
|
|
|
linuxbios_version, linuxbios_extra_version, linuxbios_build,
|
|
|
|
(boot_complete)?"rebooting":"booting");
|
2003-04-22 21:02:15 +02:00
|
|
|
|
|
|
|
post_code(0x40);
|
|
|
|
|
|
|
|
/* If we have already booted attempt a hard reboot */
|
|
|
|
if (boot_complete) {
|
|
|
|
hard_reset();
|
|
|
|
}
|
2004-03-23 22:28:05 +01:00
|
|
|
|
2004-10-16 08:20:29 +02:00
|
|
|
/* FIXME: Is there a better way to handle this? */
|
|
|
|
init_timer();
|
2003-04-22 21:02:15 +02:00
|
|
|
|
2004-10-14 22:54:17 +02:00
|
|
|
/* pick how to scan the bus. This is first so we can get at memory size. */
|
2003-04-22 21:02:15 +02:00
|
|
|
printk_info("Finding PCI configuration type.\n");
|
|
|
|
pci_set_method();
|
|
|
|
post_code(0x5f);
|
|
|
|
dev_enumerate();
|
|
|
|
post_code(0x66);
|
2004-10-14 22:54:17 +02:00
|
|
|
/* Now do the real bus.
|
|
|
|
* We round the total ram up a lot for thing like the SISFB, which
|
|
|
|
* shares high memory with the CPU.
|
|
|
|
*/
|
2003-04-22 21:02:15 +02:00
|
|
|
dev_configure();
|
|
|
|
post_code(0x88);
|
|
|
|
|
|
|
|
dev_enable();
|
2003-05-19 21:16:21 +02:00
|
|
|
|
2003-04-22 21:02:15 +02:00
|
|
|
dev_initialize();
|
|
|
|
post_code(0x89);
|
|
|
|
|
2004-10-14 22:54:17 +02:00
|
|
|
/* Now that we have collected all of our information
|
|
|
|
* write our configuration tables.
|
|
|
|
*/
|
|
|
|
lb_mem = write_tables();
|
2003-04-22 21:02:15 +02:00
|
|
|
|
2004-03-17 18:10:32 +01:00
|
|
|
#if CONFIG_FS_STREAM == 1
|
|
|
|
filo(lb_mem);
|
|
|
|
#else
|
2003-04-22 21:02:15 +02:00
|
|
|
elfboot(lb_mem);
|
2004-03-17 18:10:32 +01:00
|
|
|
#endif
|
2003-04-22 21:02:15 +02:00
|
|
|
}
|
|
|
|
|