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
62
70
76
77
78
79/**********************************************************************/
84void neorv32_slink_setup(uint32_t rx_irq, uint32_t tx_irq);
85void neorv32_slink_rx_clear(void);
86void neorv32_slink_tx_clear(void);
89uint32_t neorv32_slink_get(void);
90uint32_t neorv32_slink_check_last(void);
91void neorv32_slink_set_dst(uint32_t dst);
92uint32_t neorv32_slink_get_src(void);
93void neorv32_slink_put(uint32_t tx_data);
94void neorv32_slink_put_last(uint32_t tx_data);
98
99
100#endif // NEORV32_SLINK_H