Remove superfluous Super I/O res0/res1 lines.
[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;
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                 pc_keyboard_init(&conf->keyboard);
63                 break;
64         }
65 }
66
67 static void w83977f_set_resources(device_t dev)
68 {
69         w83977f_enter_ext_func_mode(dev);
70         pnp_set_resources(dev);
71         w83977f_exit_ext_func_mode(dev);
72 }
73
74 static void w83977f_enable_resources(device_t dev)
75 {
76         w83977f_enter_ext_func_mode(dev);
77         pnp_enable_resources(dev);
78         w83977f_exit_ext_func_mode(dev);
79 }
80
81 static void w83977f_enable(device_t dev)
82 {
83         w83977f_enter_ext_func_mode(dev);
84         pnp_enable(dev);
85         w83977f_exit_ext_func_mode(dev);
86 }
87
88 static struct device_operations ops = {
89         .read_resources         = pnp_read_resources,
90         .set_resources          = w83977f_set_resources,
91         .enable_resources       = w83977f_enable_resources,
92         .enable                 = w83977f_enable,
93         .init                   = w83977f_init,
94 };
95
96 static struct pnp_info pnp_dev_info[] = {
97         { &ops, W83977F_FDC,  PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, { 0x7f8, 0 }, },
98         { &ops, W83977F_PP,   PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, { 0x7f8, 0 }, },
99         { &ops, W83977F_SP1,  PNP_IO0 | PNP_IRQ0, { 0x7f8, 0 }, },
100         { &ops, W83977F_SP2,  PNP_IO0 | PNP_IRQ0, { 0x7f8, 0 }, },
101         { &ops, W83977F_RTC,  PNP_IO0 | PNP_IRQ0, { 0x7f8, 0 }, },
102         { &ops, W83977F_KBC,  PNP_IO0 | PNP_IO1 | PNP_IRQ0 | PNP_IRQ1, { 0x7f8, 0 }, { 0x7f8, 0x0}, },
103         { &ops, W83977F_IR, PNP_IO0 | PNP_IRQ0, { 0x7f8, 0 }, },
104         { &ops, W83977F_GPIO1, PNP_IO0, { 0x7f8, 0 }, },
105         { &ops, W83977F_GPIO2, PNP_IO0, { 0x7f8, 0 }, },
106 };
107
108 static void enable_dev(device_t dev)
109 {
110         pnp_enable_devices(dev, &ops, ARRAY_SIZE(pnp_dev_info), pnp_dev_info);
111 }
112
113 struct chip_operations superio_winbond_w83977f_ops = {
114         CHIP_NAME("Winbond W83977F Super I/O")
115         .enable_dev = enable_dev,
116 };