C and other Super I/O cosmetic fixes.
[coreboot.git] / src / superio / nsc / pc87427 / superio.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2000 AG Electronics Ltd.
5  * Copyright (C) 2003-2004 Linux Networx
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
20  */
21
22 #include <arch/io.h>
23 #include <device/device.h>
24 #include <device/pnp.h>
25 #include <console/console.h>
26 #include <string.h>
27 #include <bitops.h>
28 #include <stdlib.h>
29 #include "chip.h"
30 #include "pc87427.h"
31
32 static void init(device_t dev)
33 {
34         struct superio_nsc_pc87427_config *conf = dev->chip_info;
35         struct resource *res0;
36
37         if (!dev->enabled)
38                 return;
39
40         switch(dev->path.pnp.device) {
41         case PC87427_SP1:
42                 res0 = find_resource(dev, PNP_IDX_IO0);
43                 init_uart8250(res0->base, &conf->com1);
44                 break;
45         case PC87427_SP2:
46                 res0 = find_resource(dev, PNP_IDX_IO0);
47                 init_uart8250(res0->base, &conf->com2);
48                 break;
49         case PC87427_KBCK:
50                 pc_keyboard_init(&conf->keyboard);
51                 break;
52         }
53 }
54
55 static struct device_operations ops = {
56         .read_resources   = pnp_read_resources,
57         .set_resources    = pnp_set_resources,
58         .enable_resources = pnp_enable_resources,
59         .enable           = pnp_enable,
60         .init             = init,
61 };
62
63 static struct pnp_info pnp_dev_info[] = {
64         { &ops, PC87427_FDC,  PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, {0x07fa, 0}, },
65         { &ops, PC87427_SP2,  PNP_IO0 | PNP_IRQ0, {0x07f8, 0}, },
66         { &ops, PC87427_SP1,  PNP_IO0 | PNP_IRQ0, {0x07f8, 0}, },
67         { &ops, PC87427_SWC,  PNP_IO0 | PNP_IO1 | PNP_IO2 | PNP_IO3 | PNP_IRQ0, {0xfff0, 0}, {0xfffc, 0}, {0xfffc, 0}, {0xfff8, 0}, },
68         { &ops, PC87427_KBCM, PNP_IRQ0, },
69         { &ops, PC87427_KBCK, PNP_IO0 | PNP_IO1 | PNP_IRQ0, {0x07f8, 0}, {0x07f8, 4}, },
70         { &ops, PC87427_GPIO, PNP_IO0 | PNP_IRQ0, {0xffe0, 0}, },
71         { &ops, PC87427_WDT,  PNP_IO0 | PNP_IRQ0, {0xfff0, 0}, },
72         { &ops, PC87427_FMC,  PNP_IO0 | PNP_IRQ0, {0xffe0, 0}, },
73         { &ops, PC87427_XBUS, PNP_IO0 | PNP_IRQ0, {0xffe0, 0}, },
74         { &ops, PC87427_RTC,  PNP_IO0 | PNP_IO1 | PNP_IRQ0, {0xfffe, 0}, {0xfffe, 0}, },
75         { &ops, PC87427_MHC,  PNP_IO0 | PNP_IO1 | PNP_IRQ0, {0xffe0, 0}, {0xffe0, 0}, },
76 };
77
78 static void enable_dev(struct device *dev)
79 {
80         pnp_enable_devices(dev, &ops, ARRAY_SIZE(pnp_dev_info), pnp_dev_info);
81 }
82
83 struct chip_operations superio_nsc_pc87427_ops = {
84         CHIP_NAME("NSC PC87427 Super I/O")
85         .enable_dev = enable_dev,
86 };