Home | History | Annotate | Line # | Download | only in cavium
mainbus_octeon1p.c revision 1.2.18.2
      1  1.2.18.2  jdolecek /*	$NetBSD: mainbus_octeon1p.c,v 1.2.18.2 2017/12/03 11:36:27 jdolecek Exp $	*/
      2  1.2.18.2  jdolecek 
      3  1.2.18.2  jdolecek /*
      4  1.2.18.2  jdolecek  * Copyright (c) 2007
      5  1.2.18.2  jdolecek  *      Internet Initiative Japan, Inc.  All rights reserved.
      6  1.2.18.2  jdolecek  *
      7  1.2.18.2  jdolecek  * Redistribution and use in source and binary forms, with or without
      8  1.2.18.2  jdolecek  * modification, are permitted provided that the following conditions
      9  1.2.18.2  jdolecek  * are met:
     10  1.2.18.2  jdolecek  * 1. Redistributions of source code must retain the above copyright
     11  1.2.18.2  jdolecek  *    notice, this list of conditions and the following disclaimer.
     12  1.2.18.2  jdolecek  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.2.18.2  jdolecek  *    notice, this list of conditions and the following disclaimer in the
     14  1.2.18.2  jdolecek  *    documentation and/or other materials provided with the distribution.
     15  1.2.18.2  jdolecek  *
     16  1.2.18.2  jdolecek  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     17  1.2.18.2  jdolecek  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     18  1.2.18.2  jdolecek  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     19  1.2.18.2  jdolecek  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     20  1.2.18.2  jdolecek  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     21  1.2.18.2  jdolecek  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     22  1.2.18.2  jdolecek  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     23  1.2.18.2  jdolecek  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     24  1.2.18.2  jdolecek  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     25  1.2.18.2  jdolecek  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     26  1.2.18.2  jdolecek  * SUCH DAMAGE.
     27  1.2.18.2  jdolecek  */
     28  1.2.18.2  jdolecek 
     29  1.2.18.2  jdolecek /*
     30  1.2.18.2  jdolecek  * Octeon I (CN30XX, CN31XX), Plus (CN50XX) mainbus devices
     31  1.2.18.2  jdolecek  */
     32  1.2.18.2  jdolecek 
     33  1.2.18.2  jdolecek #include <sys/cdefs.h>
     34  1.2.18.2  jdolecek __KERNEL_RCSID(0, "$NetBSD: mainbus_octeon1p.c,v 1.2.18.2 2017/12/03 11:36:27 jdolecek Exp $");
     35  1.2.18.2  jdolecek 
     36  1.2.18.2  jdolecek #include <sys/param.h>
     37  1.2.18.2  jdolecek 
     38  1.2.18.2  jdolecek #include <mips/cavium/include/mainbusvar.h>
     39  1.2.18.2  jdolecek 
     40  1.2.18.2  jdolecek const char * const mainbus_devs[] = {
     41  1.2.18.2  jdolecek 	"cpunode",
     42  1.2.18.2  jdolecek #if 1
     43  1.2.18.2  jdolecek /* XXX board-specific, not cpu-specific... */
     44  1.2.18.2  jdolecek 	"flash",
     45  1.2.18.2  jdolecek 	"rtc",
     46  1.2.18.2  jdolecek 	"wdog",
     47  1.2.18.2  jdolecek #endif
     48  1.2.18.2  jdolecek 	"iobus",
     49  1.2.18.2  jdolecek 	"bootbus"
     50  1.2.18.2  jdolecek };
     51  1.2.18.2  jdolecek const size_t mainbus_ndevs = __arraycount(mainbus_devs);
     52