History log of /dflybsd-src/sys/dev/drm/include/linux/wait.h (Results 1 – 25 of 35)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: v6.4.0, v6.4.0rc1, v6.5.0, v6.2.2, v6.2.1, v6.3.0
# 78973132 03-Nov-2021 Sergey Zigachev <s.zi@outlook.com>

drm/amdgpu: Port to DragonFly

* This commit does not build as it requires ttm changes from
the corresponding commit

Amdgpu driver changes:
* Builds with CONFIG_DRM_AMD_DC and CONFIG_DRM_AMD_DC_DC

drm/amdgpu: Port to DragonFly

* This commit does not build as it requires ttm changes from
the corresponding commit

Amdgpu driver changes:
* Builds with CONFIG_DRM_AMD_DC and CONFIG_DRM_AMD_DC_DCN1_0 defined
* Support for older GPUs (SI, CIK) is not implemented
* Several functions for display core module require msse and
mhard-float gcc flags to be set; and they require special
treatment from kernel by utilizing kernel_fpu_begin/kernel_fpu_end
functions
* It is required that tunable set amdgpu_hw_i2c=1 to work around
panic during module load
* Thunderbolt support is disabled
* Amdgpu trace infrastructure replaced by a stub

Drm changes:
* register_framebuffer is called at the later stage, after crtcs
were properly initialized
* drm_close implemented
* drm_connector_update_edid_property implemented
* Fix drm device stays locked in case of an error or module shutdown
* Imported drm gem framebuffer helper functions
* Fixed null pointer deref in the drm mmap ioctl
* Imported atomic64_inc and atomic_long_* functions from Linux
* Imported bitmap_complement function from Linux
* Imported kfifo struct from Linux
* Implemented dma fence array properly
* Imported rb_root_cached struct from Linux
* Implemented several dma fence functions

Co-authored-by: François Tigeot <ftigeot@wolfpond.org>
Co-authored-by: Matthew Dillon <dillon@apollo.backplane.com>

show more ...


Revision tags: v6.0.1, v6.0.0, v6.0.0rc1, v6.1.0
# 3f2dd94a 19-Dec-2020 François Tigeot <ftigeot@wolfpond.org>

drm: Update to Linux 4.15.18

* Create /dev/dri/renderD* devices
Generally handle /dev entries creation as close to Linux as possible.

* Add drm master support
Sync authentification code with Li

drm: Update to Linux 4.15.18

* Create /dev/dri/renderD* devices
Generally handle /dev entries creation as close to Linux as possible.

* Add drm master support
Sync authentification code with Linux 4.15.18

* handle vm_mm->mmap_sem in ttm page fault operations

* Update dma-fence code from OpenBSD

* This commit contains sleep/wakeup and other changes
from Matthew Dillon <dillon@apollo.backplane.com>

show more ...


Revision tags: v5.8.3, v5.8.2
# a85cb24f 27-Jul-2020 François Tigeot <ftigeot@wolfpond.org>

drm: Update to Linux 4.12.14

* Initial Geminilake support

* Support improvements and model-specific bug fixes for Broxton, Haswell,
Broadwell, Skylake and Kabylake hardware

* Various generic i91

drm: Update to Linux 4.12.14

* Initial Geminilake support

* Support improvements and model-specific bug fixes for Broxton, Haswell,
Broadwell, Skylake and Kabylake hardware

* Various generic i915 bug fixes, including page flipping and memory
corruption issues

* Minor radeon bug fixes

show more ...


# 8440b9cd 12-Jul-2020 François Tigeot <ftigeot@wolfpond.org>

drm/linux: break from wait_event_xxx() loops sooner


# 2e29c338 12-Jul-2020 François Tigeot <ftigeot@wolfpond.org>

drm/linux: Fix lost wakeup event issues with wait_event_xxx() routines

Submitted-by: Matthew Dillon <dillon@apollo.backplane.com>


# e2a4a6b1 24-Jun-2020 François Tigeot <ftigeot@wolfpond.org>

drm: Add headers, stubs and constants required by Linux 4.10 code


Revision tags: v5.8.1
# 67c69cdf 06-Mar-2020 François Tigeot <ftigeot@wolfpond.org>

drm/linux: Add wake_up_bit() and wait_on_bit_timeout()


# d43f67b3 06-Mar-2020 François Tigeot <ftigeot@wolfpond.org>

drm/linux: Add __add_wait_queue_tail()

Obtained-from: FreeBSD


Revision tags: v5.8.0
# 34949973 23-Feb-2020 François Tigeot <ftigeot@wolfpond.org>

drm/linux: Implement more parts of prepare_to_wait() and finish_wait()


Revision tags: v5.9.0, v5.8.0rc1
# edbc586d 14-Feb-2020 François Tigeot <ftigeot@wolfpond.org>

drm/linux: Rework wait_event_xxx and finish_wait functions

* Add required task state change in finish_wait()

* Move some formerly inline code to linux_wait.c in order to avoid
problematic header

drm/linux: Rework wait_event_xxx and finish_wait functions

* Add required task state change in finish_wait()

* Move some formerly inline code to linux_wait.c in order to avoid
problematic header interactions

show more ...


Revision tags: v5.6.3
# e9ca3a0c 06-Feb-2020 François Tigeot <ftigeot@wolfpond.org>

