arm_fconf_io_storage.h 426 B

12345678910111213141516171819
  1. /*
  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. #include <stdint.h>
  9. /* IO devices handle */
  10. extern uintptr_t memmap_dev_handle;
  11. extern uintptr_t fip_dev_handle;
  12. /* Function declarations */
  13. int open_fip(const uintptr_t spec);
  14. int open_memmap(const uintptr_t spec);
  15. #endif /* ARM_FCONF_IO_STORAGE_H */