Loading...
1/*
2 * Copyright 2019 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#include "../dmub_srv.h"
27#include "dmub_dcn20.h"
28#include "dmub_dcn21.h"
29#include "dmub_cmd.h"
30#include "dmub_dcn30.h"
31#include "dmub_dcn301.h"
32#include "dmub_dcn302.h"
33#include "dmub_dcn303.h"
34#include "dmub_dcn31.h"
35#include "dmub_dcn314.h"
36#include "dmub_dcn315.h"
37#include "dmub_dcn316.h"
38#include "dmub_dcn32.h"
39#include "dmub_dcn35.h"
40#include "os_types.h"
41/*
42 * Note: the DMUB service is standalone. No additional headers should be
43 * added below or above this line unless they reside within the DMUB
44 * folder.
45 */
46
47/* Alignment for framebuffer memory. */
48#define DMUB_FB_ALIGNMENT (1024 * 1024)
49
50/* Stack size. */
51#define DMUB_STACK_SIZE (128 * 1024)
52
53/* Context size. */
54#define DMUB_CONTEXT_SIZE (512 * 1024)
55
56/* Mailbox size : Ring buffers are required for both inbox and outbox */
57#define DMUB_MAILBOX_SIZE ((2 * DMUB_RB_SIZE))
58
59/* Default state size if meta is absent. */
60#define DMUB_FW_STATE_SIZE (64 * 1024)
61
62/* Default tracebuffer size if meta is absent. */
63#define DMUB_TRACE_BUFFER_SIZE (64 * 1024)
64
65
66/* Default scratch mem size. */
67#define DMUB_SCRATCH_MEM_SIZE (1024)
68
69/* Number of windows in use. */
70#define DMUB_NUM_WINDOWS (DMUB_WINDOW_TOTAL)
71/* Base addresses. */
72
73#define DMUB_CW0_BASE (0x60000000)
74#define DMUB_CW1_BASE (0x61000000)
75#define DMUB_CW3_BASE (0x63000000)
76#define DMUB_CW4_BASE (0x64000000)
77#define DMUB_CW5_BASE (0x65000000)
78#define DMUB_CW6_BASE (0x66000000)
79
80#define DMUB_REGION5_BASE (0xA0000000)
81
82static struct dmub_srv_dcn32_regs dmub_srv_dcn32_regs;
83static struct dmub_srv_dcn35_regs dmub_srv_dcn35_regs;
84
85static inline uint32_t dmub_align(uint32_t val, uint32_t factor)
86{
87 return (val + factor - 1) / factor * factor;
88}
89
90void dmub_flush_buffer_mem(const struct dmub_fb *fb)
91{
92 const uint8_t *base = (const uint8_t *)fb->cpu_addr;
93 uint8_t buf[64];
94 uint32_t pos, end;
95
96 /**
97 * Read 64-byte chunks since we don't want to store a
98 * large temporary buffer for this purpose.
99 */
100 end = fb->size / sizeof(buf) * sizeof(buf);
101
102 for (pos = 0; pos < end; pos += sizeof(buf))
103 dmub_memcpy(buf, base + pos, sizeof(buf));
104
105 /* Read anything leftover into the buffer. */
106 if (end < fb->size)
107 dmub_memcpy(buf, base + pos, fb->size - end);
108}
109
110static const struct dmub_fw_meta_info *
111dmub_get_fw_meta_info_from_blob(const uint8_t *blob, uint32_t blob_size, uint32_t meta_offset)
112{
113 const union dmub_fw_meta *meta;
114
115 if (!blob || !blob_size)
116 return NULL;
117
118 if (blob_size < sizeof(union dmub_fw_meta) + meta_offset)
119 return NULL;
120
121 meta = (const union dmub_fw_meta *)(blob + blob_size - meta_offset -
122 sizeof(union dmub_fw_meta));
123
124 if (meta->info.magic_value != DMUB_FW_META_MAGIC)
125 return NULL;
126
127 return &meta->info;
128}
129
130static const struct dmub_fw_meta_info *
131dmub_get_fw_meta_info(const struct dmub_srv_region_params *params)
132{
133 const struct dmub_fw_meta_info *info = NULL;
134
135 if (params->fw_bss_data && params->bss_data_size) {
136 /* Legacy metadata region. */
137 info = dmub_get_fw_meta_info_from_blob(params->fw_bss_data,
138 params->bss_data_size,
139 DMUB_FW_META_OFFSET);
140 } else if (params->fw_inst_const && params->inst_const_size) {
141 /* Combined metadata region - can be aligned to 16-bytes. */
142 uint32_t i;
143
144 for (i = 0; i < 16; ++i) {
145 info = dmub_get_fw_meta_info_from_blob(
146 params->fw_inst_const, params->inst_const_size, i);
147
148 if (info)
149 break;
150 }
151 }
152
153 return info;
154}
155
156static bool dmub_srv_hw_setup(struct dmub_srv *dmub, enum dmub_asic asic)
157{
158 struct dmub_srv_hw_funcs *funcs = &dmub->hw_funcs;
159
160 switch (asic) {
161 case DMUB_ASIC_DCN20:
162 case DMUB_ASIC_DCN21:
163 case DMUB_ASIC_DCN30:
164 case DMUB_ASIC_DCN301:
165 case DMUB_ASIC_DCN302:
166 case DMUB_ASIC_DCN303:
167 dmub->regs = &dmub_srv_dcn20_regs;
168
169 funcs->reset = dmub_dcn20_reset;
170 funcs->reset_release = dmub_dcn20_reset_release;
171 funcs->backdoor_load = dmub_dcn20_backdoor_load;
172 funcs->setup_windows = dmub_dcn20_setup_windows;
173 funcs->setup_mailbox = dmub_dcn20_setup_mailbox;
174 funcs->get_inbox1_wptr = dmub_dcn20_get_inbox1_wptr;
175 funcs->get_inbox1_rptr = dmub_dcn20_get_inbox1_rptr;
176 funcs->set_inbox1_wptr = dmub_dcn20_set_inbox1_wptr;
177 funcs->is_supported = dmub_dcn20_is_supported;
178 funcs->is_hw_init = dmub_dcn20_is_hw_init;
179 funcs->set_gpint = dmub_dcn20_set_gpint;
180 funcs->is_gpint_acked = dmub_dcn20_is_gpint_acked;
181 funcs->get_gpint_response = dmub_dcn20_get_gpint_response;
182 funcs->get_fw_status = dmub_dcn20_get_fw_boot_status;
183 funcs->enable_dmub_boot_options = dmub_dcn20_enable_dmub_boot_options;
184 funcs->skip_dmub_panel_power_sequence = dmub_dcn20_skip_dmub_panel_power_sequence;
185 funcs->get_current_time = dmub_dcn20_get_current_time;
186
187 // Out mailbox register access functions for RN and above
188 funcs->setup_out_mailbox = dmub_dcn20_setup_out_mailbox;
189 funcs->get_outbox1_wptr = dmub_dcn20_get_outbox1_wptr;
190 funcs->set_outbox1_rptr = dmub_dcn20_set_outbox1_rptr;
191
192 //outbox0 call stacks
193 funcs->setup_outbox0 = dmub_dcn20_setup_outbox0;
194 funcs->get_outbox0_wptr = dmub_dcn20_get_outbox0_wptr;
195 funcs->set_outbox0_rptr = dmub_dcn20_set_outbox0_rptr;
196
197 funcs->get_diagnostic_data = dmub_dcn20_get_diagnostic_data;
198
199 if (asic == DMUB_ASIC_DCN21)
200 dmub->regs = &dmub_srv_dcn21_regs;
201
202 if (asic == DMUB_ASIC_DCN30) {
203 dmub->regs = &dmub_srv_dcn30_regs;
204
205 funcs->backdoor_load = dmub_dcn30_backdoor_load;
206 funcs->setup_windows = dmub_dcn30_setup_windows;
207 }
208 if (asic == DMUB_ASIC_DCN301) {
209 dmub->regs = &dmub_srv_dcn301_regs;
210
211 funcs->backdoor_load = dmub_dcn30_backdoor_load;
212 funcs->setup_windows = dmub_dcn30_setup_windows;
213 }
214 if (asic == DMUB_ASIC_DCN302) {
215 dmub->regs = &dmub_srv_dcn302_regs;
216
217 funcs->backdoor_load = dmub_dcn30_backdoor_load;
218 funcs->setup_windows = dmub_dcn30_setup_windows;
219 }
220 if (asic == DMUB_ASIC_DCN303) {
221 dmub->regs = &dmub_srv_dcn303_regs;
222
223 funcs->backdoor_load = dmub_dcn30_backdoor_load;
224 funcs->setup_windows = dmub_dcn30_setup_windows;
225 }
226 break;
227
228 case DMUB_ASIC_DCN31:
229 case DMUB_ASIC_DCN31B:
230 case DMUB_ASIC_DCN314:
231 case DMUB_ASIC_DCN315:
232 case DMUB_ASIC_DCN316:
233 if (asic == DMUB_ASIC_DCN314) {
234 dmub->regs_dcn31 = &dmub_srv_dcn314_regs;
235 funcs->is_psrsu_supported = dmub_dcn314_is_psrsu_supported;
236 } else if (asic == DMUB_ASIC_DCN315) {
237 dmub->regs_dcn31 = &dmub_srv_dcn315_regs;
238 } else if (asic == DMUB_ASIC_DCN316) {
239 dmub->regs_dcn31 = &dmub_srv_dcn316_regs;
240 } else {
241 dmub->regs_dcn31 = &dmub_srv_dcn31_regs;
242 funcs->is_psrsu_supported = dmub_dcn31_is_psrsu_supported;
243 }
244 funcs->reset = dmub_dcn31_reset;
245 funcs->reset_release = dmub_dcn31_reset_release;
246 funcs->backdoor_load = dmub_dcn31_backdoor_load;
247 funcs->setup_windows = dmub_dcn31_setup_windows;
248 funcs->setup_mailbox = dmub_dcn31_setup_mailbox;
249 funcs->get_inbox1_wptr = dmub_dcn31_get_inbox1_wptr;
250 funcs->get_inbox1_rptr = dmub_dcn31_get_inbox1_rptr;
251 funcs->set_inbox1_wptr = dmub_dcn31_set_inbox1_wptr;
252 funcs->setup_out_mailbox = dmub_dcn31_setup_out_mailbox;
253 funcs->get_outbox1_wptr = dmub_dcn31_get_outbox1_wptr;
254 funcs->set_outbox1_rptr = dmub_dcn31_set_outbox1_rptr;
255 funcs->is_supported = dmub_dcn31_is_supported;
256 funcs->is_hw_init = dmub_dcn31_is_hw_init;
257 funcs->set_gpint = dmub_dcn31_set_gpint;
258 funcs->is_gpint_acked = dmub_dcn31_is_gpint_acked;
259 funcs->get_gpint_response = dmub_dcn31_get_gpint_response;
260 funcs->get_gpint_dataout = dmub_dcn31_get_gpint_dataout;
261 funcs->get_fw_status = dmub_dcn31_get_fw_boot_status;
262 funcs->get_fw_boot_option = dmub_dcn31_get_fw_boot_option;
263 funcs->enable_dmub_boot_options = dmub_dcn31_enable_dmub_boot_options;
264 funcs->skip_dmub_panel_power_sequence = dmub_dcn31_skip_dmub_panel_power_sequence;
265 //outbox0 call stacks
266 funcs->setup_outbox0 = dmub_dcn31_setup_outbox0;
267 funcs->get_outbox0_wptr = dmub_dcn31_get_outbox0_wptr;
268 funcs->set_outbox0_rptr = dmub_dcn31_set_outbox0_rptr;
269
270 funcs->get_diagnostic_data = dmub_dcn31_get_diagnostic_data;
271 funcs->should_detect = dmub_dcn31_should_detect;
272 funcs->get_current_time = dmub_dcn31_get_current_time;
273
274 break;
275
276 case DMUB_ASIC_DCN32:
277 case DMUB_ASIC_DCN321:
278 dmub->regs_dcn32 = &dmub_srv_dcn32_regs;
279 funcs->configure_dmub_in_system_memory = dmub_dcn32_configure_dmub_in_system_memory;
280 funcs->send_inbox0_cmd = dmub_dcn32_send_inbox0_cmd;
281 funcs->clear_inbox0_ack_register = dmub_dcn32_clear_inbox0_ack_register;
282 funcs->read_inbox0_ack_register = dmub_dcn32_read_inbox0_ack_register;
283 funcs->subvp_save_surf_addr = dmub_dcn32_save_surf_addr;
284 funcs->reset = dmub_dcn32_reset;
285 funcs->reset_release = dmub_dcn32_reset_release;
286 funcs->backdoor_load = dmub_dcn32_backdoor_load;
287 funcs->backdoor_load_zfb_mode = dmub_dcn32_backdoor_load_zfb_mode;
288 funcs->setup_windows = dmub_dcn32_setup_windows;
289 funcs->setup_mailbox = dmub_dcn32_setup_mailbox;
290 funcs->get_inbox1_wptr = dmub_dcn32_get_inbox1_wptr;
291 funcs->get_inbox1_rptr = dmub_dcn32_get_inbox1_rptr;
292 funcs->set_inbox1_wptr = dmub_dcn32_set_inbox1_wptr;
293 funcs->setup_out_mailbox = dmub_dcn32_setup_out_mailbox;
294 funcs->get_outbox1_wptr = dmub_dcn32_get_outbox1_wptr;
295 funcs->set_outbox1_rptr = dmub_dcn32_set_outbox1_rptr;
296 funcs->is_supported = dmub_dcn32_is_supported;
297 funcs->is_hw_init = dmub_dcn32_is_hw_init;
298 funcs->set_gpint = dmub_dcn32_set_gpint;
299 funcs->is_gpint_acked = dmub_dcn32_is_gpint_acked;
300 funcs->get_gpint_response = dmub_dcn32_get_gpint_response;
301 funcs->get_gpint_dataout = dmub_dcn32_get_gpint_dataout;
302 funcs->get_fw_status = dmub_dcn32_get_fw_boot_status;
303 funcs->enable_dmub_boot_options = dmub_dcn32_enable_dmub_boot_options;
304 funcs->skip_dmub_panel_power_sequence = dmub_dcn32_skip_dmub_panel_power_sequence;
305
306 /* outbox0 call stacks */
307 funcs->setup_outbox0 = dmub_dcn32_setup_outbox0;
308 funcs->get_outbox0_wptr = dmub_dcn32_get_outbox0_wptr;
309 funcs->set_outbox0_rptr = dmub_dcn32_set_outbox0_rptr;
310 funcs->get_current_time = dmub_dcn32_get_current_time;
311 funcs->get_diagnostic_data = dmub_dcn32_get_diagnostic_data;
312 funcs->init_reg_offsets = dmub_srv_dcn32_regs_init;
313
314 break;
315
316 case DMUB_ASIC_DCN35:
317 dmub->regs_dcn35 = &dmub_srv_dcn35_regs;
318 funcs->configure_dmub_in_system_memory = dmub_dcn35_configure_dmub_in_system_memory;
319 funcs->send_inbox0_cmd = dmub_dcn35_send_inbox0_cmd;
320 funcs->clear_inbox0_ack_register = dmub_dcn35_clear_inbox0_ack_register;
321 funcs->read_inbox0_ack_register = dmub_dcn35_read_inbox0_ack_register;
322 funcs->reset = dmub_dcn35_reset;
323 funcs->reset_release = dmub_dcn35_reset_release;
324 funcs->backdoor_load = dmub_dcn35_backdoor_load;
325 funcs->backdoor_load_zfb_mode = dmub_dcn35_backdoor_load_zfb_mode;
326 funcs->setup_windows = dmub_dcn35_setup_windows;
327 funcs->setup_mailbox = dmub_dcn35_setup_mailbox;
328 funcs->get_inbox1_wptr = dmub_dcn35_get_inbox1_wptr;
329 funcs->get_inbox1_rptr = dmub_dcn35_get_inbox1_rptr;
330 funcs->set_inbox1_wptr = dmub_dcn35_set_inbox1_wptr;
331 funcs->setup_out_mailbox = dmub_dcn35_setup_out_mailbox;
332 funcs->get_outbox1_wptr = dmub_dcn35_get_outbox1_wptr;
333 funcs->set_outbox1_rptr = dmub_dcn35_set_outbox1_rptr;
334 funcs->is_supported = dmub_dcn35_is_supported;
335 funcs->is_hw_init = dmub_dcn35_is_hw_init;
336 funcs->set_gpint = dmub_dcn35_set_gpint;
337 funcs->is_gpint_acked = dmub_dcn35_is_gpint_acked;
338 funcs->get_gpint_response = dmub_dcn35_get_gpint_response;
339 funcs->get_gpint_dataout = dmub_dcn35_get_gpint_dataout;
340 funcs->get_fw_status = dmub_dcn35_get_fw_boot_status;
341 funcs->get_fw_boot_option = dmub_dcn35_get_fw_boot_option;
342 funcs->enable_dmub_boot_options = dmub_dcn35_enable_dmub_boot_options;
343 funcs->skip_dmub_panel_power_sequence = dmub_dcn35_skip_dmub_panel_power_sequence;
344 //outbox0 call stacks
345 funcs->setup_outbox0 = dmub_dcn35_setup_outbox0;
346 funcs->get_outbox0_wptr = dmub_dcn35_get_outbox0_wptr;
347 funcs->set_outbox0_rptr = dmub_dcn35_set_outbox0_rptr;
348
349 funcs->get_current_time = dmub_dcn35_get_current_time;
350 funcs->get_diagnostic_data = dmub_dcn35_get_diagnostic_data;
351
352 funcs->init_reg_offsets = dmub_srv_dcn35_regs_init;
353
354 funcs->is_hw_powered_up = dmub_dcn35_is_hw_powered_up;
355 funcs->should_detect = dmub_dcn35_should_detect;
356 break;
357
358 default:
359 return false;
360 }
361
362 return true;
363}
364
365enum dmub_status dmub_srv_create(struct dmub_srv *dmub,
366 const struct dmub_srv_create_params *params)
367{
368 enum dmub_status status = DMUB_STATUS_OK;
369
370 dmub_memset(dmub, 0, sizeof(*dmub));
371
372 dmub->funcs = params->funcs;
373 dmub->user_ctx = params->user_ctx;
374 dmub->asic = params->asic;
375 dmub->fw_version = params->fw_version;
376 dmub->is_virtual = params->is_virtual;
377
378 /* Setup asic dependent hardware funcs. */
379 if (!dmub_srv_hw_setup(dmub, params->asic)) {
380 status = DMUB_STATUS_INVALID;
381 goto cleanup;
382 }
383
384 /* Override (some) hardware funcs based on user params. */
385 if (params->hw_funcs) {
386 if (params->hw_funcs->emul_get_inbox1_rptr)
387 dmub->hw_funcs.emul_get_inbox1_rptr =
388 params->hw_funcs->emul_get_inbox1_rptr;
389
390 if (params->hw_funcs->emul_set_inbox1_wptr)
391 dmub->hw_funcs.emul_set_inbox1_wptr =
392 params->hw_funcs->emul_set_inbox1_wptr;
393
394 if (params->hw_funcs->is_supported)
395 dmub->hw_funcs.is_supported =
396 params->hw_funcs->is_supported;
397 }
398
399 /* Sanity checks for required hw func pointers. */
400 if (!dmub->hw_funcs.get_inbox1_rptr ||
401 !dmub->hw_funcs.set_inbox1_wptr) {
402 status = DMUB_STATUS_INVALID;
403 goto cleanup;
404 }
405
406cleanup:
407 if (status == DMUB_STATUS_OK)
408 dmub->sw_init = true;
409 else
410 dmub_srv_destroy(dmub);
411
412 return status;
413}
414
415void dmub_srv_destroy(struct dmub_srv *dmub)
416{
417 dmub_memset(dmub, 0, sizeof(*dmub));
418}
419
420enum dmub_status
421dmub_srv_calc_region_info(struct dmub_srv *dmub,
422 const struct dmub_srv_region_params *params,
423 struct dmub_srv_region_info *out)
424{
425 struct dmub_region *inst = &out->regions[DMUB_WINDOW_0_INST_CONST];
426 struct dmub_region *stack = &out->regions[DMUB_WINDOW_1_STACK];
427 struct dmub_region *data = &out->regions[DMUB_WINDOW_2_BSS_DATA];
428 struct dmub_region *bios = &out->regions[DMUB_WINDOW_3_VBIOS];
429 struct dmub_region *mail = &out->regions[DMUB_WINDOW_4_MAILBOX];
430 struct dmub_region *trace_buff = &out->regions[DMUB_WINDOW_5_TRACEBUFF];
431 struct dmub_region *fw_state = &out->regions[DMUB_WINDOW_6_FW_STATE];
432 struct dmub_region *scratch_mem = &out->regions[DMUB_WINDOW_7_SCRATCH_MEM];
433 const struct dmub_fw_meta_info *fw_info;
434 uint32_t fw_state_size = DMUB_FW_STATE_SIZE;
435 uint32_t trace_buffer_size = DMUB_TRACE_BUFFER_SIZE;
436 uint32_t scratch_mem_size = DMUB_SCRATCH_MEM_SIZE;
437 uint32_t previous_top = 0;
438 if (!dmub->sw_init)
439 return DMUB_STATUS_INVALID;
440
441 memset(out, 0, sizeof(*out));
442
443 out->num_regions = DMUB_NUM_WINDOWS;
444
445 inst->base = 0x0;
446 inst->top = inst->base + params->inst_const_size;
447
448 data->base = dmub_align(inst->top, 256);
449 data->top = data->base + params->bss_data_size;
450
451 /*
452 * All cache windows below should be aligned to the size
453 * of the DMCUB cache line, 64 bytes.
454 */
455
456 stack->base = dmub_align(data->top, 256);
457 stack->top = stack->base + DMUB_STACK_SIZE + DMUB_CONTEXT_SIZE;
458
459 bios->base = dmub_align(stack->top, 256);
460 bios->top = bios->base + params->vbios_size;
461
462 if (params->is_mailbox_in_inbox) {
463 mail->base = 0;
464 mail->top = mail->base + DMUB_MAILBOX_SIZE;
465 previous_top = bios->top;
466 } else {
467 mail->base = dmub_align(bios->top, 256);
468 mail->top = mail->base + DMUB_MAILBOX_SIZE;
469 previous_top = mail->top;
470 }
471
472 fw_info = dmub_get_fw_meta_info(params);
473
474 if (fw_info) {
475 fw_state_size = fw_info->fw_region_size;
476 trace_buffer_size = fw_info->trace_buffer_size;
477
478 /**
479 * If DM didn't fill in a version, then fill it in based on
480 * the firmware meta now that we have it.
481 *
482 * TODO: Make it easier for driver to extract this out to
483 * pass during creation.
484 */
485 if (dmub->fw_version == 0)
486 dmub->fw_version = fw_info->fw_version;
487 }
488
489 trace_buff->base = dmub_align(previous_top, 256);
490 trace_buff->top = trace_buff->base + dmub_align(trace_buffer_size, 64);
491
492 fw_state->base = dmub_align(trace_buff->top, 256);
493 fw_state->top = fw_state->base + dmub_align(fw_state_size, 64);
494
495 scratch_mem->base = dmub_align(fw_state->top, 256);
496 scratch_mem->top = scratch_mem->base + dmub_align(scratch_mem_size, 64);
497
498 out->fb_size = dmub_align(scratch_mem->top, 4096);
499
500 if (params->is_mailbox_in_inbox)
501 out->inbox_size = dmub_align(mail->top, 4096);
502
503 return DMUB_STATUS_OK;
504}
505
506enum dmub_status dmub_srv_calc_mem_info(struct dmub_srv *dmub,
507 const struct dmub_srv_memory_params *params,
508 struct dmub_srv_fb_info *out)
509{
510 uint8_t *cpu_base;
511 uint64_t gpu_base;
512 uint32_t i;
513
514 if (!dmub->sw_init)
515 return DMUB_STATUS_INVALID;
516
517 memset(out, 0, sizeof(*out));
518
519 if (params->region_info->num_regions != DMUB_NUM_WINDOWS)
520 return DMUB_STATUS_INVALID;
521
522 cpu_base = (uint8_t *)params->cpu_fb_addr;
523 gpu_base = params->gpu_fb_addr;
524
525 for (i = 0; i < DMUB_NUM_WINDOWS; ++i) {
526 const struct dmub_region *reg =
527 ¶ms->region_info->regions[i];
528
529 out->fb[i].cpu_addr = cpu_base + reg->base;
530 out->fb[i].gpu_addr = gpu_base + reg->base;
531
532 if (i == DMUB_WINDOW_4_MAILBOX && params->cpu_inbox_addr != 0) {
533 out->fb[i].cpu_addr = (uint8_t *)params->cpu_inbox_addr + reg->base;
534 out->fb[i].gpu_addr = params->gpu_inbox_addr + reg->base;
535 }
536
537 out->fb[i].size = reg->top - reg->base;
538 }
539
540 out->num_fb = DMUB_NUM_WINDOWS;
541
542 return DMUB_STATUS_OK;
543}
544
545enum dmub_status dmub_srv_has_hw_support(struct dmub_srv *dmub,
546 bool *is_supported)
547{
548 *is_supported = false;
549
550 if (!dmub->sw_init)
551 return DMUB_STATUS_INVALID;
552
553 if (dmub->hw_funcs.is_supported)
554 *is_supported = dmub->hw_funcs.is_supported(dmub);
555
556 return DMUB_STATUS_OK;
557}
558
559enum dmub_status dmub_srv_is_hw_init(struct dmub_srv *dmub, bool *is_hw_init)
560{
561 *is_hw_init = false;
562
563 if (!dmub->sw_init)
564 return DMUB_STATUS_INVALID;
565
566 if (!dmub->hw_init)
567 return DMUB_STATUS_OK;
568
569 if (dmub->hw_funcs.is_hw_init)
570 *is_hw_init = dmub->hw_funcs.is_hw_init(dmub);
571
572 return DMUB_STATUS_OK;
573}
574
575enum dmub_status dmub_srv_hw_init(struct dmub_srv *dmub,
576 const struct dmub_srv_hw_params *params)
577{
578 struct dmub_fb *inst_fb = params->fb[DMUB_WINDOW_0_INST_CONST];
579 struct dmub_fb *stack_fb = params->fb[DMUB_WINDOW_1_STACK];
580 struct dmub_fb *data_fb = params->fb[DMUB_WINDOW_2_BSS_DATA];
581 struct dmub_fb *bios_fb = params->fb[DMUB_WINDOW_3_VBIOS];
582 struct dmub_fb *mail_fb = params->fb[DMUB_WINDOW_4_MAILBOX];
583 struct dmub_fb *tracebuff_fb = params->fb[DMUB_WINDOW_5_TRACEBUFF];
584 struct dmub_fb *fw_state_fb = params->fb[DMUB_WINDOW_6_FW_STATE];
585 struct dmub_fb *scratch_mem_fb = params->fb[DMUB_WINDOW_7_SCRATCH_MEM];
586
587 struct dmub_rb_init_params rb_params, outbox0_rb_params;
588 struct dmub_window cw0, cw1, cw2, cw3, cw4, cw5, cw6;
589 struct dmub_region inbox1, outbox1, outbox0;
590
591 if (!dmub->sw_init)
592 return DMUB_STATUS_INVALID;
593
594 if (!inst_fb || !stack_fb || !data_fb || !bios_fb || !mail_fb ||
595 !tracebuff_fb || !fw_state_fb || !scratch_mem_fb) {
596 ASSERT(0);
597 return DMUB_STATUS_INVALID;
598 }
599
600 dmub->fb_base = params->fb_base;
601 dmub->fb_offset = params->fb_offset;
602 dmub->psp_version = params->psp_version;
603
604 if (dmub->hw_funcs.reset)
605 dmub->hw_funcs.reset(dmub);
606
607 /* reset the cache of the last wptr as well now that hw is reset */
608 dmub->inbox1_last_wptr = 0;
609
610 cw0.offset.quad_part = inst_fb->gpu_addr;
611 cw0.region.base = DMUB_CW0_BASE;
612 cw0.region.top = cw0.region.base + inst_fb->size - 1;
613
614 cw1.offset.quad_part = stack_fb->gpu_addr;
615 cw1.region.base = DMUB_CW1_BASE;
616 cw1.region.top = cw1.region.base + stack_fb->size - 1;
617
618 if (params->fw_in_system_memory && dmub->hw_funcs.configure_dmub_in_system_memory)
619 dmub->hw_funcs.configure_dmub_in_system_memory(dmub);
620
621 if (params->load_inst_const && dmub->hw_funcs.backdoor_load) {
622 /**
623 * Read back all the instruction memory so we don't hang the
624 * DMCUB when backdoor loading if the write from x86 hasn't been
625 * flushed yet. This only occurs in backdoor loading.
626 */
627 if (params->mem_access_type == DMUB_MEMORY_ACCESS_CPU)
628 dmub_flush_buffer_mem(inst_fb);
629
630 if (params->fw_in_system_memory && dmub->hw_funcs.backdoor_load_zfb_mode)
631 dmub->hw_funcs.backdoor_load_zfb_mode(dmub, &cw0, &cw1);
632 else
633 dmub->hw_funcs.backdoor_load(dmub, &cw0, &cw1);
634 }
635
636 cw2.offset.quad_part = data_fb->gpu_addr;
637 cw2.region.base = DMUB_CW0_BASE + inst_fb->size;
638 cw2.region.top = cw2.region.base + data_fb->size;
639
640 cw3.offset.quad_part = bios_fb->gpu_addr;
641 cw3.region.base = DMUB_CW3_BASE;
642 cw3.region.top = cw3.region.base + bios_fb->size;
643
644 cw4.offset.quad_part = mail_fb->gpu_addr;
645 cw4.region.base = DMUB_CW4_BASE;
646 cw4.region.top = cw4.region.base + mail_fb->size;
647
648 /**
649 * Doubled the mailbox region to accomodate inbox and outbox.
650 * Note: Currently, currently total mailbox size is 16KB. It is split
651 * equally into 8KB between inbox and outbox. If this config is
652 * changed, then uncached base address configuration of outbox1
653 * has to be updated in funcs->setup_out_mailbox.
654 */
655 inbox1.base = cw4.region.base;
656 inbox1.top = cw4.region.base + DMUB_RB_SIZE;
657 outbox1.base = inbox1.top;
658 outbox1.top = cw4.region.top;
659
660 cw5.offset.quad_part = tracebuff_fb->gpu_addr;
661 cw5.region.base = DMUB_CW5_BASE;
662 cw5.region.top = cw5.region.base + tracebuff_fb->size;
663
664 outbox0.base = DMUB_REGION5_BASE + TRACE_BUFFER_ENTRY_OFFSET;
665 outbox0.top = outbox0.base + tracebuff_fb->size - TRACE_BUFFER_ENTRY_OFFSET;
666
667 cw6.offset.quad_part = fw_state_fb->gpu_addr;
668 cw6.region.base = DMUB_CW6_BASE;
669 cw6.region.top = cw6.region.base + fw_state_fb->size;
670
671 dmub->fw_state = fw_state_fb->cpu_addr;
672
673 dmub->scratch_mem_fb = *scratch_mem_fb;
674
675 if (dmub->hw_funcs.setup_windows)
676 dmub->hw_funcs.setup_windows(dmub, &cw2, &cw3, &cw4, &cw5, &cw6);
677
678 if (dmub->hw_funcs.setup_outbox0)
679 dmub->hw_funcs.setup_outbox0(dmub, &outbox0);
680
681 if (dmub->hw_funcs.setup_mailbox)
682 dmub->hw_funcs.setup_mailbox(dmub, &inbox1);
683 if (dmub->hw_funcs.setup_out_mailbox)
684 dmub->hw_funcs.setup_out_mailbox(dmub, &outbox1);
685
686 dmub_memset(&rb_params, 0, sizeof(rb_params));
687 rb_params.ctx = dmub;
688 rb_params.base_address = mail_fb->cpu_addr;
689 rb_params.capacity = DMUB_RB_SIZE;
690 dmub_rb_init(&dmub->inbox1_rb, &rb_params);
691
692 // Initialize outbox1 ring buffer
693 rb_params.ctx = dmub;
694 rb_params.base_address = (void *) ((uint8_t *) (mail_fb->cpu_addr) + DMUB_RB_SIZE);
695 rb_params.capacity = DMUB_RB_SIZE;
696 dmub_rb_init(&dmub->outbox1_rb, &rb_params);
697
698 dmub_memset(&outbox0_rb_params, 0, sizeof(outbox0_rb_params));
699 outbox0_rb_params.ctx = dmub;
700 outbox0_rb_params.base_address = (void *)((uintptr_t)(tracebuff_fb->cpu_addr) + TRACE_BUFFER_ENTRY_OFFSET);
701 outbox0_rb_params.capacity = tracebuff_fb->size - dmub_align(TRACE_BUFFER_ENTRY_OFFSET, 64);
702 dmub_rb_init(&dmub->outbox0_rb, &outbox0_rb_params);
703
704 /* Report to DMUB what features are supported by current driver */
705 if (dmub->hw_funcs.enable_dmub_boot_options)
706 dmub->hw_funcs.enable_dmub_boot_options(dmub, params);
707
708 if (dmub->hw_funcs.skip_dmub_panel_power_sequence && !dmub->is_virtual)
709 dmub->hw_funcs.skip_dmub_panel_power_sequence(dmub,
710 params->skip_panel_power_sequence);
711
712 if (dmub->hw_funcs.reset_release && !dmub->is_virtual)
713 dmub->hw_funcs.reset_release(dmub);
714
715 dmub->hw_init = true;
716 dmub->power_state = DMUB_POWER_STATE_D0;
717
718 return DMUB_STATUS_OK;
719}
720
721enum dmub_status dmub_srv_sync_inbox1(struct dmub_srv *dmub)
722{
723 if (!dmub->sw_init)
724 return DMUB_STATUS_INVALID;
725
726 if (dmub->hw_funcs.get_inbox1_rptr && dmub->hw_funcs.get_inbox1_wptr) {
727 uint32_t rptr = dmub->hw_funcs.get_inbox1_rptr(dmub);
728 uint32_t wptr = dmub->hw_funcs.get_inbox1_wptr(dmub);
729
730 if (rptr > dmub->inbox1_rb.capacity || wptr > dmub->inbox1_rb.capacity) {
731 return DMUB_STATUS_HW_FAILURE;
732 } else {
733 dmub->inbox1_rb.rptr = rptr;
734 dmub->inbox1_rb.wrpt = wptr;
735 dmub->inbox1_last_wptr = dmub->inbox1_rb.wrpt;
736 }
737 }
738
739 return DMUB_STATUS_OK;
740}
741
742enum dmub_status dmub_srv_hw_reset(struct dmub_srv *dmub)
743{
744 if (!dmub->sw_init)
745 return DMUB_STATUS_INVALID;
746
747 if (dmub->hw_funcs.reset)
748 dmub->hw_funcs.reset(dmub);
749
750 /* mailboxes have been reset in hw, so reset the sw state as well */
751 dmub->inbox1_last_wptr = 0;
752 dmub->inbox1_rb.wrpt = 0;
753 dmub->inbox1_rb.rptr = 0;
754 dmub->outbox0_rb.wrpt = 0;
755 dmub->outbox0_rb.rptr = 0;
756 dmub->outbox1_rb.wrpt = 0;
757 dmub->outbox1_rb.rptr = 0;
758
759 dmub->hw_init = false;
760
761 return DMUB_STATUS_OK;
762}
763
764enum dmub_status dmub_srv_cmd_queue(struct dmub_srv *dmub,
765 const union dmub_rb_cmd *cmd)
766{
767 if (!dmub->hw_init)
768 return DMUB_STATUS_INVALID;
769
770 if (dmub->power_state != DMUB_POWER_STATE_D0)
771 return DMUB_STATUS_POWER_STATE_D3;
772
773 if (dmub->inbox1_rb.rptr > dmub->inbox1_rb.capacity ||
774 dmub->inbox1_rb.wrpt > dmub->inbox1_rb.capacity) {
775 return DMUB_STATUS_HW_FAILURE;
776 }
777
778 if (dmub_rb_push_front(&dmub->inbox1_rb, cmd))
779 return DMUB_STATUS_OK;
780
781 return DMUB_STATUS_QUEUE_FULL;
782}
783
784enum dmub_status dmub_srv_cmd_execute(struct dmub_srv *dmub)
785{
786 struct dmub_rb flush_rb;
787
788 if (!dmub->hw_init)
789 return DMUB_STATUS_INVALID;
790
791 if (dmub->power_state != DMUB_POWER_STATE_D0)
792 return DMUB_STATUS_POWER_STATE_D3;
793
794 /**
795 * Read back all the queued commands to ensure that they've
796 * been flushed to framebuffer memory. Otherwise DMCUB might
797 * read back stale, fully invalid or partially invalid data.
798 */
799 flush_rb = dmub->inbox1_rb;
800 flush_rb.rptr = dmub->inbox1_last_wptr;
801 dmub_rb_flush_pending(&flush_rb);
802
803 dmub->hw_funcs.set_inbox1_wptr(dmub, dmub->inbox1_rb.wrpt);
804
805 dmub->inbox1_last_wptr = dmub->inbox1_rb.wrpt;
806
807 return DMUB_STATUS_OK;
808}
809
810bool dmub_srv_is_hw_pwr_up(struct dmub_srv *dmub)
811{
812 if (!dmub->hw_funcs.is_hw_powered_up)
813 return true;
814
815 return dmub->hw_funcs.is_hw_powered_up(dmub) &&
816 dmub->hw_funcs.is_hw_init(dmub);
817}
818
819enum dmub_status dmub_srv_wait_for_hw_pwr_up(struct dmub_srv *dmub,
820 uint32_t timeout_us)
821{
822 uint32_t i;
823
824 if (!dmub->hw_init)
825 return DMUB_STATUS_INVALID;
826
827 for (i = 0; i <= timeout_us; i += 100) {
828 if (dmub_srv_is_hw_pwr_up(dmub))
829 return DMUB_STATUS_OK;
830
831 udelay(100);
832 }
833
834 return DMUB_STATUS_TIMEOUT;
835}
836
837enum dmub_status dmub_srv_wait_for_auto_load(struct dmub_srv *dmub,
838 uint32_t timeout_us)
839{
840 uint32_t i;
841 bool hw_on = true;
842
843 if (!dmub->hw_init)
844 return DMUB_STATUS_INVALID;
845
846 for (i = 0; i <= timeout_us; i += 100) {
847 union dmub_fw_boot_status status = dmub->hw_funcs.get_fw_status(dmub);
848
849 if (dmub->hw_funcs.is_hw_powered_up)
850 hw_on = dmub->hw_funcs.is_hw_powered_up(dmub);
851
852 if (status.bits.dal_fw && status.bits.mailbox_rdy && hw_on)
853 return DMUB_STATUS_OK;
854
855 udelay(100);
856 }
857
858 return DMUB_STATUS_TIMEOUT;
859}
860
861enum dmub_status dmub_srv_wait_for_idle(struct dmub_srv *dmub,
862 uint32_t timeout_us)
863{
864 uint32_t i, rptr;
865
866 if (!dmub->hw_init)
867 return DMUB_STATUS_INVALID;
868
869 for (i = 0; i <= timeout_us; ++i) {
870 rptr = dmub->hw_funcs.get_inbox1_rptr(dmub);
871
872 if (rptr > dmub->inbox1_rb.capacity)
873 return DMUB_STATUS_HW_FAILURE;
874
875 dmub->inbox1_rb.rptr = rptr;
876
877 if (dmub_rb_empty(&dmub->inbox1_rb))
878 return DMUB_STATUS_OK;
879
880 udelay(1);
881 }
882
883 return DMUB_STATUS_TIMEOUT;
884}
885
886enum dmub_status
887dmub_srv_send_gpint_command(struct dmub_srv *dmub,
888 enum dmub_gpint_command command_code,
889 uint16_t param, uint32_t timeout_us)
890{
891 union dmub_gpint_data_register reg;
892 uint32_t i;
893
894 if (!dmub->sw_init)
895 return DMUB_STATUS_INVALID;
896
897 if (!dmub->hw_funcs.set_gpint)
898 return DMUB_STATUS_INVALID;
899
900 if (!dmub->hw_funcs.is_gpint_acked)
901 return DMUB_STATUS_INVALID;
902
903 reg.bits.status = 1;
904 reg.bits.command_code = command_code;
905 reg.bits.param = param;
906
907 dmub->hw_funcs.set_gpint(dmub, reg);
908
909 for (i = 0; i < timeout_us; ++i) {
910 udelay(1);
911
912 if (dmub->hw_funcs.is_gpint_acked(dmub, reg))
913 return DMUB_STATUS_OK;
914 }
915
916 return DMUB_STATUS_TIMEOUT;
917}
918
919enum dmub_status dmub_srv_get_gpint_response(struct dmub_srv *dmub,
920 uint32_t *response)
921{
922 *response = 0;
923
924 if (!dmub->sw_init)
925 return DMUB_STATUS_INVALID;
926
927 if (!dmub->hw_funcs.get_gpint_response)
928 return DMUB_STATUS_INVALID;
929
930 *response = dmub->hw_funcs.get_gpint_response(dmub);
931
932 return DMUB_STATUS_OK;
933}
934
935enum dmub_status dmub_srv_get_gpint_dataout(struct dmub_srv *dmub,
936 uint32_t *dataout)
937{
938 *dataout = 0;
939
940 if (!dmub->sw_init)
941 return DMUB_STATUS_INVALID;
942
943 if (!dmub->hw_funcs.get_gpint_dataout)
944 return DMUB_STATUS_INVALID;
945
946 *dataout = dmub->hw_funcs.get_gpint_dataout(dmub);
947
948 return DMUB_STATUS_OK;
949}
950
951enum dmub_status dmub_srv_get_fw_boot_status(struct dmub_srv *dmub,
952 union dmub_fw_boot_status *status)
953{
954 status->all = 0;
955
956 if (!dmub->sw_init)
957 return DMUB_STATUS_INVALID;
958
959 if (dmub->hw_funcs.get_fw_status)
960 *status = dmub->hw_funcs.get_fw_status(dmub);
961
962 return DMUB_STATUS_OK;
963}
964
965enum dmub_status dmub_srv_get_fw_boot_option(struct dmub_srv *dmub,
966 union dmub_fw_boot_options *option)
967{
968 option->all = 0;
969
970 if (!dmub->sw_init)
971 return DMUB_STATUS_INVALID;
972
973 if (dmub->hw_funcs.get_fw_boot_option)
974 *option = dmub->hw_funcs.get_fw_boot_option(dmub);
975
976 return DMUB_STATUS_OK;
977}
978
979enum dmub_status dmub_srv_set_skip_panel_power_sequence(struct dmub_srv *dmub,
980 bool skip)
981{
982 if (!dmub->sw_init)
983 return DMUB_STATUS_INVALID;
984
985 if (dmub->hw_funcs.skip_dmub_panel_power_sequence && !dmub->is_virtual)
986 dmub->hw_funcs.skip_dmub_panel_power_sequence(dmub, skip);
987
988 return DMUB_STATUS_OK;
989}
990
991enum dmub_status dmub_srv_cmd_with_reply_data(struct dmub_srv *dmub,
992 union dmub_rb_cmd *cmd)
993{
994 enum dmub_status status = DMUB_STATUS_OK;
995
996 // Queue command
997 status = dmub_srv_cmd_queue(dmub, cmd);
998
999 if (status != DMUB_STATUS_OK)
1000 return status;
1001
1002 // Execute command
1003 status = dmub_srv_cmd_execute(dmub);
1004
1005 if (status != DMUB_STATUS_OK)
1006 return status;
1007
1008 // Wait for DMUB to process command
1009 status = dmub_srv_wait_for_idle(dmub, 100000);
1010
1011 if (status != DMUB_STATUS_OK)
1012 return status;
1013
1014 // Copy data back from ring buffer into command
1015 dmub_rb_get_return_data(&dmub->inbox1_rb, cmd);
1016
1017 return status;
1018}
1019
1020static inline bool dmub_rb_out_trace_buffer_front(struct dmub_rb *rb,
1021 void *entry)
1022{
1023 const uint64_t *src = (const uint64_t *)(rb->base_address) + rb->rptr / sizeof(uint64_t);
1024 uint64_t *dst = (uint64_t *)entry;
1025 uint8_t i;
1026 uint8_t loop_count;
1027
1028 if (rb->rptr == rb->wrpt)
1029 return false;
1030
1031 loop_count = sizeof(struct dmcub_trace_buf_entry) / sizeof(uint64_t);
1032 // copying data
1033 for (i = 0; i < loop_count; i++)
1034 *dst++ = *src++;
1035
1036 rb->rptr += sizeof(struct dmcub_trace_buf_entry);
1037
1038 rb->rptr %= rb->capacity;
1039
1040 return true;
1041}
1042
1043bool dmub_srv_get_outbox0_msg(struct dmub_srv *dmub, struct dmcub_trace_buf_entry *entry)
1044{
1045 dmub->outbox0_rb.wrpt = dmub->hw_funcs.get_outbox0_wptr(dmub);
1046
1047 return dmub_rb_out_trace_buffer_front(&dmub->outbox0_rb, (void *)entry);
1048}
1049
1050bool dmub_srv_get_diagnostic_data(struct dmub_srv *dmub, struct dmub_diagnostic_data *diag_data)
1051{
1052 if (!dmub || !dmub->hw_funcs.get_diagnostic_data || !diag_data)
1053 return false;
1054 dmub->hw_funcs.get_diagnostic_data(dmub, diag_data);
1055 return true;
1056}
1057
1058bool dmub_srv_should_detect(struct dmub_srv *dmub)
1059{
1060 if (!dmub->hw_init || !dmub->hw_funcs.should_detect)
1061 return false;
1062
1063 return dmub->hw_funcs.should_detect(dmub);
1064}
1065
1066enum dmub_status dmub_srv_clear_inbox0_ack(struct dmub_srv *dmub)
1067{
1068 if (!dmub->hw_init || !dmub->hw_funcs.clear_inbox0_ack_register)
1069 return DMUB_STATUS_INVALID;
1070
1071 dmub->hw_funcs.clear_inbox0_ack_register(dmub);
1072 return DMUB_STATUS_OK;
1073}
1074
1075enum dmub_status dmub_srv_wait_for_inbox0_ack(struct dmub_srv *dmub, uint32_t timeout_us)
1076{
1077 uint32_t i = 0;
1078 uint32_t ack = 0;
1079
1080 if (!dmub->hw_init || !dmub->hw_funcs.read_inbox0_ack_register)
1081 return DMUB_STATUS_INVALID;
1082
1083 for (i = 0; i <= timeout_us; i++) {
1084 ack = dmub->hw_funcs.read_inbox0_ack_register(dmub);
1085 if (ack)
1086 return DMUB_STATUS_OK;
1087 udelay(1);
1088 }
1089 return DMUB_STATUS_TIMEOUT;
1090}
1091
1092enum dmub_status dmub_srv_send_inbox0_cmd(struct dmub_srv *dmub,
1093 union dmub_inbox0_data_register data)
1094{
1095 if (!dmub->hw_init || !dmub->hw_funcs.send_inbox0_cmd)
1096 return DMUB_STATUS_INVALID;
1097
1098 dmub->hw_funcs.send_inbox0_cmd(dmub, data);
1099 return DMUB_STATUS_OK;
1100}
1101
1102void dmub_srv_subvp_save_surf_addr(struct dmub_srv *dmub, const struct dc_plane_address *addr, uint8_t subvp_index)
1103{
1104 if (dmub->hw_funcs.subvp_save_surf_addr) {
1105 dmub->hw_funcs.subvp_save_surf_addr(dmub,
1106 addr,
1107 subvp_index);
1108 }
1109}
1110
1111void dmub_srv_set_power_state(struct dmub_srv *dmub, enum dmub_srv_power_state_type dmub_srv_power_state)
1112{
1113 if (!dmub || !dmub->hw_init)
1114 return;
1115
1116 dmub->power_state = dmub_srv_power_state;
1117}
1/*
2 * Copyright 2019 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#include "../dmub_srv.h"
27#include "dmub_dcn20.h"
28#include "dmub_dcn21.h"
29#include "dmub_cmd.h"
30#include "dmub_dcn30.h"
31#include "dmub_dcn301.h"
32#include "dmub_dcn302.h"
33#include "dmub_dcn303.h"
34#include "dmub_dcn31.h"
35#include "dmub_dcn315.h"
36#include "dmub_dcn316.h"
37#include "dmub_dcn32.h"
38#include "os_types.h"
39/*
40 * Note: the DMUB service is standalone. No additional headers should be
41 * added below or above this line unless they reside within the DMUB
42 * folder.
43 */
44
45/* Alignment for framebuffer memory. */
46#define DMUB_FB_ALIGNMENT (1024 * 1024)
47
48/* Stack size. */
49#define DMUB_STACK_SIZE (128 * 1024)
50
51/* Context size. */
52#define DMUB_CONTEXT_SIZE (512 * 1024)
53
54/* Mailbox size : Ring buffers are required for both inbox and outbox */
55#define DMUB_MAILBOX_SIZE ((2 * DMUB_RB_SIZE))
56
57/* Default state size if meta is absent. */
58#define DMUB_FW_STATE_SIZE (64 * 1024)
59
60/* Default tracebuffer size if meta is absent. */
61#define DMUB_TRACE_BUFFER_SIZE (64 * 1024)
62
63
64/* Default scratch mem size. */
65#define DMUB_SCRATCH_MEM_SIZE (256)
66
67/* Number of windows in use. */
68#define DMUB_NUM_WINDOWS (DMUB_WINDOW_TOTAL)
69/* Base addresses. */
70
71#define DMUB_CW0_BASE (0x60000000)
72#define DMUB_CW1_BASE (0x61000000)
73#define DMUB_CW3_BASE (0x63000000)
74#define DMUB_CW4_BASE (0x64000000)
75#define DMUB_CW5_BASE (0x65000000)
76#define DMUB_CW6_BASE (0x66000000)
77
78#define DMUB_REGION5_BASE (0xA0000000)
79
80static inline uint32_t dmub_align(uint32_t val, uint32_t factor)
81{
82 return (val + factor - 1) / factor * factor;
83}
84
85void dmub_flush_buffer_mem(const struct dmub_fb *fb)
86{
87 const uint8_t *base = (const uint8_t *)fb->cpu_addr;
88 uint8_t buf[64];
89 uint32_t pos, end;
90
91 /**
92 * Read 64-byte chunks since we don't want to store a
93 * large temporary buffer for this purpose.
94 */
95 end = fb->size / sizeof(buf) * sizeof(buf);
96
97 for (pos = 0; pos < end; pos += sizeof(buf))
98 dmub_memcpy(buf, base + pos, sizeof(buf));
99
100 /* Read anything leftover into the buffer. */
101 if (end < fb->size)
102 dmub_memcpy(buf, base + pos, fb->size - end);
103}
104
105static const struct dmub_fw_meta_info *
106dmub_get_fw_meta_info_from_blob(const uint8_t *blob, uint32_t blob_size, uint32_t meta_offset)
107{
108 const union dmub_fw_meta *meta;
109
110 if (!blob || !blob_size)
111 return NULL;
112
113 if (blob_size < sizeof(union dmub_fw_meta) + meta_offset)
114 return NULL;
115
116 meta = (const union dmub_fw_meta *)(blob + blob_size - meta_offset -
117 sizeof(union dmub_fw_meta));
118
119 if (meta->info.magic_value != DMUB_FW_META_MAGIC)
120 return NULL;
121
122 return &meta->info;
123}
124
125static const struct dmub_fw_meta_info *
126dmub_get_fw_meta_info(const struct dmub_srv_region_params *params)
127{
128 const struct dmub_fw_meta_info *info = NULL;
129
130 if (params->fw_bss_data && params->bss_data_size) {
131 /* Legacy metadata region. */
132 info = dmub_get_fw_meta_info_from_blob(params->fw_bss_data,
133 params->bss_data_size,
134 DMUB_FW_META_OFFSET);
135 } else if (params->fw_inst_const && params->inst_const_size) {
136 /* Combined metadata region - can be aligned to 16-bytes. */
137 uint32_t i;
138
139 for (i = 0; i < 16; ++i) {
140 info = dmub_get_fw_meta_info_from_blob(
141 params->fw_inst_const, params->inst_const_size, i);
142
143 if (info)
144 break;
145 }
146 }
147
148 return info;
149}
150
151static bool dmub_srv_hw_setup(struct dmub_srv *dmub, enum dmub_asic asic)
152{
153 struct dmub_srv_hw_funcs *funcs = &dmub->hw_funcs;
154
155 switch (asic) {
156 case DMUB_ASIC_DCN20:
157 case DMUB_ASIC_DCN21:
158 case DMUB_ASIC_DCN30:
159 case DMUB_ASIC_DCN301:
160 case DMUB_ASIC_DCN302:
161 case DMUB_ASIC_DCN303:
162 dmub->regs = &dmub_srv_dcn20_regs;
163
164 funcs->reset = dmub_dcn20_reset;
165 funcs->reset_release = dmub_dcn20_reset_release;
166 funcs->backdoor_load = dmub_dcn20_backdoor_load;
167 funcs->setup_windows = dmub_dcn20_setup_windows;
168 funcs->setup_mailbox = dmub_dcn20_setup_mailbox;
169 funcs->get_inbox1_rptr = dmub_dcn20_get_inbox1_rptr;
170 funcs->set_inbox1_wptr = dmub_dcn20_set_inbox1_wptr;
171 funcs->is_supported = dmub_dcn20_is_supported;
172 funcs->is_hw_init = dmub_dcn20_is_hw_init;
173 funcs->set_gpint = dmub_dcn20_set_gpint;
174 funcs->is_gpint_acked = dmub_dcn20_is_gpint_acked;
175 funcs->get_gpint_response = dmub_dcn20_get_gpint_response;
176 funcs->get_fw_status = dmub_dcn20_get_fw_boot_status;
177 funcs->enable_dmub_boot_options = dmub_dcn20_enable_dmub_boot_options;
178 funcs->skip_dmub_panel_power_sequence = dmub_dcn20_skip_dmub_panel_power_sequence;
179 funcs->get_current_time = dmub_dcn20_get_current_time;
180
181 // Out mailbox register access functions for RN and above
182 funcs->setup_out_mailbox = dmub_dcn20_setup_out_mailbox;
183 funcs->get_outbox1_wptr = dmub_dcn20_get_outbox1_wptr;
184 funcs->set_outbox1_rptr = dmub_dcn20_set_outbox1_rptr;
185
186 //outbox0 call stacks
187 funcs->setup_outbox0 = dmub_dcn20_setup_outbox0;
188 funcs->get_outbox0_wptr = dmub_dcn20_get_outbox0_wptr;
189 funcs->set_outbox0_rptr = dmub_dcn20_set_outbox0_rptr;
190
191 funcs->get_diagnostic_data = dmub_dcn20_get_diagnostic_data;
192
193 if (asic == DMUB_ASIC_DCN21) {
194 dmub->regs = &dmub_srv_dcn21_regs;
195
196 funcs->is_phy_init = dmub_dcn21_is_phy_init;
197 }
198 if (asic == DMUB_ASIC_DCN30) {
199 dmub->regs = &dmub_srv_dcn30_regs;
200
201 funcs->backdoor_load = dmub_dcn30_backdoor_load;
202 funcs->setup_windows = dmub_dcn30_setup_windows;
203 }
204 if (asic == DMUB_ASIC_DCN301) {
205 dmub->regs = &dmub_srv_dcn301_regs;
206
207 funcs->backdoor_load = dmub_dcn30_backdoor_load;
208 funcs->setup_windows = dmub_dcn30_setup_windows;
209 }
210 if (asic == DMUB_ASIC_DCN302) {
211 dmub->regs = &dmub_srv_dcn302_regs;
212
213 funcs->backdoor_load = dmub_dcn30_backdoor_load;
214 funcs->setup_windows = dmub_dcn30_setup_windows;
215 }
216 if (asic == DMUB_ASIC_DCN303) {
217 dmub->regs = &dmub_srv_dcn303_regs;
218
219 funcs->backdoor_load = dmub_dcn30_backdoor_load;
220 funcs->setup_windows = dmub_dcn30_setup_windows;
221 }
222 break;
223
224 case DMUB_ASIC_DCN31:
225 case DMUB_ASIC_DCN31B:
226 case DMUB_ASIC_DCN314:
227 case DMUB_ASIC_DCN315:
228 case DMUB_ASIC_DCN316:
229 if (asic == DMUB_ASIC_DCN315)
230 dmub->regs_dcn31 = &dmub_srv_dcn315_regs;
231 else if (asic == DMUB_ASIC_DCN316)
232 dmub->regs_dcn31 = &dmub_srv_dcn316_regs;
233 else
234 dmub->regs_dcn31 = &dmub_srv_dcn31_regs;
235 funcs->reset = dmub_dcn31_reset;
236 funcs->reset_release = dmub_dcn31_reset_release;
237 funcs->backdoor_load = dmub_dcn31_backdoor_load;
238 funcs->setup_windows = dmub_dcn31_setup_windows;
239 funcs->setup_mailbox = dmub_dcn31_setup_mailbox;
240 funcs->get_inbox1_rptr = dmub_dcn31_get_inbox1_rptr;
241 funcs->set_inbox1_wptr = dmub_dcn31_set_inbox1_wptr;
242 funcs->setup_out_mailbox = dmub_dcn31_setup_out_mailbox;
243 funcs->get_outbox1_wptr = dmub_dcn31_get_outbox1_wptr;
244 funcs->set_outbox1_rptr = dmub_dcn31_set_outbox1_rptr;
245 funcs->is_supported = dmub_dcn31_is_supported;
246 funcs->is_hw_init = dmub_dcn31_is_hw_init;
247 funcs->set_gpint = dmub_dcn31_set_gpint;
248 funcs->is_gpint_acked = dmub_dcn31_is_gpint_acked;
249 funcs->get_gpint_response = dmub_dcn31_get_gpint_response;
250 funcs->get_gpint_dataout = dmub_dcn31_get_gpint_dataout;
251 funcs->get_fw_status = dmub_dcn31_get_fw_boot_status;
252 funcs->enable_dmub_boot_options = dmub_dcn31_enable_dmub_boot_options;
253 funcs->skip_dmub_panel_power_sequence = dmub_dcn31_skip_dmub_panel_power_sequence;
254 //outbox0 call stacks
255 funcs->setup_outbox0 = dmub_dcn31_setup_outbox0;
256 funcs->get_outbox0_wptr = dmub_dcn31_get_outbox0_wptr;
257 funcs->set_outbox0_rptr = dmub_dcn31_set_outbox0_rptr;
258
259 funcs->get_diagnostic_data = dmub_dcn31_get_diagnostic_data;
260 funcs->should_detect = dmub_dcn31_should_detect;
261 funcs->get_current_time = dmub_dcn31_get_current_time;
262
263 break;
264
265 case DMUB_ASIC_DCN32:
266 case DMUB_ASIC_DCN321:
267 dmub->regs_dcn32 = &dmub_srv_dcn32_regs;
268 funcs->configure_dmub_in_system_memory = dmub_dcn32_configure_dmub_in_system_memory;
269 funcs->send_inbox0_cmd = dmub_dcn32_send_inbox0_cmd;
270 funcs->clear_inbox0_ack_register = dmub_dcn32_clear_inbox0_ack_register;
271 funcs->read_inbox0_ack_register = dmub_dcn32_read_inbox0_ack_register;
272 funcs->reset = dmub_dcn32_reset;
273 funcs->reset_release = dmub_dcn32_reset_release;
274 funcs->backdoor_load = dmub_dcn32_backdoor_load;
275 funcs->backdoor_load_zfb_mode = dmub_dcn32_backdoor_load_zfb_mode;
276 funcs->setup_windows = dmub_dcn32_setup_windows;
277 funcs->setup_mailbox = dmub_dcn32_setup_mailbox;
278 funcs->get_inbox1_rptr = dmub_dcn32_get_inbox1_rptr;
279 funcs->set_inbox1_wptr = dmub_dcn32_set_inbox1_wptr;
280 funcs->setup_out_mailbox = dmub_dcn32_setup_out_mailbox;
281 funcs->get_outbox1_wptr = dmub_dcn32_get_outbox1_wptr;
282 funcs->set_outbox1_rptr = dmub_dcn32_set_outbox1_rptr;
283 funcs->is_supported = dmub_dcn32_is_supported;
284 funcs->is_hw_init = dmub_dcn32_is_hw_init;
285 funcs->set_gpint = dmub_dcn32_set_gpint;
286 funcs->is_gpint_acked = dmub_dcn32_is_gpint_acked;
287 funcs->get_gpint_response = dmub_dcn32_get_gpint_response;
288 funcs->get_gpint_dataout = dmub_dcn32_get_gpint_dataout;
289 funcs->get_fw_status = dmub_dcn32_get_fw_boot_status;
290 funcs->enable_dmub_boot_options = dmub_dcn32_enable_dmub_boot_options;
291 funcs->skip_dmub_panel_power_sequence = dmub_dcn32_skip_dmub_panel_power_sequence;
292
293 /* outbox0 call stacks */
294 funcs->setup_outbox0 = dmub_dcn32_setup_outbox0;
295 funcs->get_outbox0_wptr = dmub_dcn32_get_outbox0_wptr;
296 funcs->set_outbox0_rptr = dmub_dcn32_set_outbox0_rptr;
297 funcs->get_current_time = dmub_dcn32_get_current_time;
298 funcs->get_diagnostic_data = dmub_dcn32_get_diagnostic_data;
299
300 break;
301
302 default:
303 return false;
304 }
305
306 return true;
307}
308
309enum dmub_status dmub_srv_create(struct dmub_srv *dmub,
310 const struct dmub_srv_create_params *params)
311{
312 enum dmub_status status = DMUB_STATUS_OK;
313
314 dmub_memset(dmub, 0, sizeof(*dmub));
315
316 dmub->funcs = params->funcs;
317 dmub->user_ctx = params->user_ctx;
318 dmub->asic = params->asic;
319 dmub->fw_version = params->fw_version;
320 dmub->is_virtual = params->is_virtual;
321
322 /* Setup asic dependent hardware funcs. */
323 if (!dmub_srv_hw_setup(dmub, params->asic)) {
324 status = DMUB_STATUS_INVALID;
325 goto cleanup;
326 }
327
328 /* Override (some) hardware funcs based on user params. */
329 if (params->hw_funcs) {
330 if (params->hw_funcs->emul_get_inbox1_rptr)
331 dmub->hw_funcs.emul_get_inbox1_rptr =
332 params->hw_funcs->emul_get_inbox1_rptr;
333
334 if (params->hw_funcs->emul_set_inbox1_wptr)
335 dmub->hw_funcs.emul_set_inbox1_wptr =
336 params->hw_funcs->emul_set_inbox1_wptr;
337
338 if (params->hw_funcs->is_supported)
339 dmub->hw_funcs.is_supported =
340 params->hw_funcs->is_supported;
341 }
342
343 /* Sanity checks for required hw func pointers. */
344 if (!dmub->hw_funcs.get_inbox1_rptr ||
345 !dmub->hw_funcs.set_inbox1_wptr) {
346 status = DMUB_STATUS_INVALID;
347 goto cleanup;
348 }
349
350cleanup:
351 if (status == DMUB_STATUS_OK)
352 dmub->sw_init = true;
353 else
354 dmub_srv_destroy(dmub);
355
356 return status;
357}
358
359void dmub_srv_destroy(struct dmub_srv *dmub)
360{
361 dmub_memset(dmub, 0, sizeof(*dmub));
362}
363
364enum dmub_status
365dmub_srv_calc_region_info(struct dmub_srv *dmub,
366 const struct dmub_srv_region_params *params,
367 struct dmub_srv_region_info *out)
368{
369 struct dmub_region *inst = &out->regions[DMUB_WINDOW_0_INST_CONST];
370 struct dmub_region *stack = &out->regions[DMUB_WINDOW_1_STACK];
371 struct dmub_region *data = &out->regions[DMUB_WINDOW_2_BSS_DATA];
372 struct dmub_region *bios = &out->regions[DMUB_WINDOW_3_VBIOS];
373 struct dmub_region *mail = &out->regions[DMUB_WINDOW_4_MAILBOX];
374 struct dmub_region *trace_buff = &out->regions[DMUB_WINDOW_5_TRACEBUFF];
375 struct dmub_region *fw_state = &out->regions[DMUB_WINDOW_6_FW_STATE];
376 struct dmub_region *scratch_mem = &out->regions[DMUB_WINDOW_7_SCRATCH_MEM];
377 const struct dmub_fw_meta_info *fw_info;
378 uint32_t fw_state_size = DMUB_FW_STATE_SIZE;
379 uint32_t trace_buffer_size = DMUB_TRACE_BUFFER_SIZE;
380 uint32_t scratch_mem_size = DMUB_SCRATCH_MEM_SIZE;
381
382 if (!dmub->sw_init)
383 return DMUB_STATUS_INVALID;
384
385 memset(out, 0, sizeof(*out));
386
387 out->num_regions = DMUB_NUM_WINDOWS;
388
389 inst->base = 0x0;
390 inst->top = inst->base + params->inst_const_size;
391
392 data->base = dmub_align(inst->top, 256);
393 data->top = data->base + params->bss_data_size;
394
395 /*
396 * All cache windows below should be aligned to the size
397 * of the DMCUB cache line, 64 bytes.
398 */
399
400 stack->base = dmub_align(data->top, 256);
401 stack->top = stack->base + DMUB_STACK_SIZE + DMUB_CONTEXT_SIZE;
402
403 bios->base = dmub_align(stack->top, 256);
404 bios->top = bios->base + params->vbios_size;
405
406 mail->base = dmub_align(bios->top, 256);
407 mail->top = mail->base + DMUB_MAILBOX_SIZE;
408
409 fw_info = dmub_get_fw_meta_info(params);
410
411 if (fw_info) {
412 fw_state_size = fw_info->fw_region_size;
413 trace_buffer_size = fw_info->trace_buffer_size;
414
415 /**
416 * If DM didn't fill in a version, then fill it in based on
417 * the firmware meta now that we have it.
418 *
419 * TODO: Make it easier for driver to extract this out to
420 * pass during creation.
421 */
422 if (dmub->fw_version == 0)
423 dmub->fw_version = fw_info->fw_version;
424 }
425
426 trace_buff->base = dmub_align(mail->top, 256);
427 trace_buff->top = trace_buff->base + dmub_align(trace_buffer_size, 64);
428
429 fw_state->base = dmub_align(trace_buff->top, 256);
430 fw_state->top = fw_state->base + dmub_align(fw_state_size, 64);
431
432 scratch_mem->base = dmub_align(fw_state->top, 256);
433 scratch_mem->top = scratch_mem->base + dmub_align(scratch_mem_size, 64);
434
435 out->fb_size = dmub_align(scratch_mem->top, 4096);
436
437 return DMUB_STATUS_OK;
438}
439
440enum dmub_status dmub_srv_calc_fb_info(struct dmub_srv *dmub,
441 const struct dmub_srv_fb_params *params,
442 struct dmub_srv_fb_info *out)
443{
444 uint8_t *cpu_base;
445 uint64_t gpu_base;
446 uint32_t i;
447
448 if (!dmub->sw_init)
449 return DMUB_STATUS_INVALID;
450
451 memset(out, 0, sizeof(*out));
452
453 if (params->region_info->num_regions != DMUB_NUM_WINDOWS)
454 return DMUB_STATUS_INVALID;
455
456 cpu_base = (uint8_t *)params->cpu_addr;
457 gpu_base = params->gpu_addr;
458
459 for (i = 0; i < DMUB_NUM_WINDOWS; ++i) {
460 const struct dmub_region *reg =
461 ¶ms->region_info->regions[i];
462
463 out->fb[i].cpu_addr = cpu_base + reg->base;
464 out->fb[i].gpu_addr = gpu_base + reg->base;
465 out->fb[i].size = reg->top - reg->base;
466 }
467
468 out->num_fb = DMUB_NUM_WINDOWS;
469
470 return DMUB_STATUS_OK;
471}
472
473enum dmub_status dmub_srv_has_hw_support(struct dmub_srv *dmub,
474 bool *is_supported)
475{
476 *is_supported = false;
477
478 if (!dmub->sw_init)
479 return DMUB_STATUS_INVALID;
480
481 if (dmub->hw_funcs.is_supported)
482 *is_supported = dmub->hw_funcs.is_supported(dmub);
483
484 return DMUB_STATUS_OK;
485}
486
487enum dmub_status dmub_srv_is_hw_init(struct dmub_srv *dmub, bool *is_hw_init)
488{
489 *is_hw_init = false;
490
491 if (!dmub->sw_init)
492 return DMUB_STATUS_INVALID;
493
494 if (!dmub->hw_init)
495 return DMUB_STATUS_OK;
496
497 if (dmub->hw_funcs.is_hw_init)
498 *is_hw_init = dmub->hw_funcs.is_hw_init(dmub);
499
500 return DMUB_STATUS_OK;
501}
502
503enum dmub_status dmub_srv_hw_init(struct dmub_srv *dmub,
504 const struct dmub_srv_hw_params *params)
505{
506 struct dmub_fb *inst_fb = params->fb[DMUB_WINDOW_0_INST_CONST];
507 struct dmub_fb *stack_fb = params->fb[DMUB_WINDOW_1_STACK];
508 struct dmub_fb *data_fb = params->fb[DMUB_WINDOW_2_BSS_DATA];
509 struct dmub_fb *bios_fb = params->fb[DMUB_WINDOW_3_VBIOS];
510 struct dmub_fb *mail_fb = params->fb[DMUB_WINDOW_4_MAILBOX];
511 struct dmub_fb *tracebuff_fb = params->fb[DMUB_WINDOW_5_TRACEBUFF];
512 struct dmub_fb *fw_state_fb = params->fb[DMUB_WINDOW_6_FW_STATE];
513 struct dmub_fb *scratch_mem_fb = params->fb[DMUB_WINDOW_7_SCRATCH_MEM];
514
515 struct dmub_rb_init_params rb_params, outbox0_rb_params;
516 struct dmub_window cw0, cw1, cw2, cw3, cw4, cw5, cw6;
517 struct dmub_region inbox1, outbox1, outbox0;
518
519 if (!dmub->sw_init)
520 return DMUB_STATUS_INVALID;
521
522 if (!inst_fb || !stack_fb || !data_fb || !bios_fb || !mail_fb ||
523 !tracebuff_fb || !fw_state_fb || !scratch_mem_fb) {
524 ASSERT(0);
525 return DMUB_STATUS_INVALID;
526 }
527
528 dmub->fb_base = params->fb_base;
529 dmub->fb_offset = params->fb_offset;
530 dmub->psp_version = params->psp_version;
531
532 if (dmub->hw_funcs.reset)
533 dmub->hw_funcs.reset(dmub);
534
535 /* reset the cache of the last wptr as well now that hw is reset */
536 dmub->inbox1_last_wptr = 0;
537
538 cw0.offset.quad_part = inst_fb->gpu_addr;
539 cw0.region.base = DMUB_CW0_BASE;
540 cw0.region.top = cw0.region.base + inst_fb->size - 1;
541
542 cw1.offset.quad_part = stack_fb->gpu_addr;
543 cw1.region.base = DMUB_CW1_BASE;
544 cw1.region.top = cw1.region.base + stack_fb->size - 1;
545
546 if (params->fw_in_system_memory && dmub->hw_funcs.configure_dmub_in_system_memory)
547 dmub->hw_funcs.configure_dmub_in_system_memory(dmub);
548
549 if (params->load_inst_const && dmub->hw_funcs.backdoor_load) {
550 /**
551 * Read back all the instruction memory so we don't hang the
552 * DMCUB when backdoor loading if the write from x86 hasn't been
553 * flushed yet. This only occurs in backdoor loading.
554 */
555 dmub_flush_buffer_mem(inst_fb);
556
557 if (params->fw_in_system_memory && dmub->hw_funcs.backdoor_load_zfb_mode)
558 dmub->hw_funcs.backdoor_load_zfb_mode(dmub, &cw0, &cw1);
559 else
560 dmub->hw_funcs.backdoor_load(dmub, &cw0, &cw1);
561 }
562
563 cw2.offset.quad_part = data_fb->gpu_addr;
564 cw2.region.base = DMUB_CW0_BASE + inst_fb->size;
565 cw2.region.top = cw2.region.base + data_fb->size;
566
567 cw3.offset.quad_part = bios_fb->gpu_addr;
568 cw3.region.base = DMUB_CW3_BASE;
569 cw3.region.top = cw3.region.base + bios_fb->size;
570
571 cw4.offset.quad_part = mail_fb->gpu_addr;
572 cw4.region.base = DMUB_CW4_BASE;
573 cw4.region.top = cw4.region.base + mail_fb->size;
574
575 /**
576 * Doubled the mailbox region to accomodate inbox and outbox.
577 * Note: Currently, currently total mailbox size is 16KB. It is split
578 * equally into 8KB between inbox and outbox. If this config is
579 * changed, then uncached base address configuration of outbox1
580 * has to be updated in funcs->setup_out_mailbox.
581 */
582 inbox1.base = cw4.region.base;
583 inbox1.top = cw4.region.base + DMUB_RB_SIZE;
584 outbox1.base = inbox1.top;
585 outbox1.top = cw4.region.top;
586
587 cw5.offset.quad_part = tracebuff_fb->gpu_addr;
588 cw5.region.base = DMUB_CW5_BASE;
589 cw5.region.top = cw5.region.base + tracebuff_fb->size;
590
591 outbox0.base = DMUB_REGION5_BASE + TRACE_BUFFER_ENTRY_OFFSET;
592 outbox0.top = outbox0.base + tracebuff_fb->size - TRACE_BUFFER_ENTRY_OFFSET;
593
594 cw6.offset.quad_part = fw_state_fb->gpu_addr;
595 cw6.region.base = DMUB_CW6_BASE;
596 cw6.region.top = cw6.region.base + fw_state_fb->size;
597
598 dmub->fw_state = fw_state_fb->cpu_addr;
599
600 dmub->scratch_mem_fb = *scratch_mem_fb;
601
602 if (dmub->hw_funcs.setup_windows)
603 dmub->hw_funcs.setup_windows(dmub, &cw2, &cw3, &cw4, &cw5, &cw6);
604
605 if (dmub->hw_funcs.setup_outbox0)
606 dmub->hw_funcs.setup_outbox0(dmub, &outbox0);
607
608 if (dmub->hw_funcs.setup_mailbox)
609 dmub->hw_funcs.setup_mailbox(dmub, &inbox1);
610 if (dmub->hw_funcs.setup_out_mailbox)
611 dmub->hw_funcs.setup_out_mailbox(dmub, &outbox1);
612
613 dmub_memset(&rb_params, 0, sizeof(rb_params));
614 rb_params.ctx = dmub;
615 rb_params.base_address = mail_fb->cpu_addr;
616 rb_params.capacity = DMUB_RB_SIZE;
617 dmub_rb_init(&dmub->inbox1_rb, &rb_params);
618
619 // Initialize outbox1 ring buffer
620 rb_params.ctx = dmub;
621 rb_params.base_address = (void *) ((uint8_t *) (mail_fb->cpu_addr) + DMUB_RB_SIZE);
622 rb_params.capacity = DMUB_RB_SIZE;
623 dmub_rb_init(&dmub->outbox1_rb, &rb_params);
624
625 dmub_memset(&outbox0_rb_params, 0, sizeof(outbox0_rb_params));
626 outbox0_rb_params.ctx = dmub;
627 outbox0_rb_params.base_address = (void *)((uintptr_t)(tracebuff_fb->cpu_addr) + TRACE_BUFFER_ENTRY_OFFSET);
628 outbox0_rb_params.capacity = tracebuff_fb->size - dmub_align(TRACE_BUFFER_ENTRY_OFFSET, 64);
629 dmub_rb_init(&dmub->outbox0_rb, &outbox0_rb_params);
630
631 /* Report to DMUB what features are supported by current driver */
632 if (dmub->hw_funcs.enable_dmub_boot_options)
633 dmub->hw_funcs.enable_dmub_boot_options(dmub, params);
634
635 if (dmub->hw_funcs.skip_dmub_panel_power_sequence)
636 dmub->hw_funcs.skip_dmub_panel_power_sequence(dmub,
637 params->skip_panel_power_sequence);
638
639 if (dmub->hw_funcs.reset_release)
640 dmub->hw_funcs.reset_release(dmub);
641
642 dmub->hw_init = true;
643
644 return DMUB_STATUS_OK;
645}
646
647enum dmub_status dmub_srv_hw_reset(struct dmub_srv *dmub)
648{
649 if (!dmub->sw_init)
650 return DMUB_STATUS_INVALID;
651
652 if (dmub->hw_funcs.reset)
653 dmub->hw_funcs.reset(dmub);
654
655 /* mailboxes have been reset in hw, so reset the sw state as well */
656 dmub->inbox1_last_wptr = 0;
657 dmub->inbox1_rb.wrpt = 0;
658 dmub->inbox1_rb.rptr = 0;
659 dmub->outbox0_rb.wrpt = 0;
660 dmub->outbox0_rb.rptr = 0;
661 dmub->outbox1_rb.wrpt = 0;
662 dmub->outbox1_rb.rptr = 0;
663
664 dmub->hw_init = false;
665
666 return DMUB_STATUS_OK;
667}
668
669enum dmub_status dmub_srv_cmd_queue(struct dmub_srv *dmub,
670 const union dmub_rb_cmd *cmd)
671{
672 if (!dmub->hw_init)
673 return DMUB_STATUS_INVALID;
674
675 if (dmub_rb_push_front(&dmub->inbox1_rb, cmd))
676 return DMUB_STATUS_OK;
677
678 return DMUB_STATUS_QUEUE_FULL;
679}
680
681enum dmub_status dmub_srv_cmd_execute(struct dmub_srv *dmub)
682{
683 struct dmub_rb flush_rb;
684
685 if (!dmub->hw_init)
686 return DMUB_STATUS_INVALID;
687
688 /**
689 * Read back all the queued commands to ensure that they've
690 * been flushed to framebuffer memory. Otherwise DMCUB might
691 * read back stale, fully invalid or partially invalid data.
692 */
693 flush_rb = dmub->inbox1_rb;
694 flush_rb.rptr = dmub->inbox1_last_wptr;
695 dmub_rb_flush_pending(&flush_rb);
696
697 dmub->hw_funcs.set_inbox1_wptr(dmub, dmub->inbox1_rb.wrpt);
698
699 dmub->inbox1_last_wptr = dmub->inbox1_rb.wrpt;
700
701 return DMUB_STATUS_OK;
702}
703
704enum dmub_status dmub_srv_wait_for_auto_load(struct dmub_srv *dmub,
705 uint32_t timeout_us)
706{
707 uint32_t i;
708
709 if (!dmub->hw_init)
710 return DMUB_STATUS_INVALID;
711
712 for (i = 0; i <= timeout_us; i += 100) {
713 union dmub_fw_boot_status status = dmub->hw_funcs.get_fw_status(dmub);
714
715 if (status.bits.dal_fw && status.bits.mailbox_rdy)
716 return DMUB_STATUS_OK;
717
718 udelay(100);
719 }
720
721 return DMUB_STATUS_TIMEOUT;
722}
723
724enum dmub_status dmub_srv_wait_for_phy_init(struct dmub_srv *dmub,
725 uint32_t timeout_us)
726{
727 uint32_t i = 0;
728
729 if (!dmub->hw_init)
730 return DMUB_STATUS_INVALID;
731
732 if (!dmub->hw_funcs.is_phy_init)
733 return DMUB_STATUS_OK;
734
735 for (i = 0; i <= timeout_us; i += 10) {
736 if (dmub->hw_funcs.is_phy_init(dmub))
737 return DMUB_STATUS_OK;
738
739 udelay(10);
740 }
741
742 return DMUB_STATUS_TIMEOUT;
743}
744
745enum dmub_status dmub_srv_wait_for_idle(struct dmub_srv *dmub,
746 uint32_t timeout_us)
747{
748 uint32_t i, rptr;
749
750 if (!dmub->hw_init)
751 return DMUB_STATUS_INVALID;
752
753 for (i = 0; i <= timeout_us; ++i) {
754 rptr = dmub->hw_funcs.get_inbox1_rptr(dmub);
755
756 if (rptr > dmub->inbox1_rb.capacity)
757 return DMUB_STATUS_HW_FAILURE;
758
759 dmub->inbox1_rb.rptr = rptr;
760
761 if (dmub_rb_empty(&dmub->inbox1_rb))
762 return DMUB_STATUS_OK;
763
764 udelay(1);
765 }
766
767 return DMUB_STATUS_TIMEOUT;
768}
769
770enum dmub_status
771dmub_srv_send_gpint_command(struct dmub_srv *dmub,
772 enum dmub_gpint_command command_code,
773 uint16_t param, uint32_t timeout_us)
774{
775 union dmub_gpint_data_register reg;
776 uint32_t i;
777
778 if (!dmub->sw_init)
779 return DMUB_STATUS_INVALID;
780
781 if (!dmub->hw_funcs.set_gpint)
782 return DMUB_STATUS_INVALID;
783
784 if (!dmub->hw_funcs.is_gpint_acked)
785 return DMUB_STATUS_INVALID;
786
787 reg.bits.status = 1;
788 reg.bits.command_code = command_code;
789 reg.bits.param = param;
790
791 dmub->hw_funcs.set_gpint(dmub, reg);
792
793 for (i = 0; i < timeout_us; ++i) {
794 udelay(1);
795
796 if (dmub->hw_funcs.is_gpint_acked(dmub, reg))
797 return DMUB_STATUS_OK;
798 }
799
800 return DMUB_STATUS_TIMEOUT;
801}
802
803enum dmub_status dmub_srv_get_gpint_response(struct dmub_srv *dmub,
804 uint32_t *response)
805{
806 *response = 0;
807
808 if (!dmub->sw_init)
809 return DMUB_STATUS_INVALID;
810
811 if (!dmub->hw_funcs.get_gpint_response)
812 return DMUB_STATUS_INVALID;
813
814 *response = dmub->hw_funcs.get_gpint_response(dmub);
815
816 return DMUB_STATUS_OK;
817}
818
819enum dmub_status dmub_srv_get_gpint_dataout(struct dmub_srv *dmub,
820 uint32_t *dataout)
821{
822 *dataout = 0;
823
824 if (!dmub->sw_init)
825 return DMUB_STATUS_INVALID;
826
827 if (!dmub->hw_funcs.get_gpint_dataout)
828 return DMUB_STATUS_INVALID;
829
830 *dataout = dmub->hw_funcs.get_gpint_dataout(dmub);
831
832 return DMUB_STATUS_OK;
833}
834
835enum dmub_status dmub_srv_get_fw_boot_status(struct dmub_srv *dmub,
836 union dmub_fw_boot_status *status)
837{
838 status->all = 0;
839
840 if (!dmub->sw_init)
841 return DMUB_STATUS_INVALID;
842
843 if (dmub->hw_funcs.get_fw_status)
844 *status = dmub->hw_funcs.get_fw_status(dmub);
845
846 return DMUB_STATUS_OK;
847}
848
849enum dmub_status dmub_srv_cmd_with_reply_data(struct dmub_srv *dmub,
850 union dmub_rb_cmd *cmd)
851{
852 enum dmub_status status = DMUB_STATUS_OK;
853
854 // Queue command
855 status = dmub_srv_cmd_queue(dmub, cmd);
856
857 if (status != DMUB_STATUS_OK)
858 return status;
859
860 // Execute command
861 status = dmub_srv_cmd_execute(dmub);
862
863 if (status != DMUB_STATUS_OK)
864 return status;
865
866 // Wait for DMUB to process command
867 status = dmub_srv_wait_for_idle(dmub, 100000);
868
869 if (status != DMUB_STATUS_OK)
870 return status;
871
872 // Copy data back from ring buffer into command
873 dmub_rb_get_return_data(&dmub->inbox1_rb, cmd);
874
875 return status;
876}
877
878static inline bool dmub_rb_out_trace_buffer_front(struct dmub_rb *rb,
879 void *entry)
880{
881 const uint64_t *src = (const uint64_t *)(rb->base_address) + rb->rptr / sizeof(uint64_t);
882 uint64_t *dst = (uint64_t *)entry;
883 uint8_t i;
884 uint8_t loop_count;
885
886 if (rb->rptr == rb->wrpt)
887 return false;
888
889 loop_count = sizeof(struct dmcub_trace_buf_entry) / sizeof(uint64_t);
890 // copying data
891 for (i = 0; i < loop_count; i++)
892 *dst++ = *src++;
893
894 rb->rptr += sizeof(struct dmcub_trace_buf_entry);
895
896 rb->rptr %= rb->capacity;
897
898 return true;
899}
900
901bool dmub_srv_get_outbox0_msg(struct dmub_srv *dmub, struct dmcub_trace_buf_entry *entry)
902{
903 dmub->outbox0_rb.wrpt = dmub->hw_funcs.get_outbox0_wptr(dmub);
904
905 return dmub_rb_out_trace_buffer_front(&dmub->outbox0_rb, (void *)entry);
906}
907
908bool dmub_srv_get_diagnostic_data(struct dmub_srv *dmub, struct dmub_diagnostic_data *diag_data)
909{
910 if (!dmub || !dmub->hw_funcs.get_diagnostic_data || !diag_data)
911 return false;
912 dmub->hw_funcs.get_diagnostic_data(dmub, diag_data);
913 return true;
914}
915
916bool dmub_srv_should_detect(struct dmub_srv *dmub)
917{
918 if (!dmub->hw_init || !dmub->hw_funcs.should_detect)
919 return false;
920
921 return dmub->hw_funcs.should_detect(dmub);
922}
923
924enum dmub_status dmub_srv_clear_inbox0_ack(struct dmub_srv *dmub)
925{
926 if (!dmub->hw_init || !dmub->hw_funcs.clear_inbox0_ack_register)
927 return DMUB_STATUS_INVALID;
928
929 dmub->hw_funcs.clear_inbox0_ack_register(dmub);
930 return DMUB_STATUS_OK;
931}
932
933enum dmub_status dmub_srv_wait_for_inbox0_ack(struct dmub_srv *dmub, uint32_t timeout_us)
934{
935 uint32_t i = 0;
936 uint32_t ack = 0;
937
938 if (!dmub->hw_init || !dmub->hw_funcs.read_inbox0_ack_register)
939 return DMUB_STATUS_INVALID;
940
941 for (i = 0; i <= timeout_us; i++) {
942 ack = dmub->hw_funcs.read_inbox0_ack_register(dmub);
943 if (ack)
944 return DMUB_STATUS_OK;
945 }
946 return DMUB_STATUS_TIMEOUT;
947}
948
949enum dmub_status dmub_srv_send_inbox0_cmd(struct dmub_srv *dmub,
950 union dmub_inbox0_data_register data)
951{
952 if (!dmub->hw_init || !dmub->hw_funcs.send_inbox0_cmd)
953 return DMUB_STATUS_INVALID;
954
955 dmub->hw_funcs.send_inbox0_cmd(dmub, data);
956 return DMUB_STATUS_OK;
957}