mainline explicit fencing
play

Mainline Explicit Fencing A new era for graphics Gustavo Padovan - PowerPoint PPT Presentation

Mainline Explicit Fencing A new era for graphics Gustavo Padovan Open First Agenda Intro to Fencing Implicit Fencing Explicit Fencing Android Sync Framework Mainline Explicit Fencing struct fence Sync de-stage


  1. Mainline Explicit Fencing A new era for graphics Gustavo Padovan Open First

  2. Agenda ● Intro to Fencing ● Implicit Fencing ● Explicit Fencing ● Android Sync Framework ● Mainline Explicit Fencing ● struct fence ● Sync de-stage ● fence_array ● DRM ● Mesa ● Current Status 2

  3. Fencing ● Ensure ordering between operations ● Synchronize bufger sharing – e.g.: Between GPU and Display drivers ● Implicit fencing: userspace not aware ● Explicit fencing: userspace aware 3

  4. Fences ● Promise from the kernel ● Work has been queued ● Signal when fjnished ● Userspace and drivers wait for the signal 4

  5. Implicit Fencing ● No userspace knowledge/interference ● Simple/Dumb compositors – No bufger state information ● But it can freeze the whole desktop! 5

  6. Implicit Fencing A C B ● Bufger C will be composed of A and B ● Bufgers A and B can render in Parallel ● Compositor notifjed only when both fjnishes 6

  7. Implicit Fencing A C B ● A is fast and B takes too long ● C is blocked waiting for both to render ● The entire desktop freezes! 7

  8. Explicit Fencing ● Fences goes to userspace ● Userspace can control synchronization ● Smart decisions on compositors ● Avoid blocking the entire desktop 8

  9. Explicit Fencing ● No need to wait/block in userspace ● Better for traceability/debuggability ● Vulkan requires it – Part of the API – Effjcient Sub-bufger processing 9

  10. Android Sync Framework ● Android Explicit Fencing implementation ● Use fd for fence passing ● Consumer-Producer queue ● Sync Timeline to control ordering ● Sync Point to represent a fence ● Sync Fence for fd passing 10

  11. Sync Timeline 1 2 3 4 5 1 6 7 ... ● Monotonically increasing counter ● Usually one timeline per driver context 11

  12. Sync Point 1 2 3 4 5 1 6 7 ... 2 3 ● It is the fence ● Represents a value on the timeline ● Three states: active, signaled and error 12

  13. Sync Point 1 1 2 3 3 4 4 5 5 1 6 6 7 7 ... ... 2 8 6 7 8 9 10 11 12 ... ● Multiple timelines! 13

  14. Sync Fence 1 1 2 3 3 4 4 5 5 1 6 6 7 7 ... ... 2 8 6 7 8 9 10 11 12 ... ● Wrap Sync Point into a fjle ● Also have active and signaled states ● Shared via fd-passing to/from userspace 14

  15. Sync Fence 1 1 2 3 3 4 4 5 5 1 6 6 7 7 ... ... 2 8 6 7 8 9 10 11 12 ... ● Sync fence can be merged! ● It can contain many Sync Points 15

  16. Android Sync Framework - ioctls ● sync_wait(fd) ● sync_merge(fd1, fd2) ● sync_fence_info(fd) 16

  17. Mainline Explicit Fencing ● Started with the fence synchronization mechanism by Maarten Lankhorst ● Bufger synchronization between drivers 17

  18. struct fence ● struct fence ● fence->context ● fence_signal() ● fence_wait() ● fence_add_callback() 18

  19. Sync Framework de-staging ● Add Android Sync to staging in 2013 ● Mainly need for fd-passing ● Removed Sync Timeline ● Removed Sync Point ● Reworked Sync Fence 19

  20. Sync File ● Renamed Sync Fence to Sync File ● Changed ioctl API – Provided patch to Android's libsync ● Removed internal kernel API ● Used strictly for fd-passing – sync_fjle = sync_fjle_create(fence) – fence = sync_fjle_get_fence(fd) 20

  21. fence_array ● Subclass of struct fence ● Store multiple fences ● Useful for merged Sync File ● Hide complexity from the drivers 21

  22. DRM/KMS ● Only available for Atomic Modesetting ● Receives fences from userspace ● Wait for fence signal before scanout ● Create new fences to return bufger to pipeline ● Signal created fences at scanout It means previous bufger can be reused – ● Entirely in DRM Core 22

  23. DRM/KMS: in-fences ● in-fences: fences received from userspace ● FENCE_FD property on each DRM Plane ● Receives sync_fjle fds carrying fences ● drm_atomic_helper_wait_for_fences() helper 23

  24. DRM/KMS: out-fences ● out-fences: fences sent to userspace ● One fence per DRM CRTC ● Extended the DRM Atomic ioctl args ● Userspace need to ask for out-fence DRM_MODE_ATOMIC_OUT_FENCE fmag – libdrm: drmModeAtomicAddOutFences() – ● get_unused_fd() + sync_fjle_create() + fd_install() 24

  25. DRM/renderer ● Similar to KMS side ● Extends execbufger ioctl args on each driver ● Every driver needs sync_fjle/fences support ● WIP on freedreno, i915 and virgl 25

  26. Mesa ● EGL_ANDROID_native_fence_sync – Create Android fence fd ● EGL_ANDROID_wait_sync – Make the GPU wait for fence to signal ● WIP by Rob Clark 26

  27. Current Status Summary ● Sync File syncronization de-stage: DONE ● SW_SYNC validation de-stage: DONE ● fence_array: DONE ● DRM/KMS: WIP ● DRM/renderer: WIP ● MESA: WIP ● intel-gpu-tests: WIP ● Wayland: TODO 27

  28. Thank you to everyone involved Daniel Vetter, Rob Clark, Greg KH, Daniel Stone, Robert Foss, Sean Paul, Stéphane Marchesin, Maarten Lankhorst, Chris Wilson, Christian König and others. 28

  29. Thank you! Gustavo Padovan gustavo@padovan.org www.padovan.org www.collabora.com

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend