xref: /linux/drivers/gpu/drm/amd/display/dc/dce/dce_i2c_hw.h (revision 44f57d78)
1 /*
2  * Copyright 2018 Advanced Micro Devices, Inc.
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
17  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20  * OTHER DEALINGS IN THE SOFTWARE.
21  *
22  * Authors: AMD
23  *
24  */
25 
26 #ifndef __DCE_I2C_HW_H__
27 #define __DCE_I2C_HW_H__
28 
29 enum dc_i2c_status {
30 	DC_I2C_STATUS__DC_I2C_STATUS_IDLE,
31 	DC_I2C_STATUS__DC_I2C_STATUS_USED_BY_SW,
32 	DC_I2C_STATUS__DC_I2C_STATUS_USED_BY_HW,
33 	DC_I2C_REG_RW_CNTL_STATUS_DMCU_ONLY = 2,
34 };
35 
36 enum dc_i2c_arbitration {
37 	DC_I2C_ARBITRATION__DC_I2C_SW_PRIORITY_NORMAL,
38 	DC_I2C_ARBITRATION__DC_I2C_SW_PRIORITY_HIGH
39 };
40 
41 enum i2c_channel_operation_result {
42 	I2C_CHANNEL_OPERATION_SUCCEEDED,
43 	I2C_CHANNEL_OPERATION_FAILED,
44 	I2C_CHANNEL_OPERATION_NOT_GRANTED,
45 	I2C_CHANNEL_OPERATION_IS_BUSY,
46 	I2C_CHANNEL_OPERATION_NO_HANDLE_PROVIDED,
47 	I2C_CHANNEL_OPERATION_CHANNEL_IN_USE,
48 	I2C_CHANNEL_OPERATION_CHANNEL_CLIENT_MAX_ALLOWED,
49 	I2C_CHANNEL_OPERATION_ENGINE_BUSY,
50 	I2C_CHANNEL_OPERATION_TIMEOUT,
51 	I2C_CHANNEL_OPERATION_NO_RESPONSE,
52 	I2C_CHANNEL_OPERATION_HW_REQUEST_I2C_BUS,
53 	I2C_CHANNEL_OPERATION_WRONG_PARAMETER,
54 	I2C_CHANNEL_OPERATION_OUT_NB_OF_RETRIES,
55 	I2C_CHANNEL_OPERATION_NOT_STARTED
56 };
57 
58 
59 enum dce_i2c_transaction_action {
60 	DCE_I2C_TRANSACTION_ACTION_I2C_WRITE = 0x00,
61 	DCE_I2C_TRANSACTION_ACTION_I2C_READ = 0x10,
62 	DCE_I2C_TRANSACTION_ACTION_I2C_STATUS_REQUEST = 0x20,
63 
64 	DCE_I2C_TRANSACTION_ACTION_I2C_WRITE_MOT = 0x40,
65 	DCE_I2C_TRANSACTION_ACTION_I2C_READ_MOT = 0x50,
66 	DCE_I2C_TRANSACTION_ACTION_I2C_STATUS_REQUEST_MOT = 0x60,
67 
68 	DCE_I2C_TRANSACTION_ACTION_DP_WRITE = 0x80,
69 	DCE_I2C_TRANSACTION_ACTION_DP_READ = 0x90
70 };
71 
72 enum {
73 	I2C_SETUP_TIME_LIMIT_DCE = 255,
74 	I2C_SETUP_TIME_LIMIT_DCN = 3,
75 	I2C_HW_BUFFER_SIZE_DCE100 = 538,
76 	I2C_HW_BUFFER_SIZE_DCE = 144,
77 	I2C_SEND_RESET_LENGTH_9 = 9,
78 	I2C_SEND_RESET_LENGTH_10 = 10,
79 	DEFAULT_I2C_HW_SPEED = 50,
80 	DEFAULT_I2C_HW_SPEED_100KHZ = 100,
81 	TRANSACTION_TIMEOUT_IN_I2C_CLOCKS = 32,
82 };
83 
84 #define I2C_HW_ENGINE_COMMON_REG_LIST(id)\
85 	SRI(SETUP, DC_I2C_DDC, id),\
86 	SRI(SPEED, DC_I2C_DDC, id),\
87 	SR(DC_I2C_ARBITRATION),\
88 	SR(DC_I2C_CONTROL),\
89 	SR(DC_I2C_SW_STATUS),\
90 	SR(DC_I2C_TRANSACTION0),\
91 	SR(DC_I2C_TRANSACTION1),\
92 	SR(DC_I2C_TRANSACTION2),\
93 	SR(DC_I2C_TRANSACTION3),\
94 	SR(DC_I2C_DATA),\
95 	SR(MICROSECOND_TIME_BASE_DIV)
96 
97 #define I2C_SF(reg_name, field_name, post_fix)\
98 	.field_name = reg_name ## __ ## field_name ## post_fix
99 
100 #define I2C_COMMON_MASK_SH_LIST_DCE_COMMON_BASE(mask_sh)\
101 	I2C_SF(DC_I2C_DDC1_SETUP, DC_I2C_DDC1_ENABLE, mask_sh),\
102 	I2C_SF(DC_I2C_DDC1_SETUP, DC_I2C_DDC1_TIME_LIMIT, mask_sh),\
103 	I2C_SF(DC_I2C_DDC1_SETUP, DC_I2C_DDC1_DATA_DRIVE_EN, mask_sh),\
104 	I2C_SF(DC_I2C_DDC1_SETUP, DC_I2C_DDC1_CLK_DRIVE_EN, mask_sh),\
105 	I2C_SF(DC_I2C_DDC1_SETUP, DC_I2C_DDC1_DATA_DRIVE_SEL, mask_sh),\
106 	I2C_SF(DC_I2C_DDC1_SETUP, DC_I2C_DDC1_INTRA_TRANSACTION_DELAY, mask_sh),\
107 	I2C_SF(DC_I2C_DDC1_SETUP, DC_I2C_DDC1_INTRA_BYTE_DELAY, mask_sh),\
108 	I2C_SF(DC_I2C_ARBITRATION, DC_I2C_SW_DONE_USING_I2C_REG, mask_sh),\
109 	I2C_SF(DC_I2C_ARBITRATION, DC_I2C_NO_QUEUED_SW_GO, mask_sh),\
110 	I2C_SF(DC_I2C_ARBITRATION, DC_I2C_SW_PRIORITY, mask_sh),\
111 	I2C_SF(DC_I2C_CONTROL, DC_I2C_SOFT_RESET, mask_sh),\
112 	I2C_SF(DC_I2C_CONTROL, DC_I2C_SW_STATUS_RESET, mask_sh),\
113 	I2C_SF(DC_I2C_CONTROL, DC_I2C_GO, mask_sh),\
114 	I2C_SF(DC_I2C_CONTROL, DC_I2C_SEND_RESET, mask_sh),\
115 	I2C_SF(DC_I2C_CONTROL, DC_I2C_TRANSACTION_COUNT, mask_sh),\
116 	I2C_SF(DC_I2C_CONTROL, DC_I2C_DDC_SELECT, mask_sh),\
117 	I2C_SF(DC_I2C_DDC1_SPEED, DC_I2C_DDC1_PRESCALE, mask_sh),\
118 	I2C_SF(DC_I2C_DDC1_SPEED, DC_I2C_DDC1_THRESHOLD, mask_sh),\
119 	I2C_SF(DC_I2C_SW_STATUS, DC_I2C_SW_STOPPED_ON_NACK, mask_sh),\
120 	I2C_SF(DC_I2C_SW_STATUS, DC_I2C_SW_TIMEOUT, mask_sh),\
121 	I2C_SF(DC_I2C_SW_STATUS, DC_I2C_SW_ABORTED, mask_sh),\
122 	I2C_SF(DC_I2C_SW_STATUS, DC_I2C_SW_DONE, mask_sh),\
123 	I2C_SF(DC_I2C_SW_STATUS, DC_I2C_SW_STATUS, mask_sh),\
124 	I2C_SF(DC_I2C_TRANSACTION0, DC_I2C_STOP_ON_NACK0, mask_sh),\
125 	I2C_SF(DC_I2C_TRANSACTION0, DC_I2C_START0, mask_sh),\
126 	I2C_SF(DC_I2C_TRANSACTION0, DC_I2C_RW0, mask_sh),\
127 	I2C_SF(DC_I2C_TRANSACTION0, DC_I2C_STOP0, mask_sh),\
128 	I2C_SF(DC_I2C_TRANSACTION0, DC_I2C_COUNT0, mask_sh),\
129 	I2C_SF(DC_I2C_DATA, DC_I2C_DATA_RW, mask_sh),\
130 	I2C_SF(DC_I2C_DATA, DC_I2C_DATA, mask_sh),\
131 	I2C_SF(DC_I2C_DATA, DC_I2C_INDEX, mask_sh),\
132 	I2C_SF(DC_I2C_DATA, DC_I2C_INDEX_WRITE, mask_sh),\
133 	I2C_SF(MICROSECOND_TIME_BASE_DIV, XTAL_REF_DIV, mask_sh),\
134 	I2C_SF(DC_I2C_ARBITRATION, DC_I2C_REG_RW_CNTL_STATUS, mask_sh)
135 
136 #define I2C_COMMON_MASK_SH_LIST_DCE110(mask_sh)\
137 	I2C_COMMON_MASK_SH_LIST_DCE_COMMON_BASE(mask_sh),\
138 	I2C_SF(DC_I2C_DDC1_SPEED, DC_I2C_DDC1_START_STOP_TIMING_CNTL, mask_sh)
139 
140 struct dce_i2c_shift {
141 	uint8_t DC_I2C_DDC1_ENABLE;
142 	uint8_t DC_I2C_DDC1_TIME_LIMIT;
143 	uint8_t DC_I2C_DDC1_DATA_DRIVE_EN;
144 	uint8_t DC_I2C_DDC1_CLK_DRIVE_EN;
145 	uint8_t DC_I2C_DDC1_DATA_DRIVE_SEL;
146 	uint8_t DC_I2C_DDC1_INTRA_TRANSACTION_DELAY;
147 	uint8_t DC_I2C_DDC1_INTRA_BYTE_DELAY;
148 	uint8_t DC_I2C_SW_DONE_USING_I2C_REG;
149 	uint8_t DC_I2C_NO_QUEUED_SW_GO;
150 	uint8_t DC_I2C_SW_PRIORITY;
151 	uint8_t DC_I2C_SOFT_RESET;
152 	uint8_t DC_I2C_SW_STATUS_RESET;
153 	uint8_t DC_I2C_GO;
154 	uint8_t DC_I2C_SEND_RESET;
155 	uint8_t DC_I2C_TRANSACTION_COUNT;
156 	uint8_t DC_I2C_DDC_SELECT;
157 	uint8_t DC_I2C_DDC1_PRESCALE;
158 	uint8_t DC_I2C_DDC1_THRESHOLD;
159 	uint8_t DC_I2C_DDC1_START_STOP_TIMING_CNTL;
160 	uint8_t DC_I2C_SW_STOPPED_ON_NACK;
161 	uint8_t DC_I2C_SW_TIMEOUT;
162 	uint8_t DC_I2C_SW_ABORTED;
163 	uint8_t DC_I2C_SW_DONE;
164 	uint8_t DC_I2C_SW_STATUS;
165 	uint8_t DC_I2C_STOP_ON_NACK0;
166 	uint8_t DC_I2C_START0;
167 	uint8_t DC_I2C_RW0;
168 	uint8_t DC_I2C_STOP0;
169 	uint8_t DC_I2C_COUNT0;
170 	uint8_t DC_I2C_DATA_RW;
171 	uint8_t DC_I2C_DATA;
172 	uint8_t DC_I2C_INDEX;
173 	uint8_t DC_I2C_INDEX_WRITE;
174 	uint8_t XTAL_REF_DIV;
175 	uint8_t DC_I2C_REG_RW_CNTL_STATUS;
176 };
177 
178 struct dce_i2c_mask {
179 	uint32_t DC_I2C_DDC1_ENABLE;
180 	uint32_t DC_I2C_DDC1_TIME_LIMIT;
181 	uint32_t DC_I2C_DDC1_DATA_DRIVE_EN;
182 	uint32_t DC_I2C_DDC1_CLK_DRIVE_EN;
183 	uint32_t DC_I2C_DDC1_DATA_DRIVE_SEL;
184 	uint32_t DC_I2C_DDC1_INTRA_TRANSACTION_DELAY;
185 	uint32_t DC_I2C_DDC1_INTRA_BYTE_DELAY;
186 	uint32_t DC_I2C_SW_DONE_USING_I2C_REG;
187 	uint32_t DC_I2C_NO_QUEUED_SW_GO;
188 	uint32_t DC_I2C_SW_PRIORITY;
189 	uint32_t DC_I2C_SOFT_RESET;
190 	uint32_t DC_I2C_SW_STATUS_RESET;
191 	uint32_t DC_I2C_GO;
192 	uint32_t DC_I2C_SEND_RESET;
193 	uint32_t DC_I2C_TRANSACTION_COUNT;
194 	uint32_t DC_I2C_DDC_SELECT;
195 	uint32_t DC_I2C_DDC1_PRESCALE;
196 	uint32_t DC_I2C_DDC1_THRESHOLD;
197 	uint32_t DC_I2C_DDC1_START_STOP_TIMING_CNTL;
198 	uint32_t DC_I2C_SW_STOPPED_ON_NACK;
199 	uint32_t DC_I2C_SW_TIMEOUT;
200 	uint32_t DC_I2C_SW_ABORTED;
201 	uint32_t DC_I2C_SW_DONE;
202 	uint32_t DC_I2C_SW_STATUS;
203 	uint32_t DC_I2C_STOP_ON_NACK0;
204 	uint32_t DC_I2C_START0;
205 	uint32_t DC_I2C_RW0;
206 	uint32_t DC_I2C_STOP0;
207 	uint32_t DC_I2C_COUNT0;
208 	uint32_t DC_I2C_DATA_RW;
209 	uint32_t DC_I2C_DATA;
210 	uint32_t DC_I2C_INDEX;
211 	uint32_t DC_I2C_INDEX_WRITE;
212 	uint32_t XTAL_REF_DIV;
213 	uint32_t DC_I2C_REG_RW_CNTL_STATUS;
214 };
215 
216 struct dce_i2c_registers {
217 	uint32_t SETUP;
218 	uint32_t SPEED;
219 	uint32_t DC_I2C_ARBITRATION;
220 	uint32_t DC_I2C_CONTROL;
221 	uint32_t DC_I2C_SW_STATUS;
222 	uint32_t DC_I2C_TRANSACTION0;
223 	uint32_t DC_I2C_TRANSACTION1;
224 	uint32_t DC_I2C_TRANSACTION2;
225 	uint32_t DC_I2C_TRANSACTION3;
226 	uint32_t DC_I2C_DATA;
227 	uint32_t MICROSECOND_TIME_BASE_DIV;
228 };
229 
230 enum dce_i2c_transaction_address_space {
231 	DCE_I2C_TRANSACTION_ADDRESS_SPACE_I2C = 1,
232 	DCE_I2C_TRANSACTION_ADDRESS_SPACE_DPCD
233 };
234 
235 struct i2c_request_transaction_data {
236 	enum dce_i2c_transaction_action action;
237 	enum i2c_channel_operation_result status;
238 	uint8_t address;
239 	uint32_t length;
240 	uint8_t *data;
241 };
242 
243 struct dce_i2c_hw {
244 	struct ddc *ddc;
245 	uint32_t original_speed;
246 	uint32_t engine_keep_power_up_count;
247 	uint32_t transaction_count;
248 	uint32_t buffer_used_bytes;
249 	uint32_t buffer_used_write;
250 	uint32_t reference_frequency;
251 	uint32_t default_speed;
252 	uint32_t engine_id;
253 	uint32_t setup_limit;
254 	uint32_t send_reset_length;
255 	uint32_t buffer_size;
256 	struct dc_context *ctx;
257 
258 	const struct dce_i2c_registers *regs;
259 	const struct dce_i2c_shift *shifts;
260 	const struct dce_i2c_mask *masks;
261 };
262 
263 void dce_i2c_hw_construct(
264 	struct dce_i2c_hw *dce_i2c_hw,
265 	struct dc_context *ctx,
266 	uint32_t engine_id,
267 	const struct dce_i2c_registers *regs,
268 	const struct dce_i2c_shift *shifts,
269 	const struct dce_i2c_mask *masks);
270 
271 void dce100_i2c_hw_construct(
272 	struct dce_i2c_hw *dce_i2c_hw,
273 	struct dc_context *ctx,
274 	uint32_t engine_id,
275 	const struct dce_i2c_registers *regs,
276 	const struct dce_i2c_shift *shifts,
277 	const struct dce_i2c_mask *masks);
278 
279 void dce112_i2c_hw_construct(
280 	struct dce_i2c_hw *dce_i2c_hw,
281 	struct dc_context *ctx,
282 	uint32_t engine_id,
283 	const struct dce_i2c_registers *regs,
284 	const struct dce_i2c_shift *shifts,
285 	const struct dce_i2c_mask *masks);
286 
287 void dcn1_i2c_hw_construct(
288 	struct dce_i2c_hw *dce_i2c_hw,
289 	struct dc_context *ctx,
290 	uint32_t engine_id,
291 	const struct dce_i2c_registers *regs,
292 	const struct dce_i2c_shift *shifts,
293 	const struct dce_i2c_mask *masks);
294 
295 bool dce_i2c_submit_command_hw(
296 	struct resource_pool *pool,
297 	struct ddc *ddc,
298 	struct i2c_command *cmd,
299 	struct dce_i2c_hw *dce_i2c_hw);
300 
301 struct dce_i2c_hw *acquire_i2c_hw_engine(
302 	struct resource_pool *pool,
303 	struct ddc *ddc);
304 
305 #endif
306