blob: 850af7b32ba1c2224b500ca3c131f1ba051bfc3f [file] [log] [blame]
Stefan Reinauer6651da32012-04-27 23:16:30 +02001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2012 The Chromium OS Authors. All rights reserved.
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 <string.h>
21#include <vendorcode/google/chromeos/chromeos.h>
22#include <arch/io.h>
23#ifdef __PRE_RAM__
24#include <arch/romcc_io.h>
25#else
26#include <device/device.h>
27#include <device/pci.h>
28#endif
29#include <southbridge/intel/bd82x6x/pch.h>
30
31#ifndef __PRE_RAM__
32#include <boot/coreboot_tables.h>
33#include <arch/coreboot_tables.h>
34
35#define GPIO_COUNT 5
36#define ACTIVE_LOW 0
37#define ACTIVE_HIGH 1
38
39void fill_lb_gpios(struct lb_gpios *gpios)
40{
41 device_t dev = dev_find_slot(0, PCI_DEVFN(0x1f,0));
42 u16 gpio_base = pci_read_config32(dev, GPIOBASE) & 0xfffe;
43 u16 gen_pmcon_1 = pci_read_config32(dev, GEN_PMCON_1);
44
45 if (!gpio_base)
46 return;
47
Stefan Reinauer6651da32012-04-27 23:16:30 +020048 u32 gp_lvl = inl(gpio_base + 0x0c);
Stefan Reinauer6651da32012-04-27 23:16:30 +020049 u32 gp_lvl2 = inl(gpio_base + 0x38);
Gabe Blackf40a2592012-03-29 18:04:56 -070050 /* u32 gp_lvl3 = inl(gpio_base + 0x48); */
Stefan Reinauer6651da32012-04-27 23:16:30 +020051
52 gpios->size = sizeof(*gpios) + (GPIO_COUNT * sizeof(struct lb_gpio));
53 gpios->count = GPIO_COUNT;
54
Gabe Blackf40a2592012-03-29 18:04:56 -070055 /* Write Protect: GPIO48 */
56 gpios->gpios[0].port = 48;
57 gpios->gpios[0].polarity = ACTIVE_LOW;
58 gpios->gpios[0].value = (gp_lvl2 >> (48-32)) & 1;
Stefan Reinauer6651da32012-04-27 23:16:30 +020059 strncpy((char *)gpios->gpios[0].name,"write protect",
60 GPIO_MAX_NAME_LENGTH);
61
Gabe Blackf40a2592012-03-29 18:04:56 -070062 /* Recovery: GPIO22 */
63 gpios->gpios[1].port = 22;
Stefan Reinauer6651da32012-04-27 23:16:30 +020064 gpios->gpios[1].polarity = ACTIVE_LOW;
Gabe Blackf40a2592012-03-29 18:04:56 -070065 gpios->gpios[1].value = (gp_lvl >> 22) & 1;
Stefan Reinauer6651da32012-04-27 23:16:30 +020066 strncpy((char *)gpios->gpios[1].name,"recovery", GPIO_MAX_NAME_LENGTH);
67
Gabe Blackf40a2592012-03-29 18:04:56 -070068 /* Developer: GPIO57 */
69 gpios->gpios[2].port = 57;
Stefan Reinauer6651da32012-04-27 23:16:30 +020070 gpios->gpios[2].polarity = ACTIVE_HIGH;
Gabe Blackf40a2592012-03-29 18:04:56 -070071 gpios->gpios[2].value = (gp_lvl2 >> (57-32)) & 1;
Stefan Reinauer6651da32012-04-27 23:16:30 +020072 strncpy((char *)gpios->gpios[2].name,"developer", GPIO_MAX_NAME_LENGTH);
73
74 /* Hard code the lid switch GPIO to open. */
75 gpios->gpios[3].port = 100;
76 gpios->gpios[3].polarity = ACTIVE_HIGH;
77 gpios->gpios[3].value = 1;
78 strncpy((char *)gpios->gpios[3].name,"lid", GPIO_MAX_NAME_LENGTH);
79
80 /* Power Button */
81 gpios->gpios[4].port = 101;
82 gpios->gpios[4].polarity = ACTIVE_LOW;
83 gpios->gpios[4].value = (gen_pmcon_1 >> 9) & 1;
84 strncpy((char *)gpios->gpios[4].name,"power", GPIO_MAX_NAME_LENGTH);
85}
86#endif
87
88int get_developer_mode_switch(void)
89{
Stefan Reinauer6651da32012-04-27 23:16:30 +020090 device_t dev;
91#ifdef __PRE_RAM__
92 dev = PCI_DEV(0, 0x1f, 0);
93#else
94 dev = dev_find_slot(0, PCI_DEVFN(0x1f,0));
95#endif
96 u16 gpio_base = pci_read_config32(dev, GPIOBASE) & 0xfffe;
Gabe Blackf40a2592012-03-29 18:04:56 -070097 u32 gp_lvl2 = inl(gpio_base + 0x38);
Stefan Reinauer6651da32012-04-27 23:16:30 +020098
Gabe Blackf40a2592012-03-29 18:04:56 -070099 /* Developer: GPIO17, active high */
100 return (gp_lvl2 >> (57-32)) & 1;
Stefan Reinauer6651da32012-04-27 23:16:30 +0200101}
102
103int get_recovery_mode_switch(void)
104{
105 device_t dev;
106#ifdef __PRE_RAM__
107 dev = PCI_DEV(0, 0x1f, 0);
108#else
109 dev = dev_find_slot(0, PCI_DEVFN(0x1f,0));
110#endif
111 u16 gpio_base = pci_read_config32(dev, GPIOBASE) & 0xfffe;
Gabe Blackf40a2592012-03-29 18:04:56 -0700112 u32 gp_lvl = inl(gpio_base + 0x0c);
Stefan Reinauer6651da32012-04-27 23:16:30 +0200113
Gabe Blackf40a2592012-03-29 18:04:56 -0700114 /* Recovery: GPIO22, active low */
115 return !((gp_lvl >> 22) & 1);
Stefan Reinauer6651da32012-04-27 23:16:30 +0200116}
117