Home | History | Annotate | Line # | Download | only in loongson
bonito_mainbus.c revision 1.1.6.3
      1  1.1.6.3     mrg /*	$NetBSD: bonito_mainbus.c,v 1.1.6.3 2012/03/06 18:26:35 mrg Exp $	*/
      2      1.1  bouyer 
      3      1.1  bouyer /*-
      4      1.1  bouyer  * Copyright (c) 2001 The NetBSD Foundation, Inc.
      5      1.1  bouyer  * All rights reserved.
      6      1.1  bouyer  *
      7      1.1  bouyer  * This code is derived from software contributed to The NetBSD Foundation
      8      1.1  bouyer  * by Jason R. Thorpe.
      9      1.1  bouyer  *
     10      1.1  bouyer  * Redistribution and use in source and binary forms, with or without
     11      1.1  bouyer  * modification, are permitted provided that the following conditions
     12      1.1  bouyer  * are met:
     13      1.1  bouyer  * 1. Redistributions of source code must retain the above copyright
     14      1.1  bouyer  *    notice, this list of conditions and the following disclaimer.
     15      1.1  bouyer  * 2. Redistributions in binary form must reproduce the above copyright
     16      1.1  bouyer  *    notice, this list of conditions and the following disclaimer in the
     17      1.1  bouyer  *    documentation and/or other materials provided with the distribution.
     18      1.1  bouyer  *
     19      1.1  bouyer  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20      1.1  bouyer  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21      1.1  bouyer  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22      1.1  bouyer  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23      1.1  bouyer  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24      1.1  bouyer  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25      1.1  bouyer  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26      1.1  bouyer  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27      1.1  bouyer  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28      1.1  bouyer  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29      1.1  bouyer  * POSSIBILITY OF SUCH DAMAGE.
     30      1.1  bouyer  */
     31      1.1  bouyer 
     32      1.1  bouyer #include <sys/cdefs.h>
     33  1.1.6.3     mrg __KERNEL_RCSID(0, "$NetBSD: bonito_mainbus.c,v 1.1.6.3 2012/03/06 18:26:35 mrg Exp $");
     34      1.1  bouyer 
     35      1.1  bouyer #include <sys/param.h>
     36      1.1  bouyer #include <sys/systm.h>
     37      1.1  bouyer #include <sys/conf.h>
     38      1.1  bouyer #include <sys/reboot.h>
     39      1.1  bouyer #include <sys/device.h>
     40      1.1  bouyer 
     41      1.1  bouyer #include <sys/bus.h>
     42      1.1  bouyer 
     43      1.1  bouyer #include <mips/bonito/bonitoreg.h>
     44      1.1  bouyer 
     45      1.1  bouyer #include <evbmips/loongson/autoconf.h>
     46      1.1  bouyer #include <evbmips/loongson/loongson_bus_defs.h>
     47      1.1  bouyer #include <dev/pci/pcivar.h>
     48      1.1  bouyer 
     49      1.1  bouyer static int	bonito_mainbus_match(device_t, cfdata_t, void *);
     50      1.1  bouyer static void	bonito_mainbus_attach(device_t, device_t, void *);
     51      1.1  bouyer 
     52      1.1  bouyer CFATTACH_DECL_NEW(bonito_mainbus, 0,
     53      1.1  bouyer     bonito_mainbus_match, bonito_mainbus_attach, NULL, NULL);
     54      1.1  bouyer 
     55      1.1  bouyer extern struct cfdriver bonito_cd;
     56      1.1  bouyer 
     57      1.1  bouyer int
     58      1.1  bouyer bonito_mainbus_match(device_t parent, cfdata_t cf, void *aux)
     59      1.1  bouyer {
     60      1.1  bouyer 	struct mainbus_attach_args * const maa = aux;
     61      1.1  bouyer 
     62      1.1  bouyer 	if (strcmp(maa->maa_name, bonito_cd.cd_name) == 0)
     63      1.1  bouyer 		return (1);
     64      1.1  bouyer 
     65      1.1  bouyer 	return (0);
     66      1.1  bouyer }
     67      1.1  bouyer 
     68      1.1  bouyer void
     69      1.1  bouyer bonito_mainbus_attach(device_t parent, device_t self, void *aux)
     70      1.1  bouyer {
     71      1.1  bouyer 	struct pcibus_attach_args pba;
     72      1.1  bouyer 	pcireg_t rev;
     73  1.1.6.3     mrg 	bool compatible;
     74      1.1  bouyer 
     75      1.1  bouyer 	self->dv_private = __UNCONST(&sys_platform->bonito_config);
     76      1.1  bouyer 
     77      1.1  bouyer 	/*
     78  1.1.6.3     mrg 	 * Loongson 2F processors do not use a real Bonito64 chip but
     79  1.1.6.3     mrg 	 * their own derivative, which is no longer 100% compatible.
     80  1.1.6.3     mrg 	 * We need to make sure we never try to access an unimplemented
     81  1.1.6.3     mrg 	 * register...
     82  1.1.6.3     mrg 	 */
     83  1.1.6.3     mrg 	if (loongson_ver >= 0x2f)
     84  1.1.6.3     mrg 		compatible = false;
     85  1.1.6.3     mrg 	else
     86  1.1.6.3     mrg 		compatible = true;
     87  1.1.6.3     mrg 
     88  1.1.6.3     mrg 	/*
     89      1.1  bouyer 	 * There is only one PCI controller on a Loongson chip.
     90      1.1  bouyer 	 */
     91      1.1  bouyer 
     92      1.1  bouyer 	rev = PCI_REVISION(REGVAL(BONITO_PCICLASS));
     93  1.1.6.3     mrg 	if (compatible) {
     94  1.1.6.3     mrg 		aprint_normal(": BONITO Memory and PCI controller,"
     95  1.1.6.3     mrg 		    " %s rev. %d.%d\n", BONITO_REV_FPGA(rev) ? "FPGA" : "ASIC",
     96  1.1.6.3     mrg 		    BONITO_REV_MAJOR(rev), BONITO_REV_MINOR(rev));
     97  1.1.6.3     mrg 	} else {
     98  1.1.6.3     mrg 		aprint_normal(": Memory and PCI-X controller, rev. %d\n",
     99  1.1.6.3     mrg 		    PCI_REVISION(rev));
    100  1.1.6.3     mrg 	}
    101      1.1  bouyer 
    102  1.1.6.3     mrg 	/*
    103  1.1.6.3     mrg 	 * Attach PCI bus.
    104  1.1.6.3     mrg 	 */
    105      1.1  bouyer 
    106      1.1  bouyer 	pba.pba_flags = PCI_FLAGS_IO_OKAY | PCI_FLAGS_MEM_OKAY;
    107      1.1  bouyer 	pba.pba_bus = 0;
    108      1.1  bouyer 	pba.pba_bridgetag = NULL;
    109      1.1  bouyer 
    110      1.1  bouyer 	pba.pba_iot = &bonito_iot;
    111      1.1  bouyer 	pba.pba_memt = &bonito_memt;
    112      1.1  bouyer 	pba.pba_dmat = &bonito_dmat;
    113      1.1  bouyer 	pba.pba_dmat64 = NULL;
    114      1.1  bouyer 	pba.pba_pc = &bonito_pc;
    115      1.1  bouyer 
    116      1.1  bouyer 	(void) config_found_ia(self, "pcibus", &pba, pcibusprint);
    117      1.1  bouyer }
    118