Rename some variables from *ITE* to *ite* for consistency reasons (refs #4).
[coreboot.git] / src / superio / ite / it8718f / 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 "it8718f.h"
23
24 static void init(device_t dev)
25 {
26         struct superio_ite_it8718f_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 IT8718F_FDC: /* TODO. */
37                 break;
38         case IT8718F_SP1:
39                 res0 = find_resource(dev, PNP_IDX_IO0);
40                 init_uart8250(res0->base, &conf->com1);
41                 break;
42         case IT8718F_SP2:
43                 res0 = find_resource(dev, PNP_IDX_IO0);
44                 init_uart8250(res0->base, &conf->com2);
45                 break;
46         case IT8718F_PP: /* TODO. */
47                 break;
48         case IT8718F_EC: /* TODO. */
49                 break;
50         case IT8718F_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 IT8718F_KBCM: /* TODO. */
56                 break;
57         case IT8718F_IR: /* TODO. */
58                 break;
59         }
60 }
61
62 static struct device_operations ops = {
63         .read_resources   = pnp_read_resources,
64         .set_resources    = pnp_set_resources,
65         .enable_resources = pnp_enable_resources,
66         .enable           = pnp_enable,
67         .init             = init,
68 };
69
70 /* TODO: FDC, PP, EC, KBCM, IR. */
71 static struct pnp_info pnp_dev_info[] = {
72  { &ops, IT8718F_SP1,  PNP_IO0 | PNP_IRQ0, { 0x7f8, 0 }, },
73  { &ops, IT8718F_SP2,  PNP_IO0 | PNP_IRQ0 | PNP_DRQ0 | PNP_DRQ1, { 0x7f8, 0 }, },
74  { &ops, IT8718F_KBCK, PNP_IO0 | PNP_IO1 | PNP_IRQ0, { 0x7f8, 0 }, { 0x7f8, 0x4}, },
75 };
76
77 static void enable_dev(struct device *dev)
78 {
79         pnp_enable_devices(dev, &pnp_ops,
80                 sizeof(pnp_dev_info)/sizeof(pnp_dev_info[0]), pnp_dev_info);
81 }
82
83 struct chip_operations superio_ite_it8718f_ops = {
84         CHIP_NAME("ITE it8718f")
85         .enable_dev = enable_dev,
86 };
87