drm/linux: fix a bug in DEFINE_WAIT()

The wake-up function was not properly set up.


# 580a27ab 26-Dec-2019 François Tigeot <ftigeot@wolfpond.org>

drm/linux: Add or improve some wait_queue functions


# 85bc18ad 03-Nov-2019 François Tigeot <ftigeot@wolfpond.org>

drm/linux: Rework wait_event_xxx() macros

The wait queue lock must not be held permanently.

This commit should fix issue #3200, reported-by Peeter.


Revision tags: v5.6.2, v5.6.1
# 06f0d6a9 17-Jun-2019 François Tigeot <ftigeot@wolfpond.org>

drm/linux: Restore wait_event*() functionality

* Our wait_event* routines do not (yet) use Linux wait queues.
Threads using them still have to be woken up with a different mechanism.

* Restore th

drm/linux: Restore wait_event*() functionality

* Our wait_event* routines do not (yet) use Linux wait queues.
Threads using them still have to be woken up with a different mechanism.

* Restore the wakeup*() calls directly using wait_queue_head_t pointers

* While there, also properly set the current Linux thread states in the
wait_event*() routines

Issue with the previous commit reported by zrj.

show more ...


# d658c120 16-Jun-2019 François Tigeot <ftigeot@wolfpond.org>

drm/linux: Rework wait queues

* Make the implementation much closer to the Linux one

* Do not directly try to wake up threads, but use an indirect function
call to do it, allowing drivers to over

drm/linux: Rework wait queues

* Make the implementation much closer to the Linux one

* Do not directly try to wake up threads, but use an indirect function
call to do it, allowing drivers to override the default function

* Implement the expected default_wake_function() and
autoremove_wake_function() routines

show more ...


Revision tags: v5.6.0, v5.6.0rc1, v5.7.0
# 5a6e97fa 30-May-2019 François Tigeot <ftigeot@wolfpond.org>

drm/linux: Add wait_event_interruptible_locked()


Revision tags: v5.4.3, v5.4.2
# 252524e5 16-Mar-2019 François Tigeot <ftigeot@wolfpond.org>

drm/linux: Improve linux/wait.h


# a8601bae 03-Mar-2019 François Tigeot <ftigeot@wolfpond.org>

drm/linux/rbtree.h: Rename RB_ROOT to LINUX_RB_ROOT

Preventing clashes with the more general RB_ROOT kernel definition


Revision tags: v5.4.1, v5.4.0, v5.5.0, v5.4.0rc1
# 15dba7a9 19-Sep-2018 François Tigeot <ftigeot@wolfpond.org>

drm/linux: Implement more kobject parts


Revision tags: v5.2.2, v5.2.1
# d6aa1cc5 06-May-2018 François Tigeot <ftigeot@wolfpond.org>

drm: Sync include directives with Linux

* Add a few key include/asm or include/linux headers

* Move some code from .h to .c files in order to avoid clashes
between the DragonFly and Linux variant

drm: Sync include directives with Linux

* Add a few key include/asm or include/linux headers

* Move some code from .h to .c files in order to avoid clashes
between the DragonFly and Linux variants of kmalloc() and kfree()

show more ...


Revision tags: v5.2.0, v5.3.0, v5.2.0rc
# be7d0317 23-Mar-2018 François Tigeot <ftigeot@wolfpond.org>

drm/linux: Add a few functions (mostly stubs)


Revision tags: v5.0.2
# 39cfddd2 27-Nov-2017 François Tigeot <ftigeot@wolfpond.org>

drm/linux: Add or improve various header files


Revision tags: v5.0.1, v5.0.0, v5.0.0rc2, v5.1.0, v5.0.0rc1, v4.8.1, v4.8.0, v4.6.2, v4.9.0, v4.8.0rc, v4.6.1, v4.6.0, v4.6.0rc2, v4.6.0rc, v4.7.0, v4.4.3, v4.4.2, v4.4.1, v4.4.0, v4.5.0, v4.4.0rc
# 20c04ff7 31-Aug-2015 François Tigeot <ftigeot@wolfpond.org>

drm: Update drm_irq.c...

... to commit 56cc279b29c7b204fe7d0943509ae209b8b128db from Linux 3.18
drm: Fix deadlock between event_lock and vbl_lock/vblank_time_lock

Imre Vadász noticed a deadlock in

drm: Update drm_irq.c...

... to commit 56cc279b29c7b204fe7d0943509ae209b8b128db from Linux 3.18
drm: Fix deadlock between event_lock and vbl_lock/vblank_time_lock

Imre Vadász noticed a deadlock in the drm code handling vblank irqs.
Fortunately, this was also noticed by the Linux drm developers and fixing
the issue was just a matter of updating drm_irq.c

Reviewed-by: ivadasz

show more ...


Revision tags: v4.2.4, v4.3.1, v4.2.3, v4.2.1, v4.2.0, v4.0.6, v4.3.0, v4.2.0rc, v4.0.5, v4.0.4
# 5377fbbd 14-Feb-2015 François Tigeot <ftigeot@wolfpond.org>

drm: Add linux/spinlock.h


Revision tags: v4.0.3
# 089893e2 09-Jan-2015 François Tigeot <ftigeot@wolfpond.org>

drm: Add wake_up_interruptible_all()


12