aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGustavo Padovan <gustavo.padovan@collabora.co.uk>2016-04-28 09:46:58 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-04-29 20:37:10 -0400
commit62304fb1fc0801925568e191261b650e1546ce8c (patch)
tree08b95e26606d3bd4cf8f4a097fbcfa1fbc11e677
parent460bfc41fd52959311ed0328163f785e023857af (diff)
dma-buf/sync_file: de-stage sync_file
sync_file is useful to connect one or more fences to the file. The file is used by userspace to track fences between drivers that share DMA bufs. Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk> Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/Kconfig2
-rw-r--r--drivers/dma-buf/Kconfig11
-rw-r--r--drivers/dma-buf/Makefile1
-rw-r--r--drivers/dma-buf/sync_file.c (renamed from drivers/staging/android/sync_file.c)0
-rw-r--r--drivers/staging/android/Kconfig1
-rw-r--r--drivers/staging/android/Makefile2
6 files changed, 16 insertions, 1 deletions
diff --git a/drivers/Kconfig b/drivers/Kconfig
index d2ac339de85f..430f761b0d8d 100644
--- a/drivers/Kconfig
+++ b/drivers/Kconfig
@@ -114,6 +114,8 @@ source "drivers/rtc/Kconfig"
114 114
115source "drivers/dma/Kconfig" 115source "drivers/dma/Kconfig"
116 116
117source "drivers/dma-buf/Kconfig"
118
117source "drivers/dca/Kconfig" 119source "drivers/dca/Kconfig"
118 120
119source "drivers/auxdisplay/Kconfig" 121source "drivers/auxdisplay/Kconfig"
diff --git a/drivers/dma-buf/Kconfig b/drivers/dma-buf/Kconfig
new file mode 100644
index 000000000000..9824bc4addf8
--- /dev/null
+++ b/drivers/dma-buf/Kconfig
@@ -0,0 +1,11 @@
1menu "DMABUF options"
2
3config SYNC_FILE
4 bool "sync_file support for fences"
5 default n
6 select ANON_INODES
7 select DMA_SHARED_BUFFER
8 ---help---
9 This option enables the fence framework synchronization to export
10 sync_files to userspace that can represent one or more fences.
11endmenu
diff --git a/drivers/dma-buf/Makefile b/drivers/dma-buf/Makefile
index 57a675f90cd0..4a424eca75ed 100644
--- a/drivers/dma-buf/Makefile
+++ b/drivers/dma-buf/Makefile
@@ -1 +1,2 @@
1obj-y := dma-buf.o fence.o reservation.o seqno-fence.o 1obj-y := dma-buf.o fence.o reservation.o seqno-fence.o
2obj-$(CONFIG_SYNC_FILE) += sync_file.o
diff --git a/drivers/staging/android/sync_file.c b/drivers/dma-buf/sync_file.c
index f08cf2d8309e..f08cf2d8309e 100644
--- a/drivers/staging/android/sync_file.c
+++ b/drivers/dma-buf/sync_file.c
diff --git a/drivers/staging/android/Kconfig b/drivers/staging/android/Kconfig
index 68042ab2eba0..6480f60ebf6c 100644
--- a/drivers/staging/android/Kconfig
+++ b/drivers/staging/android/Kconfig
@@ -38,6 +38,7 @@ config SW_SYNC
38 bool "Software synchronization objects" 38 bool "Software synchronization objects"
39 default n 39 default n
40 depends on SYNC 40 depends on SYNC
41 depends on SYNC_FILE
41 ---help--- 42 ---help---
42 A sync object driver that uses a 32bit counter to coordinate 43 A sync object driver that uses a 32bit counter to coordinate
43 synchronization. Useful when there is no hardware primitive backing 44 synchronization. Useful when there is no hardware primitive backing
diff --git a/drivers/staging/android/Makefile b/drivers/staging/android/Makefile
index ebc2df1b14fd..980d6dc4b265 100644
--- a/drivers/staging/android/Makefile
+++ b/drivers/staging/android/Makefile
@@ -4,5 +4,5 @@ obj-y += ion/
4 4
5obj-$(CONFIG_ASHMEM) += ashmem.o 5obj-$(CONFIG_ASHMEM) += ashmem.o
6obj-$(CONFIG_ANDROID_LOW_MEMORY_KILLER) += lowmemorykiller.o 6obj-$(CONFIG_ANDROID_LOW_MEMORY_KILLER) += lowmemorykiller.o
7obj-$(CONFIG_SYNC) += sync_file.o sync.o sync_debug.o 7obj-$(CONFIG_SYNC) += sync.o sync_debug.o
8obj-$(CONFIG_SW_SYNC) += sw_sync.o 8obj-$(CONFIG_SW_SYNC) += sw_sync.o