drm/nv50: fix iommu errors caused by device reading from address 0
[safe/jmp/linux-2.6] / drivers / gpu / drm / nouveau / nv04_instmem.c
1 #include "drmP.h"
2 #include "drm.h"
3 #include "nouveau_drv.h"
4
5 /* returns the size of fifo context */
6 static int
7 nouveau_fifo_ctx_size(struct drm_device *dev)
8 {
9         struct drm_nouveau_private *dev_priv = dev->dev_private;
10
11         if (dev_priv->chipset >= 0x40)
12                 return 128;
13         else
14         if (dev_priv->chipset >= 0x17)
15                 return 64;
16
17         return 32;
18 }
19
20 static void
21 nv04_instmem_determine_amount(struct drm_device *dev)
22 {
23         struct drm_nouveau_private *dev_priv = dev->dev_private;
24         int i;
25
26         /* Figure out how much instance memory we need */
27         if (dev_priv->card_type >= NV_40) {
28                 /* We'll want more instance memory than this on some NV4x cards.
29                  * There's a 16MB aperture to play with that maps onto the end
30                  * of vram.  For now, only reserve a small piece until we know
31                  * more about what each chipset requires.
32                  */
33                 switch (dev_priv->chipset) {
34                 case 0x40:
35                 case 0x47:
36                 case 0x49:
37                 case 0x4b:
38                         dev_priv->ramin_rsvd_vram = (2 * 1024 * 1024);
39                         break;
40                 default:
41                         dev_priv->ramin_rsvd_vram = (1 * 1024 * 1024);
42                         break;
43                 }
44         } else {
45                 /*XXX: what *are* the limits on <NV40 cards?
46                  */
47                 dev_priv->ramin_rsvd_vram = (512 * 1024);
48         }
49         NV_DEBUG(dev, "RAMIN size: %dKiB\n", dev_priv->ramin_rsvd_vram >> 10);
50
51         /* Clear all of it, except the BIOS image that's in the first 64KiB */
52         dev_priv->engine.instmem.prepare_access(dev, true);
53         for (i = 64 * 1024; i < dev_priv->ramin_rsvd_vram; i += 4)
54                 nv_wi32(dev, i, 0x00000000);
55         dev_priv->engine.instmem.finish_access(dev);
56 }
57
58 static void
59 nv04_instmem_configure_fixed_tables(struct drm_device *dev)
60 {
61         struct drm_nouveau_private *dev_priv = dev->dev_private;
62         struct nouveau_engine *engine = &dev_priv->engine;
63
64         /* FIFO hash table (RAMHT)
65          *   use 4k hash table at RAMIN+0x10000
66          *   TODO: extend the hash table
67          */
68         dev_priv->ramht_offset = 0x10000;
69         dev_priv->ramht_bits   = 9;
70         dev_priv->ramht_size   = (1 << dev_priv->ramht_bits); /* nr entries */
71         dev_priv->ramht_size  *= 8; /* 2 32-bit values per entry in RAMHT */
72         NV_DEBUG(dev, "RAMHT offset=0x%x, size=%d\n", dev_priv->ramht_offset,
73                                                       dev_priv->ramht_size);
74
75         /* FIFO runout table (RAMRO) - 512k at 0x11200 */
76         dev_priv->ramro_offset = 0x11200;
77         dev_priv->ramro_size   = 512;
78         NV_DEBUG(dev, "RAMRO offset=0x%x, size=%d\n", dev_priv->ramro_offset,
79                                                       dev_priv->ramro_size);
80
81         /* FIFO context table (RAMFC)
82          *   NV40  : Not sure exactly how to position RAMFC on some cards,
83          *           0x30002 seems to position it at RAMIN+0x20000 on these
84          *           cards.  RAMFC is 4kb (32 fifos, 128byte entries).
85          *   Others: Position RAMFC at RAMIN+0x11400
86          */
87         dev_priv->ramfc_size = engine->fifo.channels *
88                                                 nouveau_fifo_ctx_size(dev);
89         switch (dev_priv->card_type) {
90         case NV_40:
91                 dev_priv->ramfc_offset = 0x20000;
92                 break;
93         case NV_30:
94         case NV_20:
95         case NV_10:
96         case NV_04:
97         default:
98                 dev_priv->ramfc_offset = 0x11400;
99                 break;
100         }
101         NV_DEBUG(dev, "RAMFC offset=0x%x, size=%d\n", dev_priv->ramfc_offset,
102                                                       dev_priv->ramfc_size);
103 }
104
105 int nv04_instmem_init(struct drm_device *dev)
106 {
107         struct drm_nouveau_private *dev_priv = dev->dev_private;
108         uint32_t offset;
109         int ret = 0;
110
111         nv04_instmem_determine_amount(dev);
112         nv04_instmem_configure_fixed_tables(dev);
113
114         /* Create a heap to manage RAMIN allocations, we don't allocate
115          * the space that was reserved for RAMHT/FC/RO.
116          */
117         offset = dev_priv->ramfc_offset + dev_priv->ramfc_size;
118
119         /* It appears RAMRO (or something?) is controlled by 0x2220/0x2230
120          * on certain NV4x chipsets as well as RAMFC.  When 0x2230 == 0
121          * ("new style" control) the upper 16-bits of 0x2220 points at this
122          * other mysterious table that's clobbering important things.
123          *
124          * We're now pointing this at RAMIN+0x30000 to avoid RAMFC getting
125          * smashed to pieces on us, so reserve 0x30000-0x40000 too..
126          */
127         if (dev_priv->card_type >= NV_40) {
128                 if (offset < 0x40000)
129                         offset = 0x40000;
130         }
131
132         ret = nouveau_mem_init_heap(&dev_priv->ramin_heap,
133                                     offset, dev_priv->ramin_rsvd_vram - offset);
134         if (ret) {
135                 dev_priv->ramin_heap = NULL;
136                 NV_ERROR(dev, "Failed to init RAMIN heap\n");
137         }
138
139         return ret;
140 }
141
142 void
143 nv04_instmem_takedown(struct drm_device *dev)
144 {
145 }
146
147 int
148 nv04_instmem_populate(struct drm_device *dev, struct nouveau_gpuobj *gpuobj, uint32_t *sz)
149 {
150         if (gpuobj->im_backing)
151                 return -EINVAL;
152
153         return 0;
154 }
155
156 void
157 nv04_instmem_clear(struct drm_device *dev, struct nouveau_gpuobj *gpuobj)
158 {
159         struct drm_nouveau_private *dev_priv = dev->dev_private;
160
161         if (gpuobj && gpuobj->im_backing) {
162                 if (gpuobj->im_bound)
163                         dev_priv->engine.instmem.unbind(dev, gpuobj);
164                 gpuobj->im_backing = NULL;
165         }
166 }
167
168 int
169 nv04_instmem_bind(struct drm_device *dev, struct nouveau_gpuobj *gpuobj)
170 {
171         if (!gpuobj->im_pramin || gpuobj->im_bound)
172                 return -EINVAL;
173
174         gpuobj->im_bound = 1;
175         return 0;
176 }
177
178 int
179 nv04_instmem_unbind(struct drm_device *dev, struct nouveau_gpuobj *gpuobj)
180 {
181         if (gpuobj->im_bound == 0)
182                 return -EINVAL;
183
184         gpuobj->im_bound = 0;
185         return 0;
186 }
187
188 void
189 nv04_instmem_prepare_access(struct drm_device *dev, bool write)
190 {
191 }
192
193 void
194 nv04_instmem_finish_access(struct drm_device *dev)
195 {
196 }
197
198 int
199 nv04_instmem_suspend(struct drm_device *dev)
200 {
201         return 0;
202 }
203
204 void
205 nv04_instmem_resume(struct drm_device *dev)
206 {
207 }
208