[Bug 6241] glxinfo fails with latest CVS

2009-08-24 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=6241


ajax at nwnk dot net  changed:

   What|Removed |Added

Version|CVS |git




--- Comment #14 from ajax at nwnk dot net   2009-08-24 12:23:44 
PST ---
Mass version move, cvs -> git


-- 
Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 6241] glxinfo fails with latest CVS

2006-04-04 Thread bugzilla-daemon
Please do not reply to this email: if you want to comment on the bug, go to
   
the URL shown below and enter yourcomments there. 
   
https://bugs.freedesktop.org/show_bug.cgi?id=6241  
 

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Additional Comments From [EMAIL PROTECTED]  2006-04-04 21:20 ---
Fixed in Mesa CVS now... the client gets the offset from the kernel instead of
trying to be smart and getting it from the register map..  
 
 
--   
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email 
 
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 6241] glxinfo fails with latest CVS

2006-04-03 Thread bugzilla-daemon
Please do not reply to this email: if you want to comment on the bug, go to
   
the URL shown below and enter yourcomments there. 
   
https://bugs.freedesktop.org/show_bug.cgi?id=6241  
 




--- Additional Comments From [EMAIL PROTECTED]  2006-04-04 09:01 ---
I've tracked this down last night, but not had time to fix it, there is some
stupid code in the client side driver that works out the offset by reading card
registers, this isn't going to work at all for PCI Express and you have to write
registers to read the GART base address, so I'm going to need to do some work in
the DRM.  
 
 
--   
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email 
 
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 6241] glxinfo fails with latest CVS

2006-04-02 Thread bugzilla-daemon
Please do not reply to this email: if you want to comment on the bug, go to
   
the URL shown below and enter yourcomments there. 
   
https://bugs.freedesktop.org/show_bug.cgi?id=6241  
 




--- Additional Comments From [EMAIL PROTECTED]  2006-04-03 04:03 ---
ok, after applying the first patch and running glxgears the offset where the
error appers is:

00301fff

. 

If i apply the second patch glxgears works again.  
 
 
--   
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email 
 
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 6241] glxinfo fails with latest CVS

2006-04-02 Thread bugzilla-daemon
Please do not reply to this email: if you want to comment on the bug, go to
   
the URL shown below and enter yourcomments there. 
   
https://bugs.freedesktop.org/show_bug.cgi?id=6241  
 




--- Additional Comments From [EMAIL PROTECTED]  2006-04-03 02:03 ---
(In reply to comment #9)
> ping?
> 
> I just compiled drm, xf86-video-ati, xserver and MESA from CVS HEAD
> 
> same problem, same nubmers from the logs. 
> 
> If you need any more information just tell me. 
> If i should redirect my bug to some other place please tell me were.
> 
> No 3d application works since 1 month ago. Not even glxgears runs!

And what was the failing offset?

RCS file: /cvs/dri/drm/shared-core/r300_cmdbuf.c,v
retrieving revision 1.12
diff -u -b -B -u -r1.12 r300_cmdbuf.c
--- r300_cmdbuf.c   7 Mar 2006 01:08:35 -   1.12
+++ r300_cmdbuf.c   2 Apr 2006 16:00:20 -
@@ -257,6 +257,8 @@
if (offset >= dev_priv->gart_vm_start &&
offset < (dev_priv->gart_vm_start + dev_priv->gart_size))
return 0;
+
+   DRM_ERROR("offset %08x fails\n", offset);
return 1;
 }

Try this also:
RCS file: /cvs/mesa/Mesa/src/mesa/drivers/dri/r300/r300_context.h,v
retrieving revision 1.92
diff -u -b -B -u -r1.92 r300_context.h
--- r300_context.h  29 Mar 2006 15:21:01 -  1.92
+++ r300_context.h  2 Apr 2006 16:02:09 -
@@ -49,9 +49,9 @@
 
 /* PPC doesnt support 16 bit elts ... */
 #ifndef MESA_BIG_ENDIAN
-#define USER_BUFFERS
-#define RADEON_VTXFMT_A
-#define HW_VBOS
+//#define USER_BUFFERS
+//#define RADEON_VTXFMT_A
+//#define HW_VBOS
 #endif

  
 
 
--   
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email 
 
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 6241] glxinfo fails with latest CVS

2006-04-01 Thread bugzilla-daemon
Please do not reply to this email: if you want to comment on the bug, go to
   
the URL shown below and enter yourcomments there. 
   
https://bugs.freedesktop.org/show_bug.cgi?id=6241  
 




--- Additional Comments From [EMAIL PROTECTED]  2006-04-02 13:03 ---
ping?

I just compiled drm, xf86-video-ati, xserver and MESA from CVS HEAD

same problem, same nubmers from the logs. 

