Lines Matching +full:0 +full:x0700

31 #define CH7017_TV_DISPLAY_MODE		0x00
32 #define CH7017_FLICKER_FILTER 0x01
33 #define CH7017_VIDEO_BANDWIDTH 0x02
34 #define CH7017_TEXT_ENHANCEMENT 0x03
35 #define CH7017_START_ACTIVE_VIDEO 0x04
36 #define CH7017_HORIZONTAL_POSITION 0x05
37 #define CH7017_VERTICAL_POSITION 0x06
38 #define CH7017_BLACK_LEVEL 0x07
39 #define CH7017_CONTRAST_ENHANCEMENT 0x08
40 #define CH7017_TV_PLL 0x09
41 #define CH7017_TV_PLL_M 0x0a
42 #define CH7017_TV_PLL_N 0x0b
43 #define CH7017_SUB_CARRIER_0 0x0c
44 #define CH7017_CIV_CONTROL 0x10
45 #define CH7017_CIV_0 0x11
46 #define CH7017_CHROMA_BOOST 0x14
47 #define CH7017_CLOCK_MODE 0x1c
48 #define CH7017_INPUT_CLOCK 0x1d
49 #define CH7017_GPIO_CONTROL 0x1e
50 #define CH7017_INPUT_DATA_FORMAT 0x1f
51 #define CH7017_CONNECTION_DETECT 0x20
52 #define CH7017_DAC_CONTROL 0x21
53 #define CH7017_BUFFERED_CLOCK_OUTPUT 0x22
54 #define CH7017_DEFEAT_VSYNC 0x47
55 #define CH7017_TEST_PATTERN 0x48
57 #define CH7017_POWER_MANAGEMENT 0x49
59 #define CH7017_TV_EN (1 << 0)
67 #define CH7017_VERSION_ID 0x4a
69 #define CH7017_DEVICE_ID 0x4b
70 #define CH7017_DEVICE_ID_VALUE 0x1b
71 #define CH7018_DEVICE_ID_VALUE 0x1a
72 #define CH7019_DEVICE_ID_VALUE 0x19
74 #define CH7017_XCLK_D2_ADJUST 0x53
75 #define CH7017_UP_SCALER_COEFF_0 0x55
76 #define CH7017_UP_SCALER_COEFF_1 0x56
77 #define CH7017_UP_SCALER_COEFF_2 0x57
78 #define CH7017_UP_SCALER_COEFF_3 0x58
79 #define CH7017_UP_SCALER_COEFF_4 0x59
80 #define CH7017_UP_SCALER_VERTICAL_INC_0 0x5a
81 #define CH7017_UP_SCALER_VERTICAL_INC_1 0x5b
82 #define CH7017_GPIO_INVERT 0x5c
83 #define CH7017_UP_SCALER_HORIZONTAL_INC_0 0x5d
84 #define CH7017_UP_SCALER_HORIZONTAL_INC_1 0x5e
86 #define CH7017_HORIZONTAL_ACTIVE_PIXEL_INPUT 0x5f
89 #define CH7017_ACTIVE_INPUT_LINE_OUTPUT 0x60
91 #define CH7017_LVDS_HAP_INPUT_MASK (0x7 << 0)
93 #define CH7017_LVDS_VAL_HIGH_MASK (0x7 << 3)
95 #define CH7017_VERTICAL_ACTIVE_LINE_OUTPUT 0x61
98 #define CH7017_HORIZONTAL_ACTIVE_PIXEL_OUTPUT 0x62
101 #define CH7017_LVDS_POWER_DOWN 0x63
103 #define CH7017_LVDS_HAP_HIGH_MASK (0x7 << 0)
108 #define CH7017_LVDS_POWER_DOWN_DEFAULT_RESERVED 0x08
110 #define CH7017_LVDS_ENCODING 0x64
116 #define CH7017_LVDS_ENCODING_2 0x65
118 #define CH7017_LVDS_PLL_CONTROL 0x66
120 #define CH7017_LVDS_PANEN (1 << 0)
124 #define CH7017_POWER_SEQUENCING_T1 0x67
125 #define CH7017_POWER_SEQUENCING_T2 0x68
126 #define CH7017_POWER_SEQUENCING_T3 0x69
127 #define CH7017_POWER_SEQUENCING_T4 0x6a
128 #define CH7017_POWER_SEQUENCING_T5 0x6b
129 #define CH7017_GPIO_DRIVER_TYPE 0x6c
130 #define CH7017_GPIO_DATA 0x6d
131 #define CH7017_GPIO_DIRECTION_CONTROL 0x6e
133 #define CH7017_LVDS_PLL_FEEDBACK_DIV 0x71
135 # define CH7017_LVDS_PLL_FEED_FORWARD_DIVIDER_SHIFT 0
136 # define CH7017_LVDS_PLL_FEEDBACK_DEFAULT_RESERVED 0x80
138 #define CH7017_LVDS_PLL_VCO_CONTROL 0x72
139 # define CH7017_LVDS_PLL_VCO_DEFAULT_RESERVED 0x80
141 # define CH7017_LVDS_PLL_POST_SCALE_DIV_SHIFT 0
143 #define CH7017_OUTPUTS_ENABLE 0x73
144 # define CH7017_CHARGE_PUMP_LOW 0x0
145 # define CH7017_CHARGE_PUMP_HIGH 0x3
152 #define CH7017_LVDS_OUTPUT_AMPLITUDE 0x74
153 #define CH7017_LVDS_PLL_EMI_REDUCTION 0x75
154 #define CH7017_LVDS_POWER_DOWN_FLICKER 0x76
156 #define CH7017_LVDS_CONTROL_2 0x78
158 # define CH7017_PHASE_DETECTOR_SHIFT 0
160 #define CH7017_BANG_LIMIT_CONTROL 0x7f
174 .flags = 0, in ch7017_read()
193 .flags = 0, in ch7017_write()
281 (0 << CH7017_PHASE_DETECTOR_SHIFT); in ch7017_mode_set()
289 (0 << CH7017_PHASE_DETECTOR_SHIFT); in ch7017_mode_set()
302 horizontal_active_pixel_input = mode->hdisplay & 0x00ff; in ch7017_mode_set()
304 vertical_active_line_output = mode->vdisplay & 0x00ff; in ch7017_mode_set()
305 horizontal_active_pixel_output = mode->hdisplay & 0x00ff; in ch7017_mode_set()
307 active_input_line_output = ((mode->hdisplay & 0x0700) >> 8) | in ch7017_mode_set()
308 (((mode->vdisplay & 0x0700) >> 8) << 3); in ch7017_mode_set()
311 (mode->hdisplay & 0x0700) >> 8; in ch7017_mode_set()
383 } while (0) in ch7017_dump_regs()