blob: 5322acef1861c99dbf323618fb45a31966b3b403 [file] [log] [blame]
Zheng Bao8a281882011-03-27 16:33:09 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2011 Advanced Micro Devices, Inc.
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
Paul Menzela46a7122013-02-23 18:37:27 +010018 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Zheng Bao8a281882011-03-27 16:33:09 +000019 */
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>
Zheng Bao8a281882011-03-27 16:33:09 +000026#include <pc80/keyboard.h>
27#include <stdlib.h>
Zheng Bao8a281882011-03-27 16:33:09 +000028#include "wpcm450.h"
29
Edward O'Callaghanf21bdc32014-10-21 07:43:41 +110030static void init(struct device *dev)
Zheng Bao8a281882011-03-27 16:33:09 +000031{
Zheng Bao8a281882011-03-27 16:33:09 +000032
33 if (!dev->enabled)
34 return;
35
36 switch(dev->path.pnp.device) {
Zheng Bao8a281882011-03-27 16:33:09 +000037 case WPCM450_KBCK:
Edward O'Callaghandef00be2014-04-30 05:01:52 +100038 pc_keyboard_init();
Zheng Bao8a281882011-03-27 16:33:09 +000039 break;
40 }
41}
42
43static struct device_operations ops = {
44 .read_resources = pnp_read_resources,
45 .set_resources = pnp_set_resources,
46 .enable_resources = pnp_enable_resources,
47 .enable = pnp_enable,
48 .init = init,
49};
50
51static struct pnp_info pnp_dev_info[] = {
52 { &ops, WPCM450_SP2, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0 | PNP_DRQ1, {0x07f8, 0}, },
53 { &ops, WPCM450_SP1, PNP_IO0 | PNP_IRQ0, {0x07f8, 0}, },
54 { &ops, WPCM450_KBCK, PNP_IO0 | PNP_IO1 | PNP_IRQ0, {0x07f8, 0}, {0x07f8, 4}, },
55};
56
57static void enable_dev(struct device *dev)
58{
59 pnp_enable_devices(dev, &ops, ARRAY_SIZE(pnp_dev_info), pnp_dev_info);
60}
61
62struct chip_operations superio_nuvoton_wpcm450_ops = {
63 CHIP_NAME("NUVOTON WPCM450 Super I/O")
64 .enable_dev = enable_dev,
65};