18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0-only */
28c2ecf20Sopenharmony_ci/*
38c2ecf20Sopenharmony_ci *
48c2ecf20Sopenharmony_ci *  Cloned from drivers/media/video/s5p-tv/regs-mixer.h
58c2ecf20Sopenharmony_ci *
68c2ecf20Sopenharmony_ci * Copyright (c) 2010-2011 Samsung Electronics Co., Ltd.
78c2ecf20Sopenharmony_ci * http://www.samsung.com/
88c2ecf20Sopenharmony_ci *
98c2ecf20Sopenharmony_ci * Mixer register header file for Samsung Mixer driver
108c2ecf20Sopenharmony_ci*/
118c2ecf20Sopenharmony_ci#ifndef SAMSUNG_REGS_MIXER_H
128c2ecf20Sopenharmony_ci#define SAMSUNG_REGS_MIXER_H
138c2ecf20Sopenharmony_ci
148c2ecf20Sopenharmony_ci/*
158c2ecf20Sopenharmony_ci * Register part
168c2ecf20Sopenharmony_ci */
178c2ecf20Sopenharmony_ci#define MXR_STATUS			0x0000
188c2ecf20Sopenharmony_ci#define MXR_CFG				0x0004
198c2ecf20Sopenharmony_ci#define MXR_INT_EN			0x0008
208c2ecf20Sopenharmony_ci#define MXR_INT_STATUS			0x000C
218c2ecf20Sopenharmony_ci#define MXR_LAYER_CFG			0x0010
228c2ecf20Sopenharmony_ci#define MXR_VIDEO_CFG			0x0014
238c2ecf20Sopenharmony_ci#define MXR_GRAPHIC0_CFG		0x0020
248c2ecf20Sopenharmony_ci#define MXR_GRAPHIC0_BASE		0x0024
258c2ecf20Sopenharmony_ci#define MXR_GRAPHIC0_SPAN		0x0028
268c2ecf20Sopenharmony_ci#define MXR_GRAPHIC0_SXY		0x002C
278c2ecf20Sopenharmony_ci#define MXR_GRAPHIC0_WH			0x0030
288c2ecf20Sopenharmony_ci#define MXR_GRAPHIC0_DXY		0x0034
298c2ecf20Sopenharmony_ci#define MXR_GRAPHIC0_BLANK		0x0038
308c2ecf20Sopenharmony_ci#define MXR_GRAPHIC1_CFG		0x0040
318c2ecf20Sopenharmony_ci#define MXR_GRAPHIC1_BASE		0x0044
328c2ecf20Sopenharmony_ci#define MXR_GRAPHIC1_SPAN		0x0048
338c2ecf20Sopenharmony_ci#define MXR_GRAPHIC1_SXY		0x004C
348c2ecf20Sopenharmony_ci#define MXR_GRAPHIC1_WH			0x0050
358c2ecf20Sopenharmony_ci#define MXR_GRAPHIC1_DXY		0x0054
368c2ecf20Sopenharmony_ci#define MXR_GRAPHIC1_BLANK		0x0058
378c2ecf20Sopenharmony_ci#define MXR_BG_CFG			0x0060
388c2ecf20Sopenharmony_ci#define MXR_BG_COLOR0			0x0064
398c2ecf20Sopenharmony_ci#define MXR_BG_COLOR1			0x0068
408c2ecf20Sopenharmony_ci#define MXR_BG_COLOR2			0x006C
418c2ecf20Sopenharmony_ci#define MXR_CM_COEFF_Y			0x0080
428c2ecf20Sopenharmony_ci#define MXR_CM_COEFF_CB			0x0084
438c2ecf20Sopenharmony_ci#define MXR_CM_COEFF_CR			0x0088
448c2ecf20Sopenharmony_ci#define MXR_MO				0x0304
458c2ecf20Sopenharmony_ci#define MXR_RESOLUTION			0x0310
468c2ecf20Sopenharmony_ci
478c2ecf20Sopenharmony_ci#define MXR_CFG_S			0x2004
488c2ecf20Sopenharmony_ci#define MXR_GRAPHIC0_BASE_S		0x2024
498c2ecf20Sopenharmony_ci#define MXR_GRAPHIC1_BASE_S		0x2044
508c2ecf20Sopenharmony_ci
518c2ecf20Sopenharmony_ci/* for parametrized access to layer registers */
528c2ecf20Sopenharmony_ci#define MXR_GRAPHIC_CFG(i)		(0x0020 + (i) * 0x20)
538c2ecf20Sopenharmony_ci#define MXR_GRAPHIC_BASE(i)		(0x0024 + (i) * 0x20)
548c2ecf20Sopenharmony_ci#define MXR_GRAPHIC_SPAN(i)		(0x0028 + (i) * 0x20)
558c2ecf20Sopenharmony_ci#define MXR_GRAPHIC_SXY(i)		(0x002C + (i) * 0x20)
568c2ecf20Sopenharmony_ci#define MXR_GRAPHIC_WH(i)		(0x0030 + (i) * 0x20)
578c2ecf20Sopenharmony_ci#define MXR_GRAPHIC_DXY(i)		(0x0034 + (i) * 0x20)
588c2ecf20Sopenharmony_ci#define MXR_GRAPHIC_BLANK(i)		(0x0038 + (i) * 0x20)
598c2ecf20Sopenharmony_ci#define MXR_GRAPHIC_BASE_S(i)		(0x2024 + (i) * 0x20)
608c2ecf20Sopenharmony_ci
618c2ecf20Sopenharmony_ci/*
628c2ecf20Sopenharmony_ci * Bit definition part
638c2ecf20Sopenharmony_ci */
648c2ecf20Sopenharmony_ci
658c2ecf20Sopenharmony_ci/* generates mask for range of bits */
668c2ecf20Sopenharmony_ci#define MXR_MASK(high_bit, low_bit) \
678c2ecf20Sopenharmony_ci	(((2 << ((high_bit) - (low_bit))) - 1) << (low_bit))
688c2ecf20Sopenharmony_ci
698c2ecf20Sopenharmony_ci#define MXR_MASK_VAL(val, high_bit, low_bit) \
708c2ecf20Sopenharmony_ci	(((val) << (low_bit)) & MXR_MASK(high_bit, low_bit))
718c2ecf20Sopenharmony_ci
728c2ecf20Sopenharmony_ci/* bits for MXR_STATUS */
738c2ecf20Sopenharmony_ci#define MXR_STATUS_SOFT_RESET		(1 << 8)
748c2ecf20Sopenharmony_ci#define MXR_STATUS_16_BURST		(1 << 7)
758c2ecf20Sopenharmony_ci#define MXR_STATUS_BURST_MASK		(1 << 7)
768c2ecf20Sopenharmony_ci#define MXR_STATUS_BIG_ENDIAN		(1 << 3)
778c2ecf20Sopenharmony_ci#define MXR_STATUS_ENDIAN_MASK		(1 << 3)
788c2ecf20Sopenharmony_ci#define MXR_STATUS_SYNC_ENABLE		(1 << 2)
798c2ecf20Sopenharmony_ci#define MXR_STATUS_REG_IDLE		(1 << 1)
808c2ecf20Sopenharmony_ci#define MXR_STATUS_REG_RUN		(1 << 0)
818c2ecf20Sopenharmony_ci
828c2ecf20Sopenharmony_ci/* bits for MXR_CFG */
838c2ecf20Sopenharmony_ci#define MXR_CFG_LAYER_UPDATE		(1 << 31)
848c2ecf20Sopenharmony_ci#define MXR_CFG_LAYER_UPDATE_COUNT_MASK (3 << 29)
858c2ecf20Sopenharmony_ci#define MXR_CFG_QUANT_RANGE_FULL	(0 << 9)
868c2ecf20Sopenharmony_ci#define MXR_CFG_QUANT_RANGE_LIMITED	(1 << 9)
878c2ecf20Sopenharmony_ci#define MXR_CFG_RGB601			(0 << 10)
888c2ecf20Sopenharmony_ci#define MXR_CFG_RGB709			(1 << 10)
898c2ecf20Sopenharmony_ci
908c2ecf20Sopenharmony_ci#define MXR_CFG_RGB_FMT_MASK		0x600
918c2ecf20Sopenharmony_ci#define MXR_CFG_OUT_YUV444		(0 << 8)
928c2ecf20Sopenharmony_ci#define MXR_CFG_OUT_RGB888		(1 << 8)
938c2ecf20Sopenharmony_ci#define MXR_CFG_OUT_MASK		(1 << 8)
948c2ecf20Sopenharmony_ci#define MXR_CFG_DST_SDO			(0 << 7)
958c2ecf20Sopenharmony_ci#define MXR_CFG_DST_HDMI		(1 << 7)
968c2ecf20Sopenharmony_ci#define MXR_CFG_DST_MASK		(1 << 7)
978c2ecf20Sopenharmony_ci#define MXR_CFG_SCAN_HD_720		(0 << 6)
988c2ecf20Sopenharmony_ci#define MXR_CFG_SCAN_HD_1080		(1 << 6)
998c2ecf20Sopenharmony_ci#define MXR_CFG_GRP1_ENABLE		(1 << 5)
1008c2ecf20Sopenharmony_ci#define MXR_CFG_GRP0_ENABLE		(1 << 4)
1018c2ecf20Sopenharmony_ci#define MXR_CFG_VP_ENABLE		(1 << 3)
1028c2ecf20Sopenharmony_ci#define MXR_CFG_SCAN_INTERLACE		(0 << 2)
1038c2ecf20Sopenharmony_ci#define MXR_CFG_SCAN_PROGRESSIVE	(1 << 2)
1048c2ecf20Sopenharmony_ci#define MXR_CFG_SCAN_NTSC		(0 << 1)
1058c2ecf20Sopenharmony_ci#define MXR_CFG_SCAN_PAL		(1 << 1)
1068c2ecf20Sopenharmony_ci#define MXR_CFG_SCAN_SD			(0 << 0)
1078c2ecf20Sopenharmony_ci#define MXR_CFG_SCAN_HD			(1 << 0)
1088c2ecf20Sopenharmony_ci#define MXR_CFG_SCAN_MASK		0x47
1098c2ecf20Sopenharmony_ci
1108c2ecf20Sopenharmony_ci/* bits for MXR_VIDEO_CFG */
1118c2ecf20Sopenharmony_ci#define MXR_VID_CFG_BLEND_EN		(1 << 16)
1128c2ecf20Sopenharmony_ci
1138c2ecf20Sopenharmony_ci/* bits for MXR_GRAPHICn_CFG */
1148c2ecf20Sopenharmony_ci#define MXR_GRP_CFG_COLOR_KEY_DISABLE	(1 << 21)
1158c2ecf20Sopenharmony_ci#define MXR_GRP_CFG_BLEND_PRE_MUL	(1 << 20)
1168c2ecf20Sopenharmony_ci#define MXR_GRP_CFG_WIN_BLEND_EN	(1 << 17)
1178c2ecf20Sopenharmony_ci#define MXR_GRP_CFG_PIXEL_BLEND_EN	(1 << 16)
1188c2ecf20Sopenharmony_ci#define MXR_GRP_CFG_MISC_MASK		((3 << 16) | (3 << 20) | 0xff)
1198c2ecf20Sopenharmony_ci#define MXR_GRP_CFG_FORMAT_VAL(x)	MXR_MASK_VAL(x, 11, 8)
1208c2ecf20Sopenharmony_ci#define MXR_GRP_CFG_FORMAT_MASK		MXR_GRP_CFG_FORMAT_VAL(~0)
1218c2ecf20Sopenharmony_ci#define MXR_GRP_CFG_ALPHA_VAL(x)	MXR_MASK_VAL(x, 7, 0)
1228c2ecf20Sopenharmony_ci
1238c2ecf20Sopenharmony_ci/* bits for MXR_GRAPHICn_WH */
1248c2ecf20Sopenharmony_ci#define MXR_GRP_WH_H_SCALE(x)		MXR_MASK_VAL(x, 28, 28)
1258c2ecf20Sopenharmony_ci#define MXR_GRP_WH_V_SCALE(x)		MXR_MASK_VAL(x, 12, 12)
1268c2ecf20Sopenharmony_ci#define MXR_GRP_WH_WIDTH(x)		MXR_MASK_VAL(x, 26, 16)
1278c2ecf20Sopenharmony_ci#define MXR_GRP_WH_HEIGHT(x)		MXR_MASK_VAL(x, 10, 0)
1288c2ecf20Sopenharmony_ci
1298c2ecf20Sopenharmony_ci/* bits for MXR_RESOLUTION */
1308c2ecf20Sopenharmony_ci#define MXR_MXR_RES_HEIGHT(x)		MXR_MASK_VAL(x, 26, 16)
1318c2ecf20Sopenharmony_ci#define MXR_MXR_RES_WIDTH(x)		MXR_MASK_VAL(x, 10, 0)
1328c2ecf20Sopenharmony_ci
1338c2ecf20Sopenharmony_ci/* bits for MXR_GRAPHICn_SXY */
1348c2ecf20Sopenharmony_ci#define MXR_GRP_SXY_SX(x)		MXR_MASK_VAL(x, 26, 16)
1358c2ecf20Sopenharmony_ci#define MXR_GRP_SXY_SY(x)		MXR_MASK_VAL(x, 10, 0)
1368c2ecf20Sopenharmony_ci
1378c2ecf20Sopenharmony_ci/* bits for MXR_GRAPHICn_DXY */
1388c2ecf20Sopenharmony_ci#define MXR_GRP_DXY_DX(x)		MXR_MASK_VAL(x, 26, 16)
1398c2ecf20Sopenharmony_ci#define MXR_GRP_DXY_DY(x)		MXR_MASK_VAL(x, 10, 0)
1408c2ecf20Sopenharmony_ci
1418c2ecf20Sopenharmony_ci/* bits for MXR_INT_EN */
1428c2ecf20Sopenharmony_ci#define MXR_INT_EN_VSYNC		(1 << 11)
1438c2ecf20Sopenharmony_ci#define MXR_INT_EN_ALL			(0x0f << 8)
1448c2ecf20Sopenharmony_ci
1458c2ecf20Sopenharmony_ci/* bits for MXR_INT_STATUS */
1468c2ecf20Sopenharmony_ci#define MXR_INT_CLEAR_VSYNC		(1 << 11)
1478c2ecf20Sopenharmony_ci#define MXR_INT_STATUS_VSYNC		(1 << 0)
1488c2ecf20Sopenharmony_ci
1498c2ecf20Sopenharmony_ci/* bits for MXR_LAYER_CFG */
1508c2ecf20Sopenharmony_ci#define MXR_LAYER_CFG_GRP1_VAL(x)	MXR_MASK_VAL(x, 11, 8)
1518c2ecf20Sopenharmony_ci#define MXR_LAYER_CFG_GRP1_MASK		MXR_LAYER_CFG_GRP1_VAL(~0)
1528c2ecf20Sopenharmony_ci#define MXR_LAYER_CFG_GRP0_VAL(x)	MXR_MASK_VAL(x, 7, 4)
1538c2ecf20Sopenharmony_ci#define MXR_LAYER_CFG_GRP0_MASK		MXR_LAYER_CFG_GRP0_VAL(~0)
1548c2ecf20Sopenharmony_ci#define MXR_LAYER_CFG_VP_VAL(x)		MXR_MASK_VAL(x, 3, 0)
1558c2ecf20Sopenharmony_ci#define MXR_LAYER_CFG_VP_MASK		MXR_LAYER_CFG_VP_VAL(~0)
1568c2ecf20Sopenharmony_ci
1578c2ecf20Sopenharmony_ci/* bits for MXR_CM_COEFF_Y */
1588c2ecf20Sopenharmony_ci#define MXR_CM_COEFF_RGB_FULL		(1 << 30)
1598c2ecf20Sopenharmony_ci
1608c2ecf20Sopenharmony_ci#endif /* SAMSUNG_REGS_MIXER_H */
1618c2ecf20Sopenharmony_ci
162