source: rtems/c/src/lib/libbsp/or1k/or1ksim/console/uart.c @ ea05c438

4.115
Last change on this file since ea05c438 was ea05c438, checked in by Joel Sherrill <joel.sherrill@…>, on 10/20/14 at 20:25:37

or1k/or1ksim: Fix warnings

  • Property mode set to 100644
File size: 4.2 KB
Line 
1/**
2 * @file
3 *
4 * @ingroup or1ksim_uart
5 *
6 * @brief UART support.
7 */
8
9/*
10 * COPYRIGHT (c) 2014 Hesham ALMatary <heshamelmatary@gmail.com>
11 *
12 * The license and distribution terms for this file may be
13 * found in the file LICENSE in this distribution or at
14 * http://www.rtems.org/license/LICENSE
15 */
16
17#include <libchip/sersupp.h>
18#include <bsp/or1ksim.h>
19#include <bsp.h>
20#include <bsp/irq.h>
21#include <bsp/uart.h>
22#include <rtems/score/isr.h>
23
24static void uart_initialize(int minor);
25static int  uart_first_open(int major, int minor, void *arg);
26static int  uart_last_close(int major, int minor, void *arg);
27static int  uart_read_polled(int minor);
28static ssize_t uart_write(int minor, const char *buf, size_t len);
29static void uart_write_polled(int minor, char c);
30static int  uart_set_attributes(int minor, const struct termios *t);
31
32#if 0
33/*
34 *  These will be useful when the driver supports interrupt driven IO.
35 */
36static rtems_vector_number uart_get_irq_number(const console_tbl *ct)
37{
38  return ct->ulIntVector;
39}
40
41static uint32_t uart_get_baud(const console_tbl *ct)
42{
43  return ct->ulClock;
44}
45#endif
46
47static void uart_set_baud(int baud)
48{
49  int divisor = (OR1KSIM_BSP_CLOCK_FREQ) / (16 * baud);
50  OR1KSIM_REG(OR1KSIM_BSP_UART_REG_LINE_CTRL) |=
51    OR1KSIM_BSP_UART_REG_LINE_CTRL_DLAB;
52
53  OR1KSIM_REG(OR1KSIM_BSP_UART_REG_DEV_LATCH_LOW) = divisor & 0xff;
54
55  OR1KSIM_REG(OR1KSIM_BSP_UART_REG_DEV_LATCH_HIGH) =
56    (divisor >> 8) & 0xff;
57
58  OR1KSIM_REG(OR1KSIM_BSP_UART_REG_LINE_CTRL) &=
59    ~(OR1KSIM_BSP_UART_REG_LINE_CTRL_DLAB);
60}
61
62static void uart_initialize(int minor)
63{
64  /* Disable all interrupts */
65  OR1KSIM_REG(OR1KSIM_BSP_UART_REG_INT_ENABLE) = 0x00;
66
67  /* Reset receiver and transmitter */
68  OR1KSIM_REG(OR1KSIM_BSP_UART_REG_FIFO_CTRL) =
69    OR1KSIM_BSP_UART_REG_FIFO_CTRL_ENABLE_FIFO |
70    OR1KSIM_BSP_UART_REG_FIFO_CTRL_CLEAR_RCVR  |
71    OR1KSIM_BSP_UART_REG_FIFO_CTRL_CLEAR_XMIT  |
72    OR1KSIM_BSP_UART_REG_FIFO_CTRL_TRIGGER_14;
73
74  /* Set data pattern configuration */
75  OR1KSIM_REG(OR1KSIM_BSP_UART_REG_LINE_CTRL) =
76    OR1KSIM_BSP_UART_REG_LINE_CTRL_WLEN8 &
77      (OR1KSIM_BSP_UART_REG_LINE_CTRL_STOP |
78       OR1KSIM_BSP_UART_REG_LINE_CTRL_PARITY);
79
80  /* Set baud rate */
81  uart_set_baud(OR1KSIM_UART_DEFAULT_BAUD);
82}
83
84static int uart_first_open(int major, int minor, void *arg)
85{
86  rtems_libio_open_close_args_t *oc = (rtems_libio_open_close_args_t *) arg;
87  struct rtems_termios_tty *tty = (struct rtems_termios_tty *) oc->iop->data1;
88  const console_tbl *ct = Console_Port_Tbl [minor];
89  console_data *cd = &Console_Port_Data [minor];
90
91  cd->termios_data = tty;
92  rtems_termios_set_initial_baud(tty, ct->ulClock);
93
94  return 0;
95}
96
97static int uart_last_close(int major, int minor, void *arg)
98{
99  return 0;
100}
101
102static int uart_read_polled(int minor)
103{
104  unsigned char lsr;
105
106 /* Get a character when avaiable */
107  do {
108       lsr = OR1KSIM_REG(OR1KSIM_BSP_UART_REG_LINE_STATUS);
109  } while ((lsr & OR1KSIM_BSP_UART_REG_LINE_STATUS_DR)
110           != OR1KSIM_BSP_UART_REG_LINE_STATUS_DR);
111
112  return OR1KSIM_REG(OR1KSIM_BSP_UART_REG_RX);
113}
114
115static void uart_write_polled(int minor, char c)
116{
117  unsigned char lsr;
118  const uint32_t transmit_finished =
119    (OR1KSIM_BSP_UART_REG_LINE_STATUS_TEMT |
120     OR1KSIM_BSP_UART_REG_LINE_STATUS_THRE);
121
122  /* Wait until there is no pending data in the transmitter FIFO (empty) */
123  do {
124      lsr = OR1KSIM_REG(OR1KSIM_BSP_UART_REG_LINE_STATUS);
125  } while (!(lsr & OR1KSIM_BSP_UART_REG_LINE_STATUS_THRE));
126
127  OR1KSIM_REG(OR1KSIM_BSP_UART_REG_TX) = c;
128
129  /* Wait until trasmit data is finished */
130  do {
131      lsr = OR1KSIM_REG(OR1KSIM_BSP_UART_REG_LINE_STATUS);
132  } while ( (lsr & transmit_finished) != transmit_finished );
133}
134
135static ssize_t uart_write(
136  int minor,
137  const char *s,
138  size_t n
139)
140{
141  ssize_t i = 0;
142
143  for (i = 0; i < n; ++i){
144    uart_write_polled(minor, s [i]);
145  }
146
147  return n;
148}
149
150static int uart_set_attributes(int minor, const struct termios *term)
151{
152  return -1;
153}
154
155const console_fns or1ksim_uart_fns = {
156  .deviceProbe = libchip_serial_default_probe,
157  .deviceFirstOpen = uart_first_open,
158  .deviceLastClose = uart_last_close,
159  .deviceRead = uart_read_polled,
160  .deviceWrite = uart_write,
161  .deviceInitialize = uart_initialize,
162  .deviceWritePolled = uart_write_polled,
163  .deviceSetAttributes = uart_set_attributes,
164  .deviceOutputUsesInterrupts = false
165};
Note: See TracBrowser for help on using the repository browser.