tegra_io_storage.c 480 B

1234567891011121314151617181920
  1. /*
  2. * Copyright (c) 2019, NVIDIA Corporation. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #include <errno.h>
  7. #include <plat/common/platform.h>
  8. /*
  9. * Return an IO device handle and specification which can be used to access
  10. * an image. Use this to enforce platform load policy.
  11. *
  12. * This function is not supported at this time
  13. */
  14. int plat_get_image_source(unsigned int image_id, uintptr_t *dev_handle,
  15. uintptr_t *image_spec)
  16. {
  17. return -ENOTSUP;
  18. }