Drop baud rate init to an arbitrary baud rate from Super I/O code.
[coreboot.git] / src / superio / winbond / w83977f / superio.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2007 Nikolay Petukhov <nikolay.petukhov@gmail.com>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
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, MA  02110-1301 USA
19  */
20
21 #include <arch/io.h>
22 #include <device/device.h>
23 #include <device/pnp.h>
24 #include <console/console.h>
25 #include <string.h>
26 #include <bitops.h>
27 #include <uart8250.h>
28 #include <pc80/keyboard.h>
29 #include <stdlib.h>
30 #include "chip.h"
31 #include "w83977f.h"
32
33 static void w83977f_enter_ext_func_mode(device_t dev)
34 {
35         outb(0x87, dev->path.pnp.port);
36         outb(0x87, dev->path.pnp.port);
37 }
38
39 static void w83977f_exit_ext_func_mode(device_t dev)
40 {
41         outb(0xaa, dev->path.pnp.port);
42 }
43
44 static void w83977f_init(device_t dev)
45 {
46         struct superio_winbond_w83977f_config *conf = dev->chip_info;
47
48         if (!dev->enabled)
49                 return;
50
51         switch(dev->path.pnp.device) {
52         case W83977F_KBC:
53                 pc_keyboard_init(&conf->keyboard);
54                 break;
55         }
56 }
57
58 static void w83977f_set_resources(device_t dev)
59 {
60         w83977f_enter_ext_func_mode(dev);
61         pnp_set_resources(dev);
62         w83977f_exit_ext_func_mode(dev);
63 }
64
65 static void w83977f_enable_resources(device_t dev)
66 {
67         w83977f_enter_ext_func_mode(dev);
68         pnp_enable_resources(dev);
69         w83977f_exit_ext_func_mode(dev);
70 }
71
72 static void w83977f_enable(device_t dev)
73 {
74         w83977f_enter_ext_func_mode(dev);
75         pnp_enable(dev);
76         w83977f_exit_ext_func_mode(dev);
77 }
78
79 static struct device_operations ops = {
80         .read_resources         = pnp_read_resources,
81         .set_resources          = w83977f_set_resources,
82         .enable_resources       = w83977f_enable_resources,
83         .enable                 = w83977f_enable,
84         .init                   = w83977f_init,
85 };
86
87 static struct pnp_info pnp_dev_info[] = {
88         { &ops, W83977F_FDC,  PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, {0x07f8, 0}, },
89         { &ops, W83977F_PP,   PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, {0x07f8, 0}, },
90         { &ops, W83977F_SP1,  PNP_IO0 | PNP_IRQ0, {0x07f8, 0}, },
91         { &ops, W83977F_SP2,  PNP_IO0 | PNP_IRQ0, {0x07f8, 0}, },
92         { &ops, W83977F_RTC,  PNP_IO0 | PNP_IRQ0, {0x07f8, 0}, },
93         { &ops, W83977F_KBC,  PNP_IO0 | PNP_IO1 | PNP_IRQ0 | PNP_IRQ1, {0x07f8, 0}, {0x07f8, 0}, },
94         { &ops, W83977F_IR, PNP_IO0 | PNP_IRQ0, {0x07f8, 0}, },
95         { &ops, W83977F_GPIO1, PNP_IO0, {0x07f8, 0}, },
96         { &ops, W83977F_GPIO2, PNP_IO0, {0x07f8, 0}, },
97 };
98
99 static void enable_dev(device_t dev)
100 {
101         pnp_enable_devices(dev, &ops, ARRAY_SIZE(pnp_dev_info), pnp_dev_info);
102 }
103
104 struct chip_operations superio_winbond_w83977f_ops = {
105         CHIP_NAME("Winbond W83977F Super I/O")
106         .enable_dev = enable_dev,
107 };