Add constants for fast path resume copying
[coreboot.git] / src / superio / intel / i3100 / superio.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2008 Arastra, Inc.
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 #include <stdlib.h>
22 #include <device/device.h>
23 #include <device/pnp.h>
24 #include <uart8250.h>
25 #include "chip.h"
26 #include "i3100.h"
27 #include <arch/io.h>
28
29 static void pnp_enter_ext_func_mode(device_t dev)
30 {
31         outb(0x80, dev->path.pnp.port);
32         outb(0x86, dev->path.pnp.port);
33 }
34
35 static void pnp_exit_ext_func_mode(device_t dev)
36 {
37         outb(0x68, dev->path.pnp.port);
38         outb(0x08, dev->path.pnp.port);
39 }
40
41 static void i3100_init(device_t dev)
42 {
43         if (!dev->enabled)
44                 return;
45 }
46
47 static void i3100_pnp_set_resources(device_t dev)
48 {
49         pnp_enter_ext_func_mode(dev);
50         pnp_set_resources(dev);
51         pnp_exit_ext_func_mode(dev);
52 }
53
54 static void i3100_pnp_enable_resources(device_t dev)
55 {
56         pnp_enter_ext_func_mode(dev);
57         pnp_enable_resources(dev);
58         pnp_exit_ext_func_mode(dev);
59 }
60
61 static void i3100_pnp_enable(device_t dev)
62 {
63         pnp_enter_ext_func_mode(dev);
64         pnp_set_logical_device(dev);
65         pnp_set_enable(dev, !!dev->enabled);
66         pnp_exit_ext_func_mode(dev);
67 }
68
69 static struct device_operations ops = {
70         .read_resources   = pnp_read_resources,
71         .set_resources    = i3100_pnp_set_resources,
72         .enable_resources = i3100_pnp_enable_resources,
73         .enable           = i3100_pnp_enable,
74         .init             = i3100_init,
75 };
76
77 static struct pnp_info pnp_dev_info[] = {
78         { &ops, I3100_SP1, PNP_IO0 | PNP_IRQ0, {0x07f8, 0}, },
79         { &ops, I3100_SP2, PNP_IO0 | PNP_IRQ0, {0x07f8, 0}, },
80 };
81
82 static void enable_dev(struct device *dev)
83 {
84         pnp_enable_devices(dev, &ops, ARRAY_SIZE(pnp_dev_info), pnp_dev_info);
85 }
86
87 struct chip_operations superio_intel_i3100_ops = {
88         CHIP_NAME("Intel 3100 Super I/O")
89         .enable_dev = enable_dev,
90 };