2009-09-26 02:09:17 +02:00
|
|
|
/**************************************************************************
|
|
|
|
* arch/arm/src/stm32/stm32_lowputc.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009 Gregory Nutt. All rights reserved.
|
|
|
|
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
* 3. Neither the name NuttX nor the names of its contributors may be
|
|
|
|
* used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* Included Files
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
2009-12-16 21:05:51 +01:00
|
|
|
#include <stdint.h>
|
2009-12-29 01:48:56 +01:00
|
|
|
|
2009-09-29 01:33:51 +02:00
|
|
|
#include <arch/board/board.h>
|
|
|
|
|
2009-09-26 02:09:17 +02:00
|
|
|
#include "up_internal.h"
|
|
|
|
#include "up_arch.h"
|
|
|
|
|
|
|
|
#include "chip.h"
|
2009-09-26 20:59:09 +02:00
|
|
|
#include "stm32_rcc.h"
|
|
|
|
#include "stm32_gpio.h"
|
|
|
|
#include "stm32_uart.h"
|
2009-09-26 02:09:17 +02:00
|
|
|
#include "stm32_internal.h"
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* Private Definitions
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
/* Configuration **********************************************************/
|
|
|
|
|
|
|
|
/* Is there a serial console? */
|
|
|
|
|
2009-09-29 04:08:26 +02:00
|
|
|
#if defined(CONFIG_USART1_SERIAL_CONSOLE) && defined(CONFIG_STM32_USART1)
|
2009-09-26 02:09:17 +02:00
|
|
|
# undef CONFIG_USART2_SERIAL_CONSOLE
|
|
|
|
# undef CONFIG_USART3_SERIAL_CONSOLE
|
|
|
|
# define HAVE_CONSOLE 1
|
2009-09-29 04:08:26 +02:00
|
|
|
#elif defined(CONFIG_USART2_SERIAL_CONSOLE) && defined(CONFIG_STM32_USART2)
|
2009-09-26 02:09:17 +02:00
|
|
|
# undef CONFIG_USART1_SERIAL_CONSOLE
|
|
|
|
# undef CONFIG_USART3_SERIAL_CONSOLE
|
|
|
|
# define HAVE_CONSOLE 1
|
2009-09-29 04:08:26 +02:00
|
|
|
#elif defined(CONFIG_USART3_SERIAL_CONSOLE) && defined(CONFIG_STM32_USART3)
|
2009-09-26 02:09:17 +02:00
|
|
|
# undef CONFIG_USART1_SERIAL_CONSOLE
|
|
|
|
# undef CONFIG_USART2_SERIAL_CONSOLE
|
|
|
|
# define HAVE_CONSOLE 1
|
|
|
|
#else
|
|
|
|
# undef CONFIG_USART1_SERIAL_CONSOLE
|
|
|
|
# undef CONFIG_USART2_SERIAL_CONSOLE
|
|
|
|
# undef CONFIG_USART3_SERIAL_CONSOLE
|
|
|
|
# undef HAVE_CONSOLE
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Select USART parameters for the selected console */
|
|
|
|
|
|
|
|
#if defined(CONFIG_USART1_SERIAL_CONSOLE)
|
|
|
|
# define STM32_CONSOLE_BASE STM32_USART1_BASE
|
2009-09-26 20:59:09 +02:00
|
|
|
# define STM32_APBCLOCK STM32_PCLK2_FREQUENCY
|
2009-09-26 02:09:17 +02:00
|
|
|
# define STM32_CONSOLE_BAUD CONFIG_USART1_BAUD
|
|
|
|
# define STM32_CONSOLE_BITS CONFIG_USART1_BITS
|
|
|
|
# define STM32_CONSOLE_PARITY CONFIG_USART1_PARITY
|
|
|
|
# define STM32_CONSOLE_2STOP CONFIG_USART1_2STOP
|
|
|
|
#elif defined(CONFIG_USART2_SERIAL_CONSOLE)
|
|
|
|
# define STM32_CONSOLE_BASE STM32_USART2_BASE
|
2009-09-26 20:59:09 +02:00
|
|
|
# define STM32_APBCLOCK STM32_PCLK1_FREQUENCY
|
2009-09-26 02:09:17 +02:00
|
|
|
# define STM32_CONSOLE_BAUD CONFIG_USART2_BAUD
|
|
|
|
# define STM32_CONSOLE_BITS CONFIG_USART2_BITS
|
|
|
|
# define STM32_CONSOLE_PARITY CONFIG_USART2_PARITY
|
|
|
|
# define STM32_CONSOLE_2STOP CONFIG_USART2_2STOP
|
|
|
|
#elif defined(CONFIG_USART3_SERIAL_CONSOLE)
|
2009-10-29 03:18:09 +01:00
|
|
|
# define STM32_CONSOLE_BASE STM32_USART3_BASE
|
2009-09-26 20:59:09 +02:00
|
|
|
# define STM32_APBCLOCK STM32_PCLK1_FREQUENCY
|
2009-10-29 03:18:09 +01:00
|
|
|
# define STM32_CONSOLE_BAUD CONFIG_USART3_BAUD
|
|
|
|
# define STM32_CONSOLE_BITS CONFIG_USART3_BITS
|
|
|
|
# define STM32_CONSOLE_PARITY CONFIG_USART3_PARITY
|
|
|
|
# define STM32_CONSOLE_2STOP CONFIG_USART3_2STOP
|
2009-09-26 02:09:17 +02:00
|
|
|
#else
|
|
|
|
# error "No CONFIG_USARTn_SERIAL_CONSOLE Setting"
|
|
|
|
#endif
|
|
|
|
|
2009-09-26 20:59:09 +02:00
|
|
|
/* CR1 settings */
|
|
|
|
|
2009-10-29 03:18:09 +01:00
|
|
|
#if STM32_CONSOLE_BITS == 9
|
2009-09-26 20:59:09 +02:00
|
|
|
# define USART_CR1_M_VALUE USART_CR1_M
|
|
|
|
#else
|
|
|
|
# define USART_CR1_M_VALUE 0
|
|
|
|
#endif
|
|
|
|
|
2009-10-29 03:18:09 +01:00
|
|
|
#if STM32_CONSOLE_PARITY == 1
|
2009-09-26 20:59:09 +02:00
|
|
|
# define USART_CR1_PARITY_VALUE (USART_CR1_PCE|USART_CR1_PS)
|
2009-10-29 03:18:09 +01:00
|
|
|
#elif STM32_CONSOLE_PARITY == 2
|
2009-09-26 20:59:09 +02:00
|
|
|
# define USART_CR1_PARITY_VALUE USART_CR1_PCE
|
|
|
|
#else
|
|
|
|
# define USART_CR1_PARITY_VALUE 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define USART_CR1_CLRBITS (USART_CR1_M|USART_CR1_PCE|USART_CR1_PS|USART_CR1_TE|USART_CR1_RE|USART_CR1_ALLINTS)
|
|
|
|
#define USART_CR1_SETBITS (USART_CR1_M_VALUE|USART_CR1_PARITY_VALUE)
|
|
|
|
|
|
|
|
/* CR2 settings */
|
|
|
|
|
2009-10-29 03:18:09 +01:00
|
|
|
#if STM32_CONSOLE_2STOP != 0
|
2009-09-26 20:59:09 +02:00
|
|
|
# define USART_CR2_STOP2_VALUE USART_CR2_STOP2
|
|
|
|
#else
|
|
|
|
# define USART_CR2_STOP2_VALUE 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define USART_CR2_CLRBITS (USART_CR2_STOP_MASK|USART_CR2_CLKEN|USART_CR2_CPOL|USART_CR2_CPHA|USART_CR2_LBCL|USART_CR2_LBDIE)
|
|
|
|
#define USART_CR2_SETBITS USART_CR2_STOP2_VALUE
|
|
|
|
|
|
|
|
/* CR3 settings */
|
|
|
|
|
|
|
|
#define USART_CR3_CLRBITS (USART_CR3_CTSIE|USART_CR3_CTSE|USART_CR3_RTSE|USART_CR3_EIE)
|
|
|
|
#define USART_CR3_SETBITS 0
|
|
|
|
|
|
|
|
/* Calculate USART BAUD rate divider
|
|
|
|
*
|
|
|
|
* The baud rate for the receiver and transmitter (Rx and Tx) are both set to
|
|
|
|
* the same value as programmed in the Mantissa and Fraction values of USARTDIV.
|
|
|
|
*
|
|
|
|
* baud = fCK / (16 * usartdiv)
|
|
|
|
* usartdiv = fCK / (16 * baud)
|
|
|
|
*
|
|
|
|
* Where fCK is the input clock to the peripheral (PCLK1 for USART2, 3, 4, 5
|
2009-10-04 18:58:10 +02:00
|
|
|
* or PCLK2 for USART1). Example, fCK=72MHz baud=115200, usartdiv=39.0625=39 1/16th;
|
2009-09-26 20:59:09 +02:00
|
|
|
*
|
2009-10-04 18:58:10 +02:00
|
|
|
* First calculate:
|
2009-09-26 20:59:09 +02:00
|
|
|
*
|
|
|
|
* usartdiv32 = 32 * usartdiv = fCK / (baud/2)
|
2009-10-04 18:58:10 +02:00
|
|
|
*
|
|
|
|
* (NOTE: all standard baud values are even so dividing by two does not
|
|
|
|
* lose precision). Eg. (same fCK and buad), usartdiv32 = 1250
|
2009-09-26 20:59:09 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#define STM32_USARTDIV32 (STM32_APBCLOCK / (STM32_CONSOLE_BAUD >> 1))
|
2009-10-04 18:58:10 +02:00
|
|
|
|
|
|
|
/* The mantissa is then usartdiv32 * 32:
|
|
|
|
*
|
|
|
|
* mantissa = 32 * usartdiv32
|
|
|
|
*
|
|
|
|
* Eg. usartdiv32=1250, mantissa = 39
|
|
|
|
*/
|
|
|
|
|
2009-09-26 20:59:09 +02:00
|
|
|
#define STM32_MANTISSA (STM32_USARTDIV32 >> 5)
|
2009-10-04 18:58:10 +02:00
|
|
|
|
|
|
|
/* And the fraction:
|
|
|
|
*
|
|
|
|
* fraction = (usartdiv32 - mantissa*32 + 1) / 2
|
|
|
|
*
|
|
|
|
* Eg., (1,250 - 39*32 + 1)/2 = 1 (or 0.0625)
|
|
|
|
*/
|
|
|
|
|
2009-09-26 20:59:09 +02:00
|
|
|
#define STM32_FRACTION ((STM32_USARTDIV32 - (STM32_MANTISSA << 5) + 1) >> 1)
|
2009-10-04 18:58:10 +02:00
|
|
|
|
|
|
|
/* And, finally, the BRR value is: */
|
|
|
|
|
2009-09-26 20:59:09 +02:00
|
|
|
#define STM32_BRR_VALUE ((STM32_MANTISSA << USART_BRR_MANT_SHIFT) | (STM32_FRACTION << USART_BRR_FRAC_SHIFT))
|
2009-09-26 02:09:17 +02:00
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* Private Types
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* Private Function Prototypes
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* Global Variables
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* Private Variables
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* Private Functions
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* Name: up_lowputc
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Output one byte on the serial console
|
|
|
|
*
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
void up_lowputc(char ch)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_CONSOLE
|
2009-10-17 22:42:37 +02:00
|
|
|
/* Wait until the TX data register is empty */
|
2009-09-26 02:09:17 +02:00
|
|
|
|
2009-10-11 21:52:20 +02:00
|
|
|
while ((getreg32(STM32_CONSOLE_BASE + STM32_USART_SR_OFFSET) & USART_SR_TXE) == 0);
|
2009-09-26 02:09:17 +02:00
|
|
|
|
|
|
|
/* Then send the character */
|
2009-09-26 20:59:09 +02:00
|
|
|
|
2009-12-16 21:05:51 +01:00
|
|
|
putreg32((uint32_t)ch, STM32_CONSOLE_BASE + STM32_USART_DR_OFFSET);
|
2009-09-26 02:09:17 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/**************************************************************************
|
2009-09-29 01:33:51 +02:00
|
|
|
* Name: stm32_lowsetup
|
2009-09-26 02:09:17 +02:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* This performs basic initialization of the USART used for the serial
|
|
|
|
* console. Its purpose is to get the console output availabe as soon
|
|
|
|
* as possible.
|
|
|
|
*
|
|
|
|
**************************************************************************/
|
|
|
|
|
2009-09-29 01:33:51 +02:00
|
|
|
void stm32_lowsetup(void)
|
2009-09-26 02:09:17 +02:00
|
|
|
{
|
2009-09-29 04:08:26 +02:00
|
|
|
#if defined(CONFIG_STM32_USART1) || defined(CONFIG_STM32_USART2) || defined(CONFIG_STM32_USART3)
|
2009-12-16 21:05:51 +01:00
|
|
|
uint32_t mapr;
|
2009-09-26 20:59:09 +02:00
|
|
|
#if defined(HAVE_CONSOLE) && !defined(CONFIG_SUPPRESS_USART_CONFIG)
|
2009-12-16 21:05:51 +01:00
|
|
|
uint32_t cr;
|
2009-09-26 20:59:09 +02:00
|
|
|
#endif
|
|
|
|
|
2009-09-26 02:09:17 +02:00
|
|
|
/* Enable the selected USARTs and configure GPIO pins need byed the
|
|
|
|
* the selected USARTs. NOTE: The serial driver later depends on
|
|
|
|
* this pin configuration -- whether or not a serial console is selected.
|
2009-10-02 04:23:11 +02:00
|
|
|
*
|
|
|
|
* NOTE: Clocking for USART1, USART2, and/or USART3 was already provided in stm32_rcc.c
|
2009-09-26 02:09:17 +02:00
|
|
|
*/
|
|
|
|
|
2009-09-26 20:59:09 +02:00
|
|
|
mapr = getreg32(STM32_AFIO_MAPR);
|
2009-09-26 02:09:17 +02:00
|
|
|
|
2009-09-29 04:08:26 +02:00
|
|
|
#ifdef CONFIG_STM32_USART1
|
2009-09-26 20:59:09 +02:00
|
|
|
/* Assume default pin mapping:
|
|
|
|
*
|
|
|
|
* Alternate USART1_REMAP USART1_REMAP
|
|
|
|
* Function = 0 = 1
|
|
|
|
* ---------- ------------ ------------
|
|
|
|
* USART1_TX PA9 PB6
|
|
|
|
* USART1_RX PA10 PB7
|
|
|
|
*/
|
|
|
|
|
2009-10-01 17:36:25 +02:00
|
|
|
#ifdef CONFIG_STM32_USART1_REMAP
|
|
|
|
mapr |= AFIO_MAPR_USART1_REMAP;
|
|
|
|
#else
|
|
|
|
mapr &= ~AFIO_MAPR_USART1_REMAP;
|
2009-10-03 18:28:53 +02:00
|
|
|
#endif
|
2009-10-01 17:36:25 +02:00
|
|
|
putreg32(mapr, STM32_AFIO_MAPR);
|
|
|
|
|
2009-10-01 17:05:35 +02:00
|
|
|
stm32_configgpio(GPIO_USART1_TX);
|
|
|
|
stm32_configgpio(GPIO_USART1_RX);
|
2009-09-29 04:08:26 +02:00
|
|
|
#endif /* CONFIG_STM32_USART1 */
|
2009-09-26 20:59:09 +02:00
|
|
|
|
2009-09-29 04:08:26 +02:00
|
|
|
#ifdef CONFIG_STM32_USART2
|
2009-09-26 20:59:09 +02:00
|
|
|
/* Assume default pin mapping:
|
|
|
|
*
|
|
|
|
* Alternate USART2_REMAP USART2_REMAP
|
|
|
|
* Function = 0 = 1
|
|
|
|
* ---------- ------------ ------------
|
2009-10-01 17:05:35 +02:00
|
|
|
* USART2_CTS PA0 PD3
|
|
|
|
* USART2_RTS PA1 PD4
|
2009-09-26 20:59:09 +02:00
|
|
|
* USART2_TX PA2 PD5
|
|
|
|
* USART2_RX PA3 PD6
|
2009-10-01 17:05:35 +02:00
|
|
|
* USART3_CK PA4 PD7
|
2009-09-26 20:59:09 +02:00
|
|
|
*/
|
|
|
|
|
2009-10-01 17:36:25 +02:00
|
|
|
#ifdef CONFIG_STM32_USART2_REMAP
|
|
|
|
mapr |= ~AFIO_MAPR_USART2_REMAP;
|
|
|
|
#else
|
|
|
|
mapr &= ~AFIO_MAPR_USART2_REMAP;
|
2009-10-03 18:28:53 +02:00
|
|
|
#endif
|
2009-10-01 17:36:25 +02:00
|
|
|
putreg32(mapr, STM32_AFIO_MAPR);
|
|
|
|
|
2009-10-01 17:05:35 +02:00
|
|
|
stm32_configgpio(GPIO_USART2_TX);
|
|
|
|
stm32_configgpio(GPIO_USART2_RX);
|
2009-10-29 03:47:10 +01:00
|
|
|
stm32_configgpio(GPIO_USART2_CTS);
|
|
|
|
stm32_configgpio(GPIO_USART2_RTS);
|
2009-10-01 17:36:25 +02:00
|
|
|
#endif /* CONFIG_STM32_USART2 */
|
2009-09-26 20:59:09 +02:00
|
|
|
|
2009-10-01 17:36:25 +02:00
|
|
|
#ifdef CONFIG_STM32_USART3
|
2009-09-26 20:59:09 +02:00
|
|
|
/* Assume default pin mapping:
|
|
|
|
*
|
2009-10-01 17:05:35 +02:00
|
|
|
* Alternate USART3_REMAP[1:0] USART3_REMAP[1:0] USART3_REMAP[1:0]
|
|
|
|
* Function = “00” (no remap) = “01” (partial remap) = “11” (full remap)
|
|
|
|
* ---------_ ------------------ ---------------------- --------------------
|
|
|
|
* USART3_TX PB10 PC10 PD8
|
|
|
|
* USART3_RX PB11 PC11 PD9
|
|
|
|
* USART3_CK PB12 PC12 PD10
|
|
|
|
* USART3_CTS PB13 PB13 PD11
|
|
|
|
* USART3_RTS PB14 PB14 PD12
|
2009-09-26 20:59:09 +02:00
|
|
|
*/
|
|
|
|
|
2009-10-01 17:36:25 +02:00
|
|
|
mapr &= ~AFIO_MAPR_USART3_REMAP_MASK;
|
2009-10-03 18:28:53 +02:00
|
|
|
#if defined(CONFIG_STM32_USART3_PARTIAL_REMAP)
|
2009-10-01 17:36:25 +02:00
|
|
|
mapr |= AFIO_MAPR_USART3_PARTREMAP;
|
2009-10-03 18:28:53 +02:00
|
|
|
#elif defined(CONFIG_STM32_USART3_FULL_REMAP)
|
2009-10-01 17:36:25 +02:00
|
|
|
mapr |= AFIO_MAPR_USART3_FULLREMAP;
|
2009-10-03 18:28:53 +02:00
|
|
|
#endif
|
2009-10-01 17:36:25 +02:00
|
|
|
putreg32(mapr, STM32_AFIO_MAPR);
|
|
|
|
|
2009-10-01 17:05:35 +02:00
|
|
|
stm32_configgpio(GPIO_USART3_TX);
|
|
|
|
stm32_configgpio(GPIO_USART3_RX);
|
2009-10-29 03:47:10 +01:00
|
|
|
stm32_configgpio(GPIO_USART3_CTS);
|
|
|
|
stm32_configgpio(GPIO_USART3_RTS);
|
2009-10-01 17:36:25 +02:00
|
|
|
#endif /* CONFIG_STM32_USART3 */
|
2009-09-26 02:09:17 +02:00
|
|
|
|
|
|
|
/* Enable and configure the selected console device */
|
|
|
|
|
|
|
|
#if defined(HAVE_CONSOLE) && !defined(CONFIG_SUPPRESS_USART_CONFIG)
|
2009-09-26 20:59:09 +02:00
|
|
|
/* Configure CR2 */
|
|
|
|
|
2009-10-11 21:52:20 +02:00
|
|
|
cr = getreg32(STM32_CONSOLE_BASE + STM32_USART_CR2_OFFSET);
|
2009-09-26 20:59:09 +02:00
|
|
|
cr &= ~USART_CR2_CLRBITS;
|
|
|
|
cr |= USART_CR2_SETBITS;
|
2009-10-11 21:52:20 +02:00
|
|
|
putreg32(cr, STM32_CONSOLE_BASE + STM32_USART_CR2_OFFSET);
|
2009-09-26 20:59:09 +02:00
|
|
|
|
|
|
|
/* Configure CR1 */
|
|
|
|
|
2009-10-11 21:52:20 +02:00
|
|
|
cr = getreg32(STM32_CONSOLE_BASE + STM32_USART_CR1_OFFSET);
|
2009-09-26 20:59:09 +02:00
|
|
|
cr &= ~USART_CR1_CLRBITS;
|
|
|
|
cr |= USART_CR1_SETBITS;
|
2009-10-11 21:52:20 +02:00
|
|
|
putreg32(cr, STM32_CONSOLE_BASE + STM32_USART_CR1_OFFSET);
|
2009-09-26 20:59:09 +02:00
|
|
|
|
|
|
|
/* Configure CR3 */
|
|
|
|
|
2009-10-11 21:52:20 +02:00
|
|
|
cr = getreg32(STM32_CONSOLE_BASE + STM32_USART_CR3_OFFSET);
|
2009-09-26 20:59:09 +02:00
|
|
|
cr &= ~USART_CR3_CLRBITS;
|
|
|
|
cr |= USART_CR3_SETBITS;
|
2009-10-11 21:52:20 +02:00
|
|
|
putreg32(cr, STM32_CONSOLE_BASE + STM32_USART_CR3_OFFSET);
|
2009-09-26 20:59:09 +02:00
|
|
|
|
|
|
|
/* Configure the USART Baud Rate */
|
|
|
|
|
|
|
|
putreg32(STM32_BRR_VALUE, STM32_CONSOLE_BASE + STM32_USART_BRR_OFFSET);
|
|
|
|
|
|
|
|
/* Enable Rx, Tx, and the USART */
|
|
|
|
|
2009-10-11 21:52:20 +02:00
|
|
|
cr = getreg32(STM32_CONSOLE_BASE + STM32_USART_CR1_OFFSET);
|
2009-09-26 20:59:09 +02:00
|
|
|
cr |= (USART_CR1_UE|USART_CR1_TE|USART_CR1_RE);
|
2009-10-11 21:52:20 +02:00
|
|
|
putreg32(cr, STM32_CONSOLE_BASE + STM32_USART_CR1_OFFSET);
|
2009-09-26 02:09:17 +02:00
|
|
|
#endif
|
2009-09-29 04:08:26 +02:00
|
|
|
#endif /* CONFIG_STM32_USART1 || CONFIG_STM32_USART2 || CONFIG_STM32_USART3 */
|
2009-09-26 02:09:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|