1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
|
/*
* Copyright 2022 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.
*
* Authors: AMD
*
*/
#include "dc_link.h"
#include "link_dp_trace.h"
void dp_trace_init(struct dc_link *link)
{
memset(&link->dp_trace, 0, sizeof(link->dp_trace));
link->dp_trace.is_initialized = true;
}
void dp_trace_reset(struct dc_link *link)
{
memset(&link->dp_trace, 0, sizeof(link->dp_trace));
}
bool dc_dp_trace_is_initialized(struct dc_link *link)
{
return link->dp_trace.is_initialized;
}
void dp_trace_detect_lt_init(struct dc_link *link)
{
memset(&link->dp_trace.detect_lt_trace, 0, sizeof(link->dp_trace.detect_lt_trace));
}
void dp_trace_commit_lt_init(struct dc_link *link)
{
memset(&link->dp_trace.commit_lt_trace, 0, sizeof(link->dp_trace.commit_lt_trace));
}
void dp_trace_link_loss_increment(struct dc_link *link)
{
link->dp_trace.link_loss_count++;
}
void dp_trace_lt_fail_count_update(struct dc_link *link,
unsigned int fail_count,
bool in_detection)
{
if (in_detection)
link->dp_trace.detect_lt_trace.counts.fail = fail_count;
else
link->dp_trace.commit_lt_trace.counts.fail = fail_count;
}
void dp_trace_lt_total_count_increment(struct dc_link *link,
bool in_detection)
{
if (in_detection)
link->dp_trace.detect_lt_trace.counts.total++;
else
link->dp_trace.commit_lt_trace.counts.total++;
}
void dc_dp_trace_set_is_logged_flag(struct dc_link *link,
bool in_detection,
bool is_logged)
{
if (in_detection)
link->dp_trace.detect_lt_trace.is_logged = is_logged;
else
link->dp_trace.commit_lt_trace.is_logged = is_logged;
}
bool dc_dp_trace_is_logged(struct dc_link *link,
bool in_detection)
{
if (in_detection)
return link->dp_trace.detect_lt_trace.is_logged;
else
return link->dp_trace.commit_lt_trace.is_logged;
}
void dp_trace_lt_result_update(struct dc_link *link,
enum link_training_result result,
bool in_detection)
{
if (in_detection)
link->dp_trace.detect_lt_trace.result = result;
else
link->dp_trace.commit_lt_trace.result = result;
}
void dp_trace_set_lt_start_timestamp(struct dc_link *link,
bool in_detection)
{
if (in_detection)
link->dp_trace.detect_lt_trace.timestamps.start = dm_get_timestamp(link->dc->ctx);
else
link->dp_trace.commit_lt_trace.timestamps.start = dm_get_timestamp(link->dc->ctx);
}
void dp_trace_set_lt_end_timestamp(struct dc_link *link,
bool in_detection)
{
if (in_detection)
link->dp_trace.detect_lt_trace.timestamps.end = dm_get_timestamp(link->dc->ctx);
else
link->dp_trace.commit_lt_trace.timestamps.end = dm_get_timestamp(link->dc->ctx);
}
unsigned long long dc_dp_trace_get_lt_end_timestamp(struct dc_link *link,
bool in_detection)
{
if (in_detection)
return link->dp_trace.detect_lt_trace.timestamps.end;
else
return link->dp_trace.commit_lt_trace.timestamps.end;
}
struct dp_trace_lt_counts *dc_dp_trace_get_lt_counts(struct dc_link *link,
bool in_detection)
{
if (in_detection)
return &link->dp_trace.detect_lt_trace.counts;
else
return &link->dp_trace.commit_lt_trace.counts;
}
unsigned int dc_dp_trace_get_link_loss_count(struct dc_link *link)
{
return link->dp_trace.link_loss_count;
}
void dp_trace_set_edp_power_timestamp(struct dc_link *link,
bool power_up)
{
if (!power_up)
/*save driver power off time stamp*/
link->dp_trace.edp_trace_power_timestamps.poweroff = dm_get_timestamp(link->dc->ctx);
else
link->dp_trace.edp_trace_power_timestamps.poweron = dm_get_timestamp(link->dc->ctx);
}
uint64_t dp_trace_get_edp_poweron_timestamp(struct dc_link *link)
{
return link->dp_trace.edp_trace_power_timestamps.poweron;
}
uint64_t dp_trace_get_edp_poweroff_timestamp(struct dc_link *link)
{
return link->dp_trace.edp_trace_power_timestamps.poweroff;
}
|