summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/powerpc/mpc55xxevb/include/console-esci.h
blob: 1e51ecde7e13f329dfdad05a257edf47355f45fc (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
/**
 * @file
 *
 * @brief Console ESCI API.
 */

/*
 * Copyright (c) 2011 embedded brains GmbH.  All rights reserved.
 *
 *  embedded brains GmbH
 *  Obere Lagerstr. 30
 *  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.com/license/LICENSE.
 */

#ifndef LIBBSP_POWERPC_MPC55XXEVB_CONSOLE_ESCI_H
#define LIBBSP_POWERPC_MPC55XXEVB_CONSOLE_ESCI_H

#include "console-generic.h"

#undef CR0
#undef CR1
#undef CR2
#undef CR3

#include <mpc55xx/regs.h>

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

#ifdef MPC55XX_HAS_ESCI

extern const console_generic_callbacks mpc55xx_esci_callbacks;

typedef struct {
  volatile struct ESCI_tag *regs;
  struct rtems_termios_tty *tty;
  int transmit_nest_level;
  bool transmit_in_progress;
  rtems_vector_number irq;
} mpc55xx_esci_context;

extern mpc55xx_esci_context mpc55xx_esci_devices [];

#endif

#ifdef __cplusplus
}
#endif /* __cplusplus */

#endif /* LIBBSP_POWERPC_MPC55XXEVB_CONSOLE_ESCI_H */