Home | History | Annotate | Line # | Download | only in dev
kbc.c revision 1.6.2.2
      1  1.6.2.2    skrll /*	$NetBSD: kbc.c,v 1.6.2.2 2004/09/18 14:37:58 skrll 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  *
      6      1.1  tsutsui  * Redistribution and use in source and binary forms, with or without
      7      1.1  tsutsui  * modification, are permitted provided that the following conditions
      8      1.1  tsutsui  * are met:
      9      1.1  tsutsui  * 1. Redistributions of source code must retain the above copyright
     10      1.1  tsutsui  *    notice, this list of conditions and the following disclaimer.
     11      1.1  tsutsui  * 2. Redistributions in binary form must reproduce the above copyright
     12      1.1  tsutsui  *    notice, this list of conditions and the following disclaimer in the
     13      1.1  tsutsui  *    documentation and/or other materials provided with the distribution.
     14      1.1  tsutsui  * 3. The name of the author may not be used to endorse or promote products
     15      1.1  tsutsui  *    derived from this software without specific prior written permission.
     16      1.1  tsutsui  *
     17      1.1  tsutsui  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     18      1.1  tsutsui  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     19      1.1  tsutsui  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     20      1.1  tsutsui  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     21      1.1  tsutsui  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     22      1.1  tsutsui  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     23      1.1  tsutsui  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     24      1.1  tsutsui  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     25      1.1  tsutsui  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
     26      1.1  tsutsui  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     27      1.1  tsutsui  */
     28      1.1  tsutsui 
     29  1.6.2.1    skrll #include <sys/cdefs.h>
     30  1.6.2.2    skrll __KERNEL_RCSID(0, "$NetBSD: kbc.c,v 1.6.2.2 2004/09/18 14:37:58 skrll Exp $");
     31      1.1  tsutsui 
     32      1.1  tsutsui #include <sys/param.h>
     33      1.1  tsutsui #include <sys/systm.h>
     34      1.1  tsutsui #include <sys/conf.h>
     35      1.1  tsutsui #include <sys/device.h>
     36      1.1  tsutsui #include <sys/tty.h>
     37      1.1  tsutsui 
     38      1.1  tsutsui #include <machine/bus.h>
     39      1.1  tsutsui #include <machine/cpu.h>
     40      1.1  tsutsui 
     41      1.1  tsutsui #include <dev/cons.h>
     42      1.1  tsutsui 
     43      1.1  tsutsui #include <news68k/dev/hbvar.h>
     44      1.1  tsutsui #include <news68k/dev/kbcvar.h>
     45      1.1  tsutsui 
     46  1.6.2.2    skrll #include "ioconf.h"
     47  1.6.2.2    skrll 
     48      1.1  tsutsui #define KBC_SIZE 0x10 /* XXX */
     49      1.1  tsutsui 
     50      1.1  tsutsui /* Definition of the driver for autoconfig. */
     51      1.4  tsutsui static int  kbc_match(struct device *, struct cfdata *, void *);
     52      1.4  tsutsui static void kbc_attach(struct device *, struct device *, void *);
     53      1.4  tsutsui static int  kbc_print(void *, const char *name);
     54      1.1  tsutsui 
     55      1.3  thorpej CFATTACH_DECL(kbc, sizeof(struct device),
     56      1.3  thorpej     kbc_match, kbc_attach, NULL, NULL);
     57      1.1  tsutsui 
     58  1.6.2.2    skrll static int kbc_match(struct device *parent, struct cfdata *cf, void *aux)
     59      1.1  tsutsui {
     60      1.1  tsutsui 	struct hb_attach_args *ha = aux;
     61      1.1  tsutsui 	u_int addr;
     62      1.1  tsutsui 
     63      1.1  tsutsui 	if (strcmp(ha->ha_name, "kbc"))
     64      1.1  tsutsui 		return 0;
     65      1.1  tsutsui 
     66      1.1  tsutsui 	/* XXX no default address */
     67      1.6  tsutsui 	if (ha->ha_address == (u_int)-1)
     68      1.1  tsutsui 		return 0;
     69      1.1  tsutsui 
     70      1.1  tsutsui 	addr = IIOV(ha->ha_address); /* XXX */
     71      1.1  tsutsui 
     72      1.1  tsutsui 	if (badaddr((void *)addr, 1))
     73      1.1  tsutsui 		return 0;
     74      1.1  tsutsui 
     75      1.1  tsutsui 	return 1;
     76      1.1  tsutsui }
     77      1.1  tsutsui 
     78      1.1  tsutsui static void
     79  1.6.2.2    skrll kbc_attach(struct device *parent, struct device *self, void *aux)
     80      1.1  tsutsui {
     81      1.1  tsutsui 	struct hb_attach_args *ha = aux;
     82      1.1  tsutsui 	struct kbc_attach_args ka;
     83      1.1  tsutsui 	bus_space_tag_t bt = ha->ha_bust;
     84      1.1  tsutsui 	bus_space_handle_t bh;
     85      1.1  tsutsui 
     86      1.1  tsutsui 	if (bus_space_map(bt, ha->ha_address, KBC_SIZE, 0, &bh) != 0) {
     87      1.1  tsutsui 		printf("can't map device space\n");
     88      1.1  tsutsui 		return;
     89      1.1  tsutsui 	}
     90      1.1  tsutsui 
     91      1.1  tsutsui 	printf("\n");
     92      1.1  tsutsui 
     93      1.1  tsutsui 	ka.ka_bt = bt;
     94      1.1  tsutsui 	ka.ka_bh = bh;
     95      1.1  tsutsui 	ka.ka_ipl = ha->ha_ipl;
     96      1.1  tsutsui 
     97      1.1  tsutsui 	if (ka.ka_ipl == -1)
     98      1.1  tsutsui 		ka.ka_ipl = KBC_PRI;
     99      1.1  tsutsui 
    100      1.1  tsutsui 	ka.ka_name = "kb";
    101      1.1  tsutsui 	config_found(self, (void *)&ka, kbc_print);
    102      1.1  tsutsui 
    103      1.1  tsutsui 	ka.ka_name = "ms";
    104      1.1  tsutsui 	config_found(self, (void *)&ka, kbc_print);
    105      1.1  tsutsui }
    106      1.1  tsutsui 
    107      1.1  tsutsui static int
    108  1.6.2.2    skrll kbc_print(void *aux, const char *name)
    109      1.1  tsutsui {
    110      1.1  tsutsui 
    111      1.1  tsutsui 	if (name != NULL)
    112      1.5  thorpej 		aprint_normal("%s: ", name);
    113      1.1  tsutsui 
    114      1.1  tsutsui 	return UNCONF;
    115      1.1  tsutsui }
    116