Home | History | Annotate | Line # | Download | only in dev
ms_hb.c revision 1.10.40.1
      1  1.10.40.1       mjf /*	$NetBSD: ms_hb.c,v 1.10.40.1 2008/04/03 12:42:22 mjf Exp $	*/
      2        1.1   tsutsui 
      3        1.1   tsutsui /*-
      4        1.1   tsutsui  * Copyright (c) 2001 Izumi Tsutsui.  All rights reserved.
      5        1.1   tsutsui  * Copyright (c) 2000 Tsubai Masanari.  All rights reserved.
      6        1.1   tsutsui  *
      7        1.1   tsutsui  * Redistribution and use in source and binary forms, with or without
      8        1.1   tsutsui  * modification, are permitted provided that the following conditions
      9        1.1   tsutsui  * are met:
     10        1.1   tsutsui  * 1. Redistributions of source code must retain the above copyright
     11        1.1   tsutsui  *    notice, this list of conditions and the following disclaimer.
     12        1.1   tsutsui  * 2. Redistributions in binary form must reproduce the above copyright
     13        1.1   tsutsui  *    notice, this list of conditions and the following disclaimer in the
     14        1.1   tsutsui  *    documentation and/or other materials provided with the distribution.
     15        1.1   tsutsui  * 3. The name of the author may not be used to endorse or promote products
     16        1.1   tsutsui  *    derived from this software without specific prior written permission.
     17        1.1   tsutsui  *
     18        1.1   tsutsui  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     19        1.1   tsutsui  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     20        1.1   tsutsui  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     21        1.1   tsutsui  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     22        1.1   tsutsui  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     23        1.1   tsutsui  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     24        1.1   tsutsui  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     25        1.1   tsutsui  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     26        1.1   tsutsui  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
     27        1.1   tsutsui  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     28        1.1   tsutsui  */
     29        1.6     lukem 
     30        1.6     lukem #include <sys/cdefs.h>
     31  1.10.40.1       mjf __KERNEL_RCSID(0, "$NetBSD: ms_hb.c,v 1.10.40.1 2008/04/03 12:42:22 mjf Exp $");
     32        1.1   tsutsui 
     33        1.1   tsutsui #include <sys/param.h>
     34        1.1   tsutsui #include <sys/device.h>
     35        1.1   tsutsui #include <sys/systm.h>
     36        1.1   tsutsui 
     37        1.1   tsutsui #include <dev/wscons/wsconsio.h>
     38        1.1   tsutsui #include <dev/wscons/wsmousevar.h>
     39        1.1   tsutsui 
     40        1.1   tsutsui #include <machine/bus.h>
     41        1.1   tsutsui #include <machine/cpu.h>
     42        1.1   tsutsui 
     43        1.1   tsutsui #include <news68k/dev/hbvar.h>
     44        1.1   tsutsui #include <news68k/dev/ms_hbreg.h>
     45        1.1   tsutsui #include <news68k/dev/msvar.h>
     46        1.1   tsutsui 
     47        1.1   tsutsui #include <news68k/news68k/isr.h>
     48        1.1   tsutsui 
     49        1.1   tsutsui #define MS_SIZE 0x10 /* XXX */
     50        1.1   tsutsui #define MS_IPL 5
     51        1.1   tsutsui 
     52  1.10.40.1       mjf static int ms_hb_match(device_t, cfdata_t, void *);
     53  1.10.40.1       mjf static void ms_hb_attach(device_t, device_t, void *);
     54        1.7   tsutsui static void ms_hb_init(struct ms_softc *);
     55        1.1   tsutsui int ms_hb_intr(void *);
     56        1.1   tsutsui 
     57        1.7   tsutsui static int ms_hb_enable(void *);
     58       1.10  christos static int ms_hb_ioctl(void *, u_long, void *, int, struct lwp *);
     59        1.7   tsutsui static void ms_hb_disable(void *);
     60        1.1   tsutsui 
     61  1.10.40.1       mjf CFATTACH_DECL_NEW(ms_hb, sizeof(struct ms_softc),
     62        1.4   thorpej     ms_hb_match, ms_hb_attach, NULL, NULL);
     63        1.1   tsutsui 
     64        1.1   tsutsui struct wsmouse_accessops ms_hb_accessops = {
     65        1.1   tsutsui 	ms_hb_enable,
     66        1.1   tsutsui 	ms_hb_ioctl,
     67        1.1   tsutsui 	ms_hb_disable
     68        1.1   tsutsui };
     69        1.1   tsutsui 
     70        1.7   tsutsui static int
     71  1.10.40.1       mjf ms_hb_match(device_t parent, cfdata_t cf, void *aux)
     72        1.1   tsutsui {
     73        1.1   tsutsui 	struct hb_attach_args *ha = aux;
     74        1.1   tsutsui 	u_int addr;
     75        1.1   tsutsui 
     76        1.1   tsutsui 	if (strcmp(ha->ha_name, "ms"))
     77        1.1   tsutsui 		return 0;
     78        1.1   tsutsui 
     79        1.1   tsutsui 	/* XXX no default address */
     80        1.5   tsutsui 	if (ha->ha_address == (u_int)-1)
     81        1.1   tsutsui 		return 0;
     82        1.1   tsutsui 
     83        1.1   tsutsui 	addr = IIOV(ha->ha_address); /* XXX */
     84        1.1   tsutsui 
     85        1.1   tsutsui 	if (badaddr((void *)addr, 1))
     86        1.1   tsutsui 		return 0;
     87        1.1   tsutsui 
     88        1.1   tsutsui 	return 1;
     89        1.1   tsutsui }
     90        1.1   tsutsui 
     91        1.7   tsutsui static void
     92  1.10.40.1       mjf ms_hb_attach(device_t parent, device_t self, void *aux)
     93        1.1   tsutsui {
     94  1.10.40.1       mjf 	struct ms_softc *sc = device_private(self);
     95        1.1   tsutsui 	struct hb_attach_args *ha = aux;
     96        1.1   tsutsui 	bus_space_tag_t bt = ha->ha_bust;
     97        1.1   tsutsui 	bus_space_handle_t bh;
     98        1.1   tsutsui 	struct wsmousedev_attach_args wsa;
     99        1.1   tsutsui 	int ipl;
    100        1.1   tsutsui 
    101  1.10.40.1       mjf 	sc->sc_dev = self;
    102        1.1   tsutsui 	if (bus_space_map(bt, ha->ha_address, MS_SIZE, 0, &bh) != 0) {
    103  1.10.40.1       mjf 		aprint_error(": can't map device space\n");
    104        1.1   tsutsui 		return;
    105        1.1   tsutsui 	}
    106        1.1   tsutsui 
    107  1.10.40.1       mjf 	aprint_normal("\n");
    108        1.1   tsutsui 
    109        1.1   tsutsui 	sc->sc_bt = bt;
    110        1.1   tsutsui 	sc->sc_bh = bh;
    111        1.1   tsutsui 	sc->sc_offset = MS_REG_DATA;
    112        1.1   tsutsui 	ipl = ha->ha_ipl;
    113        1.1   tsutsui 	if (ipl == -1)
    114        1.1   tsutsui 		ipl = MS_IPL;
    115        1.1   tsutsui 
    116        1.1   tsutsui 	ms_hb_init(sc);
    117        1.1   tsutsui 
    118        1.9   tsutsui 	isrlink_autovec(ms_hb_intr, (void *)sc, ipl, IPL_TTY);
    119        1.1   tsutsui 
    120        1.1   tsutsui 	wsa.accessops = &ms_hb_accessops;
    121        1.1   tsutsui 	wsa.accesscookie = sc;
    122        1.1   tsutsui 	sc->sc_wsmousedev = config_found(self, &wsa, wsmousedevprint);
    123        1.1   tsutsui }
    124        1.1   tsutsui 
    125        1.7   tsutsui static void
    126        1.7   tsutsui ms_hb_init(struct ms_softc *sc)
    127        1.1   tsutsui {
    128        1.1   tsutsui 	bus_space_tag_t bt = sc->sc_bt;
    129        1.1   tsutsui 	bus_space_handle_t bh = sc->sc_bh;
    130        1.1   tsutsui 
    131        1.1   tsutsui 	bus_space_write_1(bt, bh, MS_REG_RESET, 0);
    132        1.1   tsutsui 	bus_space_write_1(bt, bh, MS_REG_INTE, MS_INTE);
    133        1.1   tsutsui }
    134        1.1   tsutsui 
    135        1.1   tsutsui int
    136        1.7   tsutsui ms_hb_intr(void *v)
    137        1.1   tsutsui {
    138        1.1   tsutsui 	struct ms_softc *sc = v;
    139        1.1   tsutsui 	bus_space_tag_t bt = sc->sc_bt;
    140        1.1   tsutsui 	bus_space_handle_t bh = sc->sc_bh;
    141        1.1   tsutsui 	int handled = 0;
    142        1.1   tsutsui 
    143        1.1   tsutsui 	while ((bus_space_read_1(bt, bh, MS_REG_STAT) & MSSTAT_RDY) != 0) {
    144        1.1   tsutsui 		ms_intr(sc);
    145        1.1   tsutsui 		handled = 1;
    146        1.1   tsutsui 	}
    147        1.1   tsutsui 	if (handled)
    148        1.1   tsutsui 		bus_space_write_1(bt, bh, MS_REG_INTE, MS_INTE);
    149        1.1   tsutsui 
    150        1.1   tsutsui 	return handled;
    151        1.1   tsutsui }
    152        1.1   tsutsui 
    153        1.7   tsutsui static int
    154        1.7   tsutsui ms_hb_enable(void *v)
    155        1.1   tsutsui {
    156        1.1   tsutsui 	struct ms_softc *sc = v;
    157        1.1   tsutsui 	bus_space_tag_t bt = sc->sc_bt;
    158        1.1   tsutsui 	bus_space_handle_t bh = sc->sc_bh;
    159        1.1   tsutsui 
    160        1.1   tsutsui 	bus_space_write_1(bt, bh, MS_REG_INTE, MS_INTE);
    161        1.1   tsutsui 
    162        1.1   tsutsui 	return 0;
    163        1.1   tsutsui }
    164        1.1   tsutsui 
    165        1.7   tsutsui static void
    166        1.7   tsutsui ms_hb_disable(void *v)
    167        1.1   tsutsui {
    168        1.1   tsutsui 	struct ms_softc *sc = v;
    169        1.1   tsutsui 	bus_space_tag_t bt = sc->sc_bt;
    170        1.1   tsutsui 	bus_space_handle_t bh = sc->sc_bh;
    171        1.1   tsutsui 
    172        1.1   tsutsui 	bus_space_write_1(bt, bh, MS_REG_INTE, 0);
    173        1.1   tsutsui }
    174        1.1   tsutsui 
    175        1.7   tsutsui static int
    176       1.10  christos ms_hb_ioctl(void *v, u_long cmd, void *data, int flag, struct lwp *l)
    177        1.1   tsutsui {
    178        1.7   tsutsui 
    179        1.2    atatat 	return EPASSTHROUGH;
    180        1.1   tsutsui }
    181