blob: aee1a3a92067088a64bf74c35b9a40c8d6d1f47b [file] [log] [blame]
Masahisa Kojimaebfd8eb2019-03-07 10:41:54 +09001/*
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 */
16struct dram_info_resp {
17 int status;
18 int reserved;
19 struct draminfo info;
20};
21
22/* API to get the available DRAM region */
23int scmi_get_draminfo(void *p, struct draminfo *info);
24
25#endif /* SCMI_SQ_H */