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
|
/* $OpenBSD: qcpmicgpio.c,v 1.3 2022/11/09 19:25:50 patrick Exp $ */
/*
* Copyright (c) 2022 Patrick Wildt <patrick@blueri.se>
*
* 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/malloc.h>
#include <sys/systm.h>
#include <machine/bus.h>
#include <machine/fdt.h>
#include <dev/fdt/spmivar.h>
#include <dev/ofw/openfirm.h>
#include <dev/ofw/ofw_gpio.h>
#include <dev/ofw/fdt.h>
/* Registers. */
#define GPIO_TYPE 0x04
#define GPIO_TYPE_VAL 0x10
#define GPIO_SUBTYPE 0x05
#define GPIO_SUBTYPE_GPIO_4CH 0x1
#define GPIO_SUBTYPE_GPIOC_4CH 0x5
#define GPIO_SUBTYPE_GPIO_8CH 0x9
#define GPIO_SUBTYPE_GPIOC_8CH 0xd
#define GPIO_SUBTYPE_GPIO_LV 0x10
#define GPIO_SUBTYPE_GPIO_MV 0x11
#define GPIO_PIN_OFF(x) (0x100 * (x))
#define GPIO_PIN_STATUS 0x10
#define GPIO_PIN_STATUS_ON (1 << 0)
#define GPIO_PIN_MODE 0x40
#define GPIO_PIN_MODE_VALUE (1 << 0)
#define GPIO_PIN_MODE_DIR_SHIFT 4
#define GPIO_PIN_MODE_DIR_MASK 0x7
#define GPIO_PIN_MODE_DIR_LVMV_SHIFT 0
#define GPIO_PIN_MODE_DIR_LVMV_MASK 0x3
#define GPIO_PIN_MODE_DIR_DIGITAL_IN 0
#define GPIO_PIN_MODE_DIR_DIGITAL_OUT 1
#define GPIO_PIN_MODE_DIR_DIGITAL_IO 2
#define GPIO_PIN_MODE_DIR_ANALOG_PT 3
#define GPIO_PIN_LVMV_DOUT_CTL 0x44
#define GPIO_PIN_LVMV_DOUT_CTL_INVERT (1U << 7)
struct qcpmicgpio_softc {
struct device sc_dev;
int sc_node;
spmi_tag_t sc_tag;
int8_t sc_sid;
uint16_t sc_addr;
int sc_is_lv_mv;
int sc_npins;
struct gpio_controller sc_gc;
};
int qcpmicgpio_match(struct device *, void *, void *);
void qcpmicgpio_attach(struct device *, struct device *, void *);
const struct cfattach qcpmicgpio_ca = {
sizeof(struct qcpmicgpio_softc), qcpmicgpio_match, qcpmicgpio_attach
};
struct cfdriver qcpmicgpio_cd = {
NULL, "qcpmicgpio", DV_DULL
};
uint8_t qcpmicgpio_read(struct qcpmicgpio_softc *, uint16_t);
void qcpmicgpio_write(struct qcpmicgpio_softc *, uint16_t, uint8_t);
void qcpmicgpio_config_pin(void *, uint32_t *, int);
int qcpmicgpio_get_pin(void *, uint32_t *);
void qcpmicgpio_set_pin(void *, uint32_t *, int);
int
qcpmicgpio_match(struct device *parent, void *match, void *aux)
{
struct spmi_attach_args *saa = aux;
return OF_is_compatible(saa->sa_node, "qcom,spmi-gpio");
}
void
qcpmicgpio_attach(struct device *parent, struct device *self, void *aux)
{
struct spmi_attach_args *saa = aux;
struct qcpmicgpio_softc *sc = (struct qcpmicgpio_softc *)self;
uint8_t reg;
sc->sc_addr = OF_getpropint(saa->sa_node, "reg", -1);
if (sc->sc_addr < 0) {
printf(": can't find registers\n");
return;
}
sc->sc_node = saa->sa_node;
sc->sc_tag = saa->sa_tag;
sc->sc_sid = saa->sa_sid;
if (OF_is_compatible(saa->sa_node, "qcom,pm8350-gpio"))
sc->sc_npins = 10;
if (OF_is_compatible(saa->sa_node, "qcom,pm8350c-gpio"))
sc->sc_npins = 9;
if (OF_is_compatible(saa->sa_node, "qcom,pmr735a-gpio"))
sc->sc_npins = 4;
if (!sc->sc_npins) {
printf(": no pins\n");
return;
}
if (qcpmicgpio_read(sc, GPIO_TYPE) != GPIO_TYPE_VAL) {
printf(": not a GPIO block\n");
return;
}
reg = qcpmicgpio_read(sc, GPIO_SUBTYPE);
if (reg == GPIO_SUBTYPE_GPIO_LV || reg == GPIO_SUBTYPE_GPIO_MV)
sc->sc_is_lv_mv = 1;
sc->sc_gc.gc_node = saa->sa_node;
sc->sc_gc.gc_cookie = sc;
sc->sc_gc.gc_config_pin = qcpmicgpio_config_pin;
sc->sc_gc.gc_get_pin = qcpmicgpio_get_pin;
sc->sc_gc.gc_set_pin = qcpmicgpio_set_pin;
gpio_controller_register(&sc->sc_gc);
printf("\n");
}
void
qcpmicgpio_config_pin(void *cookie, uint32_t *cells, int config)
{
struct qcpmicgpio_softc *sc = cookie;
uint32_t pin = cells[0];
uint8_t reg;
int val;
if (pin >= sc->sc_npins)
return;
if (config & GPIO_CONFIG_OUTPUT)
val = GPIO_PIN_MODE_DIR_DIGITAL_OUT;
else
val = GPIO_PIN_MODE_DIR_DIGITAL_IN;
if (sc->sc_is_lv_mv) {
qcpmicgpio_write(sc, GPIO_PIN_OFF(pin) + GPIO_PIN_MODE, val);
} else {
reg = qcpmicgpio_read(sc, GPIO_PIN_OFF(pin) + GPIO_PIN_MODE);
reg &= ~(GPIO_PIN_MODE_DIR_MASK << GPIO_PIN_MODE_DIR_SHIFT);
reg |= val << GPIO_PIN_MODE_DIR_SHIFT;
qcpmicgpio_write(sc, GPIO_PIN_OFF(pin) + GPIO_PIN_MODE, reg);
}
}
int
qcpmicgpio_get_pin(void *cookie, uint32_t *cells)
{
struct qcpmicgpio_softc *sc = cookie;
uint32_t pin = cells[0];
uint32_t flags = cells[1];
uint8_t reg;
int val = 0;
if (pin >= sc->sc_npins)
return 0;
reg = qcpmicgpio_read(sc, GPIO_PIN_OFF(pin) + GPIO_PIN_MODE);
if (sc->sc_is_lv_mv) {
reg >>= GPIO_PIN_MODE_DIR_LVMV_SHIFT;
reg &= GPIO_PIN_MODE_DIR_LVMV_MASK;
} else {
reg >>= GPIO_PIN_MODE_DIR_SHIFT;
reg &= GPIO_PIN_MODE_DIR_MASK;
}
if (reg == GPIO_PIN_MODE_DIR_DIGITAL_IN ||
reg == GPIO_PIN_MODE_DIR_DIGITAL_IO) {
reg = qcpmicgpio_read(sc, GPIO_PIN_OFF(pin) + GPIO_PIN_STATUS);
val = !!(reg & GPIO_PIN_STATUS_ON);
}
if (reg == GPIO_PIN_MODE_DIR_DIGITAL_OUT) {
if (sc->sc_is_lv_mv) {
reg = qcpmicgpio_read(sc, GPIO_PIN_OFF(pin) +
GPIO_PIN_LVMV_DOUT_CTL);
val = !!(reg & GPIO_PIN_LVMV_DOUT_CTL_INVERT);
} else {
reg = qcpmicgpio_read(sc, GPIO_PIN_OFF(pin) +
GPIO_PIN_MODE);
val = !!(reg & GPIO_PIN_MODE_VALUE);
}
}
if (flags & GPIO_ACTIVE_LOW)
val = !val;
return val;
}
void
qcpmicgpio_set_pin(void *cookie, uint32_t *cells, int val)
{
struct qcpmicgpio_softc *sc = cookie;
uint32_t pin = cells[0];
uint32_t flags = cells[1];
uint8_t reg;
if (pin >= sc->sc_npins)
return;
if (flags & GPIO_ACTIVE_LOW)
val = !val;
if (sc->sc_is_lv_mv) {
reg = qcpmicgpio_read(sc, GPIO_PIN_OFF(pin) +
GPIO_PIN_LVMV_DOUT_CTL);
reg &= ~GPIO_PIN_LVMV_DOUT_CTL_INVERT;
if (val)
reg |= GPIO_PIN_LVMV_DOUT_CTL_INVERT;
qcpmicgpio_write(sc, GPIO_PIN_OFF(pin) +
GPIO_PIN_LVMV_DOUT_CTL, reg);
} else {
reg = qcpmicgpio_read(sc, GPIO_PIN_OFF(pin) + GPIO_PIN_MODE);
reg &= ~GPIO_PIN_MODE_VALUE;
if (val)
reg |= GPIO_PIN_MODE_VALUE;
qcpmicgpio_write(sc, GPIO_PIN_OFF(pin) + GPIO_PIN_MODE, reg);
}
}
uint8_t
qcpmicgpio_read(struct qcpmicgpio_softc *sc, uint16_t reg)
{
uint8_t val = 0;
int error;
error = spmi_cmd_read(sc->sc_tag, sc->sc_sid, SPMI_CMD_EXT_READL,
sc->sc_addr + reg, &val, sizeof(val));
if (error)
printf("%s: error reading\n", sc->sc_dev.dv_xname);
return val;
}
void
qcpmicgpio_write(struct qcpmicgpio_softc *sc, uint16_t reg, uint8_t val)
{
int error;
error = spmi_cmd_write(sc->sc_tag, sc->sc_sid, SPMI_CMD_EXT_WRITEL,
sc->sc_addr + reg, &val, sizeof(val));
if (error)
printf("%s: error writing\n", sc->sc_dev.dv_xname);
}
|