6744850740e297bb64ed6cd62f655f4813df9558
[coreboot.git] / src / superio / ite / it8716f / superio.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2006 Uwe Hermann <uwe@hermann-uwe.de>
5  * Copyright (C) 2007 AMD
6  * (Written by Yinghai Lu <yinghai.lu@amd.com> for AMD)
7  * Copyright (C) 2007 Ward Vandewege <ward@gnu.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
22  */
23
24 #include <device/device.h>
25 #include <device/pnp.h>
26 #include <console/console.h>
27 #include <uart8250.h>
28 #include <pc80/keyboard.h>
29 #include <arch/io.h>
30 #include <stdlib.h>
31 #include "chip.h"
32 #include "it8716f.h"
33
34 /* Base address 0x2e: 0x87 0x01 0x55 0x55. */
35 /* Base address 0x4e: 0x87 0x01 0x55 0xaa. */
36 static void pnp_enter_ext_func_mode(device_t dev)
37 {
38         outb(0x87, dev->path.pnp.port);
39         outb(0x01, dev->path.pnp.port);
40         outb(0x55, dev->path.pnp.port);
41
42         if (dev->path.pnp.port == 0x4e) {
43                 outb(0xaa, dev->path.pnp.port);
44         } else {
45                 outb(0x55, dev->path.pnp.port);
46         }
47 }
48
49 static void pnp_exit_ext_func_mode(device_t dev)
50 {
51         pnp_write_config(dev, 0x02, 0x02);
52 }
53
54 #if CONFIG_SUPERIO_ITE_IT8716F_OVERRIDE_FANCTL
55 extern void init_ec(uint16_t base);
56 #else
57 static void pnp_write_index(uint16_t port_base, uint8_t reg, uint8_t value)
58 {
59         outb(reg, port_base);
60         outb(value, port_base + 1);
61 }
62
63 static uint8_t pnp_read_index(uint16_t port_base, uint8_t reg)
64 {
65         outb(reg, port_base);
66         return inb(port_base + 1);
67 }
68
69 static void init_ec(uint16_t base)
70 {
71         uint8_t value;
72
73         /* Read out current value of FAN_CTL control register (0x14). */
74         value = pnp_read_index(base, 0x14);
75         printk_debug("FAN_CTL: reg = 0x%04x, read value = 0x%02x\r\n",
76                      base + 0x14, value);
77
78         /* Set FAN_CTL control register (0x14) polarity to high, and
79            activate fans 1, 2 and 3. */
80         pnp_write_index(base, 0x14, value | 0x87);
81         printk_debug("FAN_CTL: reg = 0x%04x, writing value = 0x%02x\r\n",
82                      base + 0x14, value | 0x87);
83 }
84 #endif
85
86 static void it8716f_init(device_t dev)
87 {
88         struct superio_ite_it8716f_config *conf;
89         struct resource *res0, *res1;
90
91         if (!dev->enabled) {
92                 return;
93         }
94
95         conf = dev->chip_info;
96
97         /* TODO: FDC, PP, KBCM, MIDI, GAME, IR. */
98         switch (dev->path.pnp.device) {
99         case IT8716F_SP1:
100                 res0 = find_resource(dev, PNP_IDX_IO0);
101                 init_uart8250(res0->base, &conf->com1);
102                 break;
103         case IT8716F_SP2:
104                 res0 = find_resource(dev, PNP_IDX_IO0);
105                 init_uart8250(res0->base, &conf->com2);
106                 break;
107         case IT8716F_EC:
108                 res0 = find_resource(dev, PNP_IDX_IO0);
109 #define EC_INDEX_PORT 5
110                 init_ec(res0->base + EC_INDEX_PORT);
111                 break;
112         case IT8716F_KBCK:
113                 res0 = find_resource(dev, PNP_IDX_IO0);
114                 res1 = find_resource(dev, PNP_IDX_IO1);
115                 pc_keyboard_init(&conf->keyboard);
116                 break;
117         }
118 }
119
120 static void it8716f_pnp_set_resources(device_t dev)
121 {
122         pnp_enter_ext_func_mode(dev);
123         pnp_set_resources(dev);
124         pnp_exit_ext_func_mode(dev);
125 }
126
127 static void it8716f_pnp_enable_resources(device_t dev)
128 {
129         pnp_enter_ext_func_mode(dev);
130         pnp_enable_resources(dev);
131         pnp_exit_ext_func_mode(dev);
132 }
133
134 static void it8716f_pnp_enable(device_t dev)
135 {
136         pnp_enter_ext_func_mode(dev);
137         pnp_set_logical_device(dev);
138         pnp_set_enable(dev, dev->enabled);
139         pnp_exit_ext_func_mode(dev);
140 }
141
142 static struct device_operations ops = {
143         .read_resources   = pnp_read_resources,
144         .set_resources    = it8716f_pnp_set_resources,
145         .enable_resources = it8716f_pnp_enable_resources,
146         .enable           = it8716f_pnp_enable,
147         .init             = it8716f_init,
148 };
149
150 static struct pnp_info pnp_dev_info[] = {
151         {&ops, IT8716F_FDC, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, {0x07f8, 0},},
152         {&ops, IT8716F_SP1, PNP_IO0 | PNP_IRQ0, {0x7f8, 0},},
153         {&ops, IT8716F_SP2, PNP_IO0 | PNP_IRQ0, {0x7f8, 0},},
154         {&ops, IT8716F_PP, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, {0x07f8, 0},},
155         {&ops, IT8716F_EC, PNP_IO0 | PNP_IO1 | PNP_IRQ0, {0x7f8, 0},
156          {0x7f8, 0x4},},
157         {&ops, IT8716F_KBCK, PNP_IO0 | PNP_IO1 | PNP_IRQ0, {0x7ff, 0},
158          {0x7ff, 0x4},},
159         {&ops, IT8716F_KBCM, PNP_IRQ0,},
160         {&ops, IT8716F_GPIO, PNP_IO1 | PNP_IO2, {0, 0}, {0x7f8, 0}, {0x7f8, 0},},
161         {&ops, IT8716F_MIDI, PNP_IO0 | PNP_IRQ0, {0x7fe, 0x4},},
162         {&ops, IT8716F_GAME, PNP_IO0, {0x7ff, 0},},
163         {&ops, IT8716F_IR,},
164 };
165
166 static void enable_dev(struct device *dev)
167 {
168         pnp_enable_devices(dev, &ops,
169                 ARRAY_SIZE(pnp_dev_info), pnp_dev_info);
170 }
171
172 struct chip_operations superio_ite_it8716f_ops = {
173         CHIP_NAME("ITE IT8716F Super I/O")
174         .enable_dev = enable_dev,
175 };