1 /*- 2 * Copyright (c) 1998 Nicolas Souchu 3 * All rights reserved. 4 * 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. 13 * 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. 25 * 26 * $FreeBSD$ 27 * 28 */ 29 #include <sys/param.h> 30 #include <sys/kernel.h> 31 #include <sys/systm.h> 32 #include <sys/module.h> 33 #include <sys/bus.h> 34 #include <sys/conf.h> 35 #include <sys/uio.h> 36 #include <sys/fcntl.h> 37 38 39 #include <dev/iicbus/iiconf.h> 40 #include <dev/iicbus/iicbus.h> 41 42 #include <machine/iic.h> 43 44 #include "iicbus_if.h" 45 46 #define BUFSIZE 1024 47 48 struct iic_softc { 49 50 u_char sc_addr; /* address on iicbus */ 51 int sc_count; /* >0 if device opened */ 52 53 char sc_buffer[BUFSIZE]; /* output buffer */ 54 char sc_inbuf[BUFSIZE]; /* input buffer */ 55 }; 56 57 #define IIC_SOFTC(unit) \ 58 ((struct iic_softc *)devclass_get_softc(iic_devclass, (unit))) 59 60 #define IIC_DEVICE(unit) \ 61 (devclass_get_device(iic_devclass, (unit))) 62 63 static int iic_probe(device_t); 64 static int iic_attach(device_t); 65 66 static devclass_t iic_devclass; 67 68 static device_method_t iic_methods[] = { 69 /* device interface */ 70 DEVMETHOD(device_probe, iic_probe), 71 DEVMETHOD(device_attach, iic_attach), 72 73 /* iicbus interface */ 74 DEVMETHOD(iicbus_intr, iicbus_generic_intr), 75 76 { 0, 0 } 77 }; 78 79 static driver_t iic_driver = { 80 "iic", 81 iic_methods, 82 sizeof(struct iic_softc), 83 }; 84 85 static d_open_t iicopen; 86 static d_close_t iicclose; 87 static d_write_t iicwrite; 88 static d_read_t iicread; 89 static d_ioctl_t iicioctl; 90 91 #define CDEV_MAJOR 105 92 static struct cdevsw iic_cdevsw = { 93 /* open */ iicopen, 94 /* close */ iicclose, 95 /* read */ iicread, 96 /* write */ iicwrite, 97 /* ioctl */ iicioctl, 98 /* poll */ nopoll, 99 /* mmap */ nommap, 100 /* strategy */ nostrategy, 101 /* name */ "iic", 102 /* maj */ CDEV_MAJOR, 103 /* dump */ nodump, 104 /* psize */ nopsize, 105 /* flags */ 0, 106 }; 107 108 /* 109 * iicprobe() 110 */ 111 static int 112 iic_probe(device_t dev) 113 { 114 struct iic_softc *sc = (struct iic_softc *)device_get_softc(dev); 115 116 sc->sc_addr = iicbus_get_addr(dev); 117 118 /* XXX detect chip with start/stop conditions */ 119 120 return (0); 121 } 122 123 /* 124 * iicattach() 125 */ 126 static int 127 iic_attach(device_t dev) 128 { 129 make_dev(&iic_cdevsw, device_get_unit(dev), /* XXX cleanup */ 130 UID_ROOT, GID_WHEEL, 131 0600, "iic%d", device_get_unit(dev)); 132 return (0); 133 } 134 135 static int 136 iicopen (dev_t dev, int flags, int fmt, struct proc *p) 137 { 138 struct iic_softc *sc = IIC_SOFTC(minor(dev)); 139 140 if (!sc) 141 return (EINVAL); 142 143 if (sc->sc_count > 0) 144 return (EBUSY); 145 146 sc->sc_count++; 147 148 return (0); 149 } 150 151 static int 152 iicclose(dev_t dev, int flags, int fmt, struct proc *p) 153 { 154 struct iic_softc *sc = IIC_SOFTC(minor(dev)); 155 156 if (!sc) 157 return (EINVAL); 158 159 if (!sc->sc_count) 160 return (EINVAL); 161 162 sc->sc_count--; 163 164 if (sc->sc_count < 0) 165 panic("%s: iic_count < 0!", __FUNCTION__); 166 167 return (0); 168 } 169 170 static int 171 iicwrite(dev_t dev, struct uio * uio, int ioflag) 172 { 173 device_t iicdev = IIC_DEVICE(minor(dev)); 174 struct iic_softc *sc = IIC_SOFTC(minor(dev)); 175 int sent, error, count; 176 177 if (!sc || !iicdev) 178 return (EINVAL); 179 180 if (sc->sc_count == 0) 181 return (EINVAL); 182 183 if ((error = iicbus_request_bus(device_get_parent(iicdev), iicdev, IIC_DONTWAIT))) 184 return (error); 185 186 count = min(uio->uio_resid, BUFSIZE); 187 uiomove(sc->sc_buffer, count, uio); 188 189 error = iicbus_block_write(device_get_parent(iicdev), sc->sc_addr, 190 sc->sc_buffer, count, &sent); 191 192 iicbus_release_bus(device_get_parent(iicdev), iicdev); 193 194 return(error); 195 } 196 197 static int 198 iicread(dev_t dev, struct uio * uio, int ioflag) 199 { 200 device_t iicdev = IIC_DEVICE(minor(dev)); 201 struct iic_softc *sc = IIC_SOFTC(minor(dev)); 202 int len, error = 0; 203 int bufsize; 204 205 if (!sc || !iicdev) 206 return (EINVAL); 207 208 if (sc->sc_count == 0) 209 return (EINVAL); 210 211 if ((error = iicbus_request_bus(device_get_parent(iicdev), iicdev, IIC_DONTWAIT))) 212 return (error); 213 214 /* max amount of data to read */ 215 len = min(uio->uio_resid, BUFSIZE); 216 217 if ((error = iicbus_block_read(device_get_parent(iicdev), sc->sc_addr, 218 sc->sc_inbuf, len, &bufsize))) 219 return (error); 220 221 if (bufsize > uio->uio_resid) 222 panic("%s: too much data read!", __FUNCTION__); 223 224 iicbus_release_bus(device_get_parent(iicdev), iicdev); 225 226 return (uiomove(sc->sc_inbuf, bufsize, uio)); 227 } 228 229 static int 230 iicioctl(dev_t dev, u_long cmd, caddr_t data, int flags, struct proc *p) 231 { 232 device_t iicdev = IIC_DEVICE(minor(dev)); 233 struct iic_softc *sc = IIC_SOFTC(minor(dev)); 234 device_t parent = device_get_parent(iicdev); 235 struct iiccmd *s = (struct iiccmd *)data; 236 int error, count; 237 238 if (!sc) 239 return (EINVAL); 240 241 if ((error = iicbus_request_bus(device_get_parent(iicdev), iicdev, 242 (flags & O_NONBLOCK) ? IIC_DONTWAIT : 243 (IIC_WAIT | IIC_INTR)))) 244 return (error); 245 246 switch (cmd) { 247 case I2CSTART: 248 error = iicbus_start(parent, s->slave, 0); 249 break; 250 251 case I2CSTOP: 252 error = iicbus_stop(parent); 253 break; 254 255 case I2CRSTCARD: 256 error = iicbus_reset(parent, 0, 0, NULL); 257 break; 258 259 case I2CWRITE: 260 error = iicbus_write(parent, s->buf, s->count, &count, 0); 261 break; 262 263 case I2CREAD: 264 error = iicbus_read(parent, s->buf, s->count, &count, s->last, 0); 265 break; 266 267 default: 268 error = ENODEV; 269 } 270 271 iicbus_release_bus(device_get_parent(iicdev), iicdev); 272 273 return (error); 274 } 275 276 DRIVER_MODULE(iic, iicbus, iic_driver, iic_devclass, 0, 0); 277