Searched defs:raw_edid (Results 1 - 4 of 4) sorted by relevance

/drivers/gpu/drm/exynos/
H A Dexynos_drm_vidi.c52 struct edid *raw_edid; member in struct:vidi_context
107 struct edid *raw_edid; local
113 * to ctx->raw_edid through specific ioctl.
115 if (!ctx->raw_edid) {
116 DRM_DEBUG_KMS("raw_edid is null.\n");
120 raw_edid = kzalloc(len, GFP_KERNEL);
121 if (!raw_edid) {
122 DRM_DEBUG_KMS("failed to allocate raw_edid.\n");
126 memcpy(raw_edid, ctx->raw_edid, mi
[all...]
H A Dexynos_hdmi.c1208 struct edid *raw_edid; local
1216 raw_edid = drm_get_edid(connector, hdata->ddc_port->adapter);
1217 if (raw_edid) {
1218 memcpy(edid, raw_edid, min((1 + raw_edid->extensions)
1221 raw_edid->width_cm, raw_edid->height_cm);
/drivers/gpu/drm/gma500/
H A Doaktrail_hdmi.c226 static const unsigned char raw_edid[] = { variable
252 edid = (struct edid *)raw_edid;
254 edid = (struct edid *)raw_edid;
261 connector->display_info.raw_edid = NULL;
/drivers/gpu/drm/
H A Ddrm_edid.c135 int drm_edid_header_is_valid(const u8 *raw_edid) argument
140 if (raw_edid[i] == edid_header[i])
152 bool drm_edid_block_valid(u8 *raw_edid) argument
156 struct edid *edid = (struct edid *)raw_edid;
158 if (raw_edid[0] == 0x00) {
159 int score = drm_edid_header_is_valid(raw_edid);
163 memcpy(raw_edid, edid_header, sizeof(edid_header));
170 csum += raw_edid[i];
175 if (raw_edid[0] != 0x02)
180 switch (raw_edid[
281 u32 *raw_edid = (u32 *)in_edid; local
537 drm_for_each_detailed_block(u8 *raw_edid, detailed_cb *cb, void *closure) argument
[all...]

Completed in 70 milliseconds