2007-06-26 14:10:30 -06:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Copyright (C) 2003-2006 by XGI Technology, Taiwan.
|
|
|
|
* *
|
|
|
|
* All Rights Reserved. *
|
|
|
|
* *
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
* a copy of this software and associated documentation files (the
|
|
|
|
* "Software"), to deal in the Software without restriction, including
|
|
|
|
* without limitation on the rights to use, copy, modify, merge,
|
|
|
|
* publish, distribute, sublicense, and/or sell copies of the Software,
|
|
|
|
* and to permit persons to whom the Software is furnished to do so,
|
|
|
|
* subject to the following conditions:
|
|
|
|
* *
|
|
|
|
* The above copyright notice and this permission notice (including the
|
|
|
|
* next paragraph) shall be included in all copies or substantial
|
|
|
|
* portions of the Software.
|
|
|
|
* *
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
* NON-INFRINGEMENT. IN NO EVENT SHALL XGI AND/OR
|
|
|
|
* ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
|
|
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
* DEALINGS IN THE SOFTWARE.
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#include "xgi_types.h"
|
|
|
|
#include "xgi_linux.h"
|
|
|
|
#include "xgi_drv.h"
|
|
|
|
#include "xgi_regs.h"
|
|
|
|
#include "xgi_pcie.h"
|
|
|
|
|
2007-06-29 16:27:38 -06:00
|
|
|
void xgi_get_device_info(struct xgi_info * info, struct xgi_chip_info * req)
|
2007-06-26 14:10:30 -06:00
|
|
|
{
|
|
|
|
req->device_id = info->device_id;
|
|
|
|
req->device_name[0] = 'x';
|
|
|
|
req->device_name[1] = 'g';
|
|
|
|
req->device_name[2] = '4';
|
|
|
|
req->device_name[3] = '7';
|
|
|
|
req->vendor_id = info->vendor_id;
|
|
|
|
req->curr_display_mode = 0;
|
|
|
|
req->fb_size = info->fb.size;
|
|
|
|
req->sarea_bus_addr = info->sarea_info.bus_addr;
|
|
|
|
req->sarea_size = info->sarea_info.size;
|
|
|
|
}
|
|
|
|
|
2007-06-29 16:27:38 -06:00
|
|
|
void xgi_get_mmio_info(struct xgi_info * info, struct xgi_mmio_info * req)
|
2007-06-26 14:10:30 -06:00
|
|
|
{
|
|
|
|
req->mmioBase = (void *)info->mmio.base;
|
|
|
|
req->size = info->mmio.size;
|
|
|
|
}
|
|
|
|
|
2007-06-29 16:27:38 -06:00
|
|
|
void xgi_put_screen_info(struct xgi_info * info, struct xgi_screen_info * req)
|
2007-06-26 14:10:30 -06:00
|
|
|
{
|
|
|
|
info->scrn_info.scrn_start = req->scrn_start;
|
|
|
|
info->scrn_info.scrn_xres = req->scrn_xres;
|
|
|
|
info->scrn_info.scrn_yres = req->scrn_yres;
|
|
|
|
info->scrn_info.scrn_bpp = req->scrn_bpp;
|
|
|
|
info->scrn_info.scrn_pitch = req->scrn_pitch;
|
|
|
|
|
|
|
|
XGI_INFO("info->scrn_info.scrn_start: 0x%lx"
|
|
|
|
"info->scrn_info.scrn_xres: 0x%lx"
|
|
|
|
"info->scrn_info.scrn_yres: 0x%lx"
|
|
|
|
"info->scrn_info.scrn_bpp: 0x%lx"
|
|
|
|
"info->scrn_info.scrn_pitch: 0x%lx\n",
|
|
|
|
info->scrn_info.scrn_start,
|
|
|
|
info->scrn_info.scrn_xres,
|
|
|
|
info->scrn_info.scrn_yres,
|
|
|
|
info->scrn_info.scrn_bpp, info->scrn_info.scrn_pitch);
|
|
|
|
}
|
|
|
|
|
2007-06-29 16:27:38 -06:00
|
|
|
void xgi_get_screen_info(struct xgi_info * info, struct xgi_screen_info * req)
|
2007-06-26 14:10:30 -06:00
|
|
|
{
|
|
|
|
req->scrn_start = info->scrn_info.scrn_start;
|
|
|
|
req->scrn_xres = info->scrn_info.scrn_xres;
|
|
|
|
req->scrn_yres = info->scrn_info.scrn_yres;
|
|
|
|
req->scrn_bpp = info->scrn_info.scrn_bpp;
|
|
|
|
req->scrn_pitch = info->scrn_info.scrn_pitch;
|
|
|
|
|
|
|
|
XGI_INFO("req->scrn_start: 0x%lx"
|
|
|
|
"req->scrn_xres: 0x%lx"
|
|
|
|
"req->scrn_yres: 0x%lx"
|
|
|
|
"req->scrn_bpp: 0x%lx"
|
|
|
|
"req->scrn_pitch: 0x%lx\n",
|
|
|
|
req->scrn_start,
|
|
|
|
req->scrn_xres,
|
|
|
|
req->scrn_yres, req->scrn_bpp, req->scrn_pitch);
|
|
|
|
}
|
|
|
|
|
2007-06-29 16:27:38 -06:00
|
|
|
void xgi_ge_reset(struct xgi_info * info)
|
2007-06-26 14:10:30 -06:00
|
|
|
{
|
|
|
|
xgi_disable_ge(info);
|
|
|
|
xgi_enable_ge(info);
|
|
|
|
}
|
|
|
|
|
2007-06-29 16:27:38 -06:00
|
|
|
void xgi_sarea_info(struct xgi_info * info, struct xgi_sarea_info * req)
|
2007-06-26 14:10:30 -06:00
|
|
|
{
|
|
|
|
info->sarea_info.bus_addr = req->bus_addr;
|
|
|
|
info->sarea_info.size = req->size;
|
|
|
|
XGI_INFO("info->sarea_info.bus_addr: 0x%lx"
|
|
|
|
"info->sarea_info.size: 0x%lx\n",
|
|
|
|
info->sarea_info.bus_addr, info->sarea_info.size);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* irq functions
|
|
|
|
*/
|
|
|
|
#define STALL_INTERRUPT_RESET_THRESHOLD 0xffff
|
|
|
|
|
2007-06-29 22:48:31 -06:00
|
|
|
static unsigned int s_invalid_begin = 0;
|
2007-06-26 14:10:30 -06:00
|
|
|
|
2007-06-29 17:37:01 -06:00
|
|
|
bool xgi_ge_irq_handler(struct xgi_info * info)
|
2007-06-26 14:10:30 -06:00
|
|
|
{
|
2007-06-29 17:41:32 -06:00
|
|
|
volatile u8 *mmio_vbase = info->mmio.vbase;
|
2007-06-26 14:10:30 -06:00
|
|
|
volatile U32 *ge_3d_status = (volatile U32 *)(mmio_vbase + 0x2800);
|
|
|
|
U32 int_status = ge_3d_status[4]; // interrupt status
|
|
|
|
U32 auto_reset_count = 0;
|
2007-06-29 17:37:01 -06:00
|
|
|
bool is_support_auto_reset = FALSE;
|
2007-06-26 14:10:30 -06:00
|
|
|
|
|
|
|
// Check GE on/off
|
|
|
|
if (0 == (0xffffc0f0 & int_status)) {
|
|
|
|
U32 old_ge_status = ge_3d_status[0x00];
|
|
|
|
U32 old_pcie_cmd_fetch_Addr = ge_3d_status[0x0a];
|
|
|
|
if (0 != (0x1000 & int_status)) {
|
|
|
|
// We got GE stall interrupt.
|
|
|
|
ge_3d_status[0x04] = int_status | 0x04000000;
|
|
|
|
|
2007-07-05 18:18:12 -06:00
|
|
|
if (is_support_auto_reset) {
|
2007-06-29 17:37:01 -06:00
|
|
|
bool is_wrong_signal = FALSE;
|
2007-07-05 18:18:12 -06:00
|
|
|
static cycles_t last_tick;
|
|
|
|
static unsigned continue_int_count = 0;
|
2007-06-26 14:10:30 -06:00
|
|
|
// OE II is busy.
|
|
|
|
while (old_ge_status & 0x001c0000) {
|
2007-06-29 17:41:32 -06:00
|
|
|
u16 check;
|
2007-06-26 14:10:30 -06:00
|
|
|
// Check Read back status
|
|
|
|
*(mmio_vbase + 0x235c) = 0x80;
|
|
|
|
check =
|
2007-06-29 17:41:32 -06:00
|
|
|
*((volatile u16 *)(mmio_vbase +
|
2007-06-26 14:10:30 -06:00
|
|
|
0x2360));
|
|
|
|
if ((check & 0x3f) !=
|
|
|
|
((check & 0x3f00) >> 8)) {
|
|
|
|
is_wrong_signal = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// Check RO channel
|
|
|
|
*(mmio_vbase + 0x235c) = 0x83;
|
|
|
|
check =
|
2007-06-29 17:41:32 -06:00
|
|
|
*((volatile u16 *)(mmio_vbase +
|
2007-06-26 14:10:30 -06:00
|
|
|
0x2360));
|
|
|
|
if ((check & 0x0f) !=
|
|
|
|
((check & 0xf0) >> 4)) {
|
|
|
|
is_wrong_signal = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// Check RW channel
|
|
|
|
*(mmio_vbase + 0x235c) = 0x88;
|
|
|
|
check =
|
2007-06-29 17:41:32 -06:00
|
|
|
*((volatile u16 *)(mmio_vbase +
|
2007-06-26 14:10:30 -06:00
|
|
|
0x2360));
|
|
|
|
if ((check & 0x0f) !=
|
|
|
|
((check & 0xf0) >> 4)) {
|
|
|
|
is_wrong_signal = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// Check RO channel outstanding
|
|
|
|
*(mmio_vbase + 0x235c) = 0x8f;
|
|
|
|
check =
|
2007-06-29 17:41:32 -06:00
|
|
|
*((volatile u16 *)(mmio_vbase +
|
2007-06-26 14:10:30 -06:00
|
|
|
0x2360));
|
|
|
|
if (0 != (check & 0x3ff)) {
|
|
|
|
is_wrong_signal = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// Check RW channel outstanding
|
|
|
|
*(mmio_vbase + 0x235c) = 0x90;
|
|
|
|
check =
|
2007-06-29 17:41:32 -06:00
|
|
|
*((volatile u16 *)(mmio_vbase +
|
2007-06-26 14:10:30 -06:00
|
|
|
0x2360));
|
|
|
|
if (0 != (check & 0x3ff)) {
|
|
|
|
is_wrong_signal = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// No pending PCIE request. GE stall.
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_wrong_signal) {
|
|
|
|
// Nothing but skip.
|
2007-07-05 18:18:12 -06:00
|
|
|
} else if (0 == continue_int_count++) {
|
|
|
|
last_tick = get_cycles();
|
2007-06-26 14:10:30 -06:00
|
|
|
} else {
|
2007-07-05 18:18:12 -06:00
|
|
|
const cycles_t new_tick = get_cycles();
|
|
|
|
if ((new_tick - last_tick) >
|
2007-06-26 14:10:30 -06:00
|
|
|
STALL_INTERRUPT_RESET_THRESHOLD) {
|
2007-07-05 18:18:12 -06:00
|
|
|
continue_int_count = 0;
|
|
|
|
} else if (continue_int_count >= 3) {
|
2007-06-26 14:39:01 -06:00
|
|
|
int time_out;
|
|
|
|
|
2007-07-05 18:18:12 -06:00
|
|
|
continue_int_count = 0;
|
2007-06-26 14:10:30 -06:00
|
|
|
|
|
|
|
// GE Hung up, need reset.
|
|
|
|
XGI_INFO("Reset GE!\n");
|
|
|
|
|
|
|
|
*(mmio_vbase + 0xb057) = 8;
|
2007-06-26 14:39:01 -06:00
|
|
|
time_out = 0xffff;
|
2007-06-26 14:10:30 -06:00
|
|
|
while (0 !=
|
|
|
|
(ge_3d_status[0x00] &
|
|
|
|
0xf0000000)) {
|
|
|
|
while (0 !=
|
|
|
|
((--time_out) &
|
|
|
|
0xfff)) ;
|
|
|
|
if (0 == time_out) {
|
2007-06-29 17:41:32 -06:00
|
|
|
u8 old_3ce;
|
|
|
|
u8 old_3cf;
|
|
|
|
u8 old_index;
|
|
|
|
u8 old_36;
|
2007-06-26 14:39:01 -06:00
|
|
|
|
2007-06-26 14:10:30 -06:00
|
|
|
XGI_INFO
|
|
|
|
("Can not reset back 0x%lx!\n",
|
|
|
|
ge_3d_status
|
|
|
|
[0x00]);
|
|
|
|
*(mmio_vbase +
|
|
|
|
0xb057) = 0;
|
|
|
|
// Have to use 3x5.36 to reset.
|
|
|
|
// Save and close dynamic gating
|
2007-06-26 14:39:01 -06:00
|
|
|
old_3ce =
|
2007-06-26 14:10:30 -06:00
|
|
|
*(mmio_vbase
|
|
|
|
+ 0x3ce);
|
|
|
|
*(mmio_vbase +
|
|
|
|
0x3ce) = 0x2a;
|
2007-06-26 14:39:01 -06:00
|
|
|
old_3cf =
|
2007-06-26 14:10:30 -06:00
|
|
|
*(mmio_vbase
|
|
|
|
+ 0x3cf);
|
|
|
|
*(mmio_vbase +
|
|
|
|
0x3cf) =
|
|
|
|
old_3cf & 0xfe;
|
|
|
|
// Reset GE
|
2007-06-26 14:39:01 -06:00
|
|
|
old_index =
|
2007-06-26 14:10:30 -06:00
|
|
|
*(mmio_vbase
|
|
|
|
+ 0x3d4);
|
|
|
|
*(mmio_vbase +
|
|
|
|
0x3d4) = 0x36;
|
2007-06-26 14:39:01 -06:00
|
|
|
old_36 =
|
2007-06-26 14:10:30 -06:00
|
|
|
*(mmio_vbase
|
|
|
|
+ 0x3d5);
|
|
|
|
*(mmio_vbase +
|
|
|
|
0x3d5) =
|
|
|
|
old_36 | 0x10;
|
|
|
|
while (0 !=
|
|
|
|
((--time_out) & 0xfff)) ;
|
|
|
|
*(mmio_vbase +
|
|
|
|
0x3d5) =
|
|
|
|
old_36;
|
|
|
|
*(mmio_vbase +
|
|
|
|
0x3d4) =
|
|
|
|
old_index;
|
|
|
|
// Restore dynamic gating
|
|
|
|
*(mmio_vbase +
|
|
|
|
0x3cf) =
|
|
|
|
old_3cf;
|
|
|
|
*(mmio_vbase +
|
|
|
|
0x3ce) =
|
|
|
|
old_3ce;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*(mmio_vbase + 0xb057) = 0;
|
|
|
|
|
|
|
|
// Increase Reset counter
|
|
|
|
auto_reset_count++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
} else if (0 != (0x1 & int_status)) {
|
|
|
|
s_invalid_begin++;
|
|
|
|
ge_3d_status[0x04] = (int_status & ~0x01) | 0x04000000;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2007-06-29 17:37:01 -06:00
|
|
|
bool xgi_crt_irq_handler(struct xgi_info * info)
|
2007-06-26 14:10:30 -06:00
|
|
|
{
|
2007-06-29 17:37:01 -06:00
|
|
|
bool ret = FALSE;
|
2007-06-29 17:41:32 -06:00
|
|
|
u8 save_3ce = bReadReg(0x3ce);
|
2007-06-26 14:10:30 -06:00
|
|
|
|
|
|
|
if (bIn3cf(0x37) & 0x01) // CRT1 interrupt just happened
|
|
|
|
{
|
2007-06-29 17:41:32 -06:00
|
|
|
u8 op3cf_3d;
|
|
|
|
u8 op3cf_37;
|
2007-06-26 14:10:30 -06:00
|
|
|
|
|
|
|
// What happened?
|
|
|
|
op3cf_37 = bIn3cf(0x37);
|
|
|
|
|
|
|
|
// Clear CRT interrupt
|
|
|
|
op3cf_3d = bIn3cf(0x3d);
|
|
|
|
bOut3cf(0x3d, (op3cf_3d | 0x04));
|
|
|
|
bOut3cf(0x3d, (op3cf_3d & ~0x04));
|
|
|
|
ret = TRUE;
|
|
|
|
}
|
|
|
|
bWriteReg(0x3ce, save_3ce);
|
|
|
|
|
|
|
|
return (ret);
|
|
|
|
}
|
|
|
|
|
2007-06-29 17:37:01 -06:00
|
|
|
bool xgi_dvi_irq_handler(struct xgi_info * info)
|
2007-06-26 14:10:30 -06:00
|
|
|
{
|
2007-06-29 17:37:01 -06:00
|
|
|
bool ret = FALSE;
|
2007-06-29 17:41:32 -06:00
|
|
|
u8 save_3ce = bReadReg(0x3ce);
|
2007-06-26 14:10:30 -06:00
|
|
|
|
|
|
|
if (bIn3cf(0x38) & 0x20) // DVI interrupt just happened
|
|
|
|
{
|
2007-06-29 17:41:32 -06:00
|
|
|
u8 op3cf_39;
|
|
|
|
u8 op3cf_37;
|
|
|
|
u8 op3x5_5a;
|
|
|
|
u8 save_3x4 = bReadReg(0x3d4);;
|
2007-06-26 14:10:30 -06:00
|
|
|
|
|
|
|
// What happened?
|
|
|
|
op3cf_37 = bIn3cf(0x37);
|
2007-06-26 14:46:36 -06:00
|
|
|
|
2007-06-26 14:10:30 -06:00
|
|
|
//Notify BIOS that DVI plug/unplug happened
|
|
|
|
op3x5_5a = bIn3x5(0x5a);
|
|
|
|
bOut3x5(0x5a, op3x5_5a & 0xf7);
|
|
|
|
|
|
|
|
bWriteReg(0x3d4, save_3x4);
|
|
|
|
|
|
|
|
// Clear DVI interrupt
|
|
|
|
op3cf_39 = bIn3cf(0x39);
|
|
|
|
bOut3c5(0x39, (op3cf_39 & ~0x01)); //Set 3cf.39 bit 0 to 0
|
|
|
|
bOut3c5(0x39, (op3cf_39 | 0x01)); //Set 3cf.39 bit 0 to 1
|
|
|
|
|
|
|
|
ret = TRUE;
|
|
|
|
}
|
|
|
|
bWriteReg(0x3ce, save_3ce);
|
|
|
|
|
|
|
|
return (ret);
|
|
|
|
}
|
|
|
|
|
2007-06-29 16:27:38 -06:00
|
|
|
void xgi_dump_register(struct xgi_info * info)
|
2007-06-26 14:10:30 -06:00
|
|
|
{
|
|
|
|
int i, j;
|
|
|
|
unsigned char temp;
|
|
|
|
|
|
|
|
// 0x3C5
|
|
|
|
printk("\r\n=====xgi_dump_register========0x%x===============\r\n",
|
|
|
|
0x3C5);
|
|
|
|
|
|
|
|
for (i = 0; i < 0x10; i++) {
|
|
|
|
if (i == 0) {
|
|
|
|
printk("%5x", i);
|
|
|
|
} else {
|
|
|
|
printk("%3x", i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
printk("\r\n");
|
|
|
|
|
|
|
|
for (i = 0; i < 0x10; i++) {
|
|
|
|
printk("%1x ", i);
|
|
|
|
|
|
|
|
for (j = 0; j < 0x10; j++) {
|
|
|
|
temp = bIn3c5(i * 0x10 + j);
|
|
|
|
printk("%3x", temp);
|
|
|
|
}
|
|
|
|
printk("\r\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
// 0x3D5
|
|
|
|
printk("\r\n====xgi_dump_register=========0x%x===============\r\n",
|
|
|
|
0x3D5);
|
|
|
|
for (i = 0; i < 0x10; i++) {
|
|
|
|
if (i == 0) {
|
|
|
|
printk("%5x", i);
|
|
|
|
} else {
|
|
|
|
printk("%3x", i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
printk("\r\n");
|
|
|
|
|
|
|
|
for (i = 0; i < 0x10; i++) {
|
|
|
|
printk("%1x ", i);
|
|
|
|
|
|
|
|
for (j = 0; j < 0x10; j++) {
|
|
|
|
temp = bIn3x5(i * 0x10 + j);
|
|
|
|
printk("%3x", temp);
|
|
|
|
}
|
|
|
|
printk("\r\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
// 0x3CF
|
|
|
|
printk("\r\n=========xgi_dump_register====0x%x===============\r\n",
|
|
|
|
0x3CF);
|
|
|
|
for (i = 0; i < 0x10; i++) {
|
|
|
|
if (i == 0) {
|
|
|
|
printk("%5x", i);
|
|
|
|
} else {
|
|
|
|
printk("%3x", i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
printk("\r\n");
|
|
|
|
|
|
|
|
for (i = 0; i < 0x10; i++) {
|
|
|
|
printk("%1x ", i);
|
|
|
|
|
|
|
|
for (j = 0; j < 0x10; j++) {
|
|
|
|
temp = bIn3cf(i * 0x10 + j);
|
|
|
|
printk("%3x", temp);
|
|
|
|
}
|
|
|
|
printk("\r\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
printk("\r\n=====xgi_dump_register======0x%x===============\r\n",
|
|
|
|
0xB000);
|
|
|
|
for (i = 0; i < 0x10; i++) {
|
|
|
|
if (i == 0) {
|
|
|
|
printk("%5x", i);
|
|
|
|
} else {
|
|
|
|
printk("%3x", i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
printk("\r\n");
|
|
|
|
|
|
|
|
for (i = 0; i < 0x5; i++) {
|
|
|
|
printk("%1x ", i);
|
|
|
|
|
|
|
|
for (j = 0; j < 0x10; j++) {
|
|
|
|
temp = bReadReg(0xB000 + i * 0x10 + j);
|
|
|
|
printk("%3x", temp);
|
|
|
|
}
|
|
|
|
printk("\r\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
printk("\r\n==================0x%x===============\r\n", 0x2200);
|
|
|
|
for (i = 0; i < 0x10; i++) {
|
|
|
|
if (i == 0) {
|
|
|
|
printk("%5x", i);
|
|
|
|
} else {
|
|
|
|
printk("%3x", i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
printk("\r\n");
|
|
|
|
|
|
|
|
for (i = 0; i < 0xB; i++) {
|
|
|
|
printk("%1x ", i);
|
|
|
|
|
|
|
|
for (j = 0; j < 0x10; j++) {
|
|
|
|
temp = bReadReg(0x2200 + i * 0x10 + j);
|
|
|
|
printk("%3x", temp);
|
|
|
|
}
|
|
|
|
printk("\r\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
printk("\r\n==================0x%x===============\r\n", 0x2300);
|
|
|
|
for (i = 0; i < 0x10; i++) {
|
|
|
|
if (i == 0) {
|
|
|
|
printk("%5x", i);
|
|
|
|
} else {
|
|
|
|
printk("%3x", i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
printk("\r\n");
|
|
|
|
|
|
|
|
for (i = 0; i < 0x7; i++) {
|
|
|
|
printk("%1x ", i);
|
|
|
|
|
|
|
|
for (j = 0; j < 0x10; j++) {
|
|
|
|
temp = bReadReg(0x2300 + i * 0x10 + j);
|
|
|
|
printk("%3x", temp);
|
|
|
|
}
|
|
|
|
printk("\r\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
printk("\r\n==================0x%x===============\r\n", 0x2400);
|
|
|
|
for (i = 0; i < 0x10; i++) {
|
|
|
|
if (i == 0) {
|
|
|
|
printk("%5x", i);
|
|
|
|
} else {
|
|
|
|
printk("%3x", i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
printk("\r\n");
|
|
|
|
|
|
|
|
for (i = 0; i < 0x10; i++) {
|
|
|
|
printk("%1x ", i);
|
|
|
|
|
|
|
|
for (j = 0; j < 0x10; j++) {
|
|
|
|
temp = bReadReg(0x2400 + i * 0x10 + j);
|
|
|
|
printk("%3x", temp);
|
|
|
|
}
|
|
|
|
printk("\r\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
printk("\r\n==================0x%x===============\r\n", 0x2800);
|
|
|
|
for (i = 0; i < 0x10; i++) {
|
|
|
|
if (i == 0) {
|
|
|
|
printk("%5x", i);
|
|
|
|
} else {
|
|
|
|
printk("%3x", i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
printk("\r\n");
|
|
|
|
|
|
|
|
for (i = 0; i < 0x10; i++) {
|
|
|
|
printk("%1x ", i);
|
|
|
|
|
|
|
|
for (j = 0; j < 0x10; j++) {
|
|
|
|
temp = bReadReg(0x2800 + i * 0x10 + j);
|
|
|
|
printk("%3x", temp);
|
|
|
|
}
|
|
|
|
printk("\r\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-06-29 16:27:38 -06:00
|
|
|
void xgi_restore_registers(struct xgi_info * info)
|
2007-06-26 14:10:30 -06:00
|
|
|
{
|
|
|
|
bOut3x5(0x13, 0);
|
|
|
|
bOut3x5(0x8b, 2);
|
|
|
|
}
|
|
|
|
|
2007-06-29 16:27:38 -06:00
|
|
|
void xgi_waitfor_pci_idle(struct xgi_info * info)
|
2007-06-26 14:10:30 -06:00
|
|
|
{
|
|
|
|
#define WHOLD_GE_STATUS 0x2800
|
|
|
|
#define IDLE_MASK ~0x90200000
|
|
|
|
|
|
|
|
int idleCount = 0;
|
|
|
|
while (idleCount < 5) {
|
|
|
|
if (dwReadReg(WHOLD_GE_STATUS) & IDLE_MASK) {
|
|
|
|
idleCount = 0;
|
|
|
|
} else {
|
|
|
|
idleCount++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-06-29 16:27:38 -06:00
|
|
|
int xgi_get_cpu_id(struct cpu_info *arg)
|
2007-06-26 14:10:30 -06:00
|
|
|
{
|
|
|
|
int op = arg->_eax;
|
|
|
|
__asm__("cpuid":"=a"(arg->_eax),
|
|
|
|
"=b"(arg->_ebx),
|
|
|
|
"=c"(arg->_ecx), "=d"(arg->_edx)
|
|
|
|
: "0"(op));
|
|
|
|
|
|
|
|
XGI_INFO
|
|
|
|
("opCode = 0x%x, eax = 0x%x, ebx = 0x%x, ecx = 0x%x, edx = 0x%x \n",
|
|
|
|
op, arg->_eax, arg->_ebx, arg->_ecx, arg->_edx);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*memory collect function*/
|
|
|
|
extern struct list_head xgi_mempid_list;
|
2007-06-29 16:27:38 -06:00
|
|
|
void xgi_mem_collect(struct xgi_info * info, unsigned int *pcnt)
|
2007-06-26 14:10:30 -06:00
|
|
|
{
|
2007-06-29 22:35:27 -06:00
|
|
|
struct xgi_mem_pid *block;
|
|
|
|
struct xgi_mem_pid *next;
|
2007-06-26 14:10:30 -06:00
|
|
|
struct task_struct *p, *find;
|
|
|
|
unsigned int cnt = 0;
|
|
|
|
|
2007-06-29 22:35:27 -06:00
|
|
|
list_for_each_entry_safe(block, next, &xgi_mempid_list, list) {
|
2007-06-26 14:10:30 -06:00
|
|
|
|
|
|
|
find = NULL;
|
|
|
|
XGI_SCAN_PROCESS(p) {
|
2007-06-29 22:35:27 -06:00
|
|
|
if (p->pid == block->pid) {
|
2007-06-26 14:10:30 -06:00
|
|
|
XGI_INFO
|
|
|
|
("[!]Find active pid:%ld state:%ld location:%d addr:0x%lx! \n",
|
2007-06-29 22:35:27 -06:00
|
|
|
block->pid, p->state,
|
|
|
|
block->location,
|
|
|
|
block->bus_addr);
|
2007-06-26 14:10:30 -06:00
|
|
|
find = p;
|
2007-06-29 22:35:27 -06:00
|
|
|
if (block->bus_addr == 0xFFFFFFFF)
|
2007-06-26 14:10:30 -06:00
|
|
|
++cnt;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!find) {
|
2007-06-29 22:38:48 -06:00
|
|
|
if (block->location == XGI_MEMLOC_LOCAL) {
|
2007-06-26 14:10:30 -06:00
|
|
|
XGI_INFO
|
|
|
|
("Memory ProcessID free fb and delete one block pid:%ld addr:0x%lx successfully! \n",
|
2007-06-29 22:35:27 -06:00
|
|
|
block->pid, block->bus_addr);
|
|
|
|
xgi_fb_free(info, block->bus_addr);
|
|
|
|
} else if (block->bus_addr != 0xFFFFFFFF) {
|
2007-06-26 14:10:30 -06:00
|
|
|
XGI_INFO
|
|
|
|
("Memory ProcessID free pcie and delete one block pid:%ld addr:0x%lx successfully! \n",
|
2007-06-29 22:35:27 -06:00
|
|
|
block->pid, block->bus_addr);
|
|
|
|
xgi_pcie_free(info, block->bus_addr);
|
2007-06-26 14:10:30 -06:00
|
|
|
} else {
|
|
|
|
/*only delete the memory block */
|
2007-06-29 22:35:27 -06:00
|
|
|
list_del(&block->list);
|
2007-06-26 14:10:30 -06:00
|
|
|
XGI_INFO
|
|
|
|
("Memory ProcessID delete one pcie block pid:%ld successfully! \n",
|
2007-06-29 22:35:27 -06:00
|
|
|
block->pid);
|
|
|
|
kfree(block);
|
2007-06-26 14:10:30 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*pcnt = cnt;
|
|
|
|
}
|