blob: bc99667c4d0623186e52faf2d6279793dd53b1d2 [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>
Kyösti Mälkkiab728092014-05-03 16:47:52 +030021#include <bootmode.h>
Stefan Reinauer6651da32012-04-27 23:16:30 +020022#include <arch/io.h>
Stefan Reinauer6651da32012-04-27 23:16:30 +020023#include <device/device.h>
24#include <device/pci.h>
Stefan Reinauer6651da32012-04-27 23:16:30 +020025#include <southbridge/intel/bd82x6x/pch.h>
26
27#ifndef __PRE_RAM__
Stefan Reinauer3e4e3032013-03-20 14:08:04 -070028#include <boot/coreboot_tables.h>
Stefan Reinauer6651da32012-04-27 23:16:30 +020029
Duncan Lauriec64947b2012-10-01 13:31:25 -070030#define GPIO_COUNT 6
Stefan Reinauer6651da32012-04-27 23:16:30 +020031
32void fill_lb_gpios(struct lb_gpios *gpios)
33{
34 device_t dev = dev_find_slot(0, PCI_DEVFN(0x1f,0));
35 u16 gpio_base = pci_read_config32(dev, GPIOBASE) & 0xfffe;
Stefan Reinauer6651da32012-04-27 23:16:30 +020036
37 if (!gpio_base)
38 return;
39
Stefan Reinauer6651da32012-04-27 23:16:30 +020040 u32 gp_lvl = inl(gpio_base + 0x0c);
Stefan Reinauer6651da32012-04-27 23:16:30 +020041 u32 gp_lvl2 = inl(gpio_base + 0x38);
Gabe Blackf40a2592012-03-29 18:04:56 -070042 /* u32 gp_lvl3 = inl(gpio_base + 0x48); */
Stefan Reinauer6651da32012-04-27 23:16:30 +020043
44 gpios->size = sizeof(*gpios) + (GPIO_COUNT * sizeof(struct lb_gpio));
45 gpios->count = GPIO_COUNT;
46
Gabe Blackf40a2592012-03-29 18:04:56 -070047 /* Write Protect: GPIO48 */
48 gpios->gpios[0].port = 48;
49 gpios->gpios[0].polarity = ACTIVE_LOW;
50 gpios->gpios[0].value = (gp_lvl2 >> (48-32)) & 1;
Stefan Reinauer6651da32012-04-27 23:16:30 +020051 strncpy((char *)gpios->gpios[0].name,"write protect",
52 GPIO_MAX_NAME_LENGTH);
53
Gabe Blackf40a2592012-03-29 18:04:56 -070054 /* Recovery: GPIO22 */
55 gpios->gpios[1].port = 22;
Stefan Reinauer6651da32012-04-27 23:16:30 +020056 gpios->gpios[1].polarity = ACTIVE_LOW;
Gabe Blackf40a2592012-03-29 18:04:56 -070057 gpios->gpios[1].value = (gp_lvl >> 22) & 1;
Stefan Reinauer6651da32012-04-27 23:16:30 +020058 strncpy((char *)gpios->gpios[1].name,"recovery", GPIO_MAX_NAME_LENGTH);
59
Gabe Blackf40a2592012-03-29 18:04:56 -070060 /* Developer: GPIO57 */
61 gpios->gpios[2].port = 57;
Duncan Lauriec64947b2012-10-01 13:31:25 -070062 gpios->gpios[2].polarity = ACTIVE_LOW;
Gabe Blackf40a2592012-03-29 18:04:56 -070063 gpios->gpios[2].value = (gp_lvl2 >> (57-32)) & 1;
Stefan Reinauer6651da32012-04-27 23:16:30 +020064 strncpy((char *)gpios->gpios[2].name,"developer", GPIO_MAX_NAME_LENGTH);
65
66 /* Hard code the lid switch GPIO to open. */
Duncan Lauriec64947b2012-10-01 13:31:25 -070067 gpios->gpios[3].port = -1;
Stefan Reinauer6651da32012-04-27 23:16:30 +020068 gpios->gpios[3].polarity = ACTIVE_HIGH;
69 gpios->gpios[3].value = 1;
70 strncpy((char *)gpios->gpios[3].name,"lid", GPIO_MAX_NAME_LENGTH);
71
72 /* Power Button */
Duncan Lauriec64947b2012-10-01 13:31:25 -070073 gpios->gpios[4].port = -1;
74 gpios->gpios[4].polarity = ACTIVE_HIGH;
75 gpios->gpios[4].value = 0;
Stefan Reinauer6651da32012-04-27 23:16:30 +020076 strncpy((char *)gpios->gpios[4].name,"power", GPIO_MAX_NAME_LENGTH);
Duncan Lauriec64947b2012-10-01 13:31:25 -070077
78 /* Did we load the VGA option ROM? */
79 gpios->gpios[5].port = -1;
80 gpios->gpios[5].polarity = ACTIVE_HIGH;
Kyösti Mälkkiab56b3b2013-11-28 16:44:51 +020081 gpios->gpios[5].value = gfx_get_init_done();
Duncan Lauriec64947b2012-10-01 13:31:25 -070082 strncpy((char *)gpios->gpios[5].name,"oprom", GPIO_MAX_NAME_LENGTH);
Stefan Reinauer6651da32012-04-27 23:16:30 +020083}
84#endif
85
86int get_developer_mode_switch(void)
87{
Stefan Reinauer6651da32012-04-27 23:16:30 +020088 device_t dev;
89#ifdef __PRE_RAM__
90 dev = PCI_DEV(0, 0x1f, 0);
91#else
92 dev = dev_find_slot(0, PCI_DEVFN(0x1f,0));
93#endif
94 u16 gpio_base = pci_read_config32(dev, GPIOBASE) & 0xfffe;
Gabe Blackf40a2592012-03-29 18:04:56 -070095 u32 gp_lvl2 = inl(gpio_base + 0x38);
Stefan Reinauer6651da32012-04-27 23:16:30 +020096
Gabe Blackf40a2592012-03-29 18:04:56 -070097 /* Developer: GPIO17, active high */
98 return (gp_lvl2 >> (57-32)) & 1;
Stefan Reinauer6651da32012-04-27 23:16:30 +020099}
100
101int get_recovery_mode_switch(void)
102{
103 device_t dev;
104#ifdef __PRE_RAM__
105 dev = PCI_DEV(0, 0x1f, 0);
106#else
107 dev = dev_find_slot(0, PCI_DEVFN(0x1f,0));
108#endif
109 u16 gpio_base = pci_read_config32(dev, GPIOBASE) & 0xfffe;
Gabe Blackf40a2592012-03-29 18:04:56 -0700110 u32 gp_lvl = inl(gpio_base + 0x0c);
Stefan Reinauer6651da32012-04-27 23:16:30 +0200111
Gabe Blackf40a2592012-03-29 18:04:56 -0700112 /* Recovery: GPIO22, active low */
113 return !((gp_lvl >> 22) & 1);
Stefan Reinauer6651da32012-04-27 23:16:30 +0200114}
115