162306a36Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0-only */
262306a36Sopenharmony_ci/*
362306a36Sopenharmony_ci * drivers/media/i2c/smiapp/smiapp-reg-defs.h
462306a36Sopenharmony_ci *
562306a36Sopenharmony_ci * Generic driver for MIPI CCS/SMIA/SMIA++ compliant camera sensors
662306a36Sopenharmony_ci *
762306a36Sopenharmony_ci * Copyright (C) 2020 Intel Corporation
862306a36Sopenharmony_ci * Copyright (C) 2011--2012 Nokia Corporation
962306a36Sopenharmony_ci * Contact: Sakari Ailus <sakari.ailus@iki.fi>
1062306a36Sopenharmony_ci */
1162306a36Sopenharmony_ci
1262306a36Sopenharmony_ci#ifndef __SMIAPP_REG_DEFS_H__
1362306a36Sopenharmony_ci#define __SMIAPP_REG_DEFS_H__
1462306a36Sopenharmony_ci
1562306a36Sopenharmony_ci/* Register addresses */
1662306a36Sopenharmony_ci#define SMIAPP_REG_U16_MODEL_ID					(0x0000 | CCS_FL_16BIT)
1762306a36Sopenharmony_ci#define SMIAPP_REG_U8_REVISION_NUMBER_MAJOR			0x0002
1862306a36Sopenharmony_ci#define SMIAPP_REG_U8_MANUFACTURER_ID				0x0003
1962306a36Sopenharmony_ci#define SMIAPP_REG_U8_SMIA_VERSION				0x0004
2062306a36Sopenharmony_ci#define SMIAPP_REG_U8_FRAME_COUNT				0x0005
2162306a36Sopenharmony_ci#define SMIAPP_REG_U8_PIXEL_ORDER				0x0006
2262306a36Sopenharmony_ci#define SMIAPP_REG_U16_DATA_PEDESTAL				(0x0008 | CCS_FL_16BIT)
2362306a36Sopenharmony_ci#define SMIAPP_REG_U8_PIXEL_DEPTH				0x000c
2462306a36Sopenharmony_ci#define SMIAPP_REG_U8_REVISION_NUMBER_MINOR			0x0010
2562306a36Sopenharmony_ci#define SMIAPP_REG_U8_SMIAPP_VERSION				0x0011
2662306a36Sopenharmony_ci#define SMIAPP_REG_U8_MODULE_DATE_YEAR				0x0012
2762306a36Sopenharmony_ci#define SMIAPP_REG_U8_MODULE_DATE_MONTH				0x0013
2862306a36Sopenharmony_ci#define SMIAPP_REG_U8_MODULE_DATE_DAY				0x0014
2962306a36Sopenharmony_ci#define SMIAPP_REG_U8_MODULE_DATE_PHASE				0x0015
3062306a36Sopenharmony_ci#define SMIAPP_REG_U16_SENSOR_MODEL_ID				(0x0016 | CCS_FL_16BIT)
3162306a36Sopenharmony_ci#define SMIAPP_REG_U8_SENSOR_REVISION_NUMBER			0x0018
3262306a36Sopenharmony_ci#define SMIAPP_REG_U8_SENSOR_MANUFACTURER_ID			0x0019
3362306a36Sopenharmony_ci#define SMIAPP_REG_U8_SENSOR_FIRMWARE_VERSION			0x001a
3462306a36Sopenharmony_ci#define SMIAPP_REG_U32_SERIAL_NUMBER				(0x001c | CCS_FL_32BIT)
3562306a36Sopenharmony_ci#define SMIAPP_REG_U8_FRAME_FORMAT_MODEL_TYPE			0x0040
3662306a36Sopenharmony_ci#define SMIAPP_REG_U8_FRAME_FORMAT_MODEL_SUBTYPE		0x0041
3762306a36Sopenharmony_ci#define SMIAPP_REG_U16_FRAME_FORMAT_DESCRIPTOR_2(n)		((0x0042 + ((n) << 1)) | CCS_FL_16BIT) /* 0 <= n <= 14 */
3862306a36Sopenharmony_ci#define SMIAPP_REG_U32_FRAME_FORMAT_DESCRIPTOR_4(n)		((0x0060 + ((n) << 2)) | CCS_FL_32BIT) /* 0 <= n <= 7 */
3962306a36Sopenharmony_ci#define SMIAPP_REG_U16_ANALOGUE_GAIN_CAPABILITY			(0x0080 | CCS_FL_16BIT)
4062306a36Sopenharmony_ci#define SMIAPP_REG_U16_ANALOGUE_GAIN_CODE_MIN			(0x0084 | CCS_FL_16BIT)
4162306a36Sopenharmony_ci#define SMIAPP_REG_U16_ANALOGUE_GAIN_CODE_MAX			(0x0086 | CCS_FL_16BIT)
4262306a36Sopenharmony_ci#define SMIAPP_REG_U16_ANALOGUE_GAIN_CODE_STEP			(0x0088 | CCS_FL_16BIT)
4362306a36Sopenharmony_ci#define SMIAPP_REG_U16_ANALOGUE_GAIN_TYPE			(0x008a | CCS_FL_16BIT)
4462306a36Sopenharmony_ci#define SMIAPP_REG_U16_ANALOGUE_GAIN_M0				(0x008c | CCS_FL_16BIT)
4562306a36Sopenharmony_ci#define SMIAPP_REG_U16_ANALOGUE_GAIN_C0				(0x008e | CCS_FL_16BIT)
4662306a36Sopenharmony_ci#define SMIAPP_REG_U16_ANALOGUE_GAIN_M1				(0x0090 | CCS_FL_16BIT)
4762306a36Sopenharmony_ci#define SMIAPP_REG_U16_ANALOGUE_GAIN_C1				(0x0092 | CCS_FL_16BIT)
4862306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_FORMAT_MODEL_TYPE			0x00c0
4962306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_FORMAT_MODEL_SUBTYPE			0x00c1
5062306a36Sopenharmony_ci#define SMIAPP_REG_U16_DATA_FORMAT_DESCRIPTOR(n)		((0x00c2 + ((n) << 1)) | CCS_FL_16BIT)
5162306a36Sopenharmony_ci#define SMIAPP_REG_U8_MODE_SELECT				0x0100
5262306a36Sopenharmony_ci#define SMIAPP_REG_U8_IMAGE_ORIENTATION				0x0101
5362306a36Sopenharmony_ci#define SMIAPP_REG_U8_SOFTWARE_RESET				0x0103
5462306a36Sopenharmony_ci#define SMIAPP_REG_U8_GROUPED_PARAMETER_HOLD			0x0104
5562306a36Sopenharmony_ci#define SMIAPP_REG_U8_MASK_CORRUPTED_FRAMES			0x0105
5662306a36Sopenharmony_ci#define SMIAPP_REG_U8_FAST_STANDBY_CTRL				0x0106
5762306a36Sopenharmony_ci#define SMIAPP_REG_U8_CCI_ADDRESS_CONTROL			0x0107
5862306a36Sopenharmony_ci#define SMIAPP_REG_U8_2ND_CCI_IF_CONTROL			0x0108
5962306a36Sopenharmony_ci#define SMIAPP_REG_U8_2ND_CCI_ADDRESS_CONTROL			0x0109
6062306a36Sopenharmony_ci#define SMIAPP_REG_U8_CSI_CHANNEL_IDENTIFIER			0x0110
6162306a36Sopenharmony_ci#define SMIAPP_REG_U8_CSI_SIGNALLING_MODE			0x0111
6262306a36Sopenharmony_ci#define SMIAPP_REG_U16_CSI_DATA_FORMAT				(0x0112 | CCS_FL_16BIT)
6362306a36Sopenharmony_ci#define SMIAPP_REG_U8_CSI_LANE_MODE				0x0114
6462306a36Sopenharmony_ci#define SMIAPP_REG_U8_CSI2_10_TO_8_DT				0x0115
6562306a36Sopenharmony_ci#define SMIAPP_REG_U8_CSI2_10_TO_7_DT				0x0116
6662306a36Sopenharmony_ci#define SMIAPP_REG_U8_CSI2_10_TO_6_DT				0x0117
6762306a36Sopenharmony_ci#define SMIAPP_REG_U8_CSI2_12_TO_8_DT				0x0118
6862306a36Sopenharmony_ci#define SMIAPP_REG_U8_CSI2_12_TO_7_DT				0x0119
6962306a36Sopenharmony_ci#define SMIAPP_REG_U8_CSI2_12_TO_6_DT				0x011a
7062306a36Sopenharmony_ci#define SMIAPP_REG_U8_CSI2_14_TO_10_DT				0x011b
7162306a36Sopenharmony_ci#define SMIAPP_REG_U8_CSI2_14_TO_8_DT				0x011c
7262306a36Sopenharmony_ci#define SMIAPP_REG_U8_CSI2_16_TO_10_DT				0x011d
7362306a36Sopenharmony_ci#define SMIAPP_REG_U8_CSI2_16_TO_8_DT				0x011e
7462306a36Sopenharmony_ci#define SMIAPP_REG_U8_GAIN_MODE					0x0120
7562306a36Sopenharmony_ci#define SMIAPP_REG_U16_VANA_VOLTAGE				(0x0130 | CCS_FL_16BIT)
7662306a36Sopenharmony_ci#define SMIAPP_REG_U16_VDIG_VOLTAGE				(0x0132 | CCS_FL_16BIT)
7762306a36Sopenharmony_ci#define SMIAPP_REG_U16_VIO_VOLTAGE				(0x0134 | CCS_FL_16BIT)
7862306a36Sopenharmony_ci#define SMIAPP_REG_U16_EXTCLK_FREQUENCY_MHZ			(0x0136 | CCS_FL_16BIT)
7962306a36Sopenharmony_ci#define SMIAPP_REG_U8_TEMP_SENSOR_CONTROL			0x0138
8062306a36Sopenharmony_ci#define SMIAPP_REG_U8_TEMP_SENSOR_MODE				0x0139
8162306a36Sopenharmony_ci#define SMIAPP_REG_U8_TEMP_SENSOR_OUTPUT			0x013a
8262306a36Sopenharmony_ci#define SMIAPP_REG_U16_FINE_INTEGRATION_TIME			(0x0200 | CCS_FL_16BIT)
8362306a36Sopenharmony_ci#define SMIAPP_REG_U16_COARSE_INTEGRATION_TIME			(0x0202 | CCS_FL_16BIT)
8462306a36Sopenharmony_ci#define SMIAPP_REG_U16_ANALOGUE_GAIN_CODE_GLOBAL		(0x0204 | CCS_FL_16BIT)
8562306a36Sopenharmony_ci#define SMIAPP_REG_U16_ANALOGUE_GAIN_CODE_GREENR		(0x0206 | CCS_FL_16BIT)
8662306a36Sopenharmony_ci#define SMIAPP_REG_U16_ANALOGUE_GAIN_CODE_RED			(0x0208 | CCS_FL_16BIT)
8762306a36Sopenharmony_ci#define SMIAPP_REG_U16_ANALOGUE_GAIN_CODE_BLUE			(0x020a | CCS_FL_16BIT)
8862306a36Sopenharmony_ci#define SMIAPP_REG_U16_ANALOGUE_GAIN_CODE_GREENB		(0x020c | CCS_FL_16BIT)
8962306a36Sopenharmony_ci#define SMIAPP_REG_U16_DIGITAL_GAIN_GREENR			(0x020e | CCS_FL_16BIT)
9062306a36Sopenharmony_ci#define SMIAPP_REG_U16_DIGITAL_GAIN_RED				(0x0210 | CCS_FL_16BIT)
9162306a36Sopenharmony_ci#define SMIAPP_REG_U16_DIGITAL_GAIN_BLUE			(0x0212 | CCS_FL_16BIT)
9262306a36Sopenharmony_ci#define SMIAPP_REG_U16_DIGITAL_GAIN_GREENB			(0x0214 | CCS_FL_16BIT)
9362306a36Sopenharmony_ci#define SMIAPP_REG_U16_VT_PIX_CLK_DIV				(0x0300 | CCS_FL_16BIT)
9462306a36Sopenharmony_ci#define SMIAPP_REG_U16_VT_SYS_CLK_DIV				(0x0302 | CCS_FL_16BIT)
9562306a36Sopenharmony_ci#define SMIAPP_REG_U16_PRE_PLL_CLK_DIV				(0x0304 | CCS_FL_16BIT)
9662306a36Sopenharmony_ci#define SMIAPP_REG_U16_PLL_MULTIPLIER				(0x0306 | CCS_FL_16BIT)
9762306a36Sopenharmony_ci#define SMIAPP_REG_U16_OP_PIX_CLK_DIV				(0x0308 | CCS_FL_16BIT)
9862306a36Sopenharmony_ci#define SMIAPP_REG_U16_OP_SYS_CLK_DIV				(0x030a | CCS_FL_16BIT)
9962306a36Sopenharmony_ci#define SMIAPP_REG_U16_FRAME_LENGTH_LINES			(0x0340 | CCS_FL_16BIT)
10062306a36Sopenharmony_ci#define SMIAPP_REG_U16_LINE_LENGTH_PCK				(0x0342 | CCS_FL_16BIT)
10162306a36Sopenharmony_ci#define SMIAPP_REG_U16_X_ADDR_START				(0x0344 | CCS_FL_16BIT)
10262306a36Sopenharmony_ci#define SMIAPP_REG_U16_Y_ADDR_START				(0x0346 | CCS_FL_16BIT)
10362306a36Sopenharmony_ci#define SMIAPP_REG_U16_X_ADDR_END				(0x0348 | CCS_FL_16BIT)
10462306a36Sopenharmony_ci#define SMIAPP_REG_U16_Y_ADDR_END				(0x034a | CCS_FL_16BIT)
10562306a36Sopenharmony_ci#define SMIAPP_REG_U16_X_OUTPUT_SIZE				(0x034c | CCS_FL_16BIT)
10662306a36Sopenharmony_ci#define SMIAPP_REG_U16_Y_OUTPUT_SIZE				(0x034e | CCS_FL_16BIT)
10762306a36Sopenharmony_ci#define SMIAPP_REG_U16_X_EVEN_INC				(0x0380 | CCS_FL_16BIT)
10862306a36Sopenharmony_ci#define SMIAPP_REG_U16_X_ODD_INC				(0x0382 | CCS_FL_16BIT)
10962306a36Sopenharmony_ci#define SMIAPP_REG_U16_Y_EVEN_INC				(0x0384 | CCS_FL_16BIT)
11062306a36Sopenharmony_ci#define SMIAPP_REG_U16_Y_ODD_INC				(0x0386 | CCS_FL_16BIT)
11162306a36Sopenharmony_ci#define SMIAPP_REG_U16_SCALING_MODE				(0x0400 | CCS_FL_16BIT)
11262306a36Sopenharmony_ci#define SMIAPP_REG_U16_SPATIAL_SAMPLING				(0x0402 | CCS_FL_16BIT)
11362306a36Sopenharmony_ci#define SMIAPP_REG_U16_SCALE_M					(0x0404 | CCS_FL_16BIT)
11462306a36Sopenharmony_ci#define SMIAPP_REG_U16_SCALE_N					(0x0406 | CCS_FL_16BIT)
11562306a36Sopenharmony_ci#define SMIAPP_REG_U16_DIGITAL_CROP_X_OFFSET			(0x0408 | CCS_FL_16BIT)
11662306a36Sopenharmony_ci#define SMIAPP_REG_U16_DIGITAL_CROP_Y_OFFSET			(0x040a | CCS_FL_16BIT)
11762306a36Sopenharmony_ci#define SMIAPP_REG_U16_DIGITAL_CROP_IMAGE_WIDTH			(0x040c | CCS_FL_16BIT)
11862306a36Sopenharmony_ci#define SMIAPP_REG_U16_DIGITAL_CROP_IMAGE_HEIGHT		(0x040e | CCS_FL_16BIT)
11962306a36Sopenharmony_ci#define SMIAPP_REG_U16_COMPRESSION_MODE				(0x0500 | CCS_FL_16BIT)
12062306a36Sopenharmony_ci#define SMIAPP_REG_U16_TEST_PATTERN_MODE			(0x0600 | CCS_FL_16BIT)
12162306a36Sopenharmony_ci#define SMIAPP_REG_U16_TEST_DATA_RED				(0x0602 | CCS_FL_16BIT)
12262306a36Sopenharmony_ci#define SMIAPP_REG_U16_TEST_DATA_GREENR				(0x0604 | CCS_FL_16BIT)
12362306a36Sopenharmony_ci#define SMIAPP_REG_U16_TEST_DATA_BLUE				(0x0606 | CCS_FL_16BIT)
12462306a36Sopenharmony_ci#define SMIAPP_REG_U16_TEST_DATA_GREENB				(0x0608 | CCS_FL_16BIT)
12562306a36Sopenharmony_ci#define SMIAPP_REG_U16_HORIZONTAL_CURSOR_WIDTH			(0x060a | CCS_FL_16BIT)
12662306a36Sopenharmony_ci#define SMIAPP_REG_U16_HORIZONTAL_CURSOR_POSITION		(0x060c | CCS_FL_16BIT)
12762306a36Sopenharmony_ci#define SMIAPP_REG_U16_VERTICAL_CURSOR_WIDTH			(0x060e | CCS_FL_16BIT)
12862306a36Sopenharmony_ci#define SMIAPP_REG_U16_VERTICAL_CURSOR_POSITION			(0x0610 | CCS_FL_16BIT)
12962306a36Sopenharmony_ci#define SMIAPP_REG_U16_FIFO_WATER_MARK_PIXELS			(0x0700 | CCS_FL_16BIT)
13062306a36Sopenharmony_ci#define SMIAPP_REG_U8_TCLK_POST					0x0800
13162306a36Sopenharmony_ci#define SMIAPP_REG_U8_THS_PREPARE				0x0801
13262306a36Sopenharmony_ci#define SMIAPP_REG_U8_THS_ZERO_MIN				0x0802
13362306a36Sopenharmony_ci#define SMIAPP_REG_U8_THS_TRAIL					0x0803
13462306a36Sopenharmony_ci#define SMIAPP_REG_U8_TCLK_TRAIL_MIN				0x0804
13562306a36Sopenharmony_ci#define SMIAPP_REG_U8_TCLK_PREPARE				0x0805
13662306a36Sopenharmony_ci#define SMIAPP_REG_U8_TCLK_ZERO					0x0806
13762306a36Sopenharmony_ci#define SMIAPP_REG_U8_TLPX					0x0807
13862306a36Sopenharmony_ci#define SMIAPP_REG_U8_DPHY_CTRL					0x0808
13962306a36Sopenharmony_ci#define SMIAPP_REG_U32_REQUESTED_LINK_BIT_RATE_MBPS		(0x0820 | CCS_FL_32BIT)
14062306a36Sopenharmony_ci#define SMIAPP_REG_U8_BINNING_MODE				0x0900
14162306a36Sopenharmony_ci#define SMIAPP_REG_U8_BINNING_TYPE				0x0901
14262306a36Sopenharmony_ci#define SMIAPP_REG_U8_BINNING_WEIGHTING				0x0902
14362306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_CTRL			0x0a00
14462306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_STATUS			0x0a01
14562306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_PAGE_SELECT		0x0a02
14662306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_0			0x0a04
14762306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_1			0x0a05
14862306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_2			0x0a06
14962306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_3			0x0a07
15062306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_4			0x0a08
15162306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_5			0x0a09
15262306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_12		0x0a10
15362306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_13		0x0a11
15462306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_14		0x0a12
15562306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_15		0x0a13
15662306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_16		0x0a14
15762306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_17		0x0a15
15862306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_18		0x0a16
15962306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_19		0x0a17
16062306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_20		0x0a18
16162306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_21		0x0a19
16262306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_22		0x0a1a
16362306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_23		0x0a1b
16462306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_24		0x0a1c
16562306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_25		0x0a1d
16662306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_26		0x0a1e
16762306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_27		0x0a1f
16862306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_28		0x0a20
16962306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_29		0x0a21
17062306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_30		0x0a22
17162306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_31		0x0a23
17262306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_32		0x0a24
17362306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_33		0x0a25
17462306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_34		0x0a26
17562306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_35		0x0a27
17662306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_36		0x0a28
17762306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_37		0x0a29
17862306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_38		0x0a2a
17962306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_39		0x0a2b
18062306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_40		0x0a2c
18162306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_41		0x0a2d
18262306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_42		0x0a2e
18362306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_43		0x0a2f
18462306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_44		0x0a30
18562306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_45		0x0a31
18662306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_46		0x0a32
18762306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_47		0x0a33
18862306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_48		0x0a34
18962306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_49		0x0a35
19062306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_50		0x0a36
19162306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_51		0x0a37
19262306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_52		0x0a38
19362306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_53		0x0a39
19462306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_54		0x0a3a
19562306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_55		0x0a3b
19662306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_56		0x0a3c
19762306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_57		0x0a3d
19862306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_58		0x0a3e
19962306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_59		0x0a3f
20062306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_60		0x0a40
20162306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_61		0x0a41
20262306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_62		0x0a42
20362306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_1_DATA_63		0x0a43
20462306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_CTRL			0x0a44
20562306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_STATUS			0x0a45
20662306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_PAGE_SELECT		0x0a46
20762306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_0			0x0a48
20862306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_1			0x0a49
20962306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_2			0x0a4a
21062306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_3			0x0a4b
21162306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_4			0x0a4c
21262306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_5			0x0a4d
21362306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_6			0x0a4e
21462306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_7			0x0a4f
21562306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_8			0x0a50
21662306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_9			0x0a51
21762306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_10		0x0a52
21862306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_11		0x0a53
21962306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_12		0x0a54
22062306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_13		0x0a55
22162306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_14		0x0a56
22262306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_15		0x0a57
22362306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_16		0x0a58
22462306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_17		0x0a59
22562306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_18		0x0a5a
22662306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_19		0x0a5b
22762306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_20		0x0a5c
22862306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_21		0x0a5d
22962306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_22		0x0a5e
23062306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_23		0x0a5f
23162306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_24		0x0a60
23262306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_25		0x0a61
23362306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_26		0x0a62
23462306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_27		0x0a63
23562306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_28		0x0a64
23662306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_29		0x0a65
23762306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_30		0x0a66
23862306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_31		0x0a67
23962306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_32		0x0a68
24062306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_33		0x0a69
24162306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_34		0x0a6a
24262306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_35		0x0a6b
24362306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_36		0x0a6c
24462306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_37		0x0a6d
24562306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_38		0x0a6e
24662306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_39		0x0a6f
24762306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_40		0x0a70
24862306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_41		0x0a71
24962306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_42		0x0a72
25062306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_43		0x0a73
25162306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_44		0x0a74
25262306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_45		0x0a75
25362306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_46		0x0a76
25462306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_47		0x0a77
25562306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_48		0x0a78
25662306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_49		0x0a79
25762306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_50		0x0a7a
25862306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_51		0x0a7b
25962306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_52		0x0a7c
26062306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_53		0x0a7d
26162306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_54		0x0a7e
26262306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_55		0x0a7f
26362306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_56		0x0a80
26462306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_57		0x0a81
26562306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_58		0x0a82
26662306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_59		0x0a83
26762306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_60		0x0a84
26862306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_61		0x0a85
26962306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_62		0x0a86
27062306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_2_DATA_63		0x0a87
27162306a36Sopenharmony_ci#define SMIAPP_REG_U8_SHADING_CORRECTION_ENABLE			0x0b00
27262306a36Sopenharmony_ci#define SMIAPP_REG_U8_LUMINANCE_CORRECTION_LEVEL		0x0b01
27362306a36Sopenharmony_ci#define SMIAPP_REG_U8_GREEN_IMBALANCE_FILTER_ENABLE		0x0b02
27462306a36Sopenharmony_ci#define SMIAPP_REG_U8_GREEN_IMBALANCE_FILTER_WEIGHT		0x0b03
27562306a36Sopenharmony_ci#define SMIAPP_REG_U8_BLACK_LEVEL_CORRECTION_ENABLE		0x0b04
27662306a36Sopenharmony_ci#define SMIAPP_REG_U8_MAPPED_COUPLET_CORRECT_ENABLE		0x0b05
27762306a36Sopenharmony_ci#define SMIAPP_REG_U8_SINGLE_DEFECT_CORRECT_ENABLE		0x0b06
27862306a36Sopenharmony_ci#define SMIAPP_REG_U8_SINGLE_DEFECT_CORRECT_WEIGHT		0x0b07
27962306a36Sopenharmony_ci#define SMIAPP_REG_U8_DYNAMIC_COUPLET_CORRECT_ENABLE		0x0b08
28062306a36Sopenharmony_ci#define SMIAPP_REG_U8_DYNAMIC_COUPLET_CORRECT_WEIGHT		0x0b09
28162306a36Sopenharmony_ci#define SMIAPP_REG_U8_COMBINED_DEFECT_CORRECT_ENABLE		0x0b0a
28262306a36Sopenharmony_ci#define SMIAPP_REG_U8_COMBINED_DEFECT_CORRECT_WEIGHT		0x0b0b
28362306a36Sopenharmony_ci#define SMIAPP_REG_U8_MODULE_SPECIFIC_CORRECTION_ENABLE		0x0b0c
28462306a36Sopenharmony_ci#define SMIAPP_REG_U8_MODULE_SPECIFIC_CORRECTION_WEIGHT		0x0b0d
28562306a36Sopenharmony_ci#define SMIAPP_REG_U8_MAPPED_LINE_DEFECT_CORRECT_ENABLE		0x0b0e
28662306a36Sopenharmony_ci#define SMIAPP_REG_U8_MAPPED_LINE_DEFECT_CORRECT_ADJUST		0x0b0f
28762306a36Sopenharmony_ci#define SMIAPP_REG_U8_MAPPED_COUPLET_CORRECT_ADJUST		0x0b10
28862306a36Sopenharmony_ci#define SMIAPP_REG_U8_MAPPED_TRIPLET_DEFECT_CORRECT_ENABLE	0x0b11
28962306a36Sopenharmony_ci#define SMIAPP_REG_U8_MAPPED_TRIPLET_DEFECT_CORRECT_ADJUST	0x0b12
29062306a36Sopenharmony_ci#define SMIAPP_REG_U8_DYNAMIC_TRIPLET_DEFECT_CORRECT_ENABLE	0x0b13
29162306a36Sopenharmony_ci#define SMIAPP_REG_U8_DYNAMIC_TRIPLET_DEFECT_CORRECT_ADJUST	0x0b14
29262306a36Sopenharmony_ci#define SMIAPP_REG_U8_DYNAMIC_LINE_DEFECT_CORRECT_ENABLE	0x0b15
29362306a36Sopenharmony_ci#define SMIAPP_REG_U8_DYNAMIC_LINE_DEFECT_CORRECT_ADJUST	0x0b16
29462306a36Sopenharmony_ci#define SMIAPP_REG_U8_EDOF_MODE					0x0b80
29562306a36Sopenharmony_ci#define SMIAPP_REG_U8_SHARPNESS					0x0b83
29662306a36Sopenharmony_ci#define SMIAPP_REG_U8_DENOISING					0x0b84
29762306a36Sopenharmony_ci#define SMIAPP_REG_U8_MODULE_SPECIFIC				0x0b85
29862306a36Sopenharmony_ci#define SMIAPP_REG_U16_DEPTH_OF_FIELD				(0x0b86 | CCS_FL_16BIT)
29962306a36Sopenharmony_ci#define SMIAPP_REG_U16_FOCUS_DISTANCE				(0x0b88 | CCS_FL_16BIT)
30062306a36Sopenharmony_ci#define SMIAPP_REG_U8_ESTIMATION_MODE_CTRL			0x0b8a
30162306a36Sopenharmony_ci#define SMIAPP_REG_U16_COLOUR_TEMPERATURE			(0x0b8c | CCS_FL_16BIT)
30262306a36Sopenharmony_ci#define SMIAPP_REG_U16_ABSOLUTE_GAIN_GREENR			(0x0b8e | CCS_FL_16BIT)
30362306a36Sopenharmony_ci#define SMIAPP_REG_U16_ABSOLUTE_GAIN_RED			(0x0b90 | CCS_FL_16BIT)
30462306a36Sopenharmony_ci#define SMIAPP_REG_U16_ABSOLUTE_GAIN_BLUE			(0x0b92 | CCS_FL_16BIT)
30562306a36Sopenharmony_ci#define SMIAPP_REG_U16_ABSOLUTE_GAIN_GREENB			(0x0b94 | CCS_FL_16BIT)
30662306a36Sopenharmony_ci#define SMIAPP_REG_U8_ESTIMATION_ZONE_MODE			0x0bc0
30762306a36Sopenharmony_ci#define SMIAPP_REG_U16_FIXED_ZONE_WEIGHTING			(0x0bc2 | CCS_FL_16BIT)
30862306a36Sopenharmony_ci#define SMIAPP_REG_U16_CUSTOM_ZONE_X_START			(0x0bc4 | CCS_FL_16BIT)
30962306a36Sopenharmony_ci#define SMIAPP_REG_U16_CUSTOM_ZONE_Y_START			(0x0bc6 | CCS_FL_16BIT)
31062306a36Sopenharmony_ci#define SMIAPP_REG_U16_CUSTOM_ZONE_WIDTH			(0x0bc8 | CCS_FL_16BIT)
31162306a36Sopenharmony_ci#define SMIAPP_REG_U16_CUSTOM_ZONE_HEIGHT			(0x0bca | CCS_FL_16BIT)
31262306a36Sopenharmony_ci#define SMIAPP_REG_U8_GLOBAL_RESET_CTRL1			0x0c00
31362306a36Sopenharmony_ci#define SMIAPP_REG_U8_GLOBAL_RESET_CTRL2			0x0c01
31462306a36Sopenharmony_ci#define SMIAPP_REG_U8_GLOBAL_RESET_MODE_CONFIG_1		0x0c02
31562306a36Sopenharmony_ci#define SMIAPP_REG_U8_GLOBAL_RESET_MODE_CONFIG_2		0x0c03
31662306a36Sopenharmony_ci#define SMIAPP_REG_U16_TRDY_CTRL				(0x0c04 | CCS_FL_16BIT)
31762306a36Sopenharmony_ci#define SMIAPP_REG_U16_TRDOUT_CTRL				(0x0c06 | CCS_FL_16BIT)
31862306a36Sopenharmony_ci#define SMIAPP_REG_U16_TSHUTTER_STROBE_DELAY_CTRL		(0x0c08 | CCS_FL_16BIT)
31962306a36Sopenharmony_ci#define SMIAPP_REG_U16_TSHUTTER_STROBE_WIDTH_CTRL		(0x0c0a | CCS_FL_16BIT)
32062306a36Sopenharmony_ci#define SMIAPP_REG_U16_TFLASH_STROBE_DELAY_CTRL			(0x0c0c | CCS_FL_16BIT)
32162306a36Sopenharmony_ci#define SMIAPP_REG_U16_TFLASH_STROBE_WIDTH_HIGH_CTRL		(0x0c0e | CCS_FL_16BIT)
32262306a36Sopenharmony_ci#define SMIAPP_REG_U16_TGRST_INTERVAL_CTRL			(0x0c10 | CCS_FL_16BIT)
32362306a36Sopenharmony_ci#define SMIAPP_REG_U8_FLASH_STROBE_ADJUSTMENT			0x0c12
32462306a36Sopenharmony_ci#define SMIAPP_REG_U16_FLASH_STROBE_START_POINT			(0x0c14 | CCS_FL_16BIT)
32562306a36Sopenharmony_ci#define SMIAPP_REG_U16_TFLASH_STROBE_DELAY_RS_CTRL		(0x0c16 | CCS_FL_16BIT)
32662306a36Sopenharmony_ci#define SMIAPP_REG_U16_TFLASH_STROBE_WIDTH_HIGH_RS_CTRL		(0x0c18 | CCS_FL_16BIT)
32762306a36Sopenharmony_ci#define SMIAPP_REG_U8_FLASH_MODE_RS				0x0c1a
32862306a36Sopenharmony_ci#define SMIAPP_REG_U8_FLASH_TRIGGER_RS				0x0c1b
32962306a36Sopenharmony_ci#define SMIAPP_REG_U8_FLASH_STATUS				0x0c1c
33062306a36Sopenharmony_ci#define SMIAPP_REG_U8_SA_STROBE_MODE				0x0c1d
33162306a36Sopenharmony_ci#define SMIAPP_REG_U16_SA_STROBE_START_POINT			(0x0c1e | CCS_FL_16BIT)
33262306a36Sopenharmony_ci#define SMIAPP_REG_U16_TSA_STROBE_DELAY_CTRL			(0x0c20 | CCS_FL_16BIT)
33362306a36Sopenharmony_ci#define SMIAPP_REG_U16_TSA_STROBE_WIDTH_CTRL			(0x0c22 | CCS_FL_16BIT)
33462306a36Sopenharmony_ci#define SMIAPP_REG_U8_SA_STROBE_TRIGGER				0x0c24
33562306a36Sopenharmony_ci#define SMIAPP_REG_U8_SPECIAL_ACTUATOR_STATUS			0x0c25
33662306a36Sopenharmony_ci#define SMIAPP_REG_U16_TFLASH_STROBE_WIDTH2_HIGH_RS_CTRL	(0x0c26 | CCS_FL_16BIT)
33762306a36Sopenharmony_ci#define SMIAPP_REG_U16_TFLASH_STROBE_WIDTH_LOW_RS_CTRL		(0x0c28 | CCS_FL_16BIT)
33862306a36Sopenharmony_ci#define SMIAPP_REG_U8_TFLASH_STROBE_COUNT_RS_CTRL		0x0c2a
33962306a36Sopenharmony_ci#define SMIAPP_REG_U8_TFLASH_STROBE_COUNT_CTRL			0x0c2b
34062306a36Sopenharmony_ci#define SMIAPP_REG_U16_TFLASH_STROBE_WIDTH2_HIGH_CTRL		(0x0c2c | CCS_FL_16BIT)
34162306a36Sopenharmony_ci#define SMIAPP_REG_U16_TFLASH_STROBE_WIDTH_LOW_CTRL		(0x0c2e | CCS_FL_16BIT)
34262306a36Sopenharmony_ci#define SMIAPP_REG_U8_LOW_LEVEL_CTRL				0x0c80
34362306a36Sopenharmony_ci#define SMIAPP_REG_U16_MAIN_TRIGGER_REF_POINT			(0x0c82 | CCS_FL_16BIT)
34462306a36Sopenharmony_ci#define SMIAPP_REG_U16_MAIN_TRIGGER_T3				(0x0c84 | CCS_FL_16BIT)
34562306a36Sopenharmony_ci#define SMIAPP_REG_U8_MAIN_TRIGGER_COUNT			0x0c86
34662306a36Sopenharmony_ci#define SMIAPP_REG_U16_PHASE1_TRIGGER_T3			(0x0c88 | CCS_FL_16BIT)
34762306a36Sopenharmony_ci#define SMIAPP_REG_U8_PHASE1_TRIGGER_COUNT			0x0c8a
34862306a36Sopenharmony_ci#define SMIAPP_REG_U16_PHASE2_TRIGGER_T3			(0x0c8c | CCS_FL_16BIT)
34962306a36Sopenharmony_ci#define SMIAPP_REG_U8_PHASE2_TRIGGER_COUNT			0x0c8e
35062306a36Sopenharmony_ci#define SMIAPP_REG_U8_MECH_SHUTTER_CTRL				0x0d00
35162306a36Sopenharmony_ci#define SMIAPP_REG_U8_OPERATION_MODE				0x0d01
35262306a36Sopenharmony_ci#define SMIAPP_REG_U8_ACT_STATE1				0x0d02
35362306a36Sopenharmony_ci#define SMIAPP_REG_U8_ACT_STATE2				0x0d03
35462306a36Sopenharmony_ci#define SMIAPP_REG_U16_FOCUS_CHANGE				(0x0d80 | CCS_FL_16BIT)
35562306a36Sopenharmony_ci#define SMIAPP_REG_U16_FOCUS_CHANGE_CONTROL			(0x0d82 | CCS_FL_16BIT)
35662306a36Sopenharmony_ci#define SMIAPP_REG_U16_FOCUS_CHANGE_NUMBER_PHASE1		(0x0d84 | CCS_FL_16BIT)
35762306a36Sopenharmony_ci#define SMIAPP_REG_U16_FOCUS_CHANGE_NUMBER_PHASE2		(0x0d86 | CCS_FL_16BIT)
35862306a36Sopenharmony_ci#define SMIAPP_REG_U8_STROBE_COUNT_PHASE1			0x0d88
35962306a36Sopenharmony_ci#define SMIAPP_REG_U8_STROBE_COUNT_PHASE2			0x0d89
36062306a36Sopenharmony_ci#define SMIAPP_REG_U8_POSITION					0x0d8a
36162306a36Sopenharmony_ci#define SMIAPP_REG_U8_BRACKETING_LUT_CONTROL			0x0e00
36262306a36Sopenharmony_ci#define SMIAPP_REG_U8_BRACKETING_LUT_MODE			0x0e01
36362306a36Sopenharmony_ci#define SMIAPP_REG_U8_BRACKETING_LUT_ENTRY_CONTROL		0x0e02
36462306a36Sopenharmony_ci#define SMIAPP_REG_U8_LUT_PARAMETERS_START			0x0e10
36562306a36Sopenharmony_ci#define SMIAPP_REG_U8_LUT_PARAMETERS_END			0x0eff
36662306a36Sopenharmony_ci#define SMIAPP_REG_U16_INTEGRATION_TIME_CAPABILITY		(0x1000 | CCS_FL_16BIT)
36762306a36Sopenharmony_ci#define SMIAPP_REG_U16_COARSE_INTEGRATION_TIME_MIN		(0x1004 | CCS_FL_16BIT)
36862306a36Sopenharmony_ci#define SMIAPP_REG_U16_COARSE_INTEGRATION_TIME_MAX_MARGIN	(0x1006 | CCS_FL_16BIT)
36962306a36Sopenharmony_ci#define SMIAPP_REG_U16_FINE_INTEGRATION_TIME_MIN		(0x1008 | CCS_FL_16BIT)
37062306a36Sopenharmony_ci#define SMIAPP_REG_U16_FINE_INTEGRATION_TIME_MAX_MARGIN		(0x100a | CCS_FL_16BIT)
37162306a36Sopenharmony_ci#define SMIAPP_REG_U16_DIGITAL_GAIN_CAPABILITY			(0x1080 | CCS_FL_16BIT)
37262306a36Sopenharmony_ci#define SMIAPP_REG_U16_DIGITAL_GAIN_MIN				(0x1084 | CCS_FL_16BIT)
37362306a36Sopenharmony_ci#define SMIAPP_REG_U16_DIGITAL_GAIN_MAX				(0x1086 | CCS_FL_16BIT)
37462306a36Sopenharmony_ci#define SMIAPP_REG_U16_DIGITAL_GAIN_STEP_SIZE			(0x1088 | CCS_FL_16BIT)
37562306a36Sopenharmony_ci#define SMIAPP_REG_F32_MIN_EXT_CLK_FREQ_HZ			(0x1100 | CCS_FL_FLOAT_IREAL | CCS_FL_32BIT)
37662306a36Sopenharmony_ci#define SMIAPP_REG_F32_MAX_EXT_CLK_FREQ_HZ			(0x1104 | CCS_FL_FLOAT_IREAL | CCS_FL_32BIT)
37762306a36Sopenharmony_ci#define SMIAPP_REG_U16_MIN_PRE_PLL_CLK_DIV			(0x1108 | CCS_FL_16BIT)
37862306a36Sopenharmony_ci#define SMIAPP_REG_U16_MAX_PRE_PLL_CLK_DIV			(0x110a | CCS_FL_16BIT)
37962306a36Sopenharmony_ci#define SMIAPP_REG_F32_MIN_PLL_IP_FREQ_HZ			(0x110c | CCS_FL_FLOAT_IREAL | CCS_FL_32BIT)
38062306a36Sopenharmony_ci#define SMIAPP_REG_F32_MAX_PLL_IP_FREQ_HZ			(0x1110 | CCS_FL_FLOAT_IREAL | CCS_FL_32BIT)
38162306a36Sopenharmony_ci#define SMIAPP_REG_U16_MIN_PLL_MULTIPLIER			(0x1114 | CCS_FL_16BIT)
38262306a36Sopenharmony_ci#define SMIAPP_REG_U16_MAX_PLL_MULTIPLIER			(0x1116 | CCS_FL_16BIT)
38362306a36Sopenharmony_ci#define SMIAPP_REG_F32_MIN_PLL_OP_FREQ_HZ			(0x1118 | CCS_FL_FLOAT_IREAL | CCS_FL_32BIT)
38462306a36Sopenharmony_ci#define SMIAPP_REG_F32_MAX_PLL_OP_FREQ_HZ			(0x111c | CCS_FL_FLOAT_IREAL | CCS_FL_32BIT)
38562306a36Sopenharmony_ci#define SMIAPP_REG_U16_MIN_VT_SYS_CLK_DIV			(0x1120 | CCS_FL_16BIT)
38662306a36Sopenharmony_ci#define SMIAPP_REG_U16_MAX_VT_SYS_CLK_DIV			(0x1122 | CCS_FL_16BIT)
38762306a36Sopenharmony_ci#define SMIAPP_REG_F32_MIN_VT_SYS_CLK_FREQ_HZ			(0x1124 | CCS_FL_FLOAT_IREAL | CCS_FL_32BIT)
38862306a36Sopenharmony_ci#define SMIAPP_REG_F32_MAX_VT_SYS_CLK_FREQ_HZ			(0x1128 | CCS_FL_FLOAT_IREAL | CCS_FL_32BIT)
38962306a36Sopenharmony_ci#define SMIAPP_REG_F32_MIN_VT_PIX_CLK_FREQ_HZ			(0x112c | CCS_FL_FLOAT_IREAL | CCS_FL_32BIT)
39062306a36Sopenharmony_ci#define SMIAPP_REG_F32_MAX_VT_PIX_CLK_FREQ_HZ			(0x1130 | CCS_FL_FLOAT_IREAL | CCS_FL_32BIT)
39162306a36Sopenharmony_ci#define SMIAPP_REG_U16_MIN_VT_PIX_CLK_DIV			(0x1134 | CCS_FL_16BIT)
39262306a36Sopenharmony_ci#define SMIAPP_REG_U16_MAX_VT_PIX_CLK_DIV			(0x1136 | CCS_FL_16BIT)
39362306a36Sopenharmony_ci#define SMIAPP_REG_U16_MIN_FRAME_LENGTH_LINES			(0x1140 | CCS_FL_16BIT)
39462306a36Sopenharmony_ci#define SMIAPP_REG_U16_MAX_FRAME_LENGTH_LINES			(0x1142 | CCS_FL_16BIT)
39562306a36Sopenharmony_ci#define SMIAPP_REG_U16_MIN_LINE_LENGTH_PCK			(0x1144 | CCS_FL_16BIT)
39662306a36Sopenharmony_ci#define SMIAPP_REG_U16_MAX_LINE_LENGTH_PCK			(0x1146 | CCS_FL_16BIT)
39762306a36Sopenharmony_ci#define SMIAPP_REG_U16_MIN_LINE_BLANKING_PCK			(0x1148 | CCS_FL_16BIT)
39862306a36Sopenharmony_ci#define SMIAPP_REG_U16_MIN_FRAME_BLANKING_LINES			(0x114a | CCS_FL_16BIT)
39962306a36Sopenharmony_ci#define SMIAPP_REG_U8_MIN_LINE_LENGTH_PCK_STEP_SIZE		0x114c
40062306a36Sopenharmony_ci#define SMIAPP_REG_U16_MIN_OP_SYS_CLK_DIV			(0x1160 | CCS_FL_16BIT)
40162306a36Sopenharmony_ci#define SMIAPP_REG_U16_MAX_OP_SYS_CLK_DIV			(0x1162 | CCS_FL_16BIT)
40262306a36Sopenharmony_ci#define SMIAPP_REG_F32_MIN_OP_SYS_CLK_FREQ_HZ			(0x1164 | CCS_FL_FLOAT_IREAL | CCS_FL_32BIT)
40362306a36Sopenharmony_ci#define SMIAPP_REG_F32_MAX_OP_SYS_CLK_FREQ_HZ			(0x1168 | CCS_FL_FLOAT_IREAL | CCS_FL_32BIT)
40462306a36Sopenharmony_ci#define SMIAPP_REG_U16_MIN_OP_PIX_CLK_DIV			(0x116c | CCS_FL_16BIT)
40562306a36Sopenharmony_ci#define SMIAPP_REG_U16_MAX_OP_PIX_CLK_DIV			(0x116e | CCS_FL_16BIT)
40662306a36Sopenharmony_ci#define SMIAPP_REG_F32_MIN_OP_PIX_CLK_FREQ_HZ			(0x1170 | CCS_FL_FLOAT_IREAL | CCS_FL_32BIT)
40762306a36Sopenharmony_ci#define SMIAPP_REG_F32_MAX_OP_PIX_CLK_FREQ_HZ			(0x1174 | CCS_FL_FLOAT_IREAL | CCS_FL_32BIT)
40862306a36Sopenharmony_ci#define SMIAPP_REG_U16_X_ADDR_MIN				(0x1180 | CCS_FL_16BIT)
40962306a36Sopenharmony_ci#define SMIAPP_REG_U16_Y_ADDR_MIN				(0x1182 | CCS_FL_16BIT)
41062306a36Sopenharmony_ci#define SMIAPP_REG_U16_X_ADDR_MAX				(0x1184 | CCS_FL_16BIT)
41162306a36Sopenharmony_ci#define SMIAPP_REG_U16_Y_ADDR_MAX				(0x1186 | CCS_FL_16BIT)
41262306a36Sopenharmony_ci#define SMIAPP_REG_U16_MIN_X_OUTPUT_SIZE			(0x1188 | CCS_FL_16BIT)
41362306a36Sopenharmony_ci#define SMIAPP_REG_U16_MIN_Y_OUTPUT_SIZE			(0x118a | CCS_FL_16BIT)
41462306a36Sopenharmony_ci#define SMIAPP_REG_U16_MAX_X_OUTPUT_SIZE			(0x118c | CCS_FL_16BIT)
41562306a36Sopenharmony_ci#define SMIAPP_REG_U16_MAX_Y_OUTPUT_SIZE			(0x118e | CCS_FL_16BIT)
41662306a36Sopenharmony_ci#define SMIAPP_REG_U16_MIN_EVEN_INC				(0x11c0 | CCS_FL_16BIT)
41762306a36Sopenharmony_ci#define SMIAPP_REG_U16_MAX_EVEN_INC				(0x11c2 | CCS_FL_16BIT)
41862306a36Sopenharmony_ci#define SMIAPP_REG_U16_MIN_ODD_INC				(0x11c4 | CCS_FL_16BIT)
41962306a36Sopenharmony_ci#define SMIAPP_REG_U16_MAX_ODD_INC				(0x11c6 | CCS_FL_16BIT)
42062306a36Sopenharmony_ci#define SMIAPP_REG_U16_SCALING_CAPABILITY			(0x1200 | CCS_FL_16BIT)
42162306a36Sopenharmony_ci#define SMIAPP_REG_U16_SCALER_M_MIN				(0x1204 | CCS_FL_16BIT)
42262306a36Sopenharmony_ci#define SMIAPP_REG_U16_SCALER_M_MAX				(0x1206 | CCS_FL_16BIT)
42362306a36Sopenharmony_ci#define SMIAPP_REG_U16_SCALER_N_MIN				(0x1208 | CCS_FL_16BIT)
42462306a36Sopenharmony_ci#define SMIAPP_REG_U16_SCALER_N_MAX				(0x120a | CCS_FL_16BIT)
42562306a36Sopenharmony_ci#define SMIAPP_REG_U16_SPATIAL_SAMPLING_CAPABILITY		(0x120c | CCS_FL_16BIT)
42662306a36Sopenharmony_ci#define SMIAPP_REG_U8_DIGITAL_CROP_CAPABILITY			0x120e
42762306a36Sopenharmony_ci#define SMIAPP_REG_U16_COMPRESSION_CAPABILITY			(0x1300 | CCS_FL_16BIT)
42862306a36Sopenharmony_ci#define SMIAPP_REG_U16_MATRIX_ELEMENT_REDINRED			(0x1400 | CCS_FL_16BIT)
42962306a36Sopenharmony_ci#define SMIAPP_REG_U16_MATRIX_ELEMENT_GREENINRED		(0x1402 | CCS_FL_16BIT)
43062306a36Sopenharmony_ci#define SMIAPP_REG_U16_MATRIX_ELEMENT_BLUEINRED			(0x1404 | CCS_FL_16BIT)
43162306a36Sopenharmony_ci#define SMIAPP_REG_U16_MATRIX_ELEMENT_REDINGREEN		(0x1406 | CCS_FL_16BIT)
43262306a36Sopenharmony_ci#define SMIAPP_REG_U16_MATRIX_ELEMENT_GREENINGREEN		(0x1408 | CCS_FL_16BIT)
43362306a36Sopenharmony_ci#define SMIAPP_REG_U16_MATRIX_ELEMENT_BLUEINGREEN		(0x140a | CCS_FL_16BIT)
43462306a36Sopenharmony_ci#define SMIAPP_REG_U16_MATRIX_ELEMENT_REDINBLUE			(0x140c | CCS_FL_16BIT)
43562306a36Sopenharmony_ci#define SMIAPP_REG_U16_MATRIX_ELEMENT_GREENINBLUE		(0x140e | CCS_FL_16BIT)
43662306a36Sopenharmony_ci#define SMIAPP_REG_U16_MATRIX_ELEMENT_BLUEINBLUE		(0x1410 | CCS_FL_16BIT)
43762306a36Sopenharmony_ci#define SMIAPP_REG_U16_FIFO_SIZE_PIXELS				(0x1500 | CCS_FL_16BIT)
43862306a36Sopenharmony_ci#define SMIAPP_REG_U8_FIFO_SUPPORT_CAPABILITY			0x1502
43962306a36Sopenharmony_ci#define SMIAPP_REG_U8_DPHY_CTRL_CAPABILITY			0x1600
44062306a36Sopenharmony_ci#define SMIAPP_REG_U8_CSI_LANE_MODE_CAPABILITY			0x1601
44162306a36Sopenharmony_ci#define SMIAPP_REG_U8_CSI_SIGNALLING_MODE_CAPABILITY		0x1602
44262306a36Sopenharmony_ci#define SMIAPP_REG_U8_FAST_STANDBY_CAPABILITY			0x1603
44362306a36Sopenharmony_ci#define SMIAPP_REG_U8_CCI_ADDRESS_CONTROL_CAPABILITY		0x1604
44462306a36Sopenharmony_ci#define SMIAPP_REG_U32_MAX_PER_LANE_BITRATE_1_LANE_MODE_MBPS	(0x1608 | CCS_FL_32BIT)
44562306a36Sopenharmony_ci#define SMIAPP_REG_U32_MAX_PER_LANE_BITRATE_2_LANE_MODE_MBPS	(0x160c | CCS_FL_32BIT)
44662306a36Sopenharmony_ci#define SMIAPP_REG_U32_MAX_PER_LANE_BITRATE_3_LANE_MODE_MBPS	(0x1610 | CCS_FL_32BIT)
44762306a36Sopenharmony_ci#define SMIAPP_REG_U32_MAX_PER_LANE_BITRATE_4_LANE_MODE_MBPS	(0x1614 | CCS_FL_32BIT)
44862306a36Sopenharmony_ci#define SMIAPP_REG_U8_TEMP_SENSOR_CAPABILITY			0x1618
44962306a36Sopenharmony_ci#define SMIAPP_REG_U16_MIN_FRAME_LENGTH_LINES_BIN		(0x1700 | CCS_FL_16BIT)
45062306a36Sopenharmony_ci#define SMIAPP_REG_U16_MAX_FRAME_LENGTH_LINES_BIN		(0x1702 | CCS_FL_16BIT)
45162306a36Sopenharmony_ci#define SMIAPP_REG_U16_MIN_LINE_LENGTH_PCK_BIN			(0x1704 | CCS_FL_16BIT)
45262306a36Sopenharmony_ci#define SMIAPP_REG_U16_MAX_LINE_LENGTH_PCK_BIN			(0x1706 | CCS_FL_16BIT)
45362306a36Sopenharmony_ci#define SMIAPP_REG_U16_MIN_LINE_BLANKING_PCK_BIN		(0x1708 | CCS_FL_16BIT)
45462306a36Sopenharmony_ci#define SMIAPP_REG_U16_FINE_INTEGRATION_TIME_MIN_BIN		(0x170a | CCS_FL_16BIT)
45562306a36Sopenharmony_ci#define SMIAPP_REG_U16_FINE_INTEGRATION_TIME_MAX_MARGIN_BIN	(0x170c | CCS_FL_16BIT)
45662306a36Sopenharmony_ci#define SMIAPP_REG_U8_BINNING_CAPABILITY			0x1710
45762306a36Sopenharmony_ci#define SMIAPP_REG_U8_BINNING_WEIGHTING_CAPABILITY		0x1711
45862306a36Sopenharmony_ci#define SMIAPP_REG_U8_BINNING_SUBTYPES				0x1712
45962306a36Sopenharmony_ci#define SMIAPP_REG_U8_BINNING_TYPE_n(n)				(0x1713 + (n)) /* 1 <= n <= 237 */
46062306a36Sopenharmony_ci#define SMIAPP_REG_U8_DATA_TRANSFER_IF_CAPABILITY		0x1800
46162306a36Sopenharmony_ci#define SMIAPP_REG_U8_SHADING_CORRECTION_CAPABILITY		0x1900
46262306a36Sopenharmony_ci#define SMIAPP_REG_U8_GREEN_IMBALANCE_CAPABILITY		0x1901
46362306a36Sopenharmony_ci#define SMIAPP_REG_U8_BLACK_LEVEL_CAPABILITY			0x1902
46462306a36Sopenharmony_ci#define SMIAPP_REG_U8_MODULE_SPECIFIC_CORRECTION_CAPABILITY	0x1903
46562306a36Sopenharmony_ci#define SMIAPP_REG_U16_DEFECT_CORRECTION_CAPABILITY		(0x1904 | CCS_FL_16BIT)
46662306a36Sopenharmony_ci#define SMIAPP_REG_U16_DEFECT_CORRECTION_CAPABILITY_2		(0x1906 | CCS_FL_16BIT)
46762306a36Sopenharmony_ci#define SMIAPP_REG_U8_EDOF_CAPABILITY				0x1980
46862306a36Sopenharmony_ci#define SMIAPP_REG_U8_ESTIMATION_FRAMES				0x1981
46962306a36Sopenharmony_ci#define SMIAPP_REG_U8_SUPPORTS_SHARPNESS_ADJ			0x1982
47062306a36Sopenharmony_ci#define SMIAPP_REG_U8_SUPPORTS_DENOISING_ADJ			0x1983
47162306a36Sopenharmony_ci#define SMIAPP_REG_U8_SUPPORTS_MODULE_SPECIFIC_ADJ		0x1984
47262306a36Sopenharmony_ci#define SMIAPP_REG_U8_SUPPORTS_DEPTH_OF_FIELD_ADJ		0x1985
47362306a36Sopenharmony_ci#define SMIAPP_REG_U8_SUPPORTS_FOCUS_DISTANCE_ADJ		0x1986
47462306a36Sopenharmony_ci#define SMIAPP_REG_U8_COLOUR_FEEDBACK_CAPABILITY		0x1987
47562306a36Sopenharmony_ci#define SMIAPP_REG_U8_EDOF_SUPPORT_AB_NXM			0x1988
47662306a36Sopenharmony_ci#define SMIAPP_REG_U8_ESTIMATION_MODE_CAPABILITY		0x19c0
47762306a36Sopenharmony_ci#define SMIAPP_REG_U8_ESTIMATION_ZONE_CAPABILITY		0x19c1
47862306a36Sopenharmony_ci#define SMIAPP_REG_U16_EST_DEPTH_OF_FIELD			(0x19c2 | CCS_FL_16BIT)
47962306a36Sopenharmony_ci#define SMIAPP_REG_U16_EST_FOCUS_DISTANCE			(0x19c4 | CCS_FL_16BIT)
48062306a36Sopenharmony_ci#define SMIAPP_REG_U16_CAPABILITY_TRDY_MIN			(0x1a00 | CCS_FL_16BIT)
48162306a36Sopenharmony_ci#define SMIAPP_REG_U8_FLASH_MODE_CAPABILITY			0x1a02
48262306a36Sopenharmony_ci#define SMIAPP_REG_U16_MECH_SHUT_AND_ACT_START_ADDR		(0x1b02 | CCS_FL_16BIT)
48362306a36Sopenharmony_ci#define SMIAPP_REG_U8_ACTUATOR_CAPABILITY			0x1b04
48462306a36Sopenharmony_ci#define SMIAPP_REG_U16_ACTUATOR_TYPE				(0x1b40 | CCS_FL_16BIT)
48562306a36Sopenharmony_ci#define SMIAPP_REG_U8_AF_DEVICE_ADDRESS				0x1b42
48662306a36Sopenharmony_ci#define SMIAPP_REG_U16_FOCUS_CHANGE_ADDRESS			(0x1b44 | CCS_FL_16BIT)
48762306a36Sopenharmony_ci#define SMIAPP_REG_U8_BRACKETING_LUT_CAPABILITY_1		0x1c00
48862306a36Sopenharmony_ci#define SMIAPP_REG_U8_BRACKETING_LUT_CAPABILITY_2		0x1c01
48962306a36Sopenharmony_ci#define SMIAPP_REG_U8_BRACKETING_LUT_SIZE			0x1c02
49062306a36Sopenharmony_ci
49162306a36Sopenharmony_ci/* Register bit definitions */
49262306a36Sopenharmony_ci#define SMIAPP_IMAGE_ORIENTATION_HFLIP			BIT(0)
49362306a36Sopenharmony_ci#define SMIAPP_IMAGE_ORIENTATION_VFLIP			BIT(1)
49462306a36Sopenharmony_ci
49562306a36Sopenharmony_ci#define SMIAPP_DATA_TRANSFER_IF_1_CTRL_EN		BIT(0)
49662306a36Sopenharmony_ci#define SMIAPP_DATA_TRANSFER_IF_1_CTRL_WR_EN		BIT(1)
49762306a36Sopenharmony_ci#define SMIAPP_DATA_TRANSFER_IF_1_CTRL_ERR_CLEAR	BIT(2)
49862306a36Sopenharmony_ci#define SMIAPP_DATA_TRANSFER_IF_1_STATUS_RD_READY	BIT(0)
49962306a36Sopenharmony_ci#define SMIAPP_DATA_TRANSFER_IF_1_STATUS_WR_READY	BIT(1)
50062306a36Sopenharmony_ci#define SMIAPP_DATA_TRANSFER_IF_1_STATUS_EDATA		BIT(2)
50162306a36Sopenharmony_ci#define SMIAPP_DATA_TRANSFER_IF_1_STATUS_EUSAGE		BIT(3)
50262306a36Sopenharmony_ci
50362306a36Sopenharmony_ci#define SMIAPP_DATA_TRANSFER_IF_CAPABILITY_SUPPORTED	BIT(0)
50462306a36Sopenharmony_ci#define SMIAPP_DATA_TRANSFER_IF_CAPABILITY_POLL		BIT(2)
50562306a36Sopenharmony_ci
50662306a36Sopenharmony_ci#define SMIAPP_SOFTWARE_RESET				BIT(0)
50762306a36Sopenharmony_ci
50862306a36Sopenharmony_ci#define SMIAPP_FLASH_MODE_CAPABILITY_SINGLE_STROBE	BIT(0)
50962306a36Sopenharmony_ci#define SMIAPP_FLASH_MODE_CAPABILITY_MULTIPLE_STROBE	BIT(1)
51062306a36Sopenharmony_ci
51162306a36Sopenharmony_ci#define SMIAPP_CSI_SIGNALLING_MODE_CCP2_DATA_CLOCK	0
51262306a36Sopenharmony_ci#define SMIAPP_CSI_SIGNALLING_MODE_CCP2_DATA_STROBE	1
51362306a36Sopenharmony_ci#define SMIAPP_CSI_SIGNALLING_MODE_CSI2			2
51462306a36Sopenharmony_ci
51562306a36Sopenharmony_ci#define SMIAPP_DPHY_CTRL_AUTOMATIC			0
51662306a36Sopenharmony_ci/* DPHY control based on REQUESTED_LINK_BIT_RATE_MBPS */
51762306a36Sopenharmony_ci#define SMIAPP_DPHY_CTRL_UI				1
51862306a36Sopenharmony_ci#define SMIAPP_DPHY_CTRL_REGISTER			2
51962306a36Sopenharmony_ci
52062306a36Sopenharmony_ci#define SMIAPP_COMPRESSION_MODE_SIMPLE_PREDICTOR	1
52162306a36Sopenharmony_ci#define SMIAPP_COMPRESSION_MODE_ADVANCED_PREDICTOR	2
52262306a36Sopenharmony_ci
52362306a36Sopenharmony_ci#define SMIAPP_MODE_SELECT_SOFTWARE_STANDBY		0
52462306a36Sopenharmony_ci#define SMIAPP_MODE_SELECT_STREAMING			1
52562306a36Sopenharmony_ci
52662306a36Sopenharmony_ci#define SMIAPP_SCALING_MODE_NONE			0
52762306a36Sopenharmony_ci#define SMIAPP_SCALING_MODE_HORIZONTAL			1
52862306a36Sopenharmony_ci#define SMIAPP_SCALING_MODE_BOTH			2
52962306a36Sopenharmony_ci
53062306a36Sopenharmony_ci#define SMIAPP_SCALING_CAPABILITY_NONE			0
53162306a36Sopenharmony_ci#define SMIAPP_SCALING_CAPABILITY_HORIZONTAL		1
53262306a36Sopenharmony_ci#define SMIAPP_SCALING_CAPABILITY_BOTH			2 /* horizontal/both */
53362306a36Sopenharmony_ci
53462306a36Sopenharmony_ci/* digital crop right before scaler */
53562306a36Sopenharmony_ci#define SMIAPP_DIGITAL_CROP_CAPABILITY_NONE		0
53662306a36Sopenharmony_ci#define SMIAPP_DIGITAL_CROP_CAPABILITY_INPUT_CROP	1
53762306a36Sopenharmony_ci
53862306a36Sopenharmony_ci#define SMIAPP_DIGITAL_GAIN_CAPABILITY_PER_CHANNEL	1
53962306a36Sopenharmony_ci
54062306a36Sopenharmony_ci#define SMIAPP_BINNING_CAPABILITY_NO			0
54162306a36Sopenharmony_ci#define SMIAPP_BINNING_CAPABILITY_YES			1
54262306a36Sopenharmony_ci
54362306a36Sopenharmony_ci/* Maximum number of binning subtypes */
54462306a36Sopenharmony_ci#define SMIAPP_BINNING_SUBTYPES				253
54562306a36Sopenharmony_ci
54662306a36Sopenharmony_ci#define SMIAPP_PIXEL_ORDER_GRBG				0
54762306a36Sopenharmony_ci#define SMIAPP_PIXEL_ORDER_RGGB				1
54862306a36Sopenharmony_ci#define SMIAPP_PIXEL_ORDER_BGGR				2
54962306a36Sopenharmony_ci#define SMIAPP_PIXEL_ORDER_GBRG				3
55062306a36Sopenharmony_ci
55162306a36Sopenharmony_ci#define SMIAPP_DATA_FORMAT_MODEL_TYPE_NORMAL		1
55262306a36Sopenharmony_ci#define SMIAPP_DATA_FORMAT_MODEL_TYPE_EXTENDED		2
55362306a36Sopenharmony_ci#define SMIAPP_DATA_FORMAT_MODEL_TYPE_NORMAL_N		8
55462306a36Sopenharmony_ci#define SMIAPP_DATA_FORMAT_MODEL_TYPE_EXTENDED_N	16
55562306a36Sopenharmony_ci
55662306a36Sopenharmony_ci#define SMIAPP_FRAME_FORMAT_MODEL_TYPE_2BYTE		0x01
55762306a36Sopenharmony_ci#define SMIAPP_FRAME_FORMAT_MODEL_TYPE_4BYTE		0x02
55862306a36Sopenharmony_ci#define SMIAPP_FRAME_FORMAT_MODEL_SUBTYPE_NROWS_MASK	0x0f
55962306a36Sopenharmony_ci#define SMIAPP_FRAME_FORMAT_MODEL_SUBTYPE_NCOLS_MASK	0xf0
56062306a36Sopenharmony_ci#define SMIAPP_FRAME_FORMAT_MODEL_SUBTYPE_NCOLS_SHIFT	4
56162306a36Sopenharmony_ci
56262306a36Sopenharmony_ci#define SMIAPP_FRAME_FORMAT_DESC_2_PIXELCODE_MASK	0xf000
56362306a36Sopenharmony_ci#define SMIAPP_FRAME_FORMAT_DESC_2_PIXELCODE_SHIFT	12
56462306a36Sopenharmony_ci#define SMIAPP_FRAME_FORMAT_DESC_2_PIXELS_MASK		0x0fff
56562306a36Sopenharmony_ci
56662306a36Sopenharmony_ci#define SMIAPP_FRAME_FORMAT_DESC_4_PIXELCODE_MASK	0xf0000000
56762306a36Sopenharmony_ci#define SMIAPP_FRAME_FORMAT_DESC_4_PIXELCODE_SHIFT	28
56862306a36Sopenharmony_ci#define SMIAPP_FRAME_FORMAT_DESC_4_PIXELS_MASK		0x0000ffff
56962306a36Sopenharmony_ci
57062306a36Sopenharmony_ci#define SMIAPP_FRAME_FORMAT_DESC_PIXELCODE_EMBEDDED	1
57162306a36Sopenharmony_ci#define SMIAPP_FRAME_FORMAT_DESC_PIXELCODE_DUMMY	2
57262306a36Sopenharmony_ci#define SMIAPP_FRAME_FORMAT_DESC_PIXELCODE_BLACK	3
57362306a36Sopenharmony_ci#define SMIAPP_FRAME_FORMAT_DESC_PIXELCODE_DARK		4
57462306a36Sopenharmony_ci#define SMIAPP_FRAME_FORMAT_DESC_PIXELCODE_VISIBLE	5
57562306a36Sopenharmony_ci
57662306a36Sopenharmony_ci#define SMIAPP_FAST_STANDBY_CTRL_COMPLETE_FRAMES	0
57762306a36Sopenharmony_ci#define SMIAPP_FAST_STANDBY_CTRL_IMMEDIATE		1
57862306a36Sopenharmony_ci
57962306a36Sopenharmony_ci/* Scaling N factor */
58062306a36Sopenharmony_ci#define SMIAPP_SCALE_N					16
58162306a36Sopenharmony_ci
58262306a36Sopenharmony_ci#endif /* __SMIAPP_REG_DEFS_H__ */
583