blob: a8a7aca9f1e7db4997f2172773265f6b730d0747 [file] [log] [blame]
Stefan Reinauer800379f2010-03-01 08:34:19 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2008-2009 coresystems GmbH
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; version 2 of
9 * the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
Stefan Reinauer800379f2010-03-01 08:34:19 +000015 */
16
17#include <arch/io.h>
Stefan Reinauer800379f2010-03-01 08:34:19 +000018#include <console/console.h>
Stefan Reinauerbd112982010-03-17 03:14:54 +000019#include <cpu/x86/smm.h>
Stefan Reinauer800379f2010-03-01 08:34:19 +000020
21int mainboard_io_trap_handler(int smif)
22{
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000023 printk(BIOS_DEBUG, "MAINBOARD IO TRAP HANDLER!\n");
Stefan Reinauer800379f2010-03-01 08:34:19 +000024 return 1;
25}