blob: d95db755828f351f18e2c1f1b160ebf571edead6 [file] [log] [blame]
Adrian Bunkb00dc832008-05-19 16:52:27 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * init.c: Initialize internal variables used by the PROM
3 * library functions.
4 *
5 * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
6 * Copyright (C) 1996,1997 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
7 */
8
9#include <linux/kernel.h>
10#include <linux/init.h>
11#include <linux/string.h>
12#include <linux/ctype.h>
13
14#include <asm/openprom.h>
15#include <asm/oplib.h>
16
David S. Miller90a66462006-03-08 17:18:19 -080017/* OBP version string. */
18char prom_version[80];
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20/* The root node of the prom device tree. */
David S. Millerbce5fee2010-12-12 14:57:53 -080021int prom_stdout;
Andres Salomon8d125562010-10-08 14:18:11 -070022phandle prom_chosen_node;
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24/* You must call prom_init() before you attempt to use any of the
Geert Uytterhoevene393d1b2012-06-20 06:58:06 +000025 * routines in the prom library.
26 * It gets passed the pointer to the PROM vector.
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 */
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029extern void prom_cif_init(void *, void *);
30
31void __init prom_init(void *cif_handler, void *cif_stack)
32{
Andres Salomon8d125562010-10-08 14:18:11 -070033 phandle node;
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35 prom_cif_init(cif_handler, cif_stack);
36
David S. Millerbff06d52005-09-22 20:11:33 -070037 prom_chosen_node = prom_finddevice(prom_chosen_path);
Andres Salomon4a3a2552010-11-11 22:42:06 -080038 if (!prom_chosen_node || (s32)prom_chosen_node == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 prom_halt();
40
David S. Millerd82ace72006-02-09 02:52:44 -080041 prom_stdout = prom_getint(prom_chosen_node, "stdout");
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43 node = prom_finddevice("/openprom");
Andres Salomon4a3a2552010-11-11 22:42:06 -080044 if (!node || (s32)node == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 prom_halt();
46
David S. Miller90a66462006-03-08 17:18:19 -080047 prom_getstring(node, "version", prom_version, sizeof(prom_version));
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
David S. Millerd82ace72006-02-09 02:52:44 -080049 prom_printf("\n");
David S. Millerce22e1d2008-02-07 02:14:48 -080050}
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
David S. Millerce22e1d2008-02-07 02:14:48 -080052void __init prom_init_report(void)
53{
David S. Miller90a66462006-03-08 17:18:19 -080054 printk("PROMLIB: Sun IEEE Boot Prom '%s'\n", prom_version);
David S. Millerd82ace72006-02-09 02:52:44 -080055 printk("PROMLIB: Root node compatible: %s\n", prom_root_compatible);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056}