NEORV32 Software Framework Documentation
The NEORV32 RISC-V Processor
Loading...
Searching...
No Matches
neorv32_slink.h
Go to the documentation of this file.
1// ================================================================================ //
2// The NEORV32 RISC-V Processor - https://github.com/stnolting/neorv32 //
3// Copyright (c) NEORV32 contributors. //
4// Copyright (c) 2020 - 2025 Stephan Nolting. All rights reserved. //
5// Licensed under the BSD-3-Clause license, see LICENSE for details. //
6// SPDX-License-Identifier: BSD-3-Clause //
7// ================================================================================ //
8
13
14#ifndef NEORV32_SLINK_H
15#define NEORV32_SLINK_H
16
17#include <stdint.h>
18
19
20/**********************************************************************/
25typedef volatile struct __attribute__((packed,aligned(4))) {
26 uint32_t CTRL;
27 uint32_t ROUTE;
28 uint32_t DATA;
29 uint32_t DATA_LAST;
31
33#define NEORV32_SLINK ((neorv32_slink_t*) (NEORV32_SLINK_BASE))
34
55
56
57
58/**********************************************************************/
63void neorv32_slink_setup(uint32_t irq_mask);
66uint32_t neorv32_slink_get(void);
68void neorv32_slink_set_dst(uint32_t dst);
69uint32_t neorv32_slink_get_src(void);
70void neorv32_slink_put(uint32_t tx_data);
71void neorv32_slink_put_last(uint32_t tx_data);
73int neorv32_slink_rx_full(void);
75int neorv32_slink_tx_full(void);
77
78
79#endif // NEORV32_SLINK_H