1 /* $OpenBSD: archtype.h,v 1.16 2012/10/03 21:44:51 miod 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 _MIPS64_ARCHTYPE_H_ 29 #define _MIPS64_ARCHTYPE_H_ 30 /* 31 * Define architectural identities for the different Mips machines. 32 */ 33 #define ACER_PICA_61 0x0001 /* Acer Labs Pica 61 */ 34 #define MAGNUM 0x0002 /* Mips MAGNUM R4000 */ 35 #define DESKSTATION_RPC44 0x0003 /* Deskstation rPC44 */ 36 #define DESKSTATION_TYNE 0x0004 /* Deskstation Tyne */ 37 #define NKK_AQUARIUS 0x0005 /* NKK R4{67}00 PC */ 38 #define NEC_R94 0x0006 /* NEC Magnum class */ 39 #define SNI_RM200 0x0007 /* Siemens Nixdorf RM200 */ 40 41 #define SGI_IP17 0x0011 /* Crimson */ 42 #define SGI_IP19 0x0012 /* Onyx (!S model Challenge) */ 43 #define SGI_IP20 0x0013 /* Indigo */ 44 #define SGI_IP21 0x0014 /* POWER Challenge, POWER Onyx */ 45 #define SGI_IP22 0x0015 /* Indy, Indigo2, Challenge S */ 46 #define SGI_IP25 0x0016 /* POWER Challenge R10k */ 47 #define SGI_IP26 0x0017 /* POWER Indigo2 R8k */ 48 #define SGI_IP27 0x0018 /* IP27 Origin200/2000 */ 49 #define SGI_IP28 0x0019 /* POWER Indigo2 R10k */ 50 #define SGI_OCTANE 0x001a /* IP30 Octane */ 51 #define SGI_O2 0x001b /* IP32 O2 */ 52 #define SGI_IP35 0x001c /* IP35 Origin3x0/3x00/Fuel/Tezro */ 53 54 #define ALGOR_P4032 0x0021 /* ALGORITHMICS P-4032 */ 55 #define ALGOR_P5064 0x0022 /* ALGORITHMICS P-5064 */ 56 57 #define GALILEO_G9 0x0031 /* Galileo GT-64011 Eval board */ 58 #define GALILEO_EV64240 0x0032 /* Galileo EV64240 Eval board */ 59 #define GALILEO_EV64340 0x0033 /* Galileo EV64340 Eval board */ 60 61 #define MOMENTUM_CP7000 0x0041 /* Momentum Ocelot */ 62 #define MOMENTUM_CP7000G 0x0042 /* Momentum Ocelot-G */ 63 #define MOMENTUM_JAGUAR 0x0043 /* Momentum Jaguar ATX */ 64 65 #define WG4308 0x0052 /* Willowglen 4308 LMD */ 66 #define WG4309 0x0053 /* Willowglen 4309 LMD */ 67 #define WG4409 0x0054 /* Willowglen 4409 LMD */ 68 #define WG8138 0x0055 /* Willowglen 8138 523x VME card */ 69 #define WG8168 0x0056 /* Willowglen 8168 5231 VME card */ 70 #define WG6000 0x0057 /* Willowglen CPU-6000 */ 71 #define WG7000 0x0058 /* Willowglen CPU-7000 */ 72 #define WG8200 0x0059 /* Willowglen CPU-8200 */ 73 #define WG8232 0x005a /* Willowglen CPU-8232 */ 74 75 #define LAGUNA 0x00f1 /* Heurikon Laguna VME board */ 76 77 #endif /* !_MIPS64_ARCHTYPE_H_ */ 78