usart.c 10.3 KB
Newer Older
M
Ming, Bai 已提交
1 2 3
/*
 * File      : usart.c
 * This file is part of RT-Thread RTOS
4
 * COPYRIGHT (C) 2006-2013, RT-Thread Development Team
M
Ming, Bai 已提交
5 6 7 8 9 10 11 12 13
 *
 * The license and distribution terms for this file may be
 * found in the file LICENSE in this distribution or at
 * http://www.rt-thread.org/license/LICENSE
 *
 * Change Logs:
 * Date           Author       Notes
 * 2009-01-05     Bernard      the first version
 * 2010-03-29     Bernard      remove interrupt Tx and DMA Rx mode
14
 * 2013-05-13     aozima       update for kehong-lingtai.
M
Ming, Bai 已提交
15 16
 */

17
#include "stm32f10x.h"
M
Ming, Bai 已提交
18
#include "usart.h"
19 20
#include "board.h"
#include <rtdevice.h>
M
Ming, Bai 已提交
21

22
/* USART1 */
23 24 25
#define UART1_GPIO_TX        GPIO_Pin_9
#define UART1_GPIO_RX        GPIO_Pin_10
#define UART1_GPIO           GPIOA
26 27

/* USART2 */
28 29 30
#define UART2_GPIO_TX        GPIO_Pin_2
#define UART2_GPIO_RX        GPIO_Pin_3
#define UART2_GPIO           GPIOA
31 32

/* USART3_REMAP[1:0] = 00 */
33 34 35
#define UART3_GPIO_TX        GPIO_Pin_10
#define UART3_GPIO_RX        GPIO_Pin_11
#define UART3_GPIO           GPIOB
36 37 38

/* STM32 uart driver */
struct stm32_uart
M
Ming, Bai 已提交
39
{
40 41
    USART_TypeDef* uart_device;
    IRQn_Type irq;
M
Ming, Bai 已提交
42 43
};

44
static rt_err_t stm32_configure(struct rt_serial_device *serial, struct serial_configure *cfg)
M
Ming, Bai 已提交
45
{
46 47
    struct stm32_uart* uart;
    USART_InitTypeDef USART_InitStructure;
M
Ming, Bai 已提交
48

49 50 51 52 53 54 55
    RT_ASSERT(serial != RT_NULL);
    RT_ASSERT(cfg != RT_NULL);

    uart = (struct stm32_uart *)serial->parent.user_data;

    USART_InitStructure.USART_BaudRate = cfg->baud_rate;

56
    if (cfg->data_bits == DATA_BITS_8){
57
        USART_InitStructure.USART_WordLength = USART_WordLength_8b;
58 59 60
    } else if (cfg->data_bits == DATA_BITS_9) {
        USART_InitStructure.USART_WordLength = USART_WordLength_9b;
    }
61

62
    if (cfg->stop_bits == STOP_BITS_1){
63
        USART_InitStructure.USART_StopBits = USART_StopBits_1;
64
    } else if (cfg->stop_bits == STOP_BITS_2){
65
        USART_InitStructure.USART_StopBits = USART_StopBits_2;
66 67 68 69 70 71 72 73 74
    }

    if (cfg->parity == PARITY_NONE){
        USART_InitStructure.USART_Parity = USART_Parity_No;
    } else if (cfg->parity == PARITY_ODD) {
        USART_InitStructure.USART_Parity = USART_Parity_Odd;
    } else if (cfg->parity == PARITY_EVEN) {
        USART_InitStructure.USART_Parity = USART_Parity_Even;
    }
75 76 77 78 79 80 81 82 83 84 85 86

    USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None;
    USART_InitStructure.USART_Mode = USART_Mode_Rx | USART_Mode_Tx;
    USART_Init(uart->uart_device, &USART_InitStructure);

    /* Enable USART */
    USART_Cmd(uart->uart_device, ENABLE);

    return RT_EOK;
}

