Rename some variables from *ITE* to *ite* for consistency reasons (refs #4).
[coreboot.git] / src / superio / ite / it8712f / superio.c
1 /*
2  * Copyright (C) 2006 Uwe Hermann <uwe@hermann-uwe.de>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
17  */
18
19 #include <uart8250.h>
20 #include <pc80/keyboard.h>
21 #include "chip.h"
22 #include "it8712f.h"
23
24 static void init(device_t dev)
25 {
26         struct superio_ite_it8712f_config *conf;
27         struct resource *res0, *res1;
28
29         if (!dev->enabled) {
30                 return;
31         }
32
33         conf = dev->chip_info;
34
35         switch (dev->path.u.pnp.device) {
36         case IT8712F_FDC: /* TODO. */
37                 break;
38         case IT8712F_SP1:
39                 res0 = find_resource(dev, PNP_IDX_IO0);
40                 init_uart8250(res0->base, &conf->com1);
41                 break;
42         case IT8712F_SP2:
43                 res0 = find_resource(dev, PNP_IDX_IO0);
44                 init_uart8250(res0->base, &conf->com2);
45                 break;
46         case IT8712F_PP: /* TODO. */
47                 break;
48         case IT8712F_EC: /* TODO. */
49                 break;
50         case IT8712F_KBCK:
51                 res0 = find_resource(dev, PNP_IDX_IO0);
52                 res1 = find_resource(dev, PNP_IDX_IO1);
53                 init_pc_keyboard(res0->base, res1->base, &conf->keyboard);
54                 break;
55         case IT8712F_KBCM: /* TODO. */
56                 break;
57         case IT8712F_MIDI: /* TODO. */
58                 break;
59         case IT8712F_GAME: /* TODO. */
60                 break;
61         case IT8712F_IR: /* TODO. */
62                 break;
63         }
64 }
65
66 static struct device_operations ops = {
67         .read_resources   = pnp_read_resources,
68         .set_resources    = pnp_set_resources,
69         .enable_resources = pnp_enable_resources,
70         .enable           = pnp_enable,
71         .init             = init,
72 };
73
74 /* TODO: FDC, PP, EC, KBCM, MIDI, GAME, IR. */
75 static struct pnp_info pnp_dev_info[] = {
76  { &ops, IT8712F_SP1,  PNP_IO0 | PNP_IRQ0, { 0x7f8, 0 }, },
77  { &ops, IT8712F_SP2,  PNP_IO0 | PNP_IRQ0 | PNP_DRQ0 | PNP_DRQ1, { 0x7f8, 0 }, },
78  { &ops, IT8712F_KBCK, PNP_IO0 | PNP_IO1 | PNP_IRQ0, { 0x7f8, 0 }, { 0x7f8, 0x4}, },
79 };
80
81 static void enable_dev(struct device *dev)
82 {
83         pnp_enable_devices(dev, &pnp_ops,
84                 sizeof(pnp_dev_info)/sizeof(pnp_dev_info[0]), pnp_dev_info);
85 }
86
87 struct chip_operations superio_ite_it8712f_ops = {
88         CHIP_NAME("ITE it8712f")
89         .enable_dev = enable_dev,
90 };
91