Skip to content
Snippets Groups Projects
Commit 867b09c2 authored by Hauke Petersen's avatar Hauke Petersen
Browse files

cpu/kinetis: make UART mode configurable per board

parent 7a1fcdf0
No related branches found
No related tags found
No related merge requests found
...@@ -89,6 +89,7 @@ static const uart_conf_t uart_config[] = { ...@@ -89,6 +89,7 @@ static const uart_conf_t uart_config[] = {
.pcr_rx = PORT_PCR_MUX(3), .pcr_rx = PORT_PCR_MUX(3),
.pcr_tx = PORT_PCR_MUX(3), .pcr_tx = PORT_PCR_MUX(3),
.irqn = UART0_RX_TX_IRQn, .irqn = UART0_RX_TX_IRQn,
.mode = UART_MODE_8N1
}, },
}; };
......
...@@ -106,6 +106,7 @@ static const uart_conf_t uart_config[] = { ...@@ -106,6 +106,7 @@ static const uart_conf_t uart_config[] = {
.pcr_rx = PORT_PCR_MUX(3), .pcr_rx = PORT_PCR_MUX(3),
.pcr_tx = PORT_PCR_MUX(3), .pcr_tx = PORT_PCR_MUX(3),
.irqn = UART0_RX_TX_IRQn, .irqn = UART0_RX_TX_IRQn,
.mode = UART_MODE_8N1
}, },
{ {
.dev = UART1, .dev = UART1,
...@@ -116,6 +117,7 @@ static const uart_conf_t uart_config[] = { ...@@ -116,6 +117,7 @@ static const uart_conf_t uart_config[] = {
.pcr_rx = PORT_PCR_MUX(3), .pcr_rx = PORT_PCR_MUX(3),
.pcr_tx = PORT_PCR_MUX(3), .pcr_tx = PORT_PCR_MUX(3),
.irqn = UART1_RX_TX_IRQn, .irqn = UART1_RX_TX_IRQn,
.mode = UART_MODE_8N1
}, },
}; };
......
...@@ -91,6 +91,7 @@ static const uart_conf_t uart_config[] = { ...@@ -91,6 +91,7 @@ static const uart_conf_t uart_config[] = {
.pcr_rx = PORT_PCR_MUX(3), .pcr_rx = PORT_PCR_MUX(3),
.pcr_tx = PORT_PCR_MUX(3), .pcr_tx = PORT_PCR_MUX(3),
.irqn = UART2_RX_TX_IRQn, .irqn = UART2_RX_TX_IRQn,
.mode = UART_MODE_8N1
}, },
{ {
.dev = UART0, .dev = UART0,
...@@ -101,6 +102,7 @@ static const uart_conf_t uart_config[] = { ...@@ -101,6 +102,7 @@ static const uart_conf_t uart_config[] = {
.pcr_rx = PORT_PCR_MUX(3), .pcr_rx = PORT_PCR_MUX(3),
.pcr_tx = PORT_PCR_MUX(3), .pcr_tx = PORT_PCR_MUX(3),
.irqn = UART0_RX_TX_IRQn, .irqn = UART0_RX_TX_IRQn,
.mode = UART_MODE_8N1
} }
}; };
......
...@@ -198,6 +198,18 @@ typedef enum { ...@@ -198,6 +198,18 @@ typedef enum {
/** @} */ /** @} */
#endif /* ndef DOXYGEN */ #endif /* ndef DOXYGEN */
/**
* @name CPU specific UART modes values
* @{
*/
/** @brief 8 data bits, no parity, 1 stop bit */
#define UART_MODE_8N1 (0)
/** @brief 8 data bits, even parity, 1 stop bit */
#define UART_MODE_8E1 (UART_C1_PE_MASK)
/** @brief 8 data bits, odd parity, 1 stop bit */
#define UART_MODE_8O1 (UART_C1_PE_MASK | UART_C1_PT_MASK)
/** @} */
#ifndef DOXYGEN #ifndef DOXYGEN
/** /**
* @brief Override default ADC resolution values * @brief Override default ADC resolution values
...@@ -302,14 +314,15 @@ enum { ...@@ -302,14 +314,15 @@ enum {
* @brief UART module configuration options * @brief UART module configuration options
*/ */
typedef struct { typedef struct {
UART_Type *dev; /**< Pointer to module hardware registers */ UART_Type *dev; /**< Pointer to module hardware registers */
volatile uint32_t *clken; /**< Clock enable bitband register address */ volatile uint32_t *clken; /**< Clock enable bitband register address */
uint32_t freq; /**< Module clock frequency, usually CLOCK_CORECLOCK or CLOCK_BUSCLOCK */ uint32_t freq; /**< Module clock frequency, usually CLOCK_CORECLOCK or CLOCK_BUSCLOCK */
gpio_t pin_rx; /**< RX pin, GPIO_UNDEF disables RX */ gpio_t pin_rx; /**< RX pin, GPIO_UNDEF disables RX */
gpio_t pin_tx; /**< TX pin */ gpio_t pin_tx; /**< TX pin */
uint32_t pcr_rx; /**< Pin configuration register bits for RX */ uint32_t pcr_rx; /**< Pin configuration register bits for RX */
uint32_t pcr_tx; /**< Pin configuration register bits for TX */ uint32_t pcr_tx; /**< Pin configuration register bits for TX */
IRQn_Type irqn; /**< IRQ number for this module */ IRQn_Type irqn; /**< IRQ number for this module */
uint8_t mode; /**< UART mode: data bits, parity, stop bits */
} uart_conf_t; } uart_conf_t;
/** /**
......
...@@ -98,7 +98,7 @@ static int init_base(uart_t uart, uint32_t baudrate) ...@@ -98,7 +98,7 @@ static int init_base(uart_t uart, uint32_t baudrate)
/* disable transmitter and receiver */ /* disable transmitter and receiver */
dev->C2 &= ~(UART_C2_TE_MASK | UART_C2_RE_MASK); dev->C2 &= ~(UART_C2_TE_MASK | UART_C2_RE_MASK);
/* set defaults, 8-bit mode, no parity */ /* set defaults, 8-bit mode, no parity */
dev->C1 = 0; dev->C1 = uart_config[uart].mode;
/* calculate baudrate */ /* calculate baudrate */
ubd = (uint16_t)(clk / (baudrate * 16)); ubd = (uint16_t)(clk / (baudrate * 16));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment