From 2e694eda333df2e9a2855d27b0548ec255b9e1a3 Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Thu, 25 Feb 2010 18:23:23 +0000 Subject: Drop i855pm port and rename i855gme to i855 instead. This patch also changes the digitallogic/adl855pc to use that port. It probably won't work, but at least we will get an error if something breaks compilation of the i855 code that is there. Signed-off-by: Stefan Reinauer Acked-by: Ronald G. Minnich git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5163 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/northbridge/intel/i855pm/reset_test.c | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 src/northbridge/intel/i855pm/reset_test.c (limited to 'src/northbridge/intel/i855pm/reset_test.c') diff --git a/src/northbridge/intel/i855pm/reset_test.c b/src/northbridge/intel/i855pm/reset_test.c deleted file mode 100644 index 7c933c58e3..0000000000 --- a/src/northbridge/intel/i855pm/reset_test.c +++ /dev/null @@ -1,19 +0,0 @@ -/* Convert to C by yhlu */ -/* converted to 855 by RGM */ -#define MCH_DRC 0x70 -#define DRC_DONE (1 << 29) - /* If I have already booted once skip a bunch of initialization */ - /* To see if I have already booted I check to see if memory - * has been enabled. - */ -static int bios_reset_detected(void) { - uint32_t dword; - - dword = pci_read_config32(PCI_DEV(0, 0, 0), MCH_DRC); - - if( (dword & DRC_DONE) != 0 ) { - return 1; - } - - return 0; -} -- cgit v1.2.3