blob: e74df6d5cfd143f18edec88101a53d1c3d2bb2ef [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>
21#include <string.h>
22#include <vendorcode/google/chromeos/chromeos.h>
23#include <arch/io.h>
24
David Hendricksd9b16f32013-03-06 19:16:10 -080025#include <cpu/samsung/exynos5250/cpu.h>
26#include <cpu/samsung/exynos5250/gpio.h>
27#include <cpu/samsung/exynos5-common/gpio.h>
28
Ronald G. Minnich3faa2c72013-02-20 15:46:46 -080029#include <device/device.h>
30
31#define ACTIVE_LOW 0
32#define ACTIVE_HIGH 1
33#define WP_GPIO 6
34#define DEVMODE_GPIO 54
35#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
44void fill_lb_gpios(struct lb_gpios *gpios)
45{
David Hendricksd9b16f32013-03-06 19:16:10 -080046 struct exynos5_gpio_part1 *gpio_pt1;
47 struct exynos5_gpio_part2 *gpio_pt2;
Ronald G. Minnich3faa2c72013-02-20 15:46:46 -080048
49 gpios->size = sizeof(*gpios) + (GPIO_COUNT * sizeof(struct lb_gpio));
50 gpios->count = GPIO_COUNT;
51
David Hendricksd9b16f32013-03-06 19:16:10 -080052 gpio_pt1 = (struct exynos5_gpio_part1 *)EXYNOS5_GPIO_PART1_BASE;
53 gpio_pt2 = (struct exynos5_gpio_part2 *)EXYNOS5_GPIO_PART2_BASE;
54
Gabe Blacka554e232013-04-15 16:25:02 -070055 /* Write Protect: active low */
David Hendricksd9b16f32013-03-06 19:16:10 -080056 gpios->gpios[0].port = EXYNOS5_GPD1;
Ronald G. Minnich3faa2c72013-02-20 15:46:46 -080057 gpios->gpios[0].polarity = ACTIVE_LOW;
David Hendricksd9b16f32013-03-06 19:16:10 -080058 gpios->gpios[0].value = s5p_gpio_get_value(&gpio_pt1->d1, WP_GPIO);
Ronald G. Minnich3faa2c72013-02-20 15:46:46 -080059 strncpy((char *)gpios->gpios[0].name,"write protect",
60 GPIO_MAX_NAME_LENGTH);
61
Gabe Blackfe3b0242013-04-10 14:39:09 -070062 /* Recovery: active low */
David Hendricksd9b16f32013-03-06 19:16:10 -080063 gpios->gpios[1].port = EXYNOS5_GPY1;
Gabe Blackfe3b0242013-04-10 14:39:09 -070064 gpios->gpios[1].polarity = ACTIVE_LOW;
David Hendricks991ce8f2013-03-18 21:54:13 -070065 gpios->gpios[1].value = s5p_gpio_get_value(&gpio_pt1->y1, FORCE_RECOVERY_MODE);
Ronald G. Minnich3faa2c72013-02-20 15:46:46 -080066 strncpy((char *)gpios->gpios[1].name,"recovery", GPIO_MAX_NAME_LENGTH);
67
Gabe Blacka554e232013-04-15 16:25:02 -070068 /* Lid: active high */
David Hendricksd9b16f32013-03-06 19:16:10 -080069 gpios->gpios[2].port = EXYNOS5_GPX3;
Gabe Blackfe3b0242013-04-10 14:39:09 -070070 gpios->gpios[2].polarity = ACTIVE_HIGH;
David Hendricksd9b16f32013-03-06 19:16:10 -080071 gpios->gpios[2].value = s5p_gpio_get_value(&gpio_pt2->x3, LID_OPEN);
Ronald G. Minnicheeb36322013-02-27 10:12:03 -080072 strncpy((char *)gpios->gpios[2].name,"lid", GPIO_MAX_NAME_LENGTH);
73
David Hendricksd9b16f32013-03-06 19:16:10 -080074 /* Power: virtual GPIO active low */
Ronald G. Minnicheeb36322013-02-27 10:12:03 -080075 gpios->gpios[3].port = -1;
David Hendricksd9b16f32013-03-06 19:16:10 -080076 gpios->gpios[3].polarity = ACTIVE_LOW;
77 gpios->gpios[3].value = 1;
Ronald G. Minnicheeb36322013-02-27 10:12:03 -080078 strncpy((char *)gpios->gpios[3].name,"power", GPIO_MAX_NAME_LENGTH);
79
80 /* Developer: virtual GPIO active high */
81 gpios->gpios[4].port = -1;
82 gpios->gpios[4].polarity = ACTIVE_HIGH;
83 gpios->gpios[4].value = 0;
84 strncpy((char *)gpios->gpios[4].name,"developer",
Ronald G. Minnich3faa2c72013-02-20 15:46:46 -080085 GPIO_MAX_NAME_LENGTH);
86
87 /* Was VGA Option ROM loaded? */
Ronald G. Minnicheeb36322013-02-27 10:12:03 -080088 gpios->gpios[5].port = -1; /* Indicate that this is a pseudo GPIO */
89 gpios->gpios[5].polarity = ACTIVE_HIGH;
90 gpios->gpios[5].value = 0;
91 strncpy((char *)gpios->gpios[5].name,"oprom", GPIO_MAX_NAME_LENGTH);
Ronald G. Minnich3faa2c72013-02-20 15:46:46 -080092
93 printk(BIOS_ERR, "Added %d GPIOS size %d\n", GPIO_COUNT, gpios->size);
94
95}
96
97int get_developer_mode_switch(void)
98{
99 int dev_mode = 0;
100
101 printk(BIOS_DEBUG,"FORCING DEVELOPER MODE.\n");
102
103 dev_mode = 1;
104 printk(BIOS_DEBUG,"DEVELOPER MODE FROM GPIO %d: %x\n",DEVMODE_GPIO,
105 dev_mode);
106
107 return dev_mode;
108}
109
110int get_recovery_mode_switch(void)
111{
112 int ec_rec_mode = 0;
113
114 return ec_rec_mode;
115}
116
117int get_recovery_mode_from_vbnv(void)
118{
119 return 1;
120}