HomeSort by relevance Sort by last modified time
    Searched refs:chipset (Results 1 - 25 of 52) sorted by null

1 2 3

  /external/mesa3d/src/gallium/winsys/nouveau/drm/
nouveau_drm_winsys.c 23 switch (dev->chipset & 0xf0) {
41 debug_printf("%s: unknown chipset nv%02x\n", __func__,
42 dev->chipset);
  /external/mesa3d/src/gallium/targets/xorg-nouveau/
nouveau_xorg.c 131 int chipset, ret; local
149 chipset = dev->chipset;
159 switch (chipset & 0xf0) {
163 xf86DrvMsg(-1, X_NOTICE, "Too old chipset: NV%02x\n", chipset);
173 xf86DrvMsg(-1, X_INFO, "Detected chipset: NV%02x\n", chipset);
176 xf86DrvMsg(-1, X_ERROR, "Unknown chipset: NV%02x\n", chipset);
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_context.c 70 const char *chipset; local
81 chipset = "Intel(R) 845G";
84 chipset = "Intel(R) 830M";
87 chipset = "Intel(R) 852GM/855GM";
90 chipset = "Intel(R) 865G";
93 chipset = "Intel(R) 915G";
96 chipset = "Intel (R) E7221G (i915)";
99 chipset = "Intel(R) 915GM";
102 chipset = "Intel(R) 945G";
105 chipset = "Intel(R) 945GM"
    [all...]
  /external/mesa3d/src/gallium/drivers/i915/
i915_screen.c 60 const char *chipset; local
64 chipset = "915G";
67 chipset = "915GM";
70 chipset = "945G";
73 chipset = "945GM";
76 chipset = "945GME";
79 chipset = "G33";
82 chipset = "Q35";
85 chipset = "Q33";
88 chipset = "Pineview G"
    [all...]
  /external/libdrm/nouveau/
abi16.c 200 if (dev->chipset >= 0x98 &&
201 dev->chipset != 0xa0 &&
202 dev->chipset < 0xc0) {
251 if (dev->chipset < 0xc0)
254 if (dev->chipset < 0xe0)
296 if (bo->device->chipset >= 0xc0) {
300 if (bo->device->chipset >= 0x80 || bo->device->chipset == 0x50) {
341 if (dev->chipset >= 0xc0) {
345 if (dev->chipset >= 0x80 || dev->chipset == 0x50)
    [all...]
  /device/google/marlin/common/
utils.mk 112 # $(call is-chipset-in-board-platform,chipset)
113 # does a prefix match of chipset in TARGET_BOARD_PLATFORM
117 define is-chipset-in-board-platform
121 # $(call is-chipset-prefix-in-board-platform,prefix)
122 # does a chipset prefix match in TARGET_BOARD_PLATFORM
123 # assumes '_' and 'a' as the delimiter to the chipset prefix
131 define is-chipset-prefix-in-board-platform
  /external/libdrm/nouveau/nvif/
cl0080.h 21 __u16 chipset; /* from NV_PMC_BOOT_0 */ member in struct:nv_device_info_v0
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_target_nv50.h 37 TargetNV50(unsigned int chipset);
nv50_ir_target.cpp 115 extern Target *getTargetNVC0(unsigned int chipset);
116 extern Target *getTargetNV50(unsigned int chipset);
118 Target *Target::create(unsigned int chipset)
120 switch (chipset & 0xf0) {
124 return getTargetNVC0(chipset);
129 return getTargetNV50(chipset);
131 ERROR("unsupported target: NV%x\n", chipset);
433 nv50_ir_get_target_library(uint32_t chipset,
436 nv50_ir::Target *targ = nv50_ir::Target::create(chipset);
nv50_ir_target.h 121 static Target *create(uint32_t chipset);
126 inline uint32_t getChipset() const { return chipset; }
206 uint32_t chipset; member in class:nv50_ir::Target
nv50_ir_target_nv50.cpp 27 Target *getTargetNV50(unsigned int chipset)
29 return new TargetNV50(chipset);
34 chipset = card;
375 if (ty == TYPE_F64 && chipset < 0xa0)
380 return chipset >= 0xa0;
382 return chipset >= 0xa3;
nv50_ir_driver.h 98 uint16_t target; /* chipset (0x50, 0x84, 0xc0, ...) */
197 extern void nv50_ir_get_target_library(uint32_t chipset,
  /external/mesa3d/src/gallium/drivers/nvc0/codegen/
nv50_ir_target_nvc0.h 37 TargetNVC0(unsigned int chipset);
  /external/mesa3d/src/gallium/drivers/nv50/
nv50_program.h 102 boolean nv50_program_translate(struct nv50_program *, uint16_t chipset);
  /external/mesa3d/src/gallium/drivers/nv30/
nv30_screen.c 336 switch (dev->chipset & 0xf0) {
338 if (RANKINE_0397_CHIPSET & (1 << (dev->chipset & 0x0f)))
341 if (RANKINE_0697_CHIPSET & (1 << (dev->chipset & 0x0f)))
344 if (RANKINE_0497_CHIPSET & (1 << (dev->chipset & 0x0f)))
348 if (CURIE_4097_CHIPSET & (1 << (dev->chipset & 0x0f)))
351 if (CURIE_4497_CHIPSET & (1 << (dev->chipset & 0x0f)))
355 if (CURIE_4497_CHIPSET6X & (1 << (dev->chipset & 0x0f)))
363 NOUVEAU_ERR("unknown 3d class for 0x%02x\n", dev->chipset);
545 if (dev->chipset < 0x40)
560 if (dev->chipset < 0x40
    [all...]
  /external/vboot_reference/host/arch/x86/lib/
crossystem_arch.c 642 const struct GpioChipset *chipset = &chipsets_supported[0]; local
644 while (chipset->name != NULL) {
645 if (!strcmp(name, chipset->name))
646 return chipset;
647 chipset++;
664 const struct GpioChipset *chipset; local
690 chipset = FindChipset(controller_name);
691 if (chipset == NULL)
695 if (!chipset->ChipOffsetAndGpioNumber(&controller_num, &controller_offset,
696 chipset->name)
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_screen.c 36 util_snprintf(buffer, sizeof(buffer), "NV%02X", dev->chipset);
134 if (dev->chipset < 0xc0) {
  /external/drm_gralloc/
gralloc_drm_radeon.c 56 uint32_t chipset; member in struct:radeon_info
451 kinfo.value = (long) &info->chipset;
461 if (info->chipset == card->pci_device_id) {
470 ALOGE("unknown device id 0x%04x", info->chipset);
498 ALOGI("detected chipset 0x%04x family 0x%02x (vram size %dMiB, gart size %dMiB)",
499 info->chipset, info->chip_family,
gralloc_drm_nouveau.c 146 align = MAX((info->dev->chipset >= 0x40) ? 1024 : 256,
284 switch (info->dev->chipset & 0xf0) {
311 ALOGE("unknown nouveau chipset 0x%x", info->dev->chipset);
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_context.h 92 (context_dev(ctx)->chipset)
  /hardware/qcom/display/msm8084/libcopybit/
Android.mk 37 ifneq ($(call is-chipset-in-board-platform,msm7630),true)
  /hardware/qcom/display/msm8226/libcopybit/
Android.mk 37 ifneq ($(call is-chipset-in-board-platform,msm7630),true)
  /hardware/qcom/display/msm8909/libcopybit/
Android.mk 38 ifneq ($(call is-chipset-in-board-platform,msm7630),true)
  /hardware/qcom/display/msm8960/libcopybit/
Android.mk 37 ifneq ($(call is-chipset-in-board-platform,msm7630),true)
  /hardware/qcom/display/msm8994/libcopybit/
Android.mk 40 ifneq ($(call is-chipset-in-board-platform,msm7630),true)

Completed in 942 milliseconds

1 2 3