Created attachment 44173 [details] relevant part of dmesg When testing r600g on a 2900pro[1GB] a soft reset is triggered.
Created attachment 44174 [details] Xorg.log
Does it work any better with my latest r600g R600 commits from today?
No luck. I built from git 3.18.2011 @ ~ 7:30pm CDT.
Hello, I was just peering through commits that seemed related to my part. In commit d6fea4a9856598961dd0f69436df749e5aa8d077 the following is found... ***************************SNIP**************************************** /* Unsupported features (boolean caps). */ case PIPE_CAP_STREAM_OUTPUT: case PIPE_CAP_PRIMITIVE_RESTART: case PIPE_CAP_INDEP_BLEND_FUNC: /* FIXME allow this */ - return 0; + /* R600 doesn't support per-MRT blends */ + if (family == CHIP_R600) + return 0; + else + return 0; ***************************SNIP**************************************** Believe me I've no real idea what is going on here, but this 'IF' statement seems to always returns 0. Perhaps this is a type-o. E. Wollenburg
(In reply to comment #4) > Hello, > I was just peering through commits that seemed related to my part. > > In commit d6fea4a9856598961dd0f69436df749e5aa8d077 the following is found... > > > ***************************SNIP**************************************** > /* Unsupported features (boolean caps). */ > case PIPE_CAP_STREAM_OUTPUT: > case PIPE_CAP_PRIMITIVE_RESTART: > case PIPE_CAP_INDEP_BLEND_FUNC: /* FIXME allow this */ > - return 0; > + /* R600 doesn't support per-MRT blends */ > + if (family == CHIP_R600) > + return 0; > + else > + return 0; > > ***************************SNIP**************************************** > > Believe me I've no real idea what is going on here, but this 'IF' statement > seems to always returns 0. > > Perhaps this is a type-o. It's fine. rv6xx+ support independent blend function in hw, but it's not enabled yet. r600 (2900) does not.
Mass closure: This bug has been untouched for more than six years, and is not obviously still valid. Please reopen this bug or file a new report if you continue to experience issues with current releases.
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.