[BACK]Return to archtype.h CVS log [TXT][DIR] Up to [local] / sys / arch / mips64 / include

Annotation of sys/arch/mips64/include/archtype.h, Revision 1.1.1.1

1.1       nbrk        1: /*     $OpenBSD: archtype.h,v 1.5 2006/07/29 13:21:03 jasper Exp $     */
                      2: /*
                      3:  * Copyright (c) 1997-2004 Opsycon AB, Sweden (www.opsycon.se)
                      4:  *
                      5:  * Redistribution and use in source and binary forms, with or without
                      6:  * modification, are permitted provided that the following conditions
                      7:  * are met:
                      8:  * 1. Redistributions of source code must retain the above copyright
                      9:  *    notice, this list of conditions and the following disclaimer.
                     10:  * 2. Redistributions in binary form must reproduce the above copyright
                     11:  *    notice, this list of conditions and the following disclaimer in the
                     12:  *    documentation and/or other materials provided with the distribution.
                     13:  *
                     14:  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
                     15:  * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
                     16:  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
                     17:  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
                     18:  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
                     19:  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
                     20:  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
                     21:  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
                     22:  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
                     23:  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
                     24:  * SUCH DAMAGE.
                     25:  *
                     26:  */
                     27:
                     28: #ifndef _MIPS_ARCHTYPE_H_
                     29: #define _MIPS_ARCHTYPE_H_
                     30: /*
                     31:  * Define architectural identities for the different Mips machines.
                     32:  */
                     33: #define        ARC_CLASS               0x0000  /* Arch class ARC */
                     34: #define        ACER_PICA_61            0x0001  /* Acer Labs Pica 61 */
                     35: #define        MAGNUM                  0x0002  /* Mips MAGNUM R4000 */
                     36: #define        DESKSTATION_RPC44       0x0003  /* Deskstation xxx */
                     37: #define        DESKSTATION_TYNE        0x0004  /* Deskstation xxx */
                     38: #define        NKK_AQUARIUS            0x0005  /* NKK R4{67}00 PC */
                     39: #define NEC_R94                        0x0006  /* NEC Magnum class */
                     40: #define        SNI_RM200               0x0007  /* Siemens Nixdorf RM200 */
                     41:
                     42: #define        SGI_CLASS               0x0010  /* Silicon Graphics Class */
                     43: #define        SGI_CRIMSON             0x0011  /* Crimson */
                     44: #define        SGI_ONYX                0x0012  /* Onyx (!S model Challenge) */
                     45: #define        SGI_INDIGO              0x0013  /* Indigo */
                     46: #define        SGI_POWER               0x0014  /* POWER Challenge, POWER Onyx */
                     47: #define        SGI_INDY                0x0015  /* Indy, Indigo2, Challenge S */
                     48: #define        SGI_POWER10             0x0016  /* POWER Challenge R10k */
                     49: #define        SGI_POWERI              0x0017  /* POWER Indigo2 */
                     50: #define        SGI_O2                  0x0018  /* IP32 O2/Moosehead */
                     51: #define        SGI_O200                0x0019  /* IP27 Origin200/Speedo */
                     52: #define        SGI_O2000               0x001a  /* IP27 Origin2000/Lego */
                     53: #define        SGI_OCTANE              0x001b  /* IP30 Octane/Speedracer */
                     54:
                     55: #define        ALGOR_CLASS             0x0020  /* Algorithmics Class */
                     56: #define        ALGOR_P4032             0x0021  /* ALGORITHMICS P-4032 */
                     57: #define        ALGOR_P5064             0x0022  /* ALGORITHMICS P-5064 */
                     58:
                     59: #define        GALILEO_CLASS           0x0030  /* Galileo PCI based Class */
                     60: #define        GALILEO_G9              0x0031  /* Galileo GT-64011 Eval board */
                     61: #define GALILEO_EV64240                0x0032  /* Galileo EV64240 Eval board */
                     62: #define GALILEO_EV64340                0x0033  /* Galileo EV64340 Eval board */
                     63:
                     64: #define        MOMENTUM_CLASS          0x0040  /* Momentum Inc Class */
                     65: #define        MOMENTUM_CP7000         0x0041  /* Momentum Ocelot */
                     66: #define        MOMENTUM_CP7000G        0x0042  /* Momentum Ocelot-G */
                     67: #define        MOMENTUM_JAGUAR         0x0043  /* Momentum Jaguar ATX */
                     68:
                     69: #define        WG_CLASS                0x0050  /* Willowglen class */
                     70: #define        WG4308                  0x0052  /* Willowglen 4308 LMD */
                     71: #define        WG4309                  0x0053  /* Willowglen 4309 LMD */
                     72: #define        WG4409                  0x0054  /* Willowglen 4409 LMD */
                     73: #define        WG8138                  0x0055  /* Willowglen 8138 523x VME card */
                     74: #define        WG8168                  0x0056  /* Willowglen 8168 5231 VME card */
                     75: #define        WG6000                  0x0057  /* Willowglen CPU-6000 */
                     76: #define        WG7000                  0x0058  /* Willowglen CPU-7000 */
                     77: #define        WG8200                  0x0059  /* Willowglen CPU-8200 */
                     78: #define        WG8232                  0x005a  /* Willowglen CPU-8232 */
                     79:
                     80: #define        MISC_CLASS              0x00F0  /* Misc machines... */
                     81: #define        LAGUNA                  0x00F1  /* Heurikon Laguna VME board */
                     82:
                     83: #define        ARCHCLASS(n)    ((n) & 0xf0)
                     84:
                     85: #endif /* !_MIPS_ARCHTYPE_H_ */

CVSweb