Follow-up for r6025, do 0x87 twice in superio.c, too.
[coreboot.git] / src / superio / fintek / f71889 / superio.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2010 Alec Ari <neotheuser@ymail.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 <stdlib.h>
26 #include <uart8250.h>
27 #include "chip.h"
28 #include "f71889.h"
29
30 static void pnp_enter_conf_state(device_t dev)
31 {
32         outb(0x87, dev->path.pnp.port);
33         outb(0x87, dev->path.pnp.port);
34 }
35
36 static void pnp_exit_conf_state(device_t dev)
37 {
38         outb(0xaa, dev->path.pnp.port);
39 }
40
41 static void f71889_init(device_t dev)
42 {
43         struct superio_fintek_f71889_config *conf = dev->chip_info;
44         struct resource *res0;
45
46         if (!dev->enabled)
47                 return;
48
49         switch (dev->path.pnp.device) {
50         /* TODO: Might potentially need code for HWM or FDC etc. */
51         case F71889_SP1:
52                 res0 = find_resource(dev, PNP_IDX_IO0);
53                 init_uart8250(res0->base, &conf->com1);
54                 break;
55         case F71889_SP2:
56                 res0 = find_resource(dev, PNP_IDX_IO0);
57                 init_uart8250(res0->base, &conf->com2);
58                 break;
59         case F71889_KBC:
60                 res0 = find_resource(dev, PNP_IDX_IO0);
61                 pc_keyboard_init(&conf->keyboard);
62                 break;
63         }
64 }
65
66 static void f71889_pnp_set_resources(device_t dev)
67 {
68         pnp_enter_conf_state(dev);
69         pnp_set_resources(dev);
70         pnp_exit_conf_state(dev);
71 }
72
73 static void f71889_pnp_enable_resources(device_t dev)
74 {
75         pnp_enter_conf_state(dev);
76         pnp_enable_resources(dev);
77         pnp_exit_conf_state(dev);
78 }
79
80 static void f71889_pnp_enable(device_t dev)
81 {
82         pnp_enter_conf_state(dev);
83         pnp_set_logical_device(dev);
84         (dev->enabled) ? pnp_set_enable(dev, 1) : pnp_set_enable(dev, 0);
85         pnp_exit_conf_state(dev);
86 }
87
88 static struct device_operations ops = {
89         .read_resources   = pnp_read_resources,
90         .set_resources    = f71889_pnp_set_resources,
91         .enable_resources = f71889_pnp_enable_resources,
92         .enable           = f71889_pnp_enable,
93         .init             = f71889_init,
94 };
95
96 static struct pnp_info pnp_dev_info[] = {
97         /* TODO: Some of the 0x7f8 etc. values may not be correct. */
98         { &ops, F71889_FDC,  PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, { 0x07f8, 0 }, },
99         { &ops, F71889_SP1,  PNP_IO0 | PNP_IRQ0, { 0x7f8, 0 }, },
100         { &ops, F71889_SP2,  PNP_IO0 | PNP_IRQ0, { 0x7f8, 0 }, },
101         { &ops, F71889_PP,   PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, { 0x07f8, 0 }, },
102         { &ops, F71889_HWM,  PNP_IO0 | PNP_IRQ0, { 0xff8, 0 }, },
103         { &ops, F71889_KBC,  PNP_IO0 | PNP_IRQ0 | PNP_IRQ1, { 0x7ff, 0 }, },
104         { &ops, F71889_GPIO, },
105         { &ops, F71889_VID,  PNP_IO0 | PNP_IRQ0, { 0x07f8, 0 }, },
106         { &ops, F71889_SPI, },
107         { &ops, F71889_PME, },
108         { &ops, F71889_VREF, },
109 };
110
111 static void enable_dev(device_t dev)
112 {
113         pnp_enable_devices(dev, &ops, ARRAY_SIZE(pnp_dev_info), pnp_dev_info);
114 }
115
116 struct chip_operations superio_fintek_f71889_ops = {
117         CHIP_NAME("Fintek F71889 Super I/O")
118         .enable_dev = enable_dev
119 };