Bug 27723 - Vtx endian setup error under big endain CPU
Summary: Vtx endian setup error under big endain CPU
Status: RESOLVED WONTFIX
Alias: None
Product: Mesa
Classification: Unclassified
Component: Drivers/DRI/R600 (show other bugs)
Version: unspecified
Hardware: PowerPC other
: medium normal
Assignee: Default DRI bug account
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-04-18 04:13 UTC by raoxianhong
Modified: 2014-07-07 16:02 UTC (History)
0 users

See Also:
i915 platform:
i915 features:


Attachments

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.