If you need any more information just tell me. 
If i should redirect my bug to some other place please tell me were.

No 3d application works since 1 month ago. Not even glxgears runs!

Thanks  
 
 
--   
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email 
 
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 6241] glxinfo fails with latest CVS

2006-03-21 Thread bugzilla-daemon
Please do not reply to this email: if you want to comment on the bug, go to
   
the URL shown below and enter yourcomments there. 
   
https://bugs.freedesktop.org/show_bug.cgi?id=6241  
 




--- Additional Comments From [EMAIL PROTECTED]  2006-03-22 12:58 ---
ok, these are the values i get. I don't know what should i do with them ...

Linux Kernel (kern.log)
Mar 22 02:55:32 calisto kernel: [drm] Setting GART location based on new memory 
map
Mar 22 02:55:32 calisto kernel: [drm:radeon_do_init_cp] dev_priv->gart_size 
8388608
Mar 22 02:55:32 calisto kernel: [drm:radeon_do_init_cp] dev_priv->gart_vm_start
0xd400
Mar 22 02:55:32 calisto kernel: [drm:radeon_do_init_cp]
dev_priv->gart_buffers_offset 0xd4102000
Mar 22 02:55:32 calisto kernel: [drm:radeon_do_init_cp] Setting phys_pci_gart to
f8d7 03FF8000
Mar 22 02:55:32 calisto kernel: [drm:drm_ati_pcigart_init] PCI: Gart Table: VRAM
D3FF8000 mapped at F8D7

X Window server (/var/log/X.org)

(II) RADEON(0): Will use 32 kb for PCI GART table at offset 0x3ff8000
(II) RADEON(0): Will use 47104 kb for textures at offset 0x11f6000
  
 
 
--   
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email 
 
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 6241] glxinfo fails with latest CVS

2006-03-21 Thread bugzilla-daemon
Please do not reply to this email: if you want to comment on the bug, go to
   
the URL shown below and enter yourcomments there. 
   
https://bugs.freedesktop.org/show_bug.cgi?id=6241  
 




--- Additional Comments From [EMAIL PROTECTED]  2006-03-22 12:10 ---
(In reply to comment #6)
> i just compiled Mesa with this patch. glxinfo works, however glxgears still
> aborts, here are the mesages:
> 
> running glxgears, on the console i can read:
> libGL warning: 3D driver claims to not support visual 0x4b
> libGL error:
> Can't open configuration file /etc/drirc: No such file or directory.
> libGL error:
> Can't open configuration file /home/diego/.drirc: No such file or directory.
> *WARN_ONCE*
> File r300_ioctl.c function r300Clear line 555
> CB_DPATH has been enabled.
> Please let me know if this introduces new instabilities.
> ***
> drmRadeonCmdBuffer: -22 (exiting)
> 
> /var/log/kern.log contains:
> 
> Mar 22 01:44:15 calisto kernel: [drm] Setting GART location based on new
memory map
> Mar 22 01:44:15 calisto kernel: [drm] Loading R300 Microcode
> Mar 22 01:44:15 calisto kernel: [drm] writeback test succeeded in 1 usecs
> Mar 22 01:44:47 calisto kernel: [drm] Setting GART location based on new
memory map
> Mar 22 01:44:47 calisto kernel: [drm] Loading R300 Microcode
> Mar 22 01:44:47 calisto kernel: [drm] writeback test succeeded in 1 usecs
> Mar 22 01:45:51 calisto kernel: [drm] Loading R300 Microcode
> Mar 22 01:46:50 calisto kernel: [drm:r300_emit_3d_load_vbpntr] *ERROR* Offset
> failed range check (k=0 i=2) while processing 3D_LOAD_V
> Mar 22 01:46:50 calisto kernel: [drm:r300_emit_packet3] *ERROR*
> r300_emit_raw_packet3 failed
> Mar 22 01:46:50 calisto kernel: [drm:r300_do_cp_cmdbuf] *ERROR*
> r300_emit_packet3 failed

Sounds like ddx and drm dont agree on where gart is.
You should probably take a look at that offset and compaire it against other
values to see what part gets it wrong.
See http://marc.theaimsgroup.com/?l=dri-devel&m=114215352914192&w=2  
 
 
--   
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email 
 
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 6241] glxinfo fails with latest CVS

2006-03-21 Thread bugzilla-daemon
Please do not reply to this email: if you want to comment on the bug, go to
   
the URL shown below and enter yourcomments there. 
   
https://bugs.freedesktop.org/show_bug.cgi?id=6241  
 




--- Additional Comments From [EMAIL PROTECTED]  2006-03-22 11:47 ---
i just compiled Mesa with this patch. glxinfo works, however glxgears still
aborts, here are the mesages:

