126280d88SMarius Strobl /*-
2*4d846d26SWarner Losh * SPDX-License-Identifier: BSD-2-Clause
3718cf2ccSPedro F. Giffuni *
426280d88SMarius Strobl * Copyright (c) 2001, 2003 by Thomas Moestl <tmm@FreeBSD.org>
526280d88SMarius Strobl * Copyright (c) 2004 by Marius Strobl <marius@FreeBSD.org>
626280d88SMarius Strobl * All rights reserved.
726280d88SMarius Strobl *
826280d88SMarius Strobl * Redistribution and use in source and binary forms, with or without
926280d88SMarius Strobl * modification, are permitted provided that the following conditions
1026280d88SMarius Strobl * are met:
1126280d88SMarius Strobl * 1. Redistributions of source code must retain the above copyright
1226280d88SMarius Strobl * notice, this list of conditions and the following disclaimer.
1326280d88SMarius Strobl * 2. Redistributions in binary form must reproduce the above copyright
1426280d88SMarius Strobl * notice, this list of conditions and the following disclaimer in the
1526280d88SMarius Strobl * documentation and/or other materials provided with the distribution.
1626280d88SMarius Strobl *
1726280d88SMarius Strobl * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
1826280d88SMarius Strobl * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
1926280d88SMarius Strobl * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
2026280d88SMarius Strobl * IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
2126280d88SMarius Strobl * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
2226280d88SMarius Strobl * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
2326280d88SMarius Strobl * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
2426280d88SMarius Strobl * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
2526280d88SMarius Strobl * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
2626280d88SMarius Strobl * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2726280d88SMarius Strobl */
2826280d88SMarius Strobl
2926280d88SMarius Strobl #ifndef _DEV_OFW_OFW_BUS_H_
3026280d88SMarius Strobl #define _DEV_OFW_OFW_BUS_H_
3126280d88SMarius Strobl
3226280d88SMarius Strobl #include <sys/bus.h>
3326280d88SMarius Strobl
3426280d88SMarius Strobl #include <dev/ofw/openfirm.h>
3526280d88SMarius Strobl
3626280d88SMarius Strobl #include "ofw_bus_if.h"
3726280d88SMarius Strobl
3826280d88SMarius Strobl static __inline const char *
ofw_bus_get_compat(device_t dev)3926280d88SMarius Strobl ofw_bus_get_compat(device_t dev)
4026280d88SMarius Strobl {
4126280d88SMarius Strobl
4226280d88SMarius Strobl return (OFW_BUS_GET_COMPAT(device_get_parent(dev), dev));
4326280d88SMarius Strobl }
4426280d88SMarius Strobl
4526280d88SMarius Strobl static __inline const char *
ofw_bus_get_model(device_t dev)4626280d88SMarius Strobl ofw_bus_get_model(device_t dev)
4726280d88SMarius Strobl {
4826280d88SMarius Strobl
4926280d88SMarius Strobl return (OFW_BUS_GET_MODEL(device_get_parent(dev), dev));
5026280d88SMarius Strobl }
5126280d88SMarius Strobl
5226280d88SMarius Strobl static __inline const char *
ofw_bus_get_name(device_t dev)5326280d88SMarius Strobl ofw_bus_get_name(device_t dev)
5426280d88SMarius Strobl {
5526280d88SMarius Strobl
5626280d88SMarius Strobl return (OFW_BUS_GET_NAME(device_get_parent(dev), dev));
5726280d88SMarius Strobl }
5826280d88SMarius Strobl
5926280d88SMarius Strobl static __inline phandle_t
ofw_bus_get_node(device_t dev)6026280d88SMarius Strobl ofw_bus_get_node(device_t dev)
6126280d88SMarius Strobl {
6226280d88SMarius Strobl
6326280d88SMarius Strobl return (OFW_BUS_GET_NODE(device_get_parent(dev), dev));
6426280d88SMarius Strobl }
6526280d88SMarius Strobl
6626280d88SMarius Strobl static __inline const char *
ofw_bus_get_type(device_t dev)6726280d88SMarius Strobl ofw_bus_get_type(device_t dev)
6826280d88SMarius Strobl {
6926280d88SMarius Strobl
7026280d88SMarius Strobl return (OFW_BUS_GET_TYPE(device_get_parent(dev), dev));
7126280d88SMarius Strobl }
7226280d88SMarius Strobl
73f2148482SNathan Whitehorn static __inline int
ofw_bus_map_intr(device_t dev,phandle_t iparent,int icells,pcell_t * intr)74bbc6da03SNathan Whitehorn ofw_bus_map_intr(device_t dev, phandle_t iparent, int icells, pcell_t *intr)
75f2148482SNathan Whitehorn {
76bbc6da03SNathan Whitehorn return (OFW_BUS_MAP_INTR(dev, dev, iparent, icells, intr));
77f2148482SNathan Whitehorn }
78f2148482SNathan Whitehorn
7926280d88SMarius Strobl #endif /* !_DEV_OFW_OFW_BUS_H_ */
80