aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/skylake
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2020-12-21 12:18:48 +0200
committerAngel Pons <th3fanbus@gmail.com>2020-12-31 12:25:00 +0000
commit673698636fdf2a967f73997ce0908992bba09409 (patch)
tree979908938faca5797371c1950f4da3057d6f221a /src/soc/intel/skylake
parentb17e805dbf6a767c5dfb0deece4cc504ad7367f0 (diff)
soc/intel/skylake: Remove device_nvs.h
Change-Id: I9d500be609d61ccf234260216bd5aae3f78e91a8 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/48802 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-by: Subrata Banik <subrata.banik@intel.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/intel/skylake')
-rw-r--r--src/soc/intel/skylake/include/soc/device_nvs.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/soc/intel/skylake/include/soc/device_nvs.h b/src/soc/intel/skylake/include/soc/device_nvs.h
deleted file mode 100644
index f776a12b77..0000000000
--- a/src/soc/intel/skylake/include/soc/device_nvs.h
+++ /dev/null
@@ -1,26 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0-only */
-
-#ifndef _SOC_DEVICE_NVS_H_
-#define _SOC_DEVICE_NVS_H_
-
-#include <stdint.h>
-
-#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