Searched refs:tile_flags (Results 1 – 8 of 8) sorted by relevance
/linux/drivers/gpu/drm/radeon/ |
H A D | r200.c | 156 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()
|
H A D | r300.c | 633 uint32_t tmp, tile_flags = 0; in r300_packet0_check() local 719 tile_flags |= R300_TXO_MACRO_TILE; in r300_packet0_check() 721 tile_flags |= R300_TXO_MICRO_TILE; in r300_packet0_check() 723 tile_flags |= R300_TXO_MICRO_TILE_SQUARE; in r300_packet0_check() 726 tmp |= tile_flags; in r300_packet0_check() 788 tile_flags |= R300_COLOR_TILE_ENABLE; in r300_packet0_check() 790 tile_flags |= R300_COLOR_MICROTILE_ENABLE; in r300_packet0_check() 792 tile_flags |= R300_COLOR_MICROTILE_SQUARE_ENABLE; in r300_packet0_check() 795 tmp |= tile_flags; in r300_packet0_check() 873 tile_flags |= R300_DEPTHMACROTILE_ENABLE; in r300_packet0_check() [all …]
|
H A D | r100.c | 1294 u32 tile_flags = 0; in r100_reloc_pitch_offset() local 1313 tile_flags |= RADEON_DST_TILE_MACRO; in r100_reloc_pitch_offset() 1320 tile_flags |= RADEON_DST_TILE_MICRO; in r100_reloc_pitch_offset() 1323 tmp |= tile_flags; in r100_reloc_pitch_offset() 1590 u32 tile_flags = 0; in r100_packet0_check() local 1655 tile_flags |= RADEON_TXO_MACRO_TILE; in r100_packet0_check() 1657 tile_flags |= RADEON_TXO_MICRO_TILE_X2; in r100_packet0_check() 1660 tmp |= tile_flags; in r100_packet0_check() 1736 tile_flags |= RADEON_COLOR_TILE_ENABLE; in r100_packet0_check() 1738 tile_flags |= RADEON_COLOR_MICROTILE_ENABLE; in r100_packet0_check() [all …]
|
/linux/drivers/gpu/drm/nouveau/ |
H A D | nouveau_bo.h | 66 u32 domain, u32 tile_mode, u32 tile_flags, bool internal); 70 u32 tile_mode, u32 tile_flags, struct sg_table *sg,
|
H A D | nouveau_gem.h | 19 uint32_t tile_flags, struct nouveau_bo **);
|
H A D | nouveau_gem.c | 236 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 D | nouveau_bo.c | 209 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 D | nouveau_drm.h | 149 __u32 tile_flags; member
|