/*-
* Copyright (c) 1999 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
* by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
* NASA Ames Research Center.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
/*
* Copyright (c) 1998 by Matthew Jacob
* NASA AMES Research Center.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice immediately at the beginning of the file, without modification,
* this list of conditions, and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
/*
* MCPCIA mcbus to PCI bus adapter
* found on AlphaServer 4100 systems.
*/
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
/*
* We have one statically-allocated mcpcia_config structure; this is
* the one used for the console (which, coincidentally, is the only
* MCPCIA with an EISA adapter attached to it).
*/
struct mcpcia_config mcpcia_console_configuration;
static int mcpcia_bus_get_window(int, int,
struct alpha_bus_space_translation *abst);
/*
* Clear any errors that may have occurred during the probe
* sequence.
*/
REGVAL(MCPCIA_CAP_ERR(ccp)) = 0xFFFFFFFF;
alpha_mb();
}
void
mcpcia_init(void)
{
struct mcpcia_config *ccp = &mcpcia_console_configuration;
int i;
/*
* Look for all of the MCPCIAs on the system. One of them
* will have an EISA attached to it. This MCPCIA is the
* only one that can be used for the console. Once we find
* that one, initialize it.
*/
for (i = 0; i < MCPCIA_PER_MCBUS; i++) {
ccp->cc_mid = mcbus_mcpcia_probe_order[i];
/*
* XXX If we ever support more than one MCBUS, we'll
* XXX have to probe for them, and map them to unit
* XXX numbers.
*/
ccp->cc_gid = MCBUS_GID_FROM_INSTANCE(0);
ccp->cc_sysbase = MCPCIA_SYSBASE(ccp);
if (badaddr((void *)ALPHA_PHYS_TO_K0SEG(MCPCIA_PCI_REV(ccp)),
sizeof(uint32_t)))
continue;
if (EISA_PRESENT(REGVAL(MCPCIA_PCI_REV(ccp)))) {
mcpcia_init0(ccp);
if (ccp->cc_initted == 0) {
/* don't do these twice since they set up extents */
mcpcia_bus_io_init(&ccp->cc_iot, ccp);
mcpcia_bus_mem_init(&ccp->cc_memt, ccp);
}
mcpcia_pci_init(&ccp->cc_pc, ccp);
/*
* Establish a precalculated base for convenience's sake.
*/
ccp->cc_sysbase = MCPCIA_SYSBASE(ccp);
if (ccp == &mcpcia_console_configuration) {
/*
* Use this opportunity to also find out the MID and CPU
* type of the currently running CPU (that's us, billybob....)
*/
ctl = REGVAL(MCPCIA_WHOAMI(ccp));
mcbus_primary.mcbus_cpu_mid = MCBUS_CPU_MID(ctl);
if ((MCBUS_CPU_INFO(ctl) & CPU_Fill_Err) == 0 &&
mcbus_primary.mcbus_valid == 0) {
mcbus_primary.mcbus_bcache =
MCBUS_CPU_INFO(ctl) & CPU_BCacheMask;
mcbus_primary.mcbus_valid = 1;
}
alpha_mb();
}