blob: 2faee73b4ba391c7a5915ba3979cb6958e09dea3 [file] [log] [blame]
Chris Kayf11909f2021-08-19 11:21:52 +01001/*
2 * Copyright (c) 2021, Arm Limited. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef FCONF_AMU_GETTER_H
8#define FCONF_AMU_GETTER_H
9
10#include <lib/extensions/amu.h>
11
12#define amu__config_getter(id) fconf_amu_config.id
13
14struct fconf_amu_config {
15 const struct amu_topology *topology;
16};
17
18extern struct fconf_amu_config fconf_amu_config;
19
20#endif /* FCONF_AMU_GETTER_H */