summaryrefslogtreecommitdiffstats
path: root/bsps/arm/lpc32xx/console/console-config.c
blob: 98a1f6a33179536ae7c85a53edd143d042b4552d (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
/* SPDX-License-Identifier: BSD-2-Clause */

/**
 * @file
 *
 * @ingroup RTEMSBSPsARMLPC32XX
 *
 * @brief Console configuration.
 */

/*
 * Copyright (C) 2009, 2014 embedded brains GmbH & Co. KG
 *
 * 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.
 */

#include <libchip/ns16550.h>

#include <bsp.h>
#include <bsp/lpc32xx.h>
#include <bsp/irq.h>
#include <bsp/hsu.h>
#include <bsp/console-termios.h>

static uint8_t lpc32xx_uart_get_register(uintptr_t addr, uint8_t i)
{
  volatile uint32_t *reg = (volatile uint32_t *) addr;

  return (uint8_t) reg [i];
}

static void lpc32xx_uart_set_register(uintptr_t addr, uint8_t i, uint8_t val)
{
  volatile uint32_t *reg = (volatile uint32_t *) addr;

  reg [i] = val;
}

#ifdef LPC32XX_UART_3_BAUD
  static bool lpc32xx_uart_probe_3(rtems_termios_device_context *context)
  {
    LPC32XX_UARTCLK_CTRL |= BSP_BIT32(0);
    LPC32XX_U3CLK = LPC32XX_CONFIG_U3CLK;
    LPC32XX_UART_CLKMODE = BSP_FLD32SET(LPC32XX_UART_CLKMODE, 0x2, 4, 5);

    return ns16550_probe(context);
  }
#endif

#ifdef LPC32XX_UART_4_BAUD
  static bool lpc32xx_uart_probe_4(rtems_termios_device_context *context)
  {
    volatile lpc32xx_gpio *gpio = &lpc32xx.gpio;

    /*
     * Set GPO_21/U4_TX/LCDVD[3] to U4_TX.  This works only if LCD module is
     * disabled.
     */
    gpio->p2_mux_set = BSP_BIT32(2);

    LPC32XX_UARTCLK_CTRL |= BSP_BIT32(1);
    LPC32XX_U4CLK = LPC32XX_CONFIG_U4CLK;
    LPC32XX_UART_CLKMODE = BSP_FLD32SET(LPC32XX_UART_CLKMODE, 0x2, 6, 7);

    return ns16550_probe(context);
  }
#endif

#ifdef LPC32XX_UART_6_BAUD
  static bool lpc32xx_uart_probe_6(rtems_termios_device_context *context)
  {
    /* Bypass the IrDA modulator/demodulator */
    LPC32XX_UART_CTRL |= BSP_BIT32(5);

    LPC32XX_UARTCLK_CTRL |= BSP_BIT32(3);
    LPC32XX_U6CLK = LPC32XX_CONFIG_U6CLK;
    LPC32XX_UART_CLKMODE = BSP_FLD32SET(LPC32XX_UART_CLKMODE, 0x2, 10, 11);

    return ns16550_probe(context);
  }
#endif

/* FIXME: Console selection */

#ifdef LPC32XX_UART_5_BAUD
static ns16550_context lpc32xx_uart_context_5 = {
  .base = RTEMS_TERMIOS_DEVICE_CONTEXT_INITIALIZER("UART 5"),
  .get_reg = lpc32xx_uart_get_register,
  .set_reg = lpc32xx_uart_set_register,
  .port = LPC32XX_BASE_UART_5,
  .irq = LPC32XX_IRQ_UART_5,
  .clock = 16 * LPC32XX_UART_5_BAUD,
  .initial_baud = LPC32XX_UART_5_BAUD
};
#endif

#ifdef LPC32XX_UART_3_BAUD
static ns16550_context lpc32xx_uart_context_3 = {
  .base = RTEMS_TERMIOS_DEVICE_CONTEXT_INITIALIZER("UART 3"),
  .get_reg = lpc32xx_uart_get_register,
  .set_reg = lpc32xx_uart_set_register,
  .port = LPC32XX_BASE_UART_3,
  .irq = LPC32XX_IRQ_UART_3,
  .clock = 16 * LPC32XX_UART_3_BAUD,
  .initial_baud = LPC32XX_UART_3_BAUD
};
#endif

#ifdef LPC32XX_UART_4_BAUD
static ns16550_context lpc32xx_uart_context_4 = {
  .base = RTEMS_TERMIOS_DEVICE_CONTEXT_INITIALIZER("UART 4"),
  .get_reg = lpc32xx_uart_get_register,
  .set_reg = lpc32xx_uart_set_register,
  .port = LPC32XX_BASE_UART_4,
  .irq = LPC32XX_IRQ_UART_4,
  .clock = 16 * LPC32XX_UART_4_BAUD,
  .initial_baud = LPC32XX_UART_4_BAUD
};
#endif

#ifdef LPC32XX_UART_6_BAUD
static ns16550_context lpc32xx_uart_context_6 = {
  .base = RTEMS_TERMIOS_DEVICE_CONTEXT_INITIALIZER("UART 6"),
  .get_reg = lpc32xx_uart_get_register,
  .set_reg = lpc32xx_uart_set_register,
  .port = LPC32XX_BASE_UART_6,
  .irq = LPC32XX_IRQ_UART_6,
  .clock = 16 * LPC32XX_UART_6_BAUD,
  .initial_baud = LPC32XX_UART_6_BAUD
};
#endif

#ifdef LPC32XX_UART_1_BAUD
static lpc32xx_hsu_context lpc32xx_uart_context_1 = {
  .base = RTEMS_TERMIOS_DEVICE_CONTEXT_INITIALIZER("UART 1"),
  .hsu = (volatile lpc32xx_hsu *) LPC32XX_BASE_UART_1,
  .irq = LPC32XX_IRQ_UART_1,
  .initial_baud = LPC32XX_UART_1_BAUD
};
#endif

#ifdef LPC32XX_UART_2_BAUD
static lpc32xx_hsu_context lpc32xx_uart_context_2 = {
  .base = RTEMS_TERMIOS_DEVICE_CONTEXT_INITIALIZER("UART 2"),
  .hsu = (volatile lpc32xx_hsu *) LPC32XX_BASE_UART_2,
  .irq = LPC32XX_IRQ_UART_2,
  .initial_baud = LPC32XX_UART_2_BAUD
};
#endif

#ifdef LPC32XX_UART_7_BAUD
static lpc32xx_hsu_context lpc32xx_uart_context_7 = {
  .base = RTEMS_TERMIOS_DEVICE_CONTEXT_INITIALIZER("UART 7"),
  .hsu = (volatile lpc32xx_hsu *) LPC32XX_BASE_UART_7,
  .irq = LPC32XX_IRQ_UART_7,
  .initial_baud = LPC32XX_UART_7_BAUD
};
#endif

const console_device console_device_table[] = {
  #ifdef LPC32XX_UART_5_BAUD
    {
      .device_file = "/dev/ttyS5",
      .probe = console_device_probe_default,
      .handler = &ns16550_handler_interrupt,
      .context = &lpc32xx_uart_context_5.base
    },
  #endif
  #ifdef LPC32XX_UART_3_BAUD
    {
      .device_file = "/dev/ttyS3",
      .probe = lpc32xx_uart_probe_3,
      .handler = &ns16550_handler_interrupt,
      .context = &lpc32xx_uart_context_3.base
    },
  #endif
  #ifdef LPC32XX_UART_4_BAUD
    {
      .device_file = "/dev/ttyS4",
      .probe = lpc32xx_uart_probe_4,
      .handler = &ns16550_handler_interrupt,
      .context = &lpc32xx_uart_context_4.base
    },
  #endif
  #ifdef LPC32XX_UART_6_BAUD
    {
      .device_file = "/dev/ttyS6",
      .probe = lpc32xx_uart_probe_6,
      .handler = &ns16550_handler_interrupt,
      .context = &lpc32xx_uart_context_6.base
    },
  #endif
  #ifdef LPC32XX_UART_1_BAUD
    {
      .device_file = "/dev/ttyS1",
      .probe = lpc32xx_hsu_probe,
      .handler = &lpc32xx_hsu_fns,
      .context = &lpc32xx_uart_context_1.base
    },
  #endif
  #ifdef LPC32XX_UART_2_BAUD
    {
      .device_file = "/dev/ttyS2",
      .probe = lpc32xx_hsu_probe,
      .handler = &lpc32xx_hsu_fns,
      .context = &lpc32xx_uart_context_2.base
    },
  #endif
  #ifdef LPC32XX_UART_7_BAUD
    {
      .device_file = "/dev/ttyS7",
      .probe = lpc32xx_hsu_probe,
      .handler = &lpc32xx_hsu_fns,
      .context = &lpc32xx_uart_context_7.base
    },
  #endif
};

const size_t console_device_count = RTEMS_ARRAY_SIZE(console_device_table);