summaryrefslogtreecommitdiff
path: root/sys/dev/pci/drm/drmP.h
AgeCommit message (Expand)Author
2015-09-23Update inteldrm to the code from Linux 3.14.52 (which corresponds toMark Kettenis
2015-05-30DRMDEBUG not DRM_DEBUG. From frantisek holop.Jonathan Gray
2015-04-18another round of reducing the diff to linuxJonathan Gray
2015-04-17Make drm ioctls table driven. Further reduces the diff to linux.Jonathan Gray
2015-04-12change back to wait_for/wait_for_atomic_usJonathan Gray
2015-04-12make wait_queue_head a struct with a mutexJonathan Gray
2015-04-11change back to drm_free_large/drm_malloc_abJonathan Gray
2015-04-10Move irqs_disabled() and in_dbg_master() out of the i386/amd64 ifdef blockJonathan Gray
2015-04-10Use mdelay(x) instead of delay(x * 1000) for drm_msleep() to betterJonathan Gray
2015-04-10Make drm_can_sleep() match linux. No change in behaviour as it'sJonathan Gray
2015-04-10add irqs_disabled() and in_dbg_master() using cold and db_is_activeJonathan Gray
2015-04-06Move almost all of the linux compat from drmP.h to drm_linux.h.Jonathan Gray
2015-04-06move some inline linux compat into the dedicated filesJonathan Gray
2015-04-06add/use some more errno remappingJonathan Gray
2015-04-06Add an empty drm_sysfs_hotplug_event() function and use itJonathan Gray
2015-04-03resync i915_drv.h to make it diffable to linuxJonathan Gray
2015-02-12Add and use macros for linux memory barriers. Fix the call inJonathan Gray
2015-02-11Switch most printf style functions calls back to linux function namesJonathan Gray
2015-02-10Remove DRM_LOCK macros, rename dev_lock to struct_mutex and directlyJonathan Gray
2014-07-12add a size argument to free. will be used soon, but for now default to 0.Ted Unangst
2014-05-24Barriers for mips64Miod Vallat
2014-04-07reduce the diff to linux for drm pci vid/pid testsJonathan Gray
2014-04-01Move some duplicated code implementing Linux compatibility APIs and stick itMark Kettenis
2014-03-26No need to include <sys/lock.h> when only <sys/rwlock.h> is needed,Martin Pieuchot
2014-03-25Remove and shuffle some includes to reduce their number since drmP.hMartin Pieuchot
2014-03-24Another round of reducing diffs with the Linux codebase.Mark Kettenis
2014-03-17The AGP ioctl interface is gone; remove the header file as well.Mark Kettenis
2014-03-13Block userland from entering drm code (and make sure it is no longer in there)Mark Kettenis
2014-03-09remove dri1 interfacesJonathan Gray
2014-02-23Give drm(4) a console locator just like wsdisplay(4) such that we can makeMark Kettenis
2014-02-09add some more linux compat functions for memory allocationJonathan Gray
2014-02-04Add WARN_ONCE.Mark Kettenis
2014-02-02add min_t and div_u64 which will be used to reduce the diff to linuxJonathan Gray
2014-02-02add a simple version of usleep_range() that DELAYs for the min valueJonathan Gray
2014-01-30Get rid of the simple locks; they're lies. Also get rid of the holdingMark Kettenis
2014-01-22add DMI_EXACT_MATCH macro, handled the same as DMI_MATCH for nowJonathan Gray
2014-01-22Provide inline dummy implementations of drm_sysfs_connector_add() andMark Kettenis
2014-01-22Use DIV_ROUND_UP instead of howmany to reduce the diffs with Linux.Mark Kettenis
2014-01-21Add kmalloc/kcalloc/kzalloc/kfree Linux compat functions.Mark Kettenis
2013-12-21Advertise that we provide monotonic timestamps.Mark Kettenis
2013-12-15Fix error handling of ->fb_create() call. Prevents kernel panic if anMark Kettenis
2013-12-05Rename 'struct drm_obj' to 'struct drm_gem_object' to reduce the diffs withMark Kettenis
2013-12-01Fix WARN() and WARN_ON(); the condition should only be evaluated once.Mark Kettenis
2013-11-27Hook up gem_open/close_object methods.Mark Kettenis
2013-11-19Move the GTT management into the inteldrm driver. It is really obvious nowMark Kettenis
2013-11-07add a simplistic version of WARN_ON_ONCE() that doesn't warnJonathan Gray
2013-11-02Replace drm_handle_create/delete with drm_gem_handle_create/delete and makeMark Kettenis
2013-10-26Unstub i915_gem_dumb_destroy() and radeon_mode_dumb_destroy().Mark Kettenis
2013-09-08switch to using linux style pci match tablesJonathan Gray
2013-09-02use DRM_MEMORYBARRIER() for smp_mb__*Jonathan Gray