blob: 3949b0990916c5ea50b3ae442735c47b6a7b110f [file] [log] [blame]
Alan Cox8c8f1c92011-11-03 18:21:09 +00001/*
2 * Copyright (c) 2007, Intel Corporation.
3 * All Rights Reserved.
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
17 *
18 * Authors: Thomas Hellstrom <thomas-at-tungstengraphics.com>
19 * Alan Cox <alan@linux.intel.com>
20 */
21
22#include <drm/drmP.h>
Alan Coxe912b6d2012-01-24 16:57:42 +000023#include <linux/shmem_fs.h>
Laura Abbotted3ba072017-05-08 15:58:17 -070024#include <asm/set_memory.h>
Alan Cox8c8f1c92011-11-03 18:21:09 +000025#include "psb_drv.h"
Patrik Jakobssonae012bd2014-01-04 22:11:17 +010026#include "blitter.h"
Alan Cox8c8f1c92011-11-03 18:21:09 +000027
28
29/*
30 * GTT resource allocator - manage page mappings in GTT space
31 */
32
33/**
34 * psb_gtt_mask_pte - generate GTT pte entry
35 * @pfn: page number to encode
36 * @type: type of memory in the GTT
37 *
38 * Set the GTT entry for the appropriate memory type.
39 */
40static inline uint32_t psb_gtt_mask_pte(uint32_t pfn, int type)
41{
42 uint32_t mask = PSB_PTE_VALID;
43
Alan Cox398b4702012-04-25 14:38:47 +010044 /* Ensure we explode rather than put an invalid low mapping of
45 a high mapping page into the gtt */
46 BUG_ON(pfn & ~(0xFFFFFFFF >> PAGE_SHIFT));
47
Alan Cox8c8f1c92011-11-03 18:21:09 +000048 if (type & PSB_MMU_CACHED_MEMORY)
49 mask |= PSB_PTE_CACHED;
50 if (type & PSB_MMU_RO_MEMORY)
51 mask |= PSB_PTE_RO;
52 if (type & PSB_MMU_WO_MEMORY)
53 mask |= PSB_PTE_WO;
54
55 return (pfn << PAGE_SHIFT) | mask;
56}
57
58/**
59 * psb_gtt_entry - find the GTT entries for a gtt_range
60 * @dev: our DRM device
61 * @r: our GTT range
62 *
63 * Given a gtt_range object return the GTT offset of the page table
64 * entries for this gtt_range
65 */
Kirill A. Shutemoveab37602012-05-03 15:07:46 +010066static u32 __iomem *psb_gtt_entry(struct drm_device *dev, struct gtt_range *r)
Alan Cox8c8f1c92011-11-03 18:21:09 +000067{
68 struct drm_psb_private *dev_priv = dev->dev_private;
69 unsigned long offset;
70
71 offset = r->resource.start - dev_priv->gtt_mem->start;
72
73 return dev_priv->gtt_map + (offset >> PAGE_SHIFT);
74}
75
76/**
77 * psb_gtt_insert - put an object into the GTT
78 * @dev: our DRM device
79 * @r: our GTT range
Jiang Biao15503332016-10-12 10:18:19 +080080 * @resume: on resume
Alan Cox8c8f1c92011-11-03 18:21:09 +000081 *
82 * Take our preallocated GTT range and insert the GEM object into
Alan Coxa7460922011-11-29 22:21:03 +000083 * the GTT. This is protected via the gtt mutex which the caller
84 * must hold.
Alan Cox8c8f1c92011-11-03 18:21:09 +000085 */
Patrik Jakobsson070839e2013-04-05 23:56:18 +020086static int psb_gtt_insert(struct drm_device *dev, struct gtt_range *r,
87 int resume)
Alan Cox8c8f1c92011-11-03 18:21:09 +000088{
Kirill A. Shutemoveab37602012-05-03 15:07:46 +010089 u32 __iomem *gtt_slot;
90 u32 pte;
Alan Cox8c8f1c92011-11-03 18:21:09 +000091 struct page **pages;
92 int i;
93
94 if (r->pages == NULL) {
95 WARN_ON(1);
96 return -EINVAL;
97 }
98
99 WARN_ON(r->stolen); /* refcount these maybe ? */
100
101 gtt_slot = psb_gtt_entry(dev, r);
102 pages = r->pages;
103
Patrik Jakobsson070839e2013-04-05 23:56:18 +0200104 if (!resume) {
105 /* Make sure changes are visible to the GPU */
106 set_pages_array_wc(pages, r->npage);
107 }
Alan Cox8c8f1c92011-11-03 18:21:09 +0000108
109 /* Write our page entries into the GTT itself */
Alan Coxa6ba5822011-11-29 22:27:22 +0000110 for (i = r->roll; i < r->npage; i++) {
Patrik Jakobssonae012bd2014-01-04 22:11:17 +0100111 pte = psb_gtt_mask_pte(page_to_pfn(r->pages[i]),
112 PSB_MMU_CACHED_MEMORY);
Alan Coxa6ba5822011-11-29 22:27:22 +0000113 iowrite32(pte, gtt_slot++);
114 }
115 for (i = 0; i < r->roll; i++) {
Patrik Jakobssonae012bd2014-01-04 22:11:17 +0100116 pte = psb_gtt_mask_pte(page_to_pfn(r->pages[i]),
117 PSB_MMU_CACHED_MEMORY);
Alan Cox8c8f1c92011-11-03 18:21:09 +0000118 iowrite32(pte, gtt_slot++);
119 }
120 /* Make sure all the entries are set before we return */
121 ioread32(gtt_slot - 1);
Alan Coxa6ba5822011-11-29 22:27:22 +0000122
Alan Cox8c8f1c92011-11-03 18:21:09 +0000123 return 0;
124}
125
126/**
127 * psb_gtt_remove - remove an object from the GTT
128 * @dev: our DRM device
129 * @r: our GTT range
130 *
131 * Remove a preallocated GTT range from the GTT. Overwrite all the
Alan Coxa7460922011-11-29 22:21:03 +0000132 * page table entries with the dummy page. This is protected via the gtt
133 * mutex which the caller must hold.
Alan Cox8c8f1c92011-11-03 18:21:09 +0000134 */
Jiang Biao4470dc92016-11-01 11:49:45 +0800135static void psb_gtt_remove(struct drm_device *dev, struct gtt_range *r)
Alan Cox8c8f1c92011-11-03 18:21:09 +0000136{
137 struct drm_psb_private *dev_priv = dev->dev_private;
Kirill A. Shutemoveab37602012-05-03 15:07:46 +0100138 u32 __iomem *gtt_slot;
139 u32 pte;
Alan Cox8c8f1c92011-11-03 18:21:09 +0000140 int i;
141
142 WARN_ON(r->stolen);
143
144 gtt_slot = psb_gtt_entry(dev, r);
Patrik Jakobssonae012bd2014-01-04 22:11:17 +0100145 pte = psb_gtt_mask_pte(page_to_pfn(dev_priv->scratch_page),
146 PSB_MMU_CACHED_MEMORY);
Alan Cox8c8f1c92011-11-03 18:21:09 +0000147
148 for (i = 0; i < r->npage; i++)
149 iowrite32(pte, gtt_slot++);
150 ioread32(gtt_slot - 1);
151 set_pages_array_wb(r->pages, r->npage);
152}
153
154/**
Alan Coxa6ba5822011-11-29 22:27:22 +0000155 * psb_gtt_roll - set scrolling position
156 * @dev: our DRM device
157 * @r: the gtt mapping we are using
158 * @roll: roll offset
159 *
160 * Roll an existing pinned mapping by moving the pages through the GTT.
161 * This allows us to implement hardware scrolling on the consoles without
162 * a 2D engine
163 */
164void psb_gtt_roll(struct drm_device *dev, struct gtt_range *r, int roll)
165{
Kirill A. Shutemoveab37602012-05-03 15:07:46 +0100166 u32 __iomem *gtt_slot;
167 u32 pte;
Alan Coxa6ba5822011-11-29 22:27:22 +0000168 int i;
169
170 if (roll >= r->npage) {
171 WARN_ON(1);
172 return;
173 }
174
175 r->roll = roll;
176
177 /* Not currently in the GTT - no worry we will write the mapping at
178 the right position when it gets pinned */
179 if (!r->stolen && !r->in_gart)
180 return;
181
182 gtt_slot = psb_gtt_entry(dev, r);
183
184 for (i = r->roll; i < r->npage; i++) {
Patrik Jakobssonae012bd2014-01-04 22:11:17 +0100185 pte = psb_gtt_mask_pte(page_to_pfn(r->pages[i]),
186 PSB_MMU_CACHED_MEMORY);
Alan Coxa6ba5822011-11-29 22:27:22 +0000187 iowrite32(pte, gtt_slot++);
188 }
189 for (i = 0; i < r->roll; i++) {
Patrik Jakobssonae012bd2014-01-04 22:11:17 +0100190 pte = psb_gtt_mask_pte(page_to_pfn(r->pages[i]),
191 PSB_MMU_CACHED_MEMORY);
Alan Coxa6ba5822011-11-29 22:27:22 +0000192 iowrite32(pte, gtt_slot++);
193 }
194 ioread32(gtt_slot - 1);
195}
196
197/**
Alan Cox8c8f1c92011-11-03 18:21:09 +0000198 * psb_gtt_attach_pages - attach and pin GEM pages
199 * @gt: the gtt range
200 *
201 * Pin and build an in kernel list of the pages that back our GEM object.
Alan Coxa7460922011-11-29 22:21:03 +0000202 * While we hold this the pages cannot be swapped out. This is protected
203 * via the gtt mutex which the caller must hold.
Alan Cox8c8f1c92011-11-03 18:21:09 +0000204 */
205static int psb_gtt_attach_pages(struct gtt_range *gt)
206{
Rob Clark8b9ba7a2013-08-07 13:41:25 -0400207 struct page **pages;
Alan Cox8c8f1c92011-11-03 18:21:09 +0000208
209 WARN_ON(gt->pages);
210
David Herrmann0cdbe8a2014-05-25 12:59:47 +0200211 pages = drm_gem_get_pages(&gt->gem);
Rob Clark8b9ba7a2013-08-07 13:41:25 -0400212 if (IS_ERR(pages))
213 return PTR_ERR(pages);
Alan Cox8c8f1c92011-11-03 18:21:09 +0000214
Rob Clarkb9aa8512013-10-08 16:31:59 -0400215 gt->npage = gt->gem.size / PAGE_SIZE;
Rob Clark8b9ba7a2013-08-07 13:41:25 -0400216 gt->pages = pages;
Alan Cox8c8f1c92011-11-03 18:21:09 +0000217
Alan Cox8c8f1c92011-11-03 18:21:09 +0000218 return 0;
Alan Cox8c8f1c92011-11-03 18:21:09 +0000219}
220
221/**
222 * psb_gtt_detach_pages - attach and pin GEM pages
223 * @gt: the gtt range
224 *
225 * Undo the effect of psb_gtt_attach_pages. At this point the pages
226 * must have been removed from the GTT as they could now be paged out
Alan Coxa7460922011-11-29 22:21:03 +0000227 * and move bus address. This is protected via the gtt mutex which the
228 * caller must hold.
Alan Cox8c8f1c92011-11-03 18:21:09 +0000229 */
230static void psb_gtt_detach_pages(struct gtt_range *gt)
231{
Rob Clark8b9ba7a2013-08-07 13:41:25 -0400232 drm_gem_put_pages(&gt->gem, gt->pages, true, false);
Alan Cox8c8f1c92011-11-03 18:21:09 +0000233 gt->pages = NULL;
234}
235
236/**
237 * psb_gtt_pin - pin pages into the GTT
238 * @gt: range to pin
239 *
240 * Pin a set of pages into the GTT. The pins are refcounted so that
241 * multiple pins need multiple unpins to undo.
242 *
243 * Non GEM backed objects treat this as a no-op as they are always GTT
244 * backed objects.
245 */
246int psb_gtt_pin(struct gtt_range *gt)
247{
248 int ret = 0;
249 struct drm_device *dev = gt->gem.dev;
250 struct drm_psb_private *dev_priv = dev->dev_private;
Patrik Jakobssonae012bd2014-01-04 22:11:17 +0100251 u32 gpu_base = dev_priv->gtt.gatt_start;
Alan Cox8c8f1c92011-11-03 18:21:09 +0000252
253 mutex_lock(&dev_priv->gtt_mutex);
254
255 if (gt->in_gart == 0 && gt->stolen == 0) {
256 ret = psb_gtt_attach_pages(gt);
257 if (ret < 0)
258 goto out;
Patrik Jakobsson070839e2013-04-05 23:56:18 +0200259 ret = psb_gtt_insert(dev, gt, 0);
Alan Cox8c8f1c92011-11-03 18:21:09 +0000260 if (ret < 0) {
261 psb_gtt_detach_pages(gt);
262 goto out;
263 }
Patrik Jakobssonae012bd2014-01-04 22:11:17 +0100264 psb_mmu_insert_pages(psb_mmu_get_default_pd(dev_priv->mmu),
265 gt->pages, (gpu_base + gt->offset),
266 gt->npage, 0, 0, PSB_MMU_CACHED_MEMORY);
Alan Cox8c8f1c92011-11-03 18:21:09 +0000267 }
268 gt->in_gart++;
269out:
270 mutex_unlock(&dev_priv->gtt_mutex);
271 return ret;
272}
273
274/**
275 * psb_gtt_unpin - Drop a GTT pin requirement
276 * @gt: range to pin
277 *
278 * Undoes the effect of psb_gtt_pin. On the last drop the GEM object
279 * will be removed from the GTT which will also drop the page references
280 * and allow the VM to clean up or page stuff.
281 *
282 * Non GEM backed objects treat this as a no-op as they are always GTT
283 * backed objects.
284 */
285void psb_gtt_unpin(struct gtt_range *gt)
286{
287 struct drm_device *dev = gt->gem.dev;
288 struct drm_psb_private *dev_priv = dev->dev_private;
Patrik Jakobssonae012bd2014-01-04 22:11:17 +0100289 u32 gpu_base = dev_priv->gtt.gatt_start;
290 int ret;
Alan Cox8c8f1c92011-11-03 18:21:09 +0000291
Patrik Jakobssonae012bd2014-01-04 22:11:17 +0100292 /* While holding the gtt_mutex no new blits can be initiated */
Alan Cox8c8f1c92011-11-03 18:21:09 +0000293 mutex_lock(&dev_priv->gtt_mutex);
294
Patrik Jakobssonae012bd2014-01-04 22:11:17 +0100295 /* Wait for any possible usage of the memory to be finished */
296 ret = gma_blt_wait_idle(dev_priv);
297 if (ret) {
298 DRM_ERROR("Failed to idle the blitter, unpin failed!");
299 goto out;
300 }
301
Alan Cox8c8f1c92011-11-03 18:21:09 +0000302 WARN_ON(!gt->in_gart);
303
304 gt->in_gart--;
305 if (gt->in_gart == 0 && gt->stolen == 0) {
Patrik Jakobssonae012bd2014-01-04 22:11:17 +0100306 psb_mmu_remove_pages(psb_mmu_get_default_pd(dev_priv->mmu),
307 (gpu_base + gt->offset), gt->npage, 0, 0);
Alan Cox8c8f1c92011-11-03 18:21:09 +0000308 psb_gtt_remove(dev, gt);
309 psb_gtt_detach_pages(gt);
310 }
Patrik Jakobssonae012bd2014-01-04 22:11:17 +0100311
312out:
Alan Cox8c8f1c92011-11-03 18:21:09 +0000313 mutex_unlock(&dev_priv->gtt_mutex);
314}
315
316/*
317 * GTT resource allocator - allocate and manage GTT address space
318 */
319
320/**
321 * psb_gtt_alloc_range - allocate GTT address space
322 * @dev: Our DRM device
323 * @len: length (bytes) of address space required
324 * @name: resource name
325 * @backed: resource should be backed by stolen pages
Jiang Biao15503332016-10-12 10:18:19 +0800326 * @align: requested alignment
Alan Cox8c8f1c92011-11-03 18:21:09 +0000327 *
328 * Ask the kernel core to find us a suitable range of addresses
329 * to use for a GTT mapping.
330 *
331 * Returns a gtt_range structure describing the object, or NULL on
332 * error. On successful return the resource is both allocated and marked
333 * as in use.
334 */
335struct gtt_range *psb_gtt_alloc_range(struct drm_device *dev, int len,
Patrik Jakobssonc269c682014-01-06 02:39:10 +0100336 const char *name, int backed, u32 align)
Alan Cox8c8f1c92011-11-03 18:21:09 +0000337{
338 struct drm_psb_private *dev_priv = dev->dev_private;
339 struct gtt_range *gt;
340 struct resource *r = dev_priv->gtt_mem;
341 int ret;
342 unsigned long start, end;
343
344 if (backed) {
345 /* The start of the GTT is the stolen pages */
346 start = r->start;
347 end = r->start + dev_priv->gtt.stolen_size - 1;
348 } else {
349 /* The rest we will use for GEM backed objects */
350 start = r->start + dev_priv->gtt.stolen_size;
351 end = r->end;
352 }
353
354 gt = kzalloc(sizeof(struct gtt_range), GFP_KERNEL);
355 if (gt == NULL)
356 return NULL;
357 gt->resource.name = name;
358 gt->stolen = backed;
359 gt->in_gart = backed;
Alan Coxa6ba5822011-11-29 22:27:22 +0000360 gt->roll = 0;
Alan Cox8c8f1c92011-11-03 18:21:09 +0000361 /* Ensure this is set for non GEM objects */
362 gt->gem.dev = dev;
363 ret = allocate_resource(dev_priv->gtt_mem, &gt->resource,
Patrik Jakobssonc269c682014-01-06 02:39:10 +0100364 len, start, end, align, NULL, NULL);
Alan Cox8c8f1c92011-11-03 18:21:09 +0000365 if (ret == 0) {
366 gt->offset = gt->resource.start - r->start;
367 return gt;
368 }
369 kfree(gt);
370 return NULL;
371}
372
373/**
374 * psb_gtt_free_range - release GTT address space
375 * @dev: our DRM device
376 * @gt: a mapping created with psb_gtt_alloc_range
377 *
378 * Release a resource that was allocated with psb_gtt_alloc_range. If the
379 * object has been pinned by mmap users we clean this up here currently.
380 */
381void psb_gtt_free_range(struct drm_device *dev, struct gtt_range *gt)
382{
383 /* Undo the mmap pin if we are destroying the object */
384 if (gt->mmapping) {
385 psb_gtt_unpin(gt);
386 gt->mmapping = 0;
387 }
388 WARN_ON(gt->in_gart && !gt->stolen);
389 release_resource(&gt->resource);
390 kfree(gt);
391}
392
Kirill A. Shutemovffe94d92012-03-08 16:03:55 +0000393static void psb_gtt_alloc(struct drm_device *dev)
Alan Cox8c8f1c92011-11-03 18:21:09 +0000394{
395 struct drm_psb_private *dev_priv = dev->dev_private;
396 init_rwsem(&dev_priv->gtt.sem);
397}
398
399void psb_gtt_takedown(struct drm_device *dev)
400{
401 struct drm_psb_private *dev_priv = dev->dev_private;
402
403 if (dev_priv->gtt_map) {
404 iounmap(dev_priv->gtt_map);
405 dev_priv->gtt_map = NULL;
406 }
407 if (dev_priv->gtt_initialized) {
408 pci_write_config_word(dev->pdev, PSB_GMCH_CTRL,
409 dev_priv->gmch_ctrl);
410 PSB_WVDC32(dev_priv->pge_ctl, PSB_PGETBL_CTL);
411 (void) PSB_RVDC32(PSB_PGETBL_CTL);
412 }
413 if (dev_priv->vram_addr)
414 iounmap(dev_priv->gtt_map);
415}
416
417int psb_gtt_init(struct drm_device *dev, int resume)
418{
419 struct drm_psb_private *dev_priv = dev->dev_private;
420 unsigned gtt_pages;
421 unsigned long stolen_size, vram_stolen_size;
422 unsigned i, num_pages;
423 unsigned pfn_base;
Alan Cox8c8f1c92011-11-03 18:21:09 +0000424 struct psb_gtt *pg;
425
426 int ret = 0;
427 uint32_t pte;
428
Patrik Jakobsson070839e2013-04-05 23:56:18 +0200429 if (!resume) {
430 mutex_init(&dev_priv->gtt_mutex);
Daniel Vetter737292a2015-11-23 10:32:53 +0100431 mutex_init(&dev_priv->mmap_mutex);
Patrik Jakobsson070839e2013-04-05 23:56:18 +0200432 psb_gtt_alloc(dev);
433 }
Alan Cox8c8f1c92011-11-03 18:21:09 +0000434
Alan Cox8c8f1c92011-11-03 18:21:09 +0000435 pg = &dev_priv->gtt;
436
437 /* Enable the GTT */
438 pci_read_config_word(dev->pdev, PSB_GMCH_CTRL, &dev_priv->gmch_ctrl);
439 pci_write_config_word(dev->pdev, PSB_GMCH_CTRL,
440 dev_priv->gmch_ctrl | _PSB_GMCH_ENABLED);
441
442 dev_priv->pge_ctl = PSB_RVDC32(PSB_PGETBL_CTL);
443 PSB_WVDC32(dev_priv->pge_ctl | _PSB_PGETBL_ENABLED, PSB_PGETBL_CTL);
444 (void) PSB_RVDC32(PSB_PGETBL_CTL);
445
446 /* The root resource we allocate address space from */
447 dev_priv->gtt_initialized = 1;
448
449 pg->gtt_phys_start = dev_priv->pge_ctl & PAGE_MASK;
450
451 /*
Alan Coxa7460922011-11-29 22:21:03 +0000452 * The video mmu has a hw bug when accessing 0x0D0000000.
453 * Make gatt start at 0x0e000,0000. This doesn't actually
454 * matter for us but may do if the video acceleration ever
455 * gets opened up.
Alan Cox8c8f1c92011-11-03 18:21:09 +0000456 */
457 pg->mmu_gatt_start = 0xE0000000;
458
459 pg->gtt_start = pci_resource_start(dev->pdev, PSB_GTT_RESOURCE);
460 gtt_pages = pci_resource_len(dev->pdev, PSB_GTT_RESOURCE)
461 >> PAGE_SHIFT;
Alan Cox055bf382012-03-05 14:22:16 +0000462 /* CDV doesn't report this. In which case the system has 64 gtt pages */
Alan Cox8c8f1c92011-11-03 18:21:09 +0000463 if (pg->gtt_start == 0 || gtt_pages == 0) {
Alan Cox055bf382012-03-05 14:22:16 +0000464 dev_dbg(dev->dev, "GTT PCI BAR not initialized.\n");
Alan Cox8c8f1c92011-11-03 18:21:09 +0000465 gtt_pages = 64;
466 pg->gtt_start = dev_priv->pge_ctl;
467 }
468
469 pg->gatt_start = pci_resource_start(dev->pdev, PSB_GATT_RESOURCE);
470 pg->gatt_pages = pci_resource_len(dev->pdev, PSB_GATT_RESOURCE)
471 >> PAGE_SHIFT;
472 dev_priv->gtt_mem = &dev->pdev->resource[PSB_GATT_RESOURCE];
473
474 if (pg->gatt_pages == 0 || pg->gatt_start == 0) {
475 static struct resource fudge; /* Preferably peppermint */
Alan Cox055bf382012-03-05 14:22:16 +0000476 /* This can occur on CDV systems. Fudge it in this case.
Alan Cox8c8f1c92011-11-03 18:21:09 +0000477 We really don't care what imaginary space is being allocated
478 at this point */
Alan Cox055bf382012-03-05 14:22:16 +0000479 dev_dbg(dev->dev, "GATT PCI BAR not initialized.\n");
Alan Cox8c8f1c92011-11-03 18:21:09 +0000480 pg->gatt_start = 0x40000000;
481 pg->gatt_pages = (128 * 1024 * 1024) >> PAGE_SHIFT;
Alan Coxa7460922011-11-29 22:21:03 +0000482 /* This is a little confusing but in fact the GTT is providing
483 a view from the GPU into memory and not vice versa. As such
484 this is really allocating space that is not the same as the
485 CPU address space on CDV */
Alan Cox8c8f1c92011-11-03 18:21:09 +0000486 fudge.start = 0x40000000;
487 fudge.end = 0x40000000 + 128 * 1024 * 1024 - 1;
488 fudge.name = "fudge";
489 fudge.flags = IORESOURCE_MEM;
490 dev_priv->gtt_mem = &fudge;
491 }
492
493 pci_read_config_dword(dev->pdev, PSB_BSM, &dev_priv->stolen_base);
494 vram_stolen_size = pg->gtt_phys_start - dev_priv->stolen_base
495 - PAGE_SIZE;
496
497 stolen_size = vram_stolen_size;
498
Alan Cox31a06852012-05-11 11:32:31 +0100499 dev_dbg(dev->dev, "Stolen memory base 0x%x, size %luK\n",
500 dev_priv->stolen_base, vram_stolen_size / 1024);
Alan Cox8c8f1c92011-11-03 18:21:09 +0000501
502 if (resume && (gtt_pages != pg->gtt_pages) &&
503 (stolen_size != pg->stolen_size)) {
504 dev_err(dev->dev, "GTT resume error.\n");
505 ret = -EINVAL;
506 goto out_err;
507 }
508
509 pg->gtt_pages = gtt_pages;
510 pg->stolen_size = stolen_size;
511 dev_priv->vram_stolen_size = vram_stolen_size;
512
513 /*
514 * Map the GTT and the stolen memory area
515 */
Patrik Jakobsson070839e2013-04-05 23:56:18 +0200516 if (!resume)
517 dev_priv->gtt_map = ioremap_nocache(pg->gtt_phys_start,
Alan Cox8c8f1c92011-11-03 18:21:09 +0000518 gtt_pages << PAGE_SHIFT);
519 if (!dev_priv->gtt_map) {
520 dev_err(dev->dev, "Failure to map gtt.\n");
521 ret = -ENOMEM;
522 goto out_err;
523 }
524
Patrik Jakobsson070839e2013-04-05 23:56:18 +0200525 if (!resume)
526 dev_priv->vram_addr = ioremap_wc(dev_priv->stolen_base,
527 stolen_size);
Patrik Jakobssonae012bd2014-01-04 22:11:17 +0100528
Alan Cox8c8f1c92011-11-03 18:21:09 +0000529 if (!dev_priv->vram_addr) {
530 dev_err(dev->dev, "Failure to map stolen base.\n");
531 ret = -ENOMEM;
532 goto out_err;
533 }
534
535 /*
536 * Insert vram stolen pages into the GTT
537 */
538
539 pfn_base = dev_priv->stolen_base >> PAGE_SHIFT;
Kirill A. Shutemovf728bd12012-05-03 15:07:27 +0100540 num_pages = vram_stolen_size >> PAGE_SHIFT;
Alan Cox31a06852012-05-11 11:32:31 +0100541 dev_dbg(dev->dev, "Set up %d stolen pages starting at 0x%08x, GTT offset %dK\n",
Alan Cox8c8f1c92011-11-03 18:21:09 +0000542 num_pages, pfn_base << PAGE_SHIFT, 0);
543 for (i = 0; i < num_pages; ++i) {
Patrik Jakobssonae012bd2014-01-04 22:11:17 +0100544 pte = psb_gtt_mask_pte(pfn_base + i, PSB_MMU_CACHED_MEMORY);
Alan Cox8c8f1c92011-11-03 18:21:09 +0000545 iowrite32(pte, dev_priv->gtt_map + i);
546 }
547
548 /*
549 * Init rest of GTT to the scratch page to avoid accidents or scribbles
550 */
551
552 pfn_base = page_to_pfn(dev_priv->scratch_page);
Patrik Jakobssonae012bd2014-01-04 22:11:17 +0100553 pte = psb_gtt_mask_pte(pfn_base, PSB_MMU_CACHED_MEMORY);
Alan Cox8c8f1c92011-11-03 18:21:09 +0000554 for (; i < gtt_pages; ++i)
555 iowrite32(pte, dev_priv->gtt_map + i);
556
557 (void) ioread32(dev_priv->gtt_map + i - 1);
558 return 0;
559
560out_err:
561 psb_gtt_takedown(dev);
562 return ret;
563}
Patrik Jakobsson070839e2013-04-05 23:56:18 +0200564
565int psb_gtt_restore(struct drm_device *dev)
566{
567 struct drm_psb_private *dev_priv = dev->dev_private;
568 struct resource *r = dev_priv->gtt_mem->child;
569 struct gtt_range *range;
Patrik Jakobsson1611f842013-04-15 13:49:21 +0200570 unsigned int restored = 0, total = 0, size = 0;
Patrik Jakobsson070839e2013-04-05 23:56:18 +0200571
572 /* On resume, the gtt_mutex is already initialized */
573 mutex_lock(&dev_priv->gtt_mutex);
574 psb_gtt_init(dev, 1);
575
576 while (r != NULL) {
577 range = container_of(r, struct gtt_range, resource);
Patrik Jakobsson1611f842013-04-15 13:49:21 +0200578 if (range->pages) {
Patrik Jakobsson070839e2013-04-05 23:56:18 +0200579 psb_gtt_insert(dev, range, 1);
Patrik Jakobsson1611f842013-04-15 13:49:21 +0200580 size += range->resource.end - range->resource.start;
581 restored++;
582 }
Patrik Jakobsson070839e2013-04-05 23:56:18 +0200583 r = r->sibling;
Patrik Jakobsson1611f842013-04-15 13:49:21 +0200584 total++;
Patrik Jakobsson070839e2013-04-05 23:56:18 +0200585 }
586 mutex_unlock(&dev_priv->gtt_mutex);
Patrik Jakobsson1611f842013-04-15 13:49:21 +0200587 DRM_DEBUG_DRIVER("Restored %u of %u gtt ranges (%u KB)", restored,
588 total, (size / 1024));
Patrik Jakobsson070839e2013-04-05 23:56:18 +0200589
590 return 0;
591}