]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/video/sis/vgatypes.h
[PATCH] drivers/video/sis/vgatypes.h: removal of old code
[mirror_ubuntu-artful-kernel.git] / drivers / video / sis / vgatypes.h
CommitLineData
1da177e4
LT
1/* $XFree86$ */
2/* $XdotOrg$ */
3/*
4 * General type definitions for universal mode switching modules
5 *
544393fe 6 * Copyright (C) 2001-2005 by Thomas Winischhofer, Vienna, Austria
1da177e4
LT
7 *
8 * If distributed as part of the Linux kernel, the following license terms
9 * apply:
10 *
11 * * This program is free software; you can redistribute it and/or modify
12 * * it under the terms of the GNU General Public License as published by
13 * * the Free Software Foundation; either version 2 of the named License,
14 * * or any later version.
15 * *
16 * * This program is distributed in the hope that it will be useful,
17 * * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * * GNU General Public License for more details.
20 * *
21 * * You should have received a copy of the GNU General Public License
22 * * along with this program; if not, write to the Free Software
23 * * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA
24 *
25 * Otherwise, the following license terms apply:
26 *
27 * * Redistribution and use in source and binary forms, with or without
28 * * modification, are permitted provided that the following conditions
29 * * are met:
30 * * 1) Redistributions of source code must retain the above copyright
31 * * notice, this list of conditions and the following disclaimer.
32 * * 2) Redistributions in binary form must reproduce the above copyright
33 * * notice, this list of conditions and the following disclaimer in the
34 * * documentation and/or other materials provided with the distribution.
35 * * 3) The name of the author may not be used to endorse or promote products
36 * * derived from this software without specific prior written permission.
37 * *
38 * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
39 * * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
40 * * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
41 * * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
42 * * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
43 * * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
44 * * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
45 * * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
46 * * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
47 * * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
48 *
49 * Author: Thomas Winischhofer <thomas@winischhofer.net>
50 *
51 */
52
544393fe
TW
53#ifndef _VGATYPES_H_
54#define _VGATYPES_H_
1da177e4 55
544393fe 56#ifdef SIS_LINUX_KERNEL
1da177e4
LT
57#include <linux/version.h>
58#endif
59
60#ifndef FALSE
61#define FALSE 0
62#endif
63
64#ifndef TRUE
65#define TRUE 1
66#endif
67
1da177e4 68#ifndef BOOLEAN
544393fe 69typedef unsigned int BOOLEAN;
1da177e4
LT
70#endif
71
72#define SISIOMEMTYPE
73
544393fe 74#ifdef SIS_LINUX_KERNEL
1da177e4 75typedef unsigned long SISIOADDRESS;
1da177e4
LT
76#include <linux/types.h> /* Need __iomem */
77#undef SISIOMEMTYPE
78#define SISIOMEMTYPE __iomem
79#endif
1da177e4 80
544393fe 81#ifdef SIS_XORG_XF86
1da177e4
LT
82#if XF86_VERSION_CURRENT < XF86_VERSION_NUMERIC(4,2,0,0,0)
83typedef unsigned long IOADDRESS;
84typedef unsigned long SISIOADDRESS;
85#else
86typedef IOADDRESS SISIOADDRESS;
87#endif
88#endif
89
544393fe 90typedef enum _SIS_CHIP_TYPE {
1da177e4
LT
91 SIS_VGALegacy = 0,
92 SIS_530,
93 SIS_OLD,
94 SIS_300,
95 SIS_630,
96 SIS_730,
97 SIS_540,
98 SIS_315H, /* SiS 310 */
99 SIS_315,
544393fe 100 SIS_315PRO, /* SiS 325 */
1da177e4
LT
101 SIS_550,
102 SIS_650,
103 SIS_740,
104 SIS_330,
105 SIS_661,
106 SIS_741,
544393fe
TW
107 SIS_670,
108 SIS_660 = 35,
1da177e4
LT
109 SIS_760,
110 SIS_761,
544393fe
TW
111 SIS_762,
112 SIS_770,
113 SIS_340 = 55,
114 SIS_341,
115 SIS_342,
116 XGI_20 = 75,
117 XGI_40,
1da177e4 118 MAX_SIS_CHIP
544393fe 119} SIS_CHIP_TYPE;
1da177e4 120
1da177e4
LT
121
122#endif
123