PMH7: Add chip config
[coreboot.git] / src / ec / lenovo / pmh7 / pmh7.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2011 Sven Schnelle <svens@stackframe.org>
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; version 2 of the License.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
18  */
19
20 #include <arch/io.h>
21 #include <console/console.h>
22 #include <device/device.h>
23 #include <device/pnp.h>
24 #include <stdlib.h>
25 #include "pmh7.h"
26 #include "chip.h"
27
28 void pmh7_backlight_enable(int onoff)
29 {
30         if (onoff)
31                 pmh7_register_set_bit(0x50, 5);
32         else
33                 pmh7_register_clear_bit(0x50, 5);
34 }
35
36 void pmh7_register_set_bit(int reg, int bit)
37 {
38         char val;
39
40         outb(reg, EC_LENOVO_PMH7_ADDR);
41         val = inb(EC_LENOVO_PMH7_DATA);
42         outb(reg, EC_LENOVO_PMH7_ADDR);
43         outb(val | (1 << bit), EC_LENOVO_PMH7_DATA);
44 }
45
46 void pmh7_register_clear_bit(int reg, int bit)
47 {
48         char val;
49
50         outb(reg, EC_LENOVO_PMH7_ADDR);
51         val = inb(EC_LENOVO_PMH7_DATA);
52         outb(reg, EC_LENOVO_PMH7_ADDR);
53         outb(val &= ~(1 << bit), EC_LENOVO_PMH7_DATA);
54 }
55
56 char pmh7_register_read(int reg)
57 {
58         outb(reg, EC_LENOVO_PMH7_ADDR);
59         return inb(EC_LENOVO_PMH7_DATA);
60 }
61
62 void pmh7_register_write(int reg, int val)
63 {
64         outb(reg, EC_LENOVO_PMH7_ADDR);
65         outb(val, EC_LENOVO_PMH7_DATA);
66 }
67
68 static void enable_dev(device_t dev)
69 {
70         struct ec_lenovo_pmh7_config *conf = dev->chip_info;
71         struct resource *resource;
72
73         resource = new_resource(dev, EC_LENOVO_PMH7_INDEX);
74         resource->flags = IORESOURCE_IO | IORESOURCE_FIXED;
75         resource->base = EC_LENOVO_PMH7_BASE;
76         resource->size = 16;
77         resource->align = 5;
78         resource->gran = 5;
79
80         pmh7_backlight_enable(conf->backlight_enable);
81 }
82
83 struct chip_operations ec_lenovo_pmh7_ops = {
84         CHIP_NAME("Lenovo Power Management Hardware Hub 7")
85         .enable_dev = enable_dev,
86 };