summaryrefslogtreecommitdiffstats
path: root/src/ec/google/chromeec/ec_boardid.c
blob: 52b4fb3e37565003381aa056f320a9f25fe05870 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

#include <boardid.h>
#include <ec/google/chromeec/ec.h>

uint32_t board_id(void)
{
	MAYBE_STATIC_NONZERO uint32_t id = BOARD_ID_INIT;

	if (id == BOARD_ID_INIT) {
		if (google_chromeec_get_board_version(&id))
			id = BOARD_ID_UNKNOWN;
	}

	return id;
}