1 /* SPDX-License-Identifier: GPL-2.0 */ 2 3 #ifndef DRM_KUNIT_EDID_H_ 4 #define DRM_KUNIT_EDID_H_ 5 6 extern const unsigned char test_edid_dvi_1080p[128]; 7 extern const unsigned char test_edid_hdmi_1080p_rgb_max_100mhz[256]; 8 extern const unsigned char test_edid_hdmi_1080p_rgb_max_200mhz[256]; 9 extern const unsigned char test_edid_hdmi_1080p_rgb_max_200mhz_hdr[256]; 10 extern const unsigned char test_edid_hdmi_1080p_rgb_max_340mhz[256]; 11 extern const unsigned char test_edid_hdmi_1080p_rgb_yuv_dc_max_200mhz[256]; 12 extern const unsigned char test_edid_hdmi_1080p_rgb_yuv_dc_max_340mhz[256]; 13 extern const unsigned char test_edid_hdmi_1080p_rgb_yuv_4k_yuv420_dc_max_200mhz[256]; 14 extern const unsigned char test_edid_hdmi_4k_rgb_yuv420_dc_max_340mhz[256]; 15 16 #endif // DRM_KUNIT_EDID_H_ 17