blob: ca105e7601b7bf2d6e31f2f1672fca61bb32955d [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
Gabe Blacka5d914e42013-04-15 18:22:11 -070020#include <boot/coreboot_tables.h>
Ronald G. Minnich3faa2c72013-02-20 15:46:46 -080021#include <console/console.h>
Gabe Black7fa726a2013-04-15 18:09:15 -070022#include <ec/google/chromeec/ec.h>
23#include <ec/google/chromeec/ec_commands.h>
Ronald G. Minnich3faa2c72013-02-20 15:46:46 -080024#include <string.h>
25#include <vendorcode/google/chromeos/chromeos.h>
Ronald G. Minnich3faa2c72013-02-20 15:46:46 -080026
David Hendricksd9b16f32013-03-06 19:16:10 -080027#include <cpu/samsung/exynos5250/cpu.h>
28#include <cpu/samsung/exynos5250/gpio.h>
29#include <cpu/samsung/exynos5-common/gpio.h>
30
Gabe Blacka5d914e42013-04-15 18:22:11 -070031enum {
32 ACTIVE_LOW = 0,
33 ACTIVE_HIGH = 1
34};
Ronald G. Minnich3faa2c72013-02-20 15:46:46 -080035
Gabe Blacka5d914e42013-04-15 18:22:11 -070036enum {
37 WP_GPIO = 6,
38 RECMODE_GPIO = 0,
39 LID_GPIO = 5
40};
Ronald G. Minnich3faa2c72013-02-20 15:46:46 -080041
Gabe Black7fa726a2013-04-15 18:09:15 -070042static struct exynos5_gpio_part1 *gpio_pt1 =
43 (struct exynos5_gpio_part1 *)EXYNOS5_GPIO_PART1_BASE;
44static struct exynos5_gpio_part2 *gpio_pt2 =
45 (struct exynos5_gpio_part2 *)EXYNOS5_GPIO_PART2_BASE;
46
Ronald G. Minnich3faa2c72013-02-20 15:46:46 -080047void fill_lb_gpios(struct lb_gpios *gpios)
48{
Gabe Blacka5d914e42013-04-15 18:22:11 -070049 int count = 0;
Ronald G. Minnich3faa2c72013-02-20 15:46:46 -080050
Gabe Blacka554e232013-04-15 16:25:02 -070051 /* Write Protect: active low */
Gabe Blacka5d914e42013-04-15 18:22:11 -070052 gpios->gpios[count].port = EXYNOS5_GPD1;
53 gpios->gpios[count].polarity = ACTIVE_LOW;
54 gpios->gpios[count].value = s5p_gpio_get_value(&gpio_pt1->d1, WP_GPIO);
55 strncpy((char *)gpios->gpios[count].name, "write protect",
56 GPIO_MAX_NAME_LENGTH);
57 count++;
Ronald G. Minnich3faa2c72013-02-20 15:46:46 -080058
Gabe Blackfe3b0242013-04-10 14:39:09 -070059 /* Recovery: active low */
Gabe Blacka5d914e42013-04-15 18:22:11 -070060 gpios->gpios[count].port = -1;
61 gpios->gpios[count].polarity = ACTIVE_HIGH;
62 gpios->gpios[count].value = get_recovery_mode_switch();
63 strncpy((char *)gpios->gpios[count].name, "recovery",
64 GPIO_MAX_NAME_LENGTH);
65 count++;
Ronald G. Minnich3faa2c72013-02-20 15:46:46 -080066
Gabe Blacka554e232013-04-15 16:25:02 -070067 /* Lid: active high */
Gabe Blacka5d914e42013-04-15 18:22:11 -070068 gpios->gpios[count].port = EXYNOS5_GPX3;
69 gpios->gpios[count].polarity = ACTIVE_HIGH;
70 gpios->gpios[count].value = s5p_gpio_get_value(&gpio_pt2->x3, LID_GPIO);
71 strncpy((char *)gpios->gpios[count].name, "lid", GPIO_MAX_NAME_LENGTH);
72 count++;
Ronald G. Minnicheeb36322013-02-27 10:12:03 -080073
David Hendricksd9b16f32013-03-06 19:16:10 -080074 /* Power: virtual GPIO active low */
Gabe Blacka5d914e42013-04-15 18:22:11 -070075 gpios->gpios[count].port = -1;
76 gpios->gpios[count].polarity = ACTIVE_LOW;
77 gpios->gpios[count].value = 1;
78 strncpy((char *)gpios->gpios[count].name, "power",
79 GPIO_MAX_NAME_LENGTH);
80 count++;
Ronald G. Minnicheeb36322013-02-27 10:12:03 -080081
82 /* Developer: virtual GPIO active high */
Gabe Blacka5d914e42013-04-15 18:22:11 -070083 gpios->gpios[count].port = -1;
84 gpios->gpios[count].polarity = ACTIVE_HIGH;
85 gpios->gpios[count].value = get_developer_mode_switch();
86 strncpy((char *)gpios->gpios[count].name, "developer",
87 GPIO_MAX_NAME_LENGTH);
88 count++;
Ronald G. Minnich3faa2c72013-02-20 15:46:46 -080089
90 /* Was VGA Option ROM loaded? */
Gabe Blacka5d914e42013-04-15 18:22:11 -070091 gpios->gpios[count].port = -1; /* This is a pseudo GPIO */
92 gpios->gpios[count].polarity = ACTIVE_HIGH;
93 gpios->gpios[count].value = 0;
94 strncpy((char *)gpios->gpios[count].name, "oprom",
95 GPIO_MAX_NAME_LENGTH);
96 count++;
Ronald G. Minnich3faa2c72013-02-20 15:46:46 -080097
Gabe Blacka5d914e42013-04-15 18:22:11 -070098 gpios->size = sizeof(*gpios) + (count * sizeof(struct lb_gpio));
99 gpios->count = count;
100
101 printk(BIOS_ERR, "Added %d GPIOS size %d\n", count, gpios->size);
Ronald G. Minnich3faa2c72013-02-20 15:46:46 -0800102
103}
104
105int get_developer_mode_switch(void)
106{
Gabe Blacka5d914e42013-04-15 18:22:11 -0700107 return 0;
Ronald G. Minnich3faa2c72013-02-20 15:46:46 -0800108}
109
110int get_recovery_mode_switch(void)
111{
Gabe Black7fa726a2013-04-15 18:09:15 -0700112 uint32_t ec_events;
Ronald G. Minnich3faa2c72013-02-20 15:46:46 -0800113
Gabe Black7fa726a2013-04-15 18:09:15 -0700114 /* The GPIO is active low. */
115 if (!s5p_gpio_get_value(&gpio_pt1->y1, RECMODE_GPIO))
116 return 1;
117
118 ec_events = google_chromeec_get_events_b();
119 return !!(ec_events &
120 EC_HOST_EVENT_MASK(EC_HOST_EVENT_KEYBOARD_RECOVERY));
Ronald G. Minnich3faa2c72013-02-20 15:46:46 -0800121}
122
123int get_recovery_mode_from_vbnv(void)
124{
125 return 1;
126}