static rt_err_t stm32_control(struct rt_serial_device *serial, int cmd, void *arg)
M
Ming, Bai 已提交
87
{
88 89 90 91 92 93 94
    struct stm32_uart* uart;

    RT_ASSERT(serial != RT_NULL);
    uart = (struct stm32_uart *)serial->parent.user_data;

    switch (cmd)
    {
armink_ztl's avatar
armink_ztl 已提交
95
        /* disable interrupt */
96 97 98
    case RT_DEVICE_CTRL_CLR_INT:
        /* disable rx irq */
        UART_DISABLE_IRQ(uart->irq);
armink_ztl's avatar
armink_ztl 已提交
99 100
        /* disable interrupt */
        USART_ITConfig(uart->uart_device, USART_IT_RXNE, DISABLE);
101
        break;
armink_ztl's avatar
armink_ztl 已提交
102
        /* enable interrupt */
103 104 105
    case RT_DEVICE_CTRL_SET_INT:
        /* enable rx irq */
        UART_ENABLE_IRQ(uart->irq);
armink_ztl's avatar
armink_ztl 已提交
106 107
        /* enable interrupt */
        USART_ITConfig(uart->uart_device, USART_IT_RXNE, ENABLE);
108 109 110 111 112
        break;
    }

    return RT_EOK;
}
M
Ming, Bai 已提交
113

114 115 116
static int stm32_putc(struct rt_serial_device *serial, char c)
{
    struct stm32_uart* uart;
M
Ming, Bai 已提交
117

118 119
    RT_ASSERT(serial != RT_NULL);
    uart = (struct stm32_uart *)serial->parent.user_data;
M
Ming, Bai 已提交
120

121 122
    while (!(uart->uart_device->SR & USART_FLAG_TXE));
    uart->uart_device->DR = c;
M
Ming, Bai 已提交
123

124 125 126 127
    return 1;
}

static int stm32_getc(struct rt_serial_device *serial)
M
Ming, Bai 已提交
128
{
129 130
    int ch;
    struct stm32_uart* uart;
M
Ming, Bai 已提交
131

132 133
    RT_ASSERT(serial != RT_NULL);
    uart = (struct stm32_uart *)serial->parent.user_data;
M
Ming, Bai 已提交
134

135 136 137 138 139
    ch = -1;
    if (uart->uart_device->SR & USART_FLAG_RXNE)
    {
        ch = uart->uart_device->DR & 0xff;
    }
M
Ming, Bai 已提交
140

141 142
    return ch;
}
M
Ming, Bai 已提交
143

144 145 146 147 148 149 150
static const struct rt_uart_ops stm32_uart_ops =
{
    stm32_configure,
    stm32_control,
    stm32_putc,
    stm32_getc,
};
M
Ming, Bai 已提交
151

152 153 154 155 156 157 158 159
#if defined(RT_USING_UART1)
/* UART1 device driver structure */
struct stm32_uart uart1 =
{
    USART1,
    USART1_IRQn,
};
struct rt_serial_device serial1;
M
Ming, Bai 已提交
160

161 162 163 164 165 166 167 168 169 170
void USART1_IRQHandler(void)
{
    struct stm32_uart* uart;

    uart = &uart1;

    /* enter interrupt */
    rt_interrupt_enter();
    if(USART_GetITStatus(uart->uart_device, USART_IT_RXNE) != RESET)
    {
B
bernard 已提交
171
        rt_hw_serial_isr(&serial1, RT_SERIAL_EVENT_RX_IND);
172 173 174
        /* clear interrupt */
        USART_ClearITPendingBit(uart->uart_device, USART_IT_RXNE);
    }
175

176 177 178 179 180
    if (USART_GetITStatus(uart->uart_device, USART_IT_TC) != RESET)
    {
        /* clear interrupt */
        USART_ClearITPendingBit(uart->uart_device, USART_IT_TC);
    }
181 182 183 184
    if (USART_GetFlagStatus(uart->uart_device, USART_FLAG_ORE) == SET)
    {
        stm32_getc(&serial1);
    }
185 186 187 188 189 190 191 192 193 194 195 196 197
    /* leave interrupt */
    rt_interrupt_leave();
}
#endif /* RT_USING_UART1 */

#if defined(RT_USING_UART2)
/* UART1 device driver structure */
struct stm32_uart uart2 =
{
    USART2,
    USART2_IRQn,
};
struct rt_serial_device serial2;
M
Ming, Bai 已提交
198

