Simon Glass | e0e4b64 | 2019-09-25 08:00:13 -0600 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
| 2 | /* |
| 3 | * Copyright 2019 Google LLC |
| 4 | * Written by Simon Glass <sjg@chromium.org> |
| 5 | * |
| 6 | * Architecture-specific definitions (FSP config and VPD/UPD) |
| 7 | */ |
| 8 | |
| 9 | #ifndef __FSP_ARCH_H__ |
| 10 | #define __FSP_ARCH_H__ |
| 11 | |
| 12 | /* |
| 13 | * Note: use #ifndef __ASSEMBLY__ around any struct definitions or other C code |
| 14 | * since this file can be included from assembly. |
| 15 | */ |
| 16 | |
Simon Glass | b56ddd9 | 2019-09-25 08:00:14 -0600 | [diff] [blame] | 17 | #include <asm/fsp1/fsp_api.h> |
Simon Glass | 4b6e2bb | 2019-09-25 08:00:20 -0600 | [diff] [blame] | 18 | #include <asm/fsp1/fsp_ffs.h> |
Simon Glass | e0e4b64 | 2019-09-25 08:00:13 -0600 | [diff] [blame] | 19 | #include <asm/arch/fsp/fsp_vpd.h> |
| 20 | #include <asm/arch/fsp/fsp_configs.h> |
| 21 | |
| 22 | #endif |