1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
|
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2006 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#ifndef _SYS_PROMIMPL_H
#define _SYS_PROMIMPL_H
#pragma ident "%Z%%M% %I% %E% SMI"
/*
* promif implementation header file; private to promif implementation.
*
* These interfaces are not 'exported' in the same sense as
* those described in promif.h
*
* Used so that the kernel and other stand-alones (eg boot)
* don't have to directly reference the prom (of which there
* are now several completely different variants).
*/
#include <sys/types.h>
#include <sys/promif.h>
#include <sys/prom_isa.h>
#if defined(_MACHDEP)
#include <sys/prom_plat.h>
#endif
#ifdef __cplusplus
extern "C" {
#endif
extern int obp_romvec_version;
/*
* XXX for chatty stuff in prom_stdinpath/prom_stdoutpath until proposed
* changes from romvec pathnames to root node properties for stdin/stdout
* pathnames.
*/
/* #define PROM_DEBUG_STDPATH 1 */
/*
* Debugging macros for the promif functions.
*/
#define PROMIF_DMSG_VERBOSE 2
#define PROMIF_DMSG_NORMAL 1
extern int promif_debug; /* externally patchable */
#define PROMIF_DEBUG /* define this to enable debugging */
#define PROMIF_DEBUG_P1275 /* Debug 1275 client interface calls */
#ifdef PROMIF_DEBUG
#define PROMIF_DPRINTF(args) \
if (promif_debug) { \
if (promif_debug == PROMIF_DMSG_VERBOSE) \
prom_printf("file %s line %d: ", __FILE__, __LINE__); \
prom_printf args; \
}
#else
#define PROMIF_DPRINTF(args)
#endif /* PROMIF_DEBUG */
#define prom_decode_int(v) (v)
/*
* minimum alignment required by prom
*/
#define PROMIF_MIN_ALIGN 1
/*
* Private utility routines (not exported as part of the interface)
*/
extern char *prom_strcpy(char *s1, char *s2);
extern char *prom_strncpy(char *s1, char *s2, size_t n);
extern int prom_strcmp(char *s1, char *s2);
extern int prom_strncmp(char *s1, char *s2, size_t n);
extern int prom_strlen(char *s);
extern char *prom_strrchr(char *s1, char c);
extern char *prom_strcat(char *s1, char *s2);
extern char *prom_strchr(const char *, int);
/*
* IEEE 1275 Routines defined by each platform using IEEE 1275:
*/
extern void *p1275_cif_init(void *);
extern int p1275_cif_call(void *);
#if defined(PROM_32BIT_ADDRS)
/*
* Client programs defining PROM_32BIT_ADDRS need to provide two
* callbacks to allow the promif routines to allocate and free memory
* allocated from the bottom 32-bits of the 64-bit address space.
*/
extern void *promplat_alloc(size_t);
extern void promplat_free(void *, size_t);
extern void promplat_bcopy(const void *s1, void *s2, size_t n);
#endif
/*
* More private globals
*/
extern int prom_aligned_allocator;
extern void *p1275cif; /* P1275 client interface cookie */
/*
* When this is non-NULL, the PROM output functions will attempt
* to redirect any thing directed to the PROM's stdout, which has
* been prequalified as being the console framebuffer.
*/
extern promif_redir_arg_t promif_redirect_arg;
extern promif_redir_t promif_redirect;
/*
* Every call into the prom is wrappered with these calls so that
* the caller can ensure that e.g. pre-emption is disabled
* while we're in the firmware. See 1109602.
*/
extern void promif_preprom(void);
extern void promif_postprom(void);
extern void (*promif_setprop_preprom)(void);
extern void (*promif_setprop_postprom)(void);
extern void (*promif_nextprop_preprom)(void);
extern void (*promif_nextprop_postprom)(void);
/*
* Some calls into the prom (those expected to generate output on the console)
* are wrappered with these calls so that the caller can ensure that
* the console framebuffer will be brought to full power before entering the
* firmware.
*/
extern promif_owrap_t *promif_preout(void);
extern void promif_postout(promif_owrap_t *);
/*
* The default allocator used in IEEE 1275 mode:
*/
extern caddr_t (*promif_allocator)(caddr_t, uint_t, uint_t);
/*
* The prom interface uses this string internally for prefixing error
* messages so that the "client" of the given instance of
* promif can be identified e.g. "boot", "kmdb" or "kernel".
*
* It is passed into the library via prom_init().
*/
extern char promif_clntname[];
/*
* The routine called when all else fails (and there may be no firmware
* interface at all!)
*/
extern void prom_fatal_error(const char *);
/*
* These functions are used by prom_prop.c for serializing i2c
* controller access on some platforms.
*/
extern void (*prom_setprop_enter)(void);
extern void (*prom_setprop_exit)(void);
#ifdef __cplusplus
}
#endif
#endif /* !_SYS_PROMIMPL_H */
|