Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 329687
b: refs/heads/master
c: dc73b45
h: refs/heads/master
i:
  329685: ac9266d
  329683: 6c22378
  329679: 2a971e1
v: v3
  • Loading branch information
Ben Skeggs committed Oct 3, 2012
1 parent c044f4c commit 8174c8b
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c0abf5c9fa1db7188bd6b8b580614a377dbc7080
refs/heads/master: dc73b45ad456b173610a211c588d003f7ea77957
1 change: 1 addition & 0 deletions trunk/drivers/gpu/drm/nouveau/core/include/subdev/vm.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ struct nouveau_vmmgr {
struct nouveau_subdev base;

u64 limit;
u8 dma_bits;
u32 pgt_bits;
u8 spg_shift;
u8 lpg_shift;
Expand Down
1 change: 1 addition & 0 deletions trunk/drivers/gpu/drm/nouveau/core/subdev/vm/nv04.c
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ nv04_vmmgr_ctor(struct nouveau_object *parent, struct nouveau_object *engine,

priv->base.create = nv04_vm_create;
priv->base.limit = NV04_PDMA_SIZE;
priv->base.dma_bits = 32;
priv->base.pgt_bits = 32 - 12;
priv->base.spg_shift = 12;
priv->base.lpg_shift = 12;
Expand Down
1 change: 1 addition & 0 deletions trunk/drivers/gpu/drm/nouveau/core/subdev/vm/nv41.c
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ nv41_vmmgr_ctor(struct nouveau_object *parent, struct nouveau_object *engine,

priv->base.create = nv04_vm_create;
priv->base.limit = NV41_GART_SIZE;
priv->base.dma_bits = 39;
priv->base.pgt_bits = 32 - 12;
priv->base.spg_shift = 12;
priv->base.lpg_shift = 12;
Expand Down
1 change: 1 addition & 0 deletions trunk/drivers/gpu/drm/nouveau/core/subdev/vm/nv44.c
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@ nv44_vmmgr_ctor(struct nouveau_object *parent, struct nouveau_object *engine,

priv->base.create = nv04_vm_create;
priv->base.limit = NV44_GART_SIZE;
priv->base.dma_bits = 39;
priv->base.pgt_bits = 32 - 12;
priv->base.spg_shift = 12;
priv->base.lpg_shift = 12;
Expand Down
1 change: 1 addition & 0 deletions trunk/drivers/gpu/drm/nouveau/core/subdev/vm/nv50.c
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,7 @@ nv50_vmmgr_ctor(struct nouveau_object *parent, struct nouveau_object *engine,
return ret;

priv->base.limit = 1ULL << 40;
priv->base.dma_bits = 40;
priv->base.pgt_bits = 29 - 12;
priv->base.spg_shift = 12;
priv->base.lpg_shift = 16;
Expand Down
1 change: 1 addition & 0 deletions trunk/drivers/gpu/drm/nouveau/core/subdev/vm/nvc0.c
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,7 @@ nvc0_vmmgr_ctor(struct nouveau_object *parent, struct nouveau_object *engine,
return ret;

priv->base.limit = 1ULL << 40;
priv->base.dma_bits = 40;
priv->base.pgt_bits = 27 - 12;
priv->base.spg_shift = 12;
priv->base.lpg_shift = 17;
Expand Down
10 changes: 3 additions & 7 deletions trunk/drivers/gpu/drm/nouveau/nouveau_ttm.c
Original file line number Diff line number Diff line change
Expand Up @@ -340,14 +340,10 @@ nouveau_ttm_init(struct nouveau_drm *drm)
u32 bits;
int ret;

if (nv_device(drm->device)->card_type >= NV_50) {
if (pci_dma_supported(dev->pdev, DMA_BIT_MASK(40)))
bits = 40;
else
bits = 32;
} else {
bits = nouveau_vmmgr(drm->device)->dma_bits;
if ( drm->agp.stat == ENABLED ||
!pci_dma_supported(dev->pdev, DMA_BIT_MASK(bits)))
bits = 32;
}

ret = pci_set_dma_mask(dev->pdev, DMA_BIT_MASK(bits));
if (ret)
Expand Down

0 comments on commit 8174c8b

Please sign in to comment.