2019-05-19 20:07:45 +08:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
2011-10-04 18:19:01 +08:00
|
|
|
config DRM_EXYNOS
|
2020-01-04 23:21:01 +08:00
|
|
|
tristate "DRM Support for Samsung SoC Exynos Series"
|
2020-11-17 01:53:00 +08:00
|
|
|
depends on OF && DRM && COMMON_CLK
|
|
|
|
depends on ARCH_S3C64XX || ARCH_S5PV210 || ARCH_EXYNOS || ARCH_MULTIPLATFORM || COMPILE_TEST
|
2019-07-09 20:08:48 +08:00
|
|
|
depends on MMU
|
2011-10-04 18:19:01 +08:00
|
|
|
select DRM_KMS_HELPER
|
2013-08-30 17:10:51 +08:00
|
|
|
select VIDEOMODE_HELPERS
|
2017-10-23 20:49:34 +08:00
|
|
|
select SND_SOC_HDMI_CODEC if SND_SOC
|
2011-10-04 18:19:01 +08:00
|
|
|
help
|
2020-01-04 23:21:01 +08:00
|
|
|
Choose this option if you have a Samsung SoC Exynos chipset.
|
2011-10-04 18:19:01 +08:00
|
|
|
If M is selected the module will be called exynosdrm.
|
|
|
|
|
2015-10-26 20:03:43 +08:00
|
|
|
if DRM_EXYNOS
|
|
|
|
|
2015-10-26 20:03:44 +08:00
|
|
|
comment "CRTCs"
|
|
|
|
|
2011-10-04 18:19:01 +08:00
|
|
|
config DRM_EXYNOS_FIMD
|
2015-10-26 20:03:45 +08:00
|
|
|
bool "FIMD"
|
2015-10-26 20:03:43 +08:00
|
|
|
depends on !FB_S3C
|
2014-07-17 17:01:21 +08:00
|
|
|
select MFD_SYSCON
|
2011-10-04 18:19:01 +08:00
|
|
|
help
|
|
|
|
Choose this option if you want to use Exynos FIMD for DRM.
|
drm/exynos: added hdmi display support
This patch is hdmi display support for exynos drm driver.
There is already v4l2 based exynos hdmi driver in drivers/media/video/s5p-tv
and some low level code is already in s5p-tv and even headers for register
define are almost same. but in this patch, we decide not to consider separated
common code with s5p-tv.
Exynos HDMI is composed of 5 blocks, mixer, vp, hdmi, hdmiphy and ddc.
1. mixer. The piece of hardware responsible for mixing and blending multiple
data inputs before passing it to an output device. The mixer is capable of
handling up to three image layers. One is the output of VP. Other two are
images in RGB format. The blending factor, and layers' priority are controlled
by mixer's registers. The output is passed to HDMI.
2. vp (video processor). It is used for processing of NV12/NV21 data. An image
stored in RAM is accessed by DMA. The output in YCbCr444 format is send to
mixer.
3. hdmi. The piece of HW responsible for generation of HDMI packets. It takes
pixel data from mixer and transforms it into data frames. The output is send
to HDMIPHY interface.
4. hdmiphy. Physical interface for HDMI. Its duties are sending HDMI packets to
HDMI connector. Basically, it contains a PLL that produces source clock for
mixer, vp and hdmi.
5. ddc (display data channel). It is dedicated i2c channel to exchange display
information as edid with display monitor.
With plane support, exynos hdmi driver fully supports two mixer layes and vp
layer. Also vp layer supports multi buffer plane pixel formats having non
contigus memory spaces.
In exynos drm driver, common drm_hdmi driver to interface with drm framework
has opertion pointers for mixer and hdmi. this drm_hdmi driver is registered as
sub driver of exynos_drm. hdmi has hdmiphy and ddc i2c clients and controls
them. mixer controls all overlay layers in both mixer and vp.
Vblank interrupts for hdmi are handled by mixer internally because drm
framework cannot support multiple irq id. And pipe number is used to check
which display device irq happens.
History
v2: this version
- drm plane feature support to handle overlay layers.
- multi buffer plane pixel format support for vp layer.
- vp layer support
RFCv1: original
- at https://lkml.org/lkml/2011/11/4/164
Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
Signed-off-by: Inki Dae <inki.dae@samsung.com>
Signed-off-by: Joonyoung Shim <jy0922.shim@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
2011-12-21 16:39:39 +08:00
|
|
|
|
2015-06-12 20:59:00 +08:00
|
|
|
config DRM_EXYNOS5433_DECON
|
2015-10-26 20:03:45 +08:00
|
|
|
bool "DECON on Exynos5433"
|
2015-06-12 20:59:00 +08:00
|
|
|
help
|
|
|
|
Choose this option if you want to use Exynos5433 DECON for DRM.
|
|
|
|
|
2015-02-05 23:54:04 +08:00
|
|
|
config DRM_EXYNOS7_DECON
|
2015-10-26 20:03:45 +08:00
|
|
|
bool "DECON on Exynos7"
|
2015-10-26 20:03:43 +08:00
|
|
|
depends on !FB_S3C
|
2015-02-05 23:54:04 +08:00
|
|
|
help
|
|
|
|
Choose this option if you want to use Exynos DECON for DRM.
|
|
|
|
|
2015-10-26 20:03:44 +08:00
|
|
|
config DRM_EXYNOS_MIXER
|
2015-10-26 20:03:45 +08:00
|
|
|
bool "Mixer"
|
2015-10-26 20:03:44 +08:00
|
|
|
help
|
|
|
|
Choose this option if you want to use Exynos Mixer for DRM.
|
|
|
|
|
|
|
|
config DRM_EXYNOS_VIDI
|
2015-10-26 20:03:45 +08:00
|
|
|
bool "Virtual Display"
|
2015-10-26 20:03:44 +08:00
|
|
|
help
|
|
|
|
Choose this option if you want to use Exynos VIDI for DRM.
|
|
|
|
|
|
|
|
comment "Encoders and Bridges"
|
|
|
|
|
2014-03-17 20:03:56 +08:00
|
|
|
config DRM_EXYNOS_DPI
|
2015-10-26 20:03:45 +08:00
|
|
|
bool "Parallel output"
|
2015-10-26 20:03:44 +08:00
|
|
|
depends on DRM_EXYNOS_FIMD
|
2014-03-17 20:03:56 +08:00
|
|
|
select DRM_PANEL
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
This enables support for Exynos parallel output.
|
|
|
|
|
2014-04-04 00:19:56 +08:00
|
|
|
config DRM_EXYNOS_DSI
|
2015-10-26 20:03:45 +08:00
|
|
|
bool "MIPI-DSI host"
|
2015-10-26 20:03:43 +08:00
|
|
|
depends on DRM_EXYNOS_FIMD || DRM_EXYNOS5433_DECON || DRM_EXYNOS7_DECON
|
2014-04-04 00:19:56 +08:00
|
|
|
select DRM_MIPI_DSI
|
|
|
|
select DRM_PANEL
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
This enables support for Exynos MIPI-DSI device.
|
|
|
|
|
2014-01-31 05:19:22 +08:00
|
|
|
config DRM_EXYNOS_DP
|
2020-01-04 23:21:01 +08:00
|
|
|
bool "Exynos specific extensions for Analogix DP driver"
|
2015-10-26 20:03:43 +08:00
|
|
|
depends on DRM_EXYNOS_FIMD || DRM_EXYNOS7_DECON
|
2016-03-29 09:57:03 +08:00
|
|
|
select DRM_ANALOGIX_DP
|
2014-01-31 05:19:22 +08:00
|
|
|
default DRM_EXYNOS
|
2014-08-01 01:42:14 +08:00
|
|
|
select DRM_PANEL
|
2014-01-31 05:19:22 +08:00
|
|
|
help
|
|
|
|
This enables support for DP device.
|
|
|
|
|
drm/exynos: added hdmi display support
This patch is hdmi display support for exynos drm driver.
There is already v4l2 based exynos hdmi driver in drivers/media/video/s5p-tv
and some low level code is already in s5p-tv and even headers for register
define are almost same. but in this patch, we decide not to consider separated
common code with s5p-tv.
Exynos HDMI is composed of 5 blocks, mixer, vp, hdmi, hdmiphy and ddc.
1. mixer. The piece of hardware responsible for mixing and blending multiple
data inputs before passing it to an output device. The mixer is capable of
handling up to three image layers. One is the output of VP. Other two are
images in RGB format. The blending factor, and layers' priority are controlled
by mixer's registers. The output is passed to HDMI.
2. vp (video processor). It is used for processing of NV12/NV21 data. An image
stored in RAM is accessed by DMA. The output in YCbCr444 format is send to
mixer.
3. hdmi. The piece of HW responsible for generation of HDMI packets. It takes
pixel data from mixer and transforms it into data frames. The output is send
to HDMIPHY interface.
4. hdmiphy. Physical interface for HDMI. Its duties are sending HDMI packets to
HDMI connector. Basically, it contains a PLL that produces source clock for
mixer, vp and hdmi.
5. ddc (display data channel). It is dedicated i2c channel to exchange display
information as edid with display monitor.
With plane support, exynos hdmi driver fully supports two mixer layes and vp
layer. Also vp layer supports multi buffer plane pixel formats having non
contigus memory spaces.
In exynos drm driver, common drm_hdmi driver to interface with drm framework
has opertion pointers for mixer and hdmi. this drm_hdmi driver is registered as
sub driver of exynos_drm. hdmi has hdmiphy and ddc i2c clients and controls
them. mixer controls all overlay layers in both mixer and vp.
Vblank interrupts for hdmi are handled by mixer internally because drm
framework cannot support multiple irq id. And pipe number is used to check
which display device irq happens.
History
v2: this version
- drm plane feature support to handle overlay layers.
- multi buffer plane pixel format support for vp layer.
- vp layer support
RFCv1: original
- at https://lkml.org/lkml/2011/11/4/164
Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
Signed-off-by: Inki Dae <inki.dae@samsung.com>
Signed-off-by: Joonyoung Shim <jy0922.shim@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
2011-12-21 16:39:39 +08:00
|
|
|
config DRM_EXYNOS_HDMI
|
2015-10-26 20:03:45 +08:00
|
|
|
bool "HDMI"
|
2016-08-05 21:38:32 +08:00
|
|
|
depends on DRM_EXYNOS_MIXER || DRM_EXYNOS5433_DECON
|
2017-07-17 19:48:14 +08:00
|
|
|
select CEC_CORE if CEC_NOTIFIER
|
drm/exynos: added hdmi display support
This patch is hdmi display support for exynos drm driver.
There is already v4l2 based exynos hdmi driver in drivers/media/video/s5p-tv
and some low level code is already in s5p-tv and even headers for register
define are almost same. but in this patch, we decide not to consider separated
common code with s5p-tv.
Exynos HDMI is composed of 5 blocks, mixer, vp, hdmi, hdmiphy and ddc.
1. mixer. The piece of hardware responsible for mixing and blending multiple
data inputs before passing it to an output device. The mixer is capable of
handling up to three image layers. One is the output of VP. Other two are
images in RGB format. The blending factor, and layers' priority are controlled
by mixer's registers. The output is passed to HDMI.
2. vp (video processor). It is used for processing of NV12/NV21 data. An image
stored in RAM is accessed by DMA. The output in YCbCr444 format is send to
mixer.
3. hdmi. The piece of HW responsible for generation of HDMI packets. It takes
pixel data from mixer and transforms it into data frames. The output is send
to HDMIPHY interface.
4. hdmiphy. Physical interface for HDMI. Its duties are sending HDMI packets to
HDMI connector. Basically, it contains a PLL that produces source clock for
mixer, vp and hdmi.
5. ddc (display data channel). It is dedicated i2c channel to exchange display
information as edid with display monitor.
With plane support, exynos hdmi driver fully supports two mixer layes and vp
layer. Also vp layer supports multi buffer plane pixel formats having non
contigus memory spaces.
In exynos drm driver, common drm_hdmi driver to interface with drm framework
has opertion pointers for mixer and hdmi. this drm_hdmi driver is registered as
sub driver of exynos_drm. hdmi has hdmiphy and ddc i2c clients and controls
them. mixer controls all overlay layers in both mixer and vp.
Vblank interrupts for hdmi are handled by mixer internally because drm
framework cannot support multiple irq id. And pipe number is used to check
which display device irq happens.
History
v2: this version
- drm plane feature support to handle overlay layers.
- multi buffer plane pixel format support for vp layer.
- vp layer support
RFCv1: original
- at https://lkml.org/lkml/2011/11/4/164
Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
Signed-off-by: Inki Dae <inki.dae@samsung.com>
Signed-off-by: Joonyoung Shim <jy0922.shim@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
2011-12-21 16:39:39 +08:00
|
|
|
help
|
|
|
|
Choose this option if you want to use Exynos HDMI for DRM.
|
2012-03-21 09:55:26 +08:00
|
|
|
|
2015-10-26 20:03:44 +08:00
|
|
|
config DRM_EXYNOS_MIC
|
2015-10-26 20:03:45 +08:00
|
|
|
bool "Mobile Image Compressor"
|
2015-10-26 20:03:44 +08:00
|
|
|
depends on DRM_EXYNOS5433_DECON
|
2012-03-21 09:55:26 +08:00
|
|
|
help
|
2015-10-26 20:03:44 +08:00
|
|
|
Choose this option if you want to use Exynos MIC for DRM.
|
|
|
|
|
|
|
|
comment "Sub-drivers"
|
2012-05-17 19:06:32 +08:00
|
|
|
|
|
|
|
config DRM_EXYNOS_G2D
|
2015-10-26 20:03:45 +08:00
|
|
|
bool "G2D"
|
2019-06-27 19:00:54 +08:00
|
|
|
depends on VIDEO_SAMSUNG_S5P_G2D=n || COMPILE_TEST
|
2012-05-17 19:06:32 +08:00
|
|
|
help
|
|
|
|
Choose this option if you want to use Exynos G2D for DRM.
|
drm/exynos: add ipp subsystem
This patch adds Image Post Processing(IPP) support for exynos drm driver.
IPP supports image scaler/rotator and input/output DMA operations
using IPP subsystem framework to control FIMC, Rotator and GSC hardware
and supports some user interfaces for user side.
And each IPP-based drivers support Memory to Memory operations
with various converting. And in case of FIMC hardware, it also supports
Writeback and Display output operations through local path.
Features:
- Memory to Memory operation support.
- Various pixel formats support.
- Image scaling support.
- Color Space Conversion support.
- Image crop operation support.
- Rotate operation support to 90, 180 or 270 degree.
- Flip operation support to vertical, horizontal or both.
- Writeback operation support to display blended image of FIMD fifo on screen
A summary to IPP Subsystem operations:
First of all, user should get property capabilities from IPP subsystem
and set these properties to hardware registers for desired operations.
The properties could be pixel format, position, rotation degree and
flip operation.
And next, user should set source and destination buffer data using
DRM_EXYNOS_IPP_QUEUE_BUF ioctl command with gem handles to source and
destinition buffers.
And next, user can control user-desired hardware with desired operations
such as play, stop, pause and resume controls.
And finally, user can aware of dma operation completion and also get
destination buffer that it contains user-desried result through dequeue
command.
IOCTL commands:
- DRM_EXYNOS_IPP_GET_PROPERTY
. get ipp driver capabilitis and id.
- DRM_EXYNOS_IPP_SET_PROPERTY
. set format, position, rotation, flip to source and destination buffers
- DRM_EXYNOS_IPP_QUEUE_BUF
. enqueue/dequeue buffer and make event list.
- DRM_EXYNOS_IPP_CMD_CTRL
. play/stop/pause/resume control.
Event:
- DRM_EXYNOS_IPP_EVENT
. a event to notify dma operation completion to user side.
Basic control flow:
Open -> Get properties -> User choose desired IPP sub driver(FIMC, Rotator
or GSCALER) -> Set Property -> Create gem handle -> Enqueue to source and
destination buffers -> Command control(Play) -> Event is notified to User
-> User gets destinition buffer complated -> (Enqueue to source and
destination buffers -> Event is notified to User) * N -> Queue/Dequeue to
source and destination buffers -> Command control(Stop) -> Free gem handle
-> Close
Changelog v1 ~ v5:
- added comments, code fixups and cleanups.
Signed-off-by: Eunchul Kim <chulspro.kim@samsung.com>
Signed-off-by: Jinyoung Jeon <jy0.jeon@samsung.com>
Signed-off-by: Inki Dae <inki.dae@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
2012-12-14 17:10:31 +08:00
|
|
|
|
drm/exynos: ipp: Add IPP v2 framework
This patch adds Exynos IPP v2 subsystem and userspace API.
New userspace API is focused ONLY on memory-to-memory image processing.
The two remainging operation modes of obsolete IPP v1 API (framebuffer
writeback and local-path output with image processing) can be implemented
using standard DRM features: writeback connectors and additional DRM planes
with scaling features.
V2 IPP userspace API is based on stateless approach, which much better fits
to memory-to-memory image processing model. It also provides support for
all image formats, which are both already defined in DRM API and supported
by the existing IPP hardware modules.
The API consists of the following ioctls:
- DRM_IOCTL_EXYNOS_IPP_GET_RESOURCES: to enumerate all available image
processing modules,
- DRM_IOCTL_EXYNOS_IPP_GET_CAPS: to query capabilities and supported image
formats of given IPP module,
- DRM_IOCTL_EXYNOS_IPP_GET_LIMITS: to query hardware limitiations for
selected image format of given IPP module,
- DRM_IOCTL_EXYNOS_IPP_COMMIT: to perform operation described by the
provided structures (source and destination buffers, operation rectangle,
transformation, etc).
The proposed userspace API is extensible. In the future more advanced image
processing operations can be defined to support for example blending.
Userspace API is fully functional also on DRM render nodes, so it is not
limited to the root/privileged client.
Internal driver API also has been completely rewritten. New IPP core
performs all possible input validation, checks and object life-time
control. The drivers can focus only on writing configuration to hardware
registers. Stateless nature of DRM_IOCTL_EXYNOS_IPP_COMMIT ioctl simplifies
the driver API. Minimal driver needs to provide a single callback for
starting processing and an array with supported image formats.
Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
Tested-by: Hoegeun Kwon <hoegeun.kwon@samsung.com>
Merge conflict so merged manually.
Signed-off-by: Inki Dae <inki.dae@samsung.com>
2018-05-10 07:46:36 +08:00
|
|
|
config DRM_EXYNOS_IPP
|
|
|
|
bool
|
|
|
|
|
2012-12-14 16:58:55 +08:00
|
|
|
config DRM_EXYNOS_FIMC
|
2015-10-26 20:03:45 +08:00
|
|
|
bool "FIMC"
|
2018-05-10 07:52:12 +08:00
|
|
|
select DRM_EXYNOS_IPP
|
2012-12-14 16:58:55 +08:00
|
|
|
help
|
|
|
|
Choose this option if you want to use Exynos FIMC for DRM.
|
2012-12-14 16:58:56 +08:00
|
|
|
|
|
|
|
config DRM_EXYNOS_ROTATOR
|
2015-10-26 20:03:45 +08:00
|
|
|
bool "Rotator"
|
2018-05-09 16:59:23 +08:00
|
|
|
select DRM_EXYNOS_IPP
|
2012-12-14 16:58:56 +08:00
|
|
|
help
|
|
|
|
Choose this option if you want to use Exynos Rotator for DRM.
|
|
|
|
|
2018-05-09 16:59:26 +08:00
|
|
|
config DRM_EXYNOS_SCALER
|
|
|
|
bool "Scaler"
|
|
|
|
select DRM_EXYNOS_IPP
|
|
|
|
help
|
|
|
|
Choose this option if you want to use Exynos Scaler for DRM.
|
|
|
|
|
2012-12-14 16:58:57 +08:00
|
|
|
config DRM_EXYNOS_GSC
|
2015-10-26 20:03:45 +08:00
|
|
|
bool "GScaler"
|
2019-06-27 19:00:54 +08:00
|
|
|
depends on VIDEO_SAMSUNG_EXYNOS_GSC=n || COMPILE_TEST
|
2018-05-09 16:59:24 +08:00
|
|
|
select DRM_EXYNOS_IPP
|
2012-12-14 16:58:57 +08:00
|
|
|
help
|
|
|
|
Choose this option if you want to use Exynos GSC for DRM.
|
2015-06-12 20:59:02 +08:00
|
|
|
|
2015-10-26 20:03:43 +08:00
|
|
|
endif
|