1.\" -*- nroff -*-
2.\"
3.\" Copyright (c) 2018 Oleksandr Tymoshenko
4.\"
5.\" All rights reserved.
6.\"
7.\" This program is free software.
8.\"
9.\" Redistribution and use in source and binary forms, with or without
10.\" modification, are permitted provided that the following conditions
11.\" are met:
12.\" 1. Redistributions of source code must retain the above copyright
13.\"    notice, this list of conditions and the following disclaimer.
14.\" 2. Redistributions in binary form must reproduce the above copyright
15.\"    notice, this list of conditions and the following disclaimer in the
16.\"    documentation and/or other materials provided with the distribution.
17.\"
18.\" THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY EXPRESS OR
19.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21.\" IN NO EVENT SHALL THE DEVELOPERS BE LIABLE FOR ANY DIRECT, INDIRECT,
22.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28.\"
29.Dd April 8, 2018
30.Dt ofw_bus_status_okay 9
31.Os
32.Sh NAME
33.Nm ofw_bus_get_status ,
34.Nm ofw_bus_status_okay ,
35.Nm ofw_bus_node_status_okay
36.Nd check status of the device tree node
37.Sh SYNOPSIS
38.In dev/ofw/openfirm.h
39.In dev/ofw/ofw_bus.h
40.In dev/ofw/ofw_bus_subr.h
41.Ft const char *
42.Fn ofw_bus_get_status "device_t dev"
43.Ft int
44.Fn ofw_bus_status_okay "device_t dev"
45.Ft int
46.Fn ofw_bus_node_status_okay "phandle_t node"
47.Sh DESCRIPTION
48The "status" property of the device tree node indicates whether the device is
49enabled or not.
50Multiple hardware versions might be built using the same base System-on-Chip
51but with a different set of blocks enabled.
52It is common to use  SoC device tree and only enable/disable device nodes for
53the derivative boards.
54The device tree node is considered enabled only if it has "status" property
55with the value set to either "ok" or "okay".
56.Pp
57.Fn ofw_bus_get_status
58returns the value of the "status" property of the device tree node associated with the device
59.Fa dev .
60If the node does not have "status" property or there is no node associated with
61the device the function returns NULL.
62.Pp
63.Fn ofw_bus_status_okay
64returns 1 if the device tree node associated with the device
65.Fa dev
66has "status" property and its value is either "ok" or "okay".
67.Pp
68.Fn ofw_bus_node_status_okay
69returns 1 if the device tree node
70.Fa node
71has "status" property and its value is either "ok" or "okay".
72.Sh AUTHORS
73This manual page was written by
74.An Oleksandr Tymoshenko .
75