Browse Source
Add basic functionality needed to setup the UART and send/recieve data. Interrupts, DMA, and more advanced features are not implemented in this patch. Signed-off-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>pull/112/merge
Alexandru Gagniuc
12 years ago
committed by
Piotr Esden-Tempski
3 changed files with 469 additions and 1 deletions
@ -0,0 +1,413 @@ |
|||
/*
|
|||
* This file is part of the libopencm3 project. |
|||
* |
|||
* Copyright (C) 2012 Alexandru Gagniuc <mr.nuke.me@gmail.com> |
|||
* |
|||
* This library is free software: you can redistribute it and/or modify |
|||
* it under the terms of the GNU Lesser General Public License as published by |
|||
* the Free Software Foundation, either version 3 of the License, or |
|||
* (at your option) any later version. |
|||
* |
|||
* This library is distributed in the hope that it will be useful, |
|||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
* GNU Lesser General Public License for more details. |
|||
* |
|||
* You should have received a copy of the GNU Lesser General Public License |
|||
* along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|||
*/ |
|||
|
|||
/**
|
|||
* @defgroup uart_file UART |
|||
* |
|||
* @ingroup LM4Fxx |
|||
* |
|||
* @author @htmlonly © @endhtmlonly 2013 Alexandru Gagniuc <mr.nuke.me@gmail.com> |
|||
* |
|||
* \brief <b>libopencm3 LM4F Universal Asynchronous Receiver Transmitter</b> |
|||
* |
|||
* The LM4F UART API provides functionality for accessing the UART hardware of |
|||
* the LM4F. |
|||
* |
|||
* Please see the individual UART modules for more details. To use the UART, the |
|||
* uart.h header needs to be included: |
|||
* @code{.c} |
|||
* #include <libopencm3/lm4f/uart.h> |
|||
* @endcode |
|||
* |
|||
* @{ |
|||
*/ |
|||
|
|||
#include <libopencm3/lm4f/uart.h> |
|||
#include <libopencm3/lm4f/systemcontrol.h> |
|||
#include <libopencm3/lm4f/rcc.h> |
|||
|
|||
/** @defgroup uart_config UART configuration
|
|||
* @ingroup uart_file |
|||
* |
|||
* \brief <b>Enabling and configuring the UART</b> |
|||
* |
|||
* Enabling the UART is a two step process. The GPIO on which the UART resides |
|||
* must be enabled, and the UART pins must be configured as alternate function, |
|||
* digital pins. Pins must also be muxed to the appropriate alternate function. |
|||
* This is done with the GPIO API. |
|||
* |
|||
* The second step involves enabling and the UART itself. The UART should be |
|||
* disabled while it is being configured. |
|||
* -# The UART clock must be enabled with @ref periph_clock_enable(). |
|||
* -# The UART must be disabled with @ref uart_disable(). |
|||
* -# The UART clock source should be chosen before setting the baudrate. |
|||
* -# Baudrate, data bits, stop bit length, and parity can be configured. |
|||
* -# If needed, enable CTS or RTS lines via the @ref uart_set_flow_control(). |
|||
* -# The UART can now be enabled with @ref uart_enable(). |
|||
* |
|||
* For example, to enable UART1 at 115200 8n1 with hardware flow control: |
|||
* @code{.c} |
|||
* // Enable the UART clock
|
|||
* periph_clock_enable(RCC_UART1); |
|||
* // We need a brief delay before we can access UART config registers
|
|||
* __asm__("nop"); __asm__("nop"); __asm__("nop"); |
|||
* // Disable the UART while we mess with its settings
|
|||
* uart_disable(UART1); |
|||
* // Configure the UART clock source as precision internal oscillator
|
|||
* uart_clock_from_piosc(); |
|||
* // Set communication parameters
|
|||
* uart_set_baudrate(UART1, 115200); |
|||
* uart_set_databits(UART1, 8); |
|||
* uart_set_parity(UART1, UART_PARITY_NONE); |
|||
* uart_set_stopbits(UART1, 1); |
|||
* // Enable RTC and CTS lines
|
|||
* uart_set_flow_control(UART1, UART_FLOWCTL_HARD_RTS_CTS); |
|||
* // Now that we're done messing with the settings, enable the UART
|
|||
* uart_enable(UART1); |
|||
* @endcode |
|||
*/ |
|||
/**@{*/ |
|||
/**
|
|||
* \brief Enable the UART |
|||
* |
|||
* Enable the UART. The Rx and Tx lines are also enabled. |
|||
* |
|||
* @param[in] uart UART block register address base @ref uart_reg_base |
|||
*/ |
|||
void uart_enable(u32 uart) |
|||
{ |
|||
UART_CTL(uart) |= (UART_CTL_UARTEN | UART_CTL_RXE | UART_CTL_TXE); |
|||
} |
|||
|
|||
/**
|
|||
* \brief Disable the UART |
|||
* |
|||
* @param[in] uart UART block register address base @ref uart_reg_base |
|||
*/ |
|||
void uart_disable(u32 uart) |
|||
{ |
|||
UART_CTL(uart) &= ~UART_CTL_UARTEN; |
|||
} |
|||
|
|||
/**
|
|||
* \brief Set UART baudrate |
|||
* |
|||
* @param[in] uart UART block register address base @ref uart_reg_base |
|||
* @param[in] baud Baud rate in bits per second (bps).* |
|||
*/ |
|||
void uart_set_baudrate(u32 uart, u32 baud) |
|||
{ |
|||
u32 clock; |
|||
|
|||
/* Are we running off the internal clock or system clock? */ |
|||
if (UART_CC(uart) == UART_CC_CS_PIOSC) |
|||
clock = 16000000; |
|||
else |
|||
clock = rcc_get_system_clock_frequency(); |
|||
|
|||
/* Find the baudrate divisor */ |
|||
u32 div = (((clock * 8) / baud) + 1) / 2; |
|||
|
|||
/* Set the baudrate divisors */ |
|||
UART_IBRD(uart) = div / 64; |
|||
UART_FBRD(uart) = div % 64; |
|||
} |
|||
|
|||
/**
|
|||
* \brief Set UART databits |
|||
* |
|||
* @param[in] uart UART block register address base @ref uart_reg_base |
|||
* @param[in] databits number of data bits per transmission. |
|||
*/ |
|||
void uart_set_databits(u32 uart, u8 databits) |
|||
{ |
|||
u32 reg32, bits32; |
|||
|
|||
/* This has the same effect as using UART_LCRH_WLEN_5/6/7/8 directly */ |
|||
bits32 = (databits - 5) << 5; |
|||
|
|||
/* TODO: What about 9 data bits? */ |
|||
|
|||
reg32 = UART_LCRH(uart); |
|||
reg32 &= ~UART_LCRH_WLEN_MASK; |
|||
reg32 |= bits32; |
|||
UART_LCRH(uart) = reg32; |
|||
} |
|||
|
|||
/**
|
|||
* \brief Set UART stopbits |
|||
* |
|||
* @param[in] uart UART block register address base @ref uart_reg_base |
|||
* @param[in] bits the requested number of stopbits, either 1 or 2. |
|||
*/ |
|||
void uart_set_stopbits(u32 uart, u8 stopbits) |
|||
{ |
|||
if (stopbits == 2) |
|||
UART_LCRH(uart) |= UART_LCRH_STP2; |
|||
else |
|||
UART_LCRH(uart) &= ~UART_LCRH_STP2; |
|||
} |
|||
|
|||
/**
|
|||
* \brief Set UART parity |
|||
* |
|||
* @param[in] uart UART block register address base @ref uart_reg_base |
|||
* @param[in] bits the requested parity scheme. |
|||
*/ |
|||
void uart_set_parity(u32 uart, enum uart_parity parity) |
|||
{ |
|||
u32 reg32; |
|||
|
|||
reg32 = UART_LCRH(uart); |
|||
reg32 |= UART_LCRH_PEN; |
|||
reg32 &= ~(UART_LCRH_SPS | UART_LCRH_EPS); |
|||
|
|||
switch (parity) |
|||
{ |
|||
case UART_PARITY_NONE: |
|||
/* Once we disable parity the other bits are meaningless */ |
|||
UART_LCRH(uart) &= ~UART_LCRH_PEN; |
|||
return; |
|||
case UART_PARITY_ODD: |
|||
break; |
|||
case UART_PARITY_EVEN: |
|||
reg32 |= UART_LCRH_EPS; |
|||
break; |
|||
case UART_PARITY_STICK_0: |
|||
reg32 |= (UART_LCRH_SPS | UART_LCRH_EPS); |
|||
break; |
|||
case UART_PARITY_STICK_1: |
|||
reg32 |= UART_LCRH_SPS; |
|||
break; |
|||
} |
|||
|
|||
UART_LCRH(uart) = reg32; |
|||
} |
|||
|
|||
/**
|
|||
* \brief Set the flow control scheme |
|||
* |
|||
* Set the flow control scheme by enabling or disabling RTS and CTS lines. This |
|||
* will only have effect if the given UART supports the RTS and CTS lines. |
|||
* |
|||
* @param[in] uart UART block register address base @ref uart_reg_base |
|||
* @param[in] flow The flow control scheme to use (none, RTS, CTS or both) \n |
|||
* UART_FLOWCTL_RTS -- enable the RTS line \n |
|||
* UART_FLOWCTL_CTS -- enable the CTS line \n |
|||
* UART_FLOWCTL_RTS_CTS -- enable both RTS and CTS lines |
|||
*/ |
|||
void uart_set_flow_control(u32 uart, enum uart_flowctl flow) |
|||
{ |
|||
u32 reg32 = UART_CTL(uart); |
|||
|
|||
reg32 &= ~(UART_CTL_RTSEN | UART_CTL_CTSEN); |
|||
|
|||
if (flow == UART_FLOWCTL_RTS) |
|||
reg32 |= UART_CTL_RTSEN; |
|||
else if (flow == UART_FLOWCTL_CTS) |
|||
reg32 |= UART_CTL_CTSEN; |
|||
else if (flow == UART_FLOWCTL_RTS_CTS) |
|||
reg32 |= (UART_CTL_RTSEN | UART_CTL_CTSEN); |
|||
|
|||
UART_CTL(uart) = reg32; |
|||
} |
|||
|
|||
/**
|
|||
* \brief Clock the UART module from the internal oscillator |
|||
* |
|||
* @param[in] uart UART block register address base @ref uart_reg_base |
|||
*/ |
|||
void uart_clock_from_piosc(u32 uart) |
|||
{ |
|||
UART_CC(uart) = UART_CC_CS_PIOSC; |
|||
} |
|||
|
|||
/**
|
|||
* \brief Clock the UART module from the system clock |
|||
* |
|||
* @param[in] uart UART block register address base @ref uart_reg_base |
|||
*/ |
|||
void uart_clock_from_sysclk(u32 uart) |
|||
{ |
|||
UART_CC(uart) = UART_CC_CS_SYSCLK; |
|||
} |
|||
/**@}*/ |
|||
|
|||
/** @defgroup uart_send_recv UART transmission and reception
|
|||
* @ingroup uart_file |
|||
* |
|||
* \brief <b>Sending and receiving data through the UART</b> |
|||
* |
|||
* Primitives for sending and recieving data are provided, @ref uart_send() and |
|||
* @ref uart_recv(). These primitives do not check if data can be transmitted |
|||
* or wait for data. If waiting until data is available or can be transmitted is |
|||
* desired, blocking primitives are also available, @ref uart_send_blocking() |
|||
* and @ref uart_recv_blocking(). |
|||
* |
|||
* These primitives only handle one byte at at time, and thus may be unsuited |
|||
* for some applications. You may also consider using @ref uart_dma. |
|||
*/ |
|||
/**@{*/ |
|||
/**
|
|||
* \brief UART Send a Data Word. |
|||
* |
|||
* @param[in] uart UART block register address base @ref uart_reg_base |
|||
* @param[in] data data to send. |
|||
*/ |
|||
void uart_send(u32 uart, u16 data) |
|||
{ |
|||
data &= 0xFF; |
|||
UART_DR(uart) = data; |
|||
} |
|||
|
|||
/**
|
|||
* \brief UART Read a Received Data Word. |
|||
* |
|||
* @param[in] uart UART block register address base @ref uart_reg_base |
|||
* @return data from the Rx FIFO. |
|||
*/ |
|||
u16 uart_recv(u32 uart) |
|||
{ |
|||
return UART_DR(uart) & UART_DR_DATA_MASK; |
|||
} |
|||
|
|||
/**
|
|||
* \brief UART Wait for Transmit Data Buffer Not Full |
|||
* |
|||
* Blocks until the transmit data FIFO is not empty and can accept the next data |
|||
* word. |
|||
* \n |
|||
* Even if the FIFO is not empty, this function will return as long as there is |
|||
* room for at least one more word. |
|||
* |
|||
* @param[in] uart UART block register address base @ref uart_reg_base |
|||
*/ |
|||
void uart_wait_send_ready(u32 uart) |
|||
{ |
|||
/* Wait until the Tx FIFO is no longer full */ |
|||
while(UART_FR(uart) & UART_FR_TXFF); |
|||
} |
|||
|
|||
/**
|
|||
* \brief UART Wait for Received Data Available |
|||
* |
|||
* Blocks until the receive data FIFO holds a at least valid received data word. |
|||
* |
|||
* @param[in] uart UART block register address base @ref uart_reg_base |
|||
*/ |
|||
void uart_wait_recv_ready(u32 uart) |
|||
{ |
|||
/* Wait until the Tx FIFO is no longer empty */ |
|||
while(UART_FR(uart) & UART_FR_RXFE); |
|||
} |
|||
|
|||
/**
|
|||
* \brief UART Send Data Word with Blocking |
|||
* |
|||
* Blocks until the transmit data FIFO can accept the next data word for |
|||
* transmission. |
|||
* |
|||
* @param[in] uart UART block register address base @ref uart_reg_base |
|||
*/ |
|||
void uart_send_blocking(u32 uart, u16 data) |
|||
{ |
|||
uart_wait_send_ready(uart); |
|||
uart_send(uart, data); |
|||
} |
|||
|
|||
/**
|
|||
* \brief UART Read a Received Data Word with Blocking. |
|||
* |
|||
* Wait until a data word has been received then return the word. |
|||
* |
|||
* @param[in] uart UART block register address base @ref uart_reg_base |
|||
* @return data from the Rx FIFO. |
|||
*/ |
|||
u16 uart_recv_blocking(u32 uart) |
|||
{ |
|||
uart_wait_recv_ready(uart); |
|||
return uart_recv(uart); |
|||
} |
|||
/**@}*/ |
|||
|
|||
/** @defgroup uart_irq UART Interrupt control
|
|||
* @ingroup uart_file |
|||
* |
|||
* \brief <b>Configuring interrupts from the UART</b> |
|||
* |
|||
*/ |
|||
/**@{*/ |
|||
void uart_enable_rx_interrupt(u32 uart) |
|||
{ |
|||
/* TODO: this is just a stub. */ |
|||
} |
|||
|
|||
void uart_disable_rx_interrupt(u32 uart) |
|||
{ |
|||
/* TODO: this is just a stub. */ |
|||
} |
|||
|
|||
void uart_enable_tx_interrupt(u32 uart) |
|||
{ |
|||
/* TODO: this is just a stub. */ |
|||
} |
|||
|
|||
void uart_disable_tx_interrupt(u32 uart) |
|||
{ |
|||
/* TODO: this is just a stub. */ |
|||
} |
|||
|
|||
/**@}*/ |
|||
/** @defgroup uart_dma UART DMA control
|
|||
* @ingroup uart_file |
|||
* |
|||
* \brief <b>Enabling Direct Memory Access transfers for the UART</b> |
|||
* |
|||
*/ |
|||
/**@{*/ |
|||
|
|||
void uart_enable_rx_dma(u32 uart) |
|||
{ |
|||
/* TODO: this is just a stub. */ |
|||
} |
|||
|
|||
void uart_disable_rx_dma(u32 uart) |
|||
{ |
|||
/* TODO: this is just a stub. */ |
|||
} |
|||
|
|||
void uart_enable_tx_dma(u32 uart) |
|||
{ |
|||
/* TODO: this is just a stub. */ |
|||
} |
|||
|
|||
void uart_disable_tx_dma(u32 uart) |
|||
{ |
|||
/* TODO: this is just a stub. */ |
|||
} |
|||
/**@}*/ |
|||
|
|||
/*
|
|||
bool uart_get_flag(u32 uart, u32 flag); |
|||
bool uart_get_interrupt_source(u32 uart, u32 flag); |
|||
*/ |
|||
|
|||
/**
|
|||
* @} |
|||
*/ |
Loading…
Reference in new issue