Symbol: test_pattern
sys/dev/ic/ne2000.c
289
static u_int8_t test_pattern[32] = "THIS is A memory TEST pattern";
sys/dev/ic/ne2000.c
404
ne2000_writemem(nict, nich, asict, asich, test_pattern, 8192,
sys/dev/ic/ne2000.c
405
sizeof(test_pattern), 0);
sys/dev/ic/ne2000.c
409
if (bcmp(test_pattern, test_buffer, sizeof(test_pattern))) {
sys/dev/ic/ne2000.c
422
ne2000_writemem(nict, nich, asict, asich, test_pattern, 16384,
sys/dev/ic/ne2000.c
423
sizeof(test_pattern), 1);
sys/dev/ic/ne2000.c
427
if (bcmp(test_pattern, test_buffer, sizeof(test_pattern)))
sys/dev/pci/drm/amd/amdgpu/amdgpu_vpe.c
782
const uint32_t test_pattern = 0xdeadbeef;
sys/dev/pci/drm/amd/amdgpu/amdgpu_vpe.c
805
amdgpu_ring_write(ring, test_pattern);
sys/dev/pci/drm/amd/amdgpu/amdgpu_vpe.c
809
if (le32_to_cpu(adev->wb.wb[index]) == test_pattern)
sys/dev/pci/drm/amd/amdgpu/amdgpu_vpe.c
824
const uint32_t test_pattern = 0xdeadbeef;
sys/dev/pci/drm/amd/amdgpu/amdgpu_vpe.c
847
ib.ptr[3] = test_pattern;
sys/dev/pci/drm/amd/amdgpu/amdgpu_vpe.c
864
ret = (le32_to_cpu(adev->wb.wb[index]) == test_pattern) ? 0 : -EINVAL;
sys/dev/pci/drm/amd/display/amdgpu_dm/amdgpu_dm_debugfs.c
760
enum dp_test_pattern test_pattern = DP_TEST_PATTERN_UNSUPPORTED;
sys/dev/pci/drm/amd/display/amdgpu_dm/amdgpu_dm_debugfs.c
798
test_pattern = param[0];
sys/dev/pci/drm/amd/display/amdgpu_dm/amdgpu_dm_debugfs.c
800
switch (test_pattern) {
sys/dev/pci/drm/amd/display/amdgpu_dm/amdgpu_dm_debugfs.c
822
test_pattern = DP_TEST_PATTERN_UNSUPPORTED;
sys/dev/pci/drm/amd/display/amdgpu_dm/amdgpu_dm_debugfs.c
832
if (test_pattern == DP_TEST_PATTERN_80BIT_CUSTOM) {
sys/dev/pci/drm/amd/display/amdgpu_dm/amdgpu_dm_debugfs.c
867
if (test_pattern != DP_TEST_PATTERN_VIDEO_MODE) {
sys/dev/pci/drm/amd/display/amdgpu_dm/amdgpu_dm_debugfs.c
880
test_pattern,
sys/dev/pci/drm/amd/display/amdgpu_dm/amdgpu_dm_helpers.c
1217
enum dp_test_pattern test_pattern;
sys/dev/pci/drm/amd/display/amdgpu_dm/amdgpu_dm_helpers.c
1246
test_pattern = DP_TEST_PATTERN_COLOR_RAMP;
sys/dev/pci/drm/amd/display/amdgpu_dm/amdgpu_dm_helpers.c
1249
test_pattern = DP_TEST_PATTERN_VERTICAL_BARS;
sys/dev/pci/drm/amd/display/amdgpu_dm/amdgpu_dm_helpers.c
1252
test_pattern = (dpcd_test_params.bits.DYN_RANGE ==
sys/dev/pci/drm/amd/display/amdgpu_dm/amdgpu_dm_helpers.c
1258
test_pattern = DP_TEST_PATTERN_VIDEO_MODE;
sys/dev/pci/drm/amd/display/amdgpu_dm/amdgpu_dm_helpers.c
1325
pipe_ctx->stream->test_pattern.type = test_pattern;
sys/dev/pci/drm/amd/display/amdgpu_dm/amdgpu_dm_helpers.c
1326
pipe_ctx->stream->test_pattern.color_space = test_pattern_color_space;
sys/dev/pci/drm/amd/display/amdgpu_dm/amdgpu_dm_helpers.c
1340
test_pattern,
sys/dev/pci/drm/amd/display/dc/core/dc.c
3320
stream->test_pattern = *update->pending_test_pattern;
sys/dev/pci/drm/amd/display/dc/core/dc.c
3685
stream->test_pattern.type,
sys/dev/pci/drm/amd/display/dc/core/dc.c
3686
stream->test_pattern.color_space,
sys/dev/pci/drm/amd/display/dc/core/dc.c
3687
stream->test_pattern.p_link_settings,
sys/dev/pci/drm/amd/display/dc/core/dc.c
3688
stream->test_pattern.p_custom_pattern,
sys/dev/pci/drm/amd/display/dc/core/dc.c
3689
stream->test_pattern.cust_pattern_size);
sys/dev/pci/drm/amd/display/dc/core/dc.c
4140
if (stream->test_pattern.type != DP_TEST_PATTERN_VIDEO_MODE) {
sys/dev/pci/drm/amd/display/dc/core/dc_link_exports.c
210
enum dp_test_pattern test_pattern,
sys/dev/pci/drm/amd/display/dc/core/dc_link_exports.c
216
return link->dc->link_srv->dp_set_test_pattern(link, test_pattern,
sys/dev/pci/drm/amd/display/dc/core/dc_resource.c
1351
enum dp_test_pattern test_pattern)
sys/dev/pci/drm/amd/display/dc/core/dc_resource.c
1355
switch (test_pattern) {
sys/dev/pci/drm/amd/display/dc/core/dc_resource.c
1422
otg_master->stream->test_pattern.type);
sys/dev/pci/drm/amd/display/dc/core/dc_resource.c
1424
otg_master->stream->test_pattern.color_space);
sys/dev/pci/drm/amd/display/dc/core/dc_resource.c
1434
params->test_pattern = controller_test_pattern;
sys/dev/pci/drm/amd/display/dc/dc.h
2312
enum dp_test_pattern test_pattern,
sys/dev/pci/drm/amd/display/dc/dc_stream.h
308
struct test_pattern test_pattern;
sys/dev/pci/drm/amd/display/dc/dc_stream.h
359
struct test_pattern *pending_test_pattern;
sys/dev/pci/drm/amd/display/dc/dce110/dce110_timing_generator.c
708
enum controller_dp_test_pattern test_pattern,
sys/dev/pci/drm/amd/display/dc/dce110/dce110_timing_generator.c
753
switch (test_pattern) {
sys/dev/pci/drm/amd/display/dc/dce110/dce110_timing_generator.c
757
dyn_range = (test_pattern ==
sys/dev/pci/drm/amd/display/dc/dce110/dce110_timing_generator.c
810
mode = (test_pattern ==
sys/dev/pci/drm/amd/display/dc/dce110/dce110_timing_generator.h
225
enum controller_dp_test_pattern test_pattern,
sys/dev/pci/drm/amd/display/dc/dce120/dce120_timing_generator.c
799
enum controller_dp_test_pattern test_pattern,
sys/dev/pci/drm/amd/display/dc/dce120/dce120_timing_generator.c
843
switch (test_pattern) {
sys/dev/pci/drm/amd/display/dc/dce120/dce120_timing_generator.c
847
dyn_range = (test_pattern ==
sys/dev/pci/drm/amd/display/dc/dce120/dce120_timing_generator.c
868
mode = (test_pattern ==
sys/dev/pci/drm/amd/display/dc/dml/dcn32/dcn32_fpu.c
1430
if (context->streams[i]->test_pattern.type != DP_TEST_PATTERN_VIDEO_MODE)
sys/dev/pci/drm/amd/display/dc/hwss/dcn20/dcn20_hwseq.c
1223
enum controller_dp_test_pattern test_pattern = CONTROLLER_DP_TEST_PATTERN_SOLID_COLOR;
sys/dev/pci/drm/amd/display/dc/hwss/dcn20/dcn20_hwseq.c
1238
test_pattern = CONTROLLER_DP_TEST_PATTERN_COLORSQUARES;
sys/dev/pci/drm/amd/display/dc/hwss/dcn20/dcn20_hwseq.c
1242
test_pattern = CONTROLLER_DP_TEST_PATTERN_VIDEOMODE;
sys/dev/pci/drm/amd/display/dc/hwss/dcn20/dcn20_hwseq.c
1251
test_pattern,
sys/dev/pci/drm/amd/display/dc/hwss/dcn20/dcn20_hwseq.c
1264
test_pattern,
sys/dev/pci/drm/amd/display/dc/hwss/dcn20/dcn20_hwseq.c
1534
if (new_pipe->stream->test_pattern.type != DP_TEST_PATTERN_VIDEO_MODE &&
sys/dev/pci/drm/amd/display/dc/hwss/dcn20/dcn20_hwseq.c
2034
pipe_ctx->stream_res.test_pattern_params.test_pattern,
sys/dev/pci/drm/amd/display/dc/hwss/dcn20/dcn20_hwseq.c
3253
enum controller_dp_test_pattern test_pattern,
sys/dev/pci/drm/amd/display/dc/hwss/dcn20/dcn20_hwseq.c
3259
pipe_ctx->stream_res.opp->funcs->opp_set_disp_pattern_generator(pipe_ctx->stream_res.opp, test_pattern,
sys/dev/pci/drm/amd/display/dc/hwss/dcn20/dcn20_hwseq.h
147
enum controller_dp_test_pattern test_pattern,
sys/dev/pci/drm/amd/display/dc/hwss/dcn30/dcn30_hwseq.c
1177
enum controller_dp_test_pattern test_pattern,
sys/dev/pci/drm/amd/display/dc/hwss/dcn30/dcn30_hwseq.c
1183
pipe_ctx->stream_res.opp->funcs->opp_set_disp_pattern_generator(pipe_ctx->stream_res.opp, test_pattern,
sys/dev/pci/drm/amd/display/dc/hwss/dcn30/dcn30_hwseq.h
87
enum controller_dp_test_pattern test_pattern,
sys/dev/pci/drm/amd/display/dc/hwss/dcn401/dcn401_hwseq.c
2093
pipe_ctx->stream_res.test_pattern_params.test_pattern,
sys/dev/pci/drm/amd/display/dc/hwss/dcn401/dcn401_hwseq.c
2509
if (new_pipe->stream->test_pattern.type != DP_TEST_PATTERN_VIDEO_MODE &&
sys/dev/pci/drm/amd/display/dc/hwss/hw_sequencer.h
423
enum controller_dp_test_pattern test_pattern,
sys/dev/pci/drm/amd/display/dc/inc/core_types.h
338
enum controller_dp_test_pattern test_pattern;
sys/dev/pci/drm/amd/display/dc/inc/hw/opp.h
339
enum controller_dp_test_pattern test_pattern,
sys/dev/pci/drm/amd/display/dc/inc/hw/timing_generator.h
283
enum controller_dp_test_pattern test_pattern,
sys/dev/pci/drm/amd/display/dc/inc/link_service.h
317
enum dp_test_pattern test_pattern,
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
193
enum dp_test_pattern test_pattern = DP_TEST_PATTERN_AUDIO_OPERATOR_DEFINED;
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
221
test_pattern = (dpcd_pattern_type.value == AUDIO_TEST_PATTERN_SAWTOOTH) ?
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
265
link->audio_test_data.pattern_type = test_pattern;
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
267
if (test_pattern == DP_TEST_PATTERN_AUDIO_SAWTOOTH) {
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
287
enum dp_test_pattern test_pattern;
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
336
test_pattern = DP_TEST_PATTERN_D102;
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
339
test_pattern = DP_TEST_PATTERN_SYMBOL_ERROR;
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
342
test_pattern = DP_TEST_PATTERN_PRBS7;
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
345
test_pattern = DP_TEST_PATTERN_80BIT_CUSTOM;
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
349
test_pattern = (link->dc->caps.force_dp_tps4_for_cp2520 == 1) ?
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
355
test_pattern = (link->dc->caps.force_dp_tps4_for_cp2520 == 1) ?
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
360
test_pattern = DP_TEST_PATTERN_TRAINING_PATTERN4;
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
363
test_pattern = DP_TEST_PATTERN_128b_132b_TPS1;
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
366
test_pattern = DP_TEST_PATTERN_128b_132b_TPS2;
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
369
test_pattern = DP_TEST_PATTERN_PRBS9;
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
372
test_pattern = DP_TEST_PATTERN_PRBS11;
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
375
test_pattern = DP_TEST_PATTERN_PRBS15;
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
378
test_pattern = DP_TEST_PATTERN_PRBS23;
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
381
test_pattern = DP_TEST_PATTERN_PRBS31;
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
384
test_pattern = DP_TEST_PATTERN_264BIT_CUSTOM;
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
387
test_pattern = DP_TEST_PATTERN_SQUARE;
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
390
test_pattern = DP_TEST_PATTERN_SQUARE_PRESHOOT_DISABLED;
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
394
test_pattern = DP_TEST_PATTERN_SQUARE_DEEMPHASIS_DISABLED;
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
398
test_pattern = DP_TEST_PATTERN_SQUARE_PRESHOOT_DEEMPHASIS_DISABLED;
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
403
test_pattern = DP_TEST_PATTERN_VIDEO_MODE;
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
407
if (test_pattern == DP_TEST_PATTERN_80BIT_CUSTOM) {
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
417
if (IS_DP_PHY_SQUARE_PATTERN(test_pattern)) {
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
426
if (test_pattern == DP_TEST_PATTERN_264BIT_CUSTOM) {
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
473
test_pattern,
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
482
enum dp_test_pattern test_pattern,
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
497
controller_test_pattern = pipe_ctx->stream_res.test_pattern_params.test_pattern;
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
499
switch (test_pattern) {
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
530
tp_params->test_pattern,
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
562
tp_params->test_pattern,
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
648
enum dp_test_pattern test_pattern,
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
679
link->pending_test_pattern = test_pattern;
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
682
if (link->test_pattern_enabled && test_pattern ==
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
685
set_crtc_test_pattern(link, pipe_ctx, test_pattern, test_pattern_color_space);
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
686
dp_set_hw_test_pattern(link, &pipe_ctx->link_res, test_pattern,
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
700
link->current_test_pattern = test_pattern;
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
707
if (IS_DP_PHY_PATTERN(test_pattern)) {
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
723
if (test_pattern != DP_TEST_PATTERN_VIDEO_MODE) {
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
732
dp_set_hw_test_pattern(link, &pipe_ctx->link_res, test_pattern,
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
736
if (test_pattern != DP_TEST_PATTERN_VIDEO_MODE) {
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
739
link->current_test_pattern = test_pattern;
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
746
switch (test_pattern) {
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
811
if (test_pattern == DP_TEST_PATTERN_VIDEO_MODE
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
816
if (IS_DP_PHY_SQUARE_PATTERN(test_pattern))
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
858
if (test_pattern == DP_TEST_PATTERN_COLOR_SQUARES_CEA)
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
864
if (test_pattern == DP_TEST_PATTERN_COLOR_SQUARES_CEA)
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
869
if (test_pattern == DP_TEST_PATTERN_COLOR_SQUARES_CEA)
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
903
if (test_pattern == DP_TEST_PATTERN_COLOR_SQUARES_CEA)
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
918
set_crtc_test_pattern(link, pipe_ctx, test_pattern, test_pattern_color_space);
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.c
946
link->current_test_pattern = test_pattern;
sys/dev/pci/drm/amd/display/dc/link/accessories/link_dp_cts.h
31
enum dp_test_pattern test_pattern,
sys/dev/pci/drm/amd/display/dc/link/protocols/link_dp_training.c
1368
enum dp_test_pattern test_pattern,
sys/dev/pci/drm/amd/display/dc/link/protocols/link_dp_training.c
1375
pattern_param.dp_phy_pattern = test_pattern;
sys/dev/pci/drm/amd/display/dc/link/protocols/link_dp_training.c
1390
enum dp_test_pattern test_pattern = DP_TEST_PATTERN_UNSUPPORTED;
sys/dev/pci/drm/amd/display/dc/link/protocols/link_dp_training.c
1394
test_pattern = DP_TEST_PATTERN_TRAINING_PATTERN1;
sys/dev/pci/drm/amd/display/dc/link/protocols/link_dp_training.c
1397
test_pattern = DP_TEST_PATTERN_TRAINING_PATTERN2;
sys/dev/pci/drm/amd/display/dc/link/protocols/link_dp_training.c
1400
test_pattern = DP_TEST_PATTERN_TRAINING_PATTERN3;
sys/dev/pci/drm/amd/display/dc/link/protocols/link_dp_training.c
1403
test_pattern = DP_TEST_PATTERN_TRAINING_PATTERN4;
sys/dev/pci/drm/amd/display/dc/link/protocols/link_dp_training.c
1406
test_pattern = DP_TEST_PATTERN_128b_132b_TPS1_TRAINING_MODE;
sys/dev/pci/drm/amd/display/dc/link/protocols/link_dp_training.c
1409
test_pattern = DP_TEST_PATTERN_128b_132b_TPS2_TRAINING_MODE;
sys/dev/pci/drm/amd/display/dc/link/protocols/link_dp_training.c
1415
dp_set_hw_test_pattern(link, link_res, test_pattern, NULL, 0);
sys/dev/pci/drm/amd/display/dc/link/protocols/link_dp_training.h
54
enum dp_test_pattern test_pattern,
sys/dev/pci/drm/amd/display/dc/opp/dcn20/dcn20_opp.c
102
switch (test_pattern) {
sys/dev/pci/drm/amd/display/dc/opp/dcn20/dcn20_opp.c
106
dyn_range = (test_pattern ==
sys/dev/pci/drm/amd/display/dc/opp/dcn20/dcn20_opp.c
137
mode = (test_pattern ==
sys/dev/pci/drm/amd/display/dc/opp/dcn20/dcn20_opp.c
44
enum controller_dp_test_pattern test_pattern,
sys/dev/pci/drm/amd/display/dc/opp/dcn20/dcn20_opp.h
148
enum controller_dp_test_pattern test_pattern,
sys/dev/pci/drm/amd/display/dc/optc/dcn10/dcn10_optc.c
1019
switch (test_pattern) {
sys/dev/pci/drm/amd/display/dc/optc/dcn10/dcn10_optc.c
1023
dyn_range = (test_pattern ==
sys/dev/pci/drm/amd/display/dc/optc/dcn10/dcn10_optc.c
1044
mode = (test_pattern ==
sys/dev/pci/drm/amd/display/dc/optc/dcn10/dcn10_optc.c
975
enum controller_dp_test_pattern test_pattern,
sys/dev/pci/drm/amd/display/include/link_service_types.h
173
#define IS_DP_PHY_SQUARE_PATTERN(test_pattern)\
sys/dev/pci/drm/amd/display/include/link_service_types.h
174
(DP_TEST_PATTERN_SQUARE_BEGIN <= test_pattern &&\
sys/dev/pci/drm/amd/display/include/link_service_types.h
175
test_pattern <= DP_TEST_PATTERN_SQUARE_END)
sys/dev/pci/drm/amd/display/include/link_service_types.h
177
#define IS_DP_PHY_PATTERN(test_pattern)\
sys/dev/pci/drm/amd/display/include/link_service_types.h
178
((DP_TEST_PATTERN_PHY_PATTERN_BEGIN <= test_pattern &&\
sys/dev/pci/drm/amd/display/include/link_service_types.h
179
test_pattern <= DP_TEST_PATTERN_PHY_PATTERN_END) ||\
sys/dev/pci/drm/amd/display/include/link_service_types.h
180
test_pattern == DP_TEST_PATTERN_VIDEO_MODE)
sys/dev/pci/drm/display/drm_dp_helper.c
3123
u8 test_pattern;
sys/dev/pci/drm/display/drm_dp_helper.c
3125
test_pattern = data->phy_pattern;
sys/dev/pci/drm/display/drm_dp_helper.c
3127
test_pattern = (test_pattern << 2) &
sys/dev/pci/drm/display/drm_dp_helper.c
3130
test_pattern);
sys/dev/pci/drm/display/drm_dp_helper.c
3137
test_pattern);
sys/dev/pci/drm/i915/display/intel_dp_test.c
116
u8 test_pattern;
sys/dev/pci/drm/i915/display/intel_dp_test.c
123
&test_pattern);
sys/dev/pci/drm/i915/display/intel_dp_test.c
128
if (test_pattern != DP_COLOR_RAMP)
sys/dev/pci/drm/i915/display/intel_dp_test.c
166
intel_dp->compliance.test_data.video_pattern = test_pattern;