#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: pcagpio.c,v 1.14 2026/07/07 12:15:33 jdc Exp $");
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <sys/conf.h>
#include <sys/bus.h>
#include <dev/sysmon/sysmonvar.h>
#include <dev/i2c/i2cvar.h>
#include <dev/led.h>
#ifdef PCAGPIO_DEBUG
#define DPRINTF printf
#else
#define DPRINTF if (0) printf
#endif
#define PCAGPIO_INPUT 0x00
#define PCAGPIO_OUTPUT 0x01
#define PCAGPIO_REVERT 0x02
#define PCAGPIO_CONFIG 0x03
static int pcagpio_match(device_t, cfdata_t, void *);
static void pcagpio_attach(device_t, device_t, void *);
static int pcagpio_detach(device_t, int);
struct pcagpio_led {
void *cookie;
struct led_device *led;
uint32_t mask, v_on, v_off;
};
struct pcagpio_pin {
int pin_sensor;
int pin_active;
char pin_desc[ENVSYS_DESCLEN];
};
struct pcagpio_softc {
device_t sc_dev;
i2c_tag_t sc_i2c;
i2c_addr_t sc_addr;
int sc_is_16bit;
uint32_t sc_state, sc_dir, sc_in;
struct pcagpio_led sc_leds[16];
struct pcagpio_pin sc_pins[16];
int sc_nleds;
struct sysmon_envsys *sc_sme;
envsys_data_t sc_sensor[16];
};
static void pcagpio_writereg(struct pcagpio_softc *, int, uint32_t);
static uint32_t pcagpio_readreg(struct pcagpio_softc *, int);
static void pcagpio_attach_led(
struct pcagpio_softc *, char *, int, int, int);
static int pcagpio_attach_sysmon(
struct pcagpio_softc *, char *, int, int, int);
void pcagpio_refresh(struct sysmon_envsys *, envsys_data_t *);
static int pcagpio_get(void *);
static void pcagpio_set(void *, int);
CFATTACH_DECL_NEW(pcagpio, sizeof(struct pcagpio_softc),
pcagpio_match, pcagpio_attach, pcagpio_detach, NULL);
static const struct device_compatible_entry compat_data[] = {
{ .compat = "i2c-pca9555", .value = 1 },
{ .compat = "pca9555", .value = 1 },
{ .compat = "i2c-pca9556", .value = 0 },
{ .compat = "pca9556", .value = 0 },
DEVICE_COMPAT_EOL
};
static int
pcagpio_match(device_t parent, cfdata_t match, void *aux)
{
struct i2c_attach_args *ia = aux;
int match_result;
if (iic_use_direct_match(ia, match, compat_data, &match_result))
return match_result;
return 0;
}
#ifdef PCAGPIO_DEBUG
static void
printdir(const char* name, uint32_t val, uint32_t mask, char letter)
{
char flags[17], bits[17];
uint32_t bit = 0x8000;
int i;
val &= mask;
for (i = 0; i < 16; i++) {
flags[i] = (mask & bit) ? letter : '-';
bits[i] = (val & bit) ? 'X' : ' ';
bit = bit >> 1;
}
flags[16] = 0;
bits[16] = 0;
printf("%s: dir: %s\n", name, flags);
printf("%s: lvl: %s\n", name, bits);
}
#endif
static void
pcagpio_attach(device_t parent, device_t self, void *aux)
{
struct pcagpio_softc *sc = device_private(self);
struct i2c_attach_args *ia = aux;
const struct device_compatible_entry *dce;
prop_dictionary_t dict = device_properties(self);
prop_array_t pins;
prop_dictionary_t pin;
int envc = 0;
sc->sc_dev = self;
sc->sc_i2c = ia->ia_tag;
sc->sc_addr = ia->ia_addr;
sc->sc_nleds = 0;
sc->sc_sme = NULL;
aprint_naive("\n");
sc->sc_is_16bit = 0;
if ((dce = iic_compatible_lookup(ia, compat_data)) != NULL)
sc->sc_is_16bit = dce->value;
aprint_normal(": %s\n", sc->sc_is_16bit ? "PCA9555" : "PCA9556");
sc->sc_state = pcagpio_readreg(sc, PCAGPIO_OUTPUT);
#ifdef PCAGPIO_DEBUG
uint32_t in, out;
sc->sc_dir = pcagpio_readreg(sc, PCAGPIO_CONFIG);
sc->sc_in = pcagpio_readreg(sc, PCAGPIO_INPUT);
in = sc-> sc_in;
out = sc->sc_state;
out &= ~sc->sc_dir;
in &= sc->sc_dir;
printdir(device_xname(sc->sc_dev), in, sc->sc_dir, 'I');
printdir(device_xname(sc->sc_dev), out, ~sc->sc_dir, 'O');
#endif
pins = prop_dictionary_get(dict, "pins");
if (pins != NULL) {
int i, num, def;
char name[32];
const char *spptr, *nptr;
bool ok = TRUE, act;
for (i = 0; i < prop_array_count(pins); i++) {
nptr = NULL;
pin = prop_array_get(pins, i);
ok &= prop_dictionary_get_string(pin, "name",
&nptr);
ok &= prop_dictionary_get_uint32(pin, "pin", &num);
ok &= prop_dictionary_get_bool( pin, "active_high",
&act);
def = -1;
prop_dictionary_get_int32(pin, "default_state", &def);
if (!ok)
continue;
spptr = strstr(nptr, " ");
if (spptr == NULL)
continue;
spptr += 1;
strncpy(name, spptr, 31);
if (!strncmp(nptr, "LED ", 4))
pcagpio_attach_led(sc, name, num, act, def);
if (!strncmp(nptr, "INDICATOR ", 10)) {
if (pcagpio_attach_sysmon(sc,
name, envc, num, act))
return;
envc++;
}
}
}
if (sc->sc_sme != NULL) {
sc->sc_sme->sme_name = device_xname(self);
sc->sc_sme->sme_cookie = sc;
sc->sc_sme->sme_refresh = pcagpio_refresh;
if (sysmon_envsys_register(sc->sc_sme)) {
aprint_error_dev(self,
"unable to register with sysmon\n");
sysmon_envsys_destroy(sc->sc_sme);
sc->sc_sme = NULL;
return;
}
}
}
static int
pcagpio_detach(device_t self, int flags)
{
struct pcagpio_softc *sc = device_private(self);
int i;
for (i = 0; i < sc->sc_nleds; i++)
led_detach(sc->sc_leds[i].led);
if (sc->sc_sme != NULL) {
sysmon_envsys_unregister(sc->sc_sme);
sc->sc_sme = NULL;
}
return 0;
}
static void
pcagpio_writereg(struct pcagpio_softc *sc, int reg, uint32_t val)
{
uint8_t cmd;
iic_acquire_bus(sc->sc_i2c, 0);
if (sc->sc_is_16bit) {
uint16_t creg;
cmd = reg << 1;
creg = htole16(val);
iic_exec(sc->sc_i2c, I2C_OP_WRITE_WITH_STOP,
sc->sc_addr, &cmd, 1, &creg, 2, 0);
} else {
uint8_t creg;
cmd = reg;
creg = (uint8_t)val;
iic_exec(sc->sc_i2c, I2C_OP_WRITE_WITH_STOP,
sc->sc_addr, &cmd, 1, &creg, 1, 0);
}
if (reg == PCAGPIO_OUTPUT) sc->sc_state = val;
iic_release_bus(sc->sc_i2c, 0);
}
static uint32_t pcagpio_readreg(struct pcagpio_softc *sc, int reg)
{
uint8_t cmd;
uint32_t ret;
iic_acquire_bus(sc->sc_i2c, 0);
if (sc->sc_is_16bit) {
uint16_t creg;
cmd = reg << 1;
iic_exec(sc->sc_i2c, I2C_OP_READ_WITH_STOP,
sc->sc_addr, &cmd, 1, &creg, 2, 0);
ret = le16toh(creg);
} else {
uint8_t creg;
cmd = reg;
iic_exec(sc->sc_i2c, I2C_OP_READ_WITH_STOP,
sc->sc_addr, &cmd, 1, &creg, 1, 0);
ret = creg;
}
iic_release_bus(sc->sc_i2c, 0);
return ret;
}
static void
pcagpio_attach_led(struct pcagpio_softc *sc, char *n, int pin, int act, int def)
{
struct pcagpio_led *l;
l = &sc->sc_leds[sc->sc_nleds];
l->cookie = sc;
l->mask = 1 << pin;
l->v_on = act ? l->mask : 0;
l->v_off = act ? 0 : l->mask;
l->led = led_attach(n, l, pcagpio_get, pcagpio_set);
if (def != -1) pcagpio_set(l, def);
DPRINTF("%s: %04x %04x %04x def %d\n",
__func__, l->mask, l->v_on, l->v_off, def);
sc->sc_nleds++;
}
static int
pcagpio_attach_sysmon(struct pcagpio_softc *sc, char *name, int envc, int pin,
int act)
{
int ret;
if (sc->sc_sme == NULL) {
sc->sc_sme = sysmon_envsys_create();
sc->sc_sme->sme_events_timeout = 0;
}
strlcpy(sc->sc_pins[pin].pin_desc, name,
sizeof(sc->sc_pins[pin].pin_desc));
sc->sc_pins[envc].pin_sensor = pin;
sc->sc_sensor[envc].state = ENVSYS_SINVALID;
sc->sc_sensor[envc].units = ENVSYS_INDICATOR;
strlcpy(sc->sc_sensor[envc].desc, name,
sizeof(sc->sc_sensor[envc].desc));
ret = sysmon_envsys_sensor_attach(sc->sc_sme, &sc->sc_sensor[envc]);
if (ret) {
sysmon_envsys_destroy(sc->sc_sme);
sc->sc_sme = NULL;
aprint_error_dev(sc->sc_dev,
"unable to attach pin %d at sysmon\n", pin);
return ret;
}
DPRINTF("%s: added sysmon: pin %d sensor %d (%s)\n",
device_xname(sc->sc_dev), pin, envc, name);
return 0;
}
void
pcagpio_refresh(struct sysmon_envsys *sme, envsys_data_t *edata)
{
struct pcagpio_softc *sc = sme->sme_cookie;
int pin = sc->sc_pins[edata->sensor].pin_sensor;
int act = sc->sc_pins[pin].pin_active;
u_int8_t prev_state = sc->sc_in;
sc->sc_in = pcagpio_readreg(sc, PCAGPIO_INPUT);
if (act)
edata->value_cur = sc->sc_in & 1 << pin ? TRUE : FALSE;
else
edata->value_cur = sc->sc_in & 1 << pin ? FALSE : TRUE;
edata->state = ENVSYS_SVALID;
if (sc->sc_state != prev_state) {
DPRINTF("%s: (refresh) status change: 0x%02x > 0x%02x\n",
device_xname(sc->sc_dev), prev_state, sc->sc_state);
}
}
static int
pcagpio_get(void *cookie)
{
struct pcagpio_led *l = cookie;
struct pcagpio_softc *sc = l->cookie;
return ((sc->sc_state & l->mask) == l->v_on);
}
static void
pcagpio_set(void *cookie, int val)
{
struct pcagpio_led *l = cookie;
struct pcagpio_softc *sc = l->cookie;
uint32_t newstate;
newstate = sc->sc_state & ~l->mask;
newstate |= val ? l->v_on : l->v_off;
DPRINTF("%s: %04x -> %04x, %04x %04x %04x\n", __func__,
sc->sc_state, newstate, l->mask, l->v_on, l->v_off);
if (newstate != sc->sc_state)
pcagpio_writereg(sc, PCAGPIO_OUTPUT, newstate);
}