Home | History | Annotate | Line # | Download | only in dev
mainbus.c revision 1.25.2.1
      1  1.25.2.1      yamt /*	$NetBSD: mainbus.c,v 1.25.2.1 2012/04/17 00:05:52 yamt Exp $	*/
      2       1.1   thorpej 
      3       1.1   thorpej /*-
      4       1.1   thorpej  * Copyright (c) 2001 The NetBSD Foundation, Inc.
      5       1.1   thorpej  * All rights reserved.
      6       1.1   thorpej  *
      7       1.1   thorpej  * This code is derived from software contributed to The NetBSD Foundation
      8       1.1   thorpej  * by Jason R. Thorpe.
      9       1.1   thorpej  *
     10       1.1   thorpej  * Redistribution and use in source and binary forms, with or without
     11       1.1   thorpej  * modification, are permitted provided that the following conditions
     12       1.1   thorpej  * are met:
     13       1.1   thorpej  * 1. Redistributions of source code must retain the above copyright
     14       1.1   thorpej  *    notice, this list of conditions and the following disclaimer.
     15       1.1   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.1   thorpej  *    notice, this list of conditions and the following disclaimer in the
     17       1.1   thorpej  *    documentation and/or other materials provided with the distribution.
     18       1.1   thorpej  *
     19       1.1   thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20       1.1   thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21       1.1   thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22       1.1   thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23       1.1   thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24       1.1   thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25       1.1   thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26       1.1   thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27       1.1   thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28       1.1   thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29       1.1   thorpej  * POSSIBILITY OF SUCH DAMAGE.
     30       1.1   thorpej  */
     31      1.14     lukem 
     32      1.14     lukem #include <sys/cdefs.h>
     33  1.25.2.1      yamt __KERNEL_RCSID(0, "$NetBSD: mainbus.c,v 1.25.2.1 2012/04/17 00:05:52 yamt Exp $");
     34       1.1   thorpej 
     35       1.1   thorpej #include "opt_algor_p4032.h"
     36       1.1   thorpej #include "opt_algor_p5064.h"
     37       1.1   thorpej #include "opt_algor_p6032.h"
     38       1.1   thorpej 
     39       1.1   thorpej #include "opt_pci.h"
     40       1.1   thorpej 
     41       1.1   thorpej #include <sys/param.h>
     42      1.25      matt #include <sys/bus.h>
     43       1.1   thorpej #include <sys/conf.h>
     44       1.1   thorpej #include <sys/device.h>
     45      1.25      matt #include <sys/extent.h>
     46       1.1   thorpej #include <sys/malloc.h>
     47      1.25      matt #include <sys/reboot.h>
     48      1.25      matt #include <sys/systm.h>
     49       1.1   thorpej 
     50      1.25      matt #include <algor/autoconf.h>
     51       1.1   thorpej 
     52       1.7   thorpej #include <mips/cache.h>
     53       1.7   thorpej 
     54       1.1   thorpej #include <dev/pci/pcivar.h>
     55       1.1   thorpej #include <dev/pci/pciconf.h>
     56       1.1   thorpej 
     57       1.4   thorpej #if defined(PCI_NETBSD_CONFIGURE) && defined(PCI_NETBSD_ENABLE_IDE)
     58       1.4   thorpej #if defined(ALGOR_P5064) || defined(ALGOR_P6032)
     59       1.4   thorpej #include <dev/pci/pciide_piix_reg.h>
     60       1.4   thorpej #endif /* ALGOR_P5064 || ALGOR_P6032 */
     61       1.4   thorpej #endif /* PCI_NETBSD_CONFIGURE && PCI_NETBSD_ENABLE_IDE */
     62       1.4   thorpej 
     63       1.1   thorpej #include "locators.h"
     64       1.1   thorpej #include "pci.h"
     65       1.1   thorpej 
     66      1.22      matt int	mainbus_match(device_t, cfdata_t, void *);
     67      1.22      matt void	mainbus_attach(device_t, device_t, void *);
     68       1.1   thorpej 
     69      1.22      matt CFATTACH_DECL_NEW(mainbus, 0,
     70      1.12   thorpej     mainbus_match, mainbus_attach, NULL, NULL);
     71       1.1   thorpej 
     72       1.1   thorpej int	mainbus_print(void *, const char *);
     73      1.22      matt int	mainbus_submatch(device_t, cfdata_t,
     74      1.18  drochner 			 const int *, void *);
     75       1.1   thorpej 
     76       1.1   thorpej /* There can be only one. */
     77       1.1   thorpej int	mainbus_found;
     78       1.1   thorpej 
     79       1.2   thorpej struct mainbusdev {
     80       1.2   thorpej 	const char *md_name;
     81       1.2   thorpej 	bus_addr_t md_addr;
     82       1.2   thorpej 	int md_irq;
     83       1.2   thorpej };
     84       1.2   thorpej 
     85       1.2   thorpej #if defined(ALGOR_P4032)
     86       1.2   thorpej #include <algor/algor/algor_p4032reg.h>
     87       1.2   thorpej #include <algor/algor/algor_p4032var.h>
     88       1.2   thorpej 
     89       1.2   thorpej struct mainbusdev mainbusdevs[] = {
     90       1.2   thorpej 	{ "cpu",		-1,			-1 },
     91       1.2   thorpej 	{ "mcclock",		P4032_RTC,		P4032_IRQ_RTC },
     92       1.2   thorpej 	{ "com",		P4032_COM1,		P4032_IRQ_COM1 },
     93       1.2   thorpej 	{ "com",		P4032_COM2,		P4032_IRQ_COM2 },
     94       1.2   thorpej 	{ "lpt",		P4032_LPT,		P4032_IRQ_LPT },
     95       1.2   thorpej 	{ "pckbc",		P4032_PCKBC,		P4032_IRQ_PCKBC },
     96       1.2   thorpej 	{ "fdc",		P4032_FDC,		P4032_IRQ_FLOPPY },
     97       1.2   thorpej 	{ "vtpbc",		P4032_V962PBC,		-1 },
     98       1.2   thorpej 
     99       1.2   thorpej 	{ NULL,			0,			0 },
    100       1.2   thorpej };
    101       1.2   thorpej #endif /* ALGOR_P4032 */
    102       1.2   thorpej 
    103       1.1   thorpej #if defined(ALGOR_P5064)
    104       1.1   thorpej #include <algor/algor/algor_p5064reg.h>
    105       1.1   thorpej #include <algor/algor/algor_p5064var.h>
    106       1.1   thorpej 
    107       1.2   thorpej struct mainbusdev mainbusdevs[] = {
    108       1.2   thorpej 	{ "cpu",		-1,			-1 },
    109       1.2   thorpej 	{ "vtpbc",		P5064_V360EPC,		-1 },
    110       1.1   thorpej 
    111       1.2   thorpej 	{ NULL,			0,			0 },
    112       1.1   thorpej };
    113       1.1   thorpej #endif /* ALGOR_P5064 */
    114       1.1   thorpej 
    115       1.3   thorpej #if defined(ALGOR_P6032)
    116       1.3   thorpej #include <algor/algor/algor_p6032reg.h>
    117       1.3   thorpej #include <algor/algor/algor_p6032var.h>
    118       1.3   thorpej 
    119       1.3   thorpej struct mainbusdev mainbusdevs[] = {
    120       1.3   thorpej 	{ "cpu",		-1,			-1 },
    121       1.3   thorpej 	{ "bonito",		BONITO_REG_BASE,	-1 },
    122       1.3   thorpej 
    123       1.3   thorpej 	{ NULL,			0,			0 },
    124       1.3   thorpej };
    125       1.3   thorpej #endif /* ALGOR_P6032 */
    126       1.3   thorpej 
    127       1.1   thorpej int
    128      1.22      matt mainbus_match(device_t parent, cfdata_t cf, void *aux)
    129       1.1   thorpej {
    130       1.1   thorpej 
    131       1.1   thorpej 	if (mainbus_found)
    132       1.1   thorpej 		return (0);
    133       1.1   thorpej 
    134       1.1   thorpej 	return (1);
    135       1.1   thorpej }
    136       1.1   thorpej 
    137       1.1   thorpej void
    138      1.22      matt mainbus_attach(device_t parent, device_t self, void *aux)
    139       1.1   thorpej {
    140       1.2   thorpej 	struct mainbus_attach_args ma;
    141       1.2   thorpej 	struct mainbusdev *md;
    142       1.2   thorpej 	bus_space_tag_t st;
    143       1.1   thorpej #if defined(PCI_NETBSD_CONFIGURE)
    144       1.1   thorpej 	struct extent *ioext, *memext;
    145       1.1   thorpej 	pci_chipset_tag_t pc;
    146       1.4   thorpej #if defined(PCI_NETBSD_ENABLE_IDE)
    147       1.4   thorpej 	pcitag_t idetag;
    148       1.4   thorpej 	pcireg_t idetim;
    149       1.4   thorpej #endif
    150       1.1   thorpej #endif
    151       1.1   thorpej 
    152       1.1   thorpej 	mainbus_found = 1;
    153       1.1   thorpej 
    154       1.1   thorpej 	printf("\n");
    155       1.1   thorpej 
    156       1.1   thorpej #if NPCI > 0 && defined(PCI_NETBSD_CONFIGURE)
    157       1.2   thorpej #if defined(ALGOR_P4032)
    158       1.2   thorpej 	/*
    159       1.2   thorpej 	 * Reserve the bottom 64K of the I/O space for ISA devices.
    160       1.2   thorpej 	 */
    161       1.2   thorpej 	ioext  = extent_create("pciio",  0x00010000, 0x000effff,
    162  1.25.2.1      yamt 	    NULL, 0, EX_NOWAIT);
    163       1.2   thorpej 	memext = extent_create("pcimem", 0x01000000, 0x07ffffff,
    164  1.25.2.1      yamt 	    NULL, 0, EX_NOWAIT);
    165       1.2   thorpej 
    166       1.2   thorpej 	pc = &p4032_configuration.ac_pc;
    167       1.2   thorpej #elif defined(ALGOR_P5064)
    168       1.1   thorpej 	/*
    169       1.1   thorpej 	 * Reserve the bottom 512K of the I/O space for ISA devices.
    170       1.1   thorpej 	 * According to the PMON sources, this is a work-around for
    171       1.1   thorpej 	 * a bug in the ISA bridge.
    172       1.1   thorpej 	 */
    173       1.1   thorpej 	ioext  = extent_create("pciio",  0x00080000, 0x00ffffff,
    174  1.25.2.1      yamt 	    NULL, 0, EX_NOWAIT);
    175       1.1   thorpej 	memext = extent_create("pcimem", 0x01000000, 0x07ffffff,
    176  1.25.2.1      yamt 	    NULL, 0, EX_NOWAIT);
    177       1.1   thorpej 
    178       1.1   thorpej 	pc = &p5064_configuration.ac_pc;
    179       1.4   thorpej #if defined(PCI_NETBSD_ENABLE_IDE)
    180       1.4   thorpej 	idetag = pci_make_tag(pc, 0, 2, 1);
    181       1.4   thorpej #endif
    182       1.3   thorpej #elif defined(ALGOR_P6032)
    183       1.3   thorpej 	/*
    184       1.5    simonb 	 * Reserve the bottom 64K of the I/O space for ISA devices.
    185       1.3   thorpej 	 */
    186       1.3   thorpej 	ioext  = extent_create("pciio",  0x00010000, 0x000effff,
    187  1.25.2.1      yamt 	    NULL, 0, EX_NOWAIT);
    188       1.3   thorpej 	memext = extent_create("pcimem", 0x01000000, 0x0affffff,
    189  1.25.2.1      yamt 	    NULL, 0, EX_NOWAIT);
    190       1.3   thorpej 
    191       1.3   thorpej 	pc = &p6032_configuration.ac_pc;
    192       1.4   thorpej #if defined(PCI_NETBSD_ENABLE_IDE)
    193       1.4   thorpej 	idetag = pci_make_tag(pc, 0, 17, 1);
    194       1.4   thorpej #endif
    195       1.3   thorpej #endif /* ALGOR_P4032 || ALGOR_P5064 || ALGOR_P6032 */
    196       1.1   thorpej 
    197      1.21      matt 	pci_configure_bus(pc, ioext, memext, NULL, 0, mips_cache_info.mci_dcache_align);
    198       1.1   thorpej 	extent_destroy(ioext);
    199       1.1   thorpej 	extent_destroy(memext);
    200       1.4   thorpej 
    201       1.4   thorpej #if defined(PCI_NETBSD_ENABLE_IDE)
    202       1.4   thorpej 	/*
    203       1.4   thorpej 	 * Perhaps PMON has not enabled the IDE controller.  Easy to
    204       1.4   thorpej 	 * fix -- just set the ENABLE bits for each channel in the
    205       1.4   thorpej 	 * IDETIM register.  Just clear all the bits for the channel
    206       1.4   thorpej 	 * except for the ENABLE bits -- the `pciide' driver will
    207       1.4   thorpej 	 * properly configure it later.
    208       1.4   thorpej 	 */
    209       1.4   thorpej 	idetim = 0;
    210       1.4   thorpej 	if (PCI_NETBSD_ENABLE_IDE & 0x01)
    211       1.4   thorpej 		idetim = PIIX_IDETIM_SET(idetim, PIIX_IDETIM_IDE, 0);
    212       1.4   thorpej 	if (PCI_NETBSD_ENABLE_IDE & 0x02)
    213       1.4   thorpej 		idetim = PIIX_IDETIM_SET(idetim, PIIX_IDETIM_IDE, 1);
    214       1.4   thorpej 	pci_conf_write(pc, idetag, PIIX_IDETIM, idetim);
    215       1.4   thorpej #endif
    216       1.1   thorpej #endif /* NPCI > 0 && defined(PCI_NETBSD_CONFIGURE) */
    217       1.1   thorpej 
    218       1.2   thorpej #if defined(ALGOR_P4032)
    219       1.2   thorpej 	st = &p4032_configuration.ac_lociot;
    220       1.2   thorpej #elif defined(ALGOR_P5064)
    221       1.3   thorpej 	st = NULL;
    222       1.3   thorpej #elif defined(ALGOR_P6032)
    223       1.2   thorpej 	st = NULL;
    224       1.2   thorpej #endif
    225       1.2   thorpej 
    226       1.2   thorpej 	for (md = mainbusdevs; md->md_name != NULL; md++) {
    227       1.2   thorpej 		ma.ma_name = md->md_name;
    228       1.2   thorpej 		ma.ma_st = st;
    229       1.2   thorpej 		ma.ma_addr = md->md_addr;
    230       1.2   thorpej 		ma.ma_irq = md->md_irq;
    231      1.15  drochner 		(void) config_found_sm_loc(self, "mainbus", NULL, &ma,
    232      1.15  drochner 		    mainbus_print, mainbus_submatch);
    233       1.2   thorpej 	}
    234       1.1   thorpej }
    235       1.1   thorpej 
    236       1.1   thorpej int
    237       1.1   thorpej mainbus_print(void *aux, const char *pnp)
    238       1.1   thorpej {
    239       1.1   thorpej 	struct mainbus_attach_args *ma = aux;
    240       1.1   thorpej 
    241       1.1   thorpej 	if (pnp)
    242      1.13   thorpej 		aprint_normal("%s at %s", ma->ma_name, pnp);
    243       1.1   thorpej 	if (ma->ma_addr != (bus_addr_t) -1)
    244      1.24      matt 		aprint_normal(" addr %#" PRIxBUSADDR, ma->ma_addr);
    245       1.1   thorpej 
    246       1.1   thorpej 	return (UNCONF);
    247       1.1   thorpej }
    248       1.1   thorpej 
    249       1.1   thorpej int
    250      1.22      matt mainbus_submatch(device_t parent, cfdata_t cf,
    251      1.18  drochner 		 const int *ldesc, void *aux)
    252       1.1   thorpej {
    253       1.1   thorpej 	struct mainbus_attach_args *ma = aux;
    254       1.1   thorpej 
    255       1.1   thorpej 	if (cf->cf_loc[MAINBUSCF_ADDR] != MAINBUSCF_ADDR_DEFAULT &&
    256       1.1   thorpej 	    cf->cf_loc[MAINBUSCF_ADDR] != ma->ma_addr)
    257       1.1   thorpej 		return (0);
    258       1.1   thorpej 
    259       1.9   thorpej 	return (config_match(parent, cf, aux));
    260       1.1   thorpej }
    261