1129198Scognet/*-
2129198Scognet * Copyright (c) 1993 Christopher G. Demetriou
3139735Simp * All rights reserved.
4129198Scognet *
5129198Scognet * Redistribution and use in source and binary forms, with or without
6129198Scognet * modification, are permitted provided that the following conditions
7129198Scognet * are met:
8129198Scognet * 1. Redistributions of source code must retain the above copyright
9129198Scognet *    notice, this list of conditions and the following disclaimer.
10129198Scognet * 2. Redistributions in binary form must reproduce the above copyright
11129198Scognet *    notice, this list of conditions and the following disclaimer in the
12129198Scognet *    documentation and/or other materials provided with the distribution.
13129198Scognet * 3. The name of the author may not be used to endorse or promote products
14129198Scognet *    derived from this software without specific prior written permission
15129198Scognet *
16129198Scognet * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17129198Scognet * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18129198Scognet * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19129198Scognet * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20129198Scognet * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21129198Scognet * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22129198Scognet * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23129198Scognet * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24129198Scognet * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25129198Scognet * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26129198Scognet */
27129198Scognet
28129198Scognet#ifndef _X86_CPUTYPES_H_
29129198Scognet#define	_X86_CPUTYPES_H_
30129198Scognet
31129198Scognet/*
32129198Scognet * Vendors of processor.
33129198Scognet */
34129198Scognet#define	CPU_VENDOR_NSC		0x100b		/* NSC */
35129198Scognet#define	CPU_VENDOR_IBM		0x1014		/* IBM */
36129198Scognet#define	CPU_VENDOR_AMD		0x1022		/* AMD */
37139735Simp#define	CPU_VENDOR_SIS		0x1039		/* SiS */
38129198Scognet#define	CPU_VENDOR_UMC		0x1060		/* UMC */
39129198Scognet#define	CPU_VENDOR_NEXGEN	0x1074		/* Nexgen */
40129198Scognet#define	CPU_VENDOR_CYRIX	0x1078		/* Cyrix */
41129198Scognet#define	CPU_VENDOR_IDT		0x111d		/* Centaur/IDT/VIA */
42129198Scognet#define	CPU_VENDOR_TRANSMETA	0x1279		/* Transmeta */
43129198Scognet#define	CPU_VENDOR_INTEL	0x8086		/* Intel */
44129198Scognet#define	CPU_VENDOR_RISE		0xdead2bad	/* Rise */
45129198Scognet#define	CPU_VENDOR_CENTAUR	CPU_VENDOR_IDT
46129198Scognet#define	CPU_VENDOR_HYGON	0x1d94		/* Hygon */
47129198Scognet
48129198Scognet#endif /* !_X86_CPUTYPES_H_ */
49129198Scognet