HAMMER Utility - cleanup
[dragonfly.git] / sys / bus / iicbus / iic.c
blobd611739f522c964e5fb64ca28a3d6db95b5e7202
1 /*-
2 * Copyright (c) 1998 Nicolas Souchu
3 * All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
26 * $FreeBSD: src/sys/dev/iicbus/iic.c,v 1.18 1999/11/18 05:43:32 peter Exp $
27 * $DragonFly: src/sys/bus/iicbus/iic.c,v 1.10 2006/09/10 01:26:32 dillon Exp $
30 #include <sys/param.h>
31 #include <sys/kernel.h>
32 #include <sys/systm.h>
33 #include <sys/module.h>
34 #include <sys/bus.h>
35 #include <sys/conf.h>
36 #include <sys/buf.h>
37 #include <sys/uio.h>
38 #include <sys/malloc.h>
39 #include <sys/fcntl.h>
41 #include <machine/clock.h>
43 #include "iiconf.h"
44 #include "iicbus.h"
46 #include <machine/iic.h>
48 #include "iicbus_if.h"
50 #define BUFSIZE 1024
52 struct iic_softc {
54 u_char sc_addr; /* address on iicbus */
55 int sc_count; /* >0 if device opened */
57 char sc_buffer[BUFSIZE]; /* output buffer */
58 char sc_inbuf[BUFSIZE]; /* input buffer */
61 #define IIC_SOFTC(unit) \
62 ((struct iic_softc *)devclass_get_softc(iic_devclass, (unit)))
64 #define IIC_DEVICE(unit) \
65 (devclass_get_device(iic_devclass, (unit)))
67 static int iic_probe(device_t);
68 static int iic_attach(device_t);
70 static devclass_t iic_devclass;
72 static device_method_t iic_methods[] = {
73 /* device interface */
74 DEVMETHOD(device_probe, iic_probe),
75 DEVMETHOD(device_attach, iic_attach),
77 /* iicbus interface */
78 DEVMETHOD(iicbus_intr, iicbus_generic_intr),
80 { 0, 0 }
83 static driver_t iic_driver = {
84 "iic",
85 iic_methods,
86 sizeof(struct iic_softc),
89 static d_open_t iicopen;
90 static d_close_t iicclose;
91 static d_write_t iicwrite;
92 static d_read_t iicread;
93 static d_ioctl_t iicioctl;
95 #define CDEV_MAJOR 105
96 static struct dev_ops iic_ops = {
97 { "iic", CDEV_MAJOR, 0 },
98 .d_open = iicopen,
99 .d_close = iicclose,
100 .d_read = iicread,
101 .d_write = iicwrite,
102 .d_ioctl = iicioctl,
106 * iicprobe()
108 static int
109 iic_probe(device_t dev)
111 struct iic_softc *sc = (struct iic_softc *)device_get_softc(dev);
113 sc->sc_addr = iicbus_get_addr(dev);
115 /* XXX detect chip with start/stop conditions */
117 return (0);
121 * iicattach()
123 static int
124 iic_attach(device_t dev)
126 make_dev(&iic_ops, device_get_unit(dev), /* XXX cleanup */
127 UID_ROOT, GID_WHEEL,
128 0600, "iic%d", device_get_unit(dev));
129 return (0);
132 static int
133 iicopen (struct dev_open_args *ap)
135 cdev_t dev = ap->a_head.a_dev;
136 struct iic_softc *sc = IIC_SOFTC(minor(dev));
138 if (!sc)
139 return (EINVAL);
141 if (sc->sc_count > 0)
142 return (EBUSY);
144 sc->sc_count++;
146 return (0);
149 static int
150 iicclose(struct dev_close_args *ap)
152 cdev_t dev = ap->a_head.a_dev;
153 struct iic_softc *sc = IIC_SOFTC(minor(dev));
155 if (!sc)
156 return (EINVAL);
158 if (!sc->sc_count)
159 return (EINVAL);
161 sc->sc_count--;
163 if (sc->sc_count < 0)
164 panic("%s: iic_count < 0!", __func__);
166 return (0);
169 static int
170 iicwrite(struct dev_write_args *ap)
172 cdev_t dev = ap->a_head.a_dev;
173 struct uio *uio = ap->a_uio;
174 device_t iicdev = IIC_DEVICE(minor(dev));
175 struct iic_softc *sc = IIC_SOFTC(minor(dev));
176 int sent, error, count;
178 if (!sc || !iicdev)
179 return (EINVAL);
181 if (sc->sc_count == 0)
182 return (EINVAL);
184 if ((error = iicbus_request_bus(device_get_parent(iicdev), iicdev, IIC_DONTWAIT)))
185 return (error);
187 count = (int)szmin(uio->uio_resid, BUFSIZE);
188 uiomove(sc->sc_buffer, (size_t)count, uio);
190 error = iicbus_block_write(device_get_parent(iicdev), sc->sc_addr,
191 sc->sc_buffer, count, &sent);
193 iicbus_release_bus(device_get_parent(iicdev), iicdev);
195 return(error);
198 static int
199 iicread(struct dev_read_args *ap)
201 cdev_t dev = ap->a_head.a_dev;
202 struct uio *uio = ap->a_uio;
203 device_t iicdev = IIC_DEVICE(minor(dev));
204 struct iic_softc *sc = IIC_SOFTC(minor(dev));
205 int len, error = 0;
206 int bufsize;
208 if (!sc || !iicdev)
209 return (EINVAL);
211 if (sc->sc_count == 0)
212 return (EINVAL);
214 if ((error = iicbus_request_bus(device_get_parent(iicdev), iicdev, IIC_DONTWAIT)))
215 return (error);
217 /* max amount of data to read */
218 len = (int)szmin(uio->uio_resid, BUFSIZE);
220 if ((error = iicbus_block_read(device_get_parent(iicdev), sc->sc_addr,
221 sc->sc_inbuf, len, &bufsize)))
222 return (error);
224 if (bufsize > uio->uio_resid)
225 panic("%s: too much data read!", __func__);
227 iicbus_release_bus(device_get_parent(iicdev), iicdev);
229 return (uiomove(sc->sc_inbuf, (size_t)bufsize, uio));
232 static int
233 iicioctl(struct dev_ioctl_args *ap)
235 cdev_t dev = ap->a_head.a_dev;
236 device_t iicdev = IIC_DEVICE(minor(dev));
237 struct iic_softc *sc = IIC_SOFTC(minor(dev));
238 device_t parent = device_get_parent(iicdev);
239 struct iiccmd *s = (struct iiccmd *)ap->a_data;
240 int error, count;
242 if (!sc)
243 return (EINVAL);
245 if ((error = iicbus_request_bus(device_get_parent(iicdev), iicdev,
246 (ap->a_fflag & O_NONBLOCK) ? IIC_DONTWAIT :
247 (IIC_WAIT | IIC_INTR))))
248 return (error);
250 switch (ap->a_cmd) {
251 case I2CSTART:
252 error = iicbus_start(parent, s->slave, 0);
253 break;
255 case I2CSTOP:
256 error = iicbus_stop(parent);
257 break;
259 case I2CRSTCARD:
260 error = iicbus_reset(parent, 0, 0, NULL);
261 break;
263 case I2CWRITE:
264 error = iicbus_write(parent, s->buf, s->count, &count, 0);
265 break;
267 case I2CREAD:
268 error = iicbus_read(parent, s->buf, s->count, &count, s->last, 0);
269 break;
271 default:
272 error = ENODEV;
275 iicbus_release_bus(device_get_parent(iicdev), iicdev);
277 return (error);
280 DRIVER_MODULE(iic, iicbus, iic_driver, iic_devclass, 0, 0);