ediddevs revision 1.1.14.3 1 1.1.14.3 yamt $NetBSD: ediddevs,v 1.1.14.3 2007/09/03 14:39:29 yamt Exp $
2 1.1.14.2 yamt
3 1.1.14.2 yamt /*-
4 1.1.14.2 yamt * Copyright (c) 2006 Itronix Inc.
5 1.1.14.2 yamt * All rights reserved.
6 1.1.14.2 yamt *
7 1.1.14.2 yamt * Written by Garrett D'Amore for Itronix Inc.
8 1.1.14.2 yamt *
9 1.1.14.2 yamt * Redistribution and use in source and binary forms, with or without
10 1.1.14.2 yamt * modification, are permitted provided that the following conditions
11 1.1.14.2 yamt * are met:
12 1.1.14.2 yamt * 1. Redistributions of source code must retain the above copyright
13 1.1.14.2 yamt * notice, this list of conditions and the following disclaimer.
14 1.1.14.2 yamt * 2. Redistributions in binary form must reproduce the above copyright
15 1.1.14.2 yamt * notice, this list of conditions and the following disclaimer in the
16 1.1.14.2 yamt * documentation and/or other materials provided with the distribution.
17 1.1.14.2 yamt * 3. The name of Itronix Inc. may not be used to endorse
18 1.1.14.2 yamt * or promote products derived from this software without specific
19 1.1.14.2 yamt * prior written permission.
20 1.1.14.2 yamt *
21 1.1.14.2 yamt * THIS SOFTWARE IS PROVIDED BY ITRONIX INC. ``AS IS'' AND ANY EXPRESS
22 1.1.14.2 yamt * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
23 1.1.14.2 yamt * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 1.1.14.2 yamt * ARE DISCLAIMED. IN NO EVENT SHALL ITRONIX INC. BE LIABLE FOR ANY
25 1.1.14.2 yamt * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 1.1.14.2 yamt * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
27 1.1.14.2 yamt * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 1.1.14.2 yamt * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
29 1.1.14.2 yamt * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
30 1.1.14.2 yamt * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
31 1.1.14.2 yamt * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 1.1.14.2 yamt */
33 1.1.14.2 yamt
34 1.1.14.2 yamt /*
35 1.1.14.2 yamt * List of known EDID monitor vendors
36 1.1.14.2 yamt *
37 1.1.14.2 yamt * These are standard PNP ids, managed (apparently) by Microsoft.
38 1.1.14.2 yamt * It is likely that this list is grossly incomplete.
39 1.1.14.2 yamt */
40 1.1.14.2 yamt vendor AAC AcerView
41 1.1.14.2 yamt vendor AOC AOC
42 1.1.14.2 yamt vendor APP Apple Computer
43 1.1.14.2 yamt vendor AST AST Research
44 1.1.14.2 yamt vendor CPL Compal
45 1.1.14.2 yamt vendor CPQ Compaq
46 1.1.14.2 yamt vendor CTX CTX
47 1.1.14.2 yamt vendor DEC DEC
48 1.1.14.2 yamt vendor DEL Dell
49 1.1.14.2 yamt vendor DPC Delta
50 1.1.14.2 yamt vendor DWE Daewoo
51 1.1.14.2 yamt vendor EIZ EIZO
52 1.1.14.2 yamt vendor ELS ELSA
53 1.1.14.2 yamt vendor EPI Envision
54 1.1.14.2 yamt vendor FCM Funai
55 1.1.14.2 yamt vendor FUJ Fujitsu
56 1.1.14.2 yamt vendor GSM LG Electronics
57 1.1.14.2 yamt vendor GWY Gateway 2000
58 1.1.14.2 yamt vendor HEI Hyundai
59 1.1.14.2 yamt vendor HIT Hitachi
60 1.1.14.2 yamt vendor HSL Hansol
61 1.1.14.2 yamt vendor HTC Hitachi/Nissei
62 1.1.14.2 yamt vendor HWP HP
63 1.1.14.2 yamt vendor IBM IBM
64 1.1.14.2 yamt vendor ICL Fujitsu ICL
65 1.1.14.2 yamt vendor IVM Iiyama
66 1.1.14.2 yamt vendor KDS Korea Data Systems
67 1.1.14.2 yamt vendor MEI Panasonic
68 1.1.14.2 yamt vendor MEL Mitsubishi Electronics
69 1.1.14.2 yamt vendor NAN Nanao
70 1.1.14.2 yamt vendor NEC NEC
71 1.1.14.2 yamt vendor NOK Nokia Data
72 1.1.14.2 yamt vendor PHL Philips
73 1.1.14.3 yamt vendor REL Relisys
74 1.1.14.2 yamt vendor SAM Samsung
75 1.1.14.2 yamt vendor SGI SGI
76 1.1.14.2 yamt vendor SNY Sony
77 1.1.14.2 yamt vendor SRC Shamrock
78 1.1.14.2 yamt vendor SUN Sun Microsystems
79 1.1.14.2 yamt vendor TAT Tatung
80 1.1.14.2 yamt vendor TOS Toshiba
81 1.1.14.2 yamt vendor TSB Toshiba
82 1.1.14.2 yamt vendor VSC ViewSonic
83 1.1.14.2 yamt vendor ZCM Zenith
84 1.1.14.2 yamt
85 1.1.14.2 yamt /*
86 1.1.14.2 yamt * List of known products, grouped and sorted by vendor.
87 1.1.14.2 yamt *
88 1.1.14.2 yamt * EDID version 1.3 requires that monitors expose the monitor name with
89 1.1.14.2 yamt * the ASCII descriptor type 0xFC, so for monitors using that block, this
90 1.1.14.2 yamt * information is redundant, and there is not point in listing them here,
91 1.1.14.2 yamt * unless it is desired to have a symbolic macro to detect the monitor in
92 1.1.14.2 yamt * special handling code or somesuch.
93 1.1.14.2 yamt */
94 1.1.14.2 yamt
95 1.1.14.2 yamt /* Dell - this exists for now as a sample. I don't have one of these. */
96 1.1.14.2 yamt product DEL ULTRASCAN14XE_REVA 0x139A Ultrascan 14XE
97 1.1.14.2 yamt product DEL ULTRASCAN14XE_REVB 0x139B Ultrascan 14XE
98 1.1.14.2 yamt
99 1.1.14.2 yamt /* ViewSonic */
100 1.1.14.2 yamt product VSC 17GS 0x0c00 17GS
101 1.1.14.2 yamt product VSC 17PS 0x0c0f 17PS
102