Home
last modified time | relevance | path

Searched refs:tile_flags (Results 1 – 5 of 5) sorted by relevance

/linux/drivers/gpu/drm/radeon/
H A Dr200.c156 u32 tile_flags = 0; in r200_packet0_check() local
222 tile_flags |= R200_TXO_MACRO_TILE; in r200_packet0_check()
224 tile_flags |= R200_TXO_MICRO_TILE; in r200_packet0_check()
227 tmp |= tile_flags; in r200_packet0_check()
294 tile_flags |= RADEON_COLOR_TILE_ENABLE; in r200_packet0_check()
296 tile_flags |= RADEON_COLOR_MICROTILE_ENABLE; in r200_packet0_check()
299 tmp |= tile_flags; in r200_packet0_check()
/linux/drivers/gpu/drm/nouveau/
H A Dnouveau_gem.c236 uint32_t tile_mode, uint32_t tile_flags, in nouveau_gem_new() argument
256 tile_flags, false); in nouveau_gem_new()
330 rep->tile_flags = nvbo->contig ? 0 : NOUVEAU_GEM_TILE_NONCONTIG; in nouveau_gem_info()
332 rep->tile_flags |= nvbo->kind << 8; in nouveau_gem_info()
335 rep->tile_flags |= nvbo->kind << 8 | nvbo->comp << 16; in nouveau_gem_info()
337 rep->tile_flags |= nvbo->zeta; in nouveau_gem_info()
357 req->info.tile_flags, &nvbo); in nouveau_gem_ioctl_new()
H A Dnouveau_gem.h19 uint32_t tile_flags, struct nouveau_bo **);
H A Dnouveau_bo.c209 u32 tile_mode, u32 tile_flags, bool internal) in nouveau_bo_alloc() argument
243 nvbo->contig = !(tile_flags & NOUVEAU_GEM_TILE_NONCONTIG); in nouveau_bo_alloc()
246 nvbo->kind = (tile_flags & 0x0000ff00) >> 8; in nouveau_bo_alloc()
254 nvbo->kind = (tile_flags & 0x00007f00) >> 8; in nouveau_bo_alloc()
255 nvbo->comp = (tile_flags & 0x00030000) >> 16; in nouveau_bo_alloc()
261 nvbo->zeta = (tile_flags & 0x00000007); in nouveau_bo_alloc()
372 uint32_t domain, uint32_t tile_mode, uint32_t tile_flags, in nouveau_bo_new() argument
380 tile_flags, true); in nouveau_bo_new()
/linux/include/uapi/drm/
H A Dnouveau_drm.h149 __u32 tile_flags; member