ETHDR is a part of ovl_adaptor. ETHDR is designed for HDR video and graphics conversion in the external display path. It handles multiple HDR input types and performs tone mapping, color space/color format conversion, and then combine different layers, output the required HDR or SDR signal to the subsequent display path. Signed-off-by: Nancy.Lin <nancy.lin@mediatek.com> Reviewed-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com> Tested-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com> Tested-by: Bo-Chen Chen <rex-bc.chen@mediatek.com> Link: https://patchwork.kernel.org/project/linux-mediatek/patch/20230321121859.2355-3-nancy.lin@mediatek.com/ Signed-off-by: Chun-Kuang Hu <chunkuang.hu@kernel.org>
26 lines
893 B
C
26 lines
893 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (c) 2021 MediaTek Inc.
|
|
*/
|
|
|
|
#ifndef __MTK_ETHDR_H__
|
|
#define __MTK_ETHDR_H__
|
|
|
|
void mtk_ethdr_start(struct device *dev);
|
|
void mtk_ethdr_stop(struct device *dev);
|
|
int mtk_ethdr_clk_enable(struct device *dev);
|
|
void mtk_ethdr_clk_disable(struct device *dev);
|
|
void mtk_ethdr_config(struct device *dev, unsigned int w,
|
|
unsigned int h, unsigned int vrefresh,
|
|
unsigned int bpc, struct cmdq_pkt *cmdq_pkt);
|
|
void mtk_ethdr_layer_config(struct device *dev, unsigned int idx,
|
|
struct mtk_plane_state *state,
|
|
struct cmdq_pkt *cmdq_pkt);
|
|
void mtk_ethdr_register_vblank_cb(struct device *dev,
|
|
void (*vblank_cb)(void *),
|
|
void *vblank_cb_data);
|
|
void mtk_ethdr_unregister_vblank_cb(struct device *dev);
|
|
void mtk_ethdr_enable_vblank(struct device *dev);
|
|
void mtk_ethdr_disable_vblank(struct device *dev);
|
|
#endif
|