blob: e4169a5126c2f26146d77d818a73a97af28a2783 [file] [log] [blame]
Tamas Ban53ac24f2022-01-18 16:32:18 +01001/*
2 * Copyright (c) 2022, Arm Limited. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 *
6 */
7
Tamas Band0973182024-02-21 12:42:00 +01008#ifndef RSE_COMMS_H
9#define RSE_COMMS_H
Tamas Ban53ac24f2022-01-18 16:32:18 +010010
11#include <stdint.h>
12
Tamas Band0973182024-02-21 12:42:00 +010013int rse_comms_init(uintptr_t mhu_sender_base, uintptr_t mhu_receiver_base);
Tamas Ban53ac24f2022-01-18 16:32:18 +010014
Tamas Band0973182024-02-21 12:42:00 +010015#endif /* RSE_COMMS_H */