You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
276 B
15 lines
276 B
/*
|
|
* Copyright (c) 2022, Arm Limited. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*
|
|
*/
|
|
|
|
#ifndef RSS_COMMS_H
|
|
#define RSS_COMMS_H
|
|
|
|
#include <stdint.h>
|
|
|
|
int rss_comms_init(uintptr_t mhu_sender_base, uintptr_t mhu_receiver_base);
|
|
|
|
#endif /* RSS_COMMS_H */
|
|
|