2
0

loader-fit.h 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /*
  2. * Flattened Image Tree loader.
  3. *
  4. * Copyright (c) 2016 Imagination Technologies
  5. *
  6. * This library is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * This library is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with this library; if not, see <http://www.gnu.org/licenses/>.
  18. */
  19. #ifndef HW_LOADER_FIT_H
  20. #define HW_LOADER_FIT_H
  21. #include "exec/hwaddr.h"
  22. struct fit_loader_match {
  23. const char *compatible;
  24. const void *data;
  25. };
  26. struct fit_loader {
  27. const struct fit_loader_match *matches;
  28. hwaddr (*addr_to_phys)(void *opaque, uint64_t addr);
  29. void *(*fdt_filter)(void *opaque, const void *fdt,
  30. const void *match_data, hwaddr *load_addr);
  31. const void *(*kernel_filter)(void *opaque, const void *kernel,
  32. hwaddr *load_addr, hwaddr *entry_addr);
  33. };
  34. /**
  35. * load_fit: load a FIT format image
  36. * @ldr: structure defining board specific properties and hooks
  37. * @filename: image to load
  38. * @pfdt: pointer to update with address of FDT blob
  39. * @opaque: opaque value passed back to the hook functions in @ldr
  40. * Returns: 0 on success, or a negative errno on failure
  41. *
  42. * @pfdt is used to tell the caller about the FDT blob. On return, it
  43. * has been set to point to the FDT blob, and it is now the caller's
  44. * responsibility to free that memory with g_free(). Usually the caller
  45. * will want to pass in &machine->fdt here, to record the FDT blob for
  46. * the dumpdtb option and QMP/HMP commands.
  47. */
  48. int load_fit(const struct fit_loader *ldr, const char *filename, void **pfdt,
  49. void *opaque);
  50. #endif /* HW_LOADER_FIT_H */