running glxgears, on the console i can read:
libGL warning: 3D driver claims to not support visual 0x4b
libGL error:
Can't open configuration file /etc/drirc: No such file or directory.
libGL error:
Can't open configuration file /home/diego/.drirc: No such file or directory.
*WARN_ONCE*
File r300_ioctl.c function r300Clear line 555
CB_DPATH has been enabled.
Please let me know if this introduces new instabilities.
***
drmRadeonCmdBuffer: -22 (exiting)

/var/log/kern.log contains:

Mar 22 01:44:15 calisto kernel: [drm] Setting GART location based on new memory 
map
Mar 22 01:44:15 calisto kernel: [drm] Loading R300 Microcode
Mar 22 01:44:15 calisto kernel: [drm] writeback test succeeded in 1 usecs
Mar 22 01:44:47 calisto kernel: [drm] Setting GART location based on new memory 
map
Mar 22 01:44:47 calisto kernel: [drm] Loading R300 Microcode
Mar 22 01:44:47 calisto kernel: [drm] writeback test succeeded in 1 usecs
Mar 22 01:45:51 calisto kernel: [drm] Loading R300 Microcode
Mar 22 01:46:50 calisto kernel: [drm:r300_emit_3d_load_vbpntr] *ERROR* Offset
failed range check (k=0 i=2) while processing 3D_LOAD_V
Mar 22 01:46:50 calisto kernel: [drm:r300_emit_packet3] *ERROR*
r300_emit_raw_packet3 failed
Mar 22 01:46:50 calisto kernel: [drm:r300_do_cp_cmdbuf] *ERROR*
r300_emit_packet3 failed  
 
 
--   
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email 
 
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 6241] glxinfo fails with latest CVS

2006-03-19 Thread bugzilla-daemon
Please do not reply to this email: if you want to comment on the bug, go to
   
the URL shown below and enter yourcomments there. 
   
https://bugs.freedesktop.org/show_bug.cgi?id=6241  
 




--- Additional Comments From [EMAIL PROTECTED]  2006-03-20 18:20 ---
Created an attachment (id=4996)
 --> (https://bugs.freedesktop.org/attachment.cgi?id=4996&action=view)
Workaround?

This patch makes things work for me with r200, but it may just be a workaround.


The problem seems related to the 32 bit visual that AIGLX exports for GLX
compositing managers.  
 
 
--   
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email 
 
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 6241] glxinfo fails with latest CVS

2006-03-19 Thread bugzilla-daemon
Please do not reply to this email: if you want to comment on the bug, go to
   
the URL shown below and enter yourcomments there. 
   
https://bugs.freedesktop.org/show_bug.cgi?id=6241  
 

[EMAIL PROTECTED] changed:

   What|Removed |Added

 CC||[EMAIL PROTECTED]




--- Additional Comments From [EMAIL PROTECTED]  2006-03-20 18:03 ---
*** Bug 6313 has been marked as a duplicate of this bug. ***  
 
 
--   
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email 
 
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 6241] glxinfo fails with latest CVS

2006-03-14 Thread bugzilla-daemon
Please do not reply to this email: if you want to comment on the bug, go to
   
the URL shown below and enter yourcomments there. 
   
https://bugs.freedesktop.org/show_bug.cgi?id=6241  
 




--- Additional Comments From [EMAIL PROTECTED]  2006-03-15 00:53 ---
i forgot to say the graphics card i'm using:

The computer is a Dell d610 with an ATI radeon.

lspci says:
:01:00.0 VGA compatible controller: ATI Technologies Inc M22 [Radeon
Mobility M300]
  
 
 
--   
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email 
 
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 6241] glxinfo fails with latest CVS

2006-03-12 Thread bugzilla-daemon
Please do not reply to this email: if you want to comment on the bug, go to
   
the URL shown below and enter yourcomments there. 
   
https://bugs.freedesktop.org/show_bug.cgi?id=6241  
 




--- Additional Comments From [EMAIL PROTECTED]  2006-03-13 10:36 ---
Created an attachment (id=4910)
 --> (https://bugs.freedesktop.org/attachment.cgi?id=4910&action=view)
Kernel output
  
 
 
--   
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email 
 
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 6241] glxinfo fails with latest CVS

2006-03-12 Thread bugzilla-daemon
Please do not reply to this email: if you want to comment on the bug, go to
   
the URL shown below and enter yourcomments there. 
   
https://bugs.freedesktop.org/show_bug.cgi?id=6241  
 




--- Additional Comments From [EMAIL PROTECTED]  2006-03-13 10:34 ---
Created an attachment (id=4909)
 --> (https://bugs.freedesktop.org/attachment.cgi?id=4909&action=view)
Xorg.0.log output
  
 
 
--   
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email 
 
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel