1998-09-03 20:52:54 +00:00
|
|
|
/*-
|
2002-03-23 15:49:15 +00:00
|
|
|
* Copyright (c) 1998, 2001 Nicolas Souchu
|
1998-09-03 20:52:54 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* 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 AUTHOR 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 AUTHOR 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.
|
|
|
|
*
|
1999-08-28 01:08:13 +00:00
|
|
|
* $FreeBSD$
|
1998-09-03 20:52:54 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/module.h>
|
|
|
|
#include <sys/bus.h>
|
|
|
|
#include <sys/conf.h>
|
|
|
|
#include <sys/uio.h>
|
1999-02-13 17:57:19 +00:00
|
|
|
#include <sys/fcntl.h>
|
1998-09-03 20:52:54 +00:00
|
|
|
|
|
|
|
#include <dev/smbus/smbconf.h>
|
|
|
|
#include <dev/smbus/smbus.h>
|
2002-09-19 03:25:46 +00:00
|
|
|
#include <dev/smbus/smb.h>
|
1998-09-03 20:52:54 +00:00
|
|
|
|
|
|
|
#include "smbus_if.h"
|
|
|
|
|
|
|
|
#define BUFSIZE 1024
|
|
|
|
|
|
|
|
struct smb_softc {
|
|
|
|
|
|
|
|
int sc_count; /* >0 if device opened */
|
2002-03-23 15:49:15 +00:00
|
|
|
dev_t sc_devnode;
|
1998-09-03 20:52:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#define IIC_SOFTC(unit) \
|
|
|
|
((struct smb_softc *)devclass_get_softc(smb_devclass, (unit)))
|
|
|
|
|
|
|
|
#define IIC_DEVICE(unit) \
|
|
|
|
(devclass_get_device(smb_devclass, (unit)))
|
|
|
|
|
|
|
|
static int smb_probe(device_t);
|
|
|
|
static int smb_attach(device_t);
|
2002-03-23 15:49:15 +00:00
|
|
|
static int smb_detach(device_t);
|
|
|
|
static void smb_identify(driver_t *driver, device_t parent);
|
1998-09-03 20:52:54 +00:00
|
|
|
|
|
|
|
static devclass_t smb_devclass;
|
|
|
|
|
|
|
|
static device_method_t smb_methods[] = {
|
|
|
|
/* device interface */
|
2002-03-23 15:49:15 +00:00
|
|
|
DEVMETHOD(device_identify, smb_identify),
|
1998-09-03 20:52:54 +00:00
|
|
|
DEVMETHOD(device_probe, smb_probe),
|
|
|
|
DEVMETHOD(device_attach, smb_attach),
|
2002-03-23 15:49:15 +00:00
|
|
|
DEVMETHOD(device_detach, smb_detach),
|
1998-09-03 20:52:54 +00:00
|
|
|
|
|
|
|
/* smbus interface */
|
|
|
|
DEVMETHOD(smbus_intr, smbus_generic_intr),
|
|
|
|
|
|
|
|
{ 0, 0 }
|
|
|
|
};
|
|
|
|
|
|
|
|
static driver_t smb_driver = {
|
|
|
|
"smb",
|
|
|
|
smb_methods,
|
|
|
|
sizeof(struct smb_softc),
|
|
|
|
};
|
|
|
|
|
|
|
|
static d_open_t smbopen;
|
|
|
|
static d_close_t smbclose;
|
|
|
|
static d_write_t smbwrite;
|
|
|
|
static d_read_t smbread;
|
|
|
|
static d_ioctl_t smbioctl;
|
|
|
|
|
1998-09-09 18:57:38 +00:00
|
|
|
#define CDEV_MAJOR 106
|
1999-05-30 16:53:49 +00:00
|
|
|
static struct cdevsw smb_cdevsw = {
|
|
|
|
/* open */ smbopen,
|
|
|
|
/* close */ smbclose,
|
|
|
|
/* read */ smbread,
|
|
|
|
/* write */ smbwrite,
|
|
|
|
/* ioctl */ smbioctl,
|
|
|
|
/* poll */ nopoll,
|
|
|
|
/* mmap */ nommap,
|
|
|
|
/* strategy */ nostrategy,
|
|
|
|
/* name */ "smb",
|
|
|
|
/* maj */ CDEV_MAJOR,
|
|
|
|
/* dump */ nodump,
|
|
|
|
/* psize */ nopsize,
|
|
|
|
/* flags */ 0,
|
|
|
|
};
|
1998-09-03 20:52:54 +00:00
|
|
|
|
2002-03-23 15:49:15 +00:00
|
|
|
static void
|
|
|
|
smb_identify(driver_t *driver, device_t parent)
|
|
|
|
{
|
|
|
|
BUS_ADD_CHILD(parent, 0, "smb", 0);
|
|
|
|
}
|
|
|
|
|
1998-09-03 20:52:54 +00:00
|
|
|
static int
|
|
|
|
smb_probe(device_t dev)
|
|
|
|
{
|
2002-03-23 15:49:15 +00:00
|
|
|
device_set_desc(dev, "SMBus generic I/O");
|
1998-09-03 20:52:54 +00:00
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
smb_attach(device_t dev)
|
|
|
|
{
|
2002-03-23 15:49:15 +00:00
|
|
|
struct smb_softc *sc = (struct smb_softc *)device_get_softc(dev);
|
|
|
|
|
|
|
|
if (!sc)
|
|
|
|
return (ENOMEM);
|
|
|
|
|
|
|
|
bzero(sc, sizeof(struct smb_softc *));
|
|
|
|
|
|
|
|
sc->sc_devnode = make_dev(&smb_cdevsw, device_get_unit(dev),
|
1999-11-18 05:44:56 +00:00
|
|
|
UID_ROOT, GID_WHEEL,
|
|
|
|
0600, "smb%d", device_get_unit(dev));
|
2002-03-23 15:49:15 +00:00
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
smb_detach(device_t dev)
|
|
|
|
{
|
|
|
|
struct smb_softc *sc = (struct smb_softc *)device_get_softc(dev);
|
|
|
|
|
|
|
|
if (sc->sc_devnode)
|
|
|
|
destroy_dev(sc->sc_devnode);
|
|
|
|
|
1998-09-03 20:52:54 +00:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2001-09-12 08:38:13 +00:00
|
|
|
smbopen (dev_t dev, int flags, int fmt, struct thread *td)
|
1998-09-03 20:52:54 +00:00
|
|
|
{
|
|
|
|
struct smb_softc *sc = IIC_SOFTC(minor(dev));
|
|
|
|
|
|
|
|
if (!sc)
|
|
|
|
return (EINVAL);
|
|
|
|
|
|
|
|
if (sc->sc_count)
|
|
|
|
return (EBUSY);
|
|
|
|
|
|
|
|
sc->sc_count++;
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2001-09-12 08:38:13 +00:00
|
|
|
smbclose(dev_t dev, int flags, int fmt, struct thread *td)
|
1998-09-03 20:52:54 +00:00
|
|
|
{
|
|
|
|
struct smb_softc *sc = IIC_SOFTC(minor(dev));
|
|
|
|
|
|
|
|
if (!sc)
|
|
|
|
return (EINVAL);
|
|
|
|
|
|
|
|
if (!sc->sc_count)
|
|
|
|
return (EINVAL);
|
|
|
|
|
|
|
|
sc->sc_count--;
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
smbwrite(dev_t dev, struct uio * uio, int ioflag)
|
|
|
|
{
|
1999-01-09 18:08:24 +00:00
|
|
|
/* not supported */
|
1998-09-03 20:52:54 +00:00
|
|
|
|
1999-11-01 23:15:29 +00:00
|
|
|
return (EINVAL);
|
1998-09-03 20:52:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
smbread(dev_t dev, struct uio * uio, int ioflag)
|
|
|
|
{
|
|
|
|
/* not supported */
|
|
|
|
|
1999-11-01 23:15:29 +00:00
|
|
|
return (EINVAL);
|
1998-09-03 20:52:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2001-09-12 08:38:13 +00:00
|
|
|
smbioctl(dev_t dev, u_long cmd, caddr_t data, int flags, struct thread *td)
|
1998-09-03 20:52:54 +00:00
|
|
|
{
|
|
|
|
device_t smbdev = IIC_DEVICE(minor(dev));
|
|
|
|
struct smb_softc *sc = IIC_SOFTC(minor(dev));
|
|
|
|
device_t parent = device_get_parent(smbdev);
|
|
|
|
|
|
|
|
int error = 0;
|
|
|
|
struct smbcmd *s = (struct smbcmd *)data;
|
|
|
|
|
1999-01-09 18:08:24 +00:00
|
|
|
if (!sc || !s)
|
1998-09-03 20:52:54 +00:00
|
|
|
return (EINVAL);
|
|
|
|
|
1999-02-13 17:57:19 +00:00
|
|
|
/* allocate the bus */
|
|
|
|
if ((error = smbus_request_bus(parent, smbdev,
|
|
|
|
(flags & O_NONBLOCK) ? SMB_DONTWAIT : (SMB_WAIT | SMB_INTR))))
|
|
|
|
return (error);
|
|
|
|
|
1998-09-03 20:52:54 +00:00
|
|
|
switch (cmd) {
|
|
|
|
case SMB_QUICK_WRITE:
|
1999-02-14 14:36:45 +00:00
|
|
|
error = smbus_error(smbus_quick(parent, s->slave, SMB_QWRITE));
|
1999-02-13 17:57:19 +00:00
|
|
|
break;
|
1998-09-03 20:52:54 +00:00
|
|
|
|
|
|
|
case SMB_QUICK_READ:
|
1999-02-14 14:36:45 +00:00
|
|
|
error = smbus_error(smbus_quick(parent, s->slave, SMB_QREAD));
|
1999-02-13 17:57:19 +00:00
|
|
|
break;
|
1998-09-03 20:52:54 +00:00
|
|
|
|
|
|
|
case SMB_SENDB:
|
1999-02-14 14:36:45 +00:00
|
|
|
error = smbus_error(smbus_sendb(parent, s->slave, s->cmd));
|
1998-09-03 20:52:54 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SMB_RECVB:
|
1999-02-14 14:36:45 +00:00
|
|
|
error = smbus_error(smbus_recvb(parent, s->slave, &s->cmd));
|
1998-09-03 20:52:54 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SMB_WRITEB:
|
1999-02-14 14:36:45 +00:00
|
|
|
error = smbus_error(smbus_writeb(parent, s->slave, s->cmd,
|
|
|
|
s->data.byte));
|
1998-09-03 20:52:54 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SMB_WRITEW:
|
1999-02-14 14:36:45 +00:00
|
|
|
error = smbus_error(smbus_writew(parent, s->slave,
|
|
|
|
s->cmd, s->data.word));
|
1998-09-03 20:52:54 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SMB_READB:
|
|
|
|
if (s->data.byte_ptr)
|
1999-02-14 14:36:45 +00:00
|
|
|
error = smbus_error(smbus_readb(parent, s->slave,
|
|
|
|
s->cmd, s->data.byte_ptr));
|
1998-09-03 20:52:54 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SMB_READW:
|
|
|
|
if (s->data.word_ptr)
|
1999-02-14 14:36:45 +00:00
|
|
|
error = smbus_error(smbus_readw(parent, s->slave,
|
|
|
|
s->cmd, s->data.word_ptr));
|
1998-09-03 20:52:54 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SMB_PCALL:
|
|
|
|
if (s->data.process.rdata)
|
1999-02-14 14:36:45 +00:00
|
|
|
error = smbus_error(smbus_pcall(parent, s->slave, s->cmd,
|
|
|
|
s->data.process.sdata, s->data.process.rdata));
|
1998-09-03 20:52:54 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SMB_BWRITE:
|
|
|
|
if (s->count && s->data.byte_ptr)
|
1999-02-14 14:36:45 +00:00
|
|
|
error = smbus_error(smbus_bwrite(parent, s->slave,
|
|
|
|
s->cmd, s->count, s->data.byte_ptr));
|
1998-09-03 20:52:54 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SMB_BREAD:
|
|
|
|
if (s->count && s->data.byte_ptr)
|
1999-02-14 14:36:45 +00:00
|
|
|
error = smbus_error(smbus_bread(parent, s->slave,
|
|
|
|
s->cmd, s->count, s->data.byte_ptr));
|
1998-09-03 20:52:54 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
error = ENODEV;
|
|
|
|
}
|
|
|
|
|
1999-02-13 17:57:19 +00:00
|
|
|
/* release the bus */
|
|
|
|
smbus_release_bus(parent, smbdev);
|
|
|
|
|
1998-09-03 20:52:54 +00:00
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
1999-11-08 07:37:15 +00:00
|
|
|
DRIVER_MODULE(smb, smbus, smb_driver, smb_devclass, 0, 0);
|
2002-03-23 15:49:15 +00:00
|
|
|
MODULE_DEPEND(smb, smbus, SMBUS_MINVER, SMBUS_PREFVER, SMBUS_MAXVER);
|
|
|
|
MODULE_VERSION(smb, 1);
|