63b044a9e5e33508f2e46f9d07f3b366a38d8f34
[coreboot.git] / src / superio / winbond / w83627ehg / w83627ehg_early_serial.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2007 AMD
5  * Written by Yinghai Lu <yinghai.lu@amd.com> for AMD.
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
20  */
21
22 #include <arch/romcc_io.h>
23 #include "w83627ehg.h"
24
25 static inline void pnp_enter_ext_func_mode(device_t dev)
26 {
27         unsigned port = dev >> 8;
28         outb(0x87, port);
29         outb(0x87, port);
30 }
31
32 static void pnp_exit_ext_func_mode(device_t dev)
33 {
34         unsigned port = dev >> 8;
35         outb(0xaa, port);
36 }
37
38 void w83627ehg_enable_serial(device_t dev, unsigned iobase)
39 {
40         pnp_enter_ext_func_mode(dev);
41         pnp_set_logical_device(dev);
42         pnp_set_enable(dev, 0);
43         pnp_set_iobase(dev, PNP_IDX_IO0, iobase);
44         pnp_set_enable(dev, 1);
45         pnp_exit_ext_func_mode(dev);
46 }