summaryrefslogtreecommitdiffstats
path: root/bsps/powerpc/qoriq/include/bsp/uart-bridge.h
blob: 97e6553b7cca8970e45a4f0def8825b3fc963209 (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
/**
 * @file
 *
 * @ingroup QorIQUartBridge
 *
 * @brief UART to Intercom bridge API.
 */

/*
 * Copyright (c) 2011-2015 embedded brains GmbH.  All rights reserved.
 *
 *  embedded brains GmbH
 *  Dornierstr. 4
 *  82178 Puchheim
 *  Germany
 *  <rtems@embedded-brains.de>
 *
 * The license and distribution terms for this file may be
 * found in the file LICENSE in this distribution or at
 * http://www.rtems.org/license/LICENSE.
 */

#ifndef LIBBSP_POWERPC_QORIQ_UART_BRIDGE_H
#define LIBBSP_POWERPC_QORIQ_UART_BRIDGE_H

#include <rtems/termiostypes.h>

#include <bsp/intercom.h>

#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */

/**
 * @defgroup QorIQUartBridge QorIQ - UART to Intercom Bridge Support
 *
 * @ingroup QorIQ
 *
 * @brief UART to Intercom bridge support.
 *
 * @{
 */

typedef struct {
  rtems_termios_device_context base;
  const char *device_path;
  intercom_type type;
  rtems_id transmit_task;
  rtems_chain_control transmit_fifo;
} uart_bridge_master_context;

typedef struct {
  rtems_termios_device_context base;
  struct rtems_termios_tty *tty;
  intercom_type type;
  rtems_id transmit_task;
  rtems_chain_control transmit_fifo;
} uart_bridge_slave_context;

bool qoriq_uart_bridge_master_probe(rtems_termios_device_context *base);

extern const rtems_termios_device_handler qoriq_uart_bridge_master;

extern const rtems_termios_device_handler qoriq_uart_bridge_slave;

/** @} */

#ifdef __cplusplus
}
#endif /* __cplusplus */

#endif /* LIBBSP_POWERPC_QORIQ_UART_BRIDGE_H */