/* * Copyright (C) 2010 by Ulrich Prinz (uprinz2@netscape.net) * Copyright (C) 2010 by Rittal GmbH & Co. KG. All rights reserved. * * All rights reserved. * * 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 of the copyright holders nor the names of * 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. * * For additional information see http://www.ethernut.de/ */ /* * \verbatim * $Id: stm32_uart5.c 5715 2014-05-23 14:55:37Z u_bonnes $ * \endverbatim */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include /*! * \addtogroup xgNutArchCm3Stm32 */ /*@{*/ /*! * \brief UART5 device control block structure. */ static USARTDCB dcb_uart5 = { 0, /* dcb_modeflags */ 0, /* dcb_statusflags */ 0, /* dcb_rtimeout */ 0, /* dcb_wtimeout */ { 0,0,0,0,0,0,0}, /* dcb_tx_rbf */ { 0,0,0,0,0,0,0}, /* dcb_rx_rbf */ 0, /* dcb_last_eol */ Stm32UsartInit, /* dcb_init */ Stm32UsartDeinit, /* dcb_deinit */ Stm32UsartTxStart, /* dcb_tx_start */ Stm32UsartRxStart, /* dcb_rx_start */ Stm32UsartSetFlowControl, /* dcb_set_flow_control */ Stm32UsartGetFlowControl, /* dcb_get_flow_control */ Stm32UsartSetSpeed, /* dcb_set_speed */ Stm32UsartGetSpeed, /* dcb_get_speed */ Stm32UsartSetDataBits, /* dcb_set_data_bits */ Stm32UsartGetDataBits, /* dcb_get_data_bits */ Stm32UsartSetParity, /* dcb_set_parity */ Stm32UsartGetParity, /* dcb_get_parity */ Stm32UsartSetStopBits, /* dcb_set_stop_bits */ Stm32UsartGetStopBits, /* dcb_get_stop_bits */ Stm32UsartSetStatus, /* dcb_set_status */ Stm32UsartGetStatus, /* dcb_get_status */ Stm32UsartSetClockMode, /* dcb_set_clock_mode */ Stm32UsartGetClockMode, /* dcb_get_clock_mode */ }; /*! * \name STM32 UART5 Device */ /*@{*/ /*! * \brief UART5 device information structure. * * An application must pass a pointer to this structure to * NutRegisterDevice() before using the serial communication * driver of the STM32s on-chip UART5. * * The device is named \b uart5. * * \showinitializer */ NUTDEVICE devUartStm32_5 = { 0, /* Pointer to next device, dev_next. */ {'u', 'a', 'r', 't', '5', 0, 0, 0, 0}, /* Unique device name, dev_name. */ IFTYP_CHAR, /* Type of device, dev_type. */ UART5_BASE, /* Base address, dev_base. */ UART5_IRQn, /* First interrupt number, dev_irq. */ NULL, /* Interface control block, dev_icb. */ &dcb_uart5, /* Driver control block, dev_dcb. */ UsartInit, /* Driver initialization routine, dev_init. */ UsartIOCtl, /* Driver specific control function, dev_ioctl. */ UsartRead, /* Read from device, dev_read. */ UsartWrite, /* Write to device, dev_write. */ UsartOpen, /* Open a device or file, dev_open. */ UsartClose, /* Close a device or file, dev_close. */ UsartSize, /* Request file size, dev_size. */ UsartSelect, /* Select function, dev_select. */ }; /*@}*/ /*! * \brief UART5 GPIO configuartion and assignment. */ /* No alternate pins for F1/L1/F2/F4 so long */ #if defined(MCU_STM32F1) #undef STM_USART_REMAP_MASK #elif defined(MCU_STM32F3) #define STM_USART_REMAP GPIO_AF_5 #else #define STM_USART_REMAP GPIO_AF_UART5 #endif #define TX_GPIO_PORT NUTGPIO_PORTC #define TX_GPIO_PIN 12 #define RX_GPIO_PORT NUTGPIO_PORTD #define RX_GPIO_PIN 2 #ifdef UART5_RS485_CTRL #define USART_485_CTRL #ifdef UART5_485RE_INV #define USART_4485RE_INV #endif #ifdef UART5_485DE_INV #define USART_4485DE_INV #endif #if defined(UART5_485DE_PORT) && defined(UART5_485DE_PIN) #define DE_GPIO_BASE GPIO_ID2GPIO(UART5_485DE_PORT) #define DE_GPIO_PORT UART5_485DE_PORT #define DE_GPIO_PIN UART5_485DE_PIN #endif #if defined(UART5_485RE_PORT) && defined(UART5_485RE_PIN) #define NRE_GPIO_BASE GPIO_ID2GPIO(UART5_485RE_PORT) #define NRE_GPIO_PORT UART5_485RE_PORT #define NRE_GPIO_PIN UART5_485RE_PIN #endif #endif /* UART5_RS485_CTRL */ /*! * \brief UART5 base configuration. */ static void StmUsartClkEnable(int enable) { if (enable) RCC->APB1ENR |= RCC_APB1ENR_UART5EN; RCC->APB1RSTR |= RCC_APB1RSTR_UART5RST; RCC->APB1RSTR &= ~RCC_APB1RSTR_UART5RST; if (!enable) RCC->APB1ENR &= ~RCC_APB1ENR_UART5EN; } #ifdef UART5_INIT_BAUDRATE #define USART_INIT_BAUTRATE UART5_INIT_BAUDRATE #endif #undef USART_HWFLOWCTRL #undef US_MODE_HWHANDSHAKE #ifdef UART5_XONXOFF_CONTROL #define USART_XONXOFF_CONTROL #else #undef USART_XONXOFF_CONTROL #endif #ifdef UART5_MODE_IRDA #define USART_MODE_IRDA #else #undef USART_MODE_IRDA #endif #ifdef UART5_HARDWARE_HDX #define USART_HARDWARE_HDX #else #undef USART_HARDWARE_HDX #endif #ifdef UART5_SUPPORT_DMA #if defined(MCU_STM32F2)||defined(MCU_STM32F4) #define UART_DMA_TXCHANNEL UART5_TX_DMA #define UART_DMA_RXCHANNEL UART5_RX_DMA #else #warning "STM32 family has no implemented DMA" #endif #else #undef UART_DMA_TXCHANNEL #undef UART_DMA_RXCHANNEL #endif #if defined(USART5_TX_PIN_INV) #define USART_TX_PIN_INV #else #undef USART_TX_PIN_INV #endif #if defined(USART5_RX_PIN_INV) #define USART_RX_PIN_INV #else #undef USART_RX_PIN_INV #endif #if defined(USART5_SWAP) #define USART_SWAP #else #undef USART_SWAP #endif #define USARTn UART5 #define USARTnBase UART5_BASE #define USARTirqn UART5_IRQn #define USARTclk NUT_HWCLK_PCLK1 #define UART_DR_PTR (uint32_t*)(USARTnBase+4) #define SigUSART sig_UART5 #define DcbUSART dcb_uart5 /*@}*/ #include "stm32_usart.c"