Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/drivers/nouveau/nvc0/
Dnvc0_miptree.c42 uint32_t tile_flags; in nvc0_mt_choose_storage_type() local
52 tile_flags = 0x02 + ms; in nvc0_mt_choose_storage_type()
54 tile_flags = 0x01; in nvc0_mt_choose_storage_type()
60 tile_flags = 0x51 + ms; in nvc0_mt_choose_storage_type()
62 tile_flags = 0x46; in nvc0_mt_choose_storage_type()
68 tile_flags = 0x17 + ms; in nvc0_mt_choose_storage_type()
70 tile_flags = 0x11; in nvc0_mt_choose_storage_type()
74 tile_flags = 0x86 + ms; in nvc0_mt_choose_storage_type()
76 tile_flags = 0x7b; in nvc0_mt_choose_storage_type()
81 tile_flags = 0xce + ms; in nvc0_mt_choose_storage_type()
[all …]
/external/mesa3d/src/gallium/drivers/nouveau/nv50/
Dnv50_miptree.c71 uint32_t tile_flags; in nv50_mt_choose_storage_type() local
80 tile_flags = 0x6c + ms; in nv50_mt_choose_storage_type()
85 tile_flags = 0x18 + ms; in nv50_mt_choose_storage_type()
90 tile_flags = 0x128 + ms; in nv50_mt_choose_storage_type()
93 tile_flags = 0x40 + ms; in nv50_mt_choose_storage_type()
97 tile_flags = 0x60 + ms; in nv50_mt_choose_storage_type()
119 tile_flags = 0x74; in nv50_mt_choose_storage_type()
123 case 2: tile_flags = 0xfc; break; in nv50_mt_choose_storage_type()
124 case 3: tile_flags = 0xfd; break; in nv50_mt_choose_storage_type()
126 tile_flags = 0x70; in nv50_mt_choose_storage_type()
[all …]
/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/libdrm/nouveau/
Dabi16.c291 if (!(info->tile_flags & NOUVEAU_GEM_TILE_NONCONTIG)) in abi16_bo_info()
297 bo->config.nvc0.memtype = (info->tile_flags & 0xff00) >> 8; in abi16_bo_info()
301 bo->config.nv50.memtype = (info->tile_flags & 0x07f00) >> 8 | in abi16_bo_info()
302 (info->tile_flags & 0x30000) >> 9; in abi16_bo_info()
305 bo->config.nv04.surf_flags = info->tile_flags & 7; in abi16_bo_info()
335 info->tile_flags = NOUVEAU_GEM_TILE_NONCONTIG; in abi16_bo_init()
342 info->tile_flags = (config->nvc0.memtype & 0xff) << 8; in abi16_bo_init()
346 info->tile_flags = (config->nv50.memtype & 0x07f) << 8 | in abi16_bo_init()
350 info->tile_flags = config->nv04.surf_flags & 7; in abi16_bo_init()
356 info->tile_flags &= 0x0000ff00; in abi16_bo_init()
/external/libdrm/include/drm/
Dnouveau_drm.h122 uint32_t tile_flags; member
128 uint32_t tile_flags; member
255 uint32_t tile_flags; member
/external/kernel-headers/original/uapi/drm/
Dnouveau_drm.h56 __u32 tile_flags; member
/external/libdrm/libkms/
Dnouveau.c114 arg.info.tile_flags = 0; in nouveau_bo_create()