scmi_sq.h 480 B

12345678910111213141516171819202122232425
  1. /*
  2. * Copyright (c) 2019, ARM Limited and Contributors. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #ifndef SCMI_SQ_H
  7. #define SCMI_SQ_H
  8. #include <stddef.h>
  9. #include <stdint.h>
  10. #include <sq_common.h>
  11. /* Structure to represent available DRAM region */
  12. struct dram_info_resp {
  13. int status;
  14. int reserved;
  15. struct draminfo info;
  16. };
  17. /* API to get the available DRAM region */
  18. int scmi_get_draminfo(void *p, struct draminfo *info);
  19. #endif /* SCMI_SQ_H */