qom: Move the creation of the library to the main meson.build
[qemu/ar7.git] / hw / net / can / ctucan_core.h
blobf21cb1c5ec3111e24ea7682f4b8ea366321830c6
1 /*
2 * CTU CAN FD device emulation
3 * http://canbus.pages.fel.cvut.cz/
5 * Copyright (c) 2019 Jan Charvat (jancharvat.charvat@gmail.com)
7 * Based on Kvaser PCI CAN device (SJA1000 based) emulation implemented by
8 * Jin Yang and Pavel Pisa
10 * Permission is hereby granted, free of charge, to any person obtaining a copy
11 * of this software and associated documentation files (the "Software"), to deal
12 * in the Software without restriction, including without limitation the rights
13 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14 * copies of the Software, and to permit persons to whom the Software is
15 * furnished to do so, subject to the following conditions:
17 * The above copyright notice and this permission notice shall be included in
18 * all copies or substantial portions of the Software.
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
23 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26 * THE SOFTWARE.
28 #ifndef HW_CAN_CTUCAN_CORE_H
29 #define HW_CAN_CTUCAN_CORE_H
31 #include "exec/hwaddr.h"
32 #include "net/can_emu.h"
35 #ifndef __LITTLE_ENDIAN_BITFIELD
36 #define __LITTLE_ENDIAN_BITFIELD 1
37 #endif
39 #include "ctu_can_fd_frame.h"
40 #include "ctu_can_fd_regs.h"
42 #define CTUCAN_CORE_MEM_SIZE 0x500
44 /* The max size for a message in FIFO */
45 #define CTUCAN_MSG_MAX_LEN (CTU_CAN_FD_DATA_1_4_W + 64)
46 /* The receive buffer size. */
47 #define CTUCAN_RCV_BUF_LEN (1024 * 8)
50 /* The max size for a message buffer */
51 #define CTUCAN_CORE_MSG_MAX_LEN 0x50
52 /* The receive buffer size. */
53 #define CTUCAN_CORE_RCV_BUF_LEN 0x1000
55 #define CTUCAN_CORE_TXBUF_NUM 4
57 typedef struct CtuCanCoreMsgBuffer {
58 uint8_t data[CTUCAN_CORE_MSG_MAX_LEN];
59 } CtuCanCoreMsgBuffer;
61 typedef struct CtuCanCoreState {
62 union ctu_can_fd_mode_settings mode_settings;
63 union ctu_can_fd_status status;
64 union ctu_can_fd_int_stat int_stat;
65 union ctu_can_fd_int_ena_set int_ena;
66 union ctu_can_fd_int_mask_set int_mask;
67 union ctu_can_fd_btr brt;
68 union ctu_can_fd_btr_fd brt_fd;
69 union ctu_can_fd_ewl_erp_fault_state ewl_erp_fault_state;
70 union ctu_can_fd_rec_tec rec_tec;
71 union ctu_can_fd_err_norm_err_fd err_norm_err_fd;
72 union ctu_can_fd_ctr_pres ctr_pres;
73 union ctu_can_fd_filter_a_mask filter_a_mask;
74 union ctu_can_fd_filter_a_val filter_a_val;
75 union ctu_can_fd_filter_b_mask filter_b_mask;
76 union ctu_can_fd_filter_b_val filter_b_val;
77 union ctu_can_fd_filter_c_mask filter_c_mask;
78 union ctu_can_fd_filter_c_val filter_c_val;
79 union ctu_can_fd_filter_ran_low filter_ran_low;
80 union ctu_can_fd_filter_ran_high filter_ran_high;
81 union ctu_can_fd_filter_control_filter_status filter_control_filter_status;
82 union ctu_can_fd_rx_mem_info rx_mem_info;
83 union ctu_can_fd_rx_pointers rx_pointers;
84 union ctu_can_fd_rx_status_rx_settings rx_status_rx_settings;
85 union ctu_can_fd_tx_status tx_status;
86 union ctu_can_fd_tx_priority tx_priority;
87 union ctu_can_fd_err_capt_alc err_capt_alc;
88 union ctu_can_fd_trv_delay_ssp_cfg trv_delay_ssp_cfg;
89 union ctu_can_fd_rx_fr_ctr rx_fr_ctr;
90 union ctu_can_fd_tx_fr_ctr tx_fr_ctr;
91 union ctu_can_fd_debug_register debug_register;
92 union ctu_can_fd_yolo_reg yolo_reg;
93 union ctu_can_fd_timestamp_low timestamp_low;
94 union ctu_can_fd_timestamp_high timestamp_high;
96 CtuCanCoreMsgBuffer tx_buffer[CTUCAN_CORE_TXBUF_NUM];
98 uint8_t rx_buff[CTUCAN_RCV_BUF_LEN]; /* 32~95 .. 64bytes Rx FIFO */
99 uint32_t rx_tail_pos; /* Count by bytes. */
100 uint32_t rx_cnt; /* Count by bytes. */
101 uint32_t rx_frame_rem;
103 qemu_irq irq;
104 CanBusClientState bus_client;
105 } CtuCanCoreState;
107 void ctucan_hardware_reset(CtuCanCoreState *s);
109 void ctucan_mem_write(CtuCanCoreState *s, hwaddr addr, uint64_t val,
110 unsigned size);
112 uint64_t ctucan_mem_read(CtuCanCoreState *s, hwaddr addr, unsigned size);
114 int ctucan_connect_to_bus(CtuCanCoreState *s, CanBusState *bus);
116 void ctucan_disconnect(CtuCanCoreState *s);
118 int ctucan_init(CtuCanCoreState *s, qemu_irq irq);
120 bool ctucan_can_receive(CanBusClientState *client);
122 ssize_t ctucan_receive(CanBusClientState *client,
123 const qemu_can_frame *frames, size_t frames_cnt);
125 extern const VMStateDescription vmstate_ctucan;
127 #endif