NetBSD/sys/arch/powerpc/powerpc/openfirm.c
wiz b03725b863 Change OF_nextprop to match prototype change to void *
(Please don't change prototypes without changing the corresponding
functions!)
2000-11-22 18:18:32 +00:00

675 lines
11 KiB
C

/* $NetBSD: openfirm.c,v 1.6 2000/11/22 18:18:32 wiz Exp $ */
/*
* Copyright (C) 1995, 1996 Wolfgang Solfrank.
* Copyright (C) 1995, 1996 TooLs GmbH.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by TooLs GmbH.
* 4. The name of TooLs GmbH may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY TOOLS GMBH ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL TOOLS GMBH BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <sys/param.h>
#include <machine/psl.h>
#include <machine/stdarg.h>
#include <dev/ofw/openfirm.h>
char *OF_buf;
extern void ofw_stack __P((void));
extern void ofbcopy __P((const void *, void *, size_t));
int
OF_peer(phandle)
int phandle;
{
static struct {
char *name;
int nargs;
int nreturns;
int phandle;
int sibling;
} args = {
"peer",
1,
1,
};
ofw_stack();
args.phandle = phandle;
if (openfirmware(&args) == -1)
return 0;
return args.sibling;
}
int
OF_child(phandle)
int phandle;
{
static struct {
char *name;
int nargs;
int nreturns;
int phandle;
int child;
} args = {
"child",
1,
1,
};
ofw_stack();
args.phandle = phandle;
if (openfirmware(&args) == -1)
return 0;
return args.child;
}
int
OF_parent(phandle)
int phandle;
{
static struct {
char *name;
int nargs;
int nreturns;
int phandle;
int parent;
} args = {
"parent",
1,
1,
};
ofw_stack();
args.phandle = phandle;
if (openfirmware(&args) == -1)
return 0;
return args.parent;
}
int
OF_instance_to_package(ihandle)
int ihandle;
{
static struct {
char *name;
int nargs;
int nreturns;
int ihandle;
int phandle;
} args = {
"instance-to-package",
1,
1,
};
ofw_stack();
args.ihandle = ihandle;
if (openfirmware(&args) == -1)
return -1;
return args.phandle;
}
int
OF_getproplen(handle, prop)
int handle;
char *prop;
{
static struct {
char *name;
int nargs;
int nreturns;
int phandle;
char *prop;
int proplen;
} args = {
"getproplen",
2,
1,
};
ofw_stack();
args.phandle = handle;
args.prop = prop;
if (openfirmware(&args) == -1)
return -1;
return args.proplen;
}
int
OF_getprop(handle, prop, buf, buflen)
int handle;
char *prop;
void *buf;
int buflen;
{
static struct {
char *name;
int nargs;
int nreturns;
int phandle;
char *prop;
void *buf;
int buflen;
int size;
} args = {
"getprop",
4,
1,
};
ofw_stack();
if (buflen > NBPG)
return -1;
args.phandle = handle;
args.prop = prop;
args.buf = OF_buf;
args.buflen = buflen;
if (openfirmware(&args) == -1)
return -1;
if (args.size > buflen)
args.size = buflen;
if (args.size > 0)
ofbcopy(OF_buf, buf, args.size);
return args.size;
}
int
OF_nextprop(handle, prop, nextprop)
int handle;
char *prop;
void *nextprop;
{
static struct {
char *name;
int nargs;
int nreturns;
int phandle;
char *prop;
char *buf;
int flag;
} args = {
"nextprop",
3,
1,
};
ofw_stack();
args.phandle = handle;
args.prop = prop;
args.buf = OF_buf;
if (openfirmware(&args) == -1)
return -1;
strncpy(nextprop, OF_buf, 32);
return args.flag;
}
int
OF_finddevice(name)
char *name;
{
static struct {
char *name;
int nargs;
int nreturns;
char *device;
int phandle;
} args = {
"finddevice",
1,
1,
};
ofw_stack();
args.device = name;
if (openfirmware(&args) == -1)
return -1;
return args.phandle;
}
int
OF_instance_to_path(ihandle, buf, buflen)
int ihandle;
char *buf;
int buflen;
{
static struct {
char *name;
int nargs;
int nreturns;
int ihandle;
char *buf;
int buflen;
int length;
} args = {
"instance-to-path",
3,
1,
};
if (buflen > NBPG)
return -1;
args.ihandle = ihandle;
args.buf = OF_buf;
args.buflen = buflen;
if (openfirmware(&args) < 0)
return -1;
if (args.length > buflen)
args.length = buflen;
if (args.length > 0)
ofbcopy(OF_buf, buf, args.length);
return args.length;
}
int
OF_package_to_path(phandle, buf, buflen)
int phandle;
char *buf;
int buflen;
{
static struct {
char *name;
int nargs;
int nreturns;
int phandle;
char *buf;
int buflen;
int length;
} args = {
"package-to-path",
3,
1,
};
ofw_stack();
if (buflen > NBPG)
return -1;
args.phandle = phandle;
args.buf = OF_buf;
args.buflen = buflen;
if (openfirmware(&args) < 0)
return -1;
if (args.length > buflen)
args.length = buflen;
if (args.length > 0)
ofbcopy(OF_buf, buf, args.length);
return args.length;
}
int
#ifdef __STDC__
OF_call_method(char *method, int ihandle, int nargs, int nreturns, ...)
#else
OF_call_method(method, ihandle, nargs, nreturns, va_alist)
char *method;
int ihandle;
int nargs;
int nreturns;
va_dcl
#endif
{
va_list ap;
static struct {
char *name;
int nargs;
int nreturns;
char *method;
int ihandle;
int args_n_results[12];
} args = {
"call-method",
2,
1,
};
int *ip, n;
if (nargs > 6)
return -1;
args.nargs = nargs + 2;
args.nreturns = nreturns + 1;
args.method = method;
args.ihandle = ihandle;
va_start(ap, nreturns);
for (ip = args.args_n_results + (n = nargs); --n >= 0;)
*--ip = va_arg(ap, int);
ofw_stack();
if (openfirmware(&args) == -1)
return -1;
if (args.args_n_results[nargs])
return args.args_n_results[nargs];
for (ip = args.args_n_results + nargs + (n = args.nreturns); --n > 0;)
*va_arg(ap, int *) = *--ip;
va_end(ap);
return 0;
}
int
#ifdef __STDC__
OF_call_method_1(char *method, int ihandle, int nargs, ...)
#else
OF_call_method_1(method, ihandle, nargs, va_alist)
char *method;
int ihandle;
int nargs;
va_dcl
#endif
{
va_list ap;
static struct {
char *name;
int nargs;
int nreturns;
char *method;
int ihandle;
int args_n_results[8];
} args = {
"call-method",
2,
2,
};
int *ip, n;
if (nargs > 6)
return -1;
args.nargs = nargs + 2;
args.method = method;
args.ihandle = ihandle;
va_start(ap, nargs);
for (ip = args.args_n_results + (n = nargs); --n >= 0;)
*--ip = va_arg(ap, int);
va_end(ap);
ofw_stack();
if (openfirmware(&args) == -1)
return -1;
if (args.args_n_results[nargs])
return -1;
return args.args_n_results[nargs + 1];
}
int
OF_open(dname)
char *dname;
{
static struct {
char *name;
int nargs;
int nreturns;
char *dname;
int handle;
} args = {
"open",
1,
1,
};
int l;
ofw_stack();
if ((l = strlen(dname)) >= NBPG)
return -1;
ofbcopy(dname, OF_buf, l + 1);
args.dname = OF_buf;
if (openfirmware(&args) == -1)
return -1;
return args.handle;
}
void
OF_close(handle)
int handle;
{
static struct {
char *name;
int nargs;
int nreturns;
int handle;
} args = {
"close",
1,
0,
};
ofw_stack();
args.handle = handle;
openfirmware(&args);
}
/*
* This assumes that character devices don't read in multiples of NBPG.
*/
int
OF_read(handle, addr, len)
int handle;
void *addr;
int len;
{
static struct {
char *name;
int nargs;
int nreturns;
int ihandle;
void *addr;
int len;
int actual;
} args = {
"read",
3,
1,
};
int l, act = 0;
char *p = addr;
ofw_stack();
args.ihandle = handle;
args.addr = OF_buf;
for (; len > 0; len -= l, p += l) {
l = min(NBPG, len);
args.len = l;
if (openfirmware(&args) == -1)
return -1;
if (args.actual > 0) {
ofbcopy(OF_buf, p, args.actual);
act += args.actual;
}
if (args.actual < l)
if (act)
return act;
else
return args.actual;
}
return act;
}
int
OF_write(handle, addr, len)
int handle;
void *addr;
int len;
{
static struct {
char *name;
int nargs;
int nreturns;
int ihandle;
void *addr;
int len;
int actual;
} args = {
"write",
3,
1,
};
int l, act = 0;
char *p = addr;
ofw_stack();
args.ihandle = handle;
args.addr = OF_buf;
for (; len > 0; len -= l, p += l) {
l = min(NBPG, len);
ofbcopy(p, OF_buf, l);
args.len = l;
if (openfirmware(&args) == -1)
return -1;
l = args.actual;
act += l;
}
return act;
}
int
OF_seek(handle, pos)
int handle;
u_quad_t pos;
{
static struct {
char *name;
int nargs;
int nreturns;
int handle;
int poshi;
int poslo;
int status;
} args = {
"seek",
3,
1,
};
ofw_stack();
args.handle = handle;
args.poshi = (int)(pos >> 32);
args.poslo = (int)pos;
if (openfirmware(&args) == -1)
return -1;
return args.status;
}
void
OF_boot(bootspec)
char *bootspec;
{
static struct {
char *name;
int nargs;
int nreturns;
char *bootspec;
} args = {
"boot",
1,
0,
};
int l;
if ((l = strlen(bootspec)) >= NBPG)
panic("OF_boot");
ofw_stack();
ofbcopy(bootspec, OF_buf, l + 1);
args.bootspec = OF_buf;
openfirmware(&args);
while (1); /* just in case */
}
void
OF_enter()
{
static struct {
char *name;
int nargs;
int nreturns;
} args = {
"enter",
0,
0,
};
ofw_stack();
openfirmware(&args);
}
void
OF_exit()
{
static struct {
char *name;
int nargs;
int nreturns;
} args = {
"exit",
0,
0,
};
ofw_stack();
openfirmware(&args);
while (1); /* just in case */
}
void
(*OF_set_callback(newfunc))()
void (*newfunc)();
{
static struct {
char *name;
int nargs;
int nreturns;
void (*newfunc)();
void (*oldfunc)();
} args = {
"set-callback",
1,
1,
};
ofw_stack();
args.newfunc = newfunc;
if (openfirmware(&args) == -1)
return 0;
return args.oldfunc;
}
/*
* This version of bcopy doesn't work for overlapping regions!
*/
void
ofbcopy(src, dst, len)
const void *src;
void *dst;
size_t len;
{
const char *sp = src;
char *dp = dst;
if (src == dst)
return;
/*
* Do some optimization? XXX
*/
while (len-- > 0)
*dp++ = *sp++;
}