xref: /freebsd/sys/dev/syscon/syscon.c (revision 62e8ccc3a489434af379c7f47da71545bc1e14ee)
1*62e8ccc3SEmmanuel Vadot /*-
2*62e8ccc3SEmmanuel Vadot  * SPDX-License-Identifier: BSD-2-Clause
3*62e8ccc3SEmmanuel Vadot  *
4*62e8ccc3SEmmanuel Vadot  * Copyright (c) 2017 Kyle Evans <kevans@FreeBSD.org>
5*62e8ccc3SEmmanuel Vadot  *
6*62e8ccc3SEmmanuel Vadot  * Redistribution and use in source and binary forms, with or without
7*62e8ccc3SEmmanuel Vadot  * modification, are permitted provided that the following conditions
8*62e8ccc3SEmmanuel Vadot  * are met:
9*62e8ccc3SEmmanuel Vadot  * 1. Redistributions of source code must retain the above copyright
10*62e8ccc3SEmmanuel Vadot  *    notice, this list of conditions and the following disclaimer.
11*62e8ccc3SEmmanuel Vadot  * 2. Redistributions in binary form must reproduce the above copyright
12*62e8ccc3SEmmanuel Vadot  *    notice, this list of conditions and the following disclaimer in the
13*62e8ccc3SEmmanuel Vadot  *    documentation and/or other materials provided with the distribution.
14*62e8ccc3SEmmanuel Vadot  *
15*62e8ccc3SEmmanuel Vadot  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16*62e8ccc3SEmmanuel Vadot  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17*62e8ccc3SEmmanuel Vadot  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18*62e8ccc3SEmmanuel Vadot  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19*62e8ccc3SEmmanuel Vadot  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20*62e8ccc3SEmmanuel Vadot  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21*62e8ccc3SEmmanuel Vadot  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22*62e8ccc3SEmmanuel Vadot  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23*62e8ccc3SEmmanuel Vadot  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24*62e8ccc3SEmmanuel Vadot  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25*62e8ccc3SEmmanuel Vadot  * SUCH DAMAGE.
26*62e8ccc3SEmmanuel Vadot  */
27*62e8ccc3SEmmanuel Vadot 
28*62e8ccc3SEmmanuel Vadot /*
29*62e8ccc3SEmmanuel Vadot  * This is a generic syscon driver, whose purpose is to provide access to
30*62e8ccc3SEmmanuel Vadot  * various unrelated bits packed in a single register space. It is usually used
31*62e8ccc3SEmmanuel Vadot  * as a fallback to more specific driver, but works well enough for simple
32*62e8ccc3SEmmanuel Vadot  * access.
33*62e8ccc3SEmmanuel Vadot  */
34*62e8ccc3SEmmanuel Vadot 
35*62e8ccc3SEmmanuel Vadot #include <sys/cdefs.h>
36*62e8ccc3SEmmanuel Vadot #include "opt_platform.h"
37*62e8ccc3SEmmanuel Vadot 
38*62e8ccc3SEmmanuel Vadot #include <sys/param.h>
39*62e8ccc3SEmmanuel Vadot #include <sys/systm.h>
40*62e8ccc3SEmmanuel Vadot #include <sys/bus.h>
41*62e8ccc3SEmmanuel Vadot #include <sys/kernel.h>
42*62e8ccc3SEmmanuel Vadot #include <sys/kobj.h>
43*62e8ccc3SEmmanuel Vadot #include <sys/lock.h>
44*62e8ccc3SEmmanuel Vadot #include <sys/malloc.h>
45*62e8ccc3SEmmanuel Vadot #include <sys/module.h>
46*62e8ccc3SEmmanuel Vadot #include <sys/rman.h>
47*62e8ccc3SEmmanuel Vadot #include <sys/sx.h>
48*62e8ccc3SEmmanuel Vadot #include <sys/queue.h>
49*62e8ccc3SEmmanuel Vadot 
50*62e8ccc3SEmmanuel Vadot #include <machine/bus.h>
51*62e8ccc3SEmmanuel Vadot 
52*62e8ccc3SEmmanuel Vadot #ifdef FDT
53*62e8ccc3SEmmanuel Vadot #include <dev/ofw/ofw_bus.h>
54*62e8ccc3SEmmanuel Vadot #include <dev/ofw/ofw_bus_subr.h>
55*62e8ccc3SEmmanuel Vadot #endif
56*62e8ccc3SEmmanuel Vadot 
57*62e8ccc3SEmmanuel Vadot #include "syscon_if.h"
58*62e8ccc3SEmmanuel Vadot #include "syscon.h"
59*62e8ccc3SEmmanuel Vadot 
60*62e8ccc3SEmmanuel Vadot /*
61*62e8ccc3SEmmanuel Vadot  * Syscon interface details
62*62e8ccc3SEmmanuel Vadot  */
63*62e8ccc3SEmmanuel Vadot typedef TAILQ_HEAD(syscon_list, syscon) syscon_list_t;
64*62e8ccc3SEmmanuel Vadot 
65*62e8ccc3SEmmanuel Vadot /*
66*62e8ccc3SEmmanuel Vadot  * Declarations
67*62e8ccc3SEmmanuel Vadot  */
68*62e8ccc3SEmmanuel Vadot static int syscon_method_init(struct syscon *syscon);
69*62e8ccc3SEmmanuel Vadot static int syscon_method_uninit(struct syscon *syscon);
70*62e8ccc3SEmmanuel Vadot static uint32_t syscon_method_read_4(struct syscon *syscon, bus_size_t offset);
71*62e8ccc3SEmmanuel Vadot static int syscon_method_write_4(struct syscon *syscon, bus_size_t offset,
72*62e8ccc3SEmmanuel Vadot     uint32_t val);
73*62e8ccc3SEmmanuel Vadot static int syscon_method_modify_4(struct syscon *syscon, bus_size_t offset,
74*62e8ccc3SEmmanuel Vadot     uint32_t clear_bits, uint32_t set_bits);
75*62e8ccc3SEmmanuel Vadot 
76*62e8ccc3SEmmanuel Vadot 
77*62e8ccc3SEmmanuel Vadot MALLOC_DEFINE(M_SYSCON, "syscon", "Syscon driver");
78*62e8ccc3SEmmanuel Vadot 
79*62e8ccc3SEmmanuel Vadot static syscon_list_t syscon_list = TAILQ_HEAD_INITIALIZER(syscon_list);
80*62e8ccc3SEmmanuel Vadot static struct sx		syscon_topo_lock;
81*62e8ccc3SEmmanuel Vadot SX_SYSINIT(syscon_topology, &syscon_topo_lock, "Syscon topology lock");
82*62e8ccc3SEmmanuel Vadot 
83*62e8ccc3SEmmanuel Vadot /*
84*62e8ccc3SEmmanuel Vadot  * Syscon methods.
85*62e8ccc3SEmmanuel Vadot  */
86*62e8ccc3SEmmanuel Vadot static syscon_method_t syscon_methods[] = {
87*62e8ccc3SEmmanuel Vadot 	SYSCONMETHOD(syscon_init,	syscon_method_init),
88*62e8ccc3SEmmanuel Vadot 	SYSCONMETHOD(syscon_uninit,	syscon_method_uninit),
89*62e8ccc3SEmmanuel Vadot 	SYSCONMETHOD(syscon_read_4,	syscon_method_read_4),
90*62e8ccc3SEmmanuel Vadot 	SYSCONMETHOD(syscon_write_4,	syscon_method_write_4),
91*62e8ccc3SEmmanuel Vadot 	SYSCONMETHOD(syscon_modify_4,	syscon_method_modify_4),
92*62e8ccc3SEmmanuel Vadot 
93*62e8ccc3SEmmanuel Vadot 	SYSCONMETHOD_END
94*62e8ccc3SEmmanuel Vadot };
95*62e8ccc3SEmmanuel Vadot DEFINE_CLASS_0(syscon, syscon_class, syscon_methods, 0);
96*62e8ccc3SEmmanuel Vadot 
97*62e8ccc3SEmmanuel Vadot #define SYSCON_TOPO_SLOCK()	sx_slock(&syscon_topo_lock)
98*62e8ccc3SEmmanuel Vadot #define SYSCON_TOPO_XLOCK()	sx_xlock(&syscon_topo_lock)
99*62e8ccc3SEmmanuel Vadot #define SYSCON_TOPO_UNLOCK()	sx_unlock(&syscon_topo_lock)
100*62e8ccc3SEmmanuel Vadot #define SYSCON_TOPO_ASSERT()	sx_assert(&syscon_topo_lock, SA_LOCKED)
101*62e8ccc3SEmmanuel Vadot #define SYSCON_TOPO_XASSERT()	sx_assert(&syscon_topo_lock, SA_XLOCKED)
102*62e8ccc3SEmmanuel Vadot 
103*62e8ccc3SEmmanuel Vadot /*
104*62e8ccc3SEmmanuel Vadot  * Default syscon methods for base class.
105*62e8ccc3SEmmanuel Vadot  */
106*62e8ccc3SEmmanuel Vadot static int
syscon_method_init(struct syscon * syscon)107*62e8ccc3SEmmanuel Vadot syscon_method_init(struct syscon *syscon)
108*62e8ccc3SEmmanuel Vadot {
109*62e8ccc3SEmmanuel Vadot 
110*62e8ccc3SEmmanuel Vadot 	return (0);
111*62e8ccc3SEmmanuel Vadot };
112*62e8ccc3SEmmanuel Vadot 
113*62e8ccc3SEmmanuel Vadot static int
syscon_method_uninit(struct syscon * syscon)114*62e8ccc3SEmmanuel Vadot syscon_method_uninit(struct syscon *syscon)
115*62e8ccc3SEmmanuel Vadot {
116*62e8ccc3SEmmanuel Vadot 
117*62e8ccc3SEmmanuel Vadot 	return (0);
118*62e8ccc3SEmmanuel Vadot };
119*62e8ccc3SEmmanuel Vadot 
120*62e8ccc3SEmmanuel Vadot void *
syscon_get_softc(struct syscon * syscon)121*62e8ccc3SEmmanuel Vadot syscon_get_softc(struct syscon *syscon)
122*62e8ccc3SEmmanuel Vadot {
123*62e8ccc3SEmmanuel Vadot 
124*62e8ccc3SEmmanuel Vadot 	return (syscon->softc);
125*62e8ccc3SEmmanuel Vadot };
126*62e8ccc3SEmmanuel Vadot 
127*62e8ccc3SEmmanuel Vadot static uint32_t
syscon_method_read_4(struct syscon * syscon,bus_size_t offset)128*62e8ccc3SEmmanuel Vadot syscon_method_read_4(struct syscon *syscon, bus_size_t offset)
129*62e8ccc3SEmmanuel Vadot {
130*62e8ccc3SEmmanuel Vadot 	uint32_t val;
131*62e8ccc3SEmmanuel Vadot 
132*62e8ccc3SEmmanuel Vadot 	SYSCON_DEVICE_LOCK(syscon->pdev);
133*62e8ccc3SEmmanuel Vadot 	val = SYSCON_UNLOCKED_READ_4(syscon, offset);
134*62e8ccc3SEmmanuel Vadot 	SYSCON_DEVICE_UNLOCK(syscon->pdev);
135*62e8ccc3SEmmanuel Vadot 	return(val);
136*62e8ccc3SEmmanuel Vadot }
137*62e8ccc3SEmmanuel Vadot 
138*62e8ccc3SEmmanuel Vadot static int
syscon_method_write_4(struct syscon * syscon,bus_size_t offset,uint32_t val)139*62e8ccc3SEmmanuel Vadot syscon_method_write_4(struct syscon *syscon, bus_size_t offset, uint32_t val)
140*62e8ccc3SEmmanuel Vadot {
141*62e8ccc3SEmmanuel Vadot 	int	rv;
142*62e8ccc3SEmmanuel Vadot 
143*62e8ccc3SEmmanuel Vadot 	SYSCON_DEVICE_LOCK(syscon->pdev);
144*62e8ccc3SEmmanuel Vadot 	rv = SYSCON_UNLOCKED_WRITE_4(syscon, offset, val);
145*62e8ccc3SEmmanuel Vadot 	SYSCON_DEVICE_UNLOCK(syscon->pdev);
146*62e8ccc3SEmmanuel Vadot 	return(rv);
147*62e8ccc3SEmmanuel Vadot }
148*62e8ccc3SEmmanuel Vadot 
149*62e8ccc3SEmmanuel Vadot static int
syscon_method_modify_4(struct syscon * syscon,bus_size_t offset,uint32_t clear_bits,uint32_t set_bits)150*62e8ccc3SEmmanuel Vadot syscon_method_modify_4(struct syscon *syscon, bus_size_t offset,
151*62e8ccc3SEmmanuel Vadot     uint32_t clear_bits, uint32_t set_bits)
152*62e8ccc3SEmmanuel Vadot {
153*62e8ccc3SEmmanuel Vadot 	int	rv;
154*62e8ccc3SEmmanuel Vadot 
155*62e8ccc3SEmmanuel Vadot 	SYSCON_DEVICE_LOCK(syscon->pdev);
156*62e8ccc3SEmmanuel Vadot 	rv = SYSCON_UNLOCKED_MODIFY_4(syscon, offset, clear_bits, set_bits);
157*62e8ccc3SEmmanuel Vadot 	SYSCON_DEVICE_UNLOCK(syscon->pdev);
158*62e8ccc3SEmmanuel Vadot 	return(rv);
159*62e8ccc3SEmmanuel Vadot }
160*62e8ccc3SEmmanuel Vadot /*
161*62e8ccc3SEmmanuel Vadot  * Create and initialize syscon object, but do not register it.
162*62e8ccc3SEmmanuel Vadot  */
163*62e8ccc3SEmmanuel Vadot struct syscon *
syscon_create(device_t pdev,syscon_class_t syscon_class)164*62e8ccc3SEmmanuel Vadot syscon_create(device_t pdev, syscon_class_t syscon_class)
165*62e8ccc3SEmmanuel Vadot {
166*62e8ccc3SEmmanuel Vadot 	struct syscon *syscon;
167*62e8ccc3SEmmanuel Vadot 
168*62e8ccc3SEmmanuel Vadot 	/* Create object and initialize it. */
169*62e8ccc3SEmmanuel Vadot 	syscon = malloc(sizeof(struct syscon), M_SYSCON,
170*62e8ccc3SEmmanuel Vadot 	    M_WAITOK | M_ZERO);
171*62e8ccc3SEmmanuel Vadot 	kobj_init((kobj_t)syscon, (kobj_class_t)syscon_class);
172*62e8ccc3SEmmanuel Vadot 
173*62e8ccc3SEmmanuel Vadot 	/* Allocate softc if required. */
174*62e8ccc3SEmmanuel Vadot 	if (syscon_class->size > 0)
175*62e8ccc3SEmmanuel Vadot 		syscon->softc = malloc(syscon_class->size, M_SYSCON,
176*62e8ccc3SEmmanuel Vadot 		    M_WAITOK | M_ZERO);
177*62e8ccc3SEmmanuel Vadot 
178*62e8ccc3SEmmanuel Vadot 	/* Rest of init. */
179*62e8ccc3SEmmanuel Vadot 	syscon->pdev = pdev;
180*62e8ccc3SEmmanuel Vadot 	return (syscon);
181*62e8ccc3SEmmanuel Vadot }
182*62e8ccc3SEmmanuel Vadot 
183*62e8ccc3SEmmanuel Vadot /* Register syscon object. */
184*62e8ccc3SEmmanuel Vadot struct syscon *
syscon_register(struct syscon * syscon)185*62e8ccc3SEmmanuel Vadot syscon_register(struct syscon *syscon)
186*62e8ccc3SEmmanuel Vadot {
187*62e8ccc3SEmmanuel Vadot 	int rv;
188*62e8ccc3SEmmanuel Vadot 
189*62e8ccc3SEmmanuel Vadot #ifdef FDT
190*62e8ccc3SEmmanuel Vadot 	if (syscon->ofw_node <= 0)
191*62e8ccc3SEmmanuel Vadot 		syscon->ofw_node = ofw_bus_get_node(syscon->pdev);
192*62e8ccc3SEmmanuel Vadot 	if (syscon->ofw_node <= 0)
193*62e8ccc3SEmmanuel Vadot 		return (NULL);
194*62e8ccc3SEmmanuel Vadot #endif
195*62e8ccc3SEmmanuel Vadot 
196*62e8ccc3SEmmanuel Vadot 	rv = SYSCON_INIT(syscon);
197*62e8ccc3SEmmanuel Vadot 	if (rv != 0) {
198*62e8ccc3SEmmanuel Vadot 		printf("SYSCON_INIT failed: %d\n", rv);
199*62e8ccc3SEmmanuel Vadot 		return (NULL);
200*62e8ccc3SEmmanuel Vadot 	}
201*62e8ccc3SEmmanuel Vadot 
202*62e8ccc3SEmmanuel Vadot #ifdef FDT
203*62e8ccc3SEmmanuel Vadot 	OF_device_register_xref(OF_xref_from_node(syscon->ofw_node),
204*62e8ccc3SEmmanuel Vadot 	    syscon->pdev);
205*62e8ccc3SEmmanuel Vadot #endif
206*62e8ccc3SEmmanuel Vadot 	SYSCON_TOPO_XLOCK();
207*62e8ccc3SEmmanuel Vadot 	TAILQ_INSERT_TAIL(&syscon_list, syscon, syscon_link);
208*62e8ccc3SEmmanuel Vadot 	SYSCON_TOPO_UNLOCK();
209*62e8ccc3SEmmanuel Vadot 	return (syscon);
210*62e8ccc3SEmmanuel Vadot }
211*62e8ccc3SEmmanuel Vadot 
212*62e8ccc3SEmmanuel Vadot int
syscon_unregister(struct syscon * syscon)213*62e8ccc3SEmmanuel Vadot syscon_unregister(struct syscon *syscon)
214*62e8ccc3SEmmanuel Vadot {
215*62e8ccc3SEmmanuel Vadot 
216*62e8ccc3SEmmanuel Vadot 	SYSCON_TOPO_XLOCK();
217*62e8ccc3SEmmanuel Vadot 	TAILQ_REMOVE(&syscon_list, syscon, syscon_link);
218*62e8ccc3SEmmanuel Vadot 	SYSCON_TOPO_UNLOCK();
219*62e8ccc3SEmmanuel Vadot #ifdef FDT
220*62e8ccc3SEmmanuel Vadot 	OF_device_register_xref(OF_xref_from_node(syscon->ofw_node), NULL);
221*62e8ccc3SEmmanuel Vadot #endif
222*62e8ccc3SEmmanuel Vadot 	return (SYSCON_UNINIT(syscon));
223*62e8ccc3SEmmanuel Vadot }
224*62e8ccc3SEmmanuel Vadot 
225*62e8ccc3SEmmanuel Vadot /**
226*62e8ccc3SEmmanuel Vadot  * Provider methods
227*62e8ccc3SEmmanuel Vadot  */
228*62e8ccc3SEmmanuel Vadot #ifdef FDT
229*62e8ccc3SEmmanuel Vadot static struct syscon *
syscon_find_by_ofw_node(phandle_t node)230*62e8ccc3SEmmanuel Vadot syscon_find_by_ofw_node(phandle_t node)
231*62e8ccc3SEmmanuel Vadot {
232*62e8ccc3SEmmanuel Vadot 	struct syscon *entry;
233*62e8ccc3SEmmanuel Vadot 
234*62e8ccc3SEmmanuel Vadot 	SYSCON_TOPO_ASSERT();
235*62e8ccc3SEmmanuel Vadot 
236*62e8ccc3SEmmanuel Vadot 	TAILQ_FOREACH(entry, &syscon_list, syscon_link) {
237*62e8ccc3SEmmanuel Vadot 		if (entry->ofw_node == node)
238*62e8ccc3SEmmanuel Vadot 			return (entry);
239*62e8ccc3SEmmanuel Vadot 	}
240*62e8ccc3SEmmanuel Vadot 
241*62e8ccc3SEmmanuel Vadot 	return (NULL);
242*62e8ccc3SEmmanuel Vadot }
243*62e8ccc3SEmmanuel Vadot 
244*62e8ccc3SEmmanuel Vadot struct syscon *
syscon_create_ofw_node(device_t pdev,syscon_class_t syscon_class,phandle_t node)245*62e8ccc3SEmmanuel Vadot syscon_create_ofw_node(device_t pdev, syscon_class_t syscon_class,
246*62e8ccc3SEmmanuel Vadot     phandle_t node)
247*62e8ccc3SEmmanuel Vadot {
248*62e8ccc3SEmmanuel Vadot 	struct syscon *syscon;
249*62e8ccc3SEmmanuel Vadot 
250*62e8ccc3SEmmanuel Vadot 	syscon = syscon_create(pdev, syscon_class);
251*62e8ccc3SEmmanuel Vadot 	if (syscon == NULL)
252*62e8ccc3SEmmanuel Vadot 		return (NULL);
253*62e8ccc3SEmmanuel Vadot 	syscon->ofw_node = node;
254*62e8ccc3SEmmanuel Vadot 	if (syscon_register(syscon) == NULL)
255*62e8ccc3SEmmanuel Vadot 		return (NULL);
256*62e8ccc3SEmmanuel Vadot 	return (syscon);
257*62e8ccc3SEmmanuel Vadot }
258*62e8ccc3SEmmanuel Vadot 
259*62e8ccc3SEmmanuel Vadot phandle_t
syscon_get_ofw_node(struct syscon * syscon)260*62e8ccc3SEmmanuel Vadot syscon_get_ofw_node(struct syscon *syscon)
261*62e8ccc3SEmmanuel Vadot {
262*62e8ccc3SEmmanuel Vadot 
263*62e8ccc3SEmmanuel Vadot 	return (syscon->ofw_node);
264*62e8ccc3SEmmanuel Vadot }
265*62e8ccc3SEmmanuel Vadot 
266*62e8ccc3SEmmanuel Vadot int
syscon_get_by_ofw_node(device_t cdev,phandle_t node,struct syscon ** syscon)267*62e8ccc3SEmmanuel Vadot syscon_get_by_ofw_node(device_t cdev, phandle_t node, struct syscon **syscon)
268*62e8ccc3SEmmanuel Vadot {
269*62e8ccc3SEmmanuel Vadot 
270*62e8ccc3SEmmanuel Vadot 	SYSCON_TOPO_SLOCK();
271*62e8ccc3SEmmanuel Vadot 	*syscon = syscon_find_by_ofw_node(node);
272*62e8ccc3SEmmanuel Vadot 	if (*syscon == NULL) {
273*62e8ccc3SEmmanuel Vadot 		SYSCON_TOPO_UNLOCK();
274*62e8ccc3SEmmanuel Vadot 		device_printf(cdev, "Failed to find syscon node\n");
275*62e8ccc3SEmmanuel Vadot 		return (ENODEV);
276*62e8ccc3SEmmanuel Vadot 	}
277*62e8ccc3SEmmanuel Vadot 	SYSCON_TOPO_UNLOCK();
278*62e8ccc3SEmmanuel Vadot 	return (0);
279*62e8ccc3SEmmanuel Vadot }
280*62e8ccc3SEmmanuel Vadot 
281*62e8ccc3SEmmanuel Vadot int
syscon_get_by_ofw_property(device_t cdev,phandle_t cnode,char * name,struct syscon ** syscon)282*62e8ccc3SEmmanuel Vadot syscon_get_by_ofw_property(device_t cdev, phandle_t cnode, char *name,
283*62e8ccc3SEmmanuel Vadot     struct syscon **syscon)
284*62e8ccc3SEmmanuel Vadot {
285*62e8ccc3SEmmanuel Vadot 	pcell_t *cells;
286*62e8ccc3SEmmanuel Vadot 	int ncells;
287*62e8ccc3SEmmanuel Vadot 
288*62e8ccc3SEmmanuel Vadot 	if (cnode <= 0)
289*62e8ccc3SEmmanuel Vadot 		cnode = ofw_bus_get_node(cdev);
290*62e8ccc3SEmmanuel Vadot 	if (cnode <= 0) {
291*62e8ccc3SEmmanuel Vadot 		device_printf(cdev,
292*62e8ccc3SEmmanuel Vadot 		    "%s called on not ofw based device\n", __func__);
293*62e8ccc3SEmmanuel Vadot 		return (ENXIO);
294*62e8ccc3SEmmanuel Vadot 	}
295*62e8ccc3SEmmanuel Vadot 	ncells = OF_getencprop_alloc_multi(cnode, name, sizeof(pcell_t),
296*62e8ccc3SEmmanuel Vadot 	    (void **)&cells);
297*62e8ccc3SEmmanuel Vadot 	if (ncells < 1)
298*62e8ccc3SEmmanuel Vadot 		return (ENOENT);
299*62e8ccc3SEmmanuel Vadot 
300*62e8ccc3SEmmanuel Vadot 	/* Translate to syscon node. */
301*62e8ccc3SEmmanuel Vadot 	SYSCON_TOPO_SLOCK();
302*62e8ccc3SEmmanuel Vadot 	*syscon = syscon_find_by_ofw_node(OF_node_from_xref(cells[0]));
303*62e8ccc3SEmmanuel Vadot 	if (*syscon == NULL) {
304*62e8ccc3SEmmanuel Vadot 		SYSCON_TOPO_UNLOCK();
305*62e8ccc3SEmmanuel Vadot 		device_printf(cdev, "Failed to find syscon node\n");
306*62e8ccc3SEmmanuel Vadot 		OF_prop_free(cells);
307*62e8ccc3SEmmanuel Vadot 		return (ENODEV);
308*62e8ccc3SEmmanuel Vadot 	}
309*62e8ccc3SEmmanuel Vadot 	SYSCON_TOPO_UNLOCK();
310*62e8ccc3SEmmanuel Vadot 	OF_prop_free(cells);
311*62e8ccc3SEmmanuel Vadot 	return (0);
312*62e8ccc3SEmmanuel Vadot }
313*62e8ccc3SEmmanuel Vadot #endif
314