blob: f33f103019fc2996d736fb2b446588b322424458 [file] [log] [blame]
Ronald G. Minnich3faa2c72013-02-20 15:46:46 -08001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2013 Google, 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; 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 <console/console.h>
Gabe Black7fa726a2013-04-15 18:09:15 -070021#include <ec/google/chromeec/ec.h>
22#include <ec/google/chromeec/ec_commands.h>
Ronald G. Minnich3faa2c72013-02-20 15:46:46 -080023#include <string.h>
24#include <vendorcode/google/chromeos/chromeos.h>
Ronald G. Minnich3faa2c72013-02-20 15:46:46 -080025
David Hendricksd9b16f32013-03-06 19:16:10 -080026#include <cpu/samsung/exynos5250/cpu.h>
27#include <cpu/samsung/exynos5250/gpio.h>
28#include <cpu/samsung/exynos5-common/gpio.h>
29
Ronald G. Minnich3faa2c72013-02-20 15:46:46 -080030#define ACTIVE_LOW 0
31#define ACTIVE_HIGH 1
32#define WP_GPIO 6
33#define DEVMODE_GPIO 54
Gabe Black7fa726a2013-04-15 18:09:15 -070034#define RECMODE_GPIO 0
Ronald G. Minnich3faa2c72013-02-20 15:46:46 -080035#define FORCE_RECOVERY_MODE 0
36#define FORCE_DEVELOPER_MODE 0
Gabe Blackfe3b0242013-04-10 14:39:09 -070037#define LID_OPEN 5
David Hendricksd9b16f32013-03-06 19:16:10 -080038#define POWER_BUTTON 3
Ronald G. Minnich3faa2c72013-02-20 15:46:46 -080039
40#include <boot/coreboot_tables.h>
Ronald G. Minnich3faa2c72013-02-20 15:46:46 -080041
Ronald G. Minnicheeb36322013-02-27 10:12:03 -080042#define GPIO_COUNT 6
Ronald G. Minnich3faa2c72013-02-20 15:46:46 -080043
Gabe Black7fa726a2013-04-15 18:09:15 -070044static struct exynos5_gpio_part1 *gpio_pt1 =
45 (struct exynos5_gpio_part1 *)EXYNOS5_GPIO_PART1_BASE;
46static struct exynos5_gpio_part2 *gpio_pt2 =
47 (struct exynos5_gpio_part2 *)EXYNOS5_GPIO_PART2_BASE;
48
Ronald G. Minnich3faa2c72013-02-20 15:46:46 -080049void fill_lb_gpios(struct lb_gpios *gpios)
50{
Ronald G. Minnich3faa2c72013-02-20 15:46:46 -080051 gpios->size = sizeof(*gpios) + (GPIO_COUNT * sizeof(struct lb_gpio));
52 gpios->count = GPIO_COUNT;
53
Gabe Blacka554e232013-04-15 16:25:02 -070054 /* Write Protect: active low */
David Hendricksd9b16f32013-03-06 19:16:10 -080055 gpios->gpios[0].port = EXYNOS5_GPD1;
Ronald G. Minnich3faa2c72013-02-20 15:46:46 -080056 gpios->gpios[0].polarity = ACTIVE_LOW;
David Hendricksd9b16f32013-03-06 19:16:10 -080057 gpios->gpios[0].value = s5p_gpio_get_value(&gpio_pt1->d1, WP_GPIO);
Ronald G. Minnich3faa2c72013-02-20 15:46:46 -080058 strncpy((char *)gpios->gpios[0].name,"write protect",
59 GPIO_MAX_NAME_LENGTH);
60
Gabe Blackfe3b0242013-04-10 14:39:09 -070061 /* Recovery: active low */
Gabe Black7fa726a2013-04-15 18:09:15 -070062 gpios->gpios[1].port = -1;
63 gpios->gpios[1].polarity = ACTIVE_HIGH;
64 gpios->gpios[1].value = get_recovery_mode_switch();
Ronald G. Minnich3faa2c72013-02-20 15:46:46 -080065 strncpy((char *)gpios->gpios[1].name,"recovery", GPIO_MAX_NAME_LENGTH);
66
Gabe Blacka554e232013-04-15 16:25:02 -070067 /* Lid: active high */
David Hendricksd9b16f32013-03-06 19:16:10 -080068 gpios->gpios[2].port = EXYNOS5_GPX3;
Gabe Blackfe3b0242013-04-10 14:39:09 -070069 gpios->gpios[2].polarity = ACTIVE_HIGH;
David Hendricksd9b16f32013-03-06 19:16:10 -080070 gpios->gpios[2].value = s5p_gpio_get_value(&gpio_pt2->x3, LID_OPEN);
Ronald G. Minnicheeb36322013-02-27 10:12:03 -080071 strncpy((char *)gpios->gpios[2].name,"lid", GPIO_MAX_NAME_LENGTH);
72
David Hendricksd9b16f32013-03-06 19:16:10 -080073 /* Power: virtual GPIO active low */
Ronald G. Minnicheeb36322013-02-27 10:12:03 -080074 gpios->gpios[3].port = -1;
David Hendricksd9b16f32013-03-06 19:16:10 -080075 gpios->gpios[3].polarity = ACTIVE_LOW;
76 gpios->gpios[3].value = 1;
Ronald G. Minnicheeb36322013-02-27 10:12:03 -080077 strncpy((char *)gpios->gpios[3].name,"power", GPIO_MAX_NAME_LENGTH);
78
79 /* Developer: virtual GPIO active high */
80 gpios->gpios[4].port = -1;
81 gpios->gpios[4].polarity = ACTIVE_HIGH;
82 gpios->gpios[4].value = 0;
83 strncpy((char *)gpios->gpios[4].name,"developer",
Ronald G. Minnich3faa2c72013-02-20 15:46:46 -080084 GPIO_MAX_NAME_LENGTH);
85
86 /* Was VGA Option ROM loaded? */
Ronald G. Minnicheeb36322013-02-27 10:12:03 -080087 gpios->gpios[5].port = -1; /* Indicate that this is a pseudo GPIO */
88 gpios->gpios[5].polarity = ACTIVE_HIGH;
89 gpios->gpios[5].value = 0;
90 strncpy((char *)gpios->gpios[5].name,"oprom", GPIO_MAX_NAME_LENGTH);
Ronald G. Minnich3faa2c72013-02-20 15:46:46 -080091
92 printk(BIOS_ERR, "Added %d GPIOS size %d\n", GPIO_COUNT, gpios->size);
93
94}
95
96int get_developer_mode_switch(void)
97{
98 int dev_mode = 0;
99
100 printk(BIOS_DEBUG,"FORCING DEVELOPER MODE.\n");
101
102 dev_mode = 1;
103 printk(BIOS_DEBUG,"DEVELOPER MODE FROM GPIO %d: %x\n",DEVMODE_GPIO,
104 dev_mode);
105
106 return dev_mode;
107}
108
109int get_recovery_mode_switch(void)
110{
Gabe Black7fa726a2013-04-15 18:09:15 -0700111 uint32_t ec_events;
Ronald G. Minnich3faa2c72013-02-20 15:46:46 -0800112
Gabe Black7fa726a2013-04-15 18:09:15 -0700113 /* The GPIO is active low. */
114 if (!s5p_gpio_get_value(&gpio_pt1->y1, RECMODE_GPIO))
115 return 1;
116
117 ec_events = google_chromeec_get_events_b();
118 return !!(ec_events &
119 EC_HOST_EVENT_MASK(EC_HOST_EVENT_KEYBOARD_RECOVERY));
Ronald G. Minnich3faa2c72013-02-20 15:46:46 -0800120}
121
122int get_recovery_mode_from_vbnv(void)
123{
124 return 1;
125}