summaryrefslogtreecommitdiffstats
path: root/src/mainboard/google/deltaur/variants/deltan/include/variant/variant.h
blob: be4c9709599e4d13b4285b707425f078e5e4cdbf (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
/*
 * This file is part of the coreboot project.
 *
 * SPDX-License-Identifier: GPL-2.0-or-later
 */

#ifndef VARIANT_H
#define VARIANT_H

#include <baseboard/variants.h>
#include <gpio.h>
#include <variant/gpio.h>

const static sku_info skus[] = {
	/* Deltan 360 - invalid configuration */
	{ .id = -1, .name = "sku_invalid" },
	/* Deltan */
	{ .id = 1, .name = "sku1" },
	/* Deltan 360 signed - invalid configuration */
	{ .id = -1, .name = "sku_invalid" },
	/* Deltan signed */
	{ .id = 2, .name = "sku2" },
};

#endif