blob: 40df5b36b80b35f29dcd3683fa21754fdd6c581c [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.
Zheng Bao9db833b2009-12-28 09:59:44 +000017 */
Richard Smith924f92f2006-07-29 17:40:36 +000018
Richard Smith924f92f2006-07-29 17:40:36 +000019#include <arch/io.h>
20#include <device/device.h>
21#include <device/pnp.h>
Nico Huber1c811282013-06-15 20:33:44 +020022#include <superio/conf_mode.h>
Richard Smith924f92f2006-07-29 17:40:36 +000023#include <string.h>
Richard Smith924f92f2006-07-29 17:40:36 +000024#include <pc80/keyboard.h>
Carl-Daniel Hailfinger2ee67792008-10-01 12:52:52 +000025#include <stdlib.h>
Richard Smith924f92f2006-07-29 17:40:36 +000026#include "w83977tf.h"
27
Edward O'Callaghanf21bdc32014-10-21 07:43:41 +110028static void w83977tf_init(struct device *dev)
Richard Smith924f92f2006-07-29 17:40:36 +000029{
Uwe Hermann340fa932010-11-10 14:53:36 +000030
31 if (!dev->enabled)
Richard Smith924f92f2006-07-29 17:40:36 +000032 return;
Uwe Hermann340fa932010-11-10 14:53:36 +000033
Elyes HAOUAS0ce41f12018-11-13 10:03:31 +010034 switch (dev->path.pnp.device) {
Richard Smith924f92f2006-07-29 17:40:36 +000035 case W83977TF_KBC:
Timothy Pearson448e3862015-11-24 14:12:01 -060036 pc_keyboard_init(NO_AUX_DEVICE);
Richard Smith924f92f2006-07-29 17:40:36 +000037 break;
38 }
39}
40
Richard Smith924f92f2006-07-29 17:40:36 +000041static struct device_operations ops = {
42 .read_resources = pnp_read_resources,
Nico Huber0b2ee932013-06-15 19:58:35 +020043 .set_resources = pnp_set_resources,
44 .enable_resources = pnp_enable_resources,
45 .enable = pnp_enable,
Richard Smith924f92f2006-07-29 17:40:36 +000046 .init = w83977tf_init,
Nico Huber1c811282013-06-15 20:33:44 +020047 .ops_pnp_mode = &pnp_conf_mode_8787_aa,
Richard Smith924f92f2006-07-29 17:40:36 +000048};
49
50static struct pnp_info pnp_dev_info[] = {
Felix Held8c858802018-07-06 20:22:08 +020051 { NULL, W83977TF_FDC, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, 0x07f8, },
52 { NULL, W83977TF_PP, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, 0x07f8, },
53 { NULL, W83977TF_SP1, PNP_IO0 | PNP_IRQ0, 0x07f8, },
54 { NULL, W83977TF_SP2, PNP_IO0 | PNP_IRQ0, 0x07f8, },
55 { NULL, W83977TF_KBC, PNP_IO0 | PNP_IO1 | PNP_IRQ0 | PNP_IRQ1,
56 0x07ff, 0x07ff, },
57 { NULL, W83977TF_CIR, PNP_IO0 | PNP_IRQ0, 0x07f8, },
58 { NULL, W83977TF_GAME_MIDI_GPIO1, PNP_IO0 | PNP_IO1 | PNP_IRQ0,
59 0x07ff, 0x07fe, },
60 { NULL, W83977TF_ACPI, PNP_IRQ0, },
Richard Smith924f92f2006-07-29 17:40:36 +000061};
62
Edward O'Callaghanf21bdc32014-10-21 07:43:41 +110063static void enable_dev(struct device *dev)
Richard Smith924f92f2006-07-29 17:40:36 +000064{
Uwe Hermann340fa932010-11-10 14:53:36 +000065 pnp_enable_devices(dev, &ops, ARRAY_SIZE(pnp_dev_info), pnp_dev_info);
Richard Smith924f92f2006-07-29 17:40:36 +000066}
67
68struct chip_operations superio_winbond_w83977tf_ops = {
Uwe Hermanna7aa29b2006-11-05 18:50:49 +000069 CHIP_NAME("Winbond W83977TF Super I/O")
Richard Smith924f92f2006-07-29 17:40:36 +000070 .enable_dev = enable_dev,
71};