blob: a132446352772bded53c32d30179278cd5a94cf4 [file] [log] [blame]
Dan Lykowskifdbb8d82009-01-06 00:33:30 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2009 Dynon Avionics
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 $
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 <stdint.h>
27#include <stdlib.h>
28#include <bitops.h>
29#include <uart8250.h>
30#include <pc80/keyboard.h>
31#include "chip.h"
32#include "w83627uhg.h"
33
34static void w83627uhg_enter_ext_func_mode(device_t dev)
35{
Stefan Reinauer2b34db82009-02-28 20:10:20 +000036 outb(0x87, dev->path.pnp.port);
37 outb(0x87, dev->path.pnp.port);
Dan Lykowskifdbb8d82009-01-06 00:33:30 +000038}
39
40static void w83627uhg_exit_ext_func_mode(device_t dev)
41{
Stefan Reinauer2b34db82009-02-28 20:10:20 +000042 outb(0xaa, dev->path.pnp.port);
Dan Lykowskifdbb8d82009-01-06 00:33:30 +000043}
44
45/*
46 * Set the UART clock source.
47 *
48 * Possible UART clock source speeds are:
49 *
50 * 0 = 1.8462 MHz (default)
51 * 1 = 2 MHz
52 * 2 = 24 MHz
53 * 3 = 14.769 MHz
54 *
55 * The faster clocks allow for BAUD rates up to 2mbits.
56 *
57 * Warning: The kernel will need to be adjusted since it assumes
58 * a 1.8462 MHz clock.
59 */
60static void set_uart_clock_source(device_t dev, u8 uart_clock)
61{
62 u8 value;
63
64 w83627uhg_enter_ext_func_mode(dev);
65 pnp_set_logical_device(dev);
66 value = pnp_read_config(dev, 0xf0);
67 value &= ~0x03;
68 value |= (uart_clock & 0x03);
69 pnp_write_config(dev, 0xf0, value);
70 w83627uhg_exit_ext_func_mode(dev);
71}
72
73static void w83627uhg_init(device_t dev)
74{
Uwe Hermann340fa932010-11-10 14:53:36 +000075 struct superio_winbond_w83627uhg_config *conf = dev->chip_info;
Uwe Hermann5330dd92010-11-11 13:14:55 +000076 struct resource *res0;
Dan Lykowskifdbb8d82009-01-06 00:33:30 +000077
78 if (!dev->enabled)
79 return;
80
Stefan Reinauer2b34db82009-02-28 20:10:20 +000081 switch(dev->path.pnp.device) {
Zheng Bao9db833b2009-12-28 09:59:44 +000082 case W83627UHG_SP1:
Dan Lykowskifdbb8d82009-01-06 00:33:30 +000083 res0 = find_resource(dev, PNP_IDX_IO0);
84 /* set_uart_clock_source(dev, 0); */
85 init_uart8250(res0->base, &conf->com1);
86 break;
87 case W83627UHG_SP2:
88 res0 = find_resource(dev, PNP_IDX_IO0);
89 /* set_uart_clock_source(dev, 0); */
90 init_uart8250(res0->base, &conf->com2);
91 break;
92 case W83627UHG_SP3:
93 res0 = find_resource(dev, PNP_IDX_IO0);
94 /* set_uart_clock_source(dev, 0); */
95 init_uart8250(res0->base, &conf->com3);
96 break;
97 case W83627UHG_SP4:
98 res0 = find_resource(dev, PNP_IDX_IO0);
99 /* set_uart_clock_source(dev, 0); */
100 init_uart8250(res0->base, &conf->com4);
101 break;
102 case W83627UHG_SP5:
103 res0 = find_resource(dev, PNP_IDX_IO0);
104 /* set_uart_clock_source(dev, 0); */
105 init_uart8250(res0->base, &conf->com5);
106 break;
107 case W83627UHG_SP6:
108 res0 = find_resource(dev, PNP_IDX_IO0);
109 /* set_uart_clock_source(dev, 0); */
110 init_uart8250(res0->base, &conf->com6);
111 break;
112 case W83627UHG_KBC:
Stefan Reinauer740b5872010-02-23 20:31:37 +0000113 pc_keyboard_init(&conf->keyboard);
Dan Lykowskifdbb8d82009-01-06 00:33:30 +0000114 break;
115 }
116}
117
118static void w83627uhg_set_resources(device_t dev)
119{
120 w83627uhg_enter_ext_func_mode(dev);
121 pnp_set_resources(dev);
122 w83627uhg_exit_ext_func_mode(dev);
123}
124
125static void w83627uhg_enable_resources(device_t dev)
126{
127 w83627uhg_enter_ext_func_mode(dev);
128 pnp_enable_resources(dev);
129 w83627uhg_exit_ext_func_mode(dev);
130}
131
132static void w83627uhg_enable(device_t dev)
133{
134 w83627uhg_enter_ext_func_mode(dev);
135 pnp_enable(dev);
136 w83627uhg_exit_ext_func_mode(dev);
137}
138
139static struct device_operations ops = {
140 .read_resources = pnp_read_resources,
141 .set_resources = w83627uhg_set_resources,
142 .enable_resources = w83627uhg_enable_resources,
143 .enable = w83627uhg_enable,
144 .init = w83627uhg_init,
145};
146
147static struct pnp_info pnp_dev_info[] = {
Uwe Hermanna69d9782010-11-15 19:35:14 +0000148 { &ops, W83627UHG_FDC, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, {0x07f8, 0}, },
149 { &ops, W83627UHG_PP, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, {0x07f8, 0}, },
150 { &ops, W83627UHG_SP1, PNP_IO0 | PNP_IRQ0, {0x07f8, 0}, },
151 { &ops, W83627UHG_SP2, PNP_IO0 | PNP_IRQ0, {0x07f8, 0}, },
152 { &ops, W83627UHG_KBC, PNP_IO0 | PNP_IO1 | PNP_IRQ0 | PNP_IRQ1, {0x07ff, 0}, {0x07ff, 4}, },
153 { &ops, W83627UHG_SP3, PNP_IO0 | PNP_IRQ0, {0x07f8, 0}, },
Dan Lykowskifdbb8d82009-01-06 00:33:30 +0000154 { &ops, W83627UHG_GPIO3_4, },
155 { &ops, W83627UHG_WDTO_PLED_GPIO5_6, },
Uwe Hermanna69d9782010-11-15 19:35:14 +0000156 { &ops, W83627UHG_GPIO1_2, },
157 { &ops, W83627UHG_ACPI, PNP_IRQ0, },
158 { &ops, W83627UHG_HWM, PNP_IO0 | PNP_IRQ0, {0x0ff8, 0}, },
159 { &ops, W83627UHG_PECI_SST, },
160 { &ops, W83627UHG_SP4, PNP_IO0 | PNP_IRQ0, {0x07f8, 0}, },
161 { &ops, W83627UHG_SP5, PNP_IO0 | PNP_IRQ0, {0x07f8, 0}, },
162 { &ops, W83627UHG_SP6, PNP_IO0 | PNP_IRQ0, {0x07f8, 0}, },
Dan Lykowskifdbb8d82009-01-06 00:33:30 +0000163};
164
165static void enable_dev(device_t dev)
166{
167 pnp_enable_devices(dev, &ops, ARRAY_SIZE(pnp_dev_info), pnp_dev_info);
168}
169
170struct chip_operations superio_winbond_w83627uhg_ops = {
171 CHIP_NAME("Winbond W83627UHG Super I/O")
172 .enable_dev = enable_dev,
173};