Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/drivers/nvc0/
Dnvc0_miptree.c64 uint32_t tile_flags; in nvc0_mt_choose_storage_type() local
76 tile_flags = 0x02 + ms; in nvc0_mt_choose_storage_type()
78 tile_flags = 0x01; in nvc0_mt_choose_storage_type()
82 tile_flags = 0x51 + ms; in nvc0_mt_choose_storage_type()
84 tile_flags = 0x46; in nvc0_mt_choose_storage_type()
89 tile_flags = 0x17 + ms; in nvc0_mt_choose_storage_type()
91 tile_flags = 0x11; in nvc0_mt_choose_storage_type()
95 tile_flags = 0x86 + ms; in nvc0_mt_choose_storage_type()
97 tile_flags = 0x7b; in nvc0_mt_choose_storage_type()
101 tile_flags = 0xce + ms; in nvc0_mt_choose_storage_type()
[all …]
/external/mesa3d/src/gallium/drivers/nv50/
Dnv50_miptree.c42 uint32_t tile_flags; in nv50_mt_choose_storage_type() local
51 tile_flags = 0x6c + ms; in nv50_mt_choose_storage_type()
54 tile_flags = 0x18 + ms; in nv50_mt_choose_storage_type()
58 tile_flags = 0x128 + ms; in nv50_mt_choose_storage_type()
61 tile_flags = 0x40 + ms; in nv50_mt_choose_storage_type()
64 tile_flags = 0x60 + ms; in nv50_mt_choose_storage_type()
70 tile_flags = 0x74; in nv50_mt_choose_storage_type()
74 case 2: tile_flags = 0xfc; break; in nv50_mt_choose_storage_type()
75 case 3: tile_flags = 0xfd; break; in nv50_mt_choose_storage_type()
77 tile_flags = 0x70; in nv50_mt_choose_storage_type()
[all …]
/external/libdrm/nouveau/
Dabi16.c159 if (!(info->tile_flags & NOUVEAU_GEM_TILE_NONCONTIG)) in abi16_bo_info()
165 bo->config.nvc0.memtype = (info->tile_flags & 0xff00) >> 8; in abi16_bo_info()
169 bo->config.nv50.memtype = (info->tile_flags & 0x07f00) >> 8 | in abi16_bo_info()
170 (info->tile_flags & 0x30000) >> 9; in abi16_bo_info()
173 bo->config.nv04.surf_flags = info->tile_flags & 7; in abi16_bo_info()
199 info->tile_flags = NOUVEAU_GEM_TILE_NONCONTIG; in abi16_bo_init()
206 info->tile_flags = (config->nvc0.memtype & 0xff) << 8; in abi16_bo_init()
210 info->tile_flags = (config->nv50.memtype & 0x07f) << 8 | in abi16_bo_init()
214 info->tile_flags = config->nv04.surf_flags & 7; in abi16_bo_init()
220 info->tile_flags &= 0x0000ff00; in abi16_bo_init()
/external/drm_gralloc/
Dgralloc_drm_nouveau.c71 int flags, tile_mode, tile_flags; in alloc_bo() local
77 tile_flags = 0; in alloc_bo()
112 tile_flags = 0xfe00; in alloc_bo()
129 tile_flags = (scanout && cpp != 2) ? 0x7a00 : 0x7000; in alloc_bo()
157 tile_flags |= NOUVEAU_BO_TILE_32BPP; in alloc_bo()
159 tile_flags |= NOUVEAU_BO_TILE_16BPP; in alloc_bo()
162 tile_flags |= NOUVEAU_BO_TILE_SCANOUT; in alloc_bo()
165 tile_mode, tile_flags, &bo)) { in alloc_bo()
167 flags, *pitch * height, tile_mode, tile_flags); in alloc_bo()
/external/kernel-headers/original/uapi/drm/
Dnouveau_drm.h57 uint32_t tile_flags; member
/external/libdrm/include/drm/
Dnouveau_drm.h113 uint32_t tile_flags; member
/external/libdrm/libkms/
Dnouveau.c114 arg.info.tile_flags = 0; in nouveau_bo_create()