aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPatrick Georgi <patrick.georgi@secunet.com>2011-10-07 14:25:01 +0200
committerStefan Reinauer <stefan.reinauer@coreboot.org>2012-05-04 01:54:16 +0200
commit872eb793930258ac224e159aa789ab8bff74bf5f (patch)
treecbd365a272191997bb8c164ac2405a7a57399019 /src
parent2e2a68bbc84bb2c2574bd77c3442e0de4e0259a5 (diff)
siemens/sitemp_g1p1: Drop debug code
Change-Id: I40a4201b468131ba67e48ab68d62ca5413f2e2e8 Signed-off-by: Patrick Georgi <patrick.georgi@secunet.com> Reviewed-on: http://review.coreboot.org/1000 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src')
-rw-r--r--src/mainboard/siemens/sitemp_g1p1/mainboard.c29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/mainboard/siemens/sitemp_g1p1/mainboard.c b/src/mainboard/siemens/sitemp_g1p1/mainboard.c
index 60a2ee2188..76397abb7d 100644
--- a/src/mainboard/siemens/sitemp_g1p1/mainboard.c
+++ b/src/mainboard/siemens/sitemp_g1p1/mainboard.c
@@ -661,34 +661,6 @@ static void patch_mmio_nonposted( void )
* @param
*/
-static void wait_pepp( void ) {
-
- int boot_delay = 0;
-
- if( get_option(&boot_delay, "boot_delay") < 0)
- boot_delay = 5;
-
- printk(BIOS_DEBUG, "boot_delay = %d sec\n", boot_delay);
- if ( boot_delay > 0 ) {
- init_timer();
- // wait for PEPP-Board
- printk(BIOS_INFO, "Give PEPP-Board %d sec(s) time to coming up ", boot_delay);
- while ( boot_delay ) {
- lapic_write(LAPIC_TMICT, 0xffffffff);
- udelay(1000000); // delay time approx. 1 sec
- printk(BIOS_INFO, ".");
- boot_delay--;
- }
- printk(BIOS_INFO, "\n");
- }
-}
-
- /**
- * @brief
- *
- * @param
- */
-
struct {
unsigned int bus;
unsigned int devfn;
@@ -926,7 +898,6 @@ static void enable_dev(device_t dev)
uma_memory_base = 0;
#endif
- wait_pepp();
dev->ops->init = init; // rest of mainboard init later
}