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
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
|
/* $OpenBSD: amlpinctrl.c,v 1.4 2019/09/02 08:16:49 kettenis Exp $ */
/*
* 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/bus.h>
#include <machine/fdt.h>
#include <dev/ofw/openfirm.h>
#include <dev/ofw/ofw_gpio.h>
#include <dev/ofw/ofw_pinctrl.h>
#include <dev/ofw/fdt.h>
#define BIAS_DISABLE 0x00
#define BIAS_PULL_UP 0x01
#define BIAS_PULL_DOWN 0x02
#define GPIOH_0 16
#define BOOT_0 25
#define BOOT_1 26
#define BOOT_2 27
#define BOOT_3 28
#define BOOT_4 29
#define BOOT_5 30
#define BOOT_6 31
#define BOOT_7 32
#define BOOT_8 33
#define BOOT_10 35
#define BOOT_13 38
#define GPIOC_0 41
#define GPIOC_1 42
#define GPIOC_2 43
#define GPIOC_3 44
#define GPIOC_4 45
#define GPIOC_5 46
#define PERIPHS_PIN_MUX_0 0xb0
#define PERIPHS_PIN_MUX_9 0xb9
#define PERIPHS_PIN_MUX_B 0xbb
#define PREG_PAD_GPIO0_EN_N 0x10
#define PREG_PAD_GPIO1_EN_N 0x13
#define PREG_PAD_GPIO3_EN_N 0x19
#define PAD_PULL_UP_EN_0 0x48
#define PAD_PULL_UP_EN_1 0x49
#define PAD_PULL_UP_EN_3 0x4b
#define PAD_PULL_UP_0 0x3a
#define PAD_PULL_UP_1 0x3b
#define PAD_PULL_UP_3 0x3d
#define PAD_DS_0A 0xd0
#define PAD_DS_1A 0xd1
#define PAD_DS_3A 0xd4
struct aml_gpio_bank {
uint8_t first_pin, num_pins;
uint8_t mux_reg;
uint8_t gpio_reg;
uint8_t pull_reg;
uint8_t pull_en_reg;
uint8_t ds_reg;
};
struct aml_pin_group {
const char *name;
uint8_t pin;
uint8_t func;
const char *function;
};
struct aml_gpio_bank aml_g12a_gpio_banks[] = {
/* BOOT */
{ BOOT_0, 16, PERIPHS_PIN_MUX_0 - PERIPHS_PIN_MUX_0,
PREG_PAD_GPIO0_EN_N - PREG_PAD_GPIO0_EN_N,
PAD_PULL_UP_0 - PAD_PULL_UP_0,
PAD_PULL_UP_EN_0 - PAD_PULL_UP_EN_0, PAD_DS_0A - PAD_DS_0A },
/* GPIOC */
{ GPIOC_0, 8, PERIPHS_PIN_MUX_9 - PERIPHS_PIN_MUX_0,
PREG_PAD_GPIO1_EN_N - PREG_PAD_GPIO0_EN_N,
PAD_PULL_UP_1 - PAD_PULL_UP_0,
PAD_PULL_UP_EN_1 - PAD_PULL_UP_EN_0, PAD_DS_1A - PAD_DS_0A },
/* GPIOH */
{ GPIOH_0, 9, PERIPHS_PIN_MUX_B - PERIPHS_PIN_MUX_0,
PREG_PAD_GPIO3_EN_N - PREG_PAD_GPIO0_EN_N,
PAD_PULL_UP_3 - PAD_PULL_UP_0,
PAD_PULL_UP_EN_3 - PAD_PULL_UP_EN_0, PAD_DS_3A - PAD_DS_0A },
{ }
};
struct aml_pin_group aml_g12a_pin_groups[] = {
{ "sdcard_d0_c", GPIOC_0, 1, "sdcard" },
{ "sdcard_d1_c", GPIOC_1, 1, "sdcard" },
{ "sdcard_d2_c", GPIOC_2, 1, "sdcard" },
{ "sdcard_d3_c", GPIOC_3, 1, "sdcard" },
{ "sdcard_clk_c", GPIOC_4, 1, "sdcard" },
{ "sdcard_cmd_c", GPIOC_5, 1, "sdcard" },
{ "GPIOC_4", GPIOC_4, 0, "gpio_periphs" },
{ "emmc_nand_d0", BOOT_0, 1, "emmc" },
{ "emmc_nand_d1", BOOT_1, 1, "emmc" },
{ "emmc_nand_d2", BOOT_2, 1, "emmc" },
{ "emmc_nand_d3", BOOT_3, 1, "emmc" },
{ "emmc_nand_d4", BOOT_4, 1, "emmc" },
{ "emmc_nand_d5", BOOT_5, 1, "emmc" },
{ "emmc_nand_d6", BOOT_6, 1, "emmc" },
{ "emmc_nand_d7", BOOT_7, 1, "emmc" },
{ "emmc_clk", BOOT_8, 1, "emmc" },
{ "emmc_cmd", BOOT_10, 1, "emmc" },
{ "emmc_nand_ds", BOOT_13, 1, "emmc" },
{ "BOOT_8", BOOT_8, 0, "gpio_periphs" },
{ }
};
struct amlpinctrl_softc {
struct device sc_dev;
bus_space_tag_t sc_iot;
bus_space_handle_t sc_gpio_ioh;
bus_space_handle_t sc_pull_ioh;
bus_space_handle_t sc_pull_en_ioh;
bus_space_handle_t sc_mux_ioh;
bus_space_handle_t sc_ds_ioh;
struct aml_gpio_bank *sc_gpio_banks;
struct aml_pin_group *sc_pin_groups;
struct gpio_controller sc_gc;
};
int amlpinctrl_match(struct device *, void *, void *);
void amlpinctrl_attach(struct device *, struct device *, void *);
struct cfattach amlpinctrl_ca = {
sizeof(struct amlpinctrl_softc), amlpinctrl_match, amlpinctrl_attach
};
struct cfdriver amlpinctrl_cd = {
NULL, "amlpinctrl", DV_DULL
};
int amlpinctrl_pinctrl(uint32_t, void *);
void amlpinctrl_config_pin(void *, uint32_t *, int);
int amlpinctrl_get_pin(void *, uint32_t *);
void amlpinctrl_set_pin(void *, uint32_t *, int);
int
amlpinctrl_match(struct device *parent, void *match, void *aux)
{
struct fdt_attach_args *faa = aux;
int node = faa->fa_node;
return OF_is_compatible(node, "amlogic,meson-g12a-periphs-pinctrl");
}
void
amlpinctrl_attach(struct device *parent, struct device *self, void *aux)
{
struct amlpinctrl_softc *sc = (struct amlpinctrl_softc *)self;
struct fdt_attach_args *faa = aux;
uint64_t addr[5], size[5];
uint32_t *cell;
uint32_t acells, scells;
uint32_t reg[20];
int node = faa->fa_node;
int child;
int i, len, line;
for (child = OF_child(node); child; child = OF_peer(child)) {
if (OF_getproplen(child, "gpio-controller") == 0)
break;
}
if (child == 0) {
printf(": no register banks\n");
return;
}
acells = OF_getpropint(node, "#address-cells", faa->fa_acells);
scells = OF_getpropint(node, "#size-cells", faa->fa_scells);
len = OF_getproplen(child, "reg");
line = (acells + scells) * sizeof(uint32_t);
if (acells < 1 || acells > 2 || scells < 1 || scells > 2 ||
len > sizeof(reg) || (len / line) > nitems(addr)) {
printf(": unexpected register layout\n");
return;
}
OF_getpropintarray(child, "reg", reg, len);
for (i = 0, cell = reg; i < len / line; i++) {
addr[i] = cell[0];
if (acells > 1)
addr[i] = (addr[i] << 32) | cell[1];
cell += acells;
size[i] = cell[0];
if (scells > 1)
size[i] = (size[i] << 32) | cell[1];
cell += scells;
}
sc->sc_iot = faa->fa_iot;
if (bus_space_map(sc->sc_iot, addr[0], size[0], 0, &sc->sc_gpio_ioh)) {
printf(": can't map gpio registers\n");
return;
}
if (bus_space_map(sc->sc_iot, addr[1], size[1], 0, &sc->sc_pull_ioh)) {
printf(": can't map pull registers\n");
return;
}
if (bus_space_map(sc->sc_iot, addr[2], size[2], 0, &sc->sc_pull_en_ioh)) {
printf(": can't map pull-enable registers\n");
return;
}
if (bus_space_map(sc->sc_iot, addr[3], size[3], 0, &sc->sc_mux_ioh)) {
printf(": can't map mux registers\n");
return;
}
if (bus_space_map(sc->sc_iot, addr[4], size[4], 0, &sc->sc_ds_ioh)) {
printf(": can't map ds registers\n");
return;
}
printf("\n");
sc->sc_gpio_banks = aml_g12a_gpio_banks;
sc->sc_pin_groups = aml_g12a_pin_groups;
pinctrl_register(faa->fa_node, amlpinctrl_pinctrl, sc);
sc->sc_gc.gc_node = child;
sc->sc_gc.gc_cookie = sc;
sc->sc_gc.gc_config_pin = amlpinctrl_config_pin;
sc->sc_gc.gc_get_pin = amlpinctrl_get_pin;
sc->sc_gc.gc_set_pin = amlpinctrl_set_pin;
gpio_controller_register(&sc->sc_gc);
}
struct aml_gpio_bank *
amlpinctrl_lookup_bank(struct amlpinctrl_softc *sc, uint32_t pin)
{
struct aml_gpio_bank *bank;
for (bank = sc->sc_gpio_banks; bank->num_pins > 0; bank++) {
if (pin >= bank->first_pin &&
pin < bank->first_pin + bank->num_pins)
return bank;
}
return NULL;
}
struct aml_pin_group *
amlpinctrl_lookup_group(struct amlpinctrl_softc *sc, const char *name)
{
struct aml_pin_group *group;
for (group = sc->sc_pin_groups; group->name; group++) {
if (strcmp(name, group->name) == 0)
return group;
}
return NULL;
}
void
amlpinctrl_config_func(struct amlpinctrl_softc *sc, const char *name,
const char *function, int bias, int ds)
{
struct aml_pin_group *group;
struct aml_gpio_bank *bank;
bus_addr_t off;
uint32_t pin;
uint32_t reg;
group = amlpinctrl_lookup_group(sc, name);
if (group == NULL) {
printf("%s: %s\n", __func__, name);
return;
}
if (strcmp(function, group->function) != 0) {
printf("%s: mismatched function %s\n", __func__, function);
return;
}
bank = amlpinctrl_lookup_bank(sc, group->pin);
KASSERT(bank);
pin = group->pin - bank->first_pin;
/* mux */
off = (bank->mux_reg + pin / 8) << 2;
reg = bus_space_read_4(sc->sc_iot, sc->sc_mux_ioh, off);
reg &= ~(0xf << ((pin % 8) * 4));
reg |= (group->func << ((pin % 8) * 4));
bus_space_write_4(sc->sc_iot, sc->sc_mux_ioh, off, reg);
/* pull */
off = bank->pull_reg << 2;
reg = bus_space_read_4(sc->sc_iot, sc->sc_pull_ioh, off);
if (bias == BIAS_PULL_UP)
reg |= (1 << pin);
else
reg &= ~(1 << pin);
bus_space_write_4(sc->sc_iot, sc->sc_pull_ioh, off, reg);
/* pull-enable */
off = bank->pull_en_reg << 2;
reg = bus_space_read_4(sc->sc_iot, sc->sc_pull_en_ioh, off);
if (bias != BIAS_DISABLE)
reg |= (1 << pin);
else
reg &= ~(1 << pin);
bus_space_write_4(sc->sc_iot, sc->sc_pull_en_ioh, off, reg);
if (ds < 0)
return;
else if (ds <= 500)
ds = 0;
else if (ds <= 2500)
ds = 1;
else if (ds <= 3000)
ds = 2;
else if (ds <= 4000)
ds = 3;
else {
printf("%s: invalid drive-strength %d\n", __func__, ds);
ds = 3;
}
/* ds */
off = (bank->ds_reg + pin / 16) << 2;
reg = bus_space_read_4(sc->sc_iot, sc->sc_ds_ioh, off);
reg &= ~(0x3 << ((pin % 16) * 2));
reg |= (ds << ((pin % 16) * 2));
bus_space_write_4(sc->sc_iot, sc->sc_ds_ioh, off, reg);
}
int
amlpinctrl_pinctrl(uint32_t phandle, void *cookie)
{
struct amlpinctrl_softc *sc = cookie;
int node, child;
node = OF_getnodebyphandle(phandle);
if (node == 0)
return -1;
for (child = OF_child(node); child; child = OF_peer(child)) {
char function[16];
char *groups;
char *group;
int bias, ds;
int len;
memset(function, 0, sizeof(function));
OF_getprop(child, "function", function, sizeof(function));
function[sizeof(function) - 1] = 0;
/* Bias */
if (OF_getproplen(child, "bias-pull-up") == 0)
bias = BIAS_PULL_UP;
else if (OF_getproplen(child, "bias-pull-down") == 0)
bias = BIAS_PULL_DOWN;
else
bias = BIAS_DISABLE;
/* Drive-strength */
ds = OF_getpropint(child, "drive-strength-microamp", -1);
len = OF_getproplen(child, "groups");
if (len <= 0) {
printf("%s: 0x%08x\n", __func__, phandle);
continue;
}
groups = malloc(len, M_TEMP, M_WAITOK);
OF_getprop(child, "groups", groups, len);
group = groups;
while (group < groups + len) {
amlpinctrl_config_func(sc, group, function, bias, ds);
group += strlen(group) + 1;
}
free(groups, M_TEMP, len);
}
return 0;
}
void
amlpinctrl_config_pin(void *cookie, uint32_t *cells, int config)
{
struct amlpinctrl_softc *sc = cookie;
struct aml_gpio_bank *bank;
bus_addr_t off;
uint32_t pin = cells[0];
uint32_t reg;
bank = amlpinctrl_lookup_bank(sc, pin);
if (bank == NULL) {
printf("%s: 0x%08x 0x%08x\n", __func__, cells[0], cells[1]);
return;
}
pin = pin - bank->first_pin;
/* mux */
off = (bank->mux_reg + pin / 8) << 2;
reg = bus_space_read_4(sc->sc_iot, sc->sc_mux_ioh, off);
reg &= ~(0xf << ((pin % 8) * 4));
bus_space_write_4(sc->sc_iot, sc->sc_mux_ioh, off, reg);
/* gpio */
off = bank->gpio_reg << 2;
reg = bus_space_read_4(sc->sc_iot, sc->sc_gpio_ioh, off);
if (config & GPIO_CONFIG_OUTPUT)
reg &= ~(1 << pin);
else
reg |= (1 << pin);
bus_space_write_4(sc->sc_iot, sc->sc_gpio_ioh, off, reg);
}
int
amlpinctrl_get_pin(void *cookie, uint32_t *cells)
{
struct amlpinctrl_softc *sc = cookie;
struct aml_gpio_bank *bank;
bus_addr_t off;
uint32_t pin = cells[0];
uint32_t flags = cells[1];
uint32_t reg;
int val;
bank = amlpinctrl_lookup_bank(sc, pin);
if (bank == NULL) {
printf("%s: 0x%08x 0x%08x\n", __func__, cells[0], cells[1]);
return 0;
}
pin = pin - bank->first_pin;
/* gpio */
off = (bank->gpio_reg + 2) << 2;
reg = bus_space_read_4(sc->sc_iot, sc->sc_gpio_ioh, off);
val = (reg >> pin) & 1;
if (flags & GPIO_ACTIVE_LOW)
val = !val;
return val;
}
void
amlpinctrl_set_pin(void *cookie, uint32_t *cells, int val)
{
struct amlpinctrl_softc *sc = cookie;
struct aml_gpio_bank *bank;
bus_addr_t off;
uint32_t pin = cells[0];
uint32_t flags = cells[1];
int reg;
bank = amlpinctrl_lookup_bank(sc, pin);
if (bank == NULL) {
printf("%s: 0x%08x 0x%08x\n", __func__, cells[0], cells[1]);
return;
}
if (flags & GPIO_ACTIVE_LOW)
val = !val;
pin = pin - bank->first_pin;
/* gpio */
off = (bank->gpio_reg + 1) << 2;
reg = bus_space_read_4(sc->sc_iot, sc->sc_gpio_ioh, off);
if (val)
reg |= (1 << pin);
else
reg &= ~(1 << pin);
bus_space_write_4(sc->sc_iot, sc->sc_gpio_ioh, off, reg);
}
|