Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1/*
2 * Copyright 2015 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 <drm/drm_crtc.h>
27
28#include "amdgpu.h"
29#include "amdgpu_dm.h"
30#include "dc.h"
31
32enum amdgpu_dm_pipe_crc_source {
33 AMDGPU_DM_PIPE_CRC_SOURCE_NONE = 0,
34 AMDGPU_DM_PIPE_CRC_SOURCE_AUTO,
35 AMDGPU_DM_PIPE_CRC_SOURCE_MAX,
36 AMDGPU_DM_PIPE_CRC_SOURCE_INVALID = -1,
37};
38
39static enum amdgpu_dm_pipe_crc_source dm_parse_crc_source(const char *source)
40{
41 if (!source || !strcmp(source, "none"))
42 return AMDGPU_DM_PIPE_CRC_SOURCE_NONE;
43 if (!strcmp(source, "auto"))
44 return AMDGPU_DM_PIPE_CRC_SOURCE_AUTO;
45
46 return AMDGPU_DM_PIPE_CRC_SOURCE_INVALID;
47}
48
49int
50amdgpu_dm_crtc_verify_crc_source(struct drm_crtc *crtc, const char *src_name,
51 size_t *values_cnt)
52{
53 enum amdgpu_dm_pipe_crc_source source = dm_parse_crc_source(src_name);
54
55 if (source < 0) {
56 DRM_DEBUG_DRIVER("Unknown CRC source %s for CRTC%d\n",
57 src_name, crtc->index);
58 return -EINVAL;
59 }
60
61 *values_cnt = 3;
62 return 0;
63}
64
65int amdgpu_dm_crtc_set_crc_source(struct drm_crtc *crtc, const char *src_name)
66{
67 struct dm_crtc_state *crtc_state = to_dm_crtc_state(crtc->state);
68 struct dc_stream_state *stream_state = crtc_state->stream;
69
70 enum amdgpu_dm_pipe_crc_source source = dm_parse_crc_source(src_name);
71
72 if (source < 0) {
73 DRM_DEBUG_DRIVER("Unknown CRC source %s for CRTC%d\n",
74 src_name, crtc->index);
75 return -EINVAL;
76 }
77
78 if (!stream_state) {
79 DRM_ERROR("No stream state for CRTC%d\n", crtc->index);
80 return -EINVAL;
81 }
82
83 /* When enabling CRC, we should also disable dithering. */
84 if (source == AMDGPU_DM_PIPE_CRC_SOURCE_AUTO) {
85 if (dc_stream_configure_crc(stream_state->ctx->dc,
86 stream_state,
87 true, true)) {
88 crtc_state->crc_enabled = true;
89 dc_stream_set_dither_option(stream_state,
90 DITHER_OPTION_TRUN8);
91 }
92 else
93 return -EINVAL;
94 } else {
95 if (dc_stream_configure_crc(stream_state->ctx->dc,
96 stream_state,
97 false, false)) {
98 crtc_state->crc_enabled = false;
99 dc_stream_set_dither_option(stream_state,
100 DITHER_OPTION_DEFAULT);
101 }
102 else
103 return -EINVAL;
104 }
105
106 /* Reset crc_skipped on dm state */
107 crtc_state->crc_skip_count = 0;
108 return 0;
109}
110
111/**
112 * amdgpu_dm_crtc_handle_crc_irq: Report to DRM the CRC on given CRTC.
113 * @crtc: DRM CRTC object.
114 *
115 * This function should be called at the end of a vblank, when the fb has been
116 * fully processed through the pipe.
117 */
118void amdgpu_dm_crtc_handle_crc_irq(struct drm_crtc *crtc)
119{
120 struct dm_crtc_state *crtc_state;
121 struct dc_stream_state *stream_state;
122 uint32_t crcs[3];
123
124 if (crtc == NULL)
125 return;
126
127 crtc_state = to_dm_crtc_state(crtc->state);
128 stream_state = crtc_state->stream;
129
130 /* Early return if CRC capture is not enabled. */
131 if (!crtc_state->crc_enabled)
132 return;
133
134 /*
135 * Since flipping and crc enablement happen asynchronously, we - more
136 * often than not - will be returning an 'uncooked' crc on first frame.
137 * Probably because hw isn't ready yet. For added security, skip the
138 * first two CRC values.
139 */
140 if (crtc_state->crc_skip_count < 2) {
141 crtc_state->crc_skip_count += 1;
142 return;
143 }
144
145 if (!dc_stream_get_crc(stream_state->ctx->dc, stream_state,
146 &crcs[0], &crcs[1], &crcs[2]))
147 return;
148
149 drm_crtc_add_crc_entry(crtc, true,
150 drm_crtc_accurate_vblank_count(crtc), crcs);
151}