43 lines
1.8 KiB
C
43 lines
1.8 KiB
C
|
/*
|
||
|
* Copyright 2020 Advanced Micro Devices, Inc.
|
||
|
*
|
||
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
||
|
* copy of this software and associated documentation files (the "Software"),
|
||
|
* to deal in the Software without restriction, including without limitation
|
||
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||
|
* and/or sell copies of the Software, and to permit persons to whom the
|
||
|
* Software is furnished to do so, subject to the following conditions:
|
||
|
*
|
||
|
* The above copyright notice and this permission notice shall be included in
|
||
|
* all copies or substantial portions of the Software.
|
||
|
*
|
||
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||
|
* THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
||
|
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
||
|
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
||
|
* OTHER DEALINGS IN THE SOFTWARE.
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#include "amdgpu_dm_trace.h"
|
||
|
|
||
|
#define TRACE_DC_PIPE_STATE(pipe_ctx, index, max_pipes) \
|
||
|
for (index = 0; index < max_pipes; ++index) { \
|
||
|
struct pipe_ctx *pipe_ctx = &dc->current_state->res_ctx.pipe_ctx[index]; \
|
||
|
if (pipe_ctx->plane_state) \
|
||
|
trace_amdgpu_dm_dc_pipe_state(pipe_ctx->pipe_idx, pipe_ctx->plane_state, \
|
||
|
pipe_ctx->stream, &pipe_ctx->plane_res, \
|
||
|
pipe_ctx->update_flags.raw); \
|
||
|
}
|
||
|
|
||
|
#define TRACE_DCE_CLOCK_STATE(dce_clocks) \
|
||
|
trace_amdgpu_dm_dce_clocks_state(dce_clocks)
|
||
|
|
||
|
#define TRACE_DCN_CLOCK_STATE(dcn_clocks) \
|
||
|
trace_amdgpu_dm_dc_clocks_state(dcn_clocks)
|
||
|
|
||
|
#define TRACE_DCN_FPU(begin, function, line, ref_count) \
|
||
|
trace_dcn_fpu(begin, function, line, ref_count)
|