Searched refs:tile_flags (Results 1 – 8 of 8) sorted by relevance
/linux-6.1.9/drivers/gpu/drm/radeon/ |
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()
|
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 …]
|
D | r100.c | 1273 u32 tile_flags = 0; in r100_reloc_pitch_offset() local 1292 tile_flags |= RADEON_DST_TILE_MACRO; in r100_reloc_pitch_offset() 1299 tile_flags |= RADEON_DST_TILE_MICRO; in r100_reloc_pitch_offset() 1302 tmp |= tile_flags; in r100_reloc_pitch_offset() 1569 u32 tile_flags = 0; in r100_packet0_check() local 1634 tile_flags |= RADEON_TXO_MACRO_TILE; in r100_packet0_check() 1636 tile_flags |= RADEON_TXO_MICRO_TILE_X2; in r100_packet0_check() 1639 tmp |= tile_flags; in r100_packet0_check() 1715 tile_flags |= RADEON_COLOR_TILE_ENABLE; in r100_packet0_check() 1717 tile_flags |= RADEON_COLOR_MICROTILE_ENABLE; in r100_packet0_check() [all …]
|
/linux-6.1.9/drivers/gpu/drm/nouveau/ |
D | nouveau_gem.h | 19 uint32_t tile_flags, struct nouveau_bo **);
|
D | nouveau_bo.h | 75 u32 domain, u32 tile_mode, u32 tile_flags); 79 u32 tile_mode, u32 tile_flags, struct sg_table *sg,
|
D | nouveau_gem.c | 223 uint32_t tile_mode, uint32_t tile_flags, in nouveau_gem_new() argument 234 tile_flags); in nouveau_gem_new() 293 rep->tile_flags = nvbo->contig ? 0 : NOUVEAU_GEM_TILE_NONCONTIG; in nouveau_gem_info() 295 rep->tile_flags |= nvbo->kind << 8; in nouveau_gem_info() 298 rep->tile_flags |= nvbo->kind << 8 | nvbo->comp << 16; in nouveau_gem_info() 300 rep->tile_flags |= nvbo->zeta; in nouveau_gem_info() 315 req->info.tile_flags, &nvbo); in nouveau_gem_ioctl_new()
|
D | nouveau_bo.c | 201 u32 tile_mode, u32 tile_flags) in nouveau_bo_alloc() argument 235 nvbo->kind = (tile_flags & 0x0000ff00) >> 8; in nouveau_bo_alloc() 244 nvbo->kind = (tile_flags & 0x00007f00) >> 8; in nouveau_bo_alloc() 245 nvbo->comp = (tile_flags & 0x00030000) >> 16; in nouveau_bo_alloc() 251 nvbo->zeta = (tile_flags & 0x00000007); in nouveau_bo_alloc() 254 nvbo->contig = !(tile_flags & NOUVEAU_GEM_TILE_NONCONTIG); in nouveau_bo_alloc() 325 uint32_t domain, uint32_t tile_mode, uint32_t tile_flags, in nouveau_bo_new() argument 333 tile_flags); in nouveau_bo_new()
|
/linux-6.1.9/include/uapi/drm/ |
D | nouveau_drm.h | 56 __u32 tile_flags; member
|