18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */
28c2ecf20Sopenharmony_ci/*
38c2ecf20Sopenharmony_ci *
48c2ecf20Sopenharmony_ci * tvp5150 - Texas Instruments TVP5150A/AM1 video decoder registers
58c2ecf20Sopenharmony_ci *
68c2ecf20Sopenharmony_ci * Copyright (c) 2005,2006 Mauro Carvalho Chehab <mchehab@kernel.org>
78c2ecf20Sopenharmony_ci */
88c2ecf20Sopenharmony_ci
98c2ecf20Sopenharmony_ci#define TVP5150_VD_IN_SRC_SEL_1      0x00 /* Video input source selection #1 */
108c2ecf20Sopenharmony_ci#define TVP5150_ANAL_CHL_CTL         0x01 /* Analog channel controls */
118c2ecf20Sopenharmony_ci#define TVP5150_OP_MODE_CTL          0x02 /* Operation mode controls */
128c2ecf20Sopenharmony_ci#define TVP5150_MISC_CTL             0x03 /* Miscellaneous controls */
138c2ecf20Sopenharmony_ci#define TVP5150_MISC_CTL_VBLK_GPCL	BIT(7)
148c2ecf20Sopenharmony_ci#define TVP5150_MISC_CTL_GPCL		BIT(6)
158c2ecf20Sopenharmony_ci#define TVP5150_MISC_CTL_INTREQ_OE	BIT(5)
168c2ecf20Sopenharmony_ci#define TVP5150_MISC_CTL_HVLK		BIT(4)
178c2ecf20Sopenharmony_ci#define TVP5150_MISC_CTL_YCBCR_OE	BIT(3)
188c2ecf20Sopenharmony_ci#define TVP5150_MISC_CTL_SYNC_OE	BIT(2)
198c2ecf20Sopenharmony_ci#define TVP5150_MISC_CTL_VBLANK		BIT(1)
208c2ecf20Sopenharmony_ci#define TVP5150_MISC_CTL_CLOCK_OE	BIT(0)
218c2ecf20Sopenharmony_ci
228c2ecf20Sopenharmony_ci#define TVP5150_AUTOSW_MSK           0x04 /* Autoswitch mask: TVP5150A / TVP5150AM */
238c2ecf20Sopenharmony_ci
248c2ecf20Sopenharmony_ci/* Reserved 05h */
258c2ecf20Sopenharmony_ci
268c2ecf20Sopenharmony_ci#define TVP5150_COLOR_KIL_THSH_CTL   0x06 /* Color killer threshold control */
278c2ecf20Sopenharmony_ci#define TVP5150_LUMA_PROC_CTL_1      0x07 /* Luminance processing control #1 */
288c2ecf20Sopenharmony_ci#define TVP5150_LUMA_PROC_CTL_2      0x08 /* Luminance processing control #2 */
298c2ecf20Sopenharmony_ci#define TVP5150_BRIGHT_CTL           0x09 /* Brightness control */
308c2ecf20Sopenharmony_ci#define TVP5150_SATURATION_CTL       0x0a /* Color saturation control */
318c2ecf20Sopenharmony_ci#define TVP5150_HUE_CTL              0x0b /* Hue control */
328c2ecf20Sopenharmony_ci#define TVP5150_CONTRAST_CTL         0x0c /* Contrast control */
338c2ecf20Sopenharmony_ci#define TVP5150_DATA_RATE_SEL        0x0d /* Outputs and data rates select */
348c2ecf20Sopenharmony_ci#define TVP5150_LUMA_PROC_CTL_3      0x0e /* Luminance processing control #3 */
358c2ecf20Sopenharmony_ci#define TVP5150_CONF_SHARED_PIN      0x0f /* Configuration shared pins */
368c2ecf20Sopenharmony_ci
378c2ecf20Sopenharmony_ci/* Reserved 10h */
388c2ecf20Sopenharmony_ci
398c2ecf20Sopenharmony_ci#define TVP5150_ACT_VD_CROP_ST_MSB   0x11 /* Active video cropping start MSB */
408c2ecf20Sopenharmony_ci#define TVP5150_ACT_VD_CROP_ST_LSB   0x12 /* Active video cropping start LSB */
418c2ecf20Sopenharmony_ci#define TVP5150_ACT_VD_CROP_STP_MSB  0x13 /* Active video cropping stop MSB */
428c2ecf20Sopenharmony_ci#define TVP5150_ACT_VD_CROP_STP_LSB  0x14 /* Active video cropping stop LSB */
438c2ecf20Sopenharmony_ci#define TVP5150_GENLOCK              0x15 /* Genlock/RTC */
448c2ecf20Sopenharmony_ci#define TVP5150_HORIZ_SYNC_START     0x16 /* Horizontal sync start */
458c2ecf20Sopenharmony_ci
468c2ecf20Sopenharmony_ci/* Reserved 17h */
478c2ecf20Sopenharmony_ci
488c2ecf20Sopenharmony_ci#define TVP5150_VERT_BLANKING_START 0x18 /* Vertical blanking start */
498c2ecf20Sopenharmony_ci#define TVP5150_VERT_BLANKING_STOP  0x19 /* Vertical blanking stop */
508c2ecf20Sopenharmony_ci#define TVP5150_CHROMA_PROC_CTL_1   0x1a /* Chrominance processing control #1 */
518c2ecf20Sopenharmony_ci#define TVP5150_CHROMA_PROC_CTL_2   0x1b /* Chrominance processing control #2 */
528c2ecf20Sopenharmony_ci#define TVP5150_INT_RESET_REG_B     0x1c /* Interrupt reset register B */
538c2ecf20Sopenharmony_ci#define TVP5150_INT_ENABLE_REG_B    0x1d /* Interrupt enable register B */
548c2ecf20Sopenharmony_ci#define TVP5150_INTT_CONFIG_REG_B   0x1e /* Interrupt configuration register B */
558c2ecf20Sopenharmony_ci
568c2ecf20Sopenharmony_ci/* Reserved 1Fh-27h */
578c2ecf20Sopenharmony_ci
588c2ecf20Sopenharmony_ci#define VIDEO_STD_MASK			 (0x07 >> 1)
598c2ecf20Sopenharmony_ci#define TVP5150_VIDEO_STD                0x28 /* Video standard */
608c2ecf20Sopenharmony_ci#define VIDEO_STD_AUTO_SWITCH_BIT	 0x00
618c2ecf20Sopenharmony_ci#define VIDEO_STD_NTSC_MJ_BIT		 0x02
628c2ecf20Sopenharmony_ci#define VIDEO_STD_PAL_BDGHIN_BIT	 0x04
638c2ecf20Sopenharmony_ci#define VIDEO_STD_PAL_M_BIT		 0x06
648c2ecf20Sopenharmony_ci#define VIDEO_STD_PAL_COMBINATION_N_BIT	 0x08
658c2ecf20Sopenharmony_ci#define VIDEO_STD_NTSC_4_43_BIT		 0x0a
668c2ecf20Sopenharmony_ci#define VIDEO_STD_SECAM_BIT		 0x0c
678c2ecf20Sopenharmony_ci
688c2ecf20Sopenharmony_ci#define VIDEO_STD_NTSC_MJ_BIT_AS                 0x01
698c2ecf20Sopenharmony_ci#define VIDEO_STD_PAL_BDGHIN_BIT_AS              0x03
708c2ecf20Sopenharmony_ci#define VIDEO_STD_PAL_M_BIT_AS			 0x05
718c2ecf20Sopenharmony_ci#define VIDEO_STD_PAL_COMBINATION_N_BIT_AS	 0x07
728c2ecf20Sopenharmony_ci#define VIDEO_STD_NTSC_4_43_BIT_AS		 0x09
738c2ecf20Sopenharmony_ci#define VIDEO_STD_SECAM_BIT_AS			 0x0b
748c2ecf20Sopenharmony_ci
758c2ecf20Sopenharmony_ci/* Reserved 29h-2bh */
768c2ecf20Sopenharmony_ci
778c2ecf20Sopenharmony_ci#define TVP5150_CB_GAIN_FACT        0x2c /* Cb gain factor */
788c2ecf20Sopenharmony_ci#define TVP5150_CR_GAIN_FACTOR      0x2d /* Cr gain factor */
798c2ecf20Sopenharmony_ci#define TVP5150_MACROVISION_ON_CTR  0x2e /* Macrovision on counter */
808c2ecf20Sopenharmony_ci#define TVP5150_MACROVISION_OFF_CTR 0x2f /* Macrovision off counter */
818c2ecf20Sopenharmony_ci#define TVP5150_REV_SELECT          0x30 /* revision select (TVP5150AM1 only) */
828c2ecf20Sopenharmony_ci
838c2ecf20Sopenharmony_ci/* Reserved	31h-7Fh */
848c2ecf20Sopenharmony_ci
858c2ecf20Sopenharmony_ci#define TVP5150_MSB_DEV_ID          0x80 /* MSB of device ID */
868c2ecf20Sopenharmony_ci#define TVP5150_LSB_DEV_ID          0x81 /* LSB of device ID */
878c2ecf20Sopenharmony_ci#define TVP5150_ROM_MAJOR_VER       0x82 /* ROM major version */
888c2ecf20Sopenharmony_ci#define TVP5150_ROM_MINOR_VER       0x83 /* ROM minor version */
898c2ecf20Sopenharmony_ci#define TVP5150_VERT_LN_COUNT_MSB   0x84 /* Vertical line count MSB */
908c2ecf20Sopenharmony_ci#define TVP5150_VERT_LN_COUNT_LSB   0x85 /* Vertical line count LSB */
918c2ecf20Sopenharmony_ci#define TVP5150_INT_STATUS_REG_B    0x86 /* Interrupt status register B */
928c2ecf20Sopenharmony_ci#define TVP5150_INT_ACTIVE_REG_B    0x87 /* Interrupt active register B */
938c2ecf20Sopenharmony_ci#define TVP5150_STATUS_REG_1        0x88 /* Status register #1 */
948c2ecf20Sopenharmony_ci#define TVP5150_STATUS_REG_2        0x89 /* Status register #2 */
958c2ecf20Sopenharmony_ci#define TVP5150_STATUS_REG_3        0x8a /* Status register #3 */
968c2ecf20Sopenharmony_ci#define TVP5150_STATUS_REG_4        0x8b /* Status register #4 */
978c2ecf20Sopenharmony_ci#define TVP5150_STATUS_REG_5        0x8c /* Status register #5 */
988c2ecf20Sopenharmony_ci/* Reserved	8Dh-8Fh */
998c2ecf20Sopenharmony_ci /* Closed caption data registers */
1008c2ecf20Sopenharmony_ci#define TVP5150_CC_DATA_INI         0x90
1018c2ecf20Sopenharmony_ci#define TVP5150_CC_DATA_END         0x93
1028c2ecf20Sopenharmony_ci
1038c2ecf20Sopenharmony_ci /* WSS data registers */
1048c2ecf20Sopenharmony_ci#define TVP5150_WSS_DATA_INI        0x94
1058c2ecf20Sopenharmony_ci#define TVP5150_WSS_DATA_END        0x99
1068c2ecf20Sopenharmony_ci
1078c2ecf20Sopenharmony_ci/* VPS data registers */
1088c2ecf20Sopenharmony_ci#define TVP5150_VPS_DATA_INI        0x9a
1098c2ecf20Sopenharmony_ci#define TVP5150_VPS_DATA_END        0xa6
1108c2ecf20Sopenharmony_ci
1118c2ecf20Sopenharmony_ci/* VITC data registers */
1128c2ecf20Sopenharmony_ci#define TVP5150_VITC_DATA_INI       0xa7
1138c2ecf20Sopenharmony_ci#define TVP5150_VITC_DATA_END       0xaf
1148c2ecf20Sopenharmony_ci
1158c2ecf20Sopenharmony_ci#define TVP5150_VBI_FIFO_READ_DATA  0xb0 /* VBI FIFO read data */
1168c2ecf20Sopenharmony_ci
1178c2ecf20Sopenharmony_ci/* Teletext filter 1 */
1188c2ecf20Sopenharmony_ci#define TVP5150_TELETEXT_FIL1_INI  0xb1
1198c2ecf20Sopenharmony_ci#define TVP5150_TELETEXT_FIL1_END  0xb5
1208c2ecf20Sopenharmony_ci
1218c2ecf20Sopenharmony_ci/* Teletext filter 2 */
1228c2ecf20Sopenharmony_ci#define TVP5150_TELETEXT_FIL2_INI  0xb6
1238c2ecf20Sopenharmony_ci#define TVP5150_TELETEXT_FIL2_END  0xba
1248c2ecf20Sopenharmony_ci
1258c2ecf20Sopenharmony_ci#define TVP5150_TELETEXT_FIL_ENA    0xbb /* Teletext filter enable */
1268c2ecf20Sopenharmony_ci/* Reserved	BCh-BFh */
1278c2ecf20Sopenharmony_ci#define TVP5150_INT_STATUS_REG_A    0xc0 /* Interrupt status register A */
1288c2ecf20Sopenharmony_ci#define   TVP5150_INT_A_LOCK_STATUS BIT(7)
1298c2ecf20Sopenharmony_ci#define   TVP5150_INT_A_LOCK        BIT(6)
1308c2ecf20Sopenharmony_ci#define TVP5150_INT_ENABLE_REG_A    0xc1 /* Interrupt enable register A */
1318c2ecf20Sopenharmony_ci#define TVP5150_INT_CONF            0xc2 /* Interrupt configuration */
1328c2ecf20Sopenharmony_ci#define   TVP5150_VDPOE             BIT(2)
1338c2ecf20Sopenharmony_ci#define TVP5150_VDP_CONF_RAM_DATA   0xc3 /* VDP configuration RAM data */
1348c2ecf20Sopenharmony_ci#define TVP5150_CONF_RAM_ADDR_LOW   0xc4 /* Configuration RAM address low byte */
1358c2ecf20Sopenharmony_ci#define TVP5150_CONF_RAM_ADDR_HIGH  0xc5 /* Configuration RAM address high byte */
1368c2ecf20Sopenharmony_ci#define TVP5150_VDP_STATUS_REG      0xc6 /* VDP status register */
1378c2ecf20Sopenharmony_ci#define TVP5150_FIFO_WORD_COUNT     0xc7 /* FIFO word count */
1388c2ecf20Sopenharmony_ci#define TVP5150_FIFO_INT_THRESHOLD  0xc8 /* FIFO interrupt threshold */
1398c2ecf20Sopenharmony_ci#define TVP5150_FIFO_RESET          0xc9 /* FIFO reset */
1408c2ecf20Sopenharmony_ci#define TVP5150_LINE_NUMBER_INT     0xca /* Line number interrupt */
1418c2ecf20Sopenharmony_ci#define TVP5150_PIX_ALIGN_REG_LOW   0xcb /* Pixel alignment register low byte */
1428c2ecf20Sopenharmony_ci#define TVP5150_PIX_ALIGN_REG_HIGH  0xcc /* Pixel alignment register high byte */
1438c2ecf20Sopenharmony_ci#define TVP5150_FIFO_OUT_CTRL       0xcd /* FIFO output control */
1448c2ecf20Sopenharmony_ci/* Reserved	CEh */
1458c2ecf20Sopenharmony_ci#define TVP5150_FULL_FIELD_ENA      0xcf /* Full field enable 1 */
1468c2ecf20Sopenharmony_ci
1478c2ecf20Sopenharmony_ci/* Line mode registers */
1488c2ecf20Sopenharmony_ci#define TVP5150_LINE_MODE_INI       0xd0
1498c2ecf20Sopenharmony_ci#define TVP5150_LINE_MODE_END       0xfb
1508c2ecf20Sopenharmony_ci
1518c2ecf20Sopenharmony_ci#define TVP5150_FULL_FIELD_MODE_REG 0xfc /* Full field mode register */
1528c2ecf20Sopenharmony_ci/* Reserved	FDh-FFh */
153