drop dead code from sb800 bootblock
authorStefan Reinauer <stefan.reinauer@coreboot.org>
Wed, 20 Apr 2011 22:23:56 +0000 (22:23 +0000)
committerStefan Reinauer <stepan@openbios.org>
Wed, 20 Apr 2011 22:23:56 +0000 (22:23 +0000)
Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Acked-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6534 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

src/southbridge/amd/cimx_wrapper/sb800/bootblock.c

index 2136c348a640e3846ce52afbe0e2c01278e16d7b..629685d689b99bbf6dd1a3d81252d3d6f580c6a4 100644 (file)
 #include <arch/io.h>
 #include <arch/romcc_io.h>
 
-
-#if CONFIG_CONSOLE_POST == 1
-
-/* Data */
-#define UART_RBR 0x00
-#define UART_TBR 0x00
-
-/* Control */
-#define UART_IER 0x01
-#define UART_IIR 0x02
-#define UART_FCR 0x02
-#define UART_LCR 0x03
-#define UART_MCR 0x04
-#define UART_DLL 0x00
-#define UART_DLM 0x01
-
-/* Status */
-#define UART_LSR 0x05
-#define UART_MSR 0x06
-#define UART_SCR 0x07
-
-#ifndef CONFIG_TTYS0_DIV
-#if ((115200%CONFIG_TTYS0_BAUD) != 0)
-#error Bad ttys0 baud rate
-#endif
-#define CONFIG_TTYS0_DIV       (115200/CONFIG_TTYS0_BAUD)
-#endif // CONFIG_TTYS0_DIV
-
-#define UART_LCS       CONFIG_TTYS0_LCS
-
-#endif // CONFIG_CONSOLE_POST == 1
-
-
 static void sb800_enable_rom(void)
 {
   u32 word;
@@ -68,7 +35,7 @@ static void sb800_enable_rom(void)
    */
   dword = pci_io_read_config32(dev, 0x44);
   //dword |= (1<<6) | (1<<29) | (1<<30) ;
-  /*Turn on all of LPC IO Port decode enable */
+  /* Turn on all of LPC IO Port decode enable */
   dword = 0xffffffff;
   pci_io_write_config32(dev, 0x44, dword);