1 // SPDX-License-Identifier: GPL-2.0
3 * init.c: Initialize internal variables used by the PROM
10 #include <linux/kernel.h>
11 #include <linux/init.h>
12 #include <linux/string.h>
13 #include <linux/ctype.h>
15 #include <asm/openprom.h>
16 #include <asm/oplib.h>
18 /* OBP version string. */
19 char prom_version[80];
21 /* The root node of the prom device tree. */
23 phandle prom_chosen_node;
25 /* You must call prom_init() before you attempt to use any of the
26 * routines in the prom library.
27 * It gets passed the pointer to the PROM vector.
29 void __init prom_init(void *cif_handler)
33 prom_cif_init(cif_handler);
35 prom_chosen_node = prom_finddevice(prom_chosen_path);
36 if (!prom_chosen_node || (s32)prom_chosen_node == -1)
39 prom_stdout = prom_getint(prom_chosen_node, "stdout");
41 node = prom_finddevice("/openprom");
42 if (!node || (s32)node == -1)
45 prom_getstring(node, "version", prom_version, sizeof(prom_version));
50 void __init prom_init_report(void)
52 printk("PROMLIB: Sun IEEE Boot Prom '%s'\n", prom_version);
53 printk("PROMLIB: Root node compatible: %s\n", prom_root_compatible);