blob: 6ae9a6aa9a4864d5077cb6c84efad76d6663a047 [file] [log] [blame]
Zheng Bao9db833b2009-12-28 09:59:44 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2000 AG Electronics Ltd.
5 * Copyright (C) 2003-2004 Linux Networx
Uwe Hermann340fa932010-11-10 14:53:36 +00006 * Copyright (C) 2004 Tyan
Zheng Bao9db833b2009-12-28 09:59:44 +00007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
Paul Menzela46a7122013-02-23 18:37:27 +010020 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Zheng Bao9db833b2009-12-28 09:59:44 +000021 */
Richard Smith924f92f2006-07-29 17:40:36 +000022
Richard Smith924f92f2006-07-29 17:40:36 +000023#include <arch/io.h>
24#include <device/device.h>
25#include <device/pnp.h>
26#include <console/console.h>
27#include <string.h>
Richard Smith924f92f2006-07-29 17:40:36 +000028#include <uart8250.h>
29#include <pc80/keyboard.h>
Carl-Daniel Hailfinger2ee67792008-10-01 12:52:52 +000030#include <stdlib.h>
Richard Smith924f92f2006-07-29 17:40:36 +000031#include "chip.h"
32#include "w83977tf.h"
33
Zheng Bao9db833b2009-12-28 09:59:44 +000034static void w83977tf_enter_ext_func_mode(device_t dev)
Richard Smith924f92f2006-07-29 17:40:36 +000035{
Zheng Bao9db833b2009-12-28 09:59:44 +000036 outb(0x87, dev->path.pnp.port);
37 outb(0x87, dev->path.pnp.port);
Richard Smith924f92f2006-07-29 17:40:36 +000038}
Uwe Hermann340fa932010-11-10 14:53:36 +000039
Zheng Bao9db833b2009-12-28 09:59:44 +000040static void w83977tf_exit_ext_func_mode(device_t dev)
Richard Smith924f92f2006-07-29 17:40:36 +000041{
Zheng Bao9db833b2009-12-28 09:59:44 +000042 outb(0xaa, dev->path.pnp.port);
Richard Smith924f92f2006-07-29 17:40:36 +000043}
44
45static void w83977tf_init(device_t dev)
46{
Uwe Hermann340fa932010-11-10 14:53:36 +000047 struct superio_winbond_w83977tf_config *conf = dev->chip_info;
Uwe Hermann340fa932010-11-10 14:53:36 +000048
49 if (!dev->enabled)
Richard Smith924f92f2006-07-29 17:40:36 +000050 return;
Uwe Hermann340fa932010-11-10 14:53:36 +000051
Stefan Reinauer2b34db82009-02-28 20:10:20 +000052 switch(dev->path.pnp.device) {
Richard Smith924f92f2006-07-29 17:40:36 +000053 case W83977TF_KBC:
Stefan Reinauer740b5872010-02-23 20:31:37 +000054 pc_keyboard_init(&conf->keyboard);
Richard Smith924f92f2006-07-29 17:40:36 +000055 break;
56 }
57}
58
59static void w83977tf_set_resources(device_t dev)
60{
61 w83977tf_enter_ext_func_mode(dev);
62 pnp_set_resources(dev);
63 w83977tf_exit_ext_func_mode(dev);
64}
65
66static void w83977tf_enable_resources(device_t dev)
67{
68 w83977tf_enter_ext_func_mode(dev);
69 pnp_enable_resources(dev);
70 w83977tf_exit_ext_func_mode(dev);
71}
72
73static void w83977tf_enable(device_t dev)
74{
Zheng Bao9db833b2009-12-28 09:59:44 +000075 w83977tf_enter_ext_func_mode(dev);
Richard Smith924f92f2006-07-29 17:40:36 +000076 pnp_enable(dev);
Zheng Bao9db833b2009-12-28 09:59:44 +000077 w83977tf_exit_ext_func_mode(dev);
Richard Smith924f92f2006-07-29 17:40:36 +000078}
79
Richard Smith924f92f2006-07-29 17:40:36 +000080static struct device_operations ops = {
81 .read_resources = pnp_read_resources,
82 .set_resources = w83977tf_set_resources,
83 .enable_resources = w83977tf_enable_resources,
84 .enable = w83977tf_enable,
85 .init = w83977tf_init,
86};
87
88static struct pnp_info pnp_dev_info[] = {
Uwe Hermanna69d9782010-11-15 19:35:14 +000089 { &ops, W83977TF_FDC, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, {0x07f8, 0}, },
90 { &ops, W83977TF_PP, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, {0x07f8, 0}, },
91 { &ops, W83977TF_SP1, PNP_IO0 | PNP_IRQ0, {0x07f8, 0}, },
92 { &ops, W83977TF_SP2, PNP_IO0 | PNP_IRQ0, {0x07f8, 0}, },
93 { &ops, W83977TF_KBC, PNP_IO0 | PNP_IO1 | PNP_IRQ0 | PNP_IRQ1, {0x07ff, 0}, {0x07ff, 4}, },
94 { &ops, W83977TF_CIR, PNP_IO0 | PNP_IRQ0, {0x07f8, 0}, },
95 { &ops, W83977TF_GAME_MIDI_GPIO1, PNP_IO0 | PNP_IO1 | PNP_IRQ0, {0x07ff, 0}, {0x07fe, 4}, },
96 { &ops, W83977TF_ACPI, PNP_IRQ0, },
Richard Smith924f92f2006-07-29 17:40:36 +000097};
98
99static void enable_dev(device_t dev)
100{
Uwe Hermann340fa932010-11-10 14:53:36 +0000101 pnp_enable_devices(dev, &ops, ARRAY_SIZE(pnp_dev_info), pnp_dev_info);
Richard Smith924f92f2006-07-29 17:40:36 +0000102}
103
104struct chip_operations superio_winbond_w83977tf_ops = {
Uwe Hermanna7aa29b2006-11-05 18:50:49 +0000105 CHIP_NAME("Winbond W83977TF Super I/O")
Richard Smith924f92f2006-07-29 17:40:36 +0000106 .enable_dev = enable_dev,
107};