7ebfd293f38ba7215ffb7b126dd48cc825978d1d
[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         struct resource *res0, *res1;
48
49         if (!dev->enabled)
50                 return;
51
52         switch(dev->path.pnp.device) {
53         case W83977F_SP1:
54                 res0 = find_resource(dev, PNP_IDX_IO0);
55                 init_uart8250(res0->base, &conf->com1);
56                 break;
57         case W83977F_SP2:
58                 res0 = find_resource(dev, PNP_IDX_IO0);
59                 init_uart8250(res0->base, &conf->com2);
60                 break;
61         case W83977F_KBC:
62                 res0 = find_resource(dev, PNP_IDX_IO0);
63                 res1 = find_resource(dev, PNP_IDX_IO1);
64                 pc_keyboard_init(&conf->keyboard);
65                 break;
66         }
67 }
68
69 static void w83977f_set_resources(device_t dev)
70 {
71         w83977f_enter_ext_func_mode(dev);
72         pnp_set_resources(dev);
73         w83977f_exit_ext_func_mode(dev);
74 }
75
76 static void w83977f_enable_resources(device_t dev)
77 {
78         w83977f_enter_ext_func_mode(dev);
79         pnp_enable_resources(dev);
80         w83977f_exit_ext_func_mode(dev);
81 }
82
83 static void w83977f_enable(device_t dev)
84 {
85         w83977f_enter_ext_func_mode(dev);
86         pnp_enable(dev);
87         w83977f_exit_ext_func_mode(dev);
88 }
89
90 static struct device_operations ops = {
91         .read_resources         = pnp_read_resources,
92         .set_resources          = w83977f_set_resources,
93         .enable_resources       = w83977f_enable_resources,
94         .enable                 = w83977f_enable,
95         .init                   = w83977f_init,
96 };
97
98 static struct pnp_info pnp_dev_info[] = {
99         { &ops, W83977F_FDC,  PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, { 0x7f8, 0 }, },
100         { &ops, W83977F_PP,   PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, { 0x7f8, 0 }, },
101         { &ops, W83977F_SP1,  PNP_IO0 | PNP_IRQ0, { 0x7f8, 0 }, },
102         { &ops, W83977F_SP2,  PNP_IO0 | PNP_IRQ0, { 0x7f8, 0 }, },
103         { &ops, W83977F_RTC,  PNP_IO0 | PNP_IRQ0, { 0x7f8, 0 }, },
104         { &ops, W83977F_KBC,  PNP_IO0 | PNP_IO1 | PNP_IRQ0 | PNP_IRQ1, { 0x7f8, 0 }, { 0x7f8, 0x0}, },
105         { &ops, W83977F_IR, PNP_IO0 | PNP_IRQ0, { 0x7f8, 0 }, },
106         { &ops, W83977F_GPIO1, PNP_IO0, { 0x7f8, 0 }, },
107         { &ops, W83977F_GPIO2, PNP_IO0, { 0x7f8, 0 }, },
108 };
109
110 static void enable_dev(device_t dev)
111 {
112         pnp_enable_devices(dev, &ops, ARRAY_SIZE(pnp_dev_info), pnp_dev_info);
113 }
114
115 struct chip_operations superio_winbond_w83977f_ops = {
116         CHIP_NAME("Winbond W83977F Super I/O")
117         .enable_dev = enable_dev,
118 };