ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / include / asm-sparc / oplib.h
1 /* $Id: oplib.h,v 1.23 2001/12/21 00:54:31 davem Exp $
2  * oplib.h:  Describes the interface and available routines in the
3  *           Linux Prom library.
4  *
5  * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
6  */
7
8 #ifndef __SPARC_OPLIB_H
9 #define __SPARC_OPLIB_H
10
11 #include <asm/openprom.h>
12 #include <linux/spinlock.h>
13
14 /* The master romvec pointer... */
15 extern struct linux_romvec *romvec;
16
17 /* Enumeration to describe the prom major version we have detected. */
18 enum prom_major_version {
19         PROM_V0,      /* Original sun4c V0 prom */
20         PROM_V2,      /* sun4c and early sun4m V2 prom */
21         PROM_V3,      /* sun4m and later, up to sun4d/sun4e machines V3 */
22         PROM_P1275,   /* IEEE compliant ISA based Sun PROM, only sun4u */
23         PROM_AP1000,  /* actually no prom at all */
24         PROM_SUN4,    /* Old sun4 proms are totally different, but we'll shoehorn it to make it fit */
25 };
26
27 extern enum prom_major_version prom_vers;
28 /* Revision, and firmware revision. */
29 extern unsigned int prom_rev, prom_prev;
30
31 /* Root node of the prom device tree, this stays constant after
32  * initialization is complete.
33  */
34 extern int prom_root_node;
35
36 /* PROM stdin and stdout */
37 extern int prom_stdin, prom_stdout;
38
39 /* Pointer to prom structure containing the device tree traversal
40  * and usage utility functions.  Only prom-lib should use these,
41  * users use the interface defined by the library only!
42  */
43 extern struct linux_nodeops *prom_nodeops;
44
45 /* The functions... */
46
47 /* You must call prom_init() before using any of the library services,
48  * preferably as early as possible.  Pass it the romvec pointer.
49  */
50 extern void prom_init(struct linux_romvec *rom_ptr);
51
52 /* Boot argument acquisition, returns the boot command line string. */
53 extern char *prom_getbootargs(void);
54
55 /* Device utilities. */
56
57 /* Map and unmap devices in IO space at virtual addresses. Note that the
58  * virtual address you pass is a request and the prom may put your mappings
59  * somewhere else, so check your return value as that is where your new
60  * mappings really are!
61  *
62  * Another note, these are only available on V2 or higher proms!
63  */
64 extern char *prom_mapio(char *virt_hint, int io_space, unsigned int phys_addr, unsigned int num_bytes);
65 extern void prom_unmapio(char *virt_addr, unsigned int num_bytes);
66
67 /* Device operations. */
68
69 /* Open the device described by the passed string.  Note, that the format
70  * of the string is different on V0 vs. V2->higher proms.  The caller must
71  * know what he/she is doing!  Returns the device descriptor, an int.
72  */
73 extern int prom_devopen(char *device_string);
74
75 /* Close a previously opened device described by the passed integer
76  * descriptor.
77  */
78 extern int prom_devclose(int device_handle);
79
80 /* Do a seek operation on the device described by the passed integer
81  * descriptor.
82  */
83 extern void prom_seek(int device_handle, unsigned int seek_hival,
84                       unsigned int seek_lowval);
85
86 /* Machine memory configuration routine. */
87
88 /* This function returns a V0 format memory descriptor table, it has three
89  * entries.  One for the total amount of physical ram on the machine, one
90  * for the amount of physical ram available, and one describing the virtual
91  * areas which are allocated by the prom.  So, in a sense the physical
92  * available is a calculation of the total physical minus the physical mapped
93  * by the prom with virtual mappings.
94  *
95  * These lists are returned pre-sorted, this should make your life easier
96  * since the prom itself is way too lazy to do such nice things.
97  */
98 extern struct linux_mem_v0 *prom_meminfo(void);
99
100 /* Miscellaneous routines, don't really fit in any category per se. */
101
102 /* Reboot the machine with the command line passed. */
103 extern void prom_reboot(char *boot_command);
104
105 /* Evaluate the forth string passed. */
106 extern void prom_feval(char *forth_string);
107
108 /* Enter the prom, with possibility of continuation with the 'go'
109  * command in newer proms.
110  */
111 extern void prom_cmdline(void);
112
113 /* Enter the prom, with no chance of continuation for the stand-alone
114  * which calls this.
115  */
116 extern void prom_halt(void) __attribute__ ((noreturn));
117
118 /* Set the PROM 'sync' callback function to the passed function pointer.
119  * When the user gives the 'sync' command at the prom prompt while the
120  * kernel is still active, the prom will call this routine.
121  *
122  * XXX The arguments are different on V0 vs. V2->higher proms, grrr! XXX
123  */
124 typedef void (*sync_func_t)(void);
125 extern void prom_setsync(sync_func_t func_ptr);
126
127 /* Acquire the IDPROM of the root node in the prom device tree.  This
128  * gets passed a buffer where you would like it stuffed.  The return value
129  * is the format type of this idprom or 0xff on error.
130  */
131 extern unsigned char prom_get_idprom(char *idp_buffer, int idpbuf_size);
132
133 /* Get the prom major version. */
134 extern int prom_version(void);
135
136 /* Get the prom plugin revision. */
137 extern int prom_getrev(void);
138
139 /* Get the prom firmware revision. */
140 extern int prom_getprev(void);
141
142 /* Character operations to/from the console.... */
143
144 /* Non-blocking get character from console. */
145 extern int prom_nbgetchar(void);
146
147 /* Non-blocking put character to console. */
148 extern int prom_nbputchar(char character);
149
150 /* Blocking get character from console. */
151 extern char prom_getchar(void);
152
153 /* Blocking put character to console. */
154 extern void prom_putchar(char character);
155
156 /* Prom's internal routines, don't use in kernel/boot code. */
157 extern void prom_printf(char *fmt, ...);
158 extern void prom_write(const char *buf, unsigned int len);
159
160 /* Query for input device type */
161
162 enum prom_input_device {
163         PROMDEV_IKBD,                   /* input from keyboard */
164         PROMDEV_ITTYA,                  /* input from ttya */
165         PROMDEV_ITTYB,                  /* input from ttyb */
166         PROMDEV_I_UNK,
167 };
168
169 extern enum prom_input_device prom_query_input_device(void);
170
171 /* Query for output device type */
172
173 enum prom_output_device {
174         PROMDEV_OSCREEN,                /* to screen */
175         PROMDEV_OTTYA,                  /* to ttya */
176         PROMDEV_OTTYB,                  /* to ttyb */
177         PROMDEV_O_UNK,
178 };
179
180 extern enum prom_output_device prom_query_output_device(void);
181
182 /* Multiprocessor operations... */
183
184 /* Start the CPU with the given device tree node, context table, and context
185  * at the passed program counter.
186  */
187 extern int prom_startcpu(int cpunode, struct linux_prom_registers *context_table,
188                          int context, char *program_counter);
189
190 /* Stop the CPU with the passed device tree node. */
191 extern int prom_stopcpu(int cpunode);
192
193 /* Idle the CPU with the passed device tree node. */
194 extern int prom_idlecpu(int cpunode);
195
196 /* Re-Start the CPU with the passed device tree node. */
197 extern int prom_restartcpu(int cpunode);
198
199 /* PROM memory allocation facilities... */
200
201 /* Allocated at possibly the given virtual address a chunk of the
202  * indicated size.
203  */
204 extern char *prom_alloc(char *virt_hint, unsigned int size);
205
206 /* Free a previously allocated chunk. */
207 extern void prom_free(char *virt_addr, unsigned int size);
208
209 /* Sun4/sun4c specific memory-management startup hook. */
210
211 /* Map the passed segment in the given context at the passed
212  * virtual address.
213  */
214 extern void prom_putsegment(int context, unsigned long virt_addr,
215                             int physical_segment);
216
217
218 /* PROM device tree traversal functions... */
219
220 #ifdef PROMLIB_INTERNAL
221
222 /* Internal version of prom_getchild. */
223 extern int __prom_getchild(int parent_node);
224
225 /* Internal version of prom_getsibling. */
226 extern int __prom_getsibling(int node);
227
228 #endif
229
230
231 /* Get the child node of the given node, or zero if no child exists. */
232 extern int prom_getchild(int parent_node);
233
234 /* Get the next sibling node of the given node, or zero if no further
235  * siblings exist.
236  */
237 extern int prom_getsibling(int node);
238
239 /* Get the length, at the passed node, of the given property type.
240  * Returns -1 on error (ie. no such property at this node).
241  */
242 extern int prom_getproplen(int thisnode, char *property);
243
244 /* Fetch the requested property using the given buffer.  Returns
245  * the number of bytes the prom put into your buffer or -1 on error.
246  */
247 extern int prom_getproperty(int thisnode, char *property,
248                             char *prop_buffer, int propbuf_size);
249
250 /* Acquire an integer property. */
251 extern int prom_getint(int node, char *property);
252
253 /* Acquire an integer property, with a default value. */
254 extern int prom_getintdefault(int node, char *property, int defval);
255
256 /* Acquire a boolean property, 0=FALSE 1=TRUE. */
257 extern int prom_getbool(int node, char *prop);
258
259 /* Acquire a string property, null string on error. */
260 extern void prom_getstring(int node, char *prop, char *buf, int bufsize);
261
262 /* Does the passed node have the given "name"? YES=1 NO=0 */
263 extern int prom_nodematch(int thisnode, char *name);
264
265 /* Puts in buffer a prom name in the form name@x,y or name (x for which_io 
266  * and y for first regs phys address
267  */
268 extern int prom_getname(int node, char *buf, int buflen);
269
270 /* Search all siblings starting at the passed node for "name" matching
271  * the given string.  Returns the node on success, zero on failure.
272  */
273 extern int prom_searchsiblings(int node_start, char *name);
274
275 /* Return the first property type, as a string, for the given node.
276  * Returns a null string on error.
277  */
278 extern char *prom_firstprop(int node, char *buffer);
279
280 /* Returns the next property after the passed property for the given
281  * node.  Returns null string on failure.
282  */
283 extern char *prom_nextprop(int node, char *prev_property, char *buffer);
284
285 /* Returns phandle of the path specified */
286 extern int prom_finddevice(char *name);
287
288 /* Returns 1 if the specified node has given property. */
289 extern int prom_node_has_property(int node, char *property);
290
291 /* Set the indicated property at the given node with the passed value.
292  * Returns the number of bytes of your value that the prom took.
293  */
294 extern int prom_setprop(int node, char *prop_name, char *prop_value,
295                         int value_size);
296                         
297 extern int prom_pathtoinode(char *path);
298 extern int prom_inst2pkg(int);
299
300 /* Dorking with Bus ranges... */
301
302 /* Apply promlib probes OBIO ranges to registers. */
303 extern void prom_apply_obio_ranges(struct linux_prom_registers *obioregs, int nregs);
304
305 /* Apply ranges of any prom node (and optionally parent node as well) to registers. */
306 extern void prom_apply_generic_ranges(int node, int parent, 
307                                       struct linux_prom_registers *sbusregs, int nregs);
308
309 /* CPU probing helpers.  */
310 int cpu_find_by_instance(int instance, int *prom_node, int *mid);
311 int cpu_find_by_mid(int mid, int *prom_node);
312 int cpu_get_hwmid(int prom_node);
313
314 extern spinlock_t prom_lock;
315
316 #endif /* !(__SPARC_OPLIB_H) */