2005-04-16 18:20:36 -04:00
|
|
|
/* $Id: init.c,v 1.10 1999/09/21 14:35:59 davem Exp $
|
|
|
|
* init.c: Initialize internal variables used by the PROM
|
|
|
|
* library functions.
|
|
|
|
*
|
|
|
|
* Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
|
|
|
|
* Copyright (C) 1996,1997 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/string.h>
|
|
|
|
#include <linux/ctype.h>
|
|
|
|
|
|
|
|
#include <asm/openprom.h>
|
|
|
|
#include <asm/oplib.h>
|
|
|
|
|
2006-03-08 20:18:19 -05:00
|
|
|
/* OBP version string. */
|
|
|
|
char prom_version[80];
|
2005-04-16 18:20:36 -04:00
|
|
|
|
|
|
|
/* The root node of the prom device tree. */
|
|
|
|
int prom_stdin, prom_stdout;
|
|
|
|
int prom_chosen_node;
|
|
|
|
|
|
|
|
/* You must call prom_init() before you attempt to use any of the
|
|
|
|
* routines in the prom library. It returns 0 on success, 1 on
|
|
|
|
* failure. It gets passed the pointer to the PROM vector.
|
|
|
|
*/
|
|
|
|
|
|
|
|
extern void prom_cif_init(void *, void *);
|
|
|
|
|
|
|
|
void __init prom_init(void *cif_handler, void *cif_stack)
|
|
|
|
{
|
|
|
|
int node;
|
|
|
|
|
|
|
|
prom_cif_init(cif_handler, cif_stack);
|
|
|
|
|
[SPARC64]: Rewrite bootup sequence.
Instead of all of this cpu-specific code to remap the kernel
to the correct location, use portable firmware calls to do
this instead.
What we do now is the following in position independant
assembler:
chosen_node = prom_finddevice("/chosen");
prom_mmu_ihandle_cache = prom_getint(chosen_node, "mmu");
vaddr = 4MB_ALIGN(current_text_addr());
prom_translate(vaddr, &paddr_high, &paddr_low, &mode);
prom_boot_mapping_mode = mode;
prom_boot_mapping_phys_high = paddr_high;
prom_boot_mapping_phys_low = paddr_low;
prom_map(-1, 8 * 1024 * 1024, KERNBASE, paddr_low);
and that replaces the massive amount of by-hand TLB probing and
programming we used to do here.
The new code should also handle properly the case where the kernel
is mapped at the correct address already (think: future kexec
support).
Consequently, the bulk of remap_kernel() dies as does the entirety
of arch/sparc64/prom/map.S
We try to share some strings in the PROM library with the ones used
at bootup, and while we're here mark input strings to oplib.h routines
with "const" when appropriate.
There are many more simplifications now possible. For one thing, we
can consolidate the two copies we now have of a lot of cpu setup code
sitting in head.S and trampoline.S.
This is a significant step towards CONFIG_DEBUG_PAGEALLOC support.
Signed-off-by: David S. Miller <davem@davemloft.net>
2005-09-22 23:11:33 -04:00
|
|
|
prom_chosen_node = prom_finddevice(prom_chosen_path);
|
2005-04-16 18:20:36 -04:00
|
|
|
if (!prom_chosen_node || prom_chosen_node == -1)
|
|
|
|
prom_halt();
|
|
|
|
|
2006-02-09 05:52:44 -05:00
|
|
|
prom_stdin = prom_getint(prom_chosen_node, "stdin");
|
|
|
|
prom_stdout = prom_getint(prom_chosen_node, "stdout");
|
2005-04-16 18:20:36 -04:00
|
|
|
|
|
|
|
node = prom_finddevice("/openprom");
|
|
|
|
if (!node || node == -1)
|
|
|
|
prom_halt();
|
|
|
|
|
2006-03-08 20:18:19 -05:00
|
|
|
prom_getstring(node, "version", prom_version, sizeof(prom_version));
|
2005-04-16 18:20:36 -04:00
|
|
|
|
2006-02-09 05:52:44 -05:00
|
|
|
prom_printf("\n");
|
2005-04-16 18:20:36 -04:00
|
|
|
|
2006-03-08 20:18:19 -05:00
|
|
|
printk("PROMLIB: Sun IEEE Boot Prom '%s'\n", prom_version);
|
2006-02-09 05:52:44 -05:00
|
|
|
printk("PROMLIB: Root node compatible: %s\n", prom_root_compatible);
|
2005-04-16 18:20:36 -04:00
|
|
|
}
|