UAPI: (Scripted) Convert #include "..." to #include <path/...> in drivers/gpu/
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / gpu / drm / nouveau / nv40_fifo.c
1 /*
2 * Copyright (C) 2012 Ben Skeggs.
3 * All Rights Reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining
6 * a copy of this software and associated documentation files (the
7 * "Software"), to deal in the Software without restriction, including
8 * without limitation the rights to use, copy, modify, merge, publish,
9 * distribute, sublicense, and/or sell copies of the Software, and to
10 * permit persons to whom the Software is furnished to do so, subject to
11 * the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the
14 * next paragraph) shall be included in all copies or substantial
15 * portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
20 * IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
21 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 *
25 */
26
27 #include <drm/drmP.h>
28 #include "nouveau_drv.h"
29 #include "nouveau_fifo.h"
30 #include "nouveau_util.h"
31 #include "nouveau_ramht.h"
32
33 static struct ramfc_desc {
34 unsigned bits:6;
35 unsigned ctxs:5;
36 unsigned ctxp:8;
37 unsigned regs:5;
38 unsigned regp;
39 } nv40_ramfc[] = {
40 { 32, 0, 0x00, 0, NV04_PFIFO_CACHE1_DMA_PUT },
41 { 32, 0, 0x04, 0, NV04_PFIFO_CACHE1_DMA_GET },
42 { 32, 0, 0x08, 0, NV10_PFIFO_CACHE1_REF_CNT },
43 { 32, 0, 0x0c, 0, NV04_PFIFO_CACHE1_DMA_INSTANCE },
44 { 32, 0, 0x10, 0, NV04_PFIFO_CACHE1_DMA_DCOUNT },
45 { 32, 0, 0x14, 0, NV04_PFIFO_CACHE1_DMA_STATE },
46 { 28, 0, 0x18, 0, NV04_PFIFO_CACHE1_DMA_FETCH },
47 { 2, 28, 0x18, 28, 0x002058 },
48 { 32, 0, 0x1c, 0, NV04_PFIFO_CACHE1_ENGINE },
49 { 32, 0, 0x20, 0, NV04_PFIFO_CACHE1_PULL1 },
50 { 32, 0, 0x24, 0, NV10_PFIFO_CACHE1_ACQUIRE_VALUE },
51 { 32, 0, 0x28, 0, NV10_PFIFO_CACHE1_ACQUIRE_TIMESTAMP },
52 { 32, 0, 0x2c, 0, NV10_PFIFO_CACHE1_ACQUIRE_TIMEOUT },
53 { 32, 0, 0x30, 0, NV10_PFIFO_CACHE1_SEMAPHORE },
54 { 32, 0, 0x34, 0, NV10_PFIFO_CACHE1_DMA_SUBROUTINE },
55 { 32, 0, 0x38, 0, NV40_PFIFO_GRCTX_INSTANCE },
56 { 17, 0, 0x3c, 0, NV04_PFIFO_DMA_TIMESLICE },
57 { 32, 0, 0x40, 0, 0x0032e4 },
58 { 32, 0, 0x44, 0, 0x0032e8 },
59 { 32, 0, 0x4c, 0, 0x002088 },
60 { 32, 0, 0x50, 0, 0x003300 },
61 { 32, 0, 0x54, 0, 0x00330c },
62 {}
63 };
64
65 struct nv40_fifo_priv {
66 struct nouveau_fifo_priv base;
67 struct ramfc_desc *ramfc_desc;
68 };
69
70 struct nv40_fifo_chan {
71 struct nouveau_fifo_chan base;
72 struct nouveau_gpuobj *ramfc;
73 };
74
75 static int
76 nv40_fifo_context_new(struct nouveau_channel *chan, int engine)
77 {
78 struct drm_device *dev = chan->dev;
79 struct drm_nouveau_private *dev_priv = dev->dev_private;
80 struct nv40_fifo_priv *priv = nv_engine(dev, engine);
81 struct nv40_fifo_chan *fctx;
82 unsigned long flags;
83 int ret;
84
85 fctx = chan->engctx[engine] = kzalloc(sizeof(*fctx), GFP_KERNEL);
86 if (!fctx)
87 return -ENOMEM;
88
89 /* map channel control registers */
90 chan->user = ioremap(pci_resource_start(dev->pdev, 0) +
91 NV03_USER(chan->id), PAGE_SIZE);
92 if (!chan->user) {
93 ret = -ENOMEM;
94 goto error;
95 }
96
97 /* initialise default fifo context */
98 ret = nouveau_gpuobj_new_fake(dev, dev_priv->ramfc->pinst +
99 chan->id * 128, ~0, 128,
100 NVOBJ_FLAG_ZERO_ALLOC |
101 NVOBJ_FLAG_ZERO_FREE, &fctx->ramfc);
102 if (ret)
103 goto error;
104
105 nv_wo32(fctx->ramfc, 0x00, chan->pushbuf_base);
106 nv_wo32(fctx->ramfc, 0x04, chan->pushbuf_base);
107 nv_wo32(fctx->ramfc, 0x0c, chan->pushbuf->pinst >> 4);
108 nv_wo32(fctx->ramfc, 0x18, 0x30000000 |
109 NV_PFIFO_CACHE1_DMA_FETCH_TRIG_128_BYTES |
110 NV_PFIFO_CACHE1_DMA_FETCH_SIZE_128_BYTES |
111 #ifdef __BIG_ENDIAN
112 NV_PFIFO_CACHE1_BIG_ENDIAN |
113 #endif
114 NV_PFIFO_CACHE1_DMA_FETCH_MAX_REQS_8);
115 nv_wo32(fctx->ramfc, 0x3c, 0x0001ffff);
116
117 /* enable dma mode on the channel */
118 spin_lock_irqsave(&dev_priv->context_switch_lock, flags);
119 nv_mask(dev, NV04_PFIFO_MODE, (1 << chan->id), (1 << chan->id));
120 spin_unlock_irqrestore(&dev_priv->context_switch_lock, flags);
121
122 /*XXX: remove this later, need fifo engine context commit hook */
123 nouveau_gpuobj_ref(fctx->ramfc, &chan->ramfc);
124
125 error:
126 if (ret)
127 priv->base.base.context_del(chan, engine);
128 return ret;
129 }
130
131 static int
132 nv40_fifo_init(struct drm_device *dev, int engine)
133 {
134 struct drm_nouveau_private *dev_priv = dev->dev_private;
135 struct nv40_fifo_priv *priv = nv_engine(dev, engine);
136 int i;
137
138 nv_mask(dev, NV03_PMC_ENABLE, NV_PMC_ENABLE_PFIFO, 0);
139 nv_mask(dev, NV03_PMC_ENABLE, NV_PMC_ENABLE_PFIFO, NV_PMC_ENABLE_PFIFO);
140
141 nv_wr32(dev, 0x002040, 0x000000ff);
142 nv_wr32(dev, 0x002044, 0x2101ffff);
143 nv_wr32(dev, 0x002058, 0x00000001);
144
145 nv_wr32(dev, NV03_PFIFO_RAMHT, (0x03 << 24) /* search 128 */ |
146 ((dev_priv->ramht->bits - 9) << 16) |
147 (dev_priv->ramht->gpuobj->pinst >> 8));
148 nv_wr32(dev, NV03_PFIFO_RAMRO, dev_priv->ramro->pinst >> 8);
149
150 switch (dev_priv->chipset) {
151 case 0x47:
152 case 0x49:
153 case 0x4b:
154 nv_wr32(dev, 0x002230, 0x00000001);
155 case 0x40:
156 case 0x41:
157 case 0x42:
158 case 0x43:
159 case 0x45:
160 case 0x48:
161 nv_wr32(dev, 0x002220, 0x00030002);
162 break;
163 default:
164 nv_wr32(dev, 0x002230, 0x00000000);
165 nv_wr32(dev, 0x002220, ((dev_priv->vram_size - 512 * 1024 +
166 dev_priv->ramfc->pinst) >> 16) |
167 0x00030000);
168 break;
169 }
170
171 nv_wr32(dev, NV03_PFIFO_CACHE1_PUSH1, priv->base.channels);
172
173 nv_wr32(dev, NV03_PFIFO_INTR_0, 0xffffffff);
174 nv_wr32(dev, NV03_PFIFO_INTR_EN_0, 0xffffffff);
175
176 nv_wr32(dev, NV03_PFIFO_CACHE1_PUSH0, 1);
177 nv_wr32(dev, NV04_PFIFO_CACHE1_PULL0, 1);
178 nv_wr32(dev, NV03_PFIFO_CACHES, 1);
179
180 for (i = 0; i < priv->base.channels; i++) {
181 if (dev_priv->channels.ptr[i])
182 nv_mask(dev, NV04_PFIFO_MODE, (1 << i), (1 << i));
183 }
184
185 return 0;
186 }
187
188 int
189 nv40_fifo_create(struct drm_device *dev)
190 {
191 struct drm_nouveau_private *dev_priv = dev->dev_private;
192 struct nv40_fifo_priv *priv;
193
194 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
195 if (!priv)
196 return -ENOMEM;
197
198 priv->base.base.destroy = nv04_fifo_destroy;
199 priv->base.base.init = nv40_fifo_init;
200 priv->base.base.fini = nv04_fifo_fini;
201 priv->base.base.context_new = nv40_fifo_context_new;
202 priv->base.base.context_del = nv04_fifo_context_del;
203 priv->base.channels = 31;
204 priv->ramfc_desc = nv40_ramfc;
205 dev_priv->eng[NVOBJ_ENGINE_FIFO] = &priv->base.base;
206
207 nouveau_irq_register(dev, 8, nv04_fifo_isr);
208 return 0;
209 }