summaryrefslogtreecommitdiff
path: root/shared/radeon_cp.c
AgeCommit message (Collapse)AuthorFilesLines
2006-07-19Delete the pre-core DRM code with extreme prejudice.Adam Jackson1-2092/+0
2005-01-26(Stephane Marchesin,me) Add radeon framebuffer tiling support to radeonRoland Scheidegger1-1/+9
drm. Add new ioctls to manage surfaces which cover the tiled areas
2005-01-26replace magic number with macro constant RADEON_ZBLOCK16Roland Scheidegger1-1/+2
2004-12-08(Stephane Marchesin, me) add hyperz support to radeon drm. Only fast zRoland Scheidegger1-0/+12
clear and z buffer compression are working correctly, hierarchical-z is not.
2004-10-23Apply radeon r300 microcode patch to non-coreDave Airlie1-6/+281
2004-09-27Fix the shared directory I accidentally stomped onJon Smirl1-8/+14
2004-09-27First check in for DRM that splits core from personality modulesJon Smirl1-14/+8
2004-09-22Remove hotplug reset support from DRM driver. This will be handled by theJon Smirl1-5/+1
VGA driver when it gets written.
2004-09-20Remove size restriction on permanent addmapJon Smirl1-2/+1
2004-09-17Add linux sysfs i2c support to radeon driver. This patch adds GPL licensedJon Smirl1-9/+31
files to the linux build but not to the BSD directories.
2004-09-10More general patch to mark resources in use by all DRM drivers. Makes theJon Smirl1-31/+0
code Linux specific.
2004-08-24Merged drmfntbl-0-0-2drmfntbl-0-0-2-20040824-mergeDave Airlie1-9/+7
2004-08-23set pointers to NULL after freeing, remove some extra debuggingDave Airlie1-5/+9
2004-08-17Merged drmfntbl-0-0-1drmfntbl-0-0-1-20040817-mergeDave Airlie1-27/+29
2004-08-17preparation patch for radeon permanent mapping registers/framebuffer makesDave Airlie1-52/+111
dev_priv live always, and add AGP detection in kernel patch: radeon-pre-2.patch From: Jon Smirl
2004-07-25sync up with current 2.6 kernel bk tree - mostly __user annotationsDave Airlie1-4/+5
2003-12-16Don't ioremap the framebuffer area. The ioremapped area wasn't used bydriinterface-0-0-2-branchEric Anholt1-7/+0
anything, and took up valuable KVA. While I'm in the area, clean up BSD MTRR stuff some more. Suggested by: jonsmirl
2003-11-05- Tie the DRM to a specific device: setunique no longer succeeds when givenEric Anholt1-1/+1
a busid that doesn't correspond to the device the DRM is attached to. This is a breaking of backwards-compatibility only for the multiple-DRI-head case with X Servers that don't use interface 1.1. - Move irq_busid to drm_irq.h and make it only return the IRQ for the current device. Retains compatibility with previous X Servers, cleans up unnecessary code. This means no irq_busid on !__HAVE_IRQ, but can be changed if necessary. - Bump interface version to 1.2. This version when set signifies that the control ioctl should ignore the irq number passed in and enable the interrupt handler for the attached device. Otherwise it errors out when the passed-in irq is not equal to the device's. - Store the highest version the interface has been set to in the device. - Fix a recursion on DRM_LOCK in irq_uninstall on FreeBSD. This leaves irq_uninstall being done without the lock in some cases, but it was racey anyways.
2003-11-04Memory layout transition:Michel Daenzer1-9/+20
the 2D driver initializes MC_FB_LOCATION and related registers sanely the DRM deduces the layout from these registers clients use the new SETPARAM ioctl to tell the DRM where they think the framebuffer is located in the card's address space the DRM uses all this information to check client state and fix it up if necessary This is a prerequisite for things like direct rendering with IGP chips and video capturing.
2003-10-17- Move IRQ functions from drm_dma.h to new drm_irq.h and disentangle themEric Anholt1-1/+1
from __HAVE_DMA. This will be useful for adding vblank sync support to sis and tdfx. Rename dma_service to irq_handler, which is more accurately what it is. - Fix the #if _HAVE_DMA_IRQ in radeon, r128, mga, i810, i830, gamma to have the right number of underscores. This may have been a problem in the case that the server died without doing its DRM_IOCTL_CONTROL to uninit.
2003-08-26Remove artificial PCI GART limitations, rename AGP to GART whereMichel Daenzer1-34/+31
appropriate
2003-08-18Clean up Radeon DRI resume codeMichel Daenzer1-170/+49
2003-05-20DRM part of Radeon DRI suspend/resume support (Charl Botha).config-0-0-1-20031005-freezeconfig-0-0-1-branchDavid Dawes1-0/+180
2003-05-16Support AGP bridges where the AGP aperture can't be accessed directly byMichel Daenzer1-14/+14
the CPU (David Mosberger, Benjamin Herrenschmidt, myself, Paul Mackerras, Jeff Wiedemeier)
2003-05-06fix warning on machines where sizeof(drm_addr_t) != 4 (Randy Dunlap)Michel Daenzer1-2/+2
2003-04-26Ensure driver has been initialized (dev_private != NULL) before installingLeif Delgass1-0/+10
irq handler in DRM(irq_install). Modify all drivers to ensure irq handler is removed before cleanup and cleanup is called at takedown. Remove unused buffer private struct fields in i810, i830. Check for lock on init/cleanup in all drivers except i810/i830. The current DDX for i810 and i830 doesn't hold the lock on kernel init (FIXME?).
2003-04-22get rid of superfluous fields in struct drm_radeon_ring_bufferMichel Daenzer1-11/+12
use correct address for ring read pointer writeback (yes, we seem to have been running with bogus values for the ring read pointer, which 'worked' because the return value of radeon_wait_ring() is never checked and the ring usually never fills up)
2003-04-22Remove AGP dependency in kernel config for radeon, sis. RemoveLeif Delgass1-17/+0
PCIGART_ENABLED define for radeon, pcigart support now included for any arch.
2003-04-22add more get_param queries for embedded projectKeith Whitwell1-0/+7
2003-04-21Check for NULL map before calling DRM(ioremapfree) on cleanup. Prevents anLeif Delgass1-3/+6
oops if a map wasn't found (e.g. XFree86 Bugzilla #108)
2003-03-28merged drm-filp-0-1-branchdrm-filp-1-20020328-mergeKeith Whitwell1-18/+67
2003-03-25XFree86 4.3.0 mergeX_4_3_0-20030324-mergeAlan Hourihane1-56/+7
2003-02-21Merge from bsd-4-0-0-branch.bsd-4-0-0-20030221-mergeEric Anholt1-3/+4
2003-01-16Fix radeon for BSD.Eric Anholt1-1/+5
2003-01-10Note that radeon_do_cp_idle() can fail, cope with it.Keith Whitwell1-5/+10
2003-01-03more cleanups, free mem heap data on last client exitKeith Whitwell1-3/+4
2003-01-02Remove printkKeith Whitwell1-2/+0
2003-01-02Make the radeon drm module better at cleaning up after itself if all theKeith Whitwell1-3/+28
clients (particularly the X server) exit without doing so for it.
2002-11-25Silence the radeon_freelist_get 'returning NULL' message. It's not an errorKeith Whitwell1-1/+1
& just confuses people.
2002-09-29Turn boxes off againKeith Whitwell1-1/+1
2002-09-29Move os-dependent stuff out of radeon_irq.cKeith Whitwell1-1/+1
2002-09-23merged r200-0-2-branch to trunkKeith Whitwell1-0/+3
2002-08-29standardize use of __FUNCTION__ (Linus)Keith Whitwell1-3/+3
2002-08-28Turn boxes off.Keith Whitwell1-1/+1
2002-08-26merged r200-0-1-branchr200-0-1-20020822-mergeKeith Whitwell1-12/+351
2002-08-21TRUE and FALSE don't seem to be defined everywhere...Michel Daenzer1-2/+2
2002-08-11test scratch register writeback before using itMichel Daenzer1-1/+19
2002-07-11Don't read scratch registers directly, obtain the values via the GET_PARAMMichel Daenzer1-29/+30
ioctl. The DRM reads them from memory addresses the chip writes to on updates. Fall back to reading the registers directly with an old DRM. (Tim Smith, cleanups by myself)
2002-07-05merged bsd-3-0-0-branchbsd-3-0-0-20020705-mergeAlan Hourihane1-0/+1287