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