~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/sparc/prom/init_64.c

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 // SPDX-License-Identifier: GPL-2.0
  2 /*
  3  * init.c:  Initialize internal variables used by the PROM
  4  *          library functions.
  5  *
  6  * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
  7  * Copyright (C) 1996,1997 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
  8  */
  9 
 10 #include <linux/kernel.h>
 11 #include <linux/init.h>
 12 #include <linux/string.h>
 13 #include <linux/ctype.h>
 14 
 15 #include <asm/openprom.h>
 16 #include <asm/oplib.h>
 17 
 18 /* OBP version string. */
 19 char prom_version[80];
 20 
 21 /* The root node of the prom device tree. */
 22 int prom_stdout;
 23 phandle prom_chosen_node;
 24 
 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.
 28  */
 29 void __init prom_init(void *cif_handler)
 30 {
 31         phandle node;
 32 
 33         prom_cif_init(cif_handler);
 34 
 35         prom_chosen_node = prom_finddevice(prom_chosen_path);
 36         if (!prom_chosen_node || (s32)prom_chosen_node == -1)
 37                 prom_halt();
 38 
 39         prom_stdout = prom_getint(prom_chosen_node, "stdout");
 40 
 41         node = prom_finddevice("/openprom");
 42         if (!node || (s32)node == -1)
 43                 prom_halt();
 44 
 45         prom_getstring(node, "version", prom_version, sizeof(prom_version));
 46 
 47         prom_printf("\n");
 48 }
 49 
 50 void __init prom_init_report(void)
 51 {
 52         printk("PROMLIB: Sun IEEE Boot Prom '%s'\n", prom_version);
 53         printk("PROMLIB: Root node compatible: %s\n", prom_root_compatible);
 54 }
 55 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php