aboutsummaryrefslogtreecommitdiff
path: root/src/cpu/i386/bist32_fail.inc
diff options
context:
space:
mode:
authorEric Biederman <ebiederm@xmission.com>2004-10-14 19:39:27 +0000
committerEric Biederman <ebiederm@xmission.com>2004-10-14 19:39:27 +0000
commitb84166e8e53476f1ef4d49aca17f99d303b4aa67 (patch)
tree724c55edfa55813742745553995f70fa43c851bb /src/cpu/i386/bist32_fail.inc
parentfcd5ace00b333ce31b11b02a2243dfbf39307f10 (diff)
- remove deprecated directories
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1658 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/cpu/i386/bist32_fail.inc')
-rw-r--r--src/cpu/i386/bist32_fail.inc44
1 files changed, 0 insertions, 44 deletions
diff --git a/src/cpu/i386/bist32_fail.inc b/src/cpu/i386/bist32_fail.inc
deleted file mode 100644
index f467b065bc..0000000000
--- a/src/cpu/i386/bist32_fail.inc
+++ /dev/null
@@ -1,44 +0,0 @@
-
-
- jmp bist32_fail_0
-bist32_fail:
- movl %eax, %ebp
-
-#if 1
-#define SIO_BASE 0x2e
-#define SIO_INDEX SIO_BASE
-#define SIO_DATA SIO_BASE+1
-#define SIO_WRITE_CONFIG(value, reg) \
- movb reg, %al ; \
- outb %al, $(SIO_INDEX) ; \
- movb value, %al ; \
- outb %al, $(SIO_DATA)
-
-#define SIO_READ_CONFIG(reg) \
- movb reg, %al ; \
- outb %al, $(SIO_INDEX) ; \
- inb $(SIO_DATA), %al
-
-#define SIO_SET_LOGICAL_DEVICE(device) \
- SIO_WRITE_CONFIG(device, $0x07)
-
- /* Enable serial 1 */
- SIO_SET_LOGICAL_DEVICE($3)
- SIO_WRITE_CONFIG($1, $0x30)
- SIO_WRITE_CONFIG($0x3, $0x60)
- SIO_WRITE_CONFIG($0xf8, $0x61)
-
-#endif
- CALLSP(serial_init)
- CONSOLE_DEBUG_TX_STRING($str_bist_failed)
- CONSOLE_DEBUG_TX_HEX32(%ebp)
- CONSOLE_DEBUG_TX_STRING($str_bist_newline)
- jmp .Lhlt
-
-bist32_fail_0:
-
-.section ".rom.data"
-str_bist_failed: .string "BIST failed: "
-str_bist_newline: .string "\r\n"
-.previous
-