2006-11-16 04:32:37 +03:00
|
|
|
/* $NetBSD: gpio.c,v 1.11 2006/11/16 01:32:50 christos Exp $ */
|
2006-02-20 06:18:36 +03:00
|
|
|
/* $OpenBSD: gpio.c,v 1.6 2006/01/14 12:33:49 grange Exp $ */
|
|
|
|
|
2005-09-27 06:34:02 +04:00
|
|
|
/*
|
2006-02-20 06:18:36 +03:00
|
|
|
* Copyright (c) 2004, 2006 Alexander Yurchenko <grange@openbsd.org>
|
2005-09-27 06:34:02 +04:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2005-10-11 13:56:51 +04:00
|
|
|
#include <sys/cdefs.h>
|
2006-11-16 04:32:37 +03:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: gpio.c,v 1.11 2006/11/16 01:32:50 christos Exp $");
|
2005-10-11 13:56:51 +04:00
|
|
|
|
2005-09-27 06:34:02 +04:00
|
|
|
/*
|
|
|
|
* General Purpose Input/Output framework.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/conf.h>
|
|
|
|
#include <sys/device.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/gpio.h>
|
|
|
|
#include <sys/vnode.h>
|
|
|
|
|
|
|
|
#include <dev/gpio/gpiovar.h>
|
|
|
|
|
2005-10-11 20:01:03 +04:00
|
|
|
#include "locators.h"
|
|
|
|
|
2005-09-27 06:34:02 +04:00
|
|
|
struct gpio_softc {
|
|
|
|
struct device sc_dev;
|
|
|
|
|
|
|
|
gpio_chipset_tag_t sc_gc; /* our GPIO controller */
|
|
|
|
gpio_pin_t *sc_pins; /* pins array */
|
|
|
|
int sc_npins; /* total number of pins */
|
|
|
|
|
|
|
|
int sc_opened;
|
|
|
|
int sc_dying;
|
|
|
|
};
|
|
|
|
|
|
|
|
int gpio_match(struct device *, struct cfdata *, void *);
|
|
|
|
void gpio_attach(struct device *, struct device *, void *);
|
|
|
|
int gpio_detach(struct device *, int);
|
|
|
|
int gpio_activate(struct device *, enum devact);
|
|
|
|
int gpio_search(struct device *, struct cfdata *, const int *, void *);
|
|
|
|
int gpio_print(void *, const char *);
|
|
|
|
|
|
|
|
CFATTACH_DECL(gpio, sizeof(struct gpio_softc),
|
|
|
|
gpio_match, gpio_attach, gpio_detach, gpio_activate);
|
|
|
|
|
|
|
|
dev_type_open(gpioopen);
|
|
|
|
dev_type_close(gpioclose);
|
|
|
|
dev_type_ioctl(gpioioctl);
|
|
|
|
|
|
|
|
const struct cdevsw gpio_cdevsw = {
|
|
|
|
gpioopen, gpioclose, noread, nowrite, gpioioctl,
|
2006-08-30 06:09:40 +04:00
|
|
|
nostop, notty, nopoll, nommap, nokqfilter, D_OTHER,
|
2005-09-27 06:34:02 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
extern struct cfdriver gpio_cd;
|
|
|
|
|
|
|
|
int
|
2006-11-16 04:32:37 +03:00
|
|
|
gpio_match(struct device *parent, struct cfdata *cf,
|
|
|
|
void *aux)
|
2005-09-27 06:34:02 +04:00
|
|
|
{
|
|
|
|
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2006-11-16 04:32:37 +03:00
|
|
|
gpio_attach(struct device *parent, struct device *self, void *aux)
|
2005-09-27 06:34:02 +04:00
|
|
|
{
|
2006-03-29 10:28:38 +04:00
|
|
|
struct gpio_softc *sc = device_private(self);
|
2005-09-27 06:34:02 +04:00
|
|
|
struct gpiobus_attach_args *gba = aux;
|
|
|
|
|
|
|
|
sc->sc_gc = gba->gba_gc;
|
|
|
|
sc->sc_pins = gba->gba_pins;
|
|
|
|
sc->sc_npins = gba->gba_npins;
|
|
|
|
|
|
|
|
printf(": %d pins\n", sc->sc_npins);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Attach all devices that can be connected to the GPIO pins
|
|
|
|
* described in the kernel configuration file.
|
|
|
|
*/
|
2006-02-20 06:18:36 +03:00
|
|
|
config_search_ia(gpio_search, self, "gpio", sc);
|
2005-09-27 06:34:02 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2006-11-16 04:32:37 +03:00
|
|
|
gpio_detach(struct device *self, int flags)
|
2005-09-27 06:34:02 +04:00
|
|
|
{
|
|
|
|
#if 0
|
|
|
|
int maj, mn;
|
|
|
|
|
|
|
|
/* Locate the major number */
|
|
|
|
for (maj = 0; maj < nchrdev; maj++)
|
|
|
|
if (cdevsw[maj].d_open == gpioopen)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* Nuke the vnodes for any open instances (calls close) */
|
2006-03-28 21:38:24 +04:00
|
|
|
mn = device_unit(self);
|
2005-09-27 06:34:02 +04:00
|
|
|
vdevgone(maj, mn, mn, VCHR);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
gpio_activate(struct device *self, enum devact act)
|
|
|
|
{
|
2006-03-29 10:28:38 +04:00
|
|
|
struct gpio_softc *sc = device_private(self);
|
2005-09-27 06:34:02 +04:00
|
|
|
|
|
|
|
switch (act) {
|
|
|
|
case DVACT_ACTIVATE:
|
|
|
|
return (EOPNOTSUPP);
|
|
|
|
case DVACT_DEACTIVATE:
|
|
|
|
sc->sc_dying = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
gpio_search(struct device *parent, struct cfdata *cf,
|
2006-11-16 04:32:37 +03:00
|
|
|
const int *ldesc, void *aux)
|
2005-09-27 06:34:02 +04:00
|
|
|
{
|
|
|
|
struct gpio_attach_args ga;
|
|
|
|
|
2006-02-20 06:18:36 +03:00
|
|
|
ga.ga_gpio = aux;
|
|
|
|
ga.ga_offset = cf->cf_loc[GPIOCF_OFFSET];
|
2005-10-11 20:01:03 +04:00
|
|
|
ga.ga_mask = cf->cf_loc[GPIOCF_MASK];
|
2005-09-27 06:34:02 +04:00
|
|
|
|
|
|
|
if (config_match(parent, cf, &ga) > 0)
|
|
|
|
config_attach(parent, cf, &ga, gpio_print);
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2006-11-16 04:32:37 +03:00
|
|
|
gpio_print(void *aux, const char *pnp)
|
2005-09-27 06:34:02 +04:00
|
|
|
{
|
|
|
|
struct gpio_attach_args *ga = aux;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
printf(" pins");
|
|
|
|
for (i = 0; i < 32; i++)
|
|
|
|
if (ga->ga_mask & (1 << i))
|
2006-02-20 06:18:36 +03:00
|
|
|
printf(" %d", ga->ga_offset + i);
|
2005-09-27 06:34:02 +04:00
|
|
|
|
|
|
|
return (UNCONF);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2006-11-16 04:32:37 +03:00
|
|
|
gpiobus_print(void *aux, const char *pnp)
|
2005-09-27 06:34:02 +04:00
|
|
|
{
|
2005-10-11 20:01:03 +04:00
|
|
|
#if 0
|
2005-09-27 06:34:02 +04:00
|
|
|
struct gpiobus_attach_args *gba = aux;
|
2005-10-11 20:01:03 +04:00
|
|
|
#endif
|
2005-09-27 06:34:02 +04:00
|
|
|
if (pnp != NULL)
|
2005-10-11 20:01:03 +04:00
|
|
|
printf("%s at %s", "gpiobus", pnp);
|
2005-09-27 06:34:02 +04:00
|
|
|
|
|
|
|
return (UNCONF);
|
|
|
|
}
|
|
|
|
|
2006-04-09 02:33:36 +04:00
|
|
|
int
|
2006-02-20 06:18:36 +03:00
|
|
|
gpio_pin_map(void *gpio, int offset, u_int32_t mask, struct gpio_pinmap *map)
|
|
|
|
{
|
|
|
|
struct gpio_softc *sc = gpio;
|
|
|
|
int npins, pin, i;
|
|
|
|
|
|
|
|
npins = gpio_npins(mask);
|
|
|
|
if (npins > sc->sc_npins)
|
|
|
|
return (1);
|
|
|
|
|
|
|
|
for (npins = 0, i = 0; i < 32; i++)
|
|
|
|
if (mask & (1 << i)) {
|
|
|
|
pin = offset + i;
|
|
|
|
if (pin < 0 || pin >= sc->sc_npins)
|
|
|
|
return (1);
|
|
|
|
if (sc->sc_pins[pin].pin_mapped)
|
|
|
|
return (1);
|
|
|
|
sc->sc_pins[pin].pin_mapped = 1;
|
|
|
|
map->pm_map[npins++] = pin;
|
|
|
|
}
|
|
|
|
map->pm_size = npins;
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gpio_pin_unmap(void *gpio, struct gpio_pinmap *map)
|
|
|
|
{
|
|
|
|
struct gpio_softc *sc = gpio;
|
|
|
|
int pin, i;
|
|
|
|
|
|
|
|
for (i = 0; i < map->pm_size; i++) {
|
|
|
|
pin = map->pm_map[i];
|
|
|
|
sc->sc_pins[pin].pin_mapped = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
gpio_pin_read(void *gpio, struct gpio_pinmap *map, int pin)
|
|
|
|
{
|
|
|
|
struct gpio_softc *sc = gpio;
|
|
|
|
|
|
|
|
return (gpiobus_pin_read(sc->sc_gc, map->pm_map[pin]));
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gpio_pin_write(void *gpio, struct gpio_pinmap *map, int pin, int value)
|
|
|
|
{
|
|
|
|
struct gpio_softc *sc = gpio;
|
|
|
|
|
|
|
|
return (gpiobus_pin_write(sc->sc_gc, map->pm_map[pin], value));
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gpio_pin_ctl(void *gpio, struct gpio_pinmap *map, int pin, int flags)
|
|
|
|
{
|
|
|
|
struct gpio_softc *sc = gpio;
|
|
|
|
|
|
|
|
return (gpiobus_pin_ctl(sc->sc_gc, map->pm_map[pin], flags));
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
gpio_pin_caps(void *gpio, struct gpio_pinmap *map, int pin)
|
|
|
|
{
|
|
|
|
struct gpio_softc *sc = gpio;
|
|
|
|
|
|
|
|
return (sc->sc_pins[map->pm_map[pin]].pin_caps);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
gpio_npins(u_int32_t mask)
|
|
|
|
{
|
|
|
|
int npins, i;
|
|
|
|
|
|
|
|
for (npins = 0, i = 0; i < 32; i++)
|
|
|
|
if (mask & (1 << i))
|
|
|
|
npins++;
|
|
|
|
|
|
|
|
return (npins);
|
|
|
|
}
|
|
|
|
|
2005-09-27 06:34:02 +04:00
|
|
|
int
|
2006-11-16 04:32:37 +03:00
|
|
|
gpioopen(dev_t dev, int flag, int mode,
|
|
|
|
struct lwp *l)
|
2005-09-27 06:34:02 +04:00
|
|
|
{
|
|
|
|
struct gpio_softc *sc;
|
|
|
|
|
|
|
|
sc = (struct gpio_softc *)device_lookup(&gpio_cd, minor(dev));
|
|
|
|
if (sc == NULL)
|
|
|
|
return (ENXIO);
|
|
|
|
|
|
|
|
if (sc->sc_opened)
|
|
|
|
return (EBUSY);
|
|
|
|
sc->sc_opened = 1;
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2006-11-16 04:32:37 +03:00
|
|
|
gpioclose(dev_t dev, int flag, int mode,
|
|
|
|
struct lwp *l)
|
2005-09-27 06:34:02 +04:00
|
|
|
{
|
|
|
|
struct gpio_softc *sc;
|
|
|
|
|
|
|
|
sc = (struct gpio_softc *)device_lookup(&gpio_cd, minor(dev));
|
|
|
|
sc->sc_opened = 0;
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2006-11-16 04:32:37 +03:00
|
|
|
gpioioctl(dev_t dev, u_long cmd, caddr_t data, int flag,
|
|
|
|
struct lwp *l)
|
2005-09-27 06:34:02 +04:00
|
|
|
{
|
|
|
|
struct gpio_softc *sc;
|
|
|
|
gpio_chipset_tag_t gc;
|
|
|
|
struct gpio_info *info;
|
|
|
|
struct gpio_pin_op *op;
|
|
|
|
struct gpio_pin_ctl *ctl;
|
|
|
|
int pin, value, flags;
|
|
|
|
|
|
|
|
sc = (struct gpio_softc *)device_lookup(&gpio_cd, minor(dev));
|
|
|
|
gc = sc->sc_gc;
|
|
|
|
|
|
|
|
switch (cmd) {
|
|
|
|
case GPIOINFO:
|
|
|
|
info = (struct gpio_info *)data;
|
|
|
|
|
|
|
|
info->gpio_npins = sc->sc_npins;
|
|
|
|
break;
|
|
|
|
case GPIOPINREAD:
|
|
|
|
op = (struct gpio_pin_op *)data;
|
|
|
|
|
|
|
|
pin = op->gp_pin;
|
|
|
|
if (pin < 0 || pin >= sc->sc_npins)
|
|
|
|
return (EINVAL);
|
|
|
|
|
|
|
|
/* return read value */
|
|
|
|
op->gp_value = gpiobus_pin_read(gc, pin);
|
|
|
|
break;
|
|
|
|
case GPIOPINWRITE:
|
|
|
|
op = (struct gpio_pin_op *)data;
|
|
|
|
|
|
|
|
pin = op->gp_pin;
|
|
|
|
if (pin < 0 || pin >= sc->sc_npins)
|
|
|
|
return (EINVAL);
|
2006-02-20 06:18:36 +03:00
|
|
|
if (sc->sc_pins[pin].pin_mapped)
|
|
|
|
return (EBUSY);
|
2005-09-27 06:34:02 +04:00
|
|
|
|
|
|
|
value = op->gp_value;
|
|
|
|
if (value != GPIO_PIN_LOW && value != GPIO_PIN_HIGH)
|
|
|
|
return (EINVAL);
|
|
|
|
|
|
|
|
gpiobus_pin_write(gc, pin, value);
|
|
|
|
/* return old value */
|
|
|
|
op->gp_value = sc->sc_pins[pin].pin_state;
|
|
|
|
/* update current value */
|
|
|
|
sc->sc_pins[pin].pin_state = value;
|
|
|
|
break;
|
|
|
|
case GPIOPINTOGGLE:
|
|
|
|
op = (struct gpio_pin_op *)data;
|
|
|
|
|
|
|
|
pin = op->gp_pin;
|
|
|
|
if (pin < 0 || pin >= sc->sc_npins)
|
|
|
|
return (EINVAL);
|
2006-02-20 06:18:36 +03:00
|
|
|
if (sc->sc_pins[pin].pin_mapped)
|
|
|
|
return (EBUSY);
|
2005-09-27 06:34:02 +04:00
|
|
|
|
|
|
|
value = (sc->sc_pins[pin].pin_state == GPIO_PIN_LOW ?
|
|
|
|
GPIO_PIN_HIGH : GPIO_PIN_LOW);
|
|
|
|
gpiobus_pin_write(gc, pin, value);
|
|
|
|
/* return old value */
|
|
|
|
op->gp_value = sc->sc_pins[pin].pin_state;
|
|
|
|
/* update current value */
|
|
|
|
sc->sc_pins[pin].pin_state = value;
|
|
|
|
break;
|
|
|
|
case GPIOPINCTL:
|
|
|
|
ctl = (struct gpio_pin_ctl *)data;
|
|
|
|
|
|
|
|
pin = ctl->gp_pin;
|
|
|
|
if (pin < 0 || pin >= sc->sc_npins)
|
|
|
|
return (EINVAL);
|
2006-02-20 06:18:36 +03:00
|
|
|
if (sc->sc_pins[pin].pin_mapped)
|
|
|
|
return (EBUSY);
|
2005-09-27 06:34:02 +04:00
|
|
|
|
|
|
|
flags = ctl->gp_flags;
|
|
|
|
/* check that the controller supports all requested flags */
|
|
|
|
if ((flags & sc->sc_pins[pin].pin_caps) != flags)
|
|
|
|
return (ENODEV);
|
|
|
|
|
|
|
|
ctl->gp_caps = sc->sc_pins[pin].pin_caps;
|
|
|
|
/* return old value */
|
|
|
|
ctl->gp_flags = sc->sc_pins[pin].pin_flags;
|
|
|
|
if (flags > 0) {
|
|
|
|
gpiobus_pin_ctl(gc, pin, flags);
|
|
|
|
/* update current value */
|
|
|
|
sc->sc_pins[pin].pin_flags = flags;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return (ENOTTY);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|