1f7018c21STomi Valkeinen /*
2f7018c21STomi Valkeinen  * Copyright 1998-2008 VIA Technologies, Inc. All Rights Reserved.
3f7018c21STomi Valkeinen  * Copyright 2001-2008 S3 Graphics, Inc. All Rights Reserved.
4f7018c21STomi Valkeinen 
5f7018c21STomi Valkeinen  * This program is free software; you can redistribute it and/or
6f7018c21STomi Valkeinen  * modify it under the terms of the GNU General Public
7f7018c21STomi Valkeinen  * License as published by the Free Software Foundation;
8f7018c21STomi Valkeinen  * either version 2, or (at your option) any later version.
9f7018c21STomi Valkeinen 
10f7018c21STomi Valkeinen  * This program is distributed in the hope that it will be useful,
11f7018c21STomi Valkeinen  * but WITHOUT ANY WARRANTIES OR REPRESENTATIONS; without even
12f7018c21STomi Valkeinen  * the implied warranty of MERCHANTABILITY or FITNESS FOR
13f7018c21STomi Valkeinen  * A PARTICULAR PURPOSE.See the GNU General Public License
14f7018c21STomi Valkeinen  * for more details.
15f7018c21STomi Valkeinen 
16f7018c21STomi Valkeinen  * You should have received a copy of the GNU General Public License
17f7018c21STomi Valkeinen  * along with this program; if not, write to the Free Software
18f7018c21STomi Valkeinen  * Foundation, Inc.,
19f7018c21STomi Valkeinen  * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20f7018c21STomi Valkeinen  */
21f7018c21STomi Valkeinen 
22f7018c21STomi Valkeinen #ifndef _TBLDPASETTING_H_
23f7018c21STomi Valkeinen #define _TBLDPASETTING_H_
24f7018c21STomi Valkeinen #include "global.h"
25f7018c21STomi Valkeinen 
26f7018c21STomi Valkeinen #define DPA_CLK_30M       30000000
27f7018c21STomi Valkeinen #define DPA_CLK_50M       50000000
28f7018c21STomi Valkeinen #define DPA_CLK_70M       70000000
29f7018c21STomi Valkeinen #define DPA_CLK_100M      100000000
30f7018c21STomi Valkeinen #define DPA_CLK_150M      150000000
31f7018c21STomi Valkeinen 
32f7018c21STomi Valkeinen enum DPA_RANGE {
33f7018c21STomi Valkeinen 	DPA_CLK_RANGE_30M,
34f7018c21STomi Valkeinen 	DPA_CLK_RANGE_30_50M,
35f7018c21STomi Valkeinen 	DPA_CLK_RANGE_50_70M,
36f7018c21STomi Valkeinen 	DPA_CLK_RANGE_70_100M,
37f7018c21STomi Valkeinen 	DPA_CLK_RANGE_100_150M,
38f7018c21STomi Valkeinen 	DPA_CLK_RANGE_150M
39f7018c21STomi Valkeinen };
40f7018c21STomi Valkeinen 
41f7018c21STomi Valkeinen extern struct GFX_DPA_SETTING GFX_DPA_SETTING_TBL_VT3324[6];
42f7018c21STomi Valkeinen extern struct GFX_DPA_SETTING GFX_DPA_SETTING_TBL_VT3327[];
43f7018c21STomi Valkeinen extern struct GFX_DPA_SETTING GFX_DPA_SETTING_TBL_VT3364[6];
44f7018c21STomi Valkeinen 
45f7018c21STomi Valkeinen #endif
46