diff options
Diffstat (limited to 'drivers/video/matrox/matroxfb_base.c')
-rw-r--r-- | drivers/video/matrox/matroxfb_base.c | 29 |
1 files changed, 16 insertions, 13 deletions
diff --git a/drivers/video/matrox/matroxfb_base.c b/drivers/video/matrox/matroxfb_base.c index e02da41f1b26..1e74f4cca53b 100644 --- a/drivers/video/matrox/matroxfb_base.c +++ b/drivers/video/matrox/matroxfb_base.c | |||
@@ -264,7 +264,6 @@ static void matroxfb_disable_irq(WPMINFO2) { | |||
264 | } | 264 | } |
265 | 265 | ||
266 | int matroxfb_wait_for_sync(WPMINFO u_int32_t crtc) { | 266 | int matroxfb_wait_for_sync(WPMINFO u_int32_t crtc) { |
267 | wait_queue_t __wait; | ||
268 | struct matrox_vsync *vs; | 267 | struct matrox_vsync *vs; |
269 | unsigned int cnt; | 268 | unsigned int cnt; |
270 | int ret; | 269 | int ret; |
@@ -286,7 +285,6 @@ int matroxfb_wait_for_sync(WPMINFO u_int32_t crtc) { | |||
286 | if (ret) { | 285 | if (ret) { |
287 | return ret; | 286 | return ret; |
288 | } | 287 | } |
289 | init_waitqueue_entry(&__wait, current); | ||
290 | 288 | ||
291 | cnt = vs->cnt; | 289 | cnt = vs->cnt; |
292 | ret = wait_event_interruptible_timeout(vs->wait, cnt != vs->cnt, HZ/10); | 290 | ret = wait_event_interruptible_timeout(vs->wait, cnt != vs->cnt, HZ/10); |
@@ -500,10 +498,6 @@ static int matroxfb_pitch_adjust(CPMINFO int xres, int bpp) { | |||
500 | } else { | 498 | } else { |
501 | xres_new = matroxfb_test_and_set_rounding(PMINFO xres, bpp); | 499 | xres_new = matroxfb_test_and_set_rounding(PMINFO xres, bpp); |
502 | } | 500 | } |
503 | if (!xres_new) return 0; | ||
504 | if (xres != xres_new) { | ||
505 | printk(KERN_INFO "matroxfb: cannot set xres to %d, rounded up to %d\n", xres, xres_new); | ||
506 | } | ||
507 | return xres_new; | 501 | return xres_new; |
508 | } | 502 | } |
509 | 503 | ||
@@ -1285,7 +1279,7 @@ static int matroxfb_getmemory(WPMINFO unsigned int maxSize, unsigned int *realSi | |||
1285 | vaddr_t vm; | 1279 | vaddr_t vm; |
1286 | unsigned int offs; | 1280 | unsigned int offs; |
1287 | unsigned int offs2; | 1281 | unsigned int offs2; |
1288 | unsigned char store, orig; | 1282 | unsigned char orig; |
1289 | unsigned char bytes[32]; | 1283 | unsigned char bytes[32]; |
1290 | unsigned char* tmp; | 1284 | unsigned char* tmp; |
1291 | 1285 | ||
@@ -1301,16 +1295,12 @@ static int matroxfb_getmemory(WPMINFO unsigned int maxSize, unsigned int *realSi | |||
1301 | orig = mga_inb(M_EXTVGA_DATA); | 1295 | orig = mga_inb(M_EXTVGA_DATA); |
1302 | mga_outb(M_EXTVGA_DATA, orig | 0x80); | 1296 | mga_outb(M_EXTVGA_DATA, orig | 0x80); |
1303 | 1297 | ||
1304 | store = mga_readb(vm, 0x1234); | ||
1305 | tmp = bytes; | 1298 | tmp = bytes; |
1306 | for (offs = 0x100000; offs < maxSize; offs += 0x200000) | 1299 | for (offs = 0x100000; offs < maxSize; offs += 0x200000) |
1307 | *tmp++ = mga_readb(vm, offs); | 1300 | *tmp++ = mga_readb(vm, offs); |
1308 | for (offs = 0x100000; offs < maxSize; offs += 0x200000) | 1301 | for (offs = 0x100000; offs < maxSize; offs += 0x200000) |
1309 | mga_writeb(vm, offs, 0x02); | 1302 | mga_writeb(vm, offs, 0x02); |
1310 | if (ACCESS_FBINFO(features.accel.has_cacheflush)) | 1303 | mga_outb(M_CACHEFLUSH, 0x00); |
1311 | mga_outb(M_CACHEFLUSH, 0x00); | ||
1312 | else | ||
1313 | mga_writeb(vm, 0x1234, 0x99); | ||
1314 | for (offs = 0x100000; offs < maxSize; offs += 0x200000) { | 1304 | for (offs = 0x100000; offs < maxSize; offs += 0x200000) { |
1315 | if (mga_readb(vm, offs) != 0x02) | 1305 | if (mga_readb(vm, offs) != 0x02) |
1316 | break; | 1306 | break; |
@@ -1321,7 +1311,6 @@ static int matroxfb_getmemory(WPMINFO unsigned int maxSize, unsigned int *realSi | |||
1321 | tmp = bytes; | 1311 | tmp = bytes; |
1322 | for (offs2 = 0x100000; offs2 < maxSize; offs2 += 0x200000) | 1312 | for (offs2 = 0x100000; offs2 < maxSize; offs2 += 0x200000) |
1323 | mga_writeb(vm, offs2, *tmp++); | 1313 | mga_writeb(vm, offs2, *tmp++); |
1324 | mga_writeb(vm, 0x1234, store); | ||
1325 | 1314 | ||
1326 | mga_outb(M_EXTVGA_INDEX, 0x03); | 1315 | mga_outb(M_EXTVGA_INDEX, 0x03); |
1327 | mga_outb(M_EXTVGA_DATA, orig); | 1316 | mga_outb(M_EXTVGA_DATA, orig); |
@@ -1430,6 +1419,20 @@ static struct board { | |||
1430 | MGA_1164, | 1419 | MGA_1164, |
1431 | &vbMystique, | 1420 | &vbMystique, |
1432 | "Mystique 220 (PCI)"}, | 1421 | "Mystique 220 (PCI)"}, |
1422 | {PCI_VENDOR_ID_MATROX, PCI_DEVICE_ID_MATROX_MYS_AGP, 0x02, | ||
1423 | 0, 0, | ||
1424 | DEVF_VIDEO64BIT | DEVF_CROSS4MB, | ||
1425 | 180000, | ||
1426 | MGA_1064, | ||
1427 | &vbMystique, | ||
1428 | "Mystique (AGP)"}, | ||
1429 | {PCI_VENDOR_ID_MATROX, PCI_DEVICE_ID_MATROX_MYS_AGP, 0xFF, | ||
1430 | 0, 0, | ||
1431 | DEVF_VIDEO64BIT | DEVF_SWAPS | DEVF_CROSS4MB, | ||
1432 | 220000, | ||
1433 | MGA_1164, | ||
1434 | &vbMystique, | ||
1435 | "Mystique 220 (AGP)"}, | ||
1433 | #endif | 1436 | #endif |
1434 | #ifdef CONFIG_FB_MATROX_G | 1437 | #ifdef CONFIG_FB_MATROX_G |
1435 | {PCI_VENDOR_ID_MATROX, PCI_DEVICE_ID_MATROX_G100_MM, 0xFF, | 1438 | {PCI_VENDOR_ID_MATROX, PCI_DEVICE_ID_MATROX_G100_MM, 0xFF, |