tbbr_config.h 513 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * Copyright (c) 2016-2017, ARM Limited and Contributors. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #ifndef TBBR_CONFIG_H
  7. #define TBBR_CONFIG_H
  8. #include <stdint.h>
  9. #include <uuid.h>
  10. #define TOC_HEADER_SERIAL_NUMBER 0x12345678
  11. typedef struct toc_entry {
  12. char *name;
  13. uuid_t uuid;
  14. char *cmdline_name;
  15. } toc_entry_t;
  16. extern toc_entry_t toc_entries[];
  17. #ifdef PLAT_DEF_FIP_UUID
  18. extern toc_entry_t plat_def_toc_entries[];
  19. #endif
  20. #endif /* TBBR_CONFIG_H */