2007-07-10 00:51:58 +04:00
|
|
|
/* $NetBSD: i2c.c,v 1.14 2007/07/09 21:00:32 ad Exp $ */
|
2003-09-30 04:35:30 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2003 Wasabi Systems, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Written by Jason R. Thorpe for Wasabi Systems, Inc.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed for the NetBSD Project by
|
|
|
|
* Wasabi Systems, Inc.
|
|
|
|
* 4. The name of Wasabi Systems, Inc. may not be used to endorse
|
|
|
|
* or promote products derived from this software without specific prior
|
|
|
|
* written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``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 WASABI SYSTEMS, INC
|
|
|
|
* 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/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/device.h>
|
|
|
|
#include <sys/event.h>
|
|
|
|
#include <sys/conf.h>
|
2007-02-06 02:31:37 +03:00
|
|
|
#include <sys/malloc.h>
|
|
|
|
#include <sys/kthread.h>
|
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/kernel.h>
|
2003-09-30 04:35:30 +04:00
|
|
|
|
|
|
|
#include <dev/i2c/i2cvar.h>
|
|
|
|
|
|
|
|
#include "locators.h"
|
|
|
|
|
|
|
|
struct iic_softc {
|
|
|
|
struct device sc_dev;
|
|
|
|
i2c_tag_t sc_tag;
|
2006-03-28 03:59:38 +04:00
|
|
|
int sc_type;
|
2003-09-30 04:35:30 +04:00
|
|
|
};
|
|
|
|
|
2007-02-06 02:31:37 +03:00
|
|
|
static void iic_smbus_intr_thread(void *);
|
|
|
|
|
2003-09-30 04:35:30 +04:00
|
|
|
int
|
2006-11-16 04:32:37 +03:00
|
|
|
iicbus_print(void *aux, const char *pnp)
|
2003-09-30 04:35:30 +04:00
|
|
|
{
|
|
|
|
|
|
|
|
if (pnp != NULL)
|
2006-06-26 22:19:40 +04:00
|
|
|
aprint_normal("iic at %s", pnp);
|
2003-09-30 04:35:30 +04:00
|
|
|
|
|
|
|
return (UNCONF);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2006-11-16 04:32:37 +03:00
|
|
|
iic_print(void *aux, const char *pnp)
|
2003-09-30 04:35:30 +04:00
|
|
|
{
|
|
|
|
struct i2c_attach_args *ia = aux;
|
|
|
|
|
2006-03-28 03:59:38 +04:00
|
|
|
if (ia->ia_addr != (i2c_addr_t)-1)
|
|
|
|
aprint_normal(" addr 0x%x", ia->ia_addr);
|
2003-09-30 04:35:30 +04:00
|
|
|
|
|
|
|
return (UNCONF);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2004-09-13 16:55:47 +04:00
|
|
|
iic_search(struct device *parent, struct cfdata *cf,
|
2006-11-16 04:32:37 +03:00
|
|
|
const int *ldesc, void *aux)
|
2003-09-30 04:35:30 +04:00
|
|
|
{
|
|
|
|
struct iic_softc *sc = (void *) parent;
|
|
|
|
struct i2c_attach_args ia;
|
|
|
|
|
|
|
|
ia.ia_tag = sc->sc_tag;
|
|
|
|
ia.ia_addr = cf->cf_loc[IICCF_ADDR];
|
|
|
|
ia.ia_size = cf->cf_loc[IICCF_SIZE];
|
2006-03-28 03:59:38 +04:00
|
|
|
ia.ia_type = sc->sc_type;
|
2003-09-30 04:35:30 +04:00
|
|
|
|
|
|
|
if (config_match(parent, cf, &ia) > 0)
|
|
|
|
config_attach(parent, cf, &ia, iic_print);
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2006-11-16 04:32:37 +03:00
|
|
|
iic_match(struct device *parent, struct cfdata *cf,
|
|
|
|
void *aux)
|
2003-09-30 04:35:30 +04:00
|
|
|
{
|
|
|
|
|
2006-06-26 22:19:40 +04:00
|
|
|
return (1);
|
2003-09-30 04:35:30 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2006-11-16 04:32:37 +03:00
|
|
|
iic_attach(struct device *parent, struct device *self, void *aux)
|
2003-09-30 04:35:30 +04:00
|
|
|
{
|
2006-03-29 10:41:24 +04:00
|
|
|
struct iic_softc *sc = device_private(self);
|
2003-09-30 04:35:30 +04:00
|
|
|
struct i2cbus_attach_args *iba = aux;
|
2007-07-10 00:51:58 +04:00
|
|
|
i2c_tag_t ic;
|
|
|
|
int rv;
|
2003-09-30 04:35:30 +04:00
|
|
|
|
|
|
|
aprint_naive(": I2C bus\n");
|
|
|
|
aprint_normal(": I2C bus\n");
|
|
|
|
|
|
|
|
sc->sc_tag = iba->iba_tag;
|
2006-03-28 03:59:38 +04:00
|
|
|
sc->sc_type = iba->iba_type;
|
2007-07-10 00:51:58 +04:00
|
|
|
ic = sc->sc_tag;
|
|
|
|
ic->ic_devname = self->dv_xname;
|
2007-02-06 02:31:37 +03:00
|
|
|
|
2007-02-06 15:39:15 +03:00
|
|
|
LIST_INIT(&(sc->sc_tag->ic_list));
|
|
|
|
LIST_INIT(&(sc->sc_tag->ic_proc_list));
|
2007-07-10 00:51:58 +04:00
|
|
|
|
|
|
|
rv = kthread_create(PRI_NONE, 0, NULL, iic_smbus_intr_thread,
|
|
|
|
ic, &ic->ic_intr_thread, "%s", ic->ic_devname);
|
|
|
|
if (rv)
|
|
|
|
printf("%s: unable to create intr thread\n", ic->ic_devname);
|
2003-09-30 04:35:30 +04:00
|
|
|
|
|
|
|
/*
|
2004-05-16 15:42:28 +04:00
|
|
|
* Attach all i2c devices described in the kernel
|
2003-09-30 04:35:30 +04:00
|
|
|
* configuration file.
|
|
|
|
*/
|
2004-09-13 16:55:47 +04:00
|
|
|
config_search_ia(iic_search, self, "iic", NULL);
|
2003-09-30 04:35:30 +04:00
|
|
|
}
|
|
|
|
|
2007-02-06 02:31:37 +03:00
|
|
|
static void
|
2007-07-10 00:51:58 +04:00
|
|
|
iic_smbus_intr_thread(void *aux)
|
2007-02-06 02:31:37 +03:00
|
|
|
{
|
|
|
|
i2c_tag_t ic;
|
|
|
|
struct ic_intr_list *il;
|
|
|
|
int rv;
|
|
|
|
|
|
|
|
ic = (i2c_tag_t)aux;
|
|
|
|
ic->ic_running = 1;
|
|
|
|
ic->ic_pending = 0;
|
|
|
|
|
|
|
|
while (ic->ic_running) {
|
|
|
|
if (ic->ic_pending == 0)
|
|
|
|
rv = tsleep(ic, PZERO, "iicintr", hz);
|
|
|
|
if (ic->ic_pending > 0) {
|
|
|
|
LIST_FOREACH(il, &(ic->ic_proc_list), il_next) {
|
|
|
|
(*il->il_intr)(il->il_intrarg);
|
|
|
|
}
|
|
|
|
ic->ic_pending--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
kthread_exit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void *
|
|
|
|
iic_smbus_intr_establish(i2c_tag_t ic, int (*intr)(void *), void *intrarg)
|
|
|
|
{
|
|
|
|
struct ic_intr_list *il;
|
|
|
|
|
|
|
|
il = malloc(sizeof(struct ic_intr_list), M_DEVBUF, M_WAITOK);
|
|
|
|
if (il == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
il->il_intr = intr;
|
|
|
|
il->il_intrarg = intrarg;
|
|
|
|
|
|
|
|
LIST_INSERT_HEAD(&(ic->ic_list), il, il_next);
|
|
|
|
|
|
|
|
return il;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
iic_smbus_intr_disestablish(i2c_tag_t ic, void *hdl)
|
|
|
|
{
|
|
|
|
struct ic_intr_list *il;
|
|
|
|
|
|
|
|
il = (struct ic_intr_list *)hdl;
|
|
|
|
|
|
|
|
LIST_REMOVE(il, il_next);
|
|
|
|
free(il, M_DEVBUF);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
void *
|
|
|
|
iic_smbus_intr_establish_proc(i2c_tag_t ic, int (*intr)(void *), void *intrarg)
|
|
|
|
{
|
|
|
|
struct ic_intr_list *il;
|
|
|
|
|
|
|
|
il = malloc(sizeof(struct ic_intr_list), M_DEVBUF, M_WAITOK);
|
|
|
|
if (il == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
il->il_intr = intr;
|
|
|
|
il->il_intrarg = intrarg;
|
|
|
|
|
|
|
|
LIST_INSERT_HEAD(&(ic->ic_proc_list), il, il_next);
|
|
|
|
|
|
|
|
return il;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
iic_smbus_intr_disestablish_proc(i2c_tag_t ic, void *hdl)
|
|
|
|
{
|
|
|
|
struct ic_intr_list *il;
|
|
|
|
|
|
|
|
il = (struct ic_intr_list *)hdl;
|
|
|
|
|
|
|
|
LIST_REMOVE(il, il_next);
|
|
|
|
free(il, M_DEVBUF);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
iic_smbus_intr(i2c_tag_t ic)
|
|
|
|
{
|
|
|
|
struct ic_intr_list *il;
|
|
|
|
|
|
|
|
LIST_FOREACH(il, &(ic->ic_list), il_next) {
|
|
|
|
(*il->il_intr)(il->il_intrarg);
|
|
|
|
}
|
|
|
|
|
|
|
|
ic->ic_pending++;
|
|
|
|
wakeup(ic);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2003-09-30 04:35:30 +04:00
|
|
|
CFATTACH_DECL(iic, sizeof(struct iic_softc),
|
|
|
|
iic_match, iic_attach, NULL, NULL);
|