source: mainline/kernel/genarch/src/drivers/omap/uart.c@ ed88c8e

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since ed88c8e was ed88c8e, checked in by Jiri Svoboda <jiri@…>, 7 years ago

fputc, putchar vs. fputwc, putwchar.

  • Property mode set to 100644
File size: 5.3 KB
RevLine 
[b38c079]1/*
2 * Copyright (c) 2012 Jan Vesely
3 * Copyright (c) 2013 Maurizio Lombardi
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 *
10 * - Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * - Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * - The name of the author may not be used to endorse or promote products
16 * derived from this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
29/** @addtogroup genarch
30 * @{
31 */
32/**
33 * @file
34 * @brief Texas Instruments OMAP on-chip uart serial line driver.
35 */
36
[63e27ef]37#include <assert.h>
[b38c079]38#include <genarch/drivers/omap/uart.h>
39#include <str.h>
40#include <mm/km.h>
41
42static void omap_uart_txb(omap_uart_t *uart, uint8_t b)
43{
44 /* Wait for buffer */
[1433ecda]45 while (uart->regs->ssr & OMAP_UART_SSR_TX_FIFO_FULL_FLAG)
46 ;
[b38c079]47 /* Write to the outgoing fifo */
48 uart->regs->thr = b;
49}
50
[ed88c8e]51static void omap_uart_putwchar(outdev_t *dev, wchar_t ch)
[b38c079]52{
53 omap_uart_t *uart = dev->data;
54 if (!ascii_check(ch)) {
55 omap_uart_txb(uart, U_SPECIAL);
56 } else {
57 if (ch == '\n')
58 omap_uart_txb(uart, '\r');
59 omap_uart_txb(uart, ch);
60 }
61}
62
63static outdev_operations_t omap_uart_ops = {
[ed88c8e]64 .write = omap_uart_putwchar,
[7ddc2c7]65 .redraw = NULL,
66 .scroll_up = NULL,
67 .scroll_down = NULL
[b38c079]68};
69
70static irq_ownership_t omap_uart_claim(irq_t *irq)
71{
72 return IRQ_ACCEPT;
73}
74
75static void omap_uart_handler(irq_t *irq)
76{
77 omap_uart_t *uart = irq->instance;
78 while ((uart->regs->rx_fifo_lvl)) {
79 const uint8_t val = uart->regs->rhr;
80 if (uart->indev && val) {
81 indev_push_character(uart->indev, val);
82 }
83 }
84}
85
86bool omap_uart_init(
87 omap_uart_t *uart, inr_t interrupt, uintptr_t addr, size_t size)
88{
[63e27ef]89 assert(uart);
[b38c079]90 uart->regs = (void *)km_map(addr, size, PAGE_NOT_CACHEABLE);
91
[63e27ef]92 assert(uart->regs);
[b38c079]93
94 /* Soft reset the port */
95 uart->regs->sysc = OMAP_UART_SYSC_SOFTRESET_FLAG;
[1433ecda]96 while (!(uart->regs->syss & OMAP_UART_SYSS_RESETDONE_FLAG))
97 ;
[b38c079]98
99 /* Disable the UART module */
100 uart->regs->mdr1 |= OMAP_UART_MDR_MS_DISABLE;
101
102 /* Enable access to EFR register */
103 uart->regs->lcr = 0xbf; /* Sets config mode B */
104
105 /* Enable access to TCL_TLR register */
106 const bool enhanced = uart->regs->efr & OMAP_UART_EFR_ENH_FLAG;
107 uart->regs->efr |= OMAP_UART_EFR_ENH_FLAG; /* Turn on enh. */
108 uart->regs->lcr = 0x80; /* Config mode A */
109
110 /* Set default (val 0) triggers, disable DMA enable FIFOs */
111 const bool tcl_tlr = uart->regs->mcr & OMAP_UART_MCR_TCR_TLR_FLAG;
112 /* Enable access to tcr and tlr registers */
113 uart->regs->mcr |= OMAP_UART_MCR_TCR_TLR_FLAG;
114
115 /* Enable FIFOs */
116 uart->regs->fcr = OMAP_UART_FCR_FIFO_EN_FLAG;
117
[7c3fb9b]118 /*
119 * Enable fine granularity for RX FIFO and set trigger level to 1,
120 * TX FIFO, trigger level is irrelevant
121 */
[b38c079]122 uart->regs->lcr = 0xBF; /* Sets config mode B */
123 uart->regs->scr = OMAP_UART_SCR_RX_TRIG_GRANU1_FLAG;
124 uart->regs->tlr = 1 << OMAP_UART_TLR_RX_FIFO_TRIG_SHIFT;
125
126 /* Sets config mode A */
127 uart->regs->lcr = 0x80;
128 /* Restore tcl_tlr access flag */
129 if (!tcl_tlr)
130 uart->regs->mcr &= ~OMAP_UART_MCR_TCR_TLR_FLAG;
131 /* Sets config mode B */
132 uart->regs->lcr = 0xBF;
133
134 /* Set the divisor value to get a baud rate of 115200 bps */
135 uart->regs->dll = 0x1A;
136 uart->regs->dlh = 0x00;
137
138 /* Restore enhanced */
139 if (!enhanced)
140 uart->regs->efr &= ~OMAP_UART_EFR_ENH_FLAG;
141
142 /* Set the DIV_EN bit to 0 */
143 uart->regs->lcr &= ~OMAP_UART_LCR_DIV_EN_FLAG;
144 /* Set the BREAK_EN bit to 0 */
145 uart->regs->lcr &= ~OMAP_UART_LCR_BREAK_EN_FLAG;
146 /* No parity */
147 uart->regs->lcr &= ~OMAP_UART_LCR_PARITY_EN_FLAG;
148 /* Stop = 1 bit */
149 uart->regs->lcr &= ~OMAP_UART_LCR_NB_STOP_FLAG;
150 /* Char length = 8 bits */
151 uart->regs->lcr |= OMAP_UART_LCR_CHAR_LENGTH_8BITS;
152
153 /* Enable the UART module */
154 uart->regs->mdr1 &= (OMAP_UART_MDR_MS_UART16 &
155 ~OMAP_UART_MDR_MS_MASK);
156
157 /* Disable interrupts */
158 uart->regs->ier = 0;
159
160 /* Setup outdev */
161 outdev_initialize("omap_uart_dev", &uart->outdev, &omap_uart_ops);
162 uart->outdev.data = uart;
163
164 /* Initialize IRQ */
165 irq_initialize(&uart->irq);
166 uart->irq.inr = interrupt;
167 uart->irq.claim = omap_uart_claim;
168 uart->irq.handler = omap_uart_handler;
169 uart->irq.instance = uart;
170
171 return true;
172}
173
174void omap_uart_input_wire(omap_uart_t *uart, indev_t *indev)
175{
[63e27ef]176 assert(uart);
[b38c079]177 /* Set indev */
178 uart->indev = indev;
179 /* Register interrupt. */
180 irq_register(&uart->irq);
181 /* Enable interrupt on receive */
182 uart->regs->ier |= OMAP_UART_IER_RHR_IRQ_FLAG;
183}
184
185/**
186 * @}
187 */
188
Note: See TracBrowser for help on using the repository browser.