Home | History | Annotate | Line # | Download | only in jensenio
jensenio.c revision 1.17
      1 /* $NetBSD: jensenio.c,v 1.17 2008/07/09 21:19:23 joerg Exp $ */
      2 
      3 /*-
      4  * Copyright (c) 1999, 2000 The NetBSD Foundation, Inc.
      5  * All rights reserved.
      6  *
      7  * This code is derived from software contributed to The NetBSD Foundation
      8  * by Jason R. Thorpe.
      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  *
     19  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29  * POSSIBILITY OF SUCH DAMAGE.
     30  */
     31 
     32 /*
     33  * Driver for the Jensen I/O bus.
     34  *
     35  * The Jensen I/O `bus' is comprised of two things:
     36  *
     37  *	- VLSI VL82C106 junk I/O chip
     38  *	- Intel EISA bus interface
     39  *
     40  * Access to the 82C106 is different than to the rest of EISA space, even
     41  * though it is a single address space.
     42  */
     43 
     44 #include <sys/cdefs.h>			/* RCS ID & Copyright macro defns */
     45 
     46 __KERNEL_RCSID(0, "$NetBSD: jensenio.c,v 1.17 2008/07/09 21:19:23 joerg Exp $");
     47 
     48 #include <sys/param.h>
     49 #include <sys/systm.h>
     50 #include <sys/device.h>
     51 
     52 #include <machine/autoconf.h>
     53 
     54 #include <dev/eisa/eisavar.h>
     55 
     56 #include <dev/isa/isareg.h>
     57 #include <dev/isa/isavar.h>
     58 
     59 #include <alpha/jensenio/jensenioreg.h>
     60 #include <alpha/jensenio/jenseniovar.h>
     61 
     62 #include "locators.h"
     63 
     64 #include "eisa.h"
     65 
     66 /*
     67  * The devices built-in to the VLSI VL82C106 junk I/O chip.
     68  */
     69 static const struct jensenio_dev {
     70 	const char *jd_name;		/* device name */
     71 	bus_addr_t jd_ioaddr;		/* I/O space address */
     72 	int jd_irq[2];			/* Jensen IRQs */
     73 } jensenio_devs[] = {
     74 	{ "pckbc",	IO_KBD,		{ 0x980, 0x990 } },
     75 	{ "com",	IO_COM1,	{ 0x900, -1 } },
     76 	{ "com",	IO_COM2,	{ 0x920, -1 } },
     77 	{ "lpt",	IO_LPT3,	{ 1, -1 } },
     78 	{ "mcclock",	0x170,		{ -1, -1 } },
     79 	{ NULL,		0,		{ -1, -1 } },
     80 };
     81 
     82 static int	jensenio_match(device_t, cfdata_t, void *);
     83 static void	jensenio_attach(device_t, device_t, void *);
     84 
     85 CFATTACH_DECL_NEW(jensenio, 0, jensenio_match, jensenio_attach, NULL, NULL);
     86 
     87 static int	jensenio_print(void *, const char *);
     88 
     89 static int	jensenio_attached;
     90 
     91 struct jensenio_config jensenio_configuration;
     92 
     93 static void	jensenio_eisa_attach_hook(device_t, device_t,
     94 	    struct eisabus_attach_args *);
     95 static int	jensenio_eisa_maxslots(void *);
     96 
     97 static void	jensenio_isa_attach_hook(device_t, device_t,
     98 	    struct isabus_attach_args *);
     99 
    100 /*
    101  * Set up the Jensen's function pointers.
    102  */
    103 void
    104 jensenio_init(struct jensenio_config *jcp, int mallocsafe)
    105 {
    106 
    107 	/*
    108 	 * Initialize the Host Address Extension register to 0
    109 	 * (the firmware should have already done this).  We will
    110 	 * disallow mapping of any device who's address would
    111 	 * require a non-0 HAE.  This should be safe as the final
    112 	 * draft of the Jensen system specification states that
    113 	 * applications should follow this little rule.
    114 	 *
    115 	 * There's a good reason for this; actually using HAE would
    116 	 * require a mutex around *every* EISA cycle!  Gross!
    117 	 */
    118 	REGVAL(JENSEN_HAE) = 0;
    119 	alpha_mb();
    120 
    121 	if (jcp->jc_initted == 0) {
    122 		/* don't do these twice since they set up extents */
    123 		jensenio_bus_io_init(&jcp->jc_eisa_iot, jcp);
    124 		jensenio_bus_intio_init(&jcp->jc_internal_iot, jcp);
    125 		jensenio_bus_mem_init(&jcp->jc_eisa_memt, jcp);
    126 	}
    127 	jcp->jc_mallocsafe = mallocsafe;
    128 }
    129 
    130 static int
    131 jensenio_match(device_t parent, cfdata_t cf, void *aux)
    132 {
    133 	struct mainbus_attach_args *ma = aux;
    134 
    135 	if (strcmp(ma->ma_name, cf->cf_name) != 0)
    136 		return (0);
    137 
    138 	/* There can be only one. */
    139 	if (jensenio_attached)
    140 		return (0);
    141 
    142 	return (1);
    143 }
    144 
    145 static void
    146 jensenio_attach(device_t parent, device_t self, void *aux)
    147 {
    148 	struct jensenio_attach_args ja;
    149 	struct jensenio_config *jcp = &jensenio_configuration;
    150 	int i;
    151 	int locs[JENSENIOCF_NLOCS];
    152 
    153 	printf("\n");
    154 
    155 	jensenio_attached = 1;
    156 
    157 	/*
    158 	 * Done once at console init time, but we might need to do
    159 	 * additional work this time.
    160 	 */
    161 	jensenio_init(jcp, 1);
    162 
    163 	/*
    164 	 * Initialize DMA.
    165 	 */
    166 	jensenio_dma_init(jcp);
    167 
    168 	/*
    169 	 * Initialize interrupts.
    170 	 */
    171 	jensenio_intr_init(jcp);
    172 
    173 	/*
    174 	 * First attach all of the built-in devices.
    175 	 */
    176 	for (i = 0; jensenio_devs[i].jd_name != NULL; i++) {
    177 		ja.ja_name = jensenio_devs[i].jd_name;
    178 		ja.ja_ioaddr = jensenio_devs[i].jd_ioaddr;
    179 		ja.ja_irq[0] = jensenio_devs[i].jd_irq[0];
    180 		ja.ja_irq[1] = jensenio_devs[i].jd_irq[1];
    181 
    182 		ja.ja_iot = &jcp->jc_internal_iot;
    183 		ja.ja_ec = &jcp->jc_ec;
    184 
    185 		locs[JENSENIOCF_PORT] = jensenio_devs[i].jd_ioaddr;
    186 		(void) config_found_sm_loc(self, "jensenio", locs, &ja,
    187 		    jensenio_print, config_stdsubmatch);
    188 	}
    189 
    190 	/*
    191 	 * Attach the EISA bus.
    192 	 */
    193 	jcp->jc_ec.ec_attach_hook = jensenio_eisa_attach_hook;
    194 	jcp->jc_ec.ec_maxslots = jensenio_eisa_maxslots;
    195 
    196 	ja.ja_eisa.eba_iot = &jcp->jc_eisa_iot;
    197 	ja.ja_eisa.eba_memt = &jcp->jc_eisa_memt;
    198 	ja.ja_eisa.eba_dmat = &jcp->jc_dmat_eisa;
    199 	ja.ja_eisa.eba_ec = &jcp->jc_ec;
    200 	(void) config_found_ia(self, "eisabus", &ja.ja_eisa, eisabusprint);
    201 
    202 	/*
    203 	 * Attach the ISA bus.
    204 	 */
    205 	jcp->jc_ic.ic_attach_hook = jensenio_isa_attach_hook;
    206 
    207 	ja.ja_isa.iba_iot = &jcp->jc_eisa_iot;
    208 	ja.ja_isa.iba_memt = &jcp->jc_eisa_memt;
    209 	ja.ja_isa.iba_dmat = &jcp->jc_dmat_isa;
    210 	ja.ja_isa.iba_ic = &jcp->jc_ic;
    211 	(void) config_found_ia(self, "isabus", &ja.ja_isa, isabusprint);
    212 }
    213 
    214 static int
    215 jensenio_print(void *aux, const char *pnp)
    216 {
    217 	struct jensenio_attach_args *ja = aux;
    218 
    219 	if (pnp != NULL)
    220 		aprint_normal("%s at %s", ja->ja_name, pnp);
    221 
    222 	aprint_normal(" port 0x%lx", ja->ja_ioaddr);
    223 
    224 	return (UNCONF);
    225 }
    226 
    227 static void
    228 jensenio_eisa_attach_hook(device_t parent, device_t self,
    229     struct eisabus_attach_args *eba)
    230 {
    231 
    232 #if NEISA > 0
    233 	/*
    234 	 * Jensen's EISA config info is sparse, and is mapped at a
    235 	 * different location that on other EISA systems.
    236 	 */
    237 	eisa_config_stride = 0x200;
    238 	eisa_config_addr = JENSEN_FEPROM1;
    239 	eisa_init(eba->eba_ec);
    240 #endif
    241 }
    242 
    243 static int
    244 jensenio_eisa_maxslots(void *v)
    245 {
    246 
    247 	return (8);	/* jensen seems to have only 8 valid slots */
    248 }
    249 
    250 static void
    251 jensenio_isa_attach_hook(device_t parent, device_t self,
    252     struct isabus_attach_args *iba)
    253 {
    254 
    255 	/* Nothing to do. */
    256 }
    257