de3640832f7d9828db961d4d57ce383ff9d033fa
[coreboot.git] / src / superio / ite / it8705f / superio.c
1 /*
2  * This file is part of the LinuxBIOS project.
3  *
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
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
19  */
20
21 /* This chip doesn't seem to have keyboard and mouse support. */
22
23 #include <uart8250.h>
24 #include "chip.h"
25 #include "it8705f.h"
26
27 static void init(device_t dev)
28 {
29         struct superio_ite_it8705f_config *conf;
30         struct resource *res0, *res1;
31
32         if (!dev->enabled) {
33                 return;
34         }
35
36         conf = dev->chip_info;
37
38         switch (dev->path.u.pnp.device) {
39         case IT8705F_FDC: /* TODO. */
40                 break;
41         case IT8705F_SP1:
42                 res0 = find_resource(dev, PNP_IDX_IO0);
43                 init_uart8250(res0->base, &conf->com1);
44                 break;
45         case IT8705F_SP2:
46                 res0 = find_resource(dev, PNP_IDX_IO0);
47                 init_uart8250(res0->base, &conf->com2);
48                 break;
49         case IT8705F_PP: /* TODO. */
50                 break;
51         case IT8705F_EC: /* TODO. */
52                 break;
53         case IT8705F_GPIO: /* TODO. */
54                 break;
55         case IT8705F_GAME: /* TODO. */
56                 break;
57         case IT8705F_IR: /* TODO. */
58                 break;
59         case IT8705F_MIDI: /* TODO. */
60                 break;
61         }
62 }
63
64 static struct device_operations ops = {
65         .read_resources   = pnp_read_resources,
66         .set_resources    = pnp_set_resources,
67         .enable_resources = pnp_enable_resources,
68         .enable           = pnp_enable,
69         .init             = init,
70 };
71
72 /* TODO: FDC, PP, EC, GPIO, GAME, IR, MIDI. */
73 static struct pnp_info pnp_dev_info[] = {
74  { &ops, IT8705F_SP1,  PNP_IO0 | PNP_IRQ0, { 0x7f8, 0 }, },
75  { &ops, IT8705F_SP2,  PNP_IO0 | PNP_IRQ0 | PNP_DRQ0 | PNP_DRQ1, { 0x7f8, 0 }, },
76 };
77
78 static void enable_dev(struct device *dev)
79 {
80         pnp_enable_devices(dev, &pnp_ops,
81                 sizeof(pnp_dev_info)/sizeof(pnp_dev_info[0]), pnp_dev_info);
82 }
83
84 struct chip_operations superio_ite_it8705f_ops = {
85         CHIP_NAME("ITE IT8705F Super I/O")
86         .enable_dev = enable_dev,
87 };
88