MIPS: Yosemite, Emma: Fix off-by-two in arcs_cmdline buffer size check
[linux-2.6/linux-mips.git] / drivers / gpu / drm / nouveau / nouveau_mem.c
blob36bec4807701b2e1afb043496c0dbe4a55d3a5ec
1 /*
2 * Copyright (C) The Weather Channel, Inc. 2002. All Rights Reserved.
3 * Copyright 2005 Stephane Marchesin
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.
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:
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.
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.
28 * Authors:
29 * Keith Whitwell <keith@tungstengraphics.com>
33 #include "drmP.h"
34 #include "drm.h"
35 #include "drm_sarea.h"
37 #include "nouveau_drv.h"
38 #include "nouveau_pm.h"
39 #include "nouveau_mm.h"
40 #include "nouveau_vm.h"
43 * NV10-NV40 tiling helpers
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)
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;
57 nouveau_fence_unref(&tile->fence);
59 if (tile->pitch)
60 pfb->free_tile_region(dev, i);
62 if (pitch)
63 pfb->init_tile_region(dev, i, addr, size, pitch, flags);
65 spin_lock_irqsave(&dev_priv->context_switch_lock, save);
66 pfifo->reassign(dev, false);
67 pfifo->cache_pull(dev, false);
69 nouveau_wait_for_idle(dev);
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);
77 pfifo->cache_pull(dev, true);
78 pfifo->reassign(dev, true);
79 spin_unlock_irqrestore(&dev_priv->context_switch_lock, save);
82 static struct nouveau_tile_reg *
83 nv10_mem_get_tile_region(struct drm_device *dev, int i)
85 struct drm_nouveau_private *dev_priv = dev->dev_private;
86 struct nouveau_tile_reg *tile = &dev_priv->tile.reg[i];
88 spin_lock(&dev_priv->tile.lock);
90 if (!tile->used &&
91 (!tile->fence || nouveau_fence_signalled(tile->fence)))
92 tile->used = true;
93 else
94 tile = NULL;
96 spin_unlock(&dev_priv->tile.lock);
97 return tile;
100 void
101 nv10_mem_put_tile_region(struct drm_device *dev, struct nouveau_tile_reg *tile,
102 struct nouveau_fence *fence)
104 struct drm_nouveau_private *dev_priv = dev->dev_private;
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);
114 tile->used = false;
115 spin_unlock(&dev_priv->tile.lock);
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)
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;
128 for (i = 0; i < pfb->num_tiles; i++) {
129 tile = nv10_mem_get_tile_region(dev, i);
131 if (pitch && !found) {
132 found = tile;
133 continue;
135 } else if (tile && tile->pitch) {
136 /* Kill an unused tile region. */
137 nv10_mem_update_tile_region(dev, tile, 0, 0, 0, 0);
140 nv10_mem_put_tile_region(dev, tile, NULL);
143 if (found)
144 nv10_mem_update_tile_region(dev, found, addr, size,
145 pitch, flags);
146 return found;
150 * Cleanup everything
152 void
153 nouveau_mem_vram_fini(struct drm_device *dev)
155 struct drm_nouveau_private *dev_priv = dev->dev_private;
157 ttm_bo_device_release(&dev_priv->ttm.bdev);
159 nouveau_ttm_global_release(dev_priv);
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;
169 void
170 nouveau_mem_gart_fini(struct drm_device *dev)
172 nouveau_sgdma_takedown(dev);
174 if (drm_core_has_AGP(dev) && dev->agp) {
175 struct drm_agp_mem *entry, *tempe;
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);
185 INIT_LIST_HEAD(&dev->agp->memory);
187 if (dev->agp->acquired)
188 drm_agp_release(dev);
190 dev->agp->acquired = 0;
191 dev->agp->enabled = 0;
195 static uint32_t
196 nouveau_mem_detect_nv04(struct drm_device *dev)
198 uint32_t boot0 = nv_rd32(dev, NV04_PFB_BOOT_0);
200 if (boot0 & 0x00000100)
201 return (((boot0 >> 12) & 0xf) * 2 + 2) * 1024 * 1024;
203 switch (boot0 & NV04_PFB_BOOT_0_RAM_AMOUNT) {
204 case NV04_PFB_BOOT_0_RAM_AMOUNT_32MB:
205 return 32 * 1024 * 1024;
206 case NV04_PFB_BOOT_0_RAM_AMOUNT_16MB:
207 return 16 * 1024 * 1024;
208 case NV04_PFB_BOOT_0_RAM_AMOUNT_8MB:
209 return 8 * 1024 * 1024;
210 case NV04_PFB_BOOT_0_RAM_AMOUNT_4MB:
211 return 4 * 1024 * 1024;
214 return 0;
217 static uint32_t
218 nouveau_mem_detect_nforce(struct drm_device *dev)
220 struct drm_nouveau_private *dev_priv = dev->dev_private;
221 struct pci_dev *bridge;
222 uint32_t mem;
224 bridge = pci_get_bus_and_slot(0, PCI_DEVFN(0, 1));
225 if (!bridge) {
226 NV_ERROR(dev, "no bridge device\n");
227 return 0;
230 if (dev_priv->flags & NV_NFORCE) {
231 pci_read_config_dword(bridge, 0x7C, &mem);
232 return (uint64_t)(((mem >> 6) & 31) + 1)*1024*1024;
233 } else
234 if (dev_priv->flags & NV_NFORCE2) {
235 pci_read_config_dword(bridge, 0x84, &mem);
236 return (uint64_t)(((mem >> 4) & 127) + 1)*1024*1024;
239 NV_ERROR(dev, "impossible!\n");
240 return 0;
244 nouveau_mem_detect(struct drm_device *dev)
246 struct drm_nouveau_private *dev_priv = dev->dev_private;
248 if (dev_priv->card_type == NV_04) {
249 dev_priv->vram_size = nouveau_mem_detect_nv04(dev);
250 } else
251 if (dev_priv->flags & (NV_NFORCE | NV_NFORCE2)) {
252 dev_priv->vram_size = nouveau_mem_detect_nforce(dev);
253 } else
254 if (dev_priv->card_type < NV_50) {
255 dev_priv->vram_size = nv_rd32(dev, NV04_PFB_FIFO_DATA);
256 dev_priv->vram_size &= NV10_PFB_FIFO_DATA_RAM_AMOUNT_MB_MASK;
259 if (dev_priv->vram_size)
260 return 0;
261 return -ENOMEM;
264 bool
265 nouveau_mem_flags_valid(struct drm_device *dev, u32 tile_flags)
267 if (!(tile_flags & NOUVEAU_GEM_TILE_LAYOUT_MASK))
268 return true;
270 return false;
273 #if __OS_HAS_AGP
274 static unsigned long
275 get_agp_mode(struct drm_device *dev, unsigned long mode)
277 struct drm_nouveau_private *dev_priv = dev->dev_private;
280 * FW seems to be broken on nv18, it makes the card lock up
281 * randomly.
283 if (dev_priv->chipset == 0x18)
284 mode &= ~PCI_AGP_COMMAND_FW;
287 * AGP mode set in the command line.
289 if (nouveau_agpmode > 0) {
290 bool agpv3 = mode & 0x8;
291 int rate = agpv3 ? nouveau_agpmode / 4 : nouveau_agpmode;
293 mode = (mode & ~0x7) | (rate & 0x7);
296 return mode;
298 #endif
301 nouveau_mem_reset_agp(struct drm_device *dev)
303 #if __OS_HAS_AGP
304 uint32_t saved_pci_nv_1, pmc_enable;
305 int ret;
307 /* First of all, disable fast writes, otherwise if it's
308 * already enabled in the AGP bridge and we disable the card's
309 * AGP controller we might be locking ourselves out of it. */
310 if ((nv_rd32(dev, NV04_PBUS_PCI_NV_19) |
311 dev->agp->mode) & PCI_AGP_COMMAND_FW) {
312 struct drm_agp_info info;
313 struct drm_agp_mode mode;
315 ret = drm_agp_info(dev, &info);
316 if (ret)
317 return ret;
319 mode.mode = get_agp_mode(dev, info.mode) & ~PCI_AGP_COMMAND_FW;
320 ret = drm_agp_enable(dev, mode);
321 if (ret)
322 return ret;
325 saved_pci_nv_1 = nv_rd32(dev, NV04_PBUS_PCI_NV_1);
327 /* clear busmaster bit */
328 nv_wr32(dev, NV04_PBUS_PCI_NV_1, saved_pci_nv_1 & ~0x4);
329 /* disable AGP */
330 nv_wr32(dev, NV04_PBUS_PCI_NV_19, 0);
332 /* power cycle pgraph, if enabled */
333 pmc_enable = nv_rd32(dev, NV03_PMC_ENABLE);
334 if (pmc_enable & NV_PMC_ENABLE_PGRAPH) {
335 nv_wr32(dev, NV03_PMC_ENABLE,
336 pmc_enable & ~NV_PMC_ENABLE_PGRAPH);
337 nv_wr32(dev, NV03_PMC_ENABLE, nv_rd32(dev, NV03_PMC_ENABLE) |
338 NV_PMC_ENABLE_PGRAPH);
341 /* and restore (gives effect of resetting AGP) */
342 nv_wr32(dev, NV04_PBUS_PCI_NV_1, saved_pci_nv_1);
343 #endif
345 return 0;
349 nouveau_mem_init_agp(struct drm_device *dev)
351 #if __OS_HAS_AGP
352 struct drm_nouveau_private *dev_priv = dev->dev_private;
353 struct drm_agp_info info;
354 struct drm_agp_mode mode;
355 int ret;
357 if (!dev->agp->acquired) {
358 ret = drm_agp_acquire(dev);
359 if (ret) {
360 NV_ERROR(dev, "Unable to acquire AGP: %d\n", ret);
361 return ret;
365 nouveau_mem_reset_agp(dev);
367 ret = drm_agp_info(dev, &info);
368 if (ret) {
369 NV_ERROR(dev, "Unable to get AGP info: %d\n", ret);
370 return ret;
373 /* see agp.h for the AGPSTAT_* modes available */
374 mode.mode = get_agp_mode(dev, info.mode);
375 ret = drm_agp_enable(dev, mode);
376 if (ret) {
377 NV_ERROR(dev, "Unable to enable AGP: %d\n", ret);
378 return ret;
381 dev_priv->gart_info.type = NOUVEAU_GART_AGP;
382 dev_priv->gart_info.aper_base = info.aperture_base;
383 dev_priv->gart_info.aper_size = info.aperture_size;
384 #endif
385 return 0;
389 nouveau_mem_vram_init(struct drm_device *dev)
391 struct drm_nouveau_private *dev_priv = dev->dev_private;
392 struct ttm_bo_device *bdev = &dev_priv->ttm.bdev;
393 int ret, dma_bits;
395 dma_bits = 32;
396 if (dev_priv->card_type >= NV_50) {
397 if (pci_dma_supported(dev->pdev, DMA_BIT_MASK(40)))
398 dma_bits = 40;
399 } else
400 if (0 && pci_is_pcie(dev->pdev) &&
401 dev_priv->chipset > 0x40 &&
402 dev_priv->chipset != 0x45) {
403 if (pci_dma_supported(dev->pdev, DMA_BIT_MASK(39)))
404 dma_bits = 39;
407 ret = pci_set_dma_mask(dev->pdev, DMA_BIT_MASK(dma_bits));
408 if (ret)
409 return ret;
411 ret = nouveau_ttm_global_init(dev_priv);
412 if (ret)
413 return ret;
415 ret = ttm_bo_device_init(&dev_priv->ttm.bdev,
416 dev_priv->ttm.bo_global_ref.ref.object,
417 &nouveau_bo_driver, DRM_FILE_PAGE_OFFSET,
418 dma_bits <= 32 ? true : false);
419 if (ret) {
420 NV_ERROR(dev, "Error initialising bo driver: %d\n", ret);
421 return ret;
424 NV_INFO(dev, "Detected %dMiB VRAM\n", (int)(dev_priv->vram_size >> 20));
425 if (dev_priv->vram_sys_base) {
426 NV_INFO(dev, "Stolen system memory at: 0x%010llx\n",
427 dev_priv->vram_sys_base);
430 dev_priv->fb_available_size = dev_priv->vram_size;
431 dev_priv->fb_mappable_pages = dev_priv->fb_available_size;
432 if (dev_priv->fb_mappable_pages > pci_resource_len(dev->pdev, 1))
433 dev_priv->fb_mappable_pages = pci_resource_len(dev->pdev, 1);
434 dev_priv->fb_mappable_pages >>= PAGE_SHIFT;
436 dev_priv->fb_available_size -= dev_priv->ramin_rsvd_vram;
437 dev_priv->fb_aper_free = dev_priv->fb_available_size;
439 /* mappable vram */
440 ret = ttm_bo_init_mm(bdev, TTM_PL_VRAM,
441 dev_priv->fb_available_size >> PAGE_SHIFT);
442 if (ret) {
443 NV_ERROR(dev, "Failed VRAM mm init: %d\n", ret);
444 return ret;
447 if (dev_priv->card_type < NV_50) {
448 ret = nouveau_bo_new(dev, 256*1024, 0, TTM_PL_FLAG_VRAM,
449 0, 0, &dev_priv->vga_ram);
450 if (ret == 0)
451 ret = nouveau_bo_pin(dev_priv->vga_ram,
452 TTM_PL_FLAG_VRAM);
454 if (ret) {
455 NV_WARN(dev, "failed to reserve VGA memory\n");
456 nouveau_bo_ref(NULL, &dev_priv->vga_ram);
460 dev_priv->fb_mtrr = drm_mtrr_add(pci_resource_start(dev->pdev, 1),
461 pci_resource_len(dev->pdev, 1),
462 DRM_MTRR_WC);
463 return 0;
467 nouveau_mem_gart_init(struct drm_device *dev)
469 struct drm_nouveau_private *dev_priv = dev->dev_private;
470 struct ttm_bo_device *bdev = &dev_priv->ttm.bdev;
471 int ret;
473 dev_priv->gart_info.type = NOUVEAU_GART_NONE;
475 #if !defined(__powerpc__) && !defined(__ia64__)
476 if (drm_pci_device_is_agp(dev) && dev->agp && nouveau_agpmode) {
477 ret = nouveau_mem_init_agp(dev);
478 if (ret)
479 NV_ERROR(dev, "Error initialising AGP: %d\n", ret);
481 #endif
483 if (dev_priv->gart_info.type == NOUVEAU_GART_NONE) {
484 ret = nouveau_sgdma_init(dev);
485 if (ret) {
486 NV_ERROR(dev, "Error initialising PCI(E): %d\n", ret);
487 return ret;
491 NV_INFO(dev, "%d MiB GART (aperture)\n",
492 (int)(dev_priv->gart_info.aper_size >> 20));
493 dev_priv->gart_info.aper_free = dev_priv->gart_info.aper_size;
495 ret = ttm_bo_init_mm(bdev, TTM_PL_TT,
496 dev_priv->gart_info.aper_size >> PAGE_SHIFT);
497 if (ret) {
498 NV_ERROR(dev, "Failed TT mm init: %d\n", ret);
499 return ret;
502 return 0;
505 /* XXX: For now a dummy. More samples required, possibly even a card
506 * Called from nouveau_perf.c */
507 void nv30_mem_timing_entry(struct drm_device *dev, struct nouveau_pm_tbl_header *hdr,
508 struct nouveau_pm_tbl_entry *e, uint8_t magic_number,
509 struct nouveau_pm_memtiming *timing) {
511 NV_DEBUG(dev,"Timing entry format unknown, please contact nouveau developers");
514 void nv40_mem_timing_entry(struct drm_device *dev, struct nouveau_pm_tbl_header *hdr,
515 struct nouveau_pm_tbl_entry *e, uint8_t magic_number,
516 struct nouveau_pm_memtiming *timing) {
518 timing->reg_0 = (e->tRC << 24 | e->tRFC << 16 | e->tRAS << 8 | e->tRP);
520 /* XXX: I don't trust the -1's and +1's... they must come
521 * from somewhere! */
522 timing->reg_1 = (e->tWR + 2 + magic_number) << 24 |
523 1 << 16 |
524 (e->tUNK_1 + 2 + magic_number) << 8 |
525 (e->tCL + 2 - magic_number);
526 timing->reg_2 = (magic_number << 24 | e->tUNK_12 << 16 | e->tUNK_11 << 8 | e->tUNK_10);
527 timing->reg_2 |= 0x20200000;
529 NV_DEBUG(dev, "Entry %d: 220: %08x %08x %08x\n", timing->id,
530 timing->reg_0, timing->reg_1,timing->reg_2);
533 void nv50_mem_timing_entry(struct drm_device *dev, struct bit_entry *P, struct nouveau_pm_tbl_header *hdr,
534 struct nouveau_pm_tbl_entry *e, uint8_t magic_number,struct nouveau_pm_memtiming *timing) {
535 struct drm_nouveau_private *dev_priv = dev->dev_private;
537 uint8_t unk18 = 1,
538 unk19 = 1,
539 unk20 = 0,
540 unk21 = 0;
542 switch (min(hdr->entry_len, (u8) 22)) {
543 case 22:
544 unk21 = e->tUNK_21;
545 case 21:
546 unk20 = e->tUNK_20;
547 case 20:
548 unk19 = e->tUNK_19;
549 case 19:
550 unk18 = e->tUNK_18;
551 break;
554 timing->reg_0 = (e->tRC << 24 | e->tRFC << 16 | e->tRAS << 8 | e->tRP);
556 /* XXX: I don't trust the -1's and +1's... they must come
557 * from somewhere! */
558 timing->reg_1 = (e->tWR + unk19 + 1 + magic_number) << 24 |
559 max(unk18, (u8) 1) << 16 |
560 (e->tUNK_1 + unk19 + 1 + magic_number) << 8;
561 if (dev_priv->chipset == 0xa8) {
562 timing->reg_1 |= (e->tCL - 1);
563 } else {
564 timing->reg_1 |= (e->tCL + 2 - magic_number);
566 timing->reg_2 = (e->tUNK_12 << 16 | e->tUNK_11 << 8 | e->tUNK_10);
568 timing->reg_5 = (e->tRAS << 24 | e->tRC);
569 timing->reg_5 += max(e->tUNK_10, e->tUNK_11) << 16;
571 if (P->version == 1) {
572 timing->reg_2 |= magic_number << 24;
573 timing->reg_3 = (0x14 + e->tCL) << 24 |
574 0x16 << 16 |
575 (e->tCL - 1) << 8 |
576 (e->tCL - 1);
577 timing->reg_4 = (nv_rd32(dev,0x10022c) & 0xffff0000) | e->tUNK_13 << 8 | e->tUNK_13;
578 timing->reg_5 |= (e->tCL + 2) << 8;
579 timing->reg_7 = 0x4000202 | (e->tCL - 1) << 16;
580 } else {
581 timing->reg_2 |= (unk19 - 1) << 24;
582 /* XXX: reg_10022c for recentish cards pretty much unknown*/
583 timing->reg_3 = e->tCL - 1;
584 timing->reg_4 = (unk20 << 24 | unk21 << 16 |
585 e->tUNK_13 << 8 | e->tUNK_13);
586 /* XXX: +6? */
587 timing->reg_5 |= (unk19 + 6) << 8;
589 /* XXX: reg_10023c currently unknown
590 * 10023c seen as 06xxxxxx, 0bxxxxxx or 0fxxxxxx */
591 timing->reg_7 = 0x202;
594 NV_DEBUG(dev, "Entry %d: 220: %08x %08x %08x %08x\n", timing->id,
595 timing->reg_0, timing->reg_1,
596 timing->reg_2, timing->reg_3);
597 NV_DEBUG(dev, " 230: %08x %08x %08x %08x\n",
598 timing->reg_4, timing->reg_5,
599 timing->reg_6, timing->reg_7);
600 NV_DEBUG(dev, " 240: %08x\n", timing->reg_8);
603 void nvc0_mem_timing_entry(struct drm_device *dev, struct nouveau_pm_tbl_header *hdr,
604 struct nouveau_pm_tbl_entry *e, struct nouveau_pm_memtiming *timing) {
605 timing->reg_0 = (e->tRC << 24 | (e->tRFC & 0x7f) << 17 | e->tRAS << 8 | e->tRP);
606 timing->reg_1 = (nv_rd32(dev,0x10f294) & 0xff000000) | (e->tUNK_11&0x0f) << 20 | (e->tUNK_19 << 7) | (e->tCL & 0x0f);
607 timing->reg_2 = (nv_rd32(dev,0x10f298) & 0xff0000ff) | e->tWR << 16 | e->tUNK_1 << 8;
608 timing->reg_3 = e->tUNK_20 << 9 | e->tUNK_13;
609 timing->reg_4 = (nv_rd32(dev,0x10f2a0) & 0xfff000ff) | e->tUNK_12 << 15;
610 NV_DEBUG(dev, "Entry %d: 290: %08x %08x %08x %08x\n", timing->id,
611 timing->reg_0, timing->reg_1,
612 timing->reg_2, timing->reg_3);
613 NV_DEBUG(dev, " 2a0: %08x %08x %08x %08x\n",
614 timing->reg_4, timing->reg_5,
615 timing->reg_6, timing->reg_7);
619 * Processes the Memory Timing BIOS table, stores generated
620 * register values
621 * @pre init scripts were run, memtiming regs are initialized
623 void
624 nouveau_mem_timing_init(struct drm_device *dev)
626 struct drm_nouveau_private *dev_priv = dev->dev_private;
627 struct nouveau_pm_engine *pm = &dev_priv->engine.pm;
628 struct nouveau_pm_memtimings *memtimings = &pm->memtimings;
629 struct nvbios *bios = &dev_priv->vbios;
630 struct bit_entry P;
631 struct nouveau_pm_tbl_header *hdr = NULL;
632 uint8_t magic_number;
633 u8 *entry;
634 int i;
636 if (bios->type == NVBIOS_BIT) {
637 if (bit_table(dev, 'P', &P))
638 return;
640 if (P.version == 1)
641 hdr = (struct nouveau_pm_tbl_header *) ROMPTR(bios, P.data[4]);
642 else
643 if (P.version == 2)
644 hdr = (struct nouveau_pm_tbl_header *) ROMPTR(bios, P.data[8]);
645 else {
646 NV_WARN(dev, "unknown mem for BIT P %d\n", P.version);
648 } else {
649 NV_DEBUG(dev, "BMP version too old for memory\n");
650 return;
653 if (!hdr) {
654 NV_DEBUG(dev, "memory timing table pointer invalid\n");
655 return;
658 if (hdr->version != 0x10) {
659 NV_WARN(dev, "memory timing table 0x%02x unknown\n", hdr->version);
660 return;
663 /* validate record length */
664 if (hdr->entry_len < 15) {
665 NV_ERROR(dev, "mem timing table length unknown: %d\n", hdr->entry_len);
666 return;
669 /* parse vbios entries into common format */
670 memtimings->timing =
671 kcalloc(hdr->entry_cnt, sizeof(*memtimings->timing), GFP_KERNEL);
672 if (!memtimings->timing)
673 return;
675 /* Get "some number" from the timing reg for NV_40 and NV_50
676 * Used in calculations later... source unknown */
677 magic_number = 0;
678 if (P.version == 1) {
679 magic_number = (nv_rd32(dev, 0x100228) & 0x0f000000) >> 24;
682 entry = (u8*) hdr + hdr->header_len;
683 for (i = 0; i < hdr->entry_cnt; i++, entry += hdr->entry_len) {
684 struct nouveau_pm_memtiming *timing = &pm->memtimings.timing[i];
685 if (entry[0] == 0)
686 continue;
688 timing->id = i;
689 timing->WR = entry[0];
690 timing->CL = entry[2];
692 if(dev_priv->card_type <= NV_40) {
693 nv40_mem_timing_entry(dev,hdr,(struct nouveau_pm_tbl_entry*) entry,magic_number,&pm->memtimings.timing[i]);
694 } else if(dev_priv->card_type == NV_50){
695 nv50_mem_timing_entry(dev,&P,hdr,(struct nouveau_pm_tbl_entry*) entry,magic_number,&pm->memtimings.timing[i]);
696 } else if(dev_priv->card_type == NV_C0) {
697 nvc0_mem_timing_entry(dev,hdr,(struct nouveau_pm_tbl_entry*) entry,&pm->memtimings.timing[i]);
701 memtimings->nr_timing = hdr->entry_cnt;
702 memtimings->supported = P.version == 1;
705 void
706 nouveau_mem_timing_fini(struct drm_device *dev)
708 struct drm_nouveau_private *dev_priv = dev->dev_private;
709 struct nouveau_pm_memtimings *mem = &dev_priv->engine.pm.memtimings;
711 if(mem->timing) {
712 kfree(mem->timing);
713 mem->timing = NULL;
717 static int
718 nouveau_vram_manager_init(struct ttm_mem_type_manager *man, unsigned long psize)
720 /* nothing to do */
721 return 0;
724 static int
725 nouveau_vram_manager_fini(struct ttm_mem_type_manager *man)
727 /* nothing to do */
728 return 0;
731 static inline void
732 nouveau_mem_node_cleanup(struct nouveau_mem *node)
734 if (node->vma[0].node) {
735 nouveau_vm_unmap(&node->vma[0]);
736 nouveau_vm_put(&node->vma[0]);
739 if (node->vma[1].node) {
740 nouveau_vm_unmap(&node->vma[1]);
741 nouveau_vm_put(&node->vma[1]);
745 static void
746 nouveau_vram_manager_del(struct ttm_mem_type_manager *man,
747 struct ttm_mem_reg *mem)
749 struct drm_nouveau_private *dev_priv = nouveau_bdev(man->bdev);
750 struct nouveau_vram_engine *vram = &dev_priv->engine.vram;
751 struct drm_device *dev = dev_priv->dev;
753 nouveau_mem_node_cleanup(mem->mm_node);
754 vram->put(dev, (struct nouveau_mem **)&mem->mm_node);
757 static int
758 nouveau_vram_manager_new(struct ttm_mem_type_manager *man,
759 struct ttm_buffer_object *bo,
760 struct ttm_placement *placement,
761 struct ttm_mem_reg *mem)
763 struct drm_nouveau_private *dev_priv = nouveau_bdev(man->bdev);
764 struct nouveau_vram_engine *vram = &dev_priv->engine.vram;
765 struct drm_device *dev = dev_priv->dev;
766 struct nouveau_bo *nvbo = nouveau_bo(bo);
767 struct nouveau_mem *node;
768 u32 size_nc = 0;
769 int ret;
771 if (nvbo->tile_flags & NOUVEAU_GEM_TILE_NONCONTIG)
772 size_nc = 1 << nvbo->page_shift;
774 ret = vram->get(dev, mem->num_pages << PAGE_SHIFT,
775 mem->page_alignment << PAGE_SHIFT, size_nc,
776 (nvbo->tile_flags >> 8) & 0x3ff, &node);
777 if (ret) {
778 mem->mm_node = NULL;
779 return (ret == -ENOSPC) ? 0 : ret;
782 node->page_shift = nvbo->page_shift;
784 mem->mm_node = node;
785 mem->start = node->offset >> PAGE_SHIFT;
786 return 0;
789 void
790 nouveau_vram_manager_debug(struct ttm_mem_type_manager *man, const char *prefix)
792 struct nouveau_mm *mm = man->priv;
793 struct nouveau_mm_node *r;
794 u32 total = 0, free = 0;
796 mutex_lock(&mm->mutex);
797 list_for_each_entry(r, &mm->nodes, nl_entry) {
798 printk(KERN_DEBUG "%s %d: 0x%010llx 0x%010llx\n",
799 prefix, r->type, ((u64)r->offset << 12),
800 (((u64)r->offset + r->length) << 12));
802 total += r->length;
803 if (!r->type)
804 free += r->length;
806 mutex_unlock(&mm->mutex);
808 printk(KERN_DEBUG "%s total: 0x%010llx free: 0x%010llx\n",
809 prefix, (u64)total << 12, (u64)free << 12);
810 printk(KERN_DEBUG "%s block: 0x%08x\n",
811 prefix, mm->block_size << 12);
814 const struct ttm_mem_type_manager_func nouveau_vram_manager = {
815 nouveau_vram_manager_init,
816 nouveau_vram_manager_fini,
817 nouveau_vram_manager_new,
818 nouveau_vram_manager_del,
819 nouveau_vram_manager_debug
822 static int
823 nouveau_gart_manager_init(struct ttm_mem_type_manager *man, unsigned long psize)
825 return 0;
828 static int
829 nouveau_gart_manager_fini(struct ttm_mem_type_manager *man)
831 return 0;
834 static void
835 nouveau_gart_manager_del(struct ttm_mem_type_manager *man,
836 struct ttm_mem_reg *mem)
838 nouveau_mem_node_cleanup(mem->mm_node);
839 kfree(mem->mm_node);
840 mem->mm_node = NULL;
843 static int
844 nouveau_gart_manager_new(struct ttm_mem_type_manager *man,
845 struct ttm_buffer_object *bo,
846 struct ttm_placement *placement,
847 struct ttm_mem_reg *mem)
849 struct drm_nouveau_private *dev_priv = nouveau_bdev(bo->bdev);
850 struct nouveau_mem *node;
852 if (unlikely((mem->num_pages << PAGE_SHIFT) >=
853 dev_priv->gart_info.aper_size))
854 return -ENOMEM;
856 node = kzalloc(sizeof(*node), GFP_KERNEL);
857 if (!node)
858 return -ENOMEM;
859 node->page_shift = 12;
861 mem->mm_node = node;
862 mem->start = 0;
863 return 0;
866 void
867 nouveau_gart_manager_debug(struct ttm_mem_type_manager *man, const char *prefix)
871 const struct ttm_mem_type_manager_func nouveau_gart_manager = {
872 nouveau_gart_manager_init,
873 nouveau_gart_manager_fini,
874 nouveau_gart_manager_new,
875 nouveau_gart_manager_del,
876 nouveau_gart_manager_debug