Bug 27723

Summary: Vtx endian setup error under big endain CPU
Product: Mesa Reporter: raoxianhong <raoxianhong>
Component: Drivers/DRI/R600Assignee: Default DRI bug account <dri-devel>
Status: RESOLVED WONTFIX QA Contact:
Severity: normal    
Priority: medium    
Version: unspecified   
Hardware: PowerPC   
OS: other   
Whiteboard:
i915 platform: i915 features:

Description raoxianhong 2010-04-18 04:13:21 UTC
There is an error at line 965 of r700_assembler.c(mesa 7.8.1):
      vfetch_instruction_ptr->m_Word2.f.endian_swap      = SQ_ENDIAN_NONE;
the correct must be:
        vfetch_instruction_ptr->m_Word2.f.endian_swap      = 
#if BIGENDIAN_CPU    
			SQ_ENDIAN_8IN32;
#else
    			SQ_ENDIAN_NONE;
#endif
Comment 1 Andreas Boll 2012-11-02 16:28:28 UTC
Note: classic r600 driver has been abandoned.
Please use r600g (gallium driver) instead.

Is this still an issue with a newer driver/kernel?
Comment 2 Andreas Boll 2014-07-07 16:02:09 UTC
The classic r600 driver has been abandoned long ago.
It was replaced by the Gallium driver r600g.

If you have issues with r600g please file a new bug report with component Drivers/Gallium/r600

Thanks.

Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.