blob: ae8734e9d96a7ead0459d0b91353414281d796fc [file] [log] [blame]
Martin Rothac35e622017-11-07 13:43:02 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright 2017 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
16#include <gpio.h> /* src/include/gpio.h */
17#include <baseboard/variants.h>
18#include <variant/gpio.h>
19
Martin Roth1cdb6f22017-11-17 09:25:02 -070020uint8_t __attribute__((weak)) variant_board_id(void)
Martin Rothac35e622017-11-07 13:43:02 -070021{
22 gpio_t pads[] = {
23 [3] = MEM_CONFIG3,
24 [2] = MEM_CONFIG2,
25 [1] = MEM_CONFIG1,
26 [0] = MEM_CONFIG0,
27 };
28
Martin Roth1cdb6f22017-11-17 09:25:02 -070029 return gpio_base2_value(pads, ARRAY_SIZE(pads));
Martin Rothac35e622017-11-07 13:43:02 -070030}