aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/rush_ryu/boardid.c
blob: 9d99b90ddc30f034587de9580012785937b2ff6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
/*
 * This file is part of the coreboot project.
 *
 * Copyright 2014 Google Inc.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; version 2 of the License.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
 */

#include <boardid.h>
#include <console/console.h>
#include <soc/gpio.h>
#include <stdlib.h>

#include "gpio.h"

/*
 * +------------------+---------+
 * | BD_ID_STRAP[1:0] |  PHASE  |
 * +------------------+---------+
 * |         00       |  PROTO0 |
 * +------------------+---------+
 * |         01       |  PROTO1 |
 * +------------------+---------+
 * |         0Z       |   EVT   |
 * +------------------+---------+
 * |         10       |   DVT   |
 * +------------------+---------+
 * |         11       |   PVT   |
 * +------------------+---------+
 * |         1Z       |   MP    |
 * +------------------+---------+
 * |         Z0       |         |
 * +------------------+---------+
 * |         Z1       |         |
 * +------------------+---------+
 * |         ZZ       |         |
 * +------------------+---------+
 */
struct id_to_str {
	const char *str;
	int tri_state_value;
	int normalized_id;
};

static const struct id_to_str bdid_map[] = {
	{ "PROTO 0", 0x00, BOARD_ID_PROTO_0 },
	{ "PROTO 1", 0x01, BOARD_ID_PROTO_1 },
	{ "EVT", 0x02, BOARD_ID_EVT },
	{ "DVT", 0x04, BOARD_ID_DVT },
	{ "PVT", 0x05, BOARD_ID_PVT },
	{ "MP", 0x06, BOARD_ID_MP },
	{ "Z0", 0x08, -1 },
	{ "Z1", 0x09, -1 },
	{ "ZZ", 0x0a, -1 },
};

uint8_t board_id(void)
{
	static int id = -1;

	if (id < 0) {
		const char *idstr = "Unknown";
		int i;
		int tristate_id;
		gpio_t gpio[] = { BD_ID0, BD_ID1 };

		tristate_id = gpio_get_in_tristate_values(gpio,
							ARRAY_SIZE(gpio), 0);

		for (i = 0; i < ARRAY_SIZE(bdid_map); i++) {
			if (tristate_id != bdid_map[i].tri_state_value)
				continue;
			idstr = bdid_map[i].str;
			id = bdid_map[i].normalized_id;
			break;
		}

		printk(BIOS_SPEW, "Board ID: '%s' %d (%#x)\n", idstr, id,
			tristate_id);
	}
	return id;
}