199 200 201 202 203 204 205 206 207 208
void USART2_IRQHandler(void)
{
    struct stm32_uart* uart;

    uart = &uart2;

    /* enter interrupt */
    rt_interrupt_enter();
    if(USART_GetITStatus(uart->uart_device, USART_IT_RXNE) != RESET)
    {
B
bernard 已提交
209
        rt_hw_serial_isr(&serial2, RT_SERIAL_EVENT_RX_IND);
210 211 212 213 214 215 216 217
        /* clear interrupt */
        USART_ClearITPendingBit(uart->uart_device, USART_IT_RXNE);
    }
    if (USART_GetITStatus(uart->uart_device, USART_IT_TC) != RESET)
    {
        /* clear interrupt */
        USART_ClearITPendingBit(uart->uart_device, USART_IT_TC);
    }
218 219 220 221
    if (USART_GetFlagStatus(uart->uart_device, USART_FLAG_ORE) == SET)
    {
        stm32_getc(&serial2);
    }
222 223 224

    /* leave interrupt */
    rt_interrupt_leave();
M
Ming, Bai 已提交
225
}
226
#endif /* RT_USING_UART2 */
M
Ming, Bai 已提交
227

228
#if defined(RT_USING_UART3)
229
/* UART3 device driver structure */
230 231 232 233 234 235 236 237
struct stm32_uart uart3 =
{
    USART3,
    USART3_IRQn,
};
struct rt_serial_device serial3;

void USART3_IRQHandler(void)
M
Ming, Bai 已提交
238
{
239 240 241 242 243 244 245 246
    struct stm32_uart* uart;

    uart = &uart3;

    /* enter interrupt */
    rt_interrupt_enter();
    if(USART_GetITStatus(uart->uart_device, USART_IT_RXNE) != RESET)
    {
B
bernard 已提交
247
        rt_hw_serial_isr(&serial3, RT_SERIAL_EVENT_RX_IND);
248 249 250 251 252 253 254 255
        /* clear interrupt */
        USART_ClearITPendingBit(uart->uart_device, USART_IT_RXNE);
    }
    if (USART_GetITStatus(uart->uart_device, USART_IT_TC) != RESET)
    {
        /* clear interrupt */
        USART_ClearITPendingBit(uart->uart_device, USART_IT_TC);
    }
256 257 258 259
    if (USART_GetFlagStatus(uart->uart_device, USART_FLAG_ORE) == SET)
    {
        stm32_getc(&serial3);
    }
260 261 262 263 264

    /* leave interrupt */
    rt_interrupt_leave();
}
#endif /* RT_USING_UART3 */
M
Ming, Bai 已提交
265

266 267
static void RCC_Configuration(void)
{
268
#if defined(RT_USING_UART1)
269 270 271 272 273
    /* Enable UART GPIO clocks */
    RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);
    /* Enable UART clock */
    RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1, ENABLE);
#endif /* RT_USING_UART1 */
M
Ming, Bai 已提交
274

275
#if defined(RT_USING_UART2)
276 277 278 279 280
    /* Enable UART GPIO clocks */
    RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);
    /* Enable UART clock */
    RCC_APB1PeriphClockCmd(RCC_APB1Periph_USART2, ENABLE);
#endif /* RT_USING_UART2 */
M
Ming, Bai 已提交
281

282
#if defined(RT_USING_UART3)
283 284 285 286 287
    /* Enable UART GPIO clocks */
    RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB, ENABLE);
    /* Enable UART clock */
    RCC_APB1PeriphClockCmd(RCC_APB1Periph_USART3, ENABLE);
#endif /* RT_USING_UART3 */
M
Ming, Bai 已提交
288 289
}

