···11+ Sync File API Guide22+ ~~~~~~~~~~~~~~~~~~~33+44+ Gustavo Padovan55+ <gustavo at padovan dot org>66+77+This document serves as a guide for device drivers writers on what the88+sync_file API is, and how drivers can support it. Sync file is the carrier of99+the fences(struct fence) that needs to synchronized between drivers or across1010+process boundaries.1111+1212+The sync_file API is meant to be used to send and receive fence information1313+to/from userspace. It enables userspace to do explicit fencing, where instead1414+of attaching a fence to the buffer a producer driver (such as a GPU or V4L1515+driver) sends the fence related to the buffer to userspace via a sync_file.1616+1717+The sync_file then can be sent to the consumer (DRM driver for example), that1818+will not use the buffer for anything before the fence(s) signals, i.e., the1919+driver that issued the fence is not using/processing the buffer anymore, so it2020+signals that the buffer is ready to use. And vice-versa for the consumer ->2121+producer part of the cycle.2222+2323+Sync files allows userspace awareness on buffer sharing synchronization between2424+drivers.2525+2626+Sync file was originally added in the Android kernel but current Linux Desktop2727+can benefit a lot from it.2828+2929+in-fences and out-fences3030+------------------------3131+3232+Sync files can go either to or from userspace. When a sync_file is sent from3333+the driver to userspace we call the fences it contains 'out-fences'. They are3434+related to a buffer that the driver is processing or is going to process, so3535+the driver an create out-fence to be able to notify, through fence_signal(),3636+when it has finished using (or processing) that buffer. Out-fences are fences3737+that the driver creates.3838+3939+On the other hand if the driver receives fence(s) through a sync_file from4040+userspace we call these fence(s) 'in-fences'. Receiveing in-fences means that4141+we need to wait for the fence(s) to signal before using any buffer related to4242+the in-fences.4343+4444+Creating Sync Files4545+-------------------4646+4747+When a driver needs to send an out-fence userspace it creates a sync_file.4848+4949+Interface:5050+ struct sync_file *sync_file_create(struct fence *fence);5151+5252+The caller pass the out-fence and gets back the sync_file. That is just the5353+first step, next it needs to install an fd on sync_file->file. So it gets an5454+fd:5555+5656+ fd = get_unused_fd_flags(O_CLOEXEC);5757+5858+and installs it on sync_file->file:5959+6060+ fd_install(fd, sync_file->file);6161+6262+The sync_file fd now can be sent to userspace.6363+6464+If the creation process fail, or the sync_file needs to be released by any6565+other reason fput(sync_file->file) should be used.6666+6767+References:6868+[1] struct sync_file in include/linux/sync_file.h6969+[2] All interfaces mentioned above defined in include/linux/sync_file.h