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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
|
/* $OpenBSD: pwmbl.c,v 1.8 2023/04/25 11:21:01 patrick Exp $ */
/*
* Copyright (c) 2019 Krystian Lewandowski
* Copyright (c) 2019 Mark Kettenis <kettenis@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <sys/malloc.h>
#include <machine/fdt.h>
#include <machine/bus.h>
#include <dev/ofw/openfirm.h>
#include <dev/ofw/ofw_gpio.h>
#include <dev/ofw/ofw_misc.h>
#include <dev/wscons/wsconsio.h>
#include <dev/wscons/wsdisplayvar.h>
struct pwmbl_softc {
struct device sc_dev;
uint32_t *sc_pwm;
int sc_pwm_len;
uint32_t *sc_levels; /* NULL if simple ramp */
int sc_nlevels;
uint32_t sc_max_level;
uint32_t sc_def_level;
struct pwm_state sc_ps_saved;
};
struct pwmbl_softc *sc_pwmbl;
int pwmbl_match(struct device *, void *, void *);
void pwmbl_attach(struct device *, struct device *, void *);
int pwmbl_activate(struct device *, int);
const struct cfattach pwmbl_ca = {
sizeof(struct pwmbl_softc), pwmbl_match, pwmbl_attach, NULL,
pwmbl_activate
};
struct cfdriver pwmbl_cd = {
NULL, "pwmbl", DV_DULL
};
int pwmbl_get_brightness(void *, uint32_t *);
int pwmbl_set_brightness(void *, uint32_t);
int pwmbl_get_param(struct wsdisplay_param *);
int pwmbl_set_param(struct wsdisplay_param *);
int
pwmbl_match(struct device *parent, void *match, void *aux)
{
struct fdt_attach_args *faa = aux;
return OF_is_compatible(faa->fa_node, "pwm-backlight");
}
void
pwmbl_attach(struct device *parent, struct device *self, void *aux)
{
struct pwmbl_softc *sc = (struct pwmbl_softc *)self;
struct fdt_attach_args *faa = aux;
uint32_t *gpios;
int len;
len = OF_getproplen(faa->fa_node, "pwms");
if (len < 0) {
printf(": no pwm\n");
return;
}
sc->sc_pwm = malloc(len, M_DEVBUF, M_WAITOK);
OF_getpropintarray(faa->fa_node, "pwms", sc->sc_pwm, len);
sc->sc_pwm_len = len;
len = OF_getproplen(faa->fa_node, "enable-gpios");
if (len > 0) {
gpios = malloc(len, M_TEMP, M_WAITOK);
OF_getpropintarray(faa->fa_node, "enable-gpios", gpios, len);
gpio_controller_config_pin(&gpios[0], GPIO_CONFIG_OUTPUT);
gpio_controller_set_pin(&gpios[0], 1);
free(gpios, M_TEMP, len);
}
len = OF_getproplen(faa->fa_node, "brightness-levels");
if (len >= (int)sizeof(uint32_t)) {
sc->sc_levels = malloc(len, M_DEVBUF, M_WAITOK);
OF_getpropintarray(faa->fa_node, "brightness-levels",
sc->sc_levels, len);
sc->sc_nlevels = len / sizeof(uint32_t);
sc->sc_max_level = sc->sc_levels[sc->sc_nlevels - 1];
sc->sc_def_level = OF_getpropint(faa->fa_node,
"default-brightness-level", sc->sc_nlevels - 1);
if (sc->sc_def_level >= sc->sc_nlevels)
sc->sc_def_level = sc->sc_nlevels - 1;
sc->sc_def_level = sc->sc_levels[sc->sc_def_level];
} else {
/* No levels, assume a simple 0..255 ramp. */
sc->sc_nlevels = 256;
sc->sc_max_level = sc->sc_def_level = sc->sc_nlevels - 1;
}
printf("\n");
pwmbl_set_brightness(sc, sc->sc_def_level);
sc_pwmbl = sc;
ws_get_param = pwmbl_get_param;
ws_set_param = pwmbl_set_param;
}
int
pwmbl_activate(struct device *self, int act)
{
struct pwmbl_softc *sc = (struct pwmbl_softc *)self;
struct pwm_state ps;
int error;
switch (act) {
case DVACT_QUIESCE:
error = pwm_get_state(sc->sc_pwm, &sc->sc_ps_saved);
if (error)
return error;
pwm_init_state(sc->sc_pwm, &ps);
ps.ps_pulse_width = 0;
ps.ps_enabled = 0;
return pwm_set_state(sc->sc_pwm, &ps);
case DVACT_WAKEUP:
return pwm_set_state(sc->sc_pwm, &sc->sc_ps_saved);
}
return 0;
}
int
pwmbl_get_brightness(void *cookie, uint32_t *level)
{
struct pwmbl_softc *sc = cookie;
struct pwm_state ps;
if (pwm_get_state(sc->sc_pwm, &ps))
return EINVAL;
*level = (ps.ps_pulse_width * sc->sc_max_level) / ps.ps_period;
return 0;
}
uint32_t
pwmbl_find_brightness(struct pwmbl_softc *sc, uint32_t level)
{
uint32_t mid;
int i;
if (sc->sc_levels == NULL)
return level < sc->sc_nlevels ? level : sc->sc_nlevels - 1;
for (i = 0; i < sc->sc_nlevels - 1; i++) {
mid = (sc->sc_levels[i] + sc->sc_levels[i + 1]) / 2;
if (sc->sc_levels[i] <= level && level <= mid)
return sc->sc_levels[i];
if (mid < level && level <= sc->sc_levels[i + 1])
return sc->sc_levels[i + 1];
}
if (level < sc->sc_levels[0])
return sc->sc_levels[0];
else
return sc->sc_levels[i];
}
int
pwmbl_set_brightness(void *cookie, uint32_t level)
{
struct pwmbl_softc *sc = cookie;
struct pwm_state ps;
if (pwm_init_state(sc->sc_pwm, &ps))
return EINVAL;
level = pwmbl_find_brightness(sc, level);
ps.ps_enabled = 1;
ps.ps_pulse_width = (ps.ps_period * level) / sc->sc_max_level;
return pwm_set_state(sc->sc_pwm, &ps);
}
int
pwmbl_get_param(struct wsdisplay_param *dp)
{
struct pwmbl_softc *sc = (struct pwmbl_softc *)sc_pwmbl;
uint32_t level;
switch (dp->param) {
case WSDISPLAYIO_PARAM_BRIGHTNESS:
if (pwmbl_get_brightness(sc, &level))
return -1;
dp->min = 0;
dp->max = sc->sc_max_level;
dp->curval = level;
return 0;
default:
return -1;
}
}
int
pwmbl_set_param(struct wsdisplay_param *dp)
{
struct pwmbl_softc *sc = (struct pwmbl_softc *)sc_pwmbl;
switch (dp->param) {
case WSDISPLAYIO_PARAM_BRIGHTNESS:
if (pwmbl_set_brightness(sc, dp->curval))
return -1;
return 0;
default:
return -1;
}
}
|