blob: af305728ee50316f90ed73ccd5fa403978053bc4 [file] [log] [blame]
Uwe Hermannaf433f22006-12-14 14:26:46 +00001/*
Stefan Reinauer7e61e452008-01-18 10:35:56 +00002 * This file is part of the coreboot project.
Uwe Hermannaf433f22006-12-14 14:26:46 +00003 *
4 * Copyright (C) 2006 Uwe Hermann <uwe@hermann-uwe.de>
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
Uwe Hermannaf433f22006-12-14 14:26:46 +000019 */
20
21#include <device/device.h>
22#include <device/pnp.h>
23#include <uart8250.h>
24#include <pc80/keyboard.h>
Carl-Daniel Hailfinger2ee67792008-10-01 12:52:52 +000025#include <stdlib.h>
Uwe Hermannaf433f22006-12-14 14:26:46 +000026#include "chip.h"
27#include "fdc37m60x.h"
28
29static void init(device_t dev)
30{
Uwe Hermanna69d9782010-11-15 19:35:14 +000031 struct superio_smsc_fdc37m60x_config *conf = dev->chip_info;
Uwe Hermannaf433f22006-12-14 14:26:46 +000032
Uwe Hermanna69d9782010-11-15 19:35:14 +000033 if (!dev->enabled)
Uwe Hermannaf433f22006-12-14 14:26:46 +000034 return;
Uwe Hermannaf433f22006-12-14 14:26:46 +000035
Stefan Reinauer2b34db82009-02-28 20:10:20 +000036 switch (dev->path.pnp.device) {
Uwe Hermannaf433f22006-12-14 14:26:46 +000037 case FDC37M60X_FDC: /* TODO. */
38 break;
39 case FDC37M60X_PP: /* TODO. */
40 break;
Uwe Hermannaf433f22006-12-14 14:26:46 +000041 case FDC37M60X_KBCK:
Stefan Reinauer740b5872010-02-23 20:31:37 +000042 pc_keyboard_init(&conf->keyboard);
Uwe Hermannaf433f22006-12-14 14:26:46 +000043 break;
44 case FDC37M60X_AUX: /* TODO. */
45 break;
46 }
47}
48
49static struct device_operations ops = {
50 .read_resources = pnp_read_resources,
51 .set_resources = pnp_set_resources,
52 .enable_resources = pnp_enable_resources,
53 .enable = pnp_enable,
54 .init = init,
55};
56
57/* TODO: FDC, PP, AUX. */
58static struct pnp_info pnp_dev_info[] = {
Uwe Hermanna69d9782010-11-15 19:35:14 +000059 { &ops, FDC37M60X_SP1, PNP_IO0 | PNP_IRQ0, {0x07f8, 0}, },
60 { &ops, FDC37M60X_SP2, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0 | PNP_DRQ1, {0x07f8, 0}, },
61 { &ops, FDC37M60X_KBCK, PNP_IO0 | PNP_IO1 | PNP_IRQ0, {0x07f8, 0}, {0x07f8, 4}, },
Uwe Hermannaf433f22006-12-14 14:26:46 +000062};
63
64static void enable_dev(struct device *dev)
65{
66 pnp_enable_devices(dev, &pnp_ops,
Carl-Daniel Hailfinger2ee67792008-10-01 12:52:52 +000067 ARRAY_SIZE(pnp_dev_info), pnp_dev_info);
Uwe Hermannaf433f22006-12-14 14:26:46 +000068}
69
70struct chip_operations superio_smsc_fdc37m60x_ops = {
71 CHIP_NAME("SMSC FDC37M60X Super I/O")
72 .enable_dev = enable_dev,
73};