xref: /netbsd/share/man/man4/man4.sparc/openprom.4 (revision 6550d01e)
1.\"	$NetBSD: openprom.4,v 1.8 2003/08/07 10:31:08 agc Exp $
2.\"
3.\" Copyright (c) 1992, 1993
4.\"	The Regents of the University of California.  All rights reserved.
5.\"
6.\" This software was developed by the Computer Systems Engineering group
7.\" at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
8.\" contributed to Berkeley.
9.\"
10.\" Redistribution and use in source and binary forms, with or without
11.\" modification, are permitted provided that the following conditions
12.\" are met:
13.\" 1. Redistributions of source code must retain the above copyright
14.\"    notice, this list of conditions and the following disclaimer.
15.\" 2. Redistributions in binary form must reproduce the above copyright
16.\"    notice, this list of conditions and the following disclaimer in the
17.\"    documentation and/or other materials provided with the distribution.
18.\" 3. Neither the name of the University nor the names of its contributors
19.\"    may be used to endorse or promote products derived from this software
20.\"    without specific prior written permission.
21.\"
22.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32.\" SUCH DAMAGE.
33.\"
34.\"     from: @(#)openprom.4	8.1 (Berkeley) 6/5/93
35.\"
36.Dd June 5, 1993
37.Dt OPENPROM 4 sparc
38.Os
39.Sh NAME
40.Nm openprom
41.Nd Sun OPENPROM and EEPROM interface
42.Sh SYNOPSIS
43.In machine/openpromio.h
44.Sh DESCRIPTION
45The file
46.Nm /dev/openprom
47is an interface to the SPARC OPENPROM,
48including the EEPROM area.
49This interface is highly stylized;
50ioctls are used for all operations.
51These ioctls refer to
52.Dq nodes ,
53which are simply
54.Dq magic
55integer values describing data areas.
56Occasionally the number 0 may be used or returned instead,
57as described below.
58A special distinguished
59.Dq options
60node holds the EEPROM settings.
61.Pp
62The calls that take and/or return a node
63use a pointer to an
64.Li int
65variable for this purpose;
66others use a pointer to an
67.Li struct opiocdesc
68descriptor,
69which contains a node and two counted strings.
70The first string comprises the fields
71.Li op_namelen
72(an
73.Li int )
74and
75.Li op_name
76(a
77.Li "char *" ) ,
78giving the name of a field.
79The second string comprises the fields
80.Li op_buflen
81and
82.Li op_buf ,
83used analogously.
84These two counted strings work in a
85.Dq value-result
86fashion.
87At entry to the ioctl,
88the counts are expected to reflect the buffer size;
89on return,
90the counts are updated to reflect the buffer contents.
91.Pp
92The following ioctls are supported:
93.Bl -tag -width OPIOCGETOPTNODE
94.It Dv OPIOCGETOPTNODE
95Takes nothing, and fills in the options node number.
96.It OPIOCGETNEXT
97Takes a node number and returns the number of the following node.
98The node following the last node is number 0;
99the node following number 0 is the first node.
100.It Dv OPIOCGETCHILD
101Takes a node number and returns the number of the first
102.Dq child
103of that node.
104This child may have siblings; these can be discovered by using
105.Dv OPIOCGETNEXT .
106.It Dv OPIOCGET
107Fills in the value of the named property for the given node.
108If no such property is associated with that node,
109the value length is set to -1.
110If the named property exists but has no value,
111the value length is set to 0.
112.It Dv OPIOCSET
113Writes the given value under the given name.
114The OPENPROM may refuse this operation;
115in this case
116.Dv EINVAL
117is returned.
118.It Dv OPIOCNEXTPROP
119Finds the property whose name follows the given name
120in OPENPROM internal order.
121The resulting name is returned in the value field.
122If the named property is the last, the
123.Dq next
124name is the empty string.
125As with
126.Dv OPIOCGETNEXT ,
127the next name after the empty string is the first name.
128.El
129.Sh FILES
130.Pa /dev/openprom
131.Sh ERRORS
132The following may result in rejection of an operation:
133.Bl -tag -width Er
134.It Bq Er EINVAL
135The given node number
136is not zero
137and does not correspond to any valid node,
138or is zero where zero is not allowed.
139.It Bq Er EBADF
140The requested operation requires permissions not specified at the call to
141.Fn open .
142.It Bq Er ENAMETOOLONG
143The given name or value field
144exceeds the maximum allowed length (8191 bytes).
145.El
146.Sh SEE ALSO
147.Xr ioctl 2
148.Pp
149.Pa http://playground.sun.com/1275/
150.Sh BUGS
151Due to limitations within the
152.Nm
153itself, these functions run at elevated priority
154and may adversely affect system performance.
155.Pp
156The
157.Tn Sun
158.Nm
159is what became the Open Firmware
160.Pq Tn IEEE 1275
161standard for processor and system independent boot firmware.
162