summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Change all occurances of LOGE to ALOGE, LOGW to ALOGW and LOGI to ALOGI due ↵Charles Johnson2012-07-107-57/+57
| | | | | | | | | | | | | | | | to change in Jelly Bean. Signed-off-by: Charles Johnson <charles.f.johnson@intel.com> modified: gralloc.c modified: gralloc_drm.c modified: gralloc_drm_intel.c modified: gralloc_drm_kms.c modified: gralloc_drm_nouveau.c modified: gralloc_drm_pipe.c modified: gralloc_drm_radeon.c Change-Id: Idd9e533eab366d9f9dc199d961891255a66384a2
* add support for YUV formatsChia-I Wu2011-10-275-14/+62
|
* remove an unnecessary includeChia-I Wu2011-09-081-1/+0
|
* log connector infoChia-I Wu2011-09-081-0/+22
| | | | Log the number of modes available, what the best mode is, and etc.
* remove outdated BOARD_USES_*Chia-I Wu2011-08-291-26/+1
|
* remove first drm_kms_wait_for_post callChia-I Wu2011-08-291-1/+0
| | | | It always fails without the CRTC being set.
* fix build errorsChia-I Wu2011-08-293-3/+3
| | | | Introduced by the last commit.
* vmwgfx: assorted fixesChia-I Wu2011-08-244-6/+24
| | | | | | | | | | | Based on trial and error, we know - drm_kms_wait_for_post() hangs the VM - drmModeDirtyFB() should be called whenever the front buffer changes - drmModePageFlip() is not supported They might not be entirely correct, but fixing them makes drm_gralloc work.
* update pci_idsChia-I Wu2011-08-243-0/+10
|
* radeon: use a table to detect chip familyChia-I Wu2011-08-103-19/+622
|
* drop the 'c' suffix from i915c/i965cChia-I Wu2011-08-031-3/+3
|
* revise gralloc_drm bo interfaceChia-I Wu2011-07-313-78/+81
| | | | Make it more intuitive to use.
* add more functions to gralloc_drm kms interfaceChia-I Wu2011-07-312-12/+50
| | | | Make it more complete.
* add support for debug.drm.modeChia-I Wu2011-07-305-18/+101
| | | | The mode string is "<xres>x<yres>[@<bpp>]".
* protect against NULL handleChia-I Wu2011-07-302-5/+8
|
* make sure the driver is initialized before registeringChia-I Wu2011-07-301-0/+10
|
* allow FB to be mappedChia-I Wu2011-07-301-2/+5
| | | | This is useful for testing software renderer with FB.
* map a bo only when it is locked for CPU accessChia-I Wu2011-07-294-13/+51
| | | | To match the doc a little better.
* close bo on unregister()Chia-I Wu2011-07-293-19/+49
| | | | | Not sure if a remote process ever destroys a bo. But let register() opens a bo and unregister() closes it.
* android: use BOARD_GPU_DRIVERSChia-I Wu2011-07-221-22/+66
|
* radeon: zero the newly allocated boChia-I Wu2011-07-181-0/+13
|
* radeon: refactor bo allocationChia-I Wu2011-07-181-50/+58
|
* radeon: verbose debug messages on errorsChia-I Wu2011-07-181-6/+16
|
* improve bo validation a little bitChia-I Wu2011-07-181-1/+4
|
* radeon: enable tilingChia-I Wu2011-07-181-10/+19
|
* radeon: detect chip familyChia-I Wu2011-07-151-115/+247
| | | | This should not change the behavior in any way.
* support other drivers in pipeChia-I Wu2011-07-1110-16/+810
| | | | Tested with r600g.
* let drivers decide the fb formatChia-I Wu2011-07-116-11/+10
|
* add (untested) copy support to pipeChia-I Wu2011-06-131-0/+54
| | | | This is why we love pipe.
* add (untested) pipe supportChia-I Wu2011-06-134-5/+379
|
* add nouveau supportChia-I Wu2011-06-134-0/+387
|
* initial commitChia-I Wu2011-06-1210-0/+2629