]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/gpu/drm/nouveau/nouveau_mem.c
drm/nouveau/pm: style fixes
[karo-tx-linux.git] / drivers / gpu / drm / nouveau / nouveau_mem.c
1 /*
2  * Copyright (C) The Weather Channel, Inc.  2002.  All Rights Reserved.
3  * Copyright 2005 Stephane Marchesin
4  *
5  * The Weather Channel (TM) funded Tungsten Graphics to develop the
6  * initial release of the Radeon 8500 driver under the XFree86 license.
7  * This notice must be preserved.
8  *
9  * Permission is hereby granted, free of charge, to any person obtaining a
10  * copy of this software and associated documentation files (the "Software"),
11  * to deal in the Software without restriction, including without limitation
12  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
13  * and/or sell copies of the Software, and to permit persons to whom the
14  * Software is furnished to do so, subject to the following conditions:
15  *
16  * The above copyright notice and this permission notice (including the next
17  * paragraph) shall be included in all copies or substantial portions of the
18  * Software.
19  *
20  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
23  * THE AUTHORS AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
24  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
25  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
26  * DEALINGS IN THE SOFTWARE.
27  *
28  * Authors:
29  *    Keith Whitwell <keith@tungstengraphics.com>
30  */
31
32
33 #include "drmP.h"
34 #include "drm.h"
35 #include "drm_sarea.h"
36
37 #include "nouveau_drv.h"
38 #include "nouveau_pm.h"
39 #include "nouveau_mm.h"
40 #include "nouveau_vm.h"
41
42 /*
43  * NV10-NV40 tiling helpers
44  */
45
46 static void
47 nv10_mem_update_tile_region(struct drm_device *dev,
48                             struct nouveau_tile_reg *tile, uint32_t addr,
49                             uint32_t size, uint32_t pitch, uint32_t flags)
50 {
51         struct drm_nouveau_private *dev_priv = dev->dev_private;
52         struct nouveau_fifo_engine *pfifo = &dev_priv->engine.fifo;
53         struct nouveau_fb_engine *pfb = &dev_priv->engine.fb;
54         int i = tile - dev_priv->tile.reg, j;
55         unsigned long save;
56
57         nouveau_fence_unref(&tile->fence);
58
59         if (tile->pitch)
60                 pfb->free_tile_region(dev, i);
61
62         if (pitch)
63                 pfb->init_tile_region(dev, i, addr, size, pitch, flags);
64
65         spin_lock_irqsave(&dev_priv->context_switch_lock, save);
66         pfifo->reassign(dev, false);
67         pfifo->cache_pull(dev, false);
68
69         nouveau_wait_for_idle(dev);
70
71         pfb->set_tile_region(dev, i);
72         for (j = 0; j < NVOBJ_ENGINE_NR; j++) {
73                 if (dev_priv->eng[j] && dev_priv->eng[j]->set_tile_region)
74                         dev_priv->eng[j]->set_tile_region(dev, i);
75         }
76
77         pfifo->cache_pull(dev, true);
78         pfifo->reassign(dev, true);
79         spin_unlock_irqrestore(&dev_priv->context_switch_lock, save);
80 }
81
82 static struct nouveau_tile_reg *
83 nv10_mem_get_tile_region(struct drm_device *dev, int i)
84 {
85         struct drm_nouveau_private *dev_priv = dev->dev_private;
86         struct nouveau_tile_reg *tile = &dev_priv->tile.reg[i];
87
88         spin_lock(&dev_priv->tile.lock);
89
90         if (!tile->used &&
91             (!tile->fence || nouveau_fence_signalled(tile->fence)))
92                 tile->used = true;
93         else
94                 tile = NULL;
95
96         spin_unlock(&dev_priv->tile.lock);
97         return tile;
98 }
99
100 void
101 nv10_mem_put_tile_region(struct drm_device *dev, struct nouveau_tile_reg *tile,
102                          struct nouveau_fence *fence)
103 {
104         struct drm_nouveau_private *dev_priv = dev->dev_private;
105
106         if (tile) {
107                 spin_lock(&dev_priv->tile.lock);
108                 if (fence) {
109                         /* Mark it as pending. */
110                         tile->fence = fence;
111                         nouveau_fence_ref(fence);
112                 }
113
114                 tile->used = false;
115                 spin_unlock(&dev_priv->tile.lock);
116         }
117 }
118
119 struct nouveau_tile_reg *
120 nv10_mem_set_tiling(struct drm_device *dev, uint32_t addr, uint32_t size,
121                     uint32_t pitch, uint32_t flags)
122 {
123         struct drm_nouveau_private *dev_priv = dev->dev_private;
124         struct nouveau_fb_engine *pfb = &dev_priv->engine.fb;
125         struct nouveau_tile_reg *tile, *found = NULL;
126         int i;
127
128         for (i = 0; i < pfb->num_tiles; i++) {
129                 tile = nv10_mem_get_tile_region(dev, i);
130
131                 if (pitch && !found) {
132                         found = tile;
133                         continue;
134
135                 } else if (tile && tile->pitch) {
136                         /* Kill an unused tile region. */
137                         nv10_mem_update_tile_region(dev, tile, 0, 0, 0, 0);
138                 }
139
140                 nv10_mem_put_tile_region(dev, tile, NULL);
141         }
142
143         if (found)
144                 nv10_mem_update_tile_region(dev, found, addr, size,
145                                             pitch, flags);
146         return found;
147 }
148
149 /*
150  * Cleanup everything
151  */
152 void
153 nouveau_mem_vram_fini(struct drm_device *dev)
154 {
155         struct drm_nouveau_private *dev_priv = dev->dev_private;
156
157         ttm_bo_device_release(&dev_priv->ttm.bdev);
158
159         nouveau_ttm_global_release(dev_priv);
160
161         if (dev_priv->fb_mtrr >= 0) {
162                 drm_mtrr_del(dev_priv->fb_mtrr,
163                              pci_resource_start(dev->pdev, 1),
164                              pci_resource_len(dev->pdev, 1), DRM_MTRR_WC);
165                 dev_priv->fb_mtrr = -1;
166         }
167 }
168
169 void
170 nouveau_mem_gart_fini(struct drm_device *dev)
171 {
172         nouveau_sgdma_takedown(dev);
173
174         if (drm_core_has_AGP(dev) && dev->agp) {
175                 struct drm_agp_mem *entry, *tempe;
176
177                 /* Remove AGP resources, but leave dev->agp
178                    intact until drv_cleanup is called. */
179                 list_for_each_entry_safe(entry, tempe, &dev->agp->memory, head) {
180                         if (entry->bound)
181                                 drm_unbind_agp(entry->memory);
182                         drm_free_agp(entry->memory, entry->pages);
183                         kfree(entry);
184                 }
185                 INIT_LIST_HEAD(&dev->agp->memory);
186
187                 if (dev->agp->acquired)
188                         drm_agp_release(dev);
189
190                 dev->agp->acquired = 0;
191                 dev->agp->enabled = 0;
192         }
193 }
194
195 bool
196 nouveau_mem_flags_valid(struct drm_device *dev, u32 tile_flags)
197 {
198         if (!(tile_flags & NOUVEAU_GEM_TILE_LAYOUT_MASK))
199                 return true;
200
201         return false;
202 }
203
204 #if __OS_HAS_AGP
205 static unsigned long
206 get_agp_mode(struct drm_device *dev, unsigned long mode)
207 {
208         struct drm_nouveau_private *dev_priv = dev->dev_private;
209
210         /*
211          * FW seems to be broken on nv18, it makes the card lock up
212          * randomly.
213          */
214         if (dev_priv->chipset == 0x18)
215                 mode &= ~PCI_AGP_COMMAND_FW;
216
217         /*
218          * AGP mode set in the command line.
219          */
220         if (nouveau_agpmode > 0) {
221                 bool agpv3 = mode & 0x8;
222                 int rate = agpv3 ? nouveau_agpmode / 4 : nouveau_agpmode;
223
224                 mode = (mode & ~0x7) | (rate & 0x7);
225         }
226
227         return mode;
228 }
229 #endif
230
231 int
232 nouveau_mem_reset_agp(struct drm_device *dev)
233 {
234 #if __OS_HAS_AGP
235         uint32_t saved_pci_nv_1, pmc_enable;
236         int ret;
237
238         /* First of all, disable fast writes, otherwise if it's
239          * already enabled in the AGP bridge and we disable the card's
240          * AGP controller we might be locking ourselves out of it. */
241         if ((nv_rd32(dev, NV04_PBUS_PCI_NV_19) |
242              dev->agp->mode) & PCI_AGP_COMMAND_FW) {
243                 struct drm_agp_info info;
244                 struct drm_agp_mode mode;
245
246                 ret = drm_agp_info(dev, &info);
247                 if (ret)
248                         return ret;
249
250                 mode.mode = get_agp_mode(dev, info.mode) & ~PCI_AGP_COMMAND_FW;
251                 ret = drm_agp_enable(dev, mode);
252                 if (ret)
253                         return ret;
254         }
255
256         saved_pci_nv_1 = nv_rd32(dev, NV04_PBUS_PCI_NV_1);
257
258         /* clear busmaster bit */
259         nv_wr32(dev, NV04_PBUS_PCI_NV_1, saved_pci_nv_1 & ~0x4);
260         /* disable AGP */
261         nv_wr32(dev, NV04_PBUS_PCI_NV_19, 0);
262
263         /* power cycle pgraph, if enabled */
264         pmc_enable = nv_rd32(dev, NV03_PMC_ENABLE);
265         if (pmc_enable & NV_PMC_ENABLE_PGRAPH) {
266                 nv_wr32(dev, NV03_PMC_ENABLE,
267                                 pmc_enable & ~NV_PMC_ENABLE_PGRAPH);
268                 nv_wr32(dev, NV03_PMC_ENABLE, nv_rd32(dev, NV03_PMC_ENABLE) |
269                                 NV_PMC_ENABLE_PGRAPH);
270         }
271
272         /* and restore (gives effect of resetting AGP) */
273         nv_wr32(dev, NV04_PBUS_PCI_NV_1, saved_pci_nv_1);
274 #endif
275
276         return 0;
277 }
278
279 int
280 nouveau_mem_init_agp(struct drm_device *dev)
281 {
282 #if __OS_HAS_AGP
283         struct drm_nouveau_private *dev_priv = dev->dev_private;
284         struct drm_agp_info info;
285         struct drm_agp_mode mode;
286         int ret;
287
288         if (!dev->agp->acquired) {
289                 ret = drm_agp_acquire(dev);
290                 if (ret) {
291                         NV_ERROR(dev, "Unable to acquire AGP: %d\n", ret);
292                         return ret;
293                 }
294         }
295
296         nouveau_mem_reset_agp(dev);
297
298         ret = drm_agp_info(dev, &info);
299         if (ret) {
300                 NV_ERROR(dev, "Unable to get AGP info: %d\n", ret);
301                 return ret;
302         }
303
304         /* see agp.h for the AGPSTAT_* modes available */
305         mode.mode = get_agp_mode(dev, info.mode);
306         ret = drm_agp_enable(dev, mode);
307         if (ret) {
308                 NV_ERROR(dev, "Unable to enable AGP: %d\n", ret);
309                 return ret;
310         }
311
312         dev_priv->gart_info.type        = NOUVEAU_GART_AGP;
313         dev_priv->gart_info.aper_base   = info.aperture_base;
314         dev_priv->gart_info.aper_size   = info.aperture_size;
315 #endif
316         return 0;
317 }
318
319 static const struct vram_types {
320         int value;
321         const char *name;
322 } vram_type_map[] = {
323         { NV_MEM_TYPE_STOLEN , "stolen system memory" },
324         { NV_MEM_TYPE_SGRAM  , "SGRAM" },
325         { NV_MEM_TYPE_SDRAM  , "SDRAM" },
326         { NV_MEM_TYPE_DDR1   , "DDR1" },
327         { NV_MEM_TYPE_DDR2   , "DDR2" },
328         { NV_MEM_TYPE_DDR3   , "DDR3" },
329         { NV_MEM_TYPE_GDDR2  , "GDDR2" },
330         { NV_MEM_TYPE_GDDR3  , "GDDR3" },
331         { NV_MEM_TYPE_GDDR4  , "GDDR4" },
332         { NV_MEM_TYPE_GDDR5  , "GDDR5" },
333         { NV_MEM_TYPE_UNKNOWN, "unknown type" }
334 };
335
336 int
337 nouveau_mem_vram_init(struct drm_device *dev)
338 {
339         struct drm_nouveau_private *dev_priv = dev->dev_private;
340         struct ttm_bo_device *bdev = &dev_priv->ttm.bdev;
341         const struct vram_types *vram_type;
342         int ret, dma_bits;
343
344         dma_bits = 32;
345         if (dev_priv->card_type >= NV_50) {
346                 if (pci_dma_supported(dev->pdev, DMA_BIT_MASK(40)))
347                         dma_bits = 40;
348         } else
349         if (0 && pci_is_pcie(dev->pdev) &&
350             dev_priv->chipset  > 0x40 &&
351             dev_priv->chipset != 0x45) {
352                 if (pci_dma_supported(dev->pdev, DMA_BIT_MASK(39)))
353                         dma_bits = 39;
354         }
355
356         ret = pci_set_dma_mask(dev->pdev, DMA_BIT_MASK(dma_bits));
357         if (ret)
358                 return ret;
359         ret = pci_set_consistent_dma_mask(dev->pdev, DMA_BIT_MASK(dma_bits));
360         if (ret) {
361                 /* Reset to default value. */
362                 pci_set_consistent_dma_mask(dev->pdev, DMA_BIT_MASK(32));
363         }
364
365
366         ret = nouveau_ttm_global_init(dev_priv);
367         if (ret)
368                 return ret;
369
370         ret = ttm_bo_device_init(&dev_priv->ttm.bdev,
371                                  dev_priv->ttm.bo_global_ref.ref.object,
372                                  &nouveau_bo_driver, DRM_FILE_PAGE_OFFSET,
373                                  dma_bits <= 32 ? true : false);
374         if (ret) {
375                 NV_ERROR(dev, "Error initialising bo driver: %d\n", ret);
376                 return ret;
377         }
378
379         vram_type = vram_type_map;
380         while (vram_type->value != NV_MEM_TYPE_UNKNOWN) {
381                 if (nouveau_vram_type) {
382                         if (!strcasecmp(nouveau_vram_type, vram_type->name))
383                                 break;
384                         dev_priv->vram_type = vram_type->value;
385                 } else {
386                         if (vram_type->value == dev_priv->vram_type)
387                                 break;
388                 }
389                 vram_type++;
390         }
391
392         NV_INFO(dev, "Detected %dMiB VRAM (%s)\n",
393                 (int)(dev_priv->vram_size >> 20), vram_type->name);
394         if (dev_priv->vram_sys_base) {
395                 NV_INFO(dev, "Stolen system memory at: 0x%010llx\n",
396                         dev_priv->vram_sys_base);
397         }
398
399         dev_priv->fb_available_size = dev_priv->vram_size;
400         dev_priv->fb_mappable_pages = dev_priv->fb_available_size;
401         if (dev_priv->fb_mappable_pages > pci_resource_len(dev->pdev, 1))
402                 dev_priv->fb_mappable_pages = pci_resource_len(dev->pdev, 1);
403         dev_priv->fb_mappable_pages >>= PAGE_SHIFT;
404
405         dev_priv->fb_available_size -= dev_priv->ramin_rsvd_vram;
406         dev_priv->fb_aper_free = dev_priv->fb_available_size;
407
408         /* mappable vram */
409         ret = ttm_bo_init_mm(bdev, TTM_PL_VRAM,
410                              dev_priv->fb_available_size >> PAGE_SHIFT);
411         if (ret) {
412                 NV_ERROR(dev, "Failed VRAM mm init: %d\n", ret);
413                 return ret;
414         }
415
416         if (dev_priv->card_type < NV_50) {
417                 ret = nouveau_bo_new(dev, 256*1024, 0, TTM_PL_FLAG_VRAM,
418                                      0, 0, &dev_priv->vga_ram);
419                 if (ret == 0)
420                         ret = nouveau_bo_pin(dev_priv->vga_ram,
421                                              TTM_PL_FLAG_VRAM);
422
423                 if (ret) {
424                         NV_WARN(dev, "failed to reserve VGA memory\n");
425                         nouveau_bo_ref(NULL, &dev_priv->vga_ram);
426                 }
427         }
428
429         dev_priv->fb_mtrr = drm_mtrr_add(pci_resource_start(dev->pdev, 1),
430                                          pci_resource_len(dev->pdev, 1),
431                                          DRM_MTRR_WC);
432         return 0;
433 }
434
435 int
436 nouveau_mem_gart_init(struct drm_device *dev)
437 {
438         struct drm_nouveau_private *dev_priv = dev->dev_private;
439         struct ttm_bo_device *bdev = &dev_priv->ttm.bdev;
440         int ret;
441
442         dev_priv->gart_info.type = NOUVEAU_GART_NONE;
443
444 #if !defined(__powerpc__) && !defined(__ia64__)
445         if (drm_pci_device_is_agp(dev) && dev->agp && nouveau_agpmode) {
446                 ret = nouveau_mem_init_agp(dev);
447                 if (ret)
448                         NV_ERROR(dev, "Error initialising AGP: %d\n", ret);
449         }
450 #endif
451
452         if (dev_priv->gart_info.type == NOUVEAU_GART_NONE) {
453                 ret = nouveau_sgdma_init(dev);
454                 if (ret) {
455                         NV_ERROR(dev, "Error initialising PCI(E): %d\n", ret);
456                         return ret;
457                 }
458         }
459
460         NV_INFO(dev, "%d MiB GART (aperture)\n",
461                 (int)(dev_priv->gart_info.aper_size >> 20));
462         dev_priv->gart_info.aper_free = dev_priv->gart_info.aper_size;
463
464         ret = ttm_bo_init_mm(bdev, TTM_PL_TT,
465                              dev_priv->gart_info.aper_size >> PAGE_SHIFT);
466         if (ret) {
467                 NV_ERROR(dev, "Failed TT mm init: %d\n", ret);
468                 return ret;
469         }
470
471         return 0;
472 }
473
474 /* XXX: For now a dummy. More samples required, possibly even a card
475  * Called from nouveau_perf.c */
476 void nv30_mem_timing_entry(struct drm_device *dev,
477                            struct nouveau_pm_tbl_header *hdr,
478                            struct nouveau_pm_tbl_entry *e, uint8_t magic_number,
479                            struct nouveau_pm_memtiming *timing)
480 {
481
482         NV_DEBUG(dev, "Timing entry format unknown, "
483                       "please contact nouveau developers");
484 }
485
486 void nv40_mem_timing_entry(struct drm_device *dev,
487                            struct nouveau_pm_tbl_header *hdr,
488                            struct nouveau_pm_tbl_entry *e, uint8_t magic_number,
489                            struct nouveau_pm_memtiming *timing)
490 {
491
492         timing->reg_0 = (e->tRC << 24 | e->tRFC << 16 | e->tRAS << 8 | e->tRP);
493
494         /* XXX: I don't trust the -1's and +1's... they must come
495          *      from somewhere! */
496         timing->reg_1 = (e->tWR + 2 + magic_number) << 24 |
497                                   1 << 16 |
498                                   (e->tUNK_1 + 2 + magic_number) << 8 |
499                                   (e->tCL + 2 - magic_number);
500         timing->reg_2 = magic_number << 24 | e->tUNK_12 << 16 |
501                                 e->tUNK_11 << 8 | e->tUNK_10;
502         timing->reg_2 |= 0x20200000;
503
504         NV_DEBUG(dev, "Entry %d: 220: %08x %08x %08x\n", timing->id,
505                  timing->reg_0, timing->reg_1, timing->reg_2);
506 }
507
508 void nv50_mem_timing_entry(struct drm_device *dev, struct bit_entry *P,
509                            struct nouveau_pm_tbl_header *hdr,
510                            struct nouveau_pm_tbl_entry *e, uint8_t magic_number,
511                            struct nouveau_pm_memtiming *timing)
512 {
513         struct drm_nouveau_private *dev_priv = dev->dev_private;
514
515         uint8_t unk18 = 1,
516                 unk19 = 1,
517                 unk20 = 0,
518                 unk21 = 0;
519
520         switch (min(hdr->entry_len, (u8) 22)) {
521         case 22:
522                 unk21 = e->tUNK_21;
523         case 21:
524                 unk20 = e->tUNK_20;
525         case 20:
526                 unk19 = e->tUNK_19;
527         case 19:
528                 unk18 = e->tUNK_18;
529                 break;
530         }
531
532         timing->reg_0 = (e->tRC << 24 | e->tRFC << 16 | e->tRAS << 8 | e->tRP);
533
534         /* XXX: I don't trust the -1's and +1's... they must come
535          *      from somewhere! */
536         timing->reg_1 = (e->tWR + unk19 + 1 + magic_number) << 24 |
537                                   max(unk18, (u8) 1) << 16 |
538                                   (e->tUNK_1 + unk19 + 1 + magic_number) << 8;
539         if (dev_priv->chipset == 0xa8)
540                 timing->reg_1 |= (e->tCL - 1);
541         else
542                 timing->reg_1 |= (e->tCL + 2 - magic_number);
543
544         timing->reg_2 = (e->tUNK_12 << 16 | e->tUNK_11 << 8 | e->tUNK_10);
545
546         timing->reg_5 = (e->tRAS << 24 | e->tRC);
547         timing->reg_5 += max(e->tUNK_10, e->tUNK_11) << 16;
548
549         if (P->version == 1) {
550                 timing->reg_2 |= magic_number << 24;
551
552                 timing->reg_3 = (0x14 + e->tCL) << 24 |
553                                         0x16 << 16 |
554                                         (e->tCL - 1) << 8 |
555                                         (e->tCL - 1);
556
557                 timing->reg_4 = (nv_rd32(dev, 0x10022c) & 0xffff0000) |
558                                         e->tUNK_13 << 8  | e->tUNK_13;
559
560                 timing->reg_5 |= (e->tCL + 2) << 8;
561
562                 timing->reg_7 = 0x4000202 | (e->tCL - 1) << 16;
563         } else {
564                 timing->reg_2 |= (unk19 - 1) << 24;
565                 /* XXX: reg_10022c for recentish cards pretty much unknown*/
566                 timing->reg_3 = e->tCL - 1;
567                 timing->reg_4 = (unk20 << 24 | unk21 << 16 |
568                                         e->tUNK_13 << 8  | e->tUNK_13);
569                 /* XXX: +6? */
570                 timing->reg_5 |= (unk19 + 6) << 8;
571
572                 /* XXX: reg_10023c currently unknown
573                  * 10023c seen as 06xxxxxx, 0bxxxxxx or 0fxxxxxx */
574                 timing->reg_7 = 0x202;
575         }
576
577         NV_DEBUG(dev, "Entry %d: 220: %08x %08x %08x %08x\n", timing->id,
578                  timing->reg_0, timing->reg_1,
579                  timing->reg_2, timing->reg_3);
580         NV_DEBUG(dev, "         230: %08x %08x %08x %08x\n",
581                  timing->reg_4, timing->reg_5,
582                  timing->reg_6, timing->reg_7);
583         NV_DEBUG(dev, "         240: %08x\n", timing->reg_8);
584 }
585
586 void nvc0_mem_timing_entry(struct drm_device *dev,
587                            struct nouveau_pm_tbl_header *hdr,
588                            struct nouveau_pm_tbl_entry *e,
589                            struct nouveau_pm_memtiming *timing)
590 {
591         timing->reg_0 = (e->tRC << 24 | (e->tRFC & 0x7f) << 17 |
592                                 e->tRAS << 8 | e->tRP);
593
594         timing->reg_1 = (nv_rd32(dev, 0x10f294) & 0xff000000) |
595                                 (e->tUNK_11&0x0f) << 20 | (e->tUNK_19 << 7) |
596                                 (e->tCL & 0x0f);
597
598         timing->reg_2 = (nv_rd32(dev, 0x10f298) & 0xff0000ff) |
599                         e->tWR << 16 | e->tUNK_1 << 8;
600
601         timing->reg_3 = e->tUNK_20 << 9 | e->tUNK_13;
602
603         timing->reg_4 = (nv_rd32(dev, 0x10f2a0) & 0xfff000ff) |
604                                 e->tUNK_12 << 15;
605
606         NV_DEBUG(dev, "Entry %d: 290: %08x %08x %08x %08x\n", timing->id,
607                  timing->reg_0, timing->reg_1,
608                  timing->reg_2, timing->reg_3);
609         NV_DEBUG(dev, "         2a0: %08x %08x %08x %08x\n",
610                  timing->reg_4, timing->reg_5,
611                  timing->reg_6, timing->reg_7);
612 }
613
614 /**
615  * Processes the Memory Timing BIOS table, stores generated
616  * register values
617  * @pre init scripts were run, memtiming regs are initialized
618  */
619 void
620 nouveau_mem_timing_init(struct drm_device *dev)
621 {
622         struct drm_nouveau_private *dev_priv = dev->dev_private;
623         struct nouveau_pm_engine *pm = &dev_priv->engine.pm;
624         struct nouveau_pm_memtimings *memtimings = &pm->memtimings;
625         struct nvbios *bios = &dev_priv->vbios;
626         struct bit_entry P;
627         struct nouveau_pm_tbl_header *hdr = NULL;
628         uint8_t magic_number;
629         u8 *entry;
630         int i;
631
632         if (bios->type == NVBIOS_BIT) {
633                 if (bit_table(dev, 'P', &P))
634                         return;
635
636                 if (P.version == 1)
637                         hdr = (struct nouveau_pm_tbl_header *) ROMPTR(dev,
638                                                                      P.data[4]);
639                 else if (P.version == 2)
640                         hdr = (struct nouveau_pm_tbl_header *) ROMPTR(dev,
641                                                                      P.data[8]);
642                 else
643                         NV_WARN(dev, "unknown mem for BIT P %d\n", P.version);
644         } else {
645                 NV_DEBUG(dev, "BMP version too old for memory\n");
646                 return;
647         }
648
649         if (!hdr) {
650                 NV_DEBUG(dev, "memory timing table pointer invalid\n");
651                 return;
652         }
653
654         if (hdr->version != 0x10) {
655                 NV_WARN(dev, "memory timing table 0x%02x unknown\n",
656                         hdr->version);
657                 return;
658         }
659
660         /* validate record length */
661         if (hdr->entry_len < 15) {
662                 NV_ERROR(dev, "mem timing table length unknown: %d\n",
663                          hdr->entry_len);
664                 return;
665         }
666
667         /* parse vbios entries into common format */
668         memtimings->timing = kcalloc(hdr->entry_cnt,
669                                      sizeof(*memtimings->timing), GFP_KERNEL);
670         if (!memtimings->timing)
671                 return;
672
673         /* Get "some number" from the timing reg for NV_40 and NV_50
674          * Used in calculations later... source unknown */
675         magic_number = 0;
676         if (P.version == 1)
677                 magic_number = (nv_rd32(dev, 0x100228) & 0x0f000000) >> 24;
678
679         entry = (u8 *) hdr + hdr->header_len;
680         for (i = 0; i < hdr->entry_cnt; i++, entry += hdr->entry_len) {
681                 struct nouveau_pm_memtiming *timing = &pm->memtimings.timing[i];
682                 struct nouveau_pm_tbl_entry *entry_struct =
683                                           (struct nouveau_pm_tbl_entry *) entry;
684                 if (entry[0] == 0)
685                         continue;
686
687                 timing->id = i;
688                 timing->WR = entry[0];
689                 timing->CL = entry[2];
690
691                 if (dev_priv->card_type <= NV_40) {
692                         nv40_mem_timing_entry(dev, hdr, entry_struct,
693                                               magic_number,
694                                               &pm->memtimings.timing[i]);
695                 } else if (dev_priv->card_type == NV_50) {
696                         nv50_mem_timing_entry(dev, &P, hdr, entry_struct,
697                                               magic_number,
698                                               &pm->memtimings.timing[i]);
699                 } else if (dev_priv->card_type == NV_C0) {
700                         nvc0_mem_timing_entry(dev, hdr, entry_struct,
701                                               &pm->memtimings.timing[i]);
702                 }
703         }
704
705         memtimings->nr_timing = hdr->entry_cnt;
706         memtimings->supported = (P.version == 1);
707 }
708
709 void
710 nouveau_mem_timing_fini(struct drm_device *dev)
711 {
712         struct drm_nouveau_private *dev_priv = dev->dev_private;
713         struct nouveau_pm_memtimings *mem = &dev_priv->engine.pm.memtimings;
714
715         kfree(mem->timing);
716         mem->timing = NULL;
717 }
718
719 int
720 nouveau_mem_vbios_type(struct drm_device *dev)
721 {
722         struct bit_entry M;
723         u8 ramcfg = (nv_rd32(dev, 0x101000) & 0x0000003c) >> 2;
724         if (!bit_table(dev, 'M', &M) || M.version != 2 || M.length < 5) {
725                 u8 *table = ROMPTR(dev, M.data[3]);
726                 if (table && table[0] == 0x10 && ramcfg < table[3]) {
727                         u8 *entry = table + table[1] + (ramcfg * table[2]);
728                         switch (entry[0] & 0x0f) {
729                         case 0: return NV_MEM_TYPE_DDR2;
730                         case 1: return NV_MEM_TYPE_DDR3;
731                         case 2: return NV_MEM_TYPE_GDDR3;
732                         case 3: return NV_MEM_TYPE_GDDR5;
733                         default:
734                                 break;
735                         }
736
737                 }
738         }
739         return NV_MEM_TYPE_UNKNOWN;
740 }
741
742 static int
743 nouveau_vram_manager_init(struct ttm_mem_type_manager *man, unsigned long psize)
744 {
745         /* nothing to do */
746         return 0;
747 }
748
749 static int
750 nouveau_vram_manager_fini(struct ttm_mem_type_manager *man)
751 {
752         /* nothing to do */
753         return 0;
754 }
755
756 static inline void
757 nouveau_mem_node_cleanup(struct nouveau_mem *node)
758 {
759         if (node->vma[0].node) {
760                 nouveau_vm_unmap(&node->vma[0]);
761                 nouveau_vm_put(&node->vma[0]);
762         }
763
764         if (node->vma[1].node) {
765                 nouveau_vm_unmap(&node->vma[1]);
766                 nouveau_vm_put(&node->vma[1]);
767         }
768 }
769
770 static void
771 nouveau_vram_manager_del(struct ttm_mem_type_manager *man,
772                          struct ttm_mem_reg *mem)
773 {
774         struct drm_nouveau_private *dev_priv = nouveau_bdev(man->bdev);
775         struct nouveau_vram_engine *vram = &dev_priv->engine.vram;
776         struct drm_device *dev = dev_priv->dev;
777
778         nouveau_mem_node_cleanup(mem->mm_node);
779         vram->put(dev, (struct nouveau_mem **)&mem->mm_node);
780 }
781
782 static int
783 nouveau_vram_manager_new(struct ttm_mem_type_manager *man,
784                          struct ttm_buffer_object *bo,
785                          struct ttm_placement *placement,
786                          struct ttm_mem_reg *mem)
787 {
788         struct drm_nouveau_private *dev_priv = nouveau_bdev(man->bdev);
789         struct nouveau_vram_engine *vram = &dev_priv->engine.vram;
790         struct drm_device *dev = dev_priv->dev;
791         struct nouveau_bo *nvbo = nouveau_bo(bo);
792         struct nouveau_mem *node;
793         u32 size_nc = 0;
794         int ret;
795
796         if (nvbo->tile_flags & NOUVEAU_GEM_TILE_NONCONTIG)
797                 size_nc = 1 << nvbo->page_shift;
798
799         ret = vram->get(dev, mem->num_pages << PAGE_SHIFT,
800                         mem->page_alignment << PAGE_SHIFT, size_nc,
801                         (nvbo->tile_flags >> 8) & 0x3ff, &node);
802         if (ret) {
803                 mem->mm_node = NULL;
804                 return (ret == -ENOSPC) ? 0 : ret;
805         }
806
807         node->page_shift = nvbo->page_shift;
808
809         mem->mm_node = node;
810         mem->start   = node->offset >> PAGE_SHIFT;
811         return 0;
812 }
813
814 void
815 nouveau_vram_manager_debug(struct ttm_mem_type_manager *man, const char *prefix)
816 {
817         struct nouveau_mm *mm = man->priv;
818         struct nouveau_mm_node *r;
819         u32 total = 0, free = 0;
820
821         mutex_lock(&mm->mutex);
822         list_for_each_entry(r, &mm->nodes, nl_entry) {
823                 printk(KERN_DEBUG "%s %d: 0x%010llx 0x%010llx\n",
824                        prefix, r->type, ((u64)r->offset << 12),
825                        (((u64)r->offset + r->length) << 12));
826
827                 total += r->length;
828                 if (!r->type)
829                         free += r->length;
830         }
831         mutex_unlock(&mm->mutex);
832
833         printk(KERN_DEBUG "%s  total: 0x%010llx free: 0x%010llx\n",
834                prefix, (u64)total << 12, (u64)free << 12);
835         printk(KERN_DEBUG "%s  block: 0x%08x\n",
836                prefix, mm->block_size << 12);
837 }
838
839 const struct ttm_mem_type_manager_func nouveau_vram_manager = {
840         nouveau_vram_manager_init,
841         nouveau_vram_manager_fini,
842         nouveau_vram_manager_new,
843         nouveau_vram_manager_del,
844         nouveau_vram_manager_debug
845 };
846
847 static int
848 nouveau_gart_manager_init(struct ttm_mem_type_manager *man, unsigned long psize)
849 {
850         return 0;
851 }
852
853 static int
854 nouveau_gart_manager_fini(struct ttm_mem_type_manager *man)
855 {
856         return 0;
857 }
858
859 static void
860 nouveau_gart_manager_del(struct ttm_mem_type_manager *man,
861                          struct ttm_mem_reg *mem)
862 {
863         nouveau_mem_node_cleanup(mem->mm_node);
864         kfree(mem->mm_node);
865         mem->mm_node = NULL;
866 }
867
868 static int
869 nouveau_gart_manager_new(struct ttm_mem_type_manager *man,
870                          struct ttm_buffer_object *bo,
871                          struct ttm_placement *placement,
872                          struct ttm_mem_reg *mem)
873 {
874         struct drm_nouveau_private *dev_priv = nouveau_bdev(bo->bdev);
875         struct nouveau_mem *node;
876
877         if (unlikely((mem->num_pages << PAGE_SHIFT) >=
878                      dev_priv->gart_info.aper_size))
879                 return -ENOMEM;
880
881         node = kzalloc(sizeof(*node), GFP_KERNEL);
882         if (!node)
883                 return -ENOMEM;
884         node->page_shift = 12;
885
886         mem->mm_node = node;
887         mem->start   = 0;
888         return 0;
889 }
890
891 void
892 nouveau_gart_manager_debug(struct ttm_mem_type_manager *man, const char *prefix)
893 {
894 }
895
896 const struct ttm_mem_type_manager_func nouveau_gart_manager = {
897         nouveau_gart_manager_init,
898         nouveau_gart_manager_fini,
899         nouveau_gart_manager_new,
900         nouveau_gart_manager_del,
901         nouveau_gart_manager_debug
902 };