summaryrefslogtreecommitdiffstats
path: root/src/soc/intel/skylake/include/soc/device_nvs.h
blob: 02c9e65809801a1ff4ba0cd38ad7cd38b601a993 (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
/*
 * This file is part of the coreboot project.
 *
 * Copyright (C) 2014 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.
 */

#ifndef _SOC_DEVICE_NVS_H_
#define _SOC_DEVICE_NVS_H_

#include <stdint.h>
#include <compiler.h>

/* Offset in Global NVS where this structure lives */
#define DEVICE_NVS_OFFSET	0x1000

#define SIO_NVS_I2C0		0
#define SIO_NVS_I2C1		1
#define SIO_NVS_I2C2		2
#define SIO_NVS_I2C3		3
#define SIO_NVS_I2C4		4
#define SIO_NVS_I2C5		5
#define SIO_NVS_SPI0		6
#define SIO_NVS_SPI1		7
#define SIO_NVS_UART0		8
#define SIO_NVS_UART1		9
#define SIO_NVS_UART2		10

typedef struct {
	u8	enable[11];
	u32	bar0[11];
	u32	bar1[11];
} __packed device_nvs_t;

#endif