source: mainline/kernel/genarch/src/drivers/amdm37x/uart.c@ b04ca9c

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since b04ca9c was 0fb70e1, checked in by Maurizio Lombardi <m.lombardi85@…>, 13 years ago

kernel drivers directory layout reorganization and UART improvements:

  • Put AM335x and AMDM37 specific code under the appropriate directories.

Beaglebone specific changes:

  • Initialize the UART0 when bbone_init() is called.
  • Property mode set to 100644
File size: 4.9 KB
RevLine 
[b0e58c7]1/*
2 * Copyright (c) 2012 Jan Vesely
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28/** @addtogroup genarch
29 * @{
30 */
31/**
32 * @file
33 * @brief Texas Instruments AMDM37x on-chip uart serial line driver.
34 */
35
[0fb70e1]36#include <genarch/drivers/amdm37x/uart.h>
[c91fe327]37#include <ddi/device.h>
[e6a356dd]38#include <str.h>
39#include <mm/km.h>
[b0e58c7]40
[e6a356dd]41static void amdm37x_uart_txb(amdm37x_uart_t *uart, uint8_t b)
42{
43 /* Wait for buffer */
44 while (uart->regs->ssr & AMDM37x_UART_SSR_TX_FIFO_FULL_FLAG);
45 /* Write to the outgoing fifo */
46 uart->regs->thr = b;
47}
48
49static void amdm37x_uart_putchar(outdev_t *dev, wchar_t ch)
50{
51 amdm37x_uart_t *uart = dev->data;
52 if (!ascii_check(ch)) {
53 amdm37x_uart_txb(uart, U_SPECIAL);
54 } else {
55 if (ch == '\n')
56 amdm37x_uart_txb(uart, '\r');
57 amdm37x_uart_txb(uart, ch);
58 }
59}
60
61static outdev_operations_t amdm37x_uart_ops = {
62 .redraw = NULL,
63 .write = amdm37x_uart_putchar,
64};
65
[c91fe327]66static irq_ownership_t amdm37x_uart_claim(irq_t *irq)
67{
68 return IRQ_ACCEPT;
69}
70
71static void amdm37x_uart_handler(irq_t *irq)
72{
73 amdm37x_uart_t *uart = irq->instance;
[95c9158]74 while ((uart->regs->rx_fifo_lvl)) {
[c91fe327]75 const uint8_t val = uart->regs->rhr;
[b954fb7]76 if (uart->indev && val) {
[c91fe327]77 indev_push_character(uart->indev, val);
[b954fb7]78 }
[1cdb412]79 }
[c91fe327]80}
81
[e6a356dd]82bool amdm37x_uart_init(
[b0e58c7]83 amdm37x_uart_t *uart, inr_t interrupt, uintptr_t addr, size_t size)
84{
[e6a356dd]85 ASSERT(uart);
86 uart->regs = (void *)km_map(addr, size, PAGE_NOT_CACHEABLE);
87
[c91fe327]88 ASSERT(uart->regs);
[e6a356dd]89
[c91fe327]90 /* See TI OMAP35X TRM ch 17.5.1.1 p. 2732 for startup routine */
91#if 0
[e6a356dd]92 /* Soft reset the port */
93 uart->regs->sysc = AMDM37x_UART_SYSC_SOFTRESET_FLAG;
[1cdb412]94 while (!(uart->regs->syss & AMDM37x_UART_SYSS_RESETDONE_FLAG)) ;
95#endif
[e6a356dd]96
97 /* Enable access to EFR register */
98 const uint8_t lcr = uart->regs->lcr; /* Save old value */
99 uart->regs->lcr = 0xbf; /* Sets config mode B */
100
101 /* Enable access to TCL_TLR register */
102 const bool enhanced = uart->regs->efr & AMDM37x_UART_EFR_ENH_FLAG;
103 uart->regs->efr |= AMDM37x_UART_EFR_ENH_FLAG; /* Turn on enh. */
104 uart->regs->lcr = 0x80; /* Config mode A */
105
106 /* Set default (val 0) triggers, disable DMA enable FIFOs */
107 const bool tcl_tlr = uart->regs->mcr & AMDM37x_UART_MCR_TCR_TLR_FLAG;
[1cdb412]108 /* Enable access to tcr and tlr registers */
109 uart->regs->mcr |= AMDM37x_UART_MCR_TCR_TLR_FLAG;
110
111 /* Enable FIFOs */
[e6a356dd]112 uart->regs->fcr = AMDM37x_UART_FCR_FIFO_EN_FLAG;
113
[1cdb412]114 /* Eneble fine granularity for RX FIFO and set trigger level to 1,
115 * TX FIFO, trigger level is irelevant*/
[e6a356dd]116 uart->regs->lcr = 0xbf; /* Sets config mode B */
117 uart->regs->scr = AMDM37x_UART_SCR_RX_TRIG_GRANU1_FLAG;
[1cdb412]118 uart->regs->tlr = 1 << AMDM37x_UART_TLR_RX_FIFO_TRIG_SHIFT;
[e6a356dd]119
120 /* Restore enhanced */
121 if (!enhanced)
122 uart->regs->efr &= ~AMDM37x_UART_EFR_ENH_FLAG;
123
124 uart->regs->lcr = 0x80; /* Config mode A */
[1cdb412]125 /* Restore tcl_lcr access flag*/
[e6a356dd]126 if (!tcl_tlr)
127 uart->regs->mcr &= ~AMDM37x_UART_MCR_TCR_TLR_FLAG;
128
[1cdb412]129 /* Restore lcr */
[e6a356dd]130 uart->regs->lcr = lcr;
131
132 /* Disable interrupts */
133 uart->regs->ier = 0;
[1cdb412]134
[e6a356dd]135 /* Setup outdev */
136 outdev_initialize("amdm37x_uart_dev", &uart->outdev, &amdm37x_uart_ops);
137 uart->outdev.data = uart;
[81c354f]138
[c91fe327]139 /* Initialize IRQ */
140 irq_initialize(&uart->irq);
141 uart->irq.devno = device_assign_devno();
142 uart->irq.inr = interrupt;
143 uart->irq.claim = amdm37x_uart_claim;
144 uart->irq.handler = amdm37x_uart_handler;
145 uart->irq.instance = uart;
146
[81c354f]147 return true;
[b0e58c7]148}
149
150void amdm37x_uart_input_wire(amdm37x_uart_t *uart, indev_t *indev)
151{
[c91fe327]152 ASSERT(uart);
153 /* Set indev */
154 uart->indev = indev;
[1cdb412]155 /* Register interrupt. */
156 irq_register(&uart->irq);
[c91fe327]157 /* Enable interrupt on receive */
158 uart->regs->ier |= AMDM37x_UART_IER_RHR_IRQ_FLAG;
[b0e58c7]159}
160
161/**
162 * @}
163 */
Note: See TracBrowser for help on using the repository browser.