cc17504307
android12-5.10 February 2023 release 1 Artifacts: https://ci.android.com/builds/submitted/9611440/kernel_aarch64/latest * tag 'android12-5.10-2023-02_r1': (5560 commits) ANDROID: GKI: Enable ARM64_ERRATUM_2454944 ANDROID: dma-ops: Add restricted vendor hook ANDROID: arm64: Work around Cortex-A510 erratum 2454944 ANDROID: mm/vmalloc: Add override for lazy vunmap ANDROID: cpuidle-psci: Fix suspicious RCU usage ANDROID: ABI: update allowed list for galaxy FROMGIT: f2fs: add sysfs nodes to set last_age_weight FROMGIT: f2fs: fix wrong calculation of block age ANDROID: struct io_uring ABI preservation hack for 5.10.162 changes ANDROID: fix up struct task_struct ABI change in 5.10.162 ANDROID: add flags variable back to struct proto_ops UPSTREAM: io_uring: pass in EPOLL_URING_WAKE for eventfd signaling and wakeups UPSTREAM: eventfd: provide a eventfd_signal_mask() helper UPSTREAM: eventpoll: add EPOLL_URING_WAKE poll wakeup flag UPSTREAM: Revert "proc: don't allow async path resolution of /proc/self components" UPSTREAM: Revert "proc: don't allow async path resolution of /proc/thread-self components" UPSTREAM: net: remove cmsg restriction from io_uring based send/recvmsg calls UPSTREAM: task_work: unconditionally run task_work from get_signal() UPSTREAM: signal: kill JOBCTL_TASK_WORK UPSTREAM: io_uring: import 5.15-stable io_uring ... Change-Id: I2b16474d6e3a91f1d702486ec6d1565a7bc310e3 Conflicts: Documentation/ABI/testing/configfs-usb-gadget-uac2 Documentation/usb/gadget-testing.rst Makefile arch/arm/boot/dts/rk3288-evb-act8846.dts arch/arm64/mm/Makefile drivers/dma-buf/dma-buf.c drivers/gpu/drm/bridge/analogix/analogix_dp_core.c drivers/gpu/drm/bridge/synopsys/dw-hdmi.c drivers/gpu/drm/rockchip/analogix_dp-rockchip.c drivers/gpu/drm/rockchip/rockchip_drm_vop.c drivers/mmc/core/mmc.c drivers/pci/controller/dwc/pcie-designware-host.c drivers/pinctrl/pinctrl-rockchip.c drivers/regulator/core.c drivers/usb/dwc3/ep0.c drivers/usb/dwc3/gadget.c drivers/usb/gadget/function/f_hid.c drivers/usb/gadget/function/f_uac1.c drivers/usb/gadget/function/f_uac2.c drivers/usb/gadget/function/u_audio.c drivers/usb/gadget/function/u_audio.h drivers/usb/gadget/function/u_uac2.h drivers/usb/host/xhci.h drivers/usb/storage/unusual_uas.h drivers/usb/typec/altmodes/displayport.c include/linux/page_ext.h mm/cma.c mm/page_ext.c sound/core/pcm_dmaengine.c sound/soc/codecs/hdmi-codec.c include/linux/stmmac.h sound/drivers/aloop.c drivers/pci/controller/dwc/pcie-designware.h
123 lines
3.9 KiB
Plaintext
123 lines
3.9 KiB
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
menu "DMABUF options"
|
|
|
|
config DMABUF_CACHE
|
|
bool "DMABUF cache attachment"
|
|
default ARCH_ROCKCHIP
|
|
depends on NO_GKI
|
|
help
|
|
This option support to store attachments in a list and destroy them by
|
|
set to a callback list in the dtor of dma-buf.
|
|
|
|
config RK_DMABUF_DEBUG
|
|
bool "Rockchip DMABUF debug option"
|
|
depends on NO_GKI
|
|
select RK_DMABUF_PROCFS
|
|
help
|
|
This option support to debug all the dmabuf on db_list, allows to set
|
|
a name for dmabuf. If not sure, say N
|
|
|
|
config RK_DMABUF_DEBUG_ADVANCED
|
|
bool "Rockchip DMABUF debug advanced option"
|
|
depends on RK_DMABUF_DEBUG
|
|
help
|
|
This option support to debug all the dmabuf on db_list, allows to attach
|
|
and map a dmabuf who has no attachment. If not sure, say N
|
|
|
|
config DMABUF_PARTIAL
|
|
bool "Support for partial cache maintenance"
|
|
default y
|
|
help
|
|
In order to improve performance, allow dma-buf clients to
|
|
apply cache maintenance to only a subset of a dma-buf.
|
|
|
|
Kernel clients will be able to use the dma_buf_begin_cpu_access_partial
|
|
and dma_buf_end_cpu_access_partial functions to only apply cache
|
|
maintenance to a range within the dma-buf.
|
|
|
|
config SYNC_FILE
|
|
bool "Explicit Synchronization Framework"
|
|
default n
|
|
select DMA_SHARED_BUFFER
|
|
help
|
|
The Sync File Framework adds explicit synchronization via
|
|
userspace. It enables send/receive 'struct dma_fence' objects to/from
|
|
userspace via Sync File fds for synchronization between drivers via
|
|
userspace components. It has been ported from Android.
|
|
|
|
The first and main user for this is graphics in which a fence is
|
|
associated with a buffer. When a job is submitted to the GPU a fence
|
|
is attached to the buffer and is transferred via userspace, using Sync
|
|
Files fds, to the DRM driver for example. More details at
|
|
Documentation/driver-api/sync_file.rst.
|
|
|
|
config SW_SYNC
|
|
tristate "Sync File Validation Framework"
|
|
default n
|
|
depends on SYNC_FILE
|
|
help
|
|
A sync object driver that uses a 32bit counter to coordinate
|
|
synchronization. Useful when there is no hardware primitive backing
|
|
the synchronization.
|
|
|
|
WARNING: improper use of this can result in deadlocking kernel
|
|
drivers from userspace. Intended for test and debug only.
|
|
|
|
config SW_SYNC_DEBUG
|
|
bool "SW Sync Debug"
|
|
depends on DEBUG_FS && SW_SYNC && NO_GKI
|
|
default SW_SYNC
|
|
help
|
|
To get current fence point and timeline status.
|
|
|
|
config UDMABUF
|
|
bool "userspace dmabuf misc driver"
|
|
default n
|
|
depends on DMA_SHARED_BUFFER
|
|
depends on MEMFD_CREATE || COMPILE_TEST
|
|
help
|
|
A driver to let userspace turn memfd regions into dma-bufs.
|
|
Qemu can use this to create host dmabufs for guest framebuffers.
|
|
|
|
config DMABUF_MOVE_NOTIFY
|
|
bool "Move notify between drivers (EXPERIMENTAL)"
|
|
default n
|
|
depends on DMA_SHARED_BUFFER
|
|
help
|
|
Don't pin buffers if the dynamic DMA-buf interface is available on
|
|
both the exporter as well as the importer. This fixes a security
|
|
problem where userspace is able to pin unrestricted amounts of memory
|
|
through DMA-buf.
|
|
This is marked experimental because we don't yet have a consistent
|
|
execution context and memory management between drivers.
|
|
|
|
config DMABUF_SELFTESTS
|
|
tristate "Selftests for the dma-buf interfaces"
|
|
default n
|
|
depends on DMA_SHARED_BUFFER
|
|
|
|
menuconfig DMABUF_HEAPS
|
|
bool "DMA-BUF Userland Memory Heaps"
|
|
select DMA_SHARED_BUFFER
|
|
help
|
|
Choose this option to enable the DMA-BUF userland memory heaps.
|
|
This options creates per heap chardevs in /dev/dma_heap/ which
|
|
allows userspace to allocate dma-bufs that can be shared
|
|
between drivers.
|
|
|
|
menuconfig DMABUF_SYSFS_STATS
|
|
bool "DMA-BUF sysfs statistics"
|
|
depends on DMA_SHARED_BUFFER
|
|
help
|
|
Choose this option to enable DMA-BUF sysfs statistics
|
|
in location /sys/kernel/dmabuf/buffers.
|
|
|
|
/sys/kernel/dmabuf/buffers/<inode_number> will contain
|
|
statistics for the DMA-BUF with the unique inode number
|
|
<inode_number>.
|
|
|
|
source "drivers/dma-buf/heaps/Kconfig"
|
|
source "drivers/dma-buf/rk_heaps/Kconfig"
|
|
|
|
endmenu
|