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
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
|
/* $OpenBSD: fanpwr.c,v 1.10 2024/05/26 22:04:52 kettenis Exp $ */
/*
* Copyright (c) 2018 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 <dev/ofw/openfirm.h>
#include <dev/ofw/ofw_pinctrl.h>
#include <dev/ofw/ofw_regulator.h>
#include <dev/ofw/fdt.h>
#include <dev/i2c/i2cvar.h>
/* Registers */
#define FAN53555_VSEL0 0x00
#define FAN53555_VSEL1 0x01
#define FAN53555_VSEL_NSEL_MASK 0x3f
#define FAN53555_CONTROL 0x02
#define FAN53555_CONTROL_SLEW_MASK (0x7 << 4)
#define FAN53555_CONTROL_SLEW_SHIFT 4
#define FAN53555_ID1 0x03
#define FAN53555_ID2 0x04
#define TCS4525_VSEL1 0x10
#define TCS4525_VSEL0 0x11
#define TCS4525_VSEL_NSEL_MASK 0x7f
#define TCS4525_TIME 0x13
#define TCS4525_TIME_SLEW_MASK (0x3 << 3)
#define TCS4525_TIME_SLEW_SHIFT 3
#define RK8602_VSEL0 0x06
#define RK8602_VSEL1 0x07
#define RK8602_VSEL_NSEL_MASK 0xff
/* Distinguish between Fairchild original and Silergy clones. */
enum fanpwr_id {
FANPWR_FAN53555, /* Fairchild FAN53555 */
FANPWR_RK8602, /* Rockchip RK8602 */
FANPWR_SYR827, /* Silergy SYR827 */
FANPWR_SYR828, /* Silergy SYR828 */
FANPWR_TCS4525, /* TCS TCS4525 */
};
struct fanpwr_softc {
struct device sc_dev;
i2c_tag_t sc_tag;
i2c_addr_t sc_addr;
enum fanpwr_id sc_id;
uint8_t sc_vsel;
uint8_t sc_vsel_nsel_mask;
struct regulator_device sc_rd;
uint32_t sc_vbase;
uint32_t sc_vstep;
};
int fanpwr_match(struct device *, void *, void *);
void fanpwr_attach(struct device *, struct device *, void *);
const struct cfattach fanpwr_ca = {
sizeof(struct fanpwr_softc), fanpwr_match, fanpwr_attach
};
struct cfdriver fanpwr_cd = {
NULL, "fanpwr", DV_DULL
};
uint8_t fanpwr_read(struct fanpwr_softc *, int);
void fanpwr_write(struct fanpwr_softc *, int, uint8_t);
uint32_t fanpwr_get_voltage(void *);
int fanpwr_set_voltage(void *, uint32_t);
int
fanpwr_match(struct device *parent, void *match, void *aux)
{
struct i2c_attach_args *ia = aux;
return (strcmp(ia->ia_name, "fcs,fan53555") == 0 ||
strcmp(ia->ia_name, "rockchip,rk8602") == 0 ||
strcmp(ia->ia_name, "rockchip,rk8603") == 0 ||
strcmp(ia->ia_name, "silergy,syr827") == 0 ||
strcmp(ia->ia_name, "silergy,syr828") == 0 ||
strcmp(ia->ia_name, "tcs,tcs4525") == 0);
}
void
fanpwr_attach(struct device *parent, struct device *self, void *aux)
{
struct fanpwr_softc *sc = (struct fanpwr_softc *)self;
struct i2c_attach_args *ia = aux;
int node = *(int *)ia->ia_cookie;
uint32_t voltage, ramp_delay;
uint8_t id1, id2;
pinctrl_byname(node, "default");
sc->sc_tag = ia->ia_tag;
sc->sc_addr = ia->ia_addr;
if (OF_is_compatible(node, "rockchip,rk8602") ||
OF_is_compatible(node, "rockchip,rk8603")) {
printf(": RK8602");
sc->sc_id = FANPWR_RK8602;
} else if (OF_is_compatible(node, "silergy,syr827")) {
printf(": SYR827");
sc->sc_id = FANPWR_SYR827;
} else if (OF_is_compatible(node, "silergy,syr828")) {
printf(": SYR828");
sc->sc_id = FANPWR_SYR828;
} else if (OF_is_compatible(node, "tcs,tcs4525")) {
printf(": TCS4525");
sc->sc_id = FANPWR_TCS4525;
} else {
printf(": FAN53555");
sc->sc_id = FANPWR_FAN53555;
}
if (sc->sc_id == FANPWR_TCS4525) {
if (OF_getpropint(node, "fcs,suspend-voltage-selector", 0))
sc->sc_vsel = TCS4525_VSEL0;
else
sc->sc_vsel = TCS4525_VSEL1;
sc->sc_vsel_nsel_mask = TCS4525_VSEL_NSEL_MASK;
} else if (sc->sc_id == FANPWR_RK8602) {
if (OF_getpropint(node, "fcs,suspend-voltage-selector", 0))
sc->sc_vsel = RK8602_VSEL0;
else
sc->sc_vsel = RK8602_VSEL1;
sc->sc_vsel_nsel_mask = RK8602_VSEL_NSEL_MASK;
} else {
if (OF_getpropint(node, "fcs,suspend-voltage-selector", 0))
sc->sc_vsel = FAN53555_VSEL0;
else
sc->sc_vsel = FAN53555_VSEL1;
sc->sc_vsel_nsel_mask = FAN53555_VSEL_NSEL_MASK;
}
id1 = fanpwr_read(sc, FAN53555_ID1);
id2 = fanpwr_read(sc, FAN53555_ID2);
switch (sc->sc_id) {
case FANPWR_FAN53555:
switch (id1 << 8 | id2) {
case 0x8003: /* 00 Option */
case 0x8103: /* 01 Option */
case 0x8303: /* 03 Option */
case 0x8503: /* 05 Option */
case 0x8801: /* 08, 18 Options */
case 0x880f: /* BUC08, BUC18 Options */
case 0x8108: /* 79 Option */
sc->sc_vbase = 600000;
sc->sc_vstep = 10000;
break;
case 0x840f: /* 04 Option */
case 0x8c0f: /* 09 Option */
sc->sc_vbase = 603000;
sc->sc_vstep = 12826;
break;
case 0x800f: /* 13 Option */
sc->sc_vbase = 800000;
sc->sc_vstep = 10000;
break;
case 0x800c: /* 23 Option */
sc->sc_vbase = 600000;
sc->sc_vstep = 12500;
break;
case 0x8004: /* 24 Option */
sc->sc_vbase = 603000;
sc->sc_vstep = 12967;
break;
default:
printf(", unknown ID1 0x%02x ID2 0x%02x\n", id1, id2);
return;
}
break;
case FANPWR_RK8602:
sc->sc_vbase = 500000;
sc->sc_vstep = 6250;
break;
case FANPWR_SYR827:
case FANPWR_SYR828:
sc->sc_vbase = 712500;
sc->sc_vstep = 12500;
break;
case FANPWR_TCS4525:
sc->sc_vbase = 600000;
sc->sc_vstep = 6250;
break;
}
voltage = fanpwr_get_voltage(sc);
printf(", %d.%02d VDC", voltage / 1000000,
(voltage % 1000000) / 10000);
ramp_delay = OF_getpropint(node, "regulator-ramp-delay", 0);
if (ramp_delay > 0) {
if (sc->sc_id == FANPWR_TCS4525) {
uint8_t ctrl, slew;
if (ramp_delay >= 18700)
slew = 0;
else if (ramp_delay >= 9300)
slew = 1;
else if (ramp_delay >= 4600)
slew = 2;
else
slew = 3;
ctrl = fanpwr_read(sc, TCS4525_TIME);
ctrl &= ~TCS4525_TIME_SLEW_MASK;
ctrl |= slew << TCS4525_TIME_SLEW_SHIFT;
fanpwr_write(sc, TCS4525_TIME, ctrl);
} else {
uint8_t ctrl, slew;
for (slew = 7; slew > 0; slew--)
if ((64000 >> slew) >= ramp_delay)
break;
ctrl = fanpwr_read(sc, FAN53555_CONTROL);
ctrl &= ~FAN53555_CONTROL_SLEW_MASK;
ctrl |= slew << FAN53555_CONTROL_SLEW_SHIFT;
fanpwr_write(sc, FAN53555_CONTROL, ctrl);
}
}
sc->sc_rd.rd_node = node;
sc->sc_rd.rd_cookie = sc;
sc->sc_rd.rd_get_voltage = fanpwr_get_voltage;
sc->sc_rd.rd_set_voltage = fanpwr_set_voltage;
regulator_register(&sc->sc_rd);
printf("\n");
}
uint8_t
fanpwr_read(struct fanpwr_softc *sc, int reg)
{
uint8_t cmd = reg;
uint8_t val;
int error;
iic_acquire_bus(sc->sc_tag, I2C_F_POLL);
error = iic_exec(sc->sc_tag, I2C_OP_READ_WITH_STOP, sc->sc_addr,
&cmd, sizeof cmd, &val, sizeof val, I2C_F_POLL);
iic_release_bus(sc->sc_tag, I2C_F_POLL);
if (error) {
printf("error %d\n", error);
printf("%s: can't read register 0x%02x\n",
sc->sc_dev.dv_xname, reg);
val = 0xff;
}
return val;
}
void
fanpwr_write(struct fanpwr_softc *sc, int reg, uint8_t val)
{
uint8_t cmd = reg;
int error;
iic_acquire_bus(sc->sc_tag, I2C_F_POLL);
error = iic_exec(sc->sc_tag, I2C_OP_WRITE_WITH_STOP, sc->sc_addr,
&cmd, sizeof cmd, &val, sizeof val, I2C_F_POLL);
iic_release_bus(sc->sc_tag, I2C_F_POLL);
if (error) {
printf("%s: can't write register 0x%02x\n",
sc->sc_dev.dv_xname, reg);
}
}
uint32_t
fanpwr_get_voltage(void *cookie)
{
struct fanpwr_softc *sc = cookie;
uint8_t vsel;
vsel = fanpwr_read(sc, sc->sc_vsel);
return sc->sc_vbase + (vsel & sc->sc_vsel_nsel_mask) * sc->sc_vstep;
}
int
fanpwr_set_voltage(void *cookie, uint32_t voltage)
{
struct fanpwr_softc *sc = cookie;
uint32_t vmin = sc->sc_vbase;
uint32_t vmax = vmin + sc->sc_vsel_nsel_mask * sc->sc_vstep;
uint8_t vsel;
if (voltage < vmin || voltage > vmax)
return EINVAL;
vsel = fanpwr_read(sc, sc->sc_vsel);
vsel &= ~sc->sc_vsel_nsel_mask;
vsel |= (voltage - sc->sc_vbase) / sc->sc_vstep;
fanpwr_write(sc, sc->sc_vsel, vsel);
return 0;
}
|