/third_party/mesa3d/src/gallium/drivers/nouveau/ |
H A D | nouveau_compiler.c | 38 nv30_fp(int chipset, struct tgsi_token tokens[], in nv30_fp() argument 44 _nvfx_fragprog_translate(chipset >= 0x40 ? 0x4097 : 0x3097, &fp); in nv30_fp() 51 nv30_vp(int chipset, struct tgsi_token tokens[], in nv30_vp() argument 58 _nvfx_vertprog_translate(chipset >= 0x40 ? 0x4097 : 0x3097, &vp); in nv30_vp() 65 nv30_codegen(int chipset, int type, struct tgsi_token tokens[], in nv30_codegen() argument 69 return nv30_fp(chipset, tokens, size, code); in nv30_codegen() 71 return nv30_vp(chipset, tokens, size, code); in nv30_codegen() 105 nouveau_codegen(int chipset, int type, struct tgsi_token tokens[], in nouveau_codegen() argument 112 info.target = chipset; in nouveau_codegen() 143 int i, chipset in main() local [all...] |
H A D | nouveau_vp3_video.c | 281 unsigned chipset) in nouveau_vp3_load_firmware() 288 if (chipset >= 0xa3 && chipset != 0xaa && chipset != 0xac) in nouveau_vp3_load_firmware() 369 int chipset = screen->device->chipset; in firmware_present() local 370 int vp3 = chipset < 0xa3 || chipset == 0xaa || chipset == 0xac; in firmware_present() 371 int vp5 = chipset > in firmware_present() 279 nouveau_vp3_load_firmware(struct nouveau_vp3_decoder *dec, enum pipe_video_profile profile, unsigned chipset) nouveau_vp3_load_firmware() argument 439 const int chipset = nouveau_screen(pscreen)->device->chipset; nouveau_vp3_screen_get_video_param() local [all...] |
H A D | nouveau_screen.c | 225 if (dev->chipset < 0xc0) { in nouveau_screen_init() 236 if (dev->chipset > 0x130 && screen->force_enable_cl && enable_svm) { in nouveau_screen_init() 274 switch (dev->chipset) { in nouveau_screen_init() 317 snprintf(screen->chipset_name, sizeof(screen->chipset_name), "NV%02X", dev->chipset); in nouveau_screen_init()
|
H A D | nouveau_video.c | 509 bool is8274 = screen->device->chipset > 0x80; in nouveau_create_decoder() 518 if (screen->device->chipset >= 0x98 && screen->device->chipset != 0xa0) in nouveau_create_decoder() 520 if (screen->device->chipset < 0x40) in nouveau_create_decoder() 781 (screen->device->chipset >= 0x98 && screen->device->chipset != 0xa0) || in nouveau_video_buffer_create() 782 screen->device->chipset < 0x40) in nouveau_video_buffer_create()
|
/third_party/libdrm/nouveau/ |
H A D | abi16.c | 196 if (dev->chipset >= 0x98 && in abi16_sclass() 197 dev->chipset != 0xa0 && in abi16_sclass() 198 dev->chipset < 0xc0) { in abi16_sclass() 247 if (dev->chipset < 0xc0) in abi16_object() 250 if (dev->chipset < 0xe0) in abi16_object() 292 if (bo->device->chipset >= 0xc0) { in abi16_bo_info() 296 if (bo->device->chipset >= 0x80 || bo->device->chipset == 0x50) { in abi16_bo_info() 337 if (dev->chipset >= 0xc0) { in abi16_bo_init() 341 if (dev->chipset > in abi16_bo_init() [all...] |
/third_party/mesa3d/src/nouveau/codegen/ |
H A D | nv50_ir_target.cpp | 147 extern Target *getTargetGV100(unsigned int chipset); 148 extern Target *getTargetGM107(unsigned int chipset); 149 extern Target *getTargetNVC0(unsigned int chipset); 150 extern Target *getTargetNV50(unsigned int chipset); 152 Target *Target::create(unsigned int chipset) in create() argument 156 switch (chipset & ~0xf) { in create() 160 return getTargetGV100(chipset); in create() 164 return getTargetGM107(chipset); in create() 170 return getTargetNVC0(chipset); in create() 175 return getTargetNV50(chipset); in create() 510 nv50_ir_get_target_library(uint32_t chipset, const uint32_t **code, uint32_t *size) nv50_ir_get_target_library() argument [all...] |
H A D | nv50_ir_target_nvc0.cpp | 27 Target *getTargetNVC0(unsigned int chipset) in getTargetNVC0() argument 29 return new TargetNVC0(chipset); in getTargetNVC0() 35 chipset = card; in TargetNVC0() 50 switch (chipset & ~0xf) { in getBuiltinCode() 52 if (chipset < NVISA_GK20A_CHIPSET) { in getBuiltinCode() 75 switch (chipset & ~0xf) { in getBuiltinOffset() 77 if (chipset < NVISA_GK20A_CHIPSET) in getBuiltinOffset() 259 if (chipset >= NVISA_GM107_CHIPSET) 261 else if (chipset >= NVISA_GK104_CHIPSET) 268 const unsigned int gprs = (chipset > [all...] |
H A D | nv50_ir_target_nv50.cpp | 27 Target *getTargetNV50(unsigned int chipset) in getTargetNV50() argument 29 return new TargetNV50(chipset); in getTargetNV50() 34 chipset = card; in TargetNV50() 197 if (chipset >= 0xa0) in initOpInfo() 434 if (ty == TYPE_F64 && chipset < 0xa0) in isOpSupported() 439 return chipset >= 0xa0; in isOpSupported() 441 return chipset >= 0xa3 && chipset != 0xaa && chipset != 0xac; in isOpSupported()
|
H A D | nv50_ir_target_gm107.h | 8 TargetGM107(unsigned int chipset) : TargetNVC0(chipset) {} in TargetGM107() argument
|
H A D | nv50_ir_from_nir.cpp | 3303 nvir_nir_shader_compiler_options(int chipset, uint8_t shader_type) 3306 op.lower_fdiv = (chipset >= NVISA_GV100_CHIPSET); 3313 op.lower_flrp16 = (chipset >= NVISA_GV100_CHIPSET); 3322 op.lower_bitfield_extract_to_shifts = (chipset >= NVISA_GV100_CHIPSET || chipset < NVISA_GF100_CHIPSET); 3324 op.lower_bitfield_insert_to_shifts = (chipset >= NVISA_GV100_CHIPSET || chipset < NVISA_GF100_CHIPSET); 3326 op.lower_bitfield_reverse = (chipset < NVISA_GF100_CHIPSET); 3327 op.lower_bit_count = (chipset < NVISA_GF100_CHIPSET); 3328 op.lower_ifind_msb = (chipset < NVISA_GF100_CHIPSE [all...] |
H A D | nv50_ir_target_gm107.cpp | 29 Target *getTargetGM107(unsigned int chipset) in getTargetGM107() argument 31 return new TargetGM107(chipset); in getTargetGM107() 66 return chipset >= NVISA_GM200_CHIPSET;
|
H A D | nv50_ir_target.h | 164 static Target *create(uint32_t chipset); 169 inline uint32_t getChipset() const { return chipset; } in getChipset() 263 uint32_t chipset; member in nv50_ir::Target
|
H A D | nv50_ir_target_gv100.h | 30 TargetGV100(unsigned int chipset);
|
H A D | nv50_ir_driver.h | 86 uint16_t target; /* chipset (0x50, 0x84, 0xc0, ...) */ 138 uint16_t target; /* chipset (0x50, 0x84, 0xc0, ...) */ 223 nv50_ir_nir_shader_compiler_options(int chipset, uint8_t shader_type); 239 extern void nv50_ir_get_target_library(uint32_t chipset,
|
H A D | nv50_ir_target_nv50.h | 37 TargetNV50(unsigned int chipset);
|
H A D | nv50_ir_target_nvc0.h | 39 TargetNVC0(unsigned int chipset);
|
/third_party/mesa3d/src/gallium/drivers/i915/ |
H A D | i915_screen.c | 66 const char *chipset; in i915_get_name() local 70 chipset = "915G"; in i915_get_name() 73 chipset = "915GM"; in i915_get_name() 76 chipset = "945G"; in i915_get_name() 79 chipset = "945GM"; in i915_get_name() 82 chipset = "945GME"; in i915_get_name() 85 chipset = "G33"; in i915_get_name() 88 chipset = "Q35"; in i915_get_name() 91 chipset = "Q33"; in i915_get_name() 94 chipset in i915_get_name() [all...] |
/third_party/mesa3d/src/gallium/drivers/nouveau/nv30/ |
H A D | nv30_screen.c | 592 switch (dev->chipset & 0xf0) { in nv30_screen_create() 594 if (RANKINE_0397_CHIPSET & (1 << (dev->chipset & 0x0f))) in nv30_screen_create() 597 if (RANKINE_0697_CHIPSET & (1 << (dev->chipset & 0x0f))) in nv30_screen_create() 600 if (RANKINE_0497_CHIPSET & (1 << (dev->chipset & 0x0f))) in nv30_screen_create() 604 if (CURIE_4097_CHIPSET & (1 << (dev->chipset & 0x0f))) in nv30_screen_create() 607 if (CURIE_4497_CHIPSET & (1 << (dev->chipset & 0x0f))) in nv30_screen_create() 611 if (CURIE_4497_CHIPSET6X & (1 << (dev->chipset & 0x0f))) in nv30_screen_create() 619 NOUVEAU_ERR("unknown 3d class for 0x%02x\n", dev->chipset); in nv30_screen_create() 831 if (dev->chipset < 0x40) in nv30_screen_create() 846 if (dev->chipset < in nv30_screen_create() [all...] |
/third_party/mesa3d/src/gallium/drivers/nouveau/nvc0/ |
H A D | nvc0_query_hw_metric.c | 413 if (dev->chipset == 0xc0 || dev->chipset == 0xc8) in nvc0_hw_metric_get_queries() 437 if (dev->chipset == 0xc0 || dev->chipset == 0xc8) in nvc0_hw_metric_get_num_queries() 698 if (dev->chipset == 0xc0 || dev->chipset == 0xc8) in nvc0_hw_metric_get_query_result()
|
H A D | nvc0_screen.c | 85 nouveau_screen(pscreen)->device->chipset != 0x12b && in nvc0_screen_is_format_supported() 892 switch (screen->base.device->chipset & ~0xf) { in nvc0_screen_init_compute() 923 size *= (screen->base.device->chipset >= 0xe0) ? 64 : 48; /* max warps */ in nvc0_screen_resize_tls_area() 1030 return nv50_ir_nir_shader_compiler_options(screen->base.device->chipset, in nvc0_screen_get_compiler_options() 1054 switch (dev->chipset & ~0xf) { in nvc0_screen_create() 1088 if (dev->chipset >= 0xe0) in nvc0_screen_create() 1131 if (dev->chipset < 0x140) { in nvc0_screen_create() 1132 ret = nouveau_object_new(chan, (dev->chipset < 0xe0) ? 0x1f906e : 0x906e, in nvc0_screen_create() 1141 switch (dev->chipset & ~0xf) { in nvc0_screen_create() 1196 switch (dev->chipset in nvc0_screen_create() [all...] |
/third_party/mesa3d/src/intel/perf/ |
H A D | gen_perf.py | 618 self.read_sym = "{0}__{1}__{2}__read".format(self.set.gen.chipset, 681 return "{0}__{1}__{2}__max".format(self.set.gen.chipset, 736 self.chipset = self.xml.find('.//set').get('chipset').lower() 939 c("{0}_register_{1}_counter_query(struct intel_perf_config *perf)\n".format(gen.chipset, set.underscore_name)) 943 if gen.chipset == "hsw": 980 h("void intel_oa_register_queries_" + gen.chipset + "(struct intel_perf_config *perf);\n") 983 c("intel_oa_register_queries_" + gen.chipset + "(struct intel_perf_config *perf)") 988 c("{0}_register_{1}_counter_query(perf);".format(gen.chipset, set.underscore_name))
|
/third_party/mesa3d/src/gallium/winsys/nouveau/drm/ |
H A D | nouveau_drm_winsys.c | 88 switch (dev->chipset & ~0xf) { in nouveau_drm_screen_create() 113 debug_printf("%s: unknown chipset nv%02x\n", __func__, in nouveau_drm_screen_create() 114 dev->chipset); in nouveau_drm_screen_create()
|
/third_party/libdrm/nouveau/nvif/ |
H A D | cl0080.h | 21 __u16 chipset; /* from NV_PMC_BOOT_0 */ member
|
/third_party/backends/tools/ |
H A D | sane-find-scanner.c | 120 fprintf (stderr, "\t-F file: try to detect chipset from given " in usage() 680 char * chipset = check_usb_chip (dev, verbose, from_file); in check_libusb_device() local 689 if (chipset) in check_libusb_device() 690 printf (", chip=%s", chipset); in check_libusb_device() 1068 char *chipset = NULL; in check_libusb_device() local 1071 chipset = check_usb_chip (verbose, desc, hdl, config0); in check_libusb_device() 1079 if (chipset) in check_libusb_device() 1080 printf (", chip=%s", chipset); in check_libusb_device()
|
/third_party/mesa3d/src/gallium/drivers/nouveau/nv50/ |
H A D | nv50_context.c | 372 if (screen->base.device->chipset < 0x84 || in nv50_create() 376 } else if (screen->base.device->chipset < 0x98 || in nv50_create() 377 screen->base.device->chipset == 0xa0) { in nv50_create()
|