Home | History | Annotate | Download | only in modetest

Lines Matching full:crtc

71 struct crtc {
72 drmModeCrtc *crtc;
103 struct crtc *crtcs;
369 struct crtc *_crtc = &dev->resources->crtcs[i];
370 drmModeCrtc *crtc = _crtc->crtc;
371 if (!crtc)
375 crtc->crtc_id,
376 crtc->buffer_id,
377 crtc->x, crtc->y,
378 crtc->width, crtc->height);
379 dump_mode(&crtc->mode);
486 free_properties(res, res, crtc);
488 free_resource(res, res, crtc, Crtc);
550 get_resource(res, res, crtc, Crtc);
590 get_properties(res, res, crtc, CRTC);
594 res->crtcs[i].mode = &res->crtcs[i].crtc->mode;
622 drmModeCrtc *crtc = dev->resources->crtcs[i].crtc;
623 if (crtc && crtc->crtc_id == id)
682 * can bind it with a free crtc.
694 struct crtc *crtc;
702 uint32_t crtc_id; /* the id of CRTC to bind to */
742 static struct crtc *pipe_find_crtc(struct device *dev, struct pipe_arg *pipe)
778 /* Return the first possible and active CRTC if one exists, or the first
779 * possible CRTC otherwise.
807 /* If the CRTC ID was specified, get the corresponding CRTC. Otherwise
808 * locate a CRTC that can be attached to all the connectors.
812 struct crtc *crtc = &dev->resources->crtcs[i];
814 if (pipe->crtc_id == crtc->crtc->crtc_id) {
815 pipe->crtc = crtc;
820 pipe->crtc = pipe_find_crtc(dev, pipe);
823 if (!pipe->crtc) {
824 fprintf(stderr, "failed to find CRTC for pipe\n");
829 pipe->crtc->mode = mode;
870 find_object(dev->resources, res, crtc, CRTC);
926 drmModePageFlip(fd, pipe->crtc->crtc->crtc_id, new_fb_id,
960 struct crtc *crtc = NULL;
964 /* Find an unused plane which can be connected to our CRTC. Find the
965 * CRTC index first, then iterate over available planes.
969 crtc = &dev->resources->crtcs[i];
975 if (!crtc) {
976 fprintf(stderr, "CRTC %u not found\n", p->crtc_id);
990 fprintf(stderr, "no unused plane available for CRTC %u\n",
991 crtc->crtc->crtc_id);
1016 crtc_x = (crtc->mode->hdisplay - crtc_w) / 2;
1017 crtc_y = (crtc->mode->vdisplay - crtc_h) / 2;
1024 if (drmModeSetPlane(dev->fd, plane_id, crtc->crtc->crtc_id, p->fb_id,
1032 ovr->crtc_id = crtc->crtc->crtc_id;
1104 printf("crtc %d\n", pipe->crtc->crtc->crtc_id);
1106 ret = drmModeSetCrtc(dev->fd, pipe->crtc->crtc->crtc_id, fb_id,
1164 pipe->crtc->crtc->crtc_id,
1168 fprintf(stderr, "failed to init cursor for CRTC[%u]\n",
1214 ret = drmModePageFlip(dev->fd, pipe->crtc->crtc->crtc_id,