diff options
author | Daniel Vetter <daniel.vetter@ffwll.ch> | 2010-09-12 08:04:03 -0400 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2010-09-21 06:40:06 -0400 |
commit | 0af9e92e779602bdd6d4d19acf63b4802fab91b6 (patch) | |
tree | d508f1db16ab519bc197f9691427455963562cfc | |
parent | aaa62591199162e6496b4f47cac4f5923bc571d1 (diff) |
intel-gtt: clean up gtt size reporting
Consolidate everything in intel-gtt.c and also kill the export
of intel_max_stolen.
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
-rw-r--r-- | drivers/char/agp/intel-gtt.c | 6 | ||||
-rw-r--r-- | drivers/gpu/drm/i915/i915_dma.c | 1 | ||||
-rw-r--r-- | include/drm/intel-gtt.h | 2 |
3 files changed, 5 insertions, 4 deletions
diff --git a/drivers/char/agp/intel-gtt.c b/drivers/char/agp/intel-gtt.c index 57dc50488d18..4f84063bccdd 100644 --- a/drivers/char/agp/intel-gtt.c +++ b/drivers/char/agp/intel-gtt.c | |||
@@ -41,7 +41,6 @@ | |||
41 | 41 | ||
42 | /* Max amount of stolen space, anything above will be returned to Linux */ | 42 | /* Max amount of stolen space, anything above will be returned to Linux */ |
43 | int intel_max_stolen = 32 * 1024 * 1024; | 43 | int intel_max_stolen = 32 * 1024 * 1024; |
44 | EXPORT_SYMBOL(intel_max_stolen); | ||
45 | 44 | ||
46 | static const struct aper_size_info_fixed intel_i810_sizes[] = | 45 | static const struct aper_size_info_fixed intel_i810_sizes[] = |
47 | { | 46 | { |
@@ -756,6 +755,11 @@ static int intel_gtt_init(void) | |||
756 | intel_private.base.gtt_mappable_entries = intel_gtt_mappable_entries(); | 755 | intel_private.base.gtt_mappable_entries = intel_gtt_mappable_entries(); |
757 | intel_private.base.gtt_total_entries = intel_gtt_total_entries(); | 756 | intel_private.base.gtt_total_entries = intel_gtt_total_entries(); |
758 | 757 | ||
758 | dev_info(&intel_private.bridge_dev->dev, | ||
759 | "detected gtt size: %dK total, %dK mappable\n", | ||
760 | intel_private.base.gtt_total_entries * 4, | ||
761 | intel_private.base.gtt_mappable_entries * 4); | ||
762 | |||
759 | gtt_map_size = intel_private.base.gtt_total_entries * 4; | 763 | gtt_map_size = intel_private.base.gtt_total_entries * 4; |
760 | 764 | ||
761 | intel_private.gtt = ioremap(intel_private.gtt_bus_addr, | 765 | intel_private.gtt = ioremap(intel_private.gtt_bus_addr, |
diff --git a/drivers/gpu/drm/i915/i915_dma.c b/drivers/gpu/drm/i915/i915_dma.c index 9977a0a5308a..dd7a0de7212c 100644 --- a/drivers/gpu/drm/i915/i915_dma.c +++ b/drivers/gpu/drm/i915/i915_dma.c | |||
@@ -1200,7 +1200,6 @@ static int i915_load_modeset_init(struct drm_device *dev, | |||
1200 | 1200 | ||
1201 | /* Basic memrange allocator for stolen space (aka mm.vram) */ | 1201 | /* Basic memrange allocator for stolen space (aka mm.vram) */ |
1202 | drm_mm_init(&dev_priv->mm.vram, 0, prealloc_size); | 1202 | drm_mm_init(&dev_priv->mm.vram, 0, prealloc_size); |
1203 | DRM_INFO("set up %ldM of stolen space\n", prealloc_size / (1024*1024)); | ||
1204 | 1203 | ||
1205 | /* We're off and running w/KMS */ | 1204 | /* We're off and running w/KMS */ |
1206 | dev_priv->mm.suspended = 0; | 1205 | dev_priv->mm.suspended = 0; |
diff --git a/include/drm/intel-gtt.h b/include/drm/intel-gtt.h index b3aa7ab72d09..d3c81946f613 100644 --- a/include/drm/intel-gtt.h +++ b/include/drm/intel-gtt.h | |||
@@ -2,8 +2,6 @@ | |||
2 | 2 | ||
3 | #ifndef _DRM_INTEL_GTT_H | 3 | #ifndef _DRM_INTEL_GTT_H |
4 | #define _DRM_INTEL_GTT_H | 4 | #define _DRM_INTEL_GTT_H |
5 | extern int intel_max_stolen; /* from AGP driver */ | ||
6 | |||
7 | struct intel_gtt { | 5 | struct intel_gtt { |
8 | /* Number of stolen gtt entries at the beginning. */ | 6 | /* Number of stolen gtt entries at the beginning. */ |
9 | unsigned int gtt_stolen_entries; | 7 | unsigned int gtt_stolen_entries; |