/* $XFree86$ */
/* $XdotOrg$ */
/*
* Mode initializing code (CRT2 section)
* for SiS 300/305/540/630/730,
* SiS 315/550/[M]650/651/[M]661[FGM]X/[M]74x[GX]/330/[M]76x[GX],
* XGI V3XT/V5/V8, Z7
* (Universal module for Linux kernel framebuffer and X.org/XFree86 4.x)
*
* Copyright (C) 2001-2005 by Thomas Winischhofer, Vienna, Austria
*
* If distributed as part of the Linux kernel, the following license terms
* apply:
*
* * This program is free software; you can redistribute it and/or modify
* * it under the terms of the GNU General Public License as published by
* * the Free Software Foundation; either version 2 of the named License,
* * or any later version.
* *
* * This program is distributed in the hope that it will be useful,
* * but WITHOUT ANY WARRANTY; without even the implied warranty of
* * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* * GNU General Public License for more details.
* *
* * You should have received a copy of the GNU General Public License
* * along with this program; if not, write to the Free Software
* * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA
*
* Otherwise, the following license terms apply:
*
* * Redistribution and use in source and binary forms, with or without
* * modification, are permitted provided that the following conditions
* * are met:
* * 1) Redistributions of source code must retain the above copyright
* * notice, this list of conditions and the following disclaimer.
* * 2) Redistributions in binary form must reproduce the above copyright
* * notice, this list of conditions and the following disclaimer in the
* * documentation and/or other materials provided with the distribution.
* * 3) The name of the author may not be used to endorse or promote products
* * derived from this software without specific prior written permission.
* *
* * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* Author: Thomas Winischhofer <thomas@winischhofer.net>
*
* Formerly based on non-functional code-fragements for 300 series by SiS, Inc.
* Used by permission.
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#if 1
#define SET_EMI /* 302LV/ELV: Set EMI values */
#endif
#if 1
#define SET_PWD /* 301/302LV: Set PWD */
#endif
#define COMPAL_HACK /* Needed for Compal 1400x1050 (EMI) */
#define COMPAQ_HACK /* Needed for Inventec/Compaq 1280x1024 (EMI) */
#define ASUS_HACK /* Needed for Asus A2H 1024x768 (EMI) */
#include "init301.h"
#ifdef SIS300
#include "oem300.h"
#endif
#ifdef SIS315H
#include "oem310.h"
#endif
#define SiS_I2CDELAY 1000
#define SiS_I2CDELAYSHORT 150
static unsigned short SiS_GetBIOSLCDResInfo(struct SiS_Private *SiS_Pr);
#ifdef SIS_LINUX_KERNEL
static void SiS_SetCH70xx(struct SiS_Private *SiS_Pr, unsigned short reg, unsigned char val);
#endif
/*********************************************/
/* HELPER: Lock/Unlock CRT2 */
/*********************************************/
void
SiS_UnLockCRT2(struct SiS_Private *SiS_Pr)
{
if(SiS_Pr->ChipType == XGI_20)
return;
else if(SiS_Pr->ChipType >= SIS_315H)
SiS_SetRegOR(SiS_Pr->SiS_Part1Port,0x2f,0x01);
else
SiS_SetRegOR(SiS_Pr->SiS_Part1Port,0x24,0x01);
}
#ifdef SIS_LINUX_KERNEL
static
#endif
void
SiS_LockCRT2(struct SiS_Private *SiS_Pr)
{
if(SiS_Pr->ChipType == XGI_20)
return;
else if(SiS_Pr->ChipType >= SIS_315H)
SiS_SetRegAND(SiS_Pr->SiS_Part1Port,0x2F,0xFE);
else
SiS_SetRegAND(SiS_Pr->SiS_Part1Port,0x24,0xFE);
}
/*********************************************/
/* HELPER: Write SR11 */
/*********************************************/
static void
SiS_SetRegSR11ANDOR(struct SiS_Private *SiS_Pr, unsigned short DataAND,
unsigned short DataOR)
{
if(SiS_Pr->ChipType >= SIS_661) {
DataAND &= 0x0f;
DataOR &= 0x0f;
}
SiS_SetRegANDOR(SiS_Pr->SiS_P3c4,0x11,DataAND,DataOR);
}
/*********************************************/
/* HELPER: Get Pointer to LCD structure */
/*********************************************/
#ifdef SIS315H
/* This function is used to get vesa timeing table offset in VBIOS*/
static unsigned char *
GetLCDStructPtr661(struct SiS_Private *SiS_Pr)
{
unsigned char *ROMAddr = SiS_Pr->VirtualRomBase;
unsigned char *myptr = NULL;
unsigned short romindex = 0, reg = 0, idx = 0;
/* Use the BIOS tables only for LVDS panels; TMDS is unreliable
* due to the variaty of panels the BIOS doesn't know about.
* Exception: If the BIOS has better knowledge (such as in case
* of machines with a 301C and a panel that does not support DDC)
* use the BIOS data as well.
*/
if((SiS_Pr->SiS_ROMNew) &&
( (SiS_Pr->SiS_VBType & VB_SISLVDS) ||
(!SiS_Pr->PanelSelfDetected) )) {
if(SiS_Pr->ChipType < SIS_661) reg = 0x3c;
else reg = 0x7d;
if(SiS_Pr->ChipType >= SIS_761)
{
idx = (SiS_GetReg(SiS_Pr->SiS_P3d4,reg) & 0x1f) * 25;
romindex = SISGETROMW(0x9a);
if(romindex) {
romindex += idx;
myptr = &ROMAddr[romindex];
}
}
else
{
idx = (SiS_GetReg(SiS_Pr->SiS_P3d4,reg) & 0x1f) * 26;
if(idx < (8*26)) {
myptr = (unsigned char *)&SiS_LCDStruct661[idx];
}
romindex = SISGETROMW(0x100);
if(romindex) {
romindex += idx;
myptr = &ROMAddr[romindex];
}
}
}
return myptr;
}
/* This function is used to get LCDID table offset in VBIOS*/
static unsigned short
GetLCDStructPtr661_2(struct SiS_Private *SiS_Pr)
{
unsigned char *ROMAddr = SiS_Pr->VirtualRomBase;
unsigned short romptr = 0;
/* Use the BIOS tables only for LVDS panels; TMDS is unreliable
* due to the variaty of panels the BIOS doesn't know about.
* Exception: If the BIOS has better knowledge (such as in case
* of machines with a 301C and a panel that does not support DDC)
* use the BIOS data as well.
*/
if(SiS_Pr->ChipType < SIS_761)
{
if((SiS_Pr->SiS_ROMNew) &&
( (SiS_Pr->SiS_VBType & VB_SISLVDS) ||
(!SiS_Pr->PanelSelfDetected) )) {
romptr = SISGETROMW(0x102);
romptr += ((SiS_GetReg(SiS_Pr->SiS_P3d4,0x36) >> 4) * SiS_Pr->SiS661LCD2TableSize);
}
}
else
{
if((SiS_Pr->SiS_ROMNew) &&
( (SiS_Pr->SiS_VBType & VB_SISLVDS) ||
(!SiS_Pr->PanelSelfDetected) )) {
romptr = SISGETROMW(0x9c);
romptr += ((SiS_GetReg(SiS_Pr->SiS_P3d4,0x39) & 0x7C)>>2)*SiS_Pr->SiS661LCD2TableSize;
}
}
return romptr;
}
#endif
/*********************************************/
/* Adjust Rate for CRT2 */
/*********************************************/
static BOOLEAN
SiS_AdjustCRT2Rate(struct SiS_Private *SiS_Pr, unsigned short ModeNo, unsigned short ModeIdIndex,
unsigned short RRTI, unsigned short *i)
{
unsigned short checkmask=0, modeid, infoflag;
modeid = SiS_Pr->SiS_RefIndex[RRTI + (*i)].ModeID;
if(SiS_Pr->SiS_VBType & VB_SISVB) {
if(SiS_Pr->SiS_VBInfo & SetCRT2ToRAMDAC) {
checkmask |= SupportRAMDAC2;
if(SiS_Pr->ChipType >= SIS_315H) {
没有合适的资源?快使用搜索试试~ 我知道了~
sis672 linux 显卡驱动
5星 · 超过95%的资源 需积分: 10 87 下载量 127 浏览量
2011-08-10
14:05:04
上传
评论 3
收藏 6.29MB GZ 举报
温馨提示
sis672 linux显卡驱动,一个老外写的sislinux驱动,里面有两个错误,我修改了,编译通过,可以正常使用。里面包含源码和编译过程中的中间文件 可以直接使用编译好了的sis_drv.so sis_drv.la
资源推荐
资源详情
资源评论
收起资源包目录
sis672 linux 显卡驱动 (204个子文件)
output.0 416KB
libSiSXvMC.so.1.0.0 126KB
traces.0 86KB
output.1 415KB
libSiSXvMC.so.1 126KB
traces.1 37KB
configure.ac 4KB
Makefile.am 3KB
Makefile.am 2KB
Makefile.am 1KB
Makefile.am 235B
sis_video.c.bac 150KB
sis_setup.c.bac 26KB
Package-Default.bash 1KB
init301.c 353KB
sis_driver.c 329KB
sis_video.c 155KB
init.c 126KB
SiSXvMC.c 115KB
sis_vb.c 95KB
sis_opt.c 89KB
sis_mergedfb.c 84KB
sis_utility.c 72KB
sis_vga.c 64KB
sis_dac.c 62KB
initextx.c 55KB
sis6326_video.c 48KB
sis310_accel.c 48KB
sis300_accel.c 36KB
sis_cursor.c 35KB
sis_memcpy.c 32KB
sis_setup.c 29KB
sis_dri.c 27KB
sis_accel.c 25KB
sis_3daccel.c 21KB
sis_hwmc.c 16KB
sis_dga.c 14KB
sis_shadow.c 12KB
sis_dri.c-mainXorg 27KB
sis_dri.c-modded 29KB
ChangeLog 2KB
changelog 405B
compat 2B
configure 413KB
control 1KB
copying 458B
copyright 3KB
depcomp 18KB
config.guess 45KB
sis.h 61KB
310vtbl.h 60KB
init.h 60KB
sis300_accel.h 47KB
300vtbl.h 43KB
sis310_accel.h 35KB
sis_driver.h 31KB
sis_regs.h 27KB
sis_vb.h 27KB
SiSXvMC.h 26KB
initdef.h 26KB
init301.h 23KB
sis_video.h 20KB
oem300.h 20KB
sis_3daccel.h 18KB
initextx.h 18KB
vstruct.h 18KB
sis_cursor.h 13KB
oem310.h 12KB
sis_accel.h 7KB
osdef.h 5KB
sispcirename.h 5KB
sis_dac.h 5KB
sis_dri.h 4KB
vgatypes.h 4KB
sis_videostr.h 4KB
sis_config.h 3KB
config.h 2KB
sis_common.h 2KB
sis_hwmc.h 6B
sis_dri.h-orig-modded 4KB
sis671.ids 81B
Imakefile 6KB
Makefile.in 23KB
Makefile.in 22KB
Makefile.in 17KB
Makefile.in 14KB
config.h.in 2KB
xorg-driver-sis671.install 84B
install-sh 13KB
sis671_drv.la 956B
sis671_drv.la 956B
sis671_drv.la 956B
libSiSXvMC.la 800B
libSiSXvMC.la 800B
sis671_drv.lai 957B
libSiSXvMC.lai 801B
libtool 252KB
configure.lineno 713KB
xorg-driver-sis671.links 79B
libSiSXvMC_la-SiSXvMC.lo 333B
共 204 条
- 1
- 2
- 3
batoom
- 粉丝: 31
- 资源: 16
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 计算机毕业设计:python+爬虫+cnki网站爬
- nyakumi-lewd-snack-3-4k_720p.7z.002
- 现在微信小程序能用的mqtt.min.js
- 基于MPC的非线性摆锤系统轨迹跟踪控制matlab仿真,包括程序中文注释,仿真操作步骤
- 基于MATLAB的ITS信道模型数值模拟仿真,包括程序中文注释,仿真操作步骤
- 基于Java、JavaScript、CSS的电子产品商城设计与实现源码
- 基于Vue 2的zjc项目设计源码,适用于赶项目需求
- 基于跨语言统一的C++头文件设计源码开发方案
- 基于MindSpore 1.3的T-GCNTemporal Graph Convolutional Network设计源码
- 基于Java的贝塞尔曲线绘制酷炫轮廓背景设计源码
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功
- 1
- 2
- 3
前往页