• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/drivers/video/via/
1/*
2 * Copyright 1998-2008 VIA Technologies, Inc. All Rights Reserved.
3 * Copyright 2001-2008 S3 Graphics, Inc. All Rights Reserved.
4
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public
7 * License as published by the Free Software Foundation;
8 * either version 2, or (at your option) any later version.
9
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTIES OR REPRESENTATIONS; without even
12 * the implied warranty of MERCHANTABILITY or FITNESS FOR
13 * A PARTICULAR PURPOSE.See the GNU General Public License
14 * for more details.
15
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc.,
19 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 */
21
22#ifndef __GLOBAL_H__
23#define __GLOBAL_H__
24
25#include <linux/fb.h>
26#include <linux/delay.h>
27#include <linux/ioport.h>
28#include <linux/pci.h>
29#include <linux/io.h>
30#include <linux/uaccess.h>
31#include <linux/init.h>
32#include <linux/proc_fs.h>
33#include <linux/console.h>
34#include <linux/timer.h>
35
36#include "debug.h"
37
38#include "viafbdev.h"
39#include "chip.h"
40#include "accel.h"
41#include "share.h"
42#include "dvi.h"
43#include "viamode.h"
44#include "hw.h"
45
46#include "lcd.h"
47#include "ioctl.h"
48#include "via_utility.h"
49#include "vt1636.h"
50#include "tblDPASetting.h"
51#include "tbl1636.h"
52
53/* External struct*/
54
55extern int viafb_platform_epia_dvi;
56extern int viafb_device_lcd_dualedge;
57extern int viafb_bus_width;
58extern int viafb_display_hardware_layout;
59extern struct offset offset_reg;
60extern struct viafb_par *viaparinfo;
61extern struct viafb_par *viaparinfo1;
62extern struct fb_info *viafbinfo;
63extern struct fb_info *viafbinfo1;
64extern int viafb_DeviceStatus;
65extern int viafb_refresh;
66extern int viafb_refresh1;
67extern int viafb_lcd_dsp_method;
68extern int viafb_lcd_mode;
69
70extern int viafb_CRT_ON;
71extern int viafb_hotplug_Xres;
72extern int viafb_hotplug_Yres;
73extern int viafb_hotplug_bpp;
74extern int viafb_hotplug_refresh;
75extern int viafb_primary_dev;
76
77extern unsigned int viafb_second_xres;
78extern unsigned int viafb_second_yres;
79extern int viafb_lcd_panel_id;
80
81#endif /* __GLOBAL_H__ */
82