/* $NetBSD: qcomgpio.c,v 1.8 2024/12/17 22:05:21 riastradh Exp $ */
/*-
* Copyright (c) 2024 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
* by Jared McNeill <
[email protected]>.
*
* 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 NETBSD FOUNDATION, INC. AND CONTRIBUTORS
* ``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 FOUNDATION OR CONTRIBUTORS
* 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: qcomgpio.c,v 1.8 2024/12/17 22:05:21 riastradh Exp $");
#include <sys/param.h>
#include <sys/types.h>
#include <sys/bus.h>
#include <sys/cpu.h>
#include <sys/device.h>
#include <sys/evcnt.h>
#include <sys/gpio.h>
#include <sys/kmem.h>
#include <sys/mutex.h>
#include <sys/queue.h>
#include <dev/acpi/acpi_event.h>
#include <dev/acpi/acpi_gpio.h>
#include <dev/acpi/acpi_intr.h>
#include <dev/acpi/acpireg.h>
#include <dev/acpi/acpivar.h>
#include <dev/acpi/qcomgpioreg.h>
#include <dev/gpio/gpiovar.h>
typedef enum {
QCOMGPIO_X1E,
} qcomgpio_type;
struct qcomgpio_reserved {
int start;
int count;
};
struct qcomgpio_config {
struct qcomgpio_reserved *reserved;
u_int num_reserved;
u_int *pdc_filter;
u_int num_pdc_filter;
};
struct qcomgpio_intr_handler {
int (*ih_func)(void *);
void *ih_arg;
int ih_pin;
int ih_type;
struct evcnt ih_evcnt;
char ih_name[16];
LIST_ENTRY(qcomgpio_intr_handler) ih_list;
};
struct qcomgpio_pdcmap {
int pm_pin;
u_int pm_irq;
};
struct qcomgpio_softc {
device_t sc_dev;
device_t sc_gpiodev;
bus_space_handle_t sc_bsh;
bus_space_tag_t sc_bst;
const struct qcomgpio_config *sc_config;
struct gpio_chipset_tag sc_gc;
gpio_pin_t *sc_pins;
u_int sc_npins;
LIST_HEAD(, qcomgpio_intr_handler) sc_intrs;
kmutex_t sc_lock;
struct qcomgpio_pdcmap *sc_pdcmap;
u_int sc_npdcmap;
};
#define RD4(sc, reg) \
bus_space_read_4((sc)->sc_bst, (sc)->sc_bsh, (reg))
#define WR4(sc, reg, val) \
bus_space_write_4((sc)->sc_bst, (sc)->sc_bsh, (reg), (val))
static int qcomgpio_match(device_t, cfdata_t, void *);
static void qcomgpio_attach(device_t, device_t, void *);
static bool qcomgpio_pin_reserved(struct qcomgpio_softc *, int);
static int qcomgpio_pin_read(void *, int);
static void qcomgpio_pin_write(void *, int, int);
static void qcomgpio_pin_ctl(void *, int, int);
static void * qcomgpio_intr_establish(void *, int, int, int,
int (*)(void *), void *);
static void qcomgpio_intr_disestablish(void *, void *);
static bool qcomgpio_intr_str(void *, int, int, char *, size_t);
static void qcomgpio_intr_mask(void *, void *);
static void qcomgpio_intr_unmask(void *, void *);
static u_int qcomgpio_acpi_num_pins(device_t, ACPI_HANDLE);
static void qcomgpio_acpi_fill_pdcmap(struct qcomgpio_softc *,
ACPI_HANDLE);
static int qcomgpio_acpi_translate(void *, ACPI_RESOURCE_GPIO *, void **);
static void qcomgpio_register_event(void *, struct acpi_event *,
ACPI_RESOURCE_GPIO *);
static int qcomgpio_intr(void *);
CFATTACH_DECL_NEW(qcomgpio, sizeof(struct qcomgpio_softc),
qcomgpio_match, qcomgpio_attach, NULL, NULL);
static UINT8 qcomgpio_gpio_dsm_uuid[ACPI_UUID_LENGTH] = {
0xa4, 0xb2, 0xb9, 0x98, 0x63, 0x16, 0x5f, 0x4a,
0x82, 0xf2, 0xc6, 0xc9, 0x9a, 0x39, 0x47, 0x26
};
#define QCOMGPIO_GPIO_DSM_REV 0
#define QCOMGPIO_GPIO_DSM_FUNC_NUM_PINS 2
static UINT8 qcomgpio_pdc_dsm_uuid[ACPI_UUID_LENGTH] = {
0xd4, 0x0f, 0x1b, 0x92, 0x7c, 0x56, 0xa0, 0x43,
0xbb, 0x14, 0x26, 0x48, 0xf7, 0xb2, 0xa1, 0x8c
};
#define QCOMGPIO_PDC_DSM_REV 0
#define QCOMGPIO_PDC_DSM_FUNC_CIPR 2
static struct qcomgpio_reserved qcomgpio_x1e_reserved[] = {
{ .start = 34, .count = 2 },
{ .start = 44, .count = 4 },
{ .start = 72, .count = 2 },
{ .start = 238, .count = 1 },
};
static int qcomgpio_x1e_pdc_filter[] = {
0x140, /* Interrupt storm due to missing SMI support. */
};
static struct qcomgpio_config qcomgpio_x1e_config = {
.reserved = qcomgpio_x1e_reserved,
.num_reserved = __arraycount(qcomgpio_x1e_reserved),
.pdc_filter = qcomgpio_x1e_pdc_filter,
.num_pdc_filter = __arraycount(qcomgpio_x1e_pdc_filter),
};
static const struct device_compatible_entry compat_data[] = {
{ .compat = "QCOM0C0C", .data = &qcomgpio_x1e_config },
DEVICE_COMPAT_EOL
};
static int
qcomgpio_match(device_t parent, cfdata_t cf, void *aux)
{
struct acpi_attach_args *aa = aux;
return acpi_compatible_match(aa, compat_data);
}
static void
qcomgpio_attach(device_t parent, device_t self, void *aux)
{
struct qcomgpio_softc * const sc = device_private(self);
struct acpi_attach_args *aa = aux;
struct gpiobus_attach_args gba;
ACPI_HANDLE hdl = aa->aa_node->ad_handle;
struct acpi_resources res;
struct acpi_mem *mem;
struct acpi_irq *irq;
ACPI_STATUS rv;
int error, pin, n;
void *ih;
sc->sc_dev = self;
sc->sc_config = acpi_compatible_lookup(aa, compat_data)->data;
sc->sc_bst = aa->aa_memt;
KASSERT(sc->sc_config != NULL);
LIST_INIT(&sc->sc_intrs);
mutex_init(&sc->sc_lock, MUTEX_DEFAULT, IPL_VM);
rv = acpi_resource_parse(sc->sc_dev, hdl, "_CRS",
&res, &acpi_resource_parse_ops_default);
if (ACPI_FAILURE(rv)) {
return;
}
mem = acpi_res_mem(&res, 0);
if (mem == NULL) {
aprint_error_dev(self, "couldn't find mem resource\n");
goto done;
}
irq = acpi_res_irq(&res, 0);
if (irq == NULL) {
aprint_error_dev(self, "couldn't find irq resource\n");
goto done;
}
error = bus_space_map(sc->sc_bst, mem->ar_base, mem->ar_length, 0,
&sc->sc_bsh);
if (error) {
aprint_error_dev(self, "couldn't map registers\n");
goto done;
}
sc->sc_npdcmap = res.ar_nirq;
sc->sc_pdcmap = kmem_zalloc(sizeof(*sc->sc_pdcmap) * sc->sc_npdcmap,
KM_SLEEP);
for (n = 0; n < sc->sc_npdcmap; n++) {
sc->sc_pdcmap[n].pm_irq = acpi_res_irq(&res, n)->ar_irq;
sc->sc_pdcmap[n].pm_pin = -1;
aprint_debug_dev(self, "IRQ resource %u -> %#x\n",
n, sc->sc_pdcmap[n].pm_irq);
}
qcomgpio_acpi_fill_pdcmap(sc, hdl);
sc->sc_npins = qcomgpio_acpi_num_pins(self, hdl);
if (sc->sc_npins == 0) {
aprint_error_dev(self, "couldn't determine pin count!\n");
goto done;
}
sc->sc_pins = kmem_zalloc(sizeof(*sc->sc_pins) * sc->sc_npins,
KM_SLEEP);
for (pin = 0; pin < sc->sc_npins; pin++) {
sc->sc_pins[pin].pin_caps = qcomgpio_pin_reserved(sc, pin) ?
0 : (GPIO_PIN_INPUT | GPIO_PIN_OUTPUT);
sc->sc_pins[pin].pin_num = pin;
sc->sc_pins[pin].pin_intrcaps =
GPIO_INTR_POS_EDGE | GPIO_INTR_NEG_EDGE |
GPIO_INTR_DOUBLE_EDGE | GPIO_INTR_HIGH_LEVEL |
GPIO_INTR_LOW_LEVEL | GPIO_INTR_MPSAFE;
}
sc->sc_gc.gp_cookie = sc;
sc->sc_gc.gp_pin_read = qcomgpio_pin_read;
sc->sc_gc.gp_pin_write = qcomgpio_pin_write;
sc->sc_gc.gp_pin_ctl = qcomgpio_pin_ctl;
sc->sc_gc.gp_intr_establish = qcomgpio_intr_establish;
sc->sc_gc.gp_intr_disestablish = qcomgpio_intr_disestablish;
sc->sc_gc.gp_intr_str = qcomgpio_intr_str;
sc->sc_gc.gp_intr_mask = qcomgpio_intr_mask;
sc->sc_gc.gp_intr_unmask = qcomgpio_intr_unmask;
rv = acpi_event_create_gpio(self, hdl, qcomgpio_register_event, sc);
if (ACPI_FAILURE(rv)) {
if (rv != AE_NOT_FOUND) {
aprint_error_dev(self, "failed to create events: %s\n",
AcpiFormatException(rv));
}
goto done;
}
ih = acpi_intr_establish(self, (uint64_t)(uintptr_t)hdl,
IPL_VM, false, qcomgpio_intr, sc, device_xname(self));
if (ih == NULL) {
aprint_error_dev(self, "couldn't establish interrupt\n");
goto done;
}
memset(&gba, 0, sizeof(gba));
gba.gba_gc = &sc->sc_gc;
gba.gba_pins = sc->sc_pins;
gba.gba_npins = sc->sc_npins;
sc->sc_gpiodev = config_found(self, &gba, gpiobus_print,
CFARGS(.iattr = "gpiobus"));
if (sc->sc_gpiodev != NULL) {
acpi_gpio_register(aa->aa_node, self,
qcomgpio_acpi_translate, sc);
}
done:
acpi_resource_cleanup(&res);
}
static u_int
qcomgpio_acpi_num_pins(device_t dev, ACPI_HANDLE hdl)
{
ACPI_STATUS rv;
ACPI_INTEGER npins;
rv = acpi_dsm_integer(hdl, qcomgpio_gpio_dsm_uuid,
QCOMGPIO_GPIO_DSM_REV, QCOMGPIO_GPIO_DSM_FUNC_NUM_PINS,
NULL, &npins);
if (ACPI_FAILURE(rv)) {
aprint_error_dev(dev, "GPIO _DSM failed: %s\n",
AcpiFormatException(rv));
return 0;
}
aprint_debug_dev(dev, "GPIO pin count: %u\n", (u_int)npins);
return (u_int)npins;
}
static void
qcomgpio_acpi_fill_pdcmap(struct qcomgpio_softc *sc,
ACPI_HANDLE hdl)
{
ACPI_STATUS rv;
ACPI_OBJECT *obj;
u_int n, filt;
rv = acpi_dsm_typed(hdl, qcomgpio_pdc_dsm_uuid,
QCOMGPIO_PDC_DSM_REV, QCOMGPIO_PDC_DSM_FUNC_CIPR,
NULL, ACPI_TYPE_PACKAGE, &obj);
if (ACPI_FAILURE(rv)) {
aprint_error_dev(sc->sc_dev, "PDC _DSM failed: %s\n",
AcpiFormatException(rv));
return;
}
for (n = 0; n < obj->Package.Count; n++) {
ACPI_OBJECT *map = &obj->Package.Elements[n];
bool filter = false;
u_int irq, pdc;
int pin;
if (map->Type != ACPI_TYPE_PACKAGE ||
map->Package.Count < 3 ||
map->Package.Elements[0].Type != ACPI_TYPE_INTEGER ||
map->Package.Elements[1].Type != ACPI_TYPE_INTEGER ||
map->Package.Elements[2].Type != ACPI_TYPE_INTEGER) {
continue;
}
irq = (u_int)map->Package.Elements[2].Integer.Value;
pin = (int)map->Package.Elements[1].Integer.Value;
for (pdc = 0; pdc < sc->sc_npdcmap; pdc++) {
if (sc->sc_pdcmap[pdc].pm_irq == irq) {
for (filt = 0;
filt < sc->sc_config->num_pdc_filter;
filt++) {
if (sc->sc_config->pdc_filter[filt] ==
pdc * 64) {
filter = true;
break;
}
}
if (!filter) {
sc->sc_pdcmap[pdc].pm_pin = pin;
}
break;
}
}
aprint_debug_dev(sc->sc_dev,
"PDC irq %#x -> pin %d%s%s\n", irq, pin,
filter ? " (filtered)" : "",
pdc == sc->sc_npdcmap ? " (unused)" : "");
}
ACPI_FREE(obj);
}
static int
qcomgpio_acpi_translate(void *priv, ACPI_RESOURCE_GPIO *gpio, void **gpiop)
{
struct qcomgpio_softc * const sc = priv;
const ACPI_INTEGER vpin = gpio->PinTable[0];
int pin = -1;
if (vpin < sc->sc_npins) {
/* Virtual pin number is 1:1 mapping with hardware. */
pin = vpin;
} else if (vpin / 64 < sc->sc_npdcmap) {
/* Translate the virtual pin number to a hardware pin. */
pin = sc->sc_pdcmap[vpin / 64].pm_pin;
}
aprint_debug_dev(sc->sc_dev, "translate %#lx -> %u\n", vpin, pin);
if (gpiop != NULL) {
if (sc->sc_gpiodev != NULL) {
*gpiop = device_private(sc->sc_gpiodev);
} else {
device_printf(sc->sc_dev,
"no gpiodev for pin %#lx -> %u\n", vpin, pin);
pin = -1;
}
}
return pin;
}
static int
qcomgpio_acpi_event(void *priv)
{
struct acpi_event * const ev = priv;
acpi_event_notify(ev);
return 1;
}
static void
qcomgpio_register_event(void *priv, struct acpi_event *ev,
ACPI_RESOURCE_GPIO *gpio)
{
struct qcomgpio_softc * const sc = priv;
int irqmode;
void *ih;
const int pin = qcomgpio_acpi_translate(sc, gpio, NULL);
if (pin < 0) {
aprint_error_dev(sc->sc_dev,
"ignoring event for pin %#x (out of range)\n",
gpio->PinTable[0]);
return;
}
if (gpio->Triggering == ACPI_LEVEL_SENSITIVE) {
irqmode = gpio->Polarity == ACPI_ACTIVE_HIGH ?
GPIO_INTR_HIGH_LEVEL : GPIO_INTR_LOW_LEVEL;
} else {
KASSERT(gpio->Triggering == ACPI_EDGE_SENSITIVE);
if (gpio->Polarity == ACPI_ACTIVE_LOW) {
irqmode = GPIO_INTR_NEG_EDGE;
} else if (gpio->Polarity == ACPI_ACTIVE_HIGH) {
irqmode = GPIO_INTR_POS_EDGE;
} else {
KASSERT(gpio->Polarity == ACPI_ACTIVE_BOTH);
irqmode = GPIO_INTR_DOUBLE_EDGE;
}
}
ih = qcomgpio_intr_establish(sc, pin, IPL_VM, irqmode,
qcomgpio_acpi_event, ev);
if (ih == NULL) {
aprint_error_dev(sc->sc_dev,
"couldn't register event for pin %#x\n",
gpio->PinTable[0]);
return;
}
if (gpio->Triggering == ACPI_LEVEL_SENSITIVE) {
acpi_event_set_intrcookie(ev, ih);
}
}
static bool
qcomgpio_pin_reserved(struct qcomgpio_softc *sc, int pin)
{
u_int n;
for (n = 0; n < sc->sc_config->num_reserved; n++) {
if (pin >= sc->sc_config->reserved[n].start &&
pin < sc->sc_config->reserved[n].start +
sc->sc_config->reserved[n].count) {
return true;
}
}
return false;
}
static int
qcomgpio_pin_read(void *priv, int pin)
{
struct qcomgpio_softc * const sc = priv;
uint32_t val;
if (pin < 0 || pin >= sc->sc_npins) {
return 0;
}
if ((sc->sc_pins[pin].pin_caps & GPIO_PIN_INPUT) == 0) {
return 0;
}
val = RD4(sc, TLMM_GPIO_IN_OUT(pin));
return (val & TLMM_GPIO_IN_OUT_GPIO_IN) != 0;
}
static void
qcomgpio_pin_write(void *priv, int pin, int pinval)
{
struct qcomgpio_softc * const sc = priv;
uint32_t val;
if (pin < 0 || pin >= sc->sc_npins) {
return;
}
if ((sc->sc_pins[pin].pin_caps & GPIO_PIN_OUTPUT) == 0) {
return;
}
val = RD4(sc, TLMM_GPIO_IN_OUT(pin));
if (pinval) {
val |= TLMM_GPIO_IN_OUT_GPIO_OUT;
} else {
val &= ~TLMM_GPIO_IN_OUT_GPIO_OUT;
}
WR4(sc, TLMM_GPIO_IN_OUT(pin), val);
}
static void
qcomgpio_pin_ctl(void *priv, int pin, int flags)
{
/* Nothing to do here, as firmware has already configured pins. */
}
static void *
qcomgpio_intr_establish(void *priv, int pin, int ipl, int irqmode,
int (*func)(void *), void *arg)
{
struct qcomgpio_softc * const sc = priv;
struct qcomgpio_intr_handler *qih, *qihp;
uint32_t dect, pol;
uint32_t val;
if (pin < 0 || pin >= sc->sc_npins) {
return NULL;
}
if (ipl != IPL_VM) {
device_printf(sc->sc_dev, "%s: only IPL_VM supported\n",
__func__);
return NULL;
}
qih = kmem_alloc(sizeof(*qih), KM_SLEEP);
qih->ih_func = func;
qih->ih_arg = arg;
qih->ih_pin = pin;
qih->ih_type = (irqmode & GPIO_INTR_LEVEL_MASK) != 0 ?
IST_LEVEL : IST_EDGE;
snprintf(qih->ih_name, sizeof(qih->ih_name), "pin %d", pin);
mutex_enter(&sc->sc_lock);
LIST_FOREACH(qihp, &sc->sc_intrs, ih_list) {
if (qihp->ih_pin == qih->ih_pin) {
mutex_exit(&sc->sc_lock);
kmem_free(qih, sizeof(*qih));
device_printf(sc->sc_dev,
"%s: pin %d already establish\n", __func__, pin);
return NULL;
}
}
LIST_INSERT_HEAD(&sc->sc_intrs, qih, ih_list);
if ((irqmode & GPIO_INTR_LEVEL_MASK) != 0) {
dect = TLMM_GPIO_INTR_CFG_INTR_DECT_CTL_LEVEL;
pol = (irqmode & GPIO_INTR_HIGH_LEVEL) != 0 ?
TLMM_GPIO_INTR_CFG_INTR_POL_CTL : 0;
} else {
KASSERT((irqmode & GPIO_INTR_EDGE_MASK) != 0);
if ((irqmode & GPIO_INTR_NEG_EDGE) != 0) {
dect = TLMM_GPIO_INTR_CFG_INTR_DECT_CTL_EDGE_NEG;
pol = TLMM_GPIO_INTR_CFG_INTR_POL_CTL;
} else if ((irqmode & GPIO_INTR_POS_EDGE) != 0) {
dect = TLMM_GPIO_INTR_CFG_INTR_DECT_CTL_EDGE_POS;
pol = TLMM_GPIO_INTR_CFG_INTR_POL_CTL;
} else {
KASSERT((irqmode & GPIO_INTR_DOUBLE_EDGE) != 0);
dect = TLMM_GPIO_INTR_CFG_INTR_DECT_CTL_EDGE_BOTH;
pol = 0;
}
}
val = RD4(sc, TLMM_GPIO_INTR_CFG(pin));
val &= ~TLMM_GPIO_INTR_CFG_INTR_DECT_CTL_MASK;
val |= __SHIFTIN(dect, TLMM_GPIO_INTR_CFG_INTR_DECT_CTL_MASK);
val &= ~TLMM_GPIO_INTR_CFG_INTR_POL_CTL;
val |= pol;
val &= ~TLMM_GPIO_INTR_CFG_TARGET_PROC_MASK;
val |= __SHIFTIN(TLMM_GPIO_INTR_CFG_TARGET_PROC_RPM,
TLMM_GPIO_INTR_CFG_TARGET_PROC_MASK);
val |= TLMM_GPIO_INTR_CFG_INTR_RAW_STATUS_EN;
val |= TLMM_GPIO_INTR_CFG_INTR_ENABLE;
WR4(sc, TLMM_GPIO_INTR_CFG(pin), val);
mutex_exit(&sc->sc_lock);
evcnt_attach_dynamic(&qih->ih_evcnt, EVCNT_TYPE_INTR,
NULL, device_xname(sc->sc_dev), qih->ih_name);
return qih;
}
static void
qcomgpio_intr_disestablish(void *priv, void *ih)
{
struct qcomgpio_softc * const sc = priv;
struct qcomgpio_intr_handler *qih = ih;
uint32_t val;
evcnt_detach(&qih->ih_evcnt);
mutex_enter(&sc->sc_lock);
LIST_REMOVE(qih, ih_list);
val = RD4(sc, TLMM_GPIO_INTR_CFG(qih->ih_pin));
val &= ~TLMM_GPIO_INTR_CFG_INTR_ENABLE;
WR4(sc, TLMM_GPIO_INTR_CFG(qih->ih_pin), val);
mutex_exit(&sc->sc_lock);
kmem_free(qih, sizeof(*qih));
}
static bool
qcomgpio_intr_str(void *priv, int pin, int irqmode, char *buf, size_t buflen)
{
struct qcomgpio_softc * const sc = priv;
int rv;
rv = snprintf(buf, buflen, "%s pin %d", device_xname(sc->sc_dev), pin);
return rv < buflen;
}
static void
qcomgpio_intr_mask(void *priv, void *ih)
{
struct qcomgpio_softc * const sc = priv;
struct qcomgpio_intr_handler *qih = ih;
uint32_t val;
val = RD4(sc, TLMM_GPIO_INTR_CFG(qih->ih_pin));
if (qih->ih_type == IST_LEVEL) {
val &= ~TLMM_GPIO_INTR_CFG_INTR_RAW_STATUS_EN;
}
val &= ~TLMM_GPIO_INTR_CFG_INTR_ENABLE;
WR4(sc, TLMM_GPIO_INTR_CFG(qih->ih_pin), val);
}
static void
qcomgpio_intr_unmask(void *priv, void *ih)
{
struct qcomgpio_softc * const sc = priv;
struct qcomgpio_intr_handler *qih = ih;
uint32_t val;
val = RD4(sc, TLMM_GPIO_INTR_CFG(qih->ih_pin));
if (qih->ih_type == IST_LEVEL) {
val |= TLMM_GPIO_INTR_CFG_INTR_RAW_STATUS_EN;
}
val |= TLMM_GPIO_INTR_CFG_INTR_ENABLE;
WR4(sc, TLMM_GPIO_INTR_CFG(qih->ih_pin), val);
}
static int
qcomgpio_intr(void *priv)
{
struct qcomgpio_softc * const sc = priv;
struct qcomgpio_intr_handler *qih;
int rv = 0;
mutex_enter(&sc->sc_lock);
LIST_FOREACH(qih, &sc->sc_intrs, ih_list) {
const int pin = qih->ih_pin;
uint32_t val;
val = RD4(sc, TLMM_GPIO_INTR_STATUS(pin));
if ((val & TLMM_GPIO_INTR_STATUS_INTR_STATUS) != 0) {
qih->ih_evcnt.ev_count++;
rv |= qih->ih_func(qih->ih_arg);
val &= ~TLMM_GPIO_INTR_STATUS_INTR_STATUS;
WR4(sc, TLMM_GPIO_INTR_STATUS(pin), val);
}
}
mutex_exit(&sc->sc_lock);
return rv;
}