blob: d7319330b814960324048eda1ac9f4f3e4c0f4b0 [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 */
Stefan Reinauerb70d1992008-10-29 04:45:28 +000022
23#include <arch/io.h>
24#include <device/device.h>
25#include <device/pnp.h>
Nico Huber1c811282013-06-15 20:33:44 +020026#include <superio/conf_mode.h>
Stefan Reinauerb70d1992008-10-29 04:45:28 +000027#include <console/console.h>
28#include <string.h>
Stefan Reinauerb70d1992008-10-29 04:45:28 +000029#include <pc80/keyboard.h>
Stefan Reinauerb70d1992008-10-29 04:45:28 +000030#include "w83627thg.h"
31
Edward O'Callaghanf21bdc32014-10-21 07:43:41 +110032static void w83627thg_init(struct device *dev)
Stefan Reinauerb70d1992008-10-29 04:45:28 +000033{
Uwe Hermann340fa932010-11-10 14:53:36 +000034
35 if (!dev->enabled)
Stefan Reinauerb70d1992008-10-29 04:45:28 +000036 return;
Uwe Hermann340fa932010-11-10 14:53:36 +000037
Stefan Reinauer2b34db82009-02-28 20:10:20 +000038 switch(dev->path.pnp.device) {
Stefan Reinauerb70d1992008-10-29 04:45:28 +000039 case W83627THG_KBC:
Edward O'Callaghandef00be2014-04-30 05:01:52 +100040 pc_keyboard_init();
Stefan Reinauerb70d1992008-10-29 04:45:28 +000041 break;
42 }
43}
44
Stefan Reinauerb70d1992008-10-29 04:45:28 +000045static struct device_operations ops = {
46 .read_resources = pnp_read_resources,
Nico Huber0b2ee932013-06-15 19:58:35 +020047 .set_resources = pnp_set_resources,
48 .enable_resources = pnp_enable_resources,
49 .enable = pnp_enable,
Stefan Reinauerb70d1992008-10-29 04:45:28 +000050 .init = w83627thg_init,
Nico Huber1c811282013-06-15 20:33:44 +020051 .ops_pnp_mode = &pnp_conf_mode_8787_aa,
Stefan Reinauerb70d1992008-10-29 04:45:28 +000052};
53
54static struct pnp_info pnp_dev_info[] = {
Uwe Hermanna69d9782010-11-15 19:35:14 +000055 { &ops, W83627THG_FDC, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, {0x07f8, 0}, },
56 { &ops, W83627THG_PP, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, {0x07f8, 0}, },
57 { &ops, W83627THG_SP1, PNP_IO0 | PNP_IRQ0, {0x07f8, 0}, },
58 { &ops, W83627THG_SP2, PNP_IO0 | PNP_IRQ0 | PNP_MSC1, {0x07f8, 0}, },
59 { &ops, W83627THG_KBC, PNP_IO0 | PNP_IO1 | PNP_IRQ0 | PNP_IRQ1 | PNP_MSC0, {0x07ff, 0}, {0x07ff, 4}, },
60 { &ops, W83627THG_GAME_MIDI_GPIO1, PNP_IO0 | PNP_IO1 | PNP_IRQ0, {0x07ff, 0}, {0x07fe, 4}, },
61 { &ops, W83627THG_GPIO2, },
Stefan Reinauerde3206a2010-02-22 06:09:43 +000062 { &ops, W83627THG_GPIO3, PNP_EN | PNP_MSC0 | PNP_MSC1, },
Uwe Hermanna69d9782010-11-15 19:35:14 +000063 { &ops, W83627THG_ACPI, PNP_IRQ0, },
64 { &ops, W83627THG_HWM, PNP_IO0 | PNP_IRQ0, {0x0ff8, 0}, },
Stefan Reinauerb70d1992008-10-29 04:45:28 +000065};
66
Edward O'Callaghanf21bdc32014-10-21 07:43:41 +110067static void enable_dev(struct device *dev)
Stefan Reinauerb70d1992008-10-29 04:45:28 +000068{
Uwe Hermann340fa932010-11-10 14:53:36 +000069 pnp_enable_devices(dev, &ops, ARRAY_SIZE(pnp_dev_info), pnp_dev_info);
Stefan Reinauerb70d1992008-10-29 04:45:28 +000070}
71
72struct chip_operations superio_winbond_w83627thg_ops = {
73 CHIP_NAME("Winbond W83627THG Super I/O")
74 .enable_dev = enable_dev,
75};