1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
|
/* $NetBSD: fdt_reset.c,v 1.4 2019/02/27 16:56:00 jakllsch Exp $ */
/*-
* Copyright (c) 2015 Jared D. McNeill <jmcneill@invisible.ca>
* 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.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 THE AUTHOR 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/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: fdt_reset.c,v 1.4 2019/02/27 16:56:00 jakllsch Exp $");
#include <sys/param.h>
#include <sys/bus.h>
#include <sys/kmem.h>
#include <sys/queue.h>
#include <libfdt.h>
#include <dev/fdt/fdtvar.h>
struct fdtbus_reset_controller {
device_t rc_dev;
int rc_phandle;
const struct fdtbus_reset_controller_func *rc_funcs;
LIST_ENTRY(fdtbus_reset_controller) rc_next;
};
static LIST_HEAD(, fdtbus_reset_controller) fdtbus_reset_controllers =
LIST_HEAD_INITIALIZER(fdtbus_reset_controllers);
int
fdtbus_register_reset_controller(device_t dev, int phandle,
const struct fdtbus_reset_controller_func *funcs)
{
struct fdtbus_reset_controller *rc;
rc = kmem_alloc(sizeof(*rc), KM_SLEEP);
rc->rc_dev = dev;
rc->rc_phandle = phandle;
rc->rc_funcs = funcs;
LIST_INSERT_HEAD(&fdtbus_reset_controllers, rc, rc_next);
return 0;
}
static struct fdtbus_reset_controller *
fdtbus_get_reset_controller(int phandle)
{
struct fdtbus_reset_controller *rc;
LIST_FOREACH(rc, &fdtbus_reset_controllers, rc_next) {
if (rc->rc_phandle == phandle)
return rc;
}
return NULL;
}
struct fdtbus_reset *
fdtbus_reset_get_index(int phandle, u_int index)
{
struct fdtbus_reset_controller *rc;
struct fdtbus_reset *rst = NULL;
void *rst_priv = NULL;
uint32_t *resets = NULL;
uint32_t *p;
u_int n, reset_cells;
int len, resid;
len = OF_getproplen(phandle, "resets");
if (len <= 0)
return NULL;
resets = kmem_alloc(len, KM_SLEEP);
if (OF_getprop(phandle, "resets", resets, len) != len) {
kmem_free(resets, len);
return NULL;
}
p = resets;
for (n = 0, resid = len; resid > 0; n++) {
const int rc_phandle =
fdtbus_get_phandle_from_native(be32toh(p[0]));
if (of_getprop_uint32(rc_phandle, "#reset-cells", &reset_cells))
break;
if (n == index) {
rc = fdtbus_get_reset_controller(rc_phandle);
if (rc == NULL)
goto done;
rst_priv = rc->rc_funcs->acquire(rc->rc_dev,
reset_cells > 0 ? &p[1] : NULL, reset_cells * 4);
if (rst_priv) {
rst = kmem_alloc(sizeof(*rst), KM_SLEEP);
rst->rst_rc = rc;
rst->rst_priv = rst_priv;
}
break;
}
resid -= (reset_cells + 1) * 4;
p += reset_cells + 1;
}
done:
if (resets)
kmem_free(resets, len);
return rst;
}
struct fdtbus_reset *
fdtbus_reset_get(int phandle, const char *rstname)
{
u_int index;
int err;
err = fdtbus_get_index(phandle, "reset-names", rstname, &index);
if (err != 0)
return NULL;
return fdtbus_reset_get_index(phandle, index);
}
void
fdtbus_reset_put(struct fdtbus_reset *rst)
{
struct fdtbus_reset_controller *rc = rst->rst_rc;
rc->rc_funcs->release(rc->rc_dev, rst->rst_priv);
kmem_free(rst, sizeof(*rst));
}
int
fdtbus_reset_assert(struct fdtbus_reset *rst)
{
struct fdtbus_reset_controller *rc = rst->rst_rc;
return rc->rc_funcs->reset_assert(rc->rc_dev, rst->rst_priv);
}
int
fdtbus_reset_deassert(struct fdtbus_reset *rst)
{
struct fdtbus_reset_controller *rc = rst->rst_rc;
return rc->rc_funcs->reset_deassert(rc->rc_dev, rst->rst_priv);
}
|