aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBen Skeggs <bskeggs@redhat.com>2012-10-08 00:29:16 -0400
committerBen Skeggs <bskeggs@redhat.com>2012-11-28 18:56:39 -0500
commitf756944a219cb2d38b0859e8af680f9b216de1e3 (patch)
tree85bef8abe897bd9fd53c6f942978e6b9895491b6
parent344e107df7a5c365287aabe9df7df58b3765246b (diff)
drm/nv50/dmaobj: extend class to allow gpu-specific attributes to be defined
disp is going to need to be able to create more specific dma objects than was previously possible. Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
-rw-r--r--drivers/gpu/drm/nouveau/core/engine/dmaobj/base.c1
-rw-r--r--drivers/gpu/drm/nouveau/core/engine/dmaobj/nv50.c43
-rw-r--r--drivers/gpu/drm/nouveau/core/include/core/class.h18
-rw-r--r--drivers/gpu/drm/nouveau/core/include/engine/dmaobj.h1
-rw-r--r--drivers/gpu/drm/nouveau/nouveau_abi16.c2
-rw-r--r--drivers/gpu/drm/nouveau/nouveau_chan.c2
6 files changed, 51 insertions, 16 deletions
diff --git a/drivers/gpu/drm/nouveau/core/engine/dmaobj/base.c b/drivers/gpu/drm/nouveau/core/engine/dmaobj/base.c
index 325b79dd619a..5103e88d1877 100644
--- a/drivers/gpu/drm/nouveau/core/engine/dmaobj/base.c
+++ b/drivers/gpu/drm/nouveau/core/engine/dmaobj/base.c
@@ -85,6 +85,7 @@ nouveau_dmaobj_ctor(struct nouveau_object *parent,
85 85
86 dmaobj->start = args->start; 86 dmaobj->start = args->start;
87 dmaobj->limit = args->limit; 87 dmaobj->limit = args->limit;
88 dmaobj->conf0 = args->conf0;
88 89
89 switch (nv_mclass(parent)) { 90 switch (nv_mclass(parent)) {
90 case NV_DEVICE_CLASS: 91 case NV_DEVICE_CLASS:
diff --git a/drivers/gpu/drm/nouveau/core/engine/dmaobj/nv50.c b/drivers/gpu/drm/nouveau/core/engine/dmaobj/nv50.c
index 3dab016b6fe4..bda7afcf8d3c 100644
--- a/drivers/gpu/drm/nouveau/core/engine/dmaobj/nv50.c
+++ b/drivers/gpu/drm/nouveau/core/engine/dmaobj/nv50.c
@@ -38,7 +38,8 @@ nv50_dmaobj_bind(struct nouveau_dmaeng *dmaeng,
38 struct nouveau_dmaobj *dmaobj, 38 struct nouveau_dmaobj *dmaobj,
39 struct nouveau_gpuobj **pgpuobj) 39 struct nouveau_gpuobj **pgpuobj)
40{ 40{
41 u32 flags = nv_mclass(dmaobj); 41 u32 flags0 = nv_mclass(dmaobj);
42 u32 flags5 = 0x00000000;
42 int ret; 43 int ret;
43 44
44 if (!nv_iclass(parent, NV_ENGCTX_CLASS)) { 45 if (!nv_iclass(parent, NV_ENGCTX_CLASS)) {
@@ -53,23 +54,37 @@ nv50_dmaobj_bind(struct nouveau_dmaeng *dmaeng,
53 } 54 }
54 } 55 }
55 56
57 if (!(dmaobj->conf0 & NV50_DMA_CONF0_ENABLE)) {
58 if (dmaobj->target == NV_MEM_TARGET_VM) {
59 dmaobj->conf0 = NV50_DMA_CONF0_PRIV_VM;
60 dmaobj->conf0 |= NV50_DMA_CONF0_PART_VM;
61 dmaobj->conf0 |= NV50_DMA_CONF0_COMP_VM;
62 dmaobj->conf0 |= NV50_DMA_CONF0_TYPE_VM;
63 } else {
64 dmaobj->conf0 = NV50_DMA_CONF0_PRIV_US;
65 dmaobj->conf0 |= NV50_DMA_CONF0_PART_256;
66 dmaobj->conf0 |= NV50_DMA_CONF0_COMP_NONE;
67 dmaobj->conf0 |= NV50_DMA_CONF0_TYPE_LINEAR;
68 }
69 }
70
71 flags0 |= (dmaobj->conf0 & NV50_DMA_CONF0_COMP) << 22;
72 flags0 |= (dmaobj->conf0 & NV50_DMA_CONF0_TYPE) << 22;
73 flags0 |= (dmaobj->conf0 & NV50_DMA_CONF0_PRIV);
74 flags5 |= (dmaobj->conf0 & NV50_DMA_CONF0_PART);
75
56 switch (dmaobj->target) { 76 switch (dmaobj->target) {
57 case NV_MEM_TARGET_VM: 77 case NV_MEM_TARGET_VM:
58 flags |= 0x00000000; 78 flags0 |= 0x00000000;
59 flags |= 0x60000000; /* COMPRESSION_USEVM */
60 flags |= 0x1fc00000; /* STORAGE_TYPE_USEVM */
61 break; 79 break;
62 case NV_MEM_TARGET_VRAM: 80 case NV_MEM_TARGET_VRAM:
63 flags |= 0x00010000; 81 flags0 |= 0x00010000;
64 flags |= 0x00100000; /* ACCESSUS_USER_SYSTEM */
65 break; 82 break;
66 case NV_MEM_TARGET_PCI: 83 case NV_MEM_TARGET_PCI:
67 flags |= 0x00020000; 84 flags0 |= 0x00020000;
68 flags |= 0x00100000; /* ACCESSUS_USER_SYSTEM */
69 break; 85 break;
70 case NV_MEM_TARGET_PCI_NOSNOOP: 86 case NV_MEM_TARGET_PCI_NOSNOOP:
71 flags |= 0x00030000; 87 flags0 |= 0x00030000;
72 flags |= 0x00100000; /* ACCESSUS_USER_SYSTEM */
73 break; 88 break;
74 default: 89 default:
75 return -EINVAL; 90 return -EINVAL;
@@ -79,23 +94,23 @@ nv50_dmaobj_bind(struct nouveau_dmaeng *dmaeng,
79 case NV_MEM_ACCESS_VM: 94 case NV_MEM_ACCESS_VM:
80 break; 95 break;
81 case NV_MEM_ACCESS_RO: 96 case NV_MEM_ACCESS_RO:
82 flags |= 0x00040000; 97 flags0 |= 0x00040000;
83 break; 98 break;
84 case NV_MEM_ACCESS_WO: 99 case NV_MEM_ACCESS_WO:
85 case NV_MEM_ACCESS_RW: 100 case NV_MEM_ACCESS_RW:
86 flags |= 0x00080000; 101 flags0 |= 0x00080000;
87 break; 102 break;
88 } 103 }
89 104
90 ret = nouveau_gpuobj_new(parent, parent, 24, 32, 0, pgpuobj); 105 ret = nouveau_gpuobj_new(parent, parent, 24, 32, 0, pgpuobj);
91 if (ret == 0) { 106 if (ret == 0) {
92 nv_wo32(*pgpuobj, 0x00, flags); 107 nv_wo32(*pgpuobj, 0x00, flags0);
93 nv_wo32(*pgpuobj, 0x04, lower_32_bits(dmaobj->limit)); 108 nv_wo32(*pgpuobj, 0x04, lower_32_bits(dmaobj->limit));
94 nv_wo32(*pgpuobj, 0x08, lower_32_bits(dmaobj->start)); 109 nv_wo32(*pgpuobj, 0x08, lower_32_bits(dmaobj->start));
95 nv_wo32(*pgpuobj, 0x0c, upper_32_bits(dmaobj->limit) << 24 | 110 nv_wo32(*pgpuobj, 0x0c, upper_32_bits(dmaobj->limit) << 24 |
96 upper_32_bits(dmaobj->start)); 111 upper_32_bits(dmaobj->start));
97 nv_wo32(*pgpuobj, 0x10, 0x00000000); 112 nv_wo32(*pgpuobj, 0x10, 0x00000000);
98 nv_wo32(*pgpuobj, 0x14, 0x00000000); 113 nv_wo32(*pgpuobj, 0x14, flags5);
99 } 114 }
100 115
101 return ret; 116 return ret;
diff --git a/drivers/gpu/drm/nouveau/core/include/core/class.h b/drivers/gpu/drm/nouveau/core/include/core/class.h
index 6180ae9800fc..445a4bad2936 100644
--- a/drivers/gpu/drm/nouveau/core/include/core/class.h
+++ b/drivers/gpu/drm/nouveau/core/include/core/class.h
@@ -52,11 +52,29 @@ struct nv_device_class {
52#define NV_DMA_ACCESS_WR 0x00000200 52#define NV_DMA_ACCESS_WR 0x00000200
53#define NV_DMA_ACCESS_RDWR 0x00000300 53#define NV_DMA_ACCESS_RDWR 0x00000300
54 54
55/* NV50:NVC0 */
56#define NV50_DMA_CONF0_ENABLE 0x80000000
57#define NV50_DMA_CONF0_PRIV 0x00300000
58#define NV50_DMA_CONF0_PRIV_VM 0x00000000
59#define NV50_DMA_CONF0_PRIV_US 0x00100000
60#define NV50_DMA_CONF0_PRIV__S 0x00200000
61#define NV50_DMA_CONF0_PART 0x00030000
62#define NV50_DMA_CONF0_PART_VM 0x00000000
63#define NV50_DMA_CONF0_PART_256 0x00010000
64#define NV50_DMA_CONF0_PART_1KB 0x00020000
65#define NV50_DMA_CONF0_COMP 0x00000180
66#define NV50_DMA_CONF0_COMP_NONE 0x00000000
67#define NV50_DMA_CONF0_COMP_VM 0x00000180
68#define NV50_DMA_CONF0_TYPE 0x0000007f
69#define NV50_DMA_CONF0_TYPE_LINEAR 0x00000000
70#define NV50_DMA_CONF0_TYPE_VM 0x0000007f
71
55struct nv_dma_class { 72struct nv_dma_class {
56 u32 flags; 73 u32 flags;
57 u32 pad0; 74 u32 pad0;
58 u64 start; 75 u64 start;
59 u64 limit; 76 u64 limit;
77 u32 conf0;
60}; 78};
61 79
62/* DMA FIFO channel classes 80/* DMA FIFO channel classes
diff --git a/drivers/gpu/drm/nouveau/core/include/engine/dmaobj.h b/drivers/gpu/drm/nouveau/core/include/engine/dmaobj.h
index 21f9edcdd6c9..b28914ed1752 100644
--- a/drivers/gpu/drm/nouveau/core/include/engine/dmaobj.h
+++ b/drivers/gpu/drm/nouveau/core/include/engine/dmaobj.h
@@ -12,6 +12,7 @@ struct nouveau_dmaobj {
12 u32 access; 12 u32 access;
13 u64 start; 13 u64 start;
14 u64 limit; 14 u64 limit;
15 u32 conf0;
15}; 16};
16 17
17struct nouveau_dmaeng { 18struct nouveau_dmaeng {
diff --git a/drivers/gpu/drm/nouveau/nouveau_abi16.c b/drivers/gpu/drm/nouveau/nouveau_abi16.c
index cc79c796afee..2720ce009664 100644
--- a/drivers/gpu/drm/nouveau/nouveau_abi16.c
+++ b/drivers/gpu/drm/nouveau/nouveau_abi16.c
@@ -378,7 +378,7 @@ nouveau_abi16_ioctl_notifierobj_alloc(ABI16_IOCTL_ARGS)
378 struct nouveau_abi16_chan *chan, *temp; 378 struct nouveau_abi16_chan *chan, *temp;
379 struct nouveau_abi16_ntfy *ntfy; 379 struct nouveau_abi16_ntfy *ntfy;
380 struct nouveau_object *object; 380 struct nouveau_object *object;
381 struct nv_dma_class args; 381 struct nv_dma_class args = {};
382 int ret; 382 int ret;
383 383
384 if (unlikely(!abi16)) 384 if (unlikely(!abi16))
diff --git a/drivers/gpu/drm/nouveau/nouveau_chan.c b/drivers/gpu/drm/nouveau/nouveau_chan.c
index c1d7301c0e9c..049c6b23e1d7 100644
--- a/drivers/gpu/drm/nouveau/nouveau_chan.c
+++ b/drivers/gpu/drm/nouveau/nouveau_chan.c
@@ -267,7 +267,7 @@ nouveau_channel_init(struct nouveau_channel *chan, u32 vram, u32 gart)
267 struct nouveau_fb *pfb = nouveau_fb(device); 267 struct nouveau_fb *pfb = nouveau_fb(device);
268 struct nouveau_software_chan *swch; 268 struct nouveau_software_chan *swch;
269 struct nouveau_object *object; 269 struct nouveau_object *object;
270 struct nv_dma_class args; 270 struct nv_dma_class args = {};
271 int ret, i; 271 int ret, i;
272 272
273 /* allocate dma objects to cover all allowed vram, and gart */ 273 /* allocate dma objects to cover all allowed vram, and gart */