blob: 02ee66c350c80aa4662d3db47abcf95f347b66f2 [file] [log] [blame]
Louis Mayencourtbadcac82019-10-24 15:18:46 +01001/*
2 * Copyright (c) 2020, ARM Limited. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6#ifndef ARM_FCONF_IO_STORAGE_H
7#define ARM_FCONF_IO_STORAGE_H
8
9#include <stdint.h>
10
11/* IO devices handle */
12extern uintptr_t memmap_dev_handle;
13extern uintptr_t fip_dev_handle;
14
15/* Function declarations */
16int open_fip(const uintptr_t spec);
17int open_memmap(const uintptr_t spec);
18
19#endif /* ARM_FCONF_IO_STORAGE_H */