summaryrefslogtreecommitdiffstats
path: root/bsps/arm/lpc32xx/include/bsp/hsu.h
blob: 785de6164cecdbff9ab3bc033469c3948452df4c (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
/**
 * @file
 *
 * @ingroup lpc32xx_hsu
 *
 * @brief HSU support API.
 */

/*
 * Copyright (c) 2010-2014 embedded brains GmbH.  All rights reserved.
 *
 * 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_ARM_LPC32XX_HSU_H
#define LIBBSP_ARM_LPC32XX_HSU_H

#include <rtems/termiostypes.h>

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

/**
 * @defgroup lpc32xx_hsu HSU Support
 *
 * @ingroup RTEMSBSPsARMLPC32XX
 *
 * @brief HSU Support
 *
 * @{
 */

typedef struct {
  uint32_t fifo;
  uint32_t level;
  uint32_t iir;
  uint32_t ctrl;
  uint32_t rate;
} lpc32xx_hsu;

typedef struct {
  rtems_termios_device_context base;
  volatile lpc32xx_hsu *hsu;
  size_t chars_in_transmission;
  rtems_vector_number irq;
  uint32_t initial_baud;
} lpc32xx_hsu_context;

extern const rtems_termios_device_handler lpc32xx_hsu_fns;

bool lpc32xx_hsu_probe(rtems_termios_device_context *base);

/** @} */

#ifdef __cplusplus
}
#endif /* __cplusplus */

#endif /* LIBBSP_ARM_LPC32XX_HSU_H */