Remove intel_statuspage, now that we have /debug/dri/0/i915_gem_hws

This commit is contained in:
Eric Anholt 2010-02-19 12:04:51 -05:00
parent 40f5f72e30
commit cba8e3136a
2 changed files with 0 additions and 91 deletions

View File

@ -1,6 +1,5 @@
noinst_PROGRAMS = \
intel_gtt \
intel_statuspage \
intel_hotplug \
intel_lid
@ -14,11 +13,6 @@ intel_hotplug_SOURCES = \
reg_dumper.h \
xprintf.c
intel_statuspage_SOURCES = \
statuspage.c \
reg_dumper.h \
util.c
intel_lid_SOURCES = \
lid.c \
reg_dumper.h \
@ -26,7 +20,6 @@ intel_lid_SOURCES = \
intel_hotplug_LDADD = $(PCIACCESS_LIBS)
intel_gtt_LDADD = $(PCIACCESS_LIBS)
intel_statuspage_LDADD = $(PCIACCESS_LIBS)
intel_lid_LDADD = $(PCIACCESS_LIBS)
AM_CFLAGS = $(PCIACCESS_CFLAGS) $(CWARNFLAGS) \

View File

@ -1,84 +0,0 @@
/*
* Copyright © 2007 Intel Corporation
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice (including the next
* paragraph) shall be included in all copies or substantial portions of the
* Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*
* Authors:
* Eric Anholt <eric@anholt.net>
*
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdarg.h>
#include <sys/types.h>
#include <sys/mman.h>
#include <pciaccess.h>
#include <err.h>
#include <unistd.h>
#include <fcntl.h>
#include "reg_dumper.h"
#include "../i810_reg.h"
#define HWS_NEED_GFX(pI810) ((IS_G33CLASS(pI810) ||\
IS_G4X(pI810) || IS_IGDNG(pI810)))
int main(int argc, char **argv)
{
I830Rec i830;
I830Ptr pI830 = &i830;
int devmem;
uint32_t hws_offset;
volatile uint32_t *hws;
intel_i830rec_init(pI830);
if (HWS_NEED_GFX(pI830))
errx(1, "status page in graphics virtual unsupported.\n");
hws_offset = INREG(HWS_PGA);
devmem = open("/dev/mem", O_RDWR, 0);
if (devmem == -1)
err(1, "Couldn't open /dev/mem");
hws = mmap(NULL, 4096, PROT_READ, MAP_SHARED, devmem, hws_offset);
if (hws == MAP_FAILED)
err(1, "Couldn't map /dev/mem at 0x%08x", hws_offset);
close(devmem);
for (;;) {
int i;
printf("\n");
for (i = 0; i < 64; i += 4) {
printf("0x%04x: 0x%08x 0x%08x 0x%08x 0x%08x\n", i * 4,
hws[i], hws[i + 1], hws[i + 2], hws[i + 3]);
}
sleep(1);
}
return 0;
}