printk_foo -> printk(BIOS_FOO, ...)
[coreboot.git] / src / mainboard / roda / rk886ex / mainboard_smi.c
1 /*
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.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
19  * MA 02110-1301 USA
20  */
21
22 #include <arch/io.h>
23 #include <arch/romcc_io.h>
24 #include <console/console.h>
25 #include "../../../southbridge/intel/i82801gx/i82801gx_nvs.h"
26
27 /* The southbridge SMI handler checks whether gnvs has a 
28  * valid pointer before calling the trap handler
29  */
30 extern global_nvs_t *gnvs;
31
32 int mainboard_io_trap_handler(int smif)
33 {
34         switch (smif) {
35         case 0x99:
36                 printk(BIOS_DEBUG, "Sample\n");
37                 //gnvs->smif = 0;
38                 break;
39         default:
40                 return 0;
41         }
42
43         /* On success, the IO Trap Handler returns 0
44          * On failure, the IO Trap Handler returns a value != 0
45          *
46          * For now, we force the return value to 0 and log all traps to
47          * see what's going on.
48          */
49         //gnvs->smif = 0;
50         return 1;
51 }
52