Home | History | Annotate | Download | only in drm

Lines Matching defs:tile

5705 	const struct displayid_tiled_block *tile = (const struct displayid_tiled_block *)block;
5711 w = tile->tile_size[0] | tile->tile_size[1] << 8;
5712 h = tile->tile_size[2] | tile->tile_size[3] << 8;
5714 num_v_tile = (tile->topo[0] & 0xf) | (tile->topo[2] & 0x30);
5715 num_h_tile = (tile->topo[0] >> 4) | ((tile->topo[2] >> 2) & 0x30);
5716 tile_v_loc = (tile->topo[1] & 0xf) | ((tile->topo[2] & 0x3) << 4);
5717 tile_h_loc = (tile->topo[1] >> 4) | (((tile->topo[2] >> 2) & 0x3) << 4);
5720 if (tile->tile_cap & 0x80)
5730 DRM_DEBUG_KMS("tile cap 0x%x\n", tile->tile_cap);
5734 DRM_DEBUG_KMS("vend %c%c%c\n", tile->topology_id[0], tile->topology_id[1], tile->topology_id[2]);
5736 tg = drm_mode_get_tile_group(connector->dev, tile->topology_id);
5738 tg = drm_mode_create_tile_group(connector->dev, tile->topology_id);
5745 take the reference, drop ref to old tile group */
5751 /* if same tile group, then release the ref we just took. */
5805 /* drop reference to any tile group we had */