290
static void GPIO_Configuration(void)
M
Ming, Bai 已提交
291
{
292 293 294
    GPIO_InitTypeDef GPIO_InitStructure;

    GPIO_InitStructure.GPIO_Speed = GPIO_Speed_2MHz;
M
Ming, Bai 已提交
295

296
#if defined(RT_USING_UART1)
297 298 299 300 301 302 303 304 305
    /* Configure USART Rx/tx PIN */
    GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
    GPIO_InitStructure.GPIO_Pin = UART1_GPIO_RX;
    GPIO_Init(UART1_GPIO, &GPIO_InitStructure);

    GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
    GPIO_InitStructure.GPIO_Pin = UART1_GPIO_TX;
    GPIO_Init(UART1_GPIO, &GPIO_InitStructure);
#endif /* RT_USING_UART1 */
M
Ming, Bai 已提交
306

307
#if defined(RT_USING_UART2)
308 309 310
    /* Configure USART Rx/tx PIN */
    GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
    GPIO_InitStructure.GPIO_Pin = UART2_GPIO_RX;
311
    GPIO_Init(UART2_GPIO, &GPIO_InitStructure);
312 313 314 315 316

    GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
    GPIO_InitStructure.GPIO_Pin = UART2_GPIO_TX;
    GPIO_Init(UART2_GPIO, &GPIO_InitStructure);
#endif /* RT_USING_UART2 */
M
Ming, Bai 已提交
317

318
#if defined(RT_USING_UART3)
319 320 321 322 323 324 325 326 327
    /* Configure USART Rx/tx PIN */
    GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
    GPIO_InitStructure.GPIO_Pin = UART3_GPIO_RX;
    GPIO_Init(UART3_GPIO, &GPIO_InitStructure);

    GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
    GPIO_InitStructure.GPIO_Pin = UART3_GPIO_TX;
    GPIO_Init(UART3_GPIO, &GPIO_InitStructure);
#endif /* RT_USING_UART3 */
M
Ming, Bai 已提交
328 329
}

330
static void NVIC_Configuration(struct stm32_uart* uart)
M
Ming, Bai 已提交
331
{
332 333 334 335 336 337 338 339
    NVIC_InitTypeDef NVIC_InitStructure;

    /* Enable the USART1 Interrupt */
    NVIC_InitStructure.NVIC_IRQChannel = uart->irq;
    NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 0;
    NVIC_InitStructure.NVIC_IRQChannelSubPriority = 0;
    NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
    NVIC_Init(&NVIC_InitStructure);
M
Ming, Bai 已提交
340 341
}

342
void rt_hw_usart_init(void)
M
Ming, Bai 已提交
343
{
344 345
    struct stm32_uart* uart;
    struct serial_configure config = RT_SERIAL_CONFIG_DEFAULT;
M
Ming, Bai 已提交
346

347 348
    RCC_Configuration();
    GPIO_Configuration();
M
Ming, Bai 已提交
349

350
#if defined(RT_USING_UART1)
351 352
    uart = &uart1;
    config.baud_rate = BAUD_RATE_115200;
M
Ming, Bai 已提交
353

354 355
    serial1.ops    = &stm32_uart_ops;
    serial1.config = config;
M
Ming, Bai 已提交
356

357
    NVIC_Configuration(&uart1);
M
Ming, Bai 已提交
358

359 360
    /* register UART1 device */
    rt_hw_serial_register(&serial1, "uart1",
361
                          RT_DEVICE_FLAG_RDWR | RT_DEVICE_FLAG_INT_RX ,
362 363
                          uart);
#endif /* RT_USING_UART1 */
M
Ming, Bai 已提交
364

365
#if defined(RT_USING_UART2)
366 367 368 369 370 371 372 373 374 375 376 377 378
    uart = &uart2;

    config.baud_rate = BAUD_RATE_115200;
    serial2.ops    = &stm32_uart_ops;
    serial2.config = config;

    NVIC_Configuration(&uart2);

    /* register UART1 device */
    rt_hw_serial_register(&serial2, "uart2",
                          RT_DEVICE_FLAG_RDWR | RT_DEVICE_FLAG_INT_RX,
                          uart);
#endif /* RT_USING_UART2 */
M
Ming, Bai 已提交
379

380
#if defined(RT_USING_UART3)
381 382 383 384 385 386 387 388 389 390 391 392 393 394
    uart = &uart3;

    config.baud_rate = BAUD_RATE_115200;

    serial3.ops    = &stm32_uart_ops;
    serial3.config = config;

    NVIC_Configuration(&uart3);

    /* register UART1 device */
    rt_hw_serial_register(&serial3, "uart3",
                          RT_DEVICE_FLAG_RDWR | RT_DEVICE_FLAG_INT_RX,
                          uart);
#endif /* RT_USING_UART3 */
M
Ming, Bai 已提交
395
}