nappi_nr.c revision 1.1
1/* $NetBSD: nappi_nr.c,v 1.1 2002/07/15 17:13:35 ichiro Exp $ */ 2 3/* 4 * Copyright (c) 2002 The NetBSD Foundation, Inc. 5 * All rights reserved. 6 * 7 * This code is derived from software contributed to The NetBSD Foundation 8 * by Ichiro FUKUHARA and Naoto Shimazaki. 9 * 10 * Redistribution and use in source and binary forms, with or without 11 * modification, are permitted provided that the following conditions 12 * are met: 13 * 1. Redistributions of source code must retain the above copyright 14 * notice, this list of conditions and the following disclaimer. 15 * 2. Redistributions in binary form must reproduce the above copyright 16 * notice, this list of conditions and the following disclaimer in the 17 * documentation and/or other materials provided with the distribution. 18 * 3. All advertising materials mentioning features or use of this software 19 * must display the following acknowledgement: 20 * This product includes software developed by the NetBSD 21 * Foundation, Inc. and its contributors. 22 * 4. Neither the name of The NetBSD Foundation nor the names of its 23 * contributors may be used to endorse or promote products derived 24 * from this software without specific prior written permission. 25 * 26 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 27 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 28 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 29 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 30 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 31 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 32 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 33 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 34 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 35 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 36 * POSSIBILITY OF SUCH DAMAGE. 37 */ 38 39/* 40 * LED support for NAPPI. 41 */ 42 43#include <sys/param.h> 44#include <sys/types.h> 45#include <sys/callout.h> 46#include <sys/device.h> 47#include <sys/kernel.h> 48#include <sys/systm.h> 49 50#include <machine/bus.h> 51 52#include <arm/ixp12x0/ixpsipvar.h> 53 54static int nappinr_match(struct device *, struct cfdata *, void *); 55static void nappinr_attach(struct device *, struct device *, void *); 56#if 0 57static int nappinr_activate(struct device *, enum devact); 58#endif 59static void nappinr_callout(void *); 60 61struct nappinr_softc { 62 struct device sc_dev; 63 bus_space_tag_t sc_iot; 64 bus_space_handle_t sc_ioh; 65 bus_addr_t sc_baseaddr; 66 bus_space_handle_t sc_pos; 67 struct callout sc_co; 68}; 69 70struct cfattach nappinr_ca = { 71 sizeof(struct nappinr_softc), nappinr_match, nappinr_attach 72}; 73 74static int 75nappinr_match(struct device *parent, struct cfdata *match, void *aux) 76{ 77 return (1); 78} 79 80static void 81nappinr_attach(struct device *parent, struct device *self, void *aux) 82{ 83 struct nappinr_softc* sc = (struct nappinr_softc*) self; 84 struct ixpsip_attach_args* sa = aux; 85 86 printf("\n"); 87 88 sc->sc_iot = sa->sa_iot; 89 sc->sc_baseaddr = sa->sa_addr; 90 91 if(bus_space_map(sa->sa_iot, sa->sa_addr, sa->sa_size, 0, 92 &sc->sc_ioh)) { 93 printf("%s: unable to map registers\n", self->dv_xname); 94 return; 95 } 96 97 callout_init(&sc->sc_co); 98 callout_reset(&sc->sc_co, hz / 10, nappinr_callout, sc); 99} 100 101#if 0 102static int 103nappinr_activate(struct device *self, enum devact act) 104{ 105 printf("nappinr_activate act=%d\n", act); 106 return 0; 107} 108#endif 109 110static void 111nappinr_callout(void *arg) 112{ 113 static const int ptn[] = { 1, 2, 4, 8, 4, 2 }; 114 struct nappinr_softc* sc = arg; 115 116 bus_space_write_4(sc->sc_iot, sc->sc_ioh, 0, ptn[sc->sc_pos++ % 6]); 117 callout_reset(&sc->sc_co, hz / 10, nappinr_callout, sc); 118} 119