Home
last modified time | relevance | path

Searched refs:chipset (Results 1 – 25 of 78) sorted by relevance

1234

/external/mesa3d/src/gallium/drivers/nouveau/
Dnouveau_compiler.c38 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
111 info.target = chipset; in nouveau_codegen()
142 int i, chipset = 0, type = -1; in main() local
[all …]
Dnouveau_vp3_video.c282 unsigned chipset) in nouveau_vp3_load_firmware() argument
289 if (chipset >= 0xa3 && chipset != 0xaa && chipset != 0xac) in nouveau_vp3_load_firmware()
370 int chipset = screen->device->chipset; in firmware_present() local
371 int vp3 = chipset < 0xa3 || chipset == 0xaa || chipset == 0xac; in firmware_present()
372 int vp5 = chipset >= 0xd0; in firmware_present()
385 if (chipset < 0xc0) { in firmware_present()
388 } else if (chipset < 0xe0) { in firmware_present()
440 int chipset = nouveau_screen(pscreen)->device->chipset; in nouveau_vp3_screen_get_video_param() local
441 int vp3 = chipset < 0xa3 || chipset == 0xaa || chipset == 0xac; in nouveau_vp3_screen_get_video_param()
442 int vp5 = chipset >= 0xd0; in nouveau_vp3_screen_get_video_param()
/external/mesa3d/src/gallium/drivers/i915/
Di915_screen.c67 const char *chipset; in i915_get_name() local
71 chipset = "915G"; in i915_get_name()
74 chipset = "915GM"; in i915_get_name()
77 chipset = "945G"; in i915_get_name()
80 chipset = "945GM"; in i915_get_name()
83 chipset = "945GME"; in i915_get_name()
86 chipset = "G33"; in i915_get_name()
89 chipset = "Q35"; in i915_get_name()
92 chipset = "Q33"; in i915_get_name()
95 chipset = "Pineview G"; in i915_get_name()
[all …]
/external/mesa3d/src/loader/
Dpci_id_driver_map.c48 int chipset = nouveau_chipset(fd); in is_nouveau_vieux() local
49 return (chipset > 0 && chipset < 0x30) || in is_nouveau_vieux()
50 (chipset < 0x40 && getenv("NOUVEAU_VIEUX") != NULL); in is_nouveau_vieux()
/external/libdrm/nouveau/
Dabi16.c196 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 >= 0x80 || dev->chipset == 0x50) { in abi16_bo_init()
/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_oa.py436 chipset = args.chipset.lower()
491 c("#include \"brw_oa_" + chipset + ".h\"")
509 assert set.get('chipset').lower() == chipset
520 c("static struct brw_perf_query_register_prog {0}_{1}_{2}[{3}];".format(chipset,
524 …c("\nstatic struct brw_perf_query_counter {0}_{1}_query_counters[{2}];\n".format(chipset, set.get(…
525 …c("static struct brw_perf_query_info " + chipset + "_" + set.get('underscore_name') + "_query = {\…
532 c(".counters = {0}_{1}_query_counters,".format(chipset, set.get('underscore_name')))
536 if chipset == "hsw":
559 c(".{0} = {1}_{2}_{3},".format(reg_type, chipset, set.get('underscore_name'), reg_type))
570 …c("static struct brw_perf_query_info *query = &" + chipset + "_" + set.get('underscore_name') + "_…
[all …]
DMakefile.am128 …$(PYTHON2) $(PYTHON_FLAGS) $(srcdir)/brw_oa.py --header=$(builddir)/brw_oa_$(*).h --chipset=$(*) $…
130 …$(PYTHON2) $(PYTHON_FLAGS) $(srcdir)/brw_oa.py --code=$(builddir)/brw_oa_$(*).c --chipset=$(*) $(s…
DAndroid.mk292 $(hide) $(MESA_PYTHON2) $(word 2, $^) --header=$@ --chipset=$(basename $*) $<
297 $(hide) $(MESA_PYTHON2) $(word 2, $^) --code=$@ --chipset=$(basename $*) $<
/external/mesa3d/src/gallium/drivers/nouveau/codegen/
Dnv50_ir_target.cpp142 extern Target *getTargetGM107(unsigned int chipset);
143 extern Target *getTargetNVC0(unsigned int chipset);
144 extern Target *getTargetNV50(unsigned int chipset);
146 Target *Target::create(unsigned int chipset) in create() argument
150 switch (chipset & ~0xf) { in create()
154 return getTargetGM107(chipset); in create()
160 return getTargetNVC0(chipset); in create()
165 return getTargetNV50(chipset); in create()
167 ERROR("unsupported target: NV%x\n", chipset); in create()
525 nv50_ir_get_target_library(uint32_t chipset, in nv50_ir_get_target_library() argument
[all …]
Dnv50_ir_target_nvc0.cpp27 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()
244 const unsigned int gprs = (chipset >= NVISA_GK20A_CHIPSET) ? 255 : 63; in getFileSize()
245 const unsigned int smregs = (chipset >= NVISA_GK104_CHIPSET) ? 65536 : 32768; in getFileSize()
523 if (chipset >= 0xe4) { in getLatency()
Dnv50_ir_target_nv50.cpp27 Target *getTargetNV50(unsigned int chipset) in getTargetNV50() argument
29 return new TargetNV50(chipset); in getTargetNV50()
34 chipset = card; in TargetNV50()
194 if (chipset >= 0xa0) in initOpInfo()
419 if (ty == TYPE_F64 && chipset < 0xa0) in isOpSupported()
424 return chipset >= 0xa0; in isOpSupported()
426 return chipset >= 0xa3 && chipset != 0xaa && chipset != 0xac; in isOpSupported()
Dnv50_ir_target_gm107.h8 TargetGM107(unsigned int chipset) : TargetNVC0(chipset) {} in TargetGM107() argument
Dnv50_ir_target.h163 static Target *create(uint32_t chipset);
168 inline uint32_t getChipset() const { return chipset; } in getChipset()
261 uint32_t chipset;
Dnv50_ir_target_gm107.cpp29 Target *getTargetGM107(unsigned int chipset) in getTargetGM107() argument
31 return new TargetGM107(chipset); in getTargetGM107()
/external/mesa3d/src/mesa/drivers/dri/nouveau/
Dnouveau_screen.c52 nouveau_get_configs(uint32_t chipset) in nouveau_get_configs() argument
81 GL_TRUE, chipset < 0x10); in nouveau_get_configs()
122 switch (screen->device->chipset & 0xf0) { in nouveau_init_screen2()
140 screen->device->chipset); in nouveau_init_screen2()
147 configs = nouveau_get_configs(screen->device->chipset); in nouveau_init_screen2()
207 value[0] = nouveau_get_renderer_string(screen->device->chipset); in nouveau_query_renderer_string()
Dnouveau_driver.c41 nouveau_get_renderer_string(unsigned chipset) in nouveau_get_renderer_string() argument
46 snprintf(hardware_name, sizeof(hardware_name), "nv%02X", chipset); in nouveau_get_renderer_string()
/external/vboot_reference/host/arch/x86_64/lib/
Dcrossystem_arch.c642 const struct GpioChipset *chipset = &chipsets_supported[0]; in FindChipset() local
644 while (chipset->name != NULL) { in FindChipset()
645 if (!strcmp(name, chipset->name)) in FindChipset()
646 return chipset; in FindChipset()
647 chipset++; in FindChipset()
664 const struct GpioChipset *chipset; in ReadGpio() local
690 chipset = FindChipset(controller_name); in ReadGpio()
691 if (chipset == NULL) in ReadGpio()
695 if (!chipset->ChipOffsetAndGpioNumber(&controller_num, &controller_offset, in ReadGpio()
696 chipset->name)) in ReadGpio()
/external/vboot_reference/host/arch/x86/lib/
Dcrossystem_arch.c642 const struct GpioChipset *chipset = &chipsets_supported[0]; in FindChipset() local
644 while (chipset->name != NULL) { in FindChipset()
645 if (!strcmp(name, chipset->name)) in FindChipset()
646 return chipset; in FindChipset()
647 chipset++; in FindChipset()
664 const struct GpioChipset *chipset; in ReadGpio() local
690 chipset = FindChipset(controller_name); in ReadGpio()
691 if (chipset == NULL) in ReadGpio()
695 if (!chipset->ChipOffsetAndGpioNumber(&controller_num, &controller_offset, in ReadGpio()
696 chipset->name)) in ReadGpio()
/external/mesa3d/src/gallium/drivers/nouveau/nv30/
Dnv30_screen.c497 switch (dev->chipset & 0xf0) { in nv30_screen_create()
499 if (RANKINE_0397_CHIPSET & (1 << (dev->chipset & 0x0f))) in nv30_screen_create()
502 if (RANKINE_0697_CHIPSET & (1 << (dev->chipset & 0x0f))) in nv30_screen_create()
505 if (RANKINE_0497_CHIPSET & (1 << (dev->chipset & 0x0f))) in nv30_screen_create()
509 if (CURIE_4097_CHIPSET & (1 << (dev->chipset & 0x0f))) in nv30_screen_create()
512 if (CURIE_4497_CHIPSET & (1 << (dev->chipset & 0x0f))) in nv30_screen_create()
516 if (CURIE_4497_CHIPSET6X & (1 << (dev->chipset & 0x0f))) in nv30_screen_create()
524 NOUVEAU_ERR("unknown 3d class for 0x%02x\n", dev->chipset); in nv30_screen_create()
729 if (dev->chipset < 0x40) in nv30_screen_create()
744 if (dev->chipset < 0x40) in nv30_screen_create()
/external/u-boot/board/emulation/
DKconfig17 chipset platform and '-M q35', a Q35/ICH9 chipset platform.
/external/mesa3d/src/gallium/drivers/nouveau/nvc0/
Dnvc0_query_hw_metric.c411 if (dev->chipset == 0xc0 || dev->chipset == 0xc8) in nvc0_hw_metric_get_queries()
433 if (dev->chipset == 0xc0 || dev->chipset == 0xc8) in nvc0_hw_metric_get_num_queries()
694 if (dev->chipset == 0xc0 || dev->chipset == 0xc8) in nvc0_hw_metric_get_query_result()
Dnvc0_screen.c702 switch (screen->base.device->chipset & ~0xf) { in nvc0_screen_init_compute()
731 size *= (screen->base.device->chipset >= 0xe0) ? 64 : 48; /* max warps */ in nvc0_screen_resize_tls_area()
814 switch (dev->chipset & ~0xf) { in nvc0_screen_create()
880 ret = nouveau_object_new(chan, (dev->chipset < 0xe0) ? 0x1f906e : 0x906e, in nvc0_screen_create()
888 switch (dev->chipset & ~0xf) { in nvc0_screen_create()
941 switch (dev->chipset & ~0xf) { in nvc0_screen_create()
943 switch (dev->chipset) { in nvc0_screen_create()
964 switch (dev->chipset) { in nvc0_screen_create()
978 switch (dev->chipset) { in nvc0_screen_create()
1085 if (dev->chipset >= 0xe0 && dev->chipset < 0xf0) in nvc0_screen_create()
/external/u-boot/drivers/net/
Drtl8169.c328 int chipset; member
413 tpc->chipset = i; in rtl8169_init_board()
422 tpc->chipset = 0; in rtl8169_init_board()
710 rtl_chip_info[tpc->chipset].RxConfigMask); in rtl8169_set_rx_mode()
746 if (tpc->chipset <= 5) in rtl8169_hw_start()
756 rtl_chip_info[tpc->chipset].RxConfigMask); in rtl8169_hw_start()
784 if (tpc->chipset > 5) in rtl8169_hw_start()
980 printf("chipset = %d\n", tpc->chipset); in rtl_init()
/external/mesa3d/src/gallium/winsys/nouveau/drm/
Dnouveau_drm_winsys.c108 switch (dev->chipset & ~0xf) { in nouveau_drm_screen_create()
132 dev->chipset); in nouveau_drm_screen_create()
/external/mesa3d/src/gallium/drivers/nouveau/nv50/
Dnv50_compute.c42 switch (dev->chipset & 0xf0) { in nv50_screen_compute_setup()
49 switch (dev->chipset) { in nv50_screen_compute_setup()
61 NOUVEAU_ERR("unsupported chipset: NV%02x\n", dev->chipset); in nv50_screen_compute_setup()

1234