More minor IPI work.
[dragonfly/vkernel-mp.git] / sys / dev / netif / ic / if_ic.c
blob6267815b436e294729982ab45d2d4f4d81816bb1
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/if_ic.c,v 1.8 1999/12/29 04:35:39 peter Exp $
27 * $DragonFly: src/sys/dev/netif/ic/if_ic.c,v 1.17 2006/12/23 00:26:20 swildner Exp $
31 * I2C bus IP driver
34 #ifdef _KERNEL
35 #include <sys/param.h>
36 #include <sys/systm.h>
37 #include <sys/proc.h>
38 #include <sys/mbuf.h>
39 #include <sys/socket.h>
40 #include <sys/filio.h>
41 #include <sys/sockio.h>
42 #include <sys/kernel.h>
43 #include <sys/module.h>
44 #include <sys/bus.h>
45 #include <sys/time.h>
46 #include <sys/malloc.h>
47 #include <sys/thread2.h>
49 #include <net/if.h>
50 #include <net/ifq_var.h>
51 #include <net/if_types.h>
52 #include <net/netisr.h>
54 #endif
55 #include <sys/mbuf.h>
56 #include <sys/socket.h>
57 #include <net/netisr.h>
58 #include <net/route.h>
59 #include <netinet/in.h>
60 #include <netinet/in_systm.h>
61 #include <netinet/in_var.h>
62 #include <netinet/ip.h>
63 #include <netinet/if_ether.h>
65 #include <net/bpf.h>
67 #include <bus/iicbus/iiconf.h>
68 #include <bus/iicbus/iicbus.h>
70 #include "iicbus_if.h"
72 #define ICHDRLEN sizeof(uint32_t)
73 #define ICMTU 1500 /* default mtu */
75 struct ic_softc {
76 struct ifnet ic_if;
78 u_char ic_addr; /* peer I2C address */
80 int ic_sending;
82 char *ic_obuf;
83 char *ic_ifbuf;
84 char *ic_cp;
86 int ic_xfercnt;
88 int ic_iferrs;
91 static devclass_t ic_devclass;
93 static int icprobe(device_t);
94 static int icattach(device_t);
96 static int icioctl(struct ifnet *, u_long, caddr_t, struct ucred *);
97 static int icoutput(struct ifnet *, struct mbuf *, struct sockaddr *,
98 struct rtentry *);
100 static void icintr(device_t, int, char *);
102 static device_method_t ic_methods[] = {
103 /* device interface */
104 DEVMETHOD(device_probe, icprobe),
105 DEVMETHOD(device_attach, icattach),
107 /* iicbus interface */
108 DEVMETHOD(iicbus_intr, icintr),
110 { 0, 0 }
113 static driver_t ic_driver = {
114 "ic",
115 ic_methods,
116 sizeof(struct ic_softc),
120 * icprobe()
122 static int
123 icprobe(device_t dev)
125 return (0);
129 * icattach()
131 static int
132 icattach(device_t dev)
134 struct ic_softc *sc = (struct ic_softc *)device_get_softc(dev);
135 struct ifnet *ifp = &sc->ic_if;
137 sc->ic_addr = iicbus_get_addr(dev);
139 ifp->if_softc = sc;
140 if_initname(ifp, "ic", device_get_unit(dev));
141 ifp->if_mtu = ICMTU;
142 ifp->if_flags = IFF_SIMPLEX | IFF_POINTOPOINT | IFF_MULTICAST;
143 ifp->if_ioctl = icioctl;
144 ifp->if_output = icoutput;
145 ifp->if_type = IFT_PARA;
146 ifp->if_hdrlen = 0;
147 ifp->if_addrlen = 0;
148 ifq_set_maxlen(&ifp->if_snd, IFQ_MAXLEN);
150 if_attach(ifp, NULL);
152 bpfattach(ifp, DLT_NULL, ICHDRLEN);
154 return (0);
158 * iciotcl()
160 static int
161 icioctl(struct ifnet *ifp, u_long cmd, caddr_t data, struct ucred *cr)
163 device_t icdev = devclass_get_device(ic_devclass, ifp->if_dunit);
164 device_t parent = device_get_parent(icdev);
165 struct ic_softc *sc = (struct ic_softc *)device_get_softc(icdev);
167 struct ifaddr *ifa = (struct ifaddr *)data;
168 struct ifreq *ifr = (struct ifreq *)data;
170 u_char *iptr, *optr;
171 int error;
173 switch (cmd) {
175 case SIOCSIFDSTADDR:
176 case SIOCAIFADDR:
177 case SIOCSIFADDR:
178 if (ifa->ifa_addr->sa_family != AF_INET)
179 return EAFNOSUPPORT;
180 ifp->if_flags |= IFF_UP;
181 /* FALLTHROUGH */
182 case SIOCSIFFLAGS:
183 if ((!(ifp->if_flags & IFF_UP)) && (ifp->if_flags & IFF_RUNNING)) {
185 /* XXX disable PCF */
186 ifp->if_flags &= ~IFF_RUNNING;
188 /* IFF_UP is not set, try to release the bus anyway */
189 iicbus_release_bus(parent, icdev);
190 break;
192 if (((ifp->if_flags & IFF_UP)) && (!(ifp->if_flags & IFF_RUNNING))) {
194 if ((error = iicbus_request_bus(parent, icdev, IIC_WAIT|IIC_INTR)))
195 return (error);
197 sc->ic_obuf = kmalloc(sc->ic_if.if_mtu + ICHDRLEN,
198 M_DEVBUF, M_WAITOK);
199 if (!sc->ic_obuf) {
200 iicbus_release_bus(parent, icdev);
201 return ENOBUFS;
204 sc->ic_ifbuf = kmalloc(sc->ic_if.if_mtu + ICHDRLEN,
205 M_DEVBUF, M_WAITOK);
206 if (!sc->ic_ifbuf) {
207 iicbus_release_bus(parent, icdev);
208 return ENOBUFS;
211 iicbus_reset(parent, IIC_FASTEST, 0, NULL);
213 ifp->if_flags |= IFF_RUNNING;
215 break;
217 case SIOCSIFMTU:
218 /* save previous buffers */
219 iptr = sc->ic_ifbuf;
220 optr = sc->ic_obuf;
222 /* allocate input buffer */
223 sc->ic_ifbuf = kmalloc(ifr->ifr_mtu+ICHDRLEN, M_DEVBUF, M_WAITOK);
224 if (!sc->ic_ifbuf) {
226 sc->ic_ifbuf = iptr;
227 sc->ic_obuf = optr;
229 return ENOBUFS;
232 /* allocate output buffer */
233 sc->ic_ifbuf = kmalloc(ifr->ifr_mtu+ICHDRLEN, M_DEVBUF, M_WAITOK);
234 if (!sc->ic_obuf) {
236 kfree(sc->ic_ifbuf,M_DEVBUF);
238 sc->ic_ifbuf = iptr;
239 sc->ic_obuf = optr;
241 return ENOBUFS;
244 if (iptr)
245 kfree(iptr,M_DEVBUF);
247 if (optr)
248 kfree(optr,M_DEVBUF);
250 sc->ic_if.if_mtu = ifr->ifr_mtu;
251 break;
253 case SIOCGIFMTU:
254 ifr->ifr_mtu = sc->ic_if.if_mtu;
255 break;
257 case SIOCADDMULTI:
258 case SIOCDELMULTI:
259 if (ifr == 0) {
260 return EAFNOSUPPORT; /* XXX */
262 switch (ifr->ifr_addr.sa_family) {
264 case AF_INET:
265 break;
267 default:
268 return EAFNOSUPPORT;
270 break;
272 default:
273 return EINVAL;
275 return 0;
279 * icintr()
281 static void
282 icintr (device_t dev, int event, char *ptr)
284 struct ic_softc *sc = (struct ic_softc *)device_get_softc(dev);
285 int unit = device_get_unit(dev);
286 int len;
287 struct mbuf *top;
289 crit_enter();
291 switch (event) {
293 case INTR_GENERAL:
294 case INTR_START:
295 sc->ic_cp = sc->ic_ifbuf;
296 sc->ic_xfercnt = 0;
297 break;
299 case INTR_STOP:
301 /* if any error occured during transfert,
302 * drop the packet */
303 if (sc->ic_iferrs)
304 goto err;
306 if ((len = sc->ic_xfercnt) == 0)
307 break; /* ignore */
309 if (len <= ICHDRLEN)
310 goto err;
312 len -= ICHDRLEN;
313 sc->ic_if.if_ipackets ++;
314 sc->ic_if.if_ibytes += len;
316 BPF_TAP(&sc->ic_if, sc->ic_ifbuf, len + ICHDRLEN);
318 top = m_devget(sc->ic_ifbuf + ICHDRLEN, len, 0, &sc->ic_if, 0);
320 if (top)
321 netisr_dispatch(NETISR_IP, top);
322 break;
324 err:
325 kprintf("ic%d: errors (%d)!\n", unit, sc->ic_iferrs);
327 sc->ic_iferrs = 0; /* reset error count */
328 sc->ic_if.if_ierrors ++;
330 break;
332 case INTR_RECEIVE:
333 if (sc->ic_xfercnt >= sc->ic_if.if_mtu+ICHDRLEN) {
334 sc->ic_iferrs ++;
336 } else {
337 *sc->ic_cp++ = *ptr;
338 sc->ic_xfercnt ++;
340 break;
342 case INTR_NOACK: /* xfer terminated by master */
343 break;
345 case INTR_TRANSMIT:
346 *ptr = 0xff; /* XXX */
347 break;
349 case INTR_ERROR:
350 sc->ic_iferrs ++;
351 break;
353 default:
354 panic("%s: unknown event (%d)!", __func__, event);
357 crit_exit();
361 * icoutput()
363 static int
364 icoutput(struct ifnet *ifp, struct mbuf *m,
365 struct sockaddr *dst, struct rtentry *rt)
367 device_t icdev = devclass_get_device(ic_devclass, ifp->if_dunit);
368 device_t parent = device_get_parent(icdev);
369 struct ic_softc *sc = (struct ic_softc *)device_get_softc(icdev);
370 int len, sent;
371 struct mbuf *mm;
372 u_char *cp;
373 uint32_t hdr = dst->sa_family;
375 ifp->if_flags |= IFF_RUNNING;
377 crit_enter();
379 /* already sending? */
380 if (sc->ic_sending) {
381 ifp->if_oerrors ++;
382 goto error;
385 /* insert header */
386 bcopy ((char *)&hdr, sc->ic_obuf, ICHDRLEN);
388 cp = sc->ic_obuf + ICHDRLEN;
389 len = 0;
390 mm = m;
391 do {
392 if (len + mm->m_len > sc->ic_if.if_mtu) {
393 /* packet to large */
394 ifp->if_oerrors ++;
395 goto error;
398 bcopy(mtod(mm,char *), cp, mm->m_len);
399 cp += mm->m_len;
400 len += mm->m_len;
402 } while ((mm = mm->m_next));
404 if (ifp->if_bpf)
405 bpf_ptap(ifp->if_bpf, m, &hdr, ICHDRLEN);
407 sc->ic_sending = 1;
409 m_freem(m);
411 crit_exit();
413 /* send the packet */
414 if (iicbus_block_write(parent, sc->ic_addr, sc->ic_obuf,
415 len + ICHDRLEN, &sent))
417 ifp->if_oerrors ++;
418 else {
419 ifp->if_opackets ++;
420 ifp->if_obytes += len;
423 sc->ic_sending = 0;
425 return (0);
427 error:
428 m_freem(m);
429 crit_exit();
431 return(0);
434 DECLARE_DUMMY_MODULE(if_ic);
435 DRIVER_MODULE(if_ic, iicbus, ic_driver, ic_devclass, 0, 0);