9df7ee9dc561ddedc08481e19d7fa16c77843d39
[coreboot.git] / src / superio / smsc / lpc47b397 / 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  * Copyright (C) 2004 Tyan
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
21  */
22
23 #include <arch/io.h>
24 #include <device/device.h>
25 #include <device/pnp.h>
26 #include <console/console.h>
27 #include <device/smbus.h>
28 #include <string.h>
29 #include <bitops.h>
30 #include <uart8250.h>
31 #include <pc80/keyboard.h>
32 #include <stdlib.h>
33 #include "chip.h"
34 #include "lpc47b397.h"
35
36 static void pnp_enter_conf_state(device_t dev)
37 {
38         outb(0x55, dev->path.pnp.port);
39 }
40 static void pnp_exit_conf_state(device_t dev)
41 {
42         outb(0xaa, dev->path.pnp.port);
43 }
44
45 static void pnp_write_index(unsigned long port_base, uint8_t reg, uint8_t value)
46 {
47         outb(reg, port_base);
48         outb(value, port_base + 1);
49 }
50
51 static uint8_t pnp_read_index(unsigned long port_base, uint8_t reg)
52 {
53         outb(reg, port_base);
54         return inb(port_base + 1);
55 }
56
57 static void enable_hwm_smbus(device_t dev)
58 {
59         /* enable SensorBus register access */
60         uint8_t reg, value;
61         reg = 0xf0;
62         value = pnp_read_config(dev, reg);
63         value |= 0x01;
64         pnp_write_config(dev, reg, value);
65 }
66
67 static void lpc47b397_init(device_t dev)
68 {
69         struct superio_smsc_lpc47b397_config *conf;
70         struct resource *res0, *res1;
71         if (!dev->enabled) {
72                 return;
73         }
74         conf = dev->chip_info;
75         switch(dev->path.pnp.device) {
76         case LPC47B397_SP1:
77                 res0 = find_resource(dev, PNP_IDX_IO0);
78                 init_uart8250(res0->base, &conf->com1);
79                 break;
80         case LPC47B397_SP2:
81                 res0 = find_resource(dev, PNP_IDX_IO0);
82                 init_uart8250(res0->base, &conf->com2);
83                 break;
84         case LPC47B397_KBC:
85                 res0 = find_resource(dev, PNP_IDX_IO0);
86                 res1 = find_resource(dev, PNP_IDX_IO1);
87                 pc_keyboard_init(&conf->keyboard);
88                 break;
89         }
90 }
91
92 static void lpc47b397_pnp_set_resources(device_t dev)
93 {
94         pnp_enter_conf_state(dev);
95         pnp_set_resources(dev);
96 #if 0
97         dump_pnp_device(dev);
98 #endif
99         pnp_exit_conf_state(dev);
100 }
101
102 static void lpc47b397_pnp_enable_resources(device_t dev)
103 {
104         pnp_enter_conf_state(dev);
105         pnp_enable_resources(dev);
106
107         switch(dev->path.pnp.device) {
108         case LPC47B397_HWM:
109                 printk(BIOS_DEBUG, "lpc47b397 SensorBus Register Access enabled\n");
110                 pnp_set_logical_device(dev);
111                 enable_hwm_smbus(dev);
112                 break;
113         }
114 #if 0
115         dump_pnp_device(dev);
116 #endif
117         pnp_exit_conf_state(dev);
118 }
119
120 static void lpc47b397_pnp_enable(device_t dev)
121 {
122         pnp_enter_conf_state(dev);
123         pnp_set_logical_device(dev);
124
125         if(dev->enabled) {
126                 pnp_set_enable(dev, 1);
127         }
128         else {
129                 pnp_set_enable(dev, 0);
130         }
131         pnp_exit_conf_state(dev);
132 }
133
134 static struct device_operations ops = {
135         .read_resources   = pnp_read_resources,
136         .set_resources    = lpc47b397_pnp_set_resources,
137         .enable_resources = lpc47b397_pnp_enable_resources,
138         .enable           = lpc47b397_pnp_enable,
139         .init             = lpc47b397_init,
140 };
141
142 #define HWM_INDEX 0
143 #define HWM_DATA  1
144 #define SB_INDEX  0x0b
145 #define SB_DATA0  0x0c
146 #define SB_DATA1  0x0d
147 #define SB_DATA2  0x0e
148 #define SB_DATA3  0x0f
149
150 static int lsmbus_read_byte(device_t dev, uint8_t address)
151 {
152         unsigned device;
153         struct resource *res;
154         int result;
155
156         device = dev->path.i2c.device;
157
158         res = find_resource(get_pbus_smbus(dev)->dev, PNP_IDX_IO0);
159
160         pnp_write_index(res->base+HWM_INDEX, 0, device); /* why 0? */
161
162         result = pnp_read_index(res->base+SB_INDEX, address);  /* we only read it one byte one time */
163
164         return result;
165 }
166
167 static int lsmbus_write_byte(device_t dev, uint8_t address, uint8_t val)
168 {
169         unsigned device;
170         struct resource *res;
171
172         device = dev->path.i2c.device;
173         res = find_resource(get_pbus_smbus(dev)->dev, PNP_IDX_IO0);
174
175         pnp_write_index(res->base+HWM_INDEX, 0, device); /* why 0? */
176
177         pnp_write_index(res->base+SB_INDEX, address, val); /* we only write it one byte one time */
178
179         return 0;
180 }
181
182 static struct smbus_bus_operations lops_smbus_bus = {
183         /* .recv_byte  = lsmbus_recv_byte, */
184         /* .send_byte  = lsmbus_send_byte, */
185         .read_byte  = lsmbus_read_byte,
186         .write_byte = lsmbus_write_byte,
187 };
188 static struct device_operations ops_hwm = {
189         .read_resources   = pnp_read_resources,
190         .set_resources    = lpc47b397_pnp_set_resources,
191         .enable_resources = lpc47b397_pnp_enable_resources,
192         .enable           = lpc47b397_pnp_enable,
193         .init             = lpc47b397_init,
194         .scan_bus         = scan_static_bus,
195         .ops_smbus_bus    = &lops_smbus_bus,
196 };
197
198 static struct pnp_info pnp_dev_info[] = {
199         { &ops, LPC47B397_FDC,  PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, { 0x07f8, 0}, },
200         { &ops, LPC47B397_PP,   PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, { 0x07f8, 0}, },
201         { &ops, LPC47B397_SP1,  PNP_IO0 | PNP_IRQ0, { 0x7f8, 0 }, },
202         { &ops, LPC47B397_SP2,  PNP_IO0 | PNP_IRQ0, { 0x7f8, 0 }, },
203         { &ops, LPC47B397_KBC,  PNP_IO0 | PNP_IO1 | PNP_IRQ0 | PNP_IRQ1, { 0x7ff, 0 }, { 0x7ff, 0x4}, },
204         { &ops_hwm, LPC47B397_HWM,  PNP_IO0, { 0x7f0, 0 }, },
205         { &ops, LPC47B397_RT,   PNP_IO0, { 0x780, 0 }, },
206 };
207
208 static void enable_dev(struct device *dev)
209 {
210         pnp_enable_devices(dev, &pnp_ops,
211                 ARRAY_SIZE(pnp_dev_info), pnp_dev_info);
212 }
213
214 struct chip_operations superio_smsc_lpc47b397_ops = {
215         CHIP_NAME("SMSC LPC47B397 Super I/O")
216         .enable_dev = enable_dev,
217 };