From 8564acf936726c5568d71e4fa93a0ae9814e0d07 Mon Sep 17 00:00:00 2001 From: wdenk Date: Mon, 14 Jul 2003 22:13:32 +0000 Subject: * Patches by Yuli Barcohen, 13 Jul 2003: - Correct flash and JFFS2 support for MPC8260ADS - fix PVR values and clock generation for PowerQUICC II family (8270/8275/8280) * Patch by Bernhard Kuhn, 08 Jul 2003: - add support for M68K targets * Patch by Ken Chou, 3 Jul: - Fix PCI config table for A3000 - Fix iobase for natsemi.c (PCI_BASE_ADDRESS_0 is the IO base register for DP83815) * Allow to enable "slow" POST routines by key press on power-on * Fix temperature dependend switching of LCD backlight on LWMON * Tweak output format for LWMON --- include/post.h | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'include/post.h') diff --git a/include/post.h b/include/post.h index 8f8f1853f7..0f6366868b 100644 --- a/include/post.h +++ b/include/post.h @@ -30,8 +30,8 @@ #ifdef CONFIG_POST #define POST_POWERON 0x01 /* test runs on power-on booting */ -#define POST_POWERNORMAL 0x02 /* test runs on normal booting */ -#define POST_POWERFAIL 0x04 /* test runs on power-fail booting */ +#define POST_NORMAL 0x02 /* test runs on normal booting */ +#define POST_SLOWTEST 0x04 /* test is slow, enabled by key press */ #define POST_POWERTEST 0x08 /* test runs after watchdog reset */ #define POST_ROM 0x0100 /* test runs in ROM */ @@ -41,9 +41,9 @@ #define POST_PREREL 0x1000 /* test runs before relocation */ #define POST_MEM (POST_RAM | POST_ROM) -#define POST_ALWAYS (POST_POWERNORMAL | \ - POST_POWERFAIL | \ - POST_MANUAL | \ +#define POST_ALWAYS (POST_NORMAL | \ + POST_SLOWTEST | \ + POST_MANUAL | \ POST_POWERON ) #ifndef __ASSEMBLY__ @@ -71,6 +71,7 @@ unsigned long post_time_ms (unsigned long base); extern struct post_test post_list[]; extern unsigned int post_list_size; +extern int post_hotkeys_pressed(gd_t *); #endif /* __ASSEMBLY__ */ -- cgit v1.2.1