Home | History | Annotate | Download | only in drm

Lines Matching defs:source

51  * it reached a given hardware component (a CRC sampling "source").
55 * Accepted values are source names (which are driver-specific) and the "auto"
56 * keyword, which will let the driver select a default source of frame CRCs
63 * of CRC fields is source-specific.
105 if (strcmp(sources[i], crtc->crc.source))
114 seq_printf(m, "%s*\n", crtc->crc.source);
131 char *source;
144 source = memdup_user_nul(ubuf, len);
145 if (IS_ERR(source))
146 return PTR_ERR(source);
148 if (source[len - 1] == '\n')
149 source[len - 1] = '\0';
151 ret = crtc->funcs->verify_crc_source(crtc, source, &values_cnt);
159 kfree(source);
163 kfree(crc->source);
164 crc->source = source;
219 ret = crtc->funcs->verify_crc_source(crtc, crc->source, &values_cnt);
248 ret = crtc->funcs->set_crc_source(crtc, crc->source);
298 if (!crc->source) {
356 if (crc->source && crtc_crc_data_count(crc))
393 * For each frame, the driver polls the source of CRCs for new data and calls