2003-04-22 21:02:15 +02:00
|
|
|
#include <console/console.h>
|
|
|
|
#include <part/fallback_boot.h>
|
2005-07-08 04:49:49 +02:00
|
|
|
#include <part/watchdog.h>
|
2003-04-22 21:02:15 +02:00
|
|
|
#include <pc80/mc146818rtc.h>
|
|
|
|
#include <arch/io.h>
|
|
|
|
|
2005-07-08 04:49:49 +02:00
|
|
|
|
2009-06-30 17:17:49 +02:00
|
|
|
#if CONFIG_HAVE_FALLBACK_BOOT == 1
|
2005-07-08 04:49:49 +02:00
|
|
|
void set_boot_successful(void)
|
2003-04-22 21:02:15 +02:00
|
|
|
{
|
|
|
|
/* Remember I succesfully booted by setting
|
|
|
|
* the initial boot direction
|
|
|
|
* to the direction that I booted.
|
|
|
|
*/
|
|
|
|
unsigned char index, byte;
|
|
|
|
index = inb(RTC_PORT(0)) & 0x80;
|
|
|
|
index |= RTC_BOOT_BYTE;
|
|
|
|
outb(index, RTC_PORT(0));
|
|
|
|
|
|
|
|
byte = inb(RTC_PORT(1));
|
|
|
|
byte &= 0xfe;
|
2003-07-21 22:13:45 +02:00
|
|
|
byte |= (byte & (1 << 1)) >> 1;
|
2003-04-22 21:02:15 +02:00
|
|
|
|
|
|
|
/* If we are in normal mode set the boot count to 0 */
|
|
|
|
if(byte & 1)
|
|
|
|
byte &= 0x0f;
|
|
|
|
outb(byte, RTC_PORT(1));
|
|
|
|
}
|
2005-07-08 04:49:49 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
void boot_successful(void)
|
|
|
|
{
|
|
|
|
/* Remember this was a successful boot */
|
|
|
|
set_boot_successful();
|
|
|
|
|
|
|
|
/* turn off the boot watchdog */
|
|
|
|
watchdog_off();
|
|
|
|
}
|