summaryrefslogtreecommitdiffstats
path: root/sys/dev/drm/r300_reg.h
Commit message (Collapse)AuthorAgeFilesLines
* Fix undefined behavior: (1 << 31) is not defined as 1 is an int and thiseadler2013-11-301-3/+3
| | | | | | | | | | | | | shifts into the sign bit. Instead use (1U << 31) which gets the expected result. This fix is not ideal as it assumes a 32 bit int, but does fix the issue for most cases. A similar change was made in OpenBSD. Discussed with: -arch, rdivacky Reviewed by: cperciva
* Fix typos - remove duplicate "the".brucec2011-02-211-1/+1
| | | | | | PR: bin/154928 Submitted by: Eitan Adler <lists at eitanadler.com> MFC after: 3 days
* Fix typos.brucec2010-11-091-6/+6
| | | | | PR: bin/148894 Submitted by: olgeni
* Add regs required for occlusion queries supportrnoland2009-04-071-0/+5
| | | | | Submitted by: Maciej Cencora <m.cencora@gmail.com> MFC after: 3 days
* Update drm kernel drivers.rnoland2008-08-231-480/+817
| | | | | | | | | | This is a sync to mesa/drm pre-gem, with a few fixes on top of that. It also contains one local patch supplied by kib@ that I can't apply to git.master shared code. Approved by: flz Obtained from: mesa/drm git.master MFC after: 2 weeks
* Update to DRM CVS as of 2006-04-09. The most notable new feature is the updatedanholt2006-04-091-4/+33
| | | | | | | Radeon memmap code, which with a new DDX driver and DRI drivers should fix long-term stability issues with Radeons. Also adds support for r200's ATI_fragment_shader, r300 texrect support and texture caching fixes, i915 vblank support and bugfixes, and new PCI IDs.
* Update DRM to CVS snapshot as of 2005-11-28. Notable changes:anholt2005-11-281-3/+2
| | | | | | | | | | | | | - S3 Savage driver ported. - Added support for ATI_fragment_shader registers for r200. - Improved r300 support, needed for latest r300 DRI driver. - (possibly) r300 PCIE support, needs X.Org server from CVS. - Added support for PCI Matrox cards. - Software fallbacks fixed for Rage 128, which used to render badly or hang. - Some issues reported by WITNESS are fixed. - i915 module Makefile added, as the driver may now be working, but is untested. - Added scripts for copying and preprocessing DRM CVS for inclusion in the kernel. Thanks to Daniel Stone for getting me started on that.
* Add the latest r300 code from r300.sf.net. This is based on the patch suppliedanholt2005-07-201-0/+1416
by Vladimir Dergachev for inclusion in DRM CVS, with minor modifications for FreeBSD CVS and the appropriate license from Nicolai Haehnle on r300_reg.h. Fixes hangs when using r300.sf.net userland, tested on a Radeon 9600 on amd64.
OpenPOWER on IntegriCloud