diff options
author | Ilia Mirkin <imirkin@alum.mit.edu> | 2013-09-05 04:45:02 -0400 |
---|---|---|
committer | Ben Skeggs <bskeggs@redhat.com> | 2013-11-08 00:37:35 -0500 |
commit | 4a0ff75418851116d034fa4d91bef114f01a329d (patch) | |
tree | effba9ba7b4fc61467a4c8da18c0a5bd9c4b04f0 /drivers/gpu/drm/nouveau/nouveau_bo.c | |
parent | 73f4b1f8938174dcf1645563e541022837a6a7f4 (diff) |
drm/nv10: introduce a new NV_11 card type
NV11/17/1F/18 come after NV10/15/16/1A. In order to facilitate using
numerical comparisons, split up the two sets into different card types.
This change should be a no-op except that the relevant cards will see
NV11 printed instead of NV10 for the family.
Signed-off-by: Ilia Mirkin <imirkin@alum.mit.edu>
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/nouveau/nouveau_bo.c')
-rw-r--r-- | drivers/gpu/drm/nouveau/nouveau_bo.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/drm/nouveau/nouveau_bo.c b/drivers/gpu/drm/nouveau/nouveau_bo.c index c28a5a9ff053..949ab0cbc4ab 100644 --- a/drivers/gpu/drm/nouveau/nouveau_bo.c +++ b/drivers/gpu/drm/nouveau/nouveau_bo.c | |||
@@ -269,7 +269,8 @@ set_placement_range(struct nouveau_bo *nvbo, uint32_t type) | |||
269 | struct nouveau_fb *pfb = nouveau_fb(drm->device); | 269 | struct nouveau_fb *pfb = nouveau_fb(drm->device); |
270 | u32 vram_pages = pfb->ram->size >> PAGE_SHIFT; | 270 | u32 vram_pages = pfb->ram->size >> PAGE_SHIFT; |
271 | 271 | ||
272 | if (nv_device(drm->device)->card_type == NV_10 && | 272 | if ((nv_device(drm->device)->card_type == NV_10 || |
273 | nv_device(drm->device)->card_type == NV_11) && | ||
273 | nvbo->tile_mode && (type & TTM_PL_FLAG_VRAM) && | 274 | nvbo->tile_mode && (type & TTM_PL_FLAG_VRAM) && |
274 | nvbo->bo.mem.num_pages < vram_pages / 4) { | 275 | nvbo->bo.mem.num_pages < vram_pages / 4) { |
275 | /* | 276 | /* |