Skip to content

Commit

Permalink
winsys/radeon: fix vram_size overflow with Hawaii
Browse files Browse the repository at this point in the history
This fixes piglit spec/!OpenGL 3.1/minmax.

Cc: mesa-stable@lists.freedesktop.org
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
  • Loading branch information
Marek Olšák committed Jul 28, 2014
1 parent 0e7f563 commit 156b7e2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion src/gallium/drivers/r300/r300_context.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@
#include "r300_screen_buffer.h"
#include "compiler/radeon_regalloc.h"

#include <inttypes.h>

static void r300_release_referenced_objects(struct r300_context *r300)
{
struct pipe_framebuffer_state *fb =
Expand Down Expand Up @@ -482,7 +484,7 @@ struct pipe_context* r300_create_context(struct pipe_screen* screen,
#endif
fprintf(stderr,
"r300: DRM version: %d.%d.%d, Name: %s, ID: 0x%04x, GB: %d, Z: %d\n"
"r300: GART size: %d MB, VRAM size: %d MB\n"
"r300: GART size: %"PRIu64" MB, VRAM size: %"PRIu64" MB\n"
"r300: AA compression RAM: %s, Z compression RAM: %s, HiZ RAM: %s\n",
r300->screen->info.drm_major,
r300->screen->info.drm_minor,
Expand Down
4 changes: 2 additions & 2 deletions src/gallium/winsys/radeon/drm/radeon_drm_cs.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ struct radeon_cs_context {

int reloc_indices_hashlist[512];

unsigned used_vram;
unsigned used_gart;
uint64_t used_vram;
uint64_t used_gart;
};

struct radeon_drm_cs {
Expand Down
4 changes: 2 additions & 2 deletions src/gallium/winsys/radeon/drm/radeon_winsys.h
Original file line number Diff line number Diff line change
Expand Up @@ -199,8 +199,8 @@ struct radeon_info {
uint32_t pci_id;
enum radeon_family family;
enum chip_class chip_class;
uint32_t gart_size;
uint32_t vram_size;
uint64_t gart_size;
uint64_t vram_size;
uint32_t max_sclk;
uint32_t max_compute_units;
uint32_t max_se;
Expand Down

0 comments on commit 156b7e2

Please sign in to comment.