Home
last modified time | relevance | path

Searched refs:vram_type (Results 1 – 9 of 9) sorted by relevance

/linux-3.4.99/drivers/gpu/drm/nouveau/
Dnv40_fb.c88 case 0x00000000: dev_priv->vram_type = NV_MEM_TYPE_SDRAM; break; in nv40_fb_vram_init()
89 case 0x00000100: dev_priv->vram_type = NV_MEM_TYPE_DDR1; break; in nv40_fb_vram_init()
90 case 0x00000200: dev_priv->vram_type = NV_MEM_TYPE_GDDR3; break; in nv40_fb_vram_init()
91 case 0x00000300: dev_priv->vram_type = NV_MEM_TYPE_DDR2; break; in nv40_fb_vram_init()
97 case 0x00000000: dev_priv->vram_type = NV_MEM_TYPE_DDR1; break; in nv40_fb_vram_init()
98 case 0x00000001: dev_priv->vram_type = NV_MEM_TYPE_DDR2; break; in nv40_fb_vram_init()
99 case 0x00000002: dev_priv->vram_type = NV_MEM_TYPE_GDDR3; break; in nv40_fb_vram_init()
106 dev_priv->vram_type = NV_MEM_TYPE_GDDR3; in nv40_fb_vram_init()
108 dev_priv->vram_type = NV_MEM_TYPE_DDR2; in nv40_fb_vram_init()
110 dev_priv->vram_type = NV_MEM_TYPE_DDR1; in nv40_fb_vram_init()
[all …]
Dnv50_vram.c196 case 0: dev_priv->vram_type = NV_MEM_TYPE_DDR1; break; in nv50_vram_init()
199 dev_priv->vram_type = NV_MEM_TYPE_DDR3; in nv50_vram_init()
201 dev_priv->vram_type = NV_MEM_TYPE_DDR2; in nv50_vram_init()
203 case 2: dev_priv->vram_type = NV_MEM_TYPE_GDDR3; break; in nv50_vram_init()
204 case 3: dev_priv->vram_type = NV_MEM_TYPE_GDDR4; break; in nv50_vram_init()
205 case 4: dev_priv->vram_type = NV_MEM_TYPE_GDDR5; break; in nv50_vram_init()
Dnv20_fb.c108 case 0x00000000: dev_priv->vram_type = NV_MEM_TYPE_SDRAM; break; in nv20_fb_vram_init()
109 case 0x00000100: dev_priv->vram_type = NV_MEM_TYPE_DDR1; break; in nv20_fb_vram_init()
110 case 0x00000200: dev_priv->vram_type = NV_MEM_TYPE_GDDR3; break; in nv20_fb_vram_init()
111 case 0x00000300: dev_priv->vram_type = NV_MEM_TYPE_GDDR2; break; in nv20_fb_vram_init()
Dnv04_fb.c33 dev_priv->vram_type = NV_MEM_TYPE_SGRAM; in nv04_fb_vram_init()
35 dev_priv->vram_type = NV_MEM_TYPE_SDRAM; in nv04_fb_vram_init()
Dnouveau_mem.c342 const struct vram_types *vram_type; in nouveau_mem_vram_init() local
380 vram_type = vram_type_map; in nouveau_mem_vram_init()
381 while (vram_type->value != NV_MEM_TYPE_UNKNOWN) { in nouveau_mem_vram_init()
383 if (!strcasecmp(nouveau_vram_type, vram_type->name)) in nouveau_mem_vram_init()
385 dev_priv->vram_type = vram_type->value; in nouveau_mem_vram_init()
387 if (vram_type->value == dev_priv->vram_type) in nouveau_mem_vram_init()
390 vram_type++; in nouveau_mem_vram_init()
394 (int)(dev_priv->vram_size >> 20), vram_type->name); in nouveau_mem_vram_init()
561 if (dev_priv->vram_type == NV_MEM_TYPE_DDR2) { in nv50_mem_timing_calc()
853 switch (dev_priv->vram_type * !ret) { in nouveau_mem_timing_calc()
[all …]
Dnv10_fb.c73 dev_priv->vram_type = NV_MEM_TYPE_DDR1; in nv10_fb_vram_init()
75 dev_priv->vram_type = NV_MEM_TYPE_SDRAM; in nv10_fb_vram_init()
Dnvc0_vram.c119 dev_priv->vram_type = nouveau_mem_vbios_type(dev); in nvc0_vram_init()
Dnouveau_drv.c60 MODULE_PARM_DESC(vram_type, "Override detected VRAM type");
62 module_param_named(vram_type, nouveau_vram_type, charp, 0400);
Dnouveau_drv.h812 } vram_type; member