blob: 3b2077b3924ef527bb5eebd1c00651e6960fd885 [file] [log] [blame]
Simon Glasse0e4b642019-09-25 08:00:13 -06001/* 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 Glassb56ddd92019-09-25 08:00:14 -060017#include <asm/fsp1/fsp_api.h>
Simon Glass4b6e2bb2019-09-25 08:00:20 -060018#include <asm/fsp1/fsp_ffs.h>
Simon Glasse0e4b642019-09-25 08:00:13 -060019#include <asm/arch/fsp/fsp_vpd.h>
20#include <asm/arch/fsp/fsp_configs.h>
21
22#endif