summaryrefslogtreecommitdiffstats
path: root/cpukit/include/dev/can/can.h
blob: 9e55395039290de4300438d5c9816a415697544a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
/* SPDX-License-Identifier: BSD-2-Clause */

/**
 * @file
 *
 * @ingroup CANBus
 *
 * @brief Controller Area Network (CAN) Bus Implementation
 *
 */

/*
 * Copyright (C) 2022 Prashanth S (fishesprashanth@gmail.com)
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 * notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 * notice, this list of conditions and the following disclaimer in the
 * documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */

#ifndef _DEV_CAN_CAN_H
#define _DEV_CAN_CAN_H

#include <rtems/imfs.h>
#include <rtems/thread.h>
#include <semaphore.h>

#include <string.h>
#include <stdlib.h>
#include <stdio.h>

#include <dev/can/can-msg.h>

#define DEBUG(str, ...)                                                   \
    do {                                                                      \
      printf("CAN: %s:%d ID: %08X ", __FILE__, __LINE__, rtems_task_self());  \
      printf(str, ##__VA_ARGS__);                                             \
    } while (false);

#define CAN_DEBUG(str, ...) DEBUG(str, ##__VA_ARGS__)
#define CAN_DEBUG_BUF(str, ...) CAN_DEBUG(str, ##__VA_ARGS__)
#define CAN_DEBUG_ISR(str, ...) CAN_DEBUG(str, ##__VA_ARGS__)
#define CAN_DEBUG_LOCK(str, ...) CAN_DEBUG(str, ##__VA_ARGS__)
#define CAN_DEBUG_RX(str, ...) CAN_DEBUG(str, ##__VA_ARGS__)
#define CAN_DEBUG_TX(str, ...) CAN_DEBUG(str, ##__VA_ARGS__)
#define CAN_DEBUG_REG(str, ...) //CAN_DEBUG(str, ##__VA_ARGS__)
#define CAN_ERR(str, ...) DEBUG(str, ##__VA_ARGS__)

#define CAN_MSG_LEN(msg) ((char *)(&((struct can_msg *)msg)->data[(uint16_t)((struct can_msg *)msg)->len]) - (char *)(msg))

/* Maximum Bus Reg (255) */
#define CAN_BUS_REG_MAX (255)

/**
 * @defgroup Controller Area Network (CAN) Driver
 *
 * @ingroup RTEMSDeviceDrivers
 *
 * @brief Controller Area Network (CAN) bus and device driver support.
 *
 * @{
 */

/**
 * @defgroup CANBus CAN Bus Driver
 *
 * @ingroup CAN
 *
 * @{
 */

/**
 * @brief CAN tx fifo data structure.
 */
struct ring_buf {
 /**
   * @brief Pointer to array of can_msg structure.
   */
  struct can_msg *pbuf;
 /**
   * @brief Index of the next free buffer.
   */
  uint32_t head;
 /**
   * @brief Index of the produced buffer.
   */
  uint32_t tail;
  /**
   * @brief Number of empty buffers.
   */
  uint32_t empty_count;
};

/**
 * @brief CAN Controller device specific operations.
 * These function pointers are initialized by the CAN device driver while
 * registering (can_bus_register).
 */
typedef struct can_dev_ops {
  /**
   * @brief Transfers CAN messages to device fifo.
   *
   * @param[in] priv device control structure.
   * @param[in] msg can_msg message structure.
   *
   * @retval 0 Successful operation.
   * @retval >0 error number in case of an error.
   */
  int32_t (*dev_tx)(void *priv, struct can_msg *msg);
  /**
   * @brief Check device is ready to transfer a CAN message
   *
   * @param[in] priv device control structure.
   *
   * @retval true device ready.
   * @retval false device not ready.
   */
  bool (*dev_tx_ready)(void *priv);
  /**
   * @brief Enable/Disable CAN interrupts.
   *
   * @param[in] priv device control structure.
   * @param[in] flag true/false to Enable/Disable CAN interrupts.
   *
   */
  void (*dev_int)(void *priv, bool flag);
  /**
   * @brief CAN device specific I/O controls.
   *
   * @param[in] priv device control structure.
   * @param[in] buffer This depends on the cmd.
   * @param[in] cmd Device specific I/O commands.
   *
   * @retval 0 Depends on the cmd.
   */
  int32_t (*dev_ioctl)(void *priv, void *buffer, size_t cmd);
} can_dev_ops;

/**
 * @name CAN bus control
 *
 * @{
 */

/**
 * @brief Obtains the bus.
 *
 * This command has no argument.
 */
typedef struct can_bus {
 /**
   * @brief Device specific control.
   */
  void *priv;
 /**
   * @brief Device controller index.
   */
  uint8_t index;
 /**
   * @brief Device specific operations.
   */
  struct can_dev_ops *can_dev_ops;
 /**
   * @brief tx fifo.
   */
  struct ring_buf tx_fifo;
 /**
   * @brief Counting semaphore id (for fifo sync).
   */
  rtems_id tx_fifo_sem_id;

 /* FIXME: Using only one CAN msg buffer, Should create a ring buffer */
 /**
   * @brief rx fifo.
   */
  struct can_msg can_rx_msg;
 /**
   * @brief Mutex to handle bus concurrency.
   */
  rtems_mutex mutex;
  /**
   * @brief Destroys the bus.
   *
   * @param[in] bus control structure.
   */
  void (*destroy)(struct can_bus *bus);
#ifdef CAN_DEBUG_LOCK

 /**
   * @brief For debugging semaphore obtain/release.
   */
  int sem_count;

#endif /* CAN_DEBUG_LOCK */

} can_bus;

/** @} */

/**
 * @brief Register a CAN node with the CAN bus driver.
 *
 * @param[in] bus bus control structure.
 * @param[in] bus_path path of device node.
 *
 * @retval >=0 rtems status.
 */
rtems_status_code can_bus_register(can_bus *bus, const char *bus_path);

/**
 * @brief Allocate and initilaize bus control structure.
 *
 * @param[in] size Size of the bus control structure.
 *
 * @retval NULL No memory available.
 * @retval Address Pointer to the allocated bus control structure.
 */
can_bus *can_bus_alloc_and_init(size_t size);

/**
 * @brief initilaize bus control structure.
 *
 * @param[in] bus bus control structure.
 *
 * @retval 0 success.
 * @retval >0 error number.
 */
int can_bus_init(can_bus *bus);

/**
 * @brief Initiates CAN message transfer.
 * 
 * Should be called with CAN interrupt disabled.
 *
 * @param[in] bus Bus control structure.
 *
 * @retval 0 success.
 * @retval >0 error number.
 */
int can_tx_done(struct can_bus *bus);

/**
 * @brief Sends the received CAN message to the application.
 * 
 * Should be called by the device when CAN message should be sent to applicaiton.
 * Should be called only with CAN interrupts disabled.
 *
 * @param[in] bus bus control structure.
 * @param[in] msg can_msg structure.
 *
 * @retval 0 success.
 * @retval >0 error number.
 */
int can_receive(struct can_bus *bus, struct can_msg *msg);

/**
 * @brief Prints the can_msg values pointed by msg.
 * 
 * @param[in] msg can_msg structure.
 *
 */
void can_print_msg(struct can_msg const *msg);

/** @} */  /* end of CAN device driver */

/** @} */

#endif /* _DEV_CAN_CAN_H */