Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
init_32.c
Go to the documentation of this file.
1 /*
2  * init.c: Initialize internal variables used by the PROM
3  * library functions.
4  *
5  * Copyright (C) 1995 David S. Miller ([email protected])
6  * Copyright (C) 1998 Jakub Jelinek ([email protected])
7  */
8 
9 #include <linux/kernel.h>
10 #include <linux/init.h>
11 #include <linux/module.h>
12 
13 #include <asm/openprom.h>
14 #include <asm/oplib.h>
15 
17 EXPORT_SYMBOL(romvec);
18 
20 unsigned int prom_rev, prom_prev;
21 
22 /* The root node of the prom device tree. */
25 
26 /* Pointer to the device tree operations structure. */
28 
29 /* You must call prom_init() before you attempt to use any of the
30  * routines in the prom library.
31  * It gets passed the pointer to the PROM vector.
32  */
33 
35 {
36  romvec = rp;
37 
38  switch(romvec->pv_romvers) {
39  case 0:
41  break;
42  case 2:
44  break;
45  case 3:
47  break;
48  default:
49  prom_printf("PROMLIB: Bad PROM version %d\n",
50  romvec->pv_romvers);
51  prom_halt();
52  break;
53  }
54 
55  prom_rev = romvec->pv_plugin_revision;
56  prom_prev = romvec->pv_printrev;
57  prom_nodeops = romvec->pv_nodeops;
58 
60  if ((prom_root_node == 0) || ((s32)prom_root_node == -1))
61  prom_halt();
62 
63  if((((unsigned long) prom_nodeops) == 0) ||
64  (((unsigned long) prom_nodeops) == -1))
65  prom_halt();
66 
67  prom_meminit();
68 
70 
71  printk("PROMLIB: Sun Boot Prom Version %d Revision %d\n",
72  romvec->pv_romvers, prom_rev);
73 
74  /* Initialization successful. */
75 }