2016-07-07 05:53:51 +02:00
|
|
|
/*
|
|
|
|
* This file is part of the coreboot project.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2015 Google Inc.
|
|
|
|
* Copyright (C) 2015 Intel Corporation
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2016-09-02 23:56:03 +02:00
|
|
|
#include <baseboard/variants.h>
|
2016-07-07 05:53:51 +02:00
|
|
|
#include <boardid.h>
|
2016-09-02 23:56:03 +02:00
|
|
|
#include <stddef.h>
|
2016-07-07 05:53:51 +02:00
|
|
|
|
|
|
|
uint8_t board_id(void)
|
|
|
|
{
|
|
|
|
MAYBE_STATIC int id = -1;
|
|
|
|
|
|
|
|
if (id < 0)
|
2016-09-02 23:56:03 +02:00
|
|
|
id = variant_board_id();
|
2016-07-07 05:53:51 +02:00
|
|
|
|
|
|
|
return id;
|
|
|
|
}
|