2010-11-22 09:09:50 +01:00
|
|
|
/*
|
|
|
|
* This file is part of the coreboot project.
|
2011-10-31 20:56:45 +01:00
|
|
|
*
|
2010-11-22 09:09:50 +01:00
|
|
|
* Copyright (C) 2003 Eric Biederman
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; version 2 of
|
|
|
|
* the License.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
|
|
|
|
* MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <arch/io.h>
|
|
|
|
#include <console/console.h>
|
2012-11-27 00:07:39 +01:00
|
|
|
#if CONFIG_CMOS_POST
|
2012-09-10 04:09:56 +02:00
|
|
|
#include <pc80/mc146818rtc.h>
|
2013-06-10 18:53:33 +02:00
|
|
|
#include <smp/spinlock.h>
|
2012-11-27 00:07:39 +01:00
|
|
|
#endif
|
2013-06-10 19:21:41 +02:00
|
|
|
#if CONFIG_CMOS_POST_EXTRA
|
|
|
|
#include <device/device.h>
|
|
|
|
#endif
|
2012-09-10 04:14:45 +02:00
|
|
|
#include <elog.h>
|
2010-11-22 09:09:50 +01:00
|
|
|
|
|
|
|
/* Write POST information */
|
|
|
|
|
2012-08-03 20:20:57 +02:00
|
|
|
/* someday romcc will be gone. */
|
|
|
|
#ifndef __ROMCC__
|
|
|
|
/* Some mainboards have very nice features beyond just a simple display.
|
|
|
|
* They can override this function.
|
|
|
|
*/
|
|
|
|
void __attribute__((weak)) mainboard_post(uint8_t value)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
/* This just keeps the number of #ifs to a minimum */
|
|
|
|
#define mainboard_post(x)
|
|
|
|
#endif
|
|
|
|
|
2012-09-10 04:09:56 +02:00
|
|
|
#if CONFIG_CMOS_POST
|
2012-09-10 04:14:45 +02:00
|
|
|
|
2013-06-10 18:53:33 +02:00
|
|
|
DECLARE_SPIN_LOCK(cmos_post_lock)
|
|
|
|
|
2012-09-10 04:14:45 +02:00
|
|
|
#if !defined(__PRE_RAM__)
|
|
|
|
void cmos_post_log(void)
|
|
|
|
{
|
2013-06-10 18:53:33 +02:00
|
|
|
u8 code = 0;
|
2013-06-10 19:21:41 +02:00
|
|
|
#if CONFIG_CMOS_POST_EXTRA
|
|
|
|
u32 extra = 0;
|
|
|
|
#endif
|
2013-06-10 18:53:33 +02:00
|
|
|
|
|
|
|
spin_lock(&cmos_post_lock);
|
2012-09-10 04:14:45 +02:00
|
|
|
|
|
|
|
/* Get post code from other bank */
|
|
|
|
switch (cmos_read(CMOS_POST_BANK_OFFSET)) {
|
|
|
|
case CMOS_POST_BANK_0_MAGIC:
|
|
|
|
code = cmos_read(CMOS_POST_BANK_1_OFFSET);
|
2013-06-10 19:21:41 +02:00
|
|
|
#if CONFIG_CMOS_POST_EXTRA
|
|
|
|
extra = cmos_read32(CMOS_POST_BANK_1_EXTRA);
|
|
|
|
#endif
|
2012-09-10 04:14:45 +02:00
|
|
|
break;
|
|
|
|
case CMOS_POST_BANK_1_MAGIC:
|
|
|
|
code = cmos_read(CMOS_POST_BANK_0_OFFSET);
|
2013-06-10 19:21:41 +02:00
|
|
|
#if CONFIG_CMOS_POST_EXTRA
|
|
|
|
extra = cmos_read32(CMOS_POST_BANK_0_EXTRA);
|
|
|
|
#endif
|
2012-09-10 04:14:45 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2013-06-10 18:53:33 +02:00
|
|
|
spin_unlock(&cmos_post_lock);
|
|
|
|
|
2012-09-10 04:14:45 +02:00
|
|
|
/* Check last post code in previous boot against normal list */
|
|
|
|
switch (code) {
|
|
|
|
case POST_OS_BOOT:
|
|
|
|
case POST_OS_RESUME:
|
|
|
|
case POST_ENTER_ELF_BOOT:
|
|
|
|
case 0:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
printk(BIOS_WARNING, "POST: Unexpected post code "
|
|
|
|
"in previous boot: 0x%02x\n", code);
|
|
|
|
#if CONFIG_ELOG
|
|
|
|
elog_add_event_word(ELOG_TYPE_LAST_POST_CODE, code);
|
2013-06-10 19:21:41 +02:00
|
|
|
#if CONFIG_CMOS_POST_EXTRA
|
|
|
|
if (extra)
|
|
|
|
elog_add_event_dword(ELOG_TYPE_POST_EXTRA, extra);
|
|
|
|
#endif
|
2012-09-10 04:14:45 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
2013-06-10 19:21:41 +02:00
|
|
|
|
|
|
|
#if CONFIG_CMOS_POST_EXTRA
|
|
|
|
void post_log_extra(u32 value)
|
|
|
|
{
|
|
|
|
spin_lock(&cmos_post_lock);
|
|
|
|
|
|
|
|
switch (cmos_read(CMOS_POST_BANK_OFFSET)) {
|
|
|
|
case CMOS_POST_BANK_0_MAGIC:
|
|
|
|
cmos_write32(CMOS_POST_BANK_0_EXTRA, value);
|
|
|
|
break;
|
|
|
|
case CMOS_POST_BANK_1_MAGIC:
|
|
|
|
cmos_write32(CMOS_POST_BANK_1_EXTRA, value);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
spin_unlock(&cmos_post_lock);
|
|
|
|
}
|
2013-06-10 19:34:20 +02:00
|
|
|
|
|
|
|
void post_log_path(struct device *dev)
|
|
|
|
{
|
|
|
|
if (dev) {
|
|
|
|
/* Encode path into lower 3 bytes */
|
|
|
|
u32 path = dev_path_encode(dev);
|
|
|
|
/* Upper byte contains the log type */
|
|
|
|
path |= CMOS_POST_EXTRA_DEV_PATH << 24;
|
|
|
|
post_log_extra(path);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void post_log_clear(void)
|
|
|
|
{
|
|
|
|
post_log_extra(0);
|
|
|
|
}
|
2013-06-10 19:21:41 +02:00
|
|
|
#endif /* CONFIG_CMOS_POST_EXTRA */
|
2012-09-10 04:14:45 +02:00
|
|
|
#endif /* !__PRE_RAM__ */
|
|
|
|
|
2012-09-10 04:09:56 +02:00
|
|
|
static void cmos_post_code(u8 value)
|
|
|
|
{
|
2013-06-10 18:53:33 +02:00
|
|
|
spin_lock(&cmos_post_lock);
|
|
|
|
|
2012-09-10 04:09:56 +02:00
|
|
|
switch (cmos_read(CMOS_POST_BANK_OFFSET)) {
|
|
|
|
case CMOS_POST_BANK_0_MAGIC:
|
|
|
|
cmos_write(value, CMOS_POST_BANK_0_OFFSET);
|
|
|
|
break;
|
|
|
|
case CMOS_POST_BANK_1_MAGIC:
|
|
|
|
cmos_write(value, CMOS_POST_BANK_1_OFFSET);
|
|
|
|
break;
|
|
|
|
}
|
2013-06-10 18:53:33 +02:00
|
|
|
|
|
|
|
spin_unlock(&cmos_post_lock);
|
2012-09-10 04:09:56 +02:00
|
|
|
}
|
|
|
|
#endif /* CONFIG_CMOS_POST */
|
|
|
|
|
2010-11-22 09:09:50 +01:00
|
|
|
void post_code(uint8_t value)
|
|
|
|
{
|
2011-04-21 22:45:45 +02:00
|
|
|
#if !CONFIG_NO_POST
|
|
|
|
#if CONFIG_CONSOLE_POST
|
2010-11-22 09:09:50 +01:00
|
|
|
print_emerg("POST: 0x");
|
|
|
|
print_emerg_hex8(value);
|
|
|
|
print_emerg("\n");
|
2012-09-10 04:09:56 +02:00
|
|
|
#endif
|
|
|
|
#if CONFIG_CMOS_POST
|
|
|
|
cmos_post_code(value);
|
2010-11-22 09:09:50 +01:00
|
|
|
#endif
|
2012-11-05 21:34:09 +01:00
|
|
|
#if CONFIG_IO_POST
|
|
|
|
outb(value, CONFIG_IO_POST_PORT);
|
|
|
|
#endif
|
2010-11-22 09:09:50 +01:00
|
|
|
#endif
|
2012-08-03 20:20:57 +02:00
|
|
|
mainboard_post(value);
|
2010-11-22 09:09:50 +01:00
|
|